remove story

This commit is contained in:
Mads Rasmussen
2024-03-07 16:23:07 +01:00
parent 7b1789e85b
commit 938459f8ce

View File

@@ -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',
},
};