Create your package using @sveltejs/package and preview/showcase your work with SvelteKit
Visit kit.svelte.dev to read the documentation
+ + diff --git a/packages/ui-lib/src/stories/Colors/Colors.stories.ts b/packages/ui-lib/src/stories/Colors/Colors.stories.ts deleted file mode 100644 index 70dc64af8ca..00000000000 --- a/packages/ui-lib/src/stories/Colors/Colors.stories.ts +++ /dev/null @@ -1,35 +0,0 @@ -import type { Meta, StoryObj } from '@storybook/svelte'; -import { default as Component } from './Component.svelte'; -import colors from '../../lib/theme/colors'; -// More on how to set up stories at: https://storybook.js.org/docs/writing-stories -const meta = { - title: 'Colors', - component: Component, - tags: [], - //tags: ['autodocs'], - argTypes: { - color: { control: 'select', options: Object.keys(colors) } - //label: { control: 'text' }, - //title: { control: 'text' }, - //text: { control: 'text' } - } - - /* - argTypes: { - backgroundColor: { control: 'color' }, - size: { - control: { type: 'select' }, - options: ['small', 'medium', 'large'], - }, - },*/ -} satisfies Meta