From 938459f8ceb00ed2abfedfa802ce4c42297e0bf8 Mon Sep 17 00:00:00 2001 From: Mads Rasmussen Date: Thu, 7 Mar 2024 16:23:07 +0100 Subject: [PATCH] remove story --- .../input-section/input-section.stories.ts | 44 ------------------- 1 file changed, 44 deletions(-) delete mode 100644 src/Umbraco.Web.UI.Client/src/packages/core/section/components/input-section/input-section.stories.ts 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', - }, -};