diff --git a/src/Umbraco.Web.UI.Client/src/packages/core/section/components/input-section/input-section.stories.ts b/src/Umbraco.Web.UI.Client/src/packages/core/section/components/input-section/input-section.stories.ts deleted file mode 100644 index 67668efe91..0000000000 --- a/src/Umbraco.Web.UI.Client/src/packages/core/section/components/input-section/input-section.stories.ts +++ /dev/null @@ -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 = { - 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; - -export const Overview: Story = { - args: { - modalType: 'sidebar', - }, -}; - -export const WithDialog: Story = { - args: { - modalType: 'dialog', - }, -}; - -export const WithFullSidebar: Story = { - args: { - modalType: 'sidebar', - modalSize: 'full', - }, -};