-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheckbox.stories.ts
58 lines (53 loc) · 1.28 KB
/
checkbox.stories.ts
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
import type { Meta, StoryObj } from '@storybook/web-components';
import { html } from 'lit';
export default {
title: 'Components/Checkbox',
} satisfies Meta;
export const Default: StoryObj = {
render: () => html`
<label class="cx-checkbox">
<input type="checkbox" />
<div class="cx-checkbox__checkmark"></div>
Check me
</label>
`,
};
export const CheckboxList: StoryObj = {
render: () => html`
<fieldset class="cx-checkbox-list">
<label class="cx-checkbox">
<input type="checkbox" />
<div class="cx-checkbox__checkmark"></div>
Checkbox no 1
</label>
<label class="cx-checkbox">
<input type="checkbox" />
<div class="cx-checkbox__checkmark"></div>
Checkbox no 2
</label>
<label class="cx-checkbox">
<input type="checkbox" />
<div class="cx-checkbox__checkmark"></div>
Checkbox no 3
</label>
</fieldset>
`,
};
export const Indeterminate: StoryObj = {
render: () => html`
<label class="cx-checkbox cx-checkbox--indeterminate">
<input type="checkbox" />
<div class="cx-checkbox__checkmark"></div>
Check me
</label>
`,
};
export const ErrorState: StoryObj = {
render: () => html`
<label class="cx-checkbox cx-checkbox--invalid">
<input type="checkbox" />
<div class="cx-checkbox__checkmark"></div>
Check me
</label>
`,
};