-
-
Notifications
You must be signed in to change notification settings - Fork 165
/
Copy pathControlExample.stories.tsx
81 lines (77 loc) · 1.58 KB
/
ControlExample.stories.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import preview from '../../../.storybook/preview';
import { ControlExample } from './ControlExample';
const meta = preview.meta({
component: ControlExample,
args: {
name: 'Storyteller',
age: 70,
fruit: 'apple',
otherFruit: 'watermelon',
dollars: 12.5,
backgroundColor: '#eaeaea',
items: ['Laptop', 'Book', 'Whiskey'],
customStyles: {
borderWidth: 3,
borderColor: '#000',
padding: 10,
},
nice: true,
birthday: new Date(2017, 0, 20),
},
argTypes: {
age: {
step: 5,
min: 0,
max: 90,
range: true,
},
fruit: {
options: ['apple', 'banana', 'cherry'] as const,
control: {
type: 'select',
labels: {
apple: 'Apple',
banana: 'Banana',
cherry: 'Cherry',
} as const,
},
},
otherFruit: {
options: ['kiwi', 'guava', 'watermelon'] as const,
control: {
type: 'radio',
labels: {
kiwi: 'Kiwi',
guava: 'Guava',
watermelon: 'Watermelon',
} as const,
},
},
dollars: {
min: 0,
max: 100,
},
birthday: {
control: { type: 'date' },
},
backgroundColor: {
control: { type: 'color' },
},
items: {
control: {
// @ts-expect-error
type: 'array' as ControlType,
},
},
customStyles: {
control: { type: 'object' },
},
// @ts-ignore
invalid: {
// @ts-ignore
control: { type: 'nonexistent_type' },
},
},
});
export default meta;
export const Example = meta.story({});