@dolanske/vui 1.0.3 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (195) hide show
  1. package/LICENSE +673 -673
  2. package/README.md +42 -42
  3. package/dist/components/Accordion/Accordion.vue.d.ts +3 -2
  4. package/dist/components/Accordion/AccordionGroup.vue.d.ts +5 -2
  5. package/dist/components/Alert/Alert.vue.d.ts +3 -2
  6. package/dist/components/Avatar/Avatar.vue.d.ts +3 -2
  7. package/dist/components/Badge/Badge.vue.d.ts +3 -2
  8. package/dist/components/Breadcrumbs/BreadcrumbItem.vue.d.ts +3 -2
  9. package/dist/components/Breadcrumbs/Breadcrumbs.vue.d.ts +3 -2
  10. package/dist/components/Button/Button.vue.d.ts +3 -2
  11. package/dist/components/ButtonGroup/ButtonGroup.vue.d.ts +3 -2
  12. package/dist/components/Calendar/Calendar.vue.d.ts +6 -6
  13. package/dist/components/Card/Card.vue.d.ts +4 -3
  14. package/dist/components/Checkbox/Checkbox.vue.d.ts +7 -6
  15. package/dist/components/CopyClipboard/CopyClipboard.vue.d.ts +2 -1
  16. package/dist/components/Divider/Divider.vue.d.ts +3 -2
  17. package/dist/components/Drawer/Drawer.vue.d.ts +10 -9
  18. package/dist/components/Dropdown/Dropdown.vue.d.ts +66 -3
  19. package/dist/components/Dropdown/DropdownItem.vue.d.ts +3 -2
  20. package/dist/components/Dropdown/DropdownTitle.vue.d.ts +6 -6
  21. package/dist/components/Flex/Flex.vue.d.ts +13 -12
  22. package/dist/components/Grid/Grid.vue.d.ts +7 -6
  23. package/dist/components/Input/Color.vue.d.ts +5 -5
  24. package/dist/components/Input/Counter.vue.d.ts +5 -5
  25. package/dist/components/Input/Dropzone.vue.d.ts +95 -10
  26. package/dist/components/Input/File.vue.d.ts +4 -3
  27. package/dist/components/Input/Input.vue.d.ts +7 -6
  28. package/dist/components/Input/Password.vue.d.ts +1 -1
  29. package/dist/components/Input/Textarea.vue.d.ts +7 -6
  30. package/dist/components/Kbd/Kbd.vue.d.ts +1 -1
  31. package/dist/components/Kbd/KbdGroup.vue.d.ts +2 -1
  32. package/dist/components/Modal/Confirm.vue.d.ts +7 -9
  33. package/dist/components/Modal/Modal.vue.d.ts +16 -13
  34. package/dist/components/OTP/OTP.vue.d.ts +7 -6
  35. package/dist/components/OTP/OTPItem.vue.d.ts +1 -1
  36. package/dist/components/Pagination/Pagination.vue.d.ts +3 -2
  37. package/dist/components/Popout/Popout.vue.d.ts +3 -2
  38. package/dist/components/Progress/Progress.vue.d.ts +5 -5
  39. package/dist/components/Radio/Radio.vue.d.ts +7 -6
  40. package/dist/components/Radio/RadioGroup.vue.d.ts +7 -6
  41. package/dist/components/Select/Select.vue.d.ts +4 -8
  42. package/dist/components/Sheet/Sheet.vue.d.ts +22 -13
  43. package/dist/components/Sidebar/Sidebar.vue.d.ts +7 -6
  44. package/dist/components/Skeleton/Skeleton.vue.d.ts +1 -1
  45. package/dist/components/Spinner/Spinner.vue.d.ts +1 -1
  46. package/dist/components/Switch/Switch.vue.d.ts +7 -6
  47. package/dist/components/Table/Cell.vue.d.ts +5 -2
  48. package/dist/components/Table/Head.vue.d.ts +3 -2
  49. package/dist/components/Table/Root.vue.d.ts +3 -2
  50. package/dist/components/Table/table.d.ts +2 -2
  51. package/dist/components/Tabs/Tab.vue.d.ts +3 -2
  52. package/dist/components/Tabs/Tabs.vue.d.ts +7 -6
  53. package/dist/components/Toast/toast.d.ts +6 -6
  54. package/dist/components/Tooltip/Tooltip.vue.d.ts +2 -1
  55. package/dist/internal/Backdrop/Backdrop.vue.d.ts +3 -2
  56. package/dist/vui.css +1 -0
  57. package/dist/vui.js +8090 -7884
  58. package/package.json +73 -72
  59. package/src/App.vue +95 -95
  60. package/src/components/Accordion/Accordion.vue +91 -91
  61. package/src/components/Accordion/AccordionGroup.vue +43 -43
  62. package/src/components/Accordion/accordion.scss +82 -82
  63. package/src/components/Alert/Alert.vue +59 -59
  64. package/src/components/Alert/alert.scss +161 -161
  65. package/src/components/Avatar/Avatar.vue +53 -53
  66. package/src/components/Avatar/avatar.scss +52 -52
  67. package/src/components/Badge/Badge.vue +21 -21
  68. package/src/components/Badge/badge.scss +210 -206
  69. package/src/components/Breadcrumbs/BreadcrumbItem.vue +26 -26
  70. package/src/components/Breadcrumbs/Breadcrumbs.vue +30 -30
  71. package/src/components/Breadcrumbs/breadcrumbs.scss +31 -31
  72. package/src/components/Button/Button.vue +85 -85
  73. package/src/components/Button/button.scss +279 -279
  74. package/src/components/ButtonGroup/ButtonGroup.vue +28 -28
  75. package/src/components/ButtonGroup/button-group.scss +51 -51
  76. package/src/components/Calendar/Calendar.vue +66 -66
  77. package/src/components/Calendar/calendar.scss +83 -83
  78. package/src/components/Card/Card.vue +48 -48
  79. package/src/components/Card/card.scss +53 -53
  80. package/src/components/Checkbox/Checkbox.vue +54 -54
  81. package/src/components/Checkbox/checkbox.scss +80 -80
  82. package/src/components/CopyClipboard/CopyClipboard.vue +91 -91
  83. package/src/components/CopyClipboard/copy-clipboard.scss +25 -25
  84. package/src/components/Divider/Divider.vue +44 -44
  85. package/src/components/Divider/divider.scss +35 -35
  86. package/src/components/Drawer/Drawer.vue +102 -97
  87. package/src/components/Drawer/drawer.scss +37 -37
  88. package/src/components/Dropdown/Dropdown.vue +135 -135
  89. package/src/components/Dropdown/DropdownItem.vue +33 -33
  90. package/src/components/Dropdown/DropdownTitle.vue +14 -14
  91. package/src/components/Dropdown/dropdown-item.scss +84 -84
  92. package/src/components/Dropdown/dropdown.scss +53 -53
  93. package/src/components/Flex/Flex.vue +113 -113
  94. package/src/components/Grid/Grid.vue +79 -80
  95. package/src/components/Input/Color.vue +26 -26
  96. package/src/components/Input/Counter.vue +66 -66
  97. package/src/components/Input/Dropzone.vue +65 -65
  98. package/src/components/Input/File.vue +15 -15
  99. package/src/components/Input/Input.vue +123 -123
  100. package/src/components/Input/Password.vue +35 -35
  101. package/src/components/Input/Textarea.vue +78 -78
  102. package/src/components/Input/input.scss +302 -302
  103. package/src/components/Kbd/Kbd.vue +48 -48
  104. package/src/components/Kbd/KbdGroup.vue +27 -27
  105. package/src/components/Kbd/kbd.scss +19 -19
  106. package/src/components/Modal/Confirm.vue +56 -56
  107. package/src/components/Modal/Modal.vue +103 -99
  108. package/src/components/Modal/modal.scss +54 -54
  109. package/src/components/OTP/OTP.vue +133 -133
  110. package/src/components/OTP/OTPItem.vue +37 -37
  111. package/src/components/OTP/otp.scss +84 -84
  112. package/src/components/Pagination/Pagination.vue +77 -77
  113. package/src/components/Pagination/pagination.ts +78 -78
  114. package/src/components/Popout/Popout.vue +52 -52
  115. package/src/components/Popout/popout.scss +15 -15
  116. package/src/components/Progress/Progress.vue +103 -103
  117. package/src/components/Progress/progress.scss +47 -47
  118. package/src/components/Radio/Radio.vue +38 -38
  119. package/src/components/Radio/RadioGroup.vue +40 -40
  120. package/src/components/Radio/radio.scss +78 -78
  121. package/src/components/Select/Select.vue +211 -211
  122. package/src/components/Select/select.scss +77 -77
  123. package/src/components/Sheet/Sheet.vue +108 -98
  124. package/src/components/Sheet/sheet.scss +69 -69
  125. package/src/components/Sidebar/Sidebar.vue +115 -115
  126. package/src/components/Sidebar/sidebar.scss +124 -124
  127. package/src/components/Skeleton/Skeleton.vue +43 -43
  128. package/src/components/Skeleton/skeleton.scss +14 -14
  129. package/src/components/Spinner/Spinner.vue +42 -42
  130. package/src/components/Spinner/spinner.scss +47 -47
  131. package/src/components/Switch/Switch.vue +31 -31
  132. package/src/components/Switch/switch.scss +93 -93
  133. package/src/components/Table/Cell.vue +23 -23
  134. package/src/components/Table/Head.vue +59 -59
  135. package/src/components/Table/Root.vue +66 -66
  136. package/src/components/Table/SelectAll.vue +23 -23
  137. package/src/components/Table/SelectRow.vue +30 -30
  138. package/src/components/Table/index.ts +7 -7
  139. package/src/components/Table/table.scss +154 -154
  140. package/src/components/Table/table.ts +248 -248
  141. package/src/components/Tabs/Tab.vue +25 -25
  142. package/src/components/Tabs/Tabs.vue +90 -90
  143. package/src/components/Tabs/tabs.scss +87 -87
  144. package/src/components/Toast/Toasts.vue +52 -52
  145. package/src/components/Toast/toast.scss +45 -45
  146. package/src/components/Toast/toast.ts +75 -75
  147. package/src/components/Tooltip/Tooltip.vue +86 -86
  148. package/src/components/Tooltip/tooltip.scss +8 -8
  149. package/src/examples/ExampleAccordions.vue +58 -58
  150. package/src/examples/ExampleAlerts.vue +78 -78
  151. package/src/examples/ExampleAvatars.vue +44 -44
  152. package/src/examples/ExampleBadges.vue +48 -48
  153. package/src/examples/ExampleBreadcrumbs.vue +46 -46
  154. package/src/examples/ExampleButtons.vue +140 -140
  155. package/src/examples/ExampleCalendars.vue +40 -40
  156. package/src/examples/ExampleCards.vue +94 -94
  157. package/src/examples/ExampleCheckboxes.vue +123 -123
  158. package/src/examples/ExampleCopyClipboard.vue +47 -47
  159. package/src/examples/ExampleDividers.vue +39 -39
  160. package/src/examples/ExampleDrawers.vue +67 -67
  161. package/src/examples/ExampleDropdowns.vue +114 -114
  162. package/src/examples/ExampleFlexGrid.vue +124 -122
  163. package/src/examples/ExampleInputs.vue +234 -234
  164. package/src/examples/ExampleKBD.vue +65 -65
  165. package/src/examples/ExampleModals.vue +143 -143
  166. package/src/examples/ExamplePalette.vue +159 -159
  167. package/src/examples/ExamplePopouts.vue +41 -41
  168. package/src/examples/ExampleSheets.vue +77 -77
  169. package/src/examples/ExampleSidebars.vue +270 -270
  170. package/src/examples/ExampleSkeletons.vue +26 -26
  171. package/src/examples/ExampleSpinners.vue +80 -78
  172. package/src/examples/ExampleTables.vue +195 -195
  173. package/src/examples/ExampleTabs.vue +119 -119
  174. package/src/examples/ExampleToasts.vue +96 -96
  175. package/src/examples/ExampleTooltips.vue +70 -70
  176. package/src/examples/shared/ExampleColor.vue +28 -28
  177. package/src/index.ts +116 -116
  178. package/src/internal/Backdrop/Backdrop.vue +22 -22
  179. package/src/internal/Backdrop/backdrop.scss +34 -34
  180. package/src/main.ts +5 -5
  181. package/src/shared/helpers.ts +117 -117
  182. package/src/shared/theme.ts +22 -22
  183. package/src/shared/types.ts +29 -29
  184. package/src/style/animation.scss +22 -22
  185. package/src/style/core.scss +119 -125
  186. package/src/style/layout.scss +207 -233
  187. package/src/style/media-query.scss +29 -29
  188. package/src/style/reset.scss +135 -135
  189. package/src/style/text.scss +137 -124
  190. package/src/style/theme.scss +195 -195
  191. package/src/style/tooltip.scss +146 -146
  192. package/src/style/typography.scss +415 -415
  193. package/src/style/utils.scss +36 -36
  194. package/src/{index.scss → style.scss} +1 -1
  195. package/dist/style.css +0 -1
@@ -1,94 +1,94 @@
1
- <script setup lang='ts'>
2
- import Button from '../components/Button/Button.vue'
3
- import Card from '../components/Card/Card.vue'
4
- import Flex from '../components/Flex/Flex.vue'
5
- import Grid from '../components/Grid/Grid.vue'
6
- </script>
7
-
8
- <template>
9
- <div class="mb-xxl">
10
- <h3 class="mb-l">
11
- Cards
12
- </h3>
13
-
14
- <Grid :columns="2" gap="xl">
15
- <Flex column gap="xl">
16
- <div>
17
- <strong class="block mb-s">Base</strong>
18
- <Card>
19
- <p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Adipisci eligendi quos inventore voluptas ab saepe fugit deleniti ipsam exercitationem impedit quod rem ipsum laborum, quis quam error ipsa corrupti. Dolorem!</p>
20
- </Card>
21
- </div>
22
-
23
- <div>
24
- <strong class="block mb-s">With header</strong>
25
- <Card>
26
- <template #header>
27
- <h4>Hello</h4>
28
- </template>
29
- <template #header-end>
30
- <Button icon="ph:x" plain size="s" />
31
- </template>
32
- <p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Adipisci eligendi quos inventore voluptas ab saepe fugit deleniti ipsam exercitationem impedit quod rem ipsum laborum, quis quam error ipsa corrupti. Dolorem!</p>
33
- </Card>
34
- </div>
35
-
36
- <div>
37
- <strong class="block mb-s">With footer</strong>
38
- <Card>
39
- <p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Adipisci eligendi quos inventore voluptas ab saepe fugit deleniti ipsam exercitationem impedit quod rem ipsum laborum, quis quam error ipsa corrupti. Dolorem!</p>
40
-
41
- <template #footer>
42
- <Flex gap="s" justify-end>
43
- <Button>Cancel</Button>
44
- <Button variant="success">
45
- Save
46
- </Button>
47
- </Flex>
48
- </template>
49
- </Card>
50
- </div>
51
- </Flex>
52
- <Flex column gap="xl">
53
- <div>
54
- <strong class="block mb-s">With header + separators (each separator can be individually disabled)</strong>
55
- <Card separators>
56
- <template #header>
57
- <h4>Hello</h4>
58
- </template>
59
- <template #header-end>
60
- <Button icon="ph:x" plain size="s" />
61
- </template>
62
- <p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Adipisci eligendi quos inventore voluptas ab saepe fugit deleniti ipsam exercitationem impedit quod rem ipsum laborum, quis quam error ipsa corrupti. Dolorem!</p>
63
- <template #footer>
64
- <Flex gap="s" justify-start>
65
- <Button variant="success">
66
- Save
67
- </Button>
68
- <Button>Cancel</Button>
69
- </Flex>
70
- </template>
71
- </Card>
72
- </div>
73
-
74
- <Card :header-separator="false" footer-separator>
75
- <template #header>
76
- <h4>Hello</h4>
77
- </template>
78
- <template #header-end>
79
- <Button icon="ph:x" plain size="s" />
80
- </template>
81
- <p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Adipisci eligendi quos inventore voluptas ab saepe fugit deleniti ipsam exercitationem impedit quod rem ipsum laborum, quis quam error ipsa corrupti. Dolorem!</p>
82
- <template #footer>
83
- <Flex gap="s" justify-end>
84
- <Button>Cancel</Button>
85
- <Button variant="success">
86
- Save
87
- </Button>
88
- </Flex>
89
- </template>
90
- </Card>
91
- </Flex>
92
- </Grid>
93
- </div>
94
- </template>
1
+ <script setup lang='ts'>
2
+ import Button from '../components/Button/Button.vue'
3
+ import Card from '../components/Card/Card.vue'
4
+ import Flex from '../components/Flex/Flex.vue'
5
+ import Grid from '../components/Grid/Grid.vue'
6
+ </script>
7
+
8
+ <template>
9
+ <div class="mb-xxl">
10
+ <h3 class="mb-l">
11
+ Cards
12
+ </h3>
13
+
14
+ <Grid :columns="2" gap="xl">
15
+ <Flex column gap="xl">
16
+ <div>
17
+ <strong class="block mb-s">Base</strong>
18
+ <Card>
19
+ <p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Adipisci eligendi quos inventore voluptas ab saepe fugit deleniti ipsam exercitationem impedit quod rem ipsum laborum, quis quam error ipsa corrupti. Dolorem!</p>
20
+ </Card>
21
+ </div>
22
+
23
+ <div>
24
+ <strong class="block mb-s">With header</strong>
25
+ <Card>
26
+ <template #header>
27
+ <h4>Hello</h4>
28
+ </template>
29
+ <template #header-end>
30
+ <Button icon="ph:x" plain size="s" />
31
+ </template>
32
+ <p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Adipisci eligendi quos inventore voluptas ab saepe fugit deleniti ipsam exercitationem impedit quod rem ipsum laborum, quis quam error ipsa corrupti. Dolorem!</p>
33
+ </Card>
34
+ </div>
35
+
36
+ <div>
37
+ <strong class="block mb-s">With footer</strong>
38
+ <Card>
39
+ <p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Adipisci eligendi quos inventore voluptas ab saepe fugit deleniti ipsam exercitationem impedit quod rem ipsum laborum, quis quam error ipsa corrupti. Dolorem!</p>
40
+
41
+ <template #footer>
42
+ <Flex gap="s" x-end>
43
+ <Button>Cancel</Button>
44
+ <Button variant="success">
45
+ Save
46
+ </Button>
47
+ </Flex>
48
+ </template>
49
+ </Card>
50
+ </div>
51
+ </Flex>
52
+ <Flex column gap="xl">
53
+ <div>
54
+ <strong class="block mb-s">With header + separators (each separator can be individually disabled)</strong>
55
+ <Card separators>
56
+ <template #header>
57
+ <h4>Hello</h4>
58
+ </template>
59
+ <template #header-end>
60
+ <Button icon="ph:x" plain size="s" />
61
+ </template>
62
+ <p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Adipisci eligendi quos inventore voluptas ab saepe fugit deleniti ipsam exercitationem impedit quod rem ipsum laborum, quis quam error ipsa corrupti. Dolorem!</p>
63
+ <template #footer>
64
+ <Flex gap="s" x-start>
65
+ <Button variant="success">
66
+ Save
67
+ </Button>
68
+ <Button>Cancel</Button>
69
+ </Flex>
70
+ </template>
71
+ </Card>
72
+ </div>
73
+
74
+ <Card :header-separator="false" footer-separator>
75
+ <template #header>
76
+ <h4>Hello</h4>
77
+ </template>
78
+ <template #header-end>
79
+ <Button icon="ph:x" plain size="s" />
80
+ </template>
81
+ <p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Adipisci eligendi quos inventore voluptas ab saepe fugit deleniti ipsam exercitationem impedit quod rem ipsum laborum, quis quam error ipsa corrupti. Dolorem!</p>
82
+ <template #footer>
83
+ <Flex gap="s" x-end>
84
+ <Button>Cancel</Button>
85
+ <Button variant="success">
86
+ Save
87
+ </Button>
88
+ </Flex>
89
+ </template>
90
+ </Card>
91
+ </Flex>
92
+ </Grid>
93
+ </div>
94
+ </template>
@@ -1,123 +1,123 @@
1
- <script setup lang='ts'>
2
- import Checkbox from '../components/Checkbox/Checkbox.vue'
3
- import Grid from '../components/Grid/Grid.vue'
4
- import Radio from '../components/Radio/Radio.vue'
5
- import RadioGroup from '../components/Radio/RadioGroup.vue'
6
- import Switch from '../components/Switch/Switch.vue'
7
- </script>
8
-
9
- <template>
10
- <div class="mb-xxl">
11
- <Grid :columns="2" gap="xl">
12
- <div>
13
- <h3 class="mb-l">
14
- Checkbox
15
- </h3>
16
- <table class="mb-xl w-100">
17
- <tbody>
18
- <tr>
19
- <th>Base</th>
20
- <td>
21
- <Checkbox label="Just click me" />
22
- </td>
23
- </tr>
24
- <tr>
25
- <th>Accent</th>
26
- <td>
27
- <Checkbox label="Just click me" accent />
28
- </td>
29
- </tr>
30
- <tr>
31
- <th>Disabled</th>
32
- <td>
33
- <Checkbox disabled label="Just click me" />
34
- </td>
35
- </tr>
36
- <tr>
37
- <th>Custom icons</th>
38
- <td>
39
- <Checkbox icon-on="ph:check-fat" icon-off="ph:x-bold" label="Just click me" />
40
- </td>
41
- </tr>
42
- </tbody>
43
- </table>
44
-
45
- <h3 class="mb-l">
46
- Switch
47
- </h3>
48
- <table class="mb-xl w-100">
49
- <tbody>
50
- <tr>
51
- <th>Base</th>
52
- <td>
53
- <Switch label="Just click me" />
54
- </td>
55
- </tr>
56
- <tr>
57
- <th>Accent</th>
58
- <td>
59
- <Switch label="Just click me" accent />
60
- </td>
61
- </tr>
62
- <tr>
63
- <th>Disabled</th>
64
- <td>
65
- <Switch label="Just click me" disabled />
66
- </td>
67
- </tr>
68
- </tbody>
69
- </table>
70
- </div>
71
- <div>
72
- <h3 class="mb-l">
73
- Radio group
74
- </h3>
75
-
76
- <table class="w-100">
77
- <tbody>
78
- <tr>
79
- <th>Base</th>
80
- <td>
81
- <RadioGroup>
82
- <Radio value="one" label="First" />
83
- <Radio value="two" label="Second" />
84
- <Radio value="three" label="Third" disabled />
85
- </RadioGroup>
86
- </td>
87
- </tr>
88
- <tr>
89
- <th>Accent</th>
90
- <td>
91
- <RadioGroup>
92
- <Radio value="one" label="First" accent />
93
- <Radio value="two" label="Second" accent />
94
- <Radio value="three" label="Third" disabled accent />
95
- </RadioGroup>
96
- </td>
97
- </tr>
98
- <tr>
99
- <th>Vertical</th>
100
- <td>
101
- <RadioGroup column>
102
- <Radio value="one" label="First" />
103
- <Radio value="two" label="Second" />
104
- <Radio value="three" label="Third" disabled />
105
- </RadioGroup>
106
- </td>
107
- </tr>
108
- <tr>
109
- <th>Disabled</th>
110
- <td>
111
- <RadioGroup column disabled>
112
- <Radio value="one" label="First" />
113
- <Radio value="two" label="Second" />
114
- <Radio value="three" label="Third" disabled />
115
- </RadioGroup>
116
- </td>
117
- </tr>
118
- </tbody>
119
- </table>
120
- </div>
121
- </Grid>
122
- </div>
123
- </template>
1
+ <script setup lang='ts'>
2
+ import Checkbox from '../components/Checkbox/Checkbox.vue'
3
+ import Grid from '../components/Grid/Grid.vue'
4
+ import Radio from '../components/Radio/Radio.vue'
5
+ import RadioGroup from '../components/Radio/RadioGroup.vue'
6
+ import Switch from '../components/Switch/Switch.vue'
7
+ </script>
8
+
9
+ <template>
10
+ <div class="mb-xxl">
11
+ <Grid :columns="2" gap="xl">
12
+ <div>
13
+ <h3 class="mb-l">
14
+ Checkbox
15
+ </h3>
16
+ <table class="mb-xl w-100">
17
+ <tbody>
18
+ <tr>
19
+ <th>Base</th>
20
+ <td>
21
+ <Checkbox label="Just click me" />
22
+ </td>
23
+ </tr>
24
+ <tr>
25
+ <th>Accent</th>
26
+ <td>
27
+ <Checkbox label="Just click me" accent />
28
+ </td>
29
+ </tr>
30
+ <tr>
31
+ <th>Disabled</th>
32
+ <td>
33
+ <Checkbox disabled label="Just click me" />
34
+ </td>
35
+ </tr>
36
+ <tr>
37
+ <th>Custom icons</th>
38
+ <td>
39
+ <Checkbox icon-on="ph:check-fat" icon-off="ph:x-bold" label="Just click me" />
40
+ </td>
41
+ </tr>
42
+ </tbody>
43
+ </table>
44
+
45
+ <h3 class="mb-l">
46
+ Switch
47
+ </h3>
48
+ <table class="mb-xl w-100">
49
+ <tbody>
50
+ <tr>
51
+ <th>Base</th>
52
+ <td>
53
+ <Switch label="Just click me" />
54
+ </td>
55
+ </tr>
56
+ <tr>
57
+ <th>Accent</th>
58
+ <td>
59
+ <Switch label="Just click me" accent />
60
+ </td>
61
+ </tr>
62
+ <tr>
63
+ <th>Disabled</th>
64
+ <td>
65
+ <Switch label="Just click me" disabled />
66
+ </td>
67
+ </tr>
68
+ </tbody>
69
+ </table>
70
+ </div>
71
+ <div>
72
+ <h3 class="mb-l">
73
+ Radio group
74
+ </h3>
75
+
76
+ <table class="w-100">
77
+ <tbody>
78
+ <tr>
79
+ <th>Base</th>
80
+ <td>
81
+ <RadioGroup>
82
+ <Radio value="one" label="First" />
83
+ <Radio value="two" label="Second" />
84
+ <Radio value="three" label="Third" disabled />
85
+ </RadioGroup>
86
+ </td>
87
+ </tr>
88
+ <tr>
89
+ <th>Accent</th>
90
+ <td>
91
+ <RadioGroup>
92
+ <Radio value="one" label="First" accent />
93
+ <Radio value="two" label="Second" accent />
94
+ <Radio value="three" label="Third" disabled accent />
95
+ </RadioGroup>
96
+ </td>
97
+ </tr>
98
+ <tr>
99
+ <th>Vertical</th>
100
+ <td>
101
+ <RadioGroup column>
102
+ <Radio value="one" label="First" />
103
+ <Radio value="two" label="Second" />
104
+ <Radio value="three" label="Third" disabled />
105
+ </RadioGroup>
106
+ </td>
107
+ </tr>
108
+ <tr>
109
+ <th>Disabled</th>
110
+ <td>
111
+ <RadioGroup column disabled>
112
+ <Radio value="one" label="First" />
113
+ <Radio value="two" label="Second" />
114
+ <Radio value="three" label="Third" disabled />
115
+ </RadioGroup>
116
+ </td>
117
+ </tr>
118
+ </tbody>
119
+ </table>
120
+ </div>
121
+ </Grid>
122
+ </div>
123
+ </template>
@@ -1,47 +1,47 @@
1
- <script setup lang='ts'>
2
- import Button from '../components/Button/Button.vue'
3
- import CopyClipboard from '../components/CopyClipboard/CopyClipboard.vue'
4
- import Flex from '../components/Flex/Flex.vue'
5
- </script>
6
-
7
- <template>
8
- <div class="mb-xxl">
9
- <h3 class="mb-l">
10
- Clipboard copy
11
- </h3>
12
- <table>
13
- <tbody>
14
- <tr>
15
- <th>Base</th>
16
- <td>
17
- <CopyClipboard text="Copy me!">
18
- <p>Copy me!</p>
19
- </CopyClipboard>
20
- </td>
21
- </tr>
22
- <tr>
23
- <th>Custom slot & confirmation</th>
24
- <td>
25
- <CopyClipboard text="Copy me!" confirm>
26
- <Button>Copy me!</Button>
27
- </CopyClipboard>
28
- </td>
29
- </tr>
30
- <tr>
31
- <th>Custom confirm popup</th>
32
- <td>
33
- <CopyClipboard text="Copy me!" confirm>
34
- <Button>Copy me!</Button>
35
- <template #confirm>
36
- <Flex column gap="s" align-center>
37
- <strong>The dawg</strong>
38
- <img style="width:128px;border-radius:8px" src="https://i.imgur.com/jMxIs6p.png" alt="">
39
- </Flex>
40
- </template>
41
- </CopyClipboard>
42
- </td>
43
- </tr>
44
- </tbody>
45
- </table>
46
- </div>
47
- </template>
1
+ <script setup lang='ts'>
2
+ import Button from '../components/Button/Button.vue'
3
+ import CopyClipboard from '../components/CopyClipboard/CopyClipboard.vue'
4
+ import Flex from '../components/Flex/Flex.vue'
5
+ </script>
6
+
7
+ <template>
8
+ <div class="mb-xxl">
9
+ <h3 class="mb-l">
10
+ Clipboard copy
11
+ </h3>
12
+ <table>
13
+ <tbody>
14
+ <tr>
15
+ <th>Base</th>
16
+ <td>
17
+ <CopyClipboard text="Copy me!">
18
+ <p>Copy me!</p>
19
+ </CopyClipboard>
20
+ </td>
21
+ </tr>
22
+ <tr>
23
+ <th>Custom slot & confirmation</th>
24
+ <td>
25
+ <CopyClipboard text="Copy me!" confirm>
26
+ <Button>Copy me!</Button>
27
+ </CopyClipboard>
28
+ </td>
29
+ </tr>
30
+ <tr>
31
+ <th>Custom confirm popup</th>
32
+ <td>
33
+ <CopyClipboard text="Copy me!" confirm>
34
+ <Button>Copy me!</Button>
35
+ <template #confirm>
36
+ <Flex column gap="s" y-center>
37
+ <strong>The dawg</strong>
38
+ <img style="width:128px;border-radius:8px" src="https://i.imgur.com/jMxIs6p.png" alt="">
39
+ </Flex>
40
+ </template>
41
+ </CopyClipboard>
42
+ </td>
43
+ </tr>
44
+ </tbody>
45
+ </table>
46
+ </div>
47
+ </template>
@@ -1,39 +1,39 @@
1
- <script setup lang='ts'>
2
- import Avatar from '../components/Avatar/Avatar.vue'
3
- import Divider from '../components/Divider/Divider.vue'
4
- import Flex from '../components/Flex/Flex.vue'
5
- </script>
6
-
7
- <template>
8
- <div class="mb-xxl">
9
- <h3 class="mb-l">
10
- Dividers
11
- </h3>
12
-
13
- <div class="container container-s">
14
- <p>Standard divider</p>
15
- <Divider />
16
- <p>Divider with a variable spacing. For instance 80px. This means there will be a gap of 40 pixels above and below the divider. Size serves a different purpose with vertical dividers, so to achieve the same thing, you could also set the margin to <code>40px 0</code></p>
17
- <Divider :size="80" />
18
- <p>Using margin. The default divider size is 32px, so we need to either set it to 0 or offset the provided margin.</p>
19
- <Divider margin="40px 0" />
20
-
21
- <p>Different thickness (you specify the number of pixels)</p>
22
- <Divider :thickness="5" :size="64" />
23
- <p class="mb-s">
24
- Vertical dividers. Here, size is the height of the divider. And if you want to add extra spacing between dividers, jsut set the margin to something like <code>0 16px</code>.
25
- </p>
26
- <Flex class="mb-xl">
27
- <span>One</span>
28
- <Divider vertical :size="16" />
29
- <span>Two</span>
30
- <Divider vertical :size="16" />
31
- <span>Three</span>
32
- </Flex>
33
- <p>Dividers also accept a slot. This is rendered in the center, overlaying the divider. For instance an icon or an avatar, but it can be any component.</p>
34
- <Divider size="80">
35
- <Avatar />
36
- </Divider>
37
- </div>
38
- </div>
39
- </template>
1
+ <script setup lang='ts'>
2
+ import Avatar from '../components/Avatar/Avatar.vue'
3
+ import Divider from '../components/Divider/Divider.vue'
4
+ import Flex from '../components/Flex/Flex.vue'
5
+ </script>
6
+
7
+ <template>
8
+ <div class="mb-xxl">
9
+ <h3 class="mb-l">
10
+ Dividers
11
+ </h3>
12
+
13
+ <div class="container container-s">
14
+ <p>Standard divider</p>
15
+ <Divider />
16
+ <p>Divider with a variable spacing. For instance 80px. This means there will be a gap of 40 pixels above and below the divider. Size serves a different purpose with vertical dividers, so to achieve the same thing, you could also set the margin to <code>40px 0</code></p>
17
+ <Divider :size="80" />
18
+ <p>Using margin. The default divider size is 32px, so we need to either set it to 0 or offset the provided margin.</p>
19
+ <Divider margin="40px 0" />
20
+
21
+ <p>Different thickness (you specify the number of pixels)</p>
22
+ <Divider :thickness="5" :size="64" />
23
+ <p class="mb-s">
24
+ Vertical dividers. Here, size is the height of the divider. And if you want to add extra spacing between dividers, jsut set the margin to something like <code>0 16px</code>.
25
+ </p>
26
+ <Flex class="mb-xl">
27
+ <span>One</span>
28
+ <Divider vertical :size="16" />
29
+ <span>Two</span>
30
+ <Divider vertical :size="16" />
31
+ <span>Three</span>
32
+ </Flex>
33
+ <p>Dividers also accept a slot. This is rendered in the center, overlaying the divider. For instance an icon or an avatar, but it can be any component.</p>
34
+ <Divider size="80">
35
+ <Avatar />
36
+ </Divider>
37
+ </div>
38
+ </div>
39
+ </template>