File tree Expand file tree Collapse file tree 1 file changed +13
-3
lines changed
packages/uui-color-picker/lib Expand file tree Collapse file tree 1 file changed +13
-3
lines changed Original file line number Diff line number Diff line change
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
+
1
11
import '.' ;
2
12
3
- import { Meta , Story } from '@storybook/web-components' ;
13
+ import { Meta , StoryFn } from '@storybook/web-components' ;
4
14
import { html } from 'lit-html' ;
5
15
import { UUIColorPickerElement } from './uui-color-picker.element' ;
6
16
@@ -39,7 +49,7 @@ export default {
39
49
} ,
40
50
} as Meta < UUIColorPickerElement > ;
41
51
42
- const Template : Story < UUIColorPickerElement > = props => html `
52
+ const Template : StoryFn < UUIColorPickerElement > = props => html `
43
53
< uui-color-picker
44
54
.inline =${ props . inline }
45
55
.value =${ props . value }
@@ -83,7 +93,7 @@ WithOpacity.parameters = {
83
93
84
94
const formats = [ 'hex' , 'rgb' , 'hsl' ] ;
85
95
86
- export const Formats : Story = ( ) => html `
96
+ export const Formats : StoryFn = ( ) => html `
87
97
< h4 > Formats</ h4 >
88
98
${ formats . map (
89
99
format =>
You can’t perform that action at this time.
0 commit comments