@byyuurin/ui 0.0.10 → 0.0.11

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 (194) hide show
  1. package/README.md +2 -2
  2. package/dist/module.json +3 -3
  3. package/dist/module.mjs +1 -1
  4. package/dist/module.mjs.map +1 -1
  5. package/dist/runtime/app/injections.d.ts +388 -364
  6. package/dist/runtime/components/Accordion.vue +38 -67
  7. package/dist/runtime/components/Accordion.vue.d.ts +52 -0
  8. package/dist/runtime/components/Alert.vue +37 -75
  9. package/dist/runtime/components/Alert.vue.d.ts +59 -0
  10. package/dist/runtime/components/App.vue +25 -40
  11. package/dist/runtime/components/App.vue.d.ts +24 -0
  12. package/dist/runtime/components/Avatar.vue +31 -51
  13. package/dist/runtime/components/Avatar.vue.d.ts +25 -0
  14. package/dist/runtime/components/AvatarGroup.vue +38 -69
  15. package/dist/runtime/components/AvatarGroup.vue.d.ts +27 -0
  16. package/dist/runtime/components/Badge.vue +25 -51
  17. package/dist/runtime/components/Badge.vue.d.ts +44 -0
  18. package/dist/runtime/components/Breadcrumb.vue +36 -74
  19. package/dist/runtime/components/Breadcrumb.vue.d.ts +52 -0
  20. package/dist/runtime/components/Button.vue +62 -51
  21. package/dist/runtime/components/Button.vue.d.ts +29 -0
  22. package/dist/runtime/components/ButtonGroup.vue +17 -37
  23. package/dist/runtime/components/ButtonGroup.vue.d.ts +26 -0
  24. package/dist/runtime/components/Calendar.vue +75 -110
  25. package/dist/runtime/components/Calendar.vue.d.ts +75 -0
  26. package/dist/runtime/components/Card.vue +25 -42
  27. package/dist/runtime/components/Card.vue.d.ts +30 -0
  28. package/dist/runtime/components/Carousel.vue +118 -225
  29. package/dist/runtime/components/Carousel.vue.d.ts +104 -0
  30. package/dist/runtime/components/Checkbox.vue +46 -73
  31. package/dist/runtime/components/Checkbox.vue.d.ts +56 -0
  32. package/dist/runtime/components/Chip.vue +31 -48
  33. package/dist/runtime/components/Chip.vue.d.ts +30 -0
  34. package/dist/runtime/components/Collapsible.vue +22 -30
  35. package/dist/runtime/components/Collapsible.vue.d.ts +26 -0
  36. package/dist/runtime/components/Drawer.vue +51 -101
  37. package/dist/runtime/components/Drawer.vue.d.ts +80 -0
  38. package/dist/runtime/components/DropdownMenu.vue +37 -115
  39. package/dist/runtime/components/DropdownMenu.vue.d.ts +99 -0
  40. package/dist/runtime/components/DropdownMenuContent.vue +81 -77
  41. package/dist/runtime/components/DropdownMenuContent.vue.d.ts +39 -0
  42. package/dist/runtime/components/Form.vue +140 -254
  43. package/dist/runtime/components/Form.vue.d.ts +78 -0
  44. package/dist/runtime/components/FormItem.vue +50 -89
  45. package/dist/runtime/components/FormItem.vue.d.ts +60 -0
  46. package/dist/runtime/components/Input.vue +79 -115
  47. package/dist/runtime/components/Input.vue.d.ts +64 -0
  48. package/dist/runtime/components/InputNumber.vue +74 -117
  49. package/dist/runtime/components/InputNumber.vue.d.ts +245 -0
  50. package/dist/runtime/components/Kbd.vue +18 -39
  51. package/dist/runtime/components/Kbd.vue.d.ts +28 -0
  52. package/dist/runtime/components/Link.vue +168 -257
  53. package/dist/runtime/components/Link.vue.d.ts +95 -0
  54. package/dist/runtime/components/LinkBase.vue +36 -54
  55. package/dist/runtime/components/LinkBase.vue.d.ts +28 -0
  56. package/dist/runtime/components/Modal.vue +49 -84
  57. package/dist/runtime/components/Modal.vue.d.ts +66 -0
  58. package/dist/runtime/components/OverlayProvider.vue +10 -14
  59. package/dist/runtime/components/OverlayProvider.vue.d.ts +2 -0
  60. package/dist/runtime/components/Pagination.vue +55 -121
  61. package/dist/runtime/components/Pagination.vue.d.ts +93 -0
  62. package/dist/runtime/components/PinInput.vue +49 -58
  63. package/dist/runtime/components/PinInput.vue.d.ts +35 -0
  64. package/dist/runtime/components/Popover.vue +39 -68
  65. package/dist/runtime/components/Popover.vue.d.ts +45 -0
  66. package/dist/runtime/components/Progress.vue +68 -120
  67. package/dist/runtime/components/Progress.vue.d.ts +54 -0
  68. package/dist/runtime/components/RadioGroup.vue +67 -125
  69. package/dist/runtime/components/RadioGroup.vue.d.ts +74 -0
  70. package/dist/runtime/components/ScrollArea.vue +31 -31
  71. package/dist/runtime/components/ScrollArea.vue.d.ts +17 -0
  72. package/dist/runtime/components/Select.vue +114 -204
  73. package/dist/runtime/components/Select.vue.d.ts +119 -0
  74. package/dist/runtime/components/Separator.vue +26 -44
  75. package/dist/runtime/components/Separator.vue.d.ts +27 -0
  76. package/dist/runtime/components/Skeleton.vue +12 -21
  77. package/dist/runtime/components/Skeleton.vue.d.ts +19 -0
  78. package/dist/runtime/components/Slider.vue +52 -74
  79. package/dist/runtime/components/Slider.vue.d.ts +36 -0
  80. package/dist/runtime/components/Switch.vue +51 -71
  81. package/dist/runtime/components/Switch.vue.d.ts +49 -0
  82. package/dist/runtime/components/Table.vue +108 -194
  83. package/dist/runtime/components/Table.vue.d.ts +148 -0
  84. package/dist/runtime/components/Tabs.vue +36 -81
  85. package/dist/runtime/components/Tabs.vue.d.ts +65 -0
  86. package/dist/runtime/components/Textarea.vue +77 -124
  87. package/dist/runtime/components/Textarea.vue.d.ts +60 -0
  88. package/dist/runtime/components/Toast.vue +47 -75
  89. package/dist/runtime/components/Toast.vue.d.ts +131 -0
  90. package/dist/runtime/components/ToastProvider.vue +65 -101
  91. package/dist/runtime/components/ToastProvider.vue.d.ts +38 -0
  92. package/dist/runtime/components/Tooltip.vue +36 -47
  93. package/dist/runtime/components/Tooltip.vue.d.ts +31 -0
  94. package/dist/runtime/composables/useAvatarGroup.d.ts +1 -1
  95. package/dist/runtime/composables/useButtonGroup.d.ts +2 -2
  96. package/dist/runtime/composables/useFormItem.d.ts +2 -2
  97. package/dist/runtime/composables/useKbd.d.ts +1 -1
  98. package/dist/runtime/composables/useLocale.d.ts +3 -3
  99. package/dist/runtime/composables/useTheme.d.ts +1 -1
  100. package/dist/runtime/composables/useToast.d.ts +1 -1
  101. package/dist/runtime/locale/en.d.ts +1 -1
  102. package/dist/runtime/locale/zh-tw.d.ts +1 -1
  103. package/dist/runtime/theme/accordion.d.ts +45 -51
  104. package/dist/runtime/theme/accordion.js +1 -1
  105. package/dist/runtime/theme/alert.d.ts +115 -121
  106. package/dist/runtime/theme/alert.js +1 -1
  107. package/dist/runtime/theme/avatar-group.d.ts +42 -48
  108. package/dist/runtime/theme/avatar-group.js +1 -1
  109. package/dist/runtime/theme/avatar.d.ts +46 -52
  110. package/dist/runtime/theme/avatar.js +1 -1
  111. package/dist/runtime/theme/badge.d.ts +60 -66
  112. package/dist/runtime/theme/badge.js +1 -1
  113. package/dist/runtime/theme/breadcrumb.d.ts +52 -58
  114. package/dist/runtime/theme/breadcrumb.js +1 -1
  115. package/dist/runtime/theme/button-group.d.ts +36 -42
  116. package/dist/runtime/theme/button.d.ts +162 -168
  117. package/dist/runtime/theme/button.js +1 -1
  118. package/dist/runtime/theme/calendar.d.ts +52 -50
  119. package/dist/runtime/theme/calendar.js +20 -3
  120. package/dist/runtime/theme/card.d.ts +52 -58
  121. package/dist/runtime/theme/card.js +1 -1
  122. package/dist/runtime/theme/carousel.d.ts +98 -104
  123. package/dist/runtime/theme/carousel.js +1 -1
  124. package/dist/runtime/theme/checkbox.d.ts +77 -83
  125. package/dist/runtime/theme/checkbox.js +1 -1
  126. package/dist/runtime/theme/chip.d.ts +50 -56
  127. package/dist/runtime/theme/chip.js +1 -1
  128. package/dist/runtime/theme/collapsible.d.ts +29 -35
  129. package/dist/runtime/theme/collapsible.js +1 -1
  130. package/dist/runtime/theme/drawer.d.ts +120 -126
  131. package/dist/runtime/theme/drawer.js +1 -1
  132. package/dist/runtime/theme/dropdown-menu.d.ts +55 -61
  133. package/dist/runtime/theme/dropdown-menu.js +1 -1
  134. package/dist/runtime/theme/form-item.d.ts +63 -69
  135. package/dist/runtime/theme/form-item.js +1 -1
  136. package/dist/runtime/theme/form.d.ts +1 -7
  137. package/dist/runtime/theme/input-number.d.ts +98 -104
  138. package/dist/runtime/theme/input-number.js +1 -1
  139. package/dist/runtime/theme/input.d.ts +153 -159
  140. package/dist/runtime/theme/input.js +1 -1
  141. package/dist/runtime/theme/kbd.d.ts +30 -36
  142. package/dist/runtime/theme/link.d.ts +37 -43
  143. package/dist/runtime/theme/modal.d.ts +36 -42
  144. package/dist/runtime/theme/modal.js +1 -1
  145. package/dist/runtime/theme/pagination.d.ts +71 -77
  146. package/dist/runtime/theme/pagination.js +1 -1
  147. package/dist/runtime/theme/pinInput.d.ts +80 -86
  148. package/dist/runtime/theme/pinInput.js +1 -1
  149. package/dist/runtime/theme/popover.d.ts +29 -35
  150. package/dist/runtime/theme/popover.js +1 -1
  151. package/dist/runtime/theme/progress.d.ts +163 -169
  152. package/dist/runtime/theme/progress.js +1 -1
  153. package/dist/runtime/theme/radio-group.d.ts +99 -105
  154. package/dist/runtime/theme/radio-group.js +1 -1
  155. package/dist/runtime/theme/scroll-area.d.ts +62 -68
  156. package/dist/runtime/theme/scroll-area.js +1 -1
  157. package/dist/runtime/theme/select.d.ts +165 -171
  158. package/dist/runtime/theme/select.js +1 -1
  159. package/dist/runtime/theme/separator.d.ts +62 -68
  160. package/dist/runtime/theme/separator.js +1 -1
  161. package/dist/runtime/theme/skeleton.d.ts +1 -7
  162. package/dist/runtime/theme/slider.d.ts +62 -68
  163. package/dist/runtime/theme/slider.js +1 -1
  164. package/dist/runtime/theme/switch.d.ts +111 -117
  165. package/dist/runtime/theme/switch.js +1 -1
  166. package/dist/runtime/theme/table.d.ts +75 -81
  167. package/dist/runtime/theme/table.js +1 -1
  168. package/dist/runtime/theme/tabs.d.ts +114 -120
  169. package/dist/runtime/theme/tabs.js +1 -1
  170. package/dist/runtime/theme/textarea.d.ts +76 -82
  171. package/dist/runtime/theme/textarea.js +1 -1
  172. package/dist/runtime/theme/toast-provider.d.ts +106 -112
  173. package/dist/runtime/theme/toast-provider.js +1 -1
  174. package/dist/runtime/theme/toast.d.ts +74 -80
  175. package/dist/runtime/theme/toast.js +1 -1
  176. package/dist/runtime/theme/tooltip.d.ts +35 -41
  177. package/dist/runtime/theme/tooltip.js +1 -1
  178. package/dist/runtime/types/utils.d.ts +5 -5
  179. package/dist/runtime/utils/link.d.ts +3 -5
  180. package/dist/runtime/utils/styler.d.ts +2 -2
  181. package/dist/runtime/utils/styler.js +2 -2
  182. package/dist/shared/ui.D1BTWZFB.mjs +5 -0
  183. package/dist/shared/ui.D1BTWZFB.mjs.map +1 -0
  184. package/dist/types.d.mts +1 -1
  185. package/dist/unocss.mjs +5 -4
  186. package/dist/unocss.mjs.map +1 -1
  187. package/dist/unplugin.mjs +1 -1
  188. package/dist/unplugin.mjs.map +1 -1
  189. package/dist/vite.mjs +1 -1
  190. package/package.json +77 -75
  191. package/dist/module.cjs +0 -5
  192. package/dist/shared/ui.3e7fad19.mjs +0 -5
  193. package/dist/shared/ui.3e7fad19.mjs.map +0 -1
  194. package/dist/types.d.ts +0 -1
@@ -1,186 +1,180 @@
1
- declare const _default: {
2
- base: undefined;
3
- slots: {
4
- wrapper: string;
5
- root: string;
6
- indicator: string;
7
- status: string;
8
- steps: string;
9
- step: string;
10
- };
11
- variants: {
12
- size: {
13
- xs: {
14
- wrapper: string;
15
- };
16
- sm: {
17
- wrapper: string;
18
- };
19
- md: {
20
- wrapper: string;
21
- };
22
- lg: {
23
- wrapper: string;
24
- };
25
- xl: {
26
- wrapper: string;
27
- };
1
+ declare const _default: import("@byyuurin/ui-kit").CVScopeMeta<{
2
+ size: {
3
+ xs: {
4
+ wrapper: string;
5
+ };
6
+ sm: {
7
+ wrapper: string;
28
8
  };
29
- step: {
30
- active: {
31
- step: string;
32
- };
33
- first: {
34
- step: string;
35
- };
36
- other: {
37
- step: string;
38
- };
39
- last: {
40
- step: string;
41
- };
9
+ md: {
10
+ wrapper: string;
42
11
  };
43
- orientation: {
44
- horizontal: {
45
- wrapper: string;
46
- root: string;
47
- status: string;
48
- };
49
- vertical: {
50
- wrapper: string;
51
- root: string;
52
- status: string;
53
- };
12
+ lg: {
13
+ wrapper: string;
54
14
  };
55
- inverted: {
56
- true: {
57
- status: string;
58
- };
15
+ xl: {
16
+ wrapper: string;
59
17
  };
60
18
  };
61
- compoundVariants: ({
62
- orientation: "horizontal";
63
- inverted: true;
64
- class: {
19
+ step: {
20
+ active: {
65
21
  step: string;
66
- status: string;
67
- steps?: undefined;
68
- root?: undefined;
69
- };
70
- size?: undefined;
71
- } | {
72
- orientation: "vertical";
73
- inverted: true;
74
- class: {
75
- steps: string;
76
- status: string;
77
- step?: undefined;
78
- root?: undefined;
79
- };
80
- size?: undefined;
81
- } | {
82
- size: "xs";
83
- orientation: "horizontal";
84
- class: {
85
- root: string;
86
- step?: undefined;
87
- status?: undefined;
88
- steps?: undefined;
89
- };
90
- inverted?: undefined;
91
- } | {
92
- size: "sm";
93
- orientation: "horizontal";
94
- class: {
95
- root: string;
96
- step?: undefined;
97
- status?: undefined;
98
- steps?: undefined;
99
- };
100
- inverted?: undefined;
101
- } | {
102
- size: "md";
103
- orientation: "horizontal";
104
- class: {
105
- root: string;
106
- step?: undefined;
107
- status?: undefined;
108
- steps?: undefined;
109
- };
110
- inverted?: undefined;
111
- } | {
112
- size: "lg";
113
- orientation: "horizontal";
114
- class: {
115
- root: string;
116
- step?: undefined;
117
- status?: undefined;
118
- steps?: undefined;
119
22
  };
120
- inverted?: undefined;
121
- } | {
122
- size: "xl";
123
- orientation: "horizontal";
124
- class: {
125
- root: string;
126
- step?: undefined;
127
- status?: undefined;
128
- steps?: undefined;
23
+ first: {
24
+ step: string;
129
25
  };
130
- inverted?: undefined;
131
- } | {
132
- size: "xs";
133
- orientation: "vertical";
134
- class: {
135
- root: string;
136
- step?: undefined;
137
- status?: undefined;
138
- steps?: undefined;
26
+ other: {
27
+ step: string;
139
28
  };
140
- inverted?: undefined;
141
- } | {
142
- size: "sm";
143
- orientation: "vertical";
144
- class: {
145
- root: string;
146
- step?: undefined;
147
- status?: undefined;
148
- steps?: undefined;
29
+ last: {
30
+ step: string;
149
31
  };
150
- inverted?: undefined;
151
- } | {
152
- size: "md";
153
- orientation: "vertical";
154
- class: {
32
+ };
33
+ orientation: {
34
+ horizontal: {
35
+ wrapper: string;
155
36
  root: string;
156
- step?: undefined;
157
- status?: undefined;
158
- steps?: undefined;
37
+ status: string;
159
38
  };
160
- inverted?: undefined;
161
- } | {
162
- size: "lg";
163
- orientation: "vertical";
164
- class: {
39
+ vertical: {
40
+ wrapper: string;
165
41
  root: string;
166
- step?: undefined;
167
- status?: undefined;
168
- steps?: undefined;
42
+ status: string;
169
43
  };
170
- inverted?: undefined;
171
- } | {
172
- size: "xl";
173
- orientation: "vertical";
174
- class: {
175
- root: string;
176
- step?: undefined;
177
- status?: undefined;
178
- steps?: undefined;
44
+ };
45
+ inverted: {
46
+ true: {
47
+ status: string;
179
48
  };
180
- inverted?: undefined;
181
- })[];
182
- defaultVariants: {
183
- size: "md";
184
49
  };
185
- };
50
+ }, ({
51
+ orientation: "horizontal";
52
+ inverted: true;
53
+ class: {
54
+ step: string;
55
+ status: string;
56
+ steps?: undefined;
57
+ root?: undefined;
58
+ };
59
+ size?: undefined;
60
+ } | {
61
+ orientation: "vertical";
62
+ inverted: true;
63
+ class: {
64
+ steps: string;
65
+ status: string;
66
+ step?: undefined;
67
+ root?: undefined;
68
+ };
69
+ size?: undefined;
70
+ } | {
71
+ size: "xs";
72
+ orientation: "horizontal";
73
+ class: {
74
+ root: string;
75
+ step?: undefined;
76
+ status?: undefined;
77
+ steps?: undefined;
78
+ };
79
+ inverted?: undefined;
80
+ } | {
81
+ size: "sm";
82
+ orientation: "horizontal";
83
+ class: {
84
+ root: string;
85
+ step?: undefined;
86
+ status?: undefined;
87
+ steps?: undefined;
88
+ };
89
+ inverted?: undefined;
90
+ } | {
91
+ size: "md";
92
+ orientation: "horizontal";
93
+ class: {
94
+ root: string;
95
+ step?: undefined;
96
+ status?: undefined;
97
+ steps?: undefined;
98
+ };
99
+ inverted?: undefined;
100
+ } | {
101
+ size: "lg";
102
+ orientation: "horizontal";
103
+ class: {
104
+ root: string;
105
+ step?: undefined;
106
+ status?: undefined;
107
+ steps?: undefined;
108
+ };
109
+ inverted?: undefined;
110
+ } | {
111
+ size: "xl";
112
+ orientation: "horizontal";
113
+ class: {
114
+ root: string;
115
+ step?: undefined;
116
+ status?: undefined;
117
+ steps?: undefined;
118
+ };
119
+ inverted?: undefined;
120
+ } | {
121
+ size: "xs";
122
+ orientation: "vertical";
123
+ class: {
124
+ root: string;
125
+ step?: undefined;
126
+ status?: undefined;
127
+ steps?: undefined;
128
+ };
129
+ inverted?: undefined;
130
+ } | {
131
+ size: "sm";
132
+ orientation: "vertical";
133
+ class: {
134
+ root: string;
135
+ step?: undefined;
136
+ status?: undefined;
137
+ steps?: undefined;
138
+ };
139
+ inverted?: undefined;
140
+ } | {
141
+ size: "md";
142
+ orientation: "vertical";
143
+ class: {
144
+ root: string;
145
+ step?: undefined;
146
+ status?: undefined;
147
+ steps?: undefined;
148
+ };
149
+ inverted?: undefined;
150
+ } | {
151
+ size: "lg";
152
+ orientation: "vertical";
153
+ class: {
154
+ root: string;
155
+ step?: undefined;
156
+ status?: undefined;
157
+ steps?: undefined;
158
+ };
159
+ inverted?: undefined;
160
+ } | {
161
+ size: "xl";
162
+ orientation: "vertical";
163
+ class: {
164
+ root: string;
165
+ step?: undefined;
166
+ status?: undefined;
167
+ steps?: undefined;
168
+ };
169
+ inverted?: undefined;
170
+ })[], {
171
+ size: "md";
172
+ }, undefined, {
173
+ wrapper: string;
174
+ root: string;
175
+ indicator: string;
176
+ status: string;
177
+ steps: string;
178
+ step: string;
179
+ }>;
186
180
  export default _default;
@@ -2,7 +2,7 @@ import { ct } from "@byyuurin/ui-kit";
2
2
  export default ct(
3
3
  /* @unocss-include */
4
4
  {
5
- slots: {
5
+ parts: {
6
6
  wrapper: "gap-2",
7
7
  root: "relative overflow-hidden rounded-full bg-soft-ui-cb/30",
8
8
  indicator: "bg-ui-fill rounded-full size-full transition-transform duration-200 ease-out",
@@ -1,110 +1,104 @@
1
- declare const _default: {
2
- base: undefined;
3
- slots: {
4
- root: string;
5
- fieldset: string;
6
- legend: string;
7
- item: string;
8
- base: string;
9
- indicator: string;
10
- container: string;
11
- wrapper: string;
12
- label: string;
13
- description: string;
1
+ declare const _default: import("@byyuurin/ui-kit").CVScopeMeta<{
2
+ orientation: {
3
+ horizontal: {
4
+ fieldset: string;
5
+ };
6
+ vertical: {
7
+ fieldset: string;
8
+ };
9
+ };
10
+ size: {
11
+ xs: {
12
+ root: string;
13
+ };
14
+ sm: {
15
+ root: string;
16
+ };
17
+ md: {
18
+ root: string;
19
+ };
20
+ lg: {
21
+ root: string;
22
+ };
23
+ xl: {
24
+ root: string;
25
+ };
26
+ };
27
+ disabled: {
28
+ true: {
29
+ item: string;
30
+ };
31
+ false: {
32
+ label: string;
33
+ };
34
+ };
35
+ required: {
36
+ true: {
37
+ legend: string;
38
+ };
39
+ };
40
+ }, import("@byyuurin/ui-kit").CVCompoundVariants<{
41
+ orientation: {
42
+ horizontal: {
43
+ fieldset: string;
44
+ };
45
+ vertical: {
46
+ fieldset: string;
47
+ };
48
+ };
49
+ size: {
50
+ xs: {
51
+ root: string;
52
+ };
53
+ sm: {
54
+ root: string;
55
+ };
56
+ md: {
57
+ root: string;
58
+ };
59
+ lg: {
60
+ root: string;
61
+ };
62
+ xl: {
63
+ root: string;
64
+ };
14
65
  };
15
- variants: {
16
- orientation: {
17
- horizontal: {
18
- fieldset: string;
19
- };
20
- vertical: {
21
- fieldset: string;
22
- };
23
- };
24
- size: {
25
- xs: {
26
- root: string;
27
- };
28
- sm: {
29
- root: string;
30
- };
31
- md: {
32
- root: string;
33
- };
34
- lg: {
35
- root: string;
36
- };
37
- xl: {
38
- root: string;
39
- };
40
- };
41
- disabled: {
42
- true: {
43
- item: string;
44
- };
45
- false: {
46
- label: string;
47
- };
48
- };
49
- required: {
50
- true: {
51
- legend: string;
52
- };
66
+ disabled: {
67
+ true: {
68
+ item: string;
69
+ };
70
+ false: {
71
+ label: string;
53
72
  };
54
73
  };
55
- compoundVariants: import("@byyuurin/ui-kit").CVCompoundVariants<{
56
- orientation: {
57
- horizontal: {
58
- fieldset: string;
59
- };
60
- vertical: {
61
- fieldset: string;
62
- };
63
- };
64
- size: {
65
- xs: {
66
- root: string;
67
- };
68
- sm: {
69
- root: string;
70
- };
71
- md: {
72
- root: string;
73
- };
74
- lg: {
75
- root: string;
76
- };
77
- xl: {
78
- root: string;
79
- };
80
- };
81
- disabled: {
82
- true: {
83
- item: string;
84
- };
85
- false: {
86
- label: string;
87
- };
88
- };
89
- required: {
90
- true: {
91
- legend: string;
92
- };
93
- };
94
- }, {
95
- root: string;
96
- fieldset: string;
97
- legend: string;
98
- item: string;
99
- base: string;
100
- indicator: string;
101
- container: string;
102
- wrapper: string;
103
- label: string;
104
- description: string;
105
- }, undefined>;
106
- defaultVariants: {
107
- size: "md";
74
+ required: {
75
+ true: {
76
+ legend: string;
77
+ };
108
78
  };
109
- };
79
+ }, {
80
+ root: string;
81
+ fieldset: string;
82
+ legend: string;
83
+ item: string;
84
+ base: string;
85
+ indicator: string;
86
+ container: string;
87
+ wrapper: string;
88
+ label: string;
89
+ description: string;
90
+ }, undefined>, {
91
+ size: "md";
92
+ }, undefined, {
93
+ root: string;
94
+ fieldset: string;
95
+ legend: string;
96
+ item: string;
97
+ base: string;
98
+ indicator: string;
99
+ container: string;
100
+ wrapper: string;
101
+ label: string;
102
+ description: string;
103
+ }>;
110
104
  export default _default;
@@ -2,7 +2,7 @@ import { ct } from "@byyuurin/ui-kit";
2
2
  export default ct(
3
3
  /* @unocss-include */
4
4
  {
5
- slots: {
5
+ parts: {
6
6
  root: "",
7
7
  fieldset: "flex flex-wrap gap-2 gap-x-4",
8
8
  legend: "mb-2 color-ui-base",