remove story
This commit is contained in:
@@ -1,44 +0,0 @@
|
||||
import type { Meta, StoryObj } from '@storybook/web-components';
|
||||
import './input-section.element.js';
|
||||
import type { UmbInputSectionElement } from './input-section.element.js';
|
||||
|
||||
const meta: Meta<UmbInputSectionElement> = {
|
||||
title: 'Components/Inputs/Section',
|
||||
component: 'umb-input-section',
|
||||
argTypes: {
|
||||
modalType: {
|
||||
control: 'inline-radio',
|
||||
options: ['dialog', 'sidebar'],
|
||||
defaultValue: 'sidebar',
|
||||
description: 'The type of modal to use when selecting sections',
|
||||
},
|
||||
modalSize: {
|
||||
control: 'select',
|
||||
options: ['small', 'medium', 'large', 'full'],
|
||||
defaultValue: 'small',
|
||||
description: 'The size of the modal to use when selecting sections, only applicable to sidebar not dialog',
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
export default meta;
|
||||
type Story = StoryObj<UmbInputSectionElement>;
|
||||
|
||||
export const Overview: Story = {
|
||||
args: {
|
||||
modalType: 'sidebar',
|
||||
},
|
||||
};
|
||||
|
||||
export const WithDialog: Story = {
|
||||
args: {
|
||||
modalType: 'dialog',
|
||||
},
|
||||
};
|
||||
|
||||
export const WithFullSidebar: Story = {
|
||||
args: {
|
||||
modalType: 'sidebar',
|
||||
modalSize: 'full',
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user