Skip to content

Commit b96e89b

Browse files
committed
fix color picker story
1 parent 8ed1214 commit b96e89b

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed

packages/uui-color-picker/lib/uui-color-picker.story.ts

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
1+
import '@umbraco-ui/uui-color-swatches/lib';
2+
import '@umbraco-ui/uui-color-swatch/lib';
3+
import '@umbraco-ui/uui-color-slider/lib';
4+
import '@umbraco-ui/uui-color-area/lib';
5+
import '@umbraco-ui/uui-input/lib';
6+
import '@umbraco-ui/uui-button/lib';
7+
import '@umbraco-ui/uui-button-group/lib';
8+
import '@umbraco-ui/uui-icon/lib';
9+
import '@umbraco-ui/uui-popover/lib';
10+
111
import '.';
212

3-
import { Meta, Story } from '@storybook/web-components';
13+
import { Meta, StoryFn } from '@storybook/web-components';
414
import { html } from 'lit-html';
515
import { UUIColorPickerElement } from './uui-color-picker.element';
616

@@ -39,7 +49,7 @@ export default {
3949
},
4050
} as Meta<UUIColorPickerElement>;
4151

42-
const Template: Story<UUIColorPickerElement> = props => html`
52+
const Template: StoryFn<UUIColorPickerElement> = props => html`
4353
<uui-color-picker
4454
.inline=${props.inline}
4555
.value=${props.value}
@@ -83,7 +93,7 @@ WithOpacity.parameters = {
8393

8494
const formats = ['hex', 'rgb', 'hsl'];
8595

86-
export const Formats: Story = () => html`
96+
export const Formats: StoryFn = () => html`
8797
<h4>Formats</h4>
8898
${formats.map(
8999
format =>

0 commit comments

Comments
 (0)