@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,7 +1,7 @@
1
1
  import type { UserConfig } from '@unocss/core';
2
2
  import type { UseEventBusReturn } from '@vueuse/core';
3
3
  import type { ComputedRef, MaybeRefOrGetter, Ref } from 'vue';
4
- import type { AvatarGroupProps, ButtonGroupProps, FormErrorWithId, FormEvent, GetObjectField, Messages } from '../types/index.js';
4
+ import type { AvatarGroupProps, ButtonGroupProps, FormErrorWithId, FormEvent, FormItemProps, GetObjectField, Messages } from '../types/index.js';
5
5
  import type { Locale } from '../utils/index.js';
6
6
  export type AvatarGroupProvideValue = Pick<AvatarGroupProps, 'size'>;
7
7
  export declare const InjectionKeyAvatarGroup: import("vue").InjectionKey<ComputedRef<AvatarGroupProvideValue>>, injectAvatarGroup: () => ComputedRef<AvatarGroupProvideValue> | undefined, provideAvatarGroup: (value: ComputedRef<AvatarGroupProvideValue>) => void;
@@ -38,7 +38,7 @@ export declare const InjectionKeyFormErrors: import("vue").InjectionKey<Ref<Form
38
38
  export declare const InjectionKeyLocaleContext: import("vue").InjectionKey<MaybeRefOrGetter<Locale<Messages> | undefined>>, injectLocaleContext: () => MaybeRefOrGetter<Locale<Messages> | undefined>, provideLocaleContext: (value: MaybeRefOrGetter<Locale<Messages> | undefined>) => void;
39
39
  export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<MaybeRefOrGetter<{
40
40
  accordion?: {
41
- slots?: {
41
+ parts?: {
42
42
  root?: string | undefined;
43
43
  item?: string | undefined;
44
44
  header?: string | undefined;
@@ -57,7 +57,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
57
57
  } | undefined;
58
58
  } | undefined;
59
59
  compoundVariants?: ({
60
- disabled?: (boolean | boolean[]) | undefined;
60
+ disabled?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
61
61
  } & {
62
62
  class?: {
63
63
  root?: import("@byyuurin/ui-kit").ClassValue;
@@ -72,7 +72,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
72
72
  } | undefined;
73
73
  className?: never;
74
74
  })[] | ({
75
- disabled?: (boolean | boolean[]) | undefined;
75
+ disabled?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
76
76
  } & {
77
77
  class?: never;
78
78
  className?: {
@@ -92,7 +92,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
92
92
  } | undefined;
93
93
  } | undefined;
94
94
  alert?: {
95
- slots?: {
95
+ parts?: {
96
96
  root?: string | undefined;
97
97
  wrapper?: string | undefined;
98
98
  title?: string | undefined;
@@ -134,9 +134,9 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
134
134
  } | undefined;
135
135
  } | undefined;
136
136
  compoundVariants?: ({
137
- variant?: ("solid" | "outline" | "soft" | "soft-outline" | ("solid" | "outline" | "soft" | "soft-outline")[]) | undefined;
138
- orientation?: ("horizontal" | "vertical" | ("horizontal" | "vertical")[]) | undefined;
139
- title?: (boolean | boolean[]) | undefined;
137
+ variant?: import("@byyuurin/ui-kit").MaybeArray<"solid" | "outline" | "soft" | "soft-outline"> | undefined;
138
+ orientation?: import("@byyuurin/ui-kit").MaybeArray<"horizontal" | "vertical"> | undefined;
139
+ title?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
140
140
  } & {
141
141
  class?: {
142
142
  root?: import("@byyuurin/ui-kit").ClassValue;
@@ -149,9 +149,9 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
149
149
  } | undefined;
150
150
  className?: never;
151
151
  })[] | ({
152
- variant?: ("solid" | "outline" | "soft" | "soft-outline" | ("solid" | "outline" | "soft" | "soft-outline")[]) | undefined;
153
- orientation?: ("horizontal" | "vertical" | ("horizontal" | "vertical")[]) | undefined;
154
- title?: (boolean | boolean[]) | undefined;
152
+ variant?: import("@byyuurin/ui-kit").MaybeArray<"solid" | "outline" | "soft" | "soft-outline"> | undefined;
153
+ orientation?: import("@byyuurin/ui-kit").MaybeArray<"horizontal" | "vertical"> | undefined;
154
+ title?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
155
155
  } & {
156
156
  class?: never;
157
157
  className?: {
@@ -189,7 +189,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
189
189
  } | undefined;
190
190
  } | undefined;
191
191
  avatar?: {
192
- slots?: {
192
+ parts?: {
193
193
  root?: string | undefined;
194
194
  image?: string | undefined;
195
195
  fallback?: string | undefined;
@@ -215,7 +215,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
215
215
  } | undefined;
216
216
  } | undefined;
217
217
  compoundVariants?: ({
218
- size?: ("xs" | "sm" | "md" | "lg" | "xl" | ("xs" | "sm" | "md" | "lg" | "xl")[]) | undefined;
218
+ size?: import("@byyuurin/ui-kit").MaybeArray<"xs" | "sm" | "md" | "lg" | "xl"> | undefined;
219
219
  } & {
220
220
  class?: {
221
221
  root?: import("@byyuurin/ui-kit").ClassValue;
@@ -225,7 +225,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
225
225
  } | undefined;
226
226
  className?: never;
227
227
  })[] | ({
228
- size?: ("xs" | "sm" | "md" | "lg" | "xl" | ("xs" | "sm" | "md" | "lg" | "xl")[]) | undefined;
228
+ size?: import("@byyuurin/ui-kit").MaybeArray<"xs" | "sm" | "md" | "lg" | "xl"> | undefined;
229
229
  } & {
230
230
  class?: never;
231
231
  className?: {
@@ -240,7 +240,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
240
240
  } | undefined;
241
241
  } | undefined;
242
242
  avatarGroup?: {
243
- slots?: {
243
+ parts?: {
244
244
  root?: string | undefined;
245
245
  base?: string | undefined;
246
246
  } | undefined;
@@ -264,7 +264,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
264
264
  } | undefined;
265
265
  } | undefined;
266
266
  compoundVariants?: ({
267
- size?: ("xs" | "sm" | "md" | "lg" | "xl" | ("xs" | "sm" | "md" | "lg" | "xl")[]) | undefined;
267
+ size?: import("@byyuurin/ui-kit").MaybeArray<"xs" | "sm" | "md" | "lg" | "xl"> | undefined;
268
268
  } & {
269
269
  class?: {
270
270
  root?: import("@byyuurin/ui-kit").ClassValue;
@@ -272,7 +272,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
272
272
  } | undefined;
273
273
  className?: never;
274
274
  })[] | ({
275
- size?: ("xs" | "sm" | "md" | "lg" | "xl" | ("xs" | "sm" | "md" | "lg" | "xl")[]) | undefined;
275
+ size?: import("@byyuurin/ui-kit").MaybeArray<"xs" | "sm" | "md" | "lg" | "xl"> | undefined;
276
276
  } & {
277
277
  class?: never;
278
278
  className?: {
@@ -285,7 +285,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
285
285
  } | undefined;
286
286
  } | undefined;
287
287
  badge?: {
288
- slots?: {
288
+ parts?: {
289
289
  root?: string | undefined;
290
290
  base?: string | undefined;
291
291
  } | undefined;
@@ -365,7 +365,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
365
365
  } | undefined;
366
366
  } | undefined;
367
367
  breadcrumb?: {
368
- slots?: {
368
+ parts?: {
369
369
  root?: string | undefined;
370
370
  list?: string | undefined;
371
371
  item?: string | undefined;
@@ -408,7 +408,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
408
408
  } | undefined;
409
409
  } | undefined;
410
410
  button?: {
411
- slots?: {
411
+ parts?: {
412
412
  base?: string | undefined;
413
413
  label?: string | undefined;
414
414
  leadingIcon?: string | undefined;
@@ -611,16 +611,16 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
611
611
  } | undefined;
612
612
  } | undefined;
613
613
  compoundVariants?: ({
614
- size?: ("xs" | "sm" | "md" | "lg" | "xl" | ("xs" | "sm" | "md" | "lg" | "xl")[]) | undefined;
615
- orientation?: ("horizontal" | "vertical" | ("horizontal" | "vertical")[]) | undefined;
614
+ size?: import("@byyuurin/ui-kit").MaybeArray<"xs" | "sm" | "md" | "lg" | "xl"> | undefined;
615
+ orientation?: import("@byyuurin/ui-kit").MaybeArray<"horizontal" | "vertical"> | undefined;
616
616
  } & {
617
617
  class?: import("@byyuurin/ui-kit").ClassValue | {
618
618
  base?: import("@byyuurin/ui-kit").ClassValue;
619
619
  };
620
620
  className?: never;
621
621
  })[] | ({
622
- size?: ("xs" | "sm" | "md" | "lg" | "xl" | ("xs" | "sm" | "md" | "lg" | "xl")[]) | undefined;
623
- orientation?: ("horizontal" | "vertical" | ("horizontal" | "vertical")[]) | undefined;
622
+ size?: import("@byyuurin/ui-kit").MaybeArray<"xs" | "sm" | "md" | "lg" | "xl"> | undefined;
623
+ orientation?: import("@byyuurin/ui-kit").MaybeArray<"horizontal" | "vertical"> | undefined;
624
624
  } & {
625
625
  class?: never;
626
626
  className?: import("@byyuurin/ui-kit").ClassValue | {
@@ -633,7 +633,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
633
633
  } | undefined;
634
634
  } | undefined;
635
635
  calendar?: {
636
- slots?: {
636
+ parts?: {
637
637
  root?: string | undefined;
638
638
  header?: string | undefined;
639
639
  body?: string | undefined;
@@ -664,6 +664,14 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
664
664
  root?: string | undefined;
665
665
  } | undefined;
666
666
  } | undefined;
667
+ multipleMonths?: {
668
+ true?: {
669
+ cellTrigger?: string | undefined;
670
+ } | undefined;
671
+ false?: {
672
+ cellTrigger?: string | undefined;
673
+ } | undefined;
674
+ } | undefined;
667
675
  readonly?: {
668
676
  true?: {
669
677
  cellTrigger?: string | undefined;
@@ -687,7 +695,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
687
695
  } | undefined;
688
696
  } | undefined;
689
697
  card?: {
690
- slots?: {
698
+ parts?: {
691
699
  root?: string | undefined;
692
700
  header?: string | undefined;
693
701
  body?: string | undefined;
@@ -716,7 +724,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
716
724
  } | undefined;
717
725
  } | undefined;
718
726
  compoundVariants?: ({
719
- variant?: ("solid" | "outline" | "soft" | "soft-outline" | ("solid" | "outline" | "soft" | "soft-outline")[]) | undefined;
727
+ variant?: import("@byyuurin/ui-kit").MaybeArray<"solid" | "outline" | "soft" | "soft-outline"> | undefined;
720
728
  } & {
721
729
  class?: {
722
730
  root?: import("@byyuurin/ui-kit").ClassValue;
@@ -728,7 +736,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
728
736
  } | undefined;
729
737
  className?: never;
730
738
  })[] | ({
731
- variant?: ("solid" | "outline" | "soft" | "soft-outline" | ("solid" | "outline" | "soft" | "soft-outline")[]) | undefined;
739
+ variant?: import("@byyuurin/ui-kit").MaybeArray<"solid" | "outline" | "soft" | "soft-outline"> | undefined;
732
740
  } & {
733
741
  class?: never;
734
742
  className?: {
@@ -745,7 +753,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
745
753
  } | undefined;
746
754
  } | undefined;
747
755
  carousel?: {
748
- slots?: {
756
+ parts?: {
749
757
  root?: string | undefined;
750
758
  viewport?: string | undefined;
751
759
  container?: string | undefined;
@@ -783,8 +791,8 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
783
791
  } | undefined;
784
792
  } | undefined;
785
793
  compoundVariants?: ({
786
- orientation?: ("horizontal" | "vertical" | ("horizontal" | "vertical")[]) | undefined;
787
- active?: (boolean | boolean[]) | undefined;
794
+ orientation?: import("@byyuurin/ui-kit").MaybeArray<"horizontal" | "vertical"> | undefined;
795
+ active?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
788
796
  } & {
789
797
  class?: {
790
798
  root?: import("@byyuurin/ui-kit").ClassValue;
@@ -800,8 +808,8 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
800
808
  } | undefined;
801
809
  className?: never;
802
810
  })[] | ({
803
- orientation?: ("horizontal" | "vertical" | ("horizontal" | "vertical")[]) | undefined;
804
- active?: (boolean | boolean[]) | undefined;
811
+ orientation?: import("@byyuurin/ui-kit").MaybeArray<"horizontal" | "vertical"> | undefined;
812
+ active?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
805
813
  } & {
806
814
  class?: never;
807
815
  className?: {
@@ -823,7 +831,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
823
831
  } | undefined;
824
832
  } | undefined;
825
833
  checkbox?: {
826
- slots?: {
834
+ parts?: {
827
835
  root?: string | undefined;
828
836
  base?: string | undefined;
829
837
  container?: string | undefined;
@@ -865,9 +873,9 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
865
873
  } | undefined;
866
874
  } | undefined;
867
875
  compoundVariants?: ({
868
- size?: ("xs" | "sm" | "md" | "lg" | "xl" | ("xs" | "sm" | "md" | "lg" | "xl")[]) | undefined;
869
- required?: (boolean | boolean[]) | undefined;
870
- disabled?: (boolean | boolean[]) | undefined;
876
+ size?: import("@byyuurin/ui-kit").MaybeArray<"xs" | "sm" | "md" | "lg" | "xl"> | undefined;
877
+ required?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
878
+ disabled?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
871
879
  } & {
872
880
  class?: {
873
881
  root?: import("@byyuurin/ui-kit").ClassValue;
@@ -880,9 +888,9 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
880
888
  } | undefined;
881
889
  className?: never;
882
890
  })[] | ({
883
- size?: ("xs" | "sm" | "md" | "lg" | "xl" | ("xs" | "sm" | "md" | "lg" | "xl")[]) | undefined;
884
- required?: (boolean | boolean[]) | undefined;
885
- disabled?: (boolean | boolean[]) | undefined;
891
+ size?: import("@byyuurin/ui-kit").MaybeArray<"xs" | "sm" | "md" | "lg" | "xl"> | undefined;
892
+ required?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
893
+ disabled?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
886
894
  } & {
887
895
  class?: never;
888
896
  className?: {
@@ -900,7 +908,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
900
908
  } | undefined;
901
909
  } | undefined;
902
910
  chip?: {
903
- slots?: {
911
+ parts?: {
904
912
  base?: string | undefined;
905
913
  label?: string | undefined;
906
914
  leadingIcon?: string | undefined;
@@ -965,7 +973,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
965
973
  } | undefined;
966
974
  } | undefined;
967
975
  collapsible?: {
968
- slots?: {
976
+ parts?: {
969
977
  root?: string | undefined;
970
978
  content?: string | undefined;
971
979
  } | undefined;
@@ -978,7 +986,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
978
986
  } | undefined;
979
987
  } | undefined;
980
988
  compoundVariants?: ({
981
- [x: string]: (string | number | (string | number)[]) | undefined;
989
+ [x: string]: import("@byyuurin/ui-kit").MaybeArray<string | number> | undefined;
982
990
  } & {
983
991
  class?: {
984
992
  root?: import("@byyuurin/ui-kit").ClassValue;
@@ -986,7 +994,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
986
994
  } | undefined;
987
995
  className?: never;
988
996
  })[] | ({
989
- [x: string]: (string | number | (string | number)[]) | undefined;
997
+ [x: string]: import("@byyuurin/ui-kit").MaybeArray<string | number> | undefined;
990
998
  } & {
991
999
  class?: never;
992
1000
  className?: {
@@ -999,7 +1007,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
999
1007
  } | undefined;
1000
1008
  } | undefined;
1001
1009
  drawer?: {
1002
- slots?: {
1010
+ parts?: {
1003
1011
  overlay?: string | undefined;
1004
1012
  content?: string | undefined;
1005
1013
  container?: string | undefined;
@@ -1114,7 +1122,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
1114
1122
  } | undefined;
1115
1123
  } | undefined;
1116
1124
  dropdownMenu?: {
1117
- slots?: {
1125
+ parts?: {
1118
1126
  content?: string | undefined;
1119
1127
  arrow?: string | undefined;
1120
1128
  group?: string | undefined;
@@ -1199,7 +1207,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
1199
1207
  defaultVariants?: {} | undefined;
1200
1208
  } | undefined;
1201
1209
  formItem?: {
1202
- slots?: {
1210
+ parts?: {
1203
1211
  root?: string | undefined;
1204
1212
  wrapper?: string | undefined;
1205
1213
  labelWrapper?: string | undefined;
@@ -1235,8 +1243,8 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
1235
1243
  } | undefined;
1236
1244
  } | undefined;
1237
1245
  compoundVariants?: ({
1238
- size?: ("xs" | "sm" | "md" | "lg" | "xl" | ("xs" | "sm" | "md" | "lg" | "xl")[]) | undefined;
1239
- required?: (boolean | boolean[]) | undefined;
1246
+ size?: import("@byyuurin/ui-kit").MaybeArray<"xs" | "sm" | "md" | "lg" | "xl"> | undefined;
1247
+ required?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
1240
1248
  } & {
1241
1249
  class?: {
1242
1250
  root?: import("@byyuurin/ui-kit").ClassValue;
@@ -1251,8 +1259,8 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
1251
1259
  } | undefined;
1252
1260
  className?: never;
1253
1261
  })[] | ({
1254
- size?: ("xs" | "sm" | "md" | "lg" | "xl" | ("xs" | "sm" | "md" | "lg" | "xl")[]) | undefined;
1255
- required?: (boolean | boolean[]) | undefined;
1262
+ size?: import("@byyuurin/ui-kit").MaybeArray<"xs" | "sm" | "md" | "lg" | "xl"> | undefined;
1263
+ required?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
1256
1264
  } & {
1257
1265
  class?: never;
1258
1266
  className?: {
@@ -1272,7 +1280,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
1272
1280
  } | undefined;
1273
1281
  } | undefined;
1274
1282
  input?: {
1275
- slots?: {
1283
+ parts?: {
1276
1284
  base?: string | undefined;
1277
1285
  input?: string | undefined;
1278
1286
  leading?: string | undefined;
@@ -1448,7 +1456,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
1448
1456
  } | undefined;
1449
1457
  } | undefined;
1450
1458
  inputNumber?: {
1451
- slots?: {
1459
+ parts?: {
1452
1460
  base?: string | undefined;
1453
1461
  input?: string | undefined;
1454
1462
  increment?: string | undefined;
@@ -1584,16 +1592,16 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
1584
1592
  } | undefined;
1585
1593
  } | undefined;
1586
1594
  compoundVariants?: ({
1587
- variant?: ("solid" | "outline" | "soft" | "soft-outline" | ("solid" | "outline" | "soft" | "soft-outline")[]) | undefined;
1588
- size?: ("xs" | "sm" | "md" | "lg" | "xl" | ("xs" | "sm" | "md" | "lg" | "xl")[]) | undefined;
1595
+ variant?: import("@byyuurin/ui-kit").MaybeArray<"solid" | "outline" | "soft" | "soft-outline"> | undefined;
1596
+ size?: import("@byyuurin/ui-kit").MaybeArray<"xs" | "sm" | "md" | "lg" | "xl"> | undefined;
1589
1597
  } & {
1590
1598
  class?: import("@byyuurin/ui-kit").ClassValue | {
1591
1599
  base?: import("@byyuurin/ui-kit").ClassValue;
1592
1600
  };
1593
1601
  className?: never;
1594
1602
  })[] | ({
1595
- variant?: ("solid" | "outline" | "soft" | "soft-outline" | ("solid" | "outline" | "soft" | "soft-outline")[]) | undefined;
1596
- size?: ("xs" | "sm" | "md" | "lg" | "xl" | ("xs" | "sm" | "md" | "lg" | "xl")[]) | undefined;
1603
+ variant?: import("@byyuurin/ui-kit").MaybeArray<"solid" | "outline" | "soft" | "soft-outline"> | undefined;
1604
+ size?: import("@byyuurin/ui-kit").MaybeArray<"xs" | "sm" | "md" | "lg" | "xl"> | undefined;
1597
1605
  } & {
1598
1606
  class?: never;
1599
1607
  className?: import("@byyuurin/ui-kit").ClassValue | {
@@ -1621,18 +1629,18 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
1621
1629
  } | undefined;
1622
1630
  } | undefined;
1623
1631
  compoundVariants?: ({
1624
- underline?: (boolean | boolean[]) | undefined;
1625
- active?: (boolean | boolean[]) | undefined;
1626
- disabled?: (boolean | boolean[]) | undefined;
1632
+ underline?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
1633
+ active?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
1634
+ disabled?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
1627
1635
  } & {
1628
1636
  class?: import("@byyuurin/ui-kit").ClassValue | {
1629
1637
  base?: import("@byyuurin/ui-kit").ClassValue;
1630
1638
  };
1631
1639
  className?: never;
1632
1640
  })[] | ({
1633
- underline?: (boolean | boolean[]) | undefined;
1634
- active?: (boolean | boolean[]) | undefined;
1635
- disabled?: (boolean | boolean[]) | undefined;
1641
+ underline?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
1642
+ active?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
1643
+ disabled?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
1636
1644
  } & {
1637
1645
  class?: never;
1638
1646
  className?: import("@byyuurin/ui-kit").ClassValue | {
@@ -1646,7 +1654,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
1646
1654
  } | undefined;
1647
1655
  } | undefined;
1648
1656
  modal?: {
1649
- slots?: {
1657
+ parts?: {
1650
1658
  overlay?: string | undefined;
1651
1659
  content?: string | undefined;
1652
1660
  header?: string | undefined;
@@ -1692,7 +1700,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
1692
1700
  } | undefined;
1693
1701
  } | undefined;
1694
1702
  pagination?: {
1695
- slots?: {
1703
+ parts?: {
1696
1704
  root?: string | undefined;
1697
1705
  list?: string | undefined;
1698
1706
  ellipsis?: string | undefined;
@@ -1719,7 +1727,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
1719
1727
  } | undefined;
1720
1728
  } | undefined;
1721
1729
  compoundVariants?: ({
1722
- [x: string]: (string | number | (string | number)[]) | undefined;
1730
+ [x: string]: import("@byyuurin/ui-kit").MaybeArray<string | number> | undefined;
1723
1731
  } & {
1724
1732
  class?: {
1725
1733
  root?: import("@byyuurin/ui-kit").ClassValue;
@@ -1734,7 +1742,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
1734
1742
  } | undefined;
1735
1743
  className?: never;
1736
1744
  })[] | ({
1737
- [x: string]: (string | number | (string | number)[]) | undefined;
1745
+ [x: string]: import("@byyuurin/ui-kit").MaybeArray<string | number> | undefined;
1738
1746
  } & {
1739
1747
  class?: never;
1740
1748
  className?: {
@@ -1754,7 +1762,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
1754
1762
  } | undefined;
1755
1763
  } | undefined;
1756
1764
  pinInput?: {
1757
- slots?: {
1765
+ parts?: {
1758
1766
  root?: string | undefined;
1759
1767
  container?: string | undefined;
1760
1768
  base?: string | undefined;
@@ -1852,7 +1860,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
1852
1860
  } | undefined;
1853
1861
  } | undefined;
1854
1862
  popover?: {
1855
- slots?: {
1863
+ parts?: {
1856
1864
  content?: string | undefined;
1857
1865
  arrow?: string | undefined;
1858
1866
  } | undefined;
@@ -1865,7 +1873,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
1865
1873
  } | undefined;
1866
1874
  } | undefined;
1867
1875
  compoundVariants?: ({
1868
- [x: string]: (string | number | (string | number)[]) | undefined;
1876
+ [x: string]: import("@byyuurin/ui-kit").MaybeArray<string | number> | undefined;
1869
1877
  } & {
1870
1878
  class?: {
1871
1879
  content?: import("@byyuurin/ui-kit").ClassValue;
@@ -1873,7 +1881,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
1873
1881
  } | undefined;
1874
1882
  className?: never;
1875
1883
  })[] | ({
1876
- [x: string]: (string | number | (string | number)[]) | undefined;
1884
+ [x: string]: import("@byyuurin/ui-kit").MaybeArray<string | number> | undefined;
1877
1885
  } & {
1878
1886
  class?: never;
1879
1887
  className?: {
@@ -1886,7 +1894,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
1886
1894
  } | undefined;
1887
1895
  } | undefined;
1888
1896
  progress?: {
1889
- slots?: {
1897
+ parts?: {
1890
1898
  wrapper?: string | undefined;
1891
1899
  root?: string | undefined;
1892
1900
  indicator?: string | undefined;
@@ -2070,7 +2078,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
2070
2078
  } | undefined;
2071
2079
  } | undefined;
2072
2080
  radioGroup?: {
2073
- slots?: {
2081
+ parts?: {
2074
2082
  root?: string | undefined;
2075
2083
  fieldset?: string | undefined;
2076
2084
  legend?: string | undefined;
@@ -2123,10 +2131,10 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
2123
2131
  } | undefined;
2124
2132
  } | undefined;
2125
2133
  compoundVariants?: ({
2126
- orientation?: ("horizontal" | "vertical" | ("horizontal" | "vertical")[]) | undefined;
2127
- size?: ("xs" | "sm" | "md" | "lg" | "xl" | ("xs" | "sm" | "md" | "lg" | "xl")[]) | undefined;
2128
- disabled?: (boolean | boolean[]) | undefined;
2129
- required?: (boolean | boolean[]) | undefined;
2134
+ orientation?: import("@byyuurin/ui-kit").MaybeArray<"horizontal" | "vertical"> | undefined;
2135
+ size?: import("@byyuurin/ui-kit").MaybeArray<"xs" | "sm" | "md" | "lg" | "xl"> | undefined;
2136
+ disabled?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
2137
+ required?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
2130
2138
  } & {
2131
2139
  class?: {
2132
2140
  root?: import("@byyuurin/ui-kit").ClassValue;
@@ -2142,10 +2150,10 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
2142
2150
  } | undefined;
2143
2151
  className?: never;
2144
2152
  })[] | ({
2145
- orientation?: ("horizontal" | "vertical" | ("horizontal" | "vertical")[]) | undefined;
2146
- size?: ("xs" | "sm" | "md" | "lg" | "xl" | ("xs" | "sm" | "md" | "lg" | "xl")[]) | undefined;
2147
- disabled?: (boolean | boolean[]) | undefined;
2148
- required?: (boolean | boolean[]) | undefined;
2153
+ orientation?: import("@byyuurin/ui-kit").MaybeArray<"horizontal" | "vertical"> | undefined;
2154
+ size?: import("@byyuurin/ui-kit").MaybeArray<"xs" | "sm" | "md" | "lg" | "xl"> | undefined;
2155
+ disabled?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
2156
+ required?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
2149
2157
  } & {
2150
2158
  class?: never;
2151
2159
  className?: {
@@ -2166,7 +2174,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
2166
2174
  } | undefined;
2167
2175
  } | undefined;
2168
2176
  scrollArea?: {
2169
- slots?: {
2177
+ parts?: {
2170
2178
  root?: string | undefined;
2171
2179
  viewport?: string | undefined;
2172
2180
  scrollbar?: string | undefined;
@@ -2185,7 +2193,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
2185
2193
  } | undefined;
2186
2194
  } | undefined;
2187
2195
  compoundVariants?: ({
2188
- [x: string]: (string | number | (string | number)[]) | undefined;
2196
+ [x: string]: import("@byyuurin/ui-kit").MaybeArray<string | number> | undefined;
2189
2197
  } & {
2190
2198
  class?: {
2191
2199
  root?: import("@byyuurin/ui-kit").ClassValue;
@@ -2196,7 +2204,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
2196
2204
  } | undefined;
2197
2205
  className?: never;
2198
2206
  })[] | ({
2199
- [x: string]: (string | number | (string | number)[]) | undefined;
2207
+ [x: string]: import("@byyuurin/ui-kit").MaybeArray<string | number> | undefined;
2200
2208
  } & {
2201
2209
  class?: never;
2202
2210
  className?: {
@@ -2212,7 +2220,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
2212
2220
  } | undefined;
2213
2221
  } | undefined;
2214
2222
  select?: {
2215
- slots?: {
2223
+ parts?: {
2216
2224
  base?: string | undefined;
2217
2225
  value?: string | undefined;
2218
2226
  placeholder?: string | undefined;
@@ -2402,7 +2410,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
2402
2410
  } | undefined;
2403
2411
  } | undefined;
2404
2412
  separator?: {
2405
- slots?: {
2413
+ parts?: {
2406
2414
  root?: string | undefined;
2407
2415
  line?: string | undefined;
2408
2416
  container?: string | undefined;
@@ -2471,7 +2479,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
2471
2479
  defaultVariants?: {} | undefined;
2472
2480
  } | undefined;
2473
2481
  slider?: {
2474
- slots?: {
2482
+ parts?: {
2475
2483
  root?: string | undefined;
2476
2484
  track?: string | undefined;
2477
2485
  range?: string | undefined;
@@ -2507,8 +2515,8 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
2507
2515
  } | undefined;
2508
2516
  } | undefined;
2509
2517
  compoundVariants?: ({
2510
- size?: ("xs" | "sm" | "md" | "lg" | "xl" | ("xs" | "sm" | "md" | "lg" | "xl")[]) | undefined;
2511
- orientation?: ("horizontal" | "vertical" | ("horizontal" | "vertical")[]) | undefined;
2518
+ size?: import("@byyuurin/ui-kit").MaybeArray<"xs" | "sm" | "md" | "lg" | "xl"> | undefined;
2519
+ orientation?: import("@byyuurin/ui-kit").MaybeArray<"horizontal" | "vertical"> | undefined;
2512
2520
  } & {
2513
2521
  class?: {
2514
2522
  root?: import("@byyuurin/ui-kit").ClassValue;
@@ -2518,8 +2526,8 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
2518
2526
  } | undefined;
2519
2527
  className?: never;
2520
2528
  })[] | ({
2521
- size?: ("xs" | "sm" | "md" | "lg" | "xl" | ("xs" | "sm" | "md" | "lg" | "xl")[]) | undefined;
2522
- orientation?: ("horizontal" | "vertical" | ("horizontal" | "vertical")[]) | undefined;
2529
+ size?: import("@byyuurin/ui-kit").MaybeArray<"xs" | "sm" | "md" | "lg" | "xl"> | undefined;
2530
+ orientation?: import("@byyuurin/ui-kit").MaybeArray<"horizontal" | "vertical"> | undefined;
2523
2531
  } & {
2524
2532
  class?: never;
2525
2533
  className?: {
@@ -2534,7 +2542,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
2534
2542
  } | undefined;
2535
2543
  } | undefined;
2536
2544
  switch?: {
2537
- slots?: {
2545
+ parts?: {
2538
2546
  root?: string | undefined;
2539
2547
  base?: string | undefined;
2540
2548
  container?: string | undefined;
@@ -2593,12 +2601,12 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
2593
2601
  } | undefined;
2594
2602
  } | undefined;
2595
2603
  compoundVariants?: ({
2596
- size?: ("xs" | "sm" | "md" | "lg" | "xl" | ("xs" | "sm" | "md" | "lg" | "xl")[]) | undefined;
2597
- checked?: (boolean | boolean[]) | undefined;
2598
- unchecked?: (boolean | boolean[]) | undefined;
2599
- loading?: (boolean | boolean[]) | undefined;
2600
- required?: (boolean | boolean[]) | undefined;
2601
- disabled?: (boolean | boolean[]) | undefined;
2604
+ size?: import("@byyuurin/ui-kit").MaybeArray<"xs" | "sm" | "md" | "lg" | "xl"> | undefined;
2605
+ checked?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
2606
+ unchecked?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
2607
+ loading?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
2608
+ required?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
2609
+ disabled?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
2602
2610
  } & {
2603
2611
  class?: {
2604
2612
  root?: import("@byyuurin/ui-kit").ClassValue;
@@ -2612,12 +2620,12 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
2612
2620
  } | undefined;
2613
2621
  className?: never;
2614
2622
  })[] | ({
2615
- size?: ("xs" | "sm" | "md" | "lg" | "xl" | ("xs" | "sm" | "md" | "lg" | "xl")[]) | undefined;
2616
- checked?: (boolean | boolean[]) | undefined;
2617
- unchecked?: (boolean | boolean[]) | undefined;
2618
- loading?: (boolean | boolean[]) | undefined;
2619
- required?: (boolean | boolean[]) | undefined;
2620
- disabled?: (boolean | boolean[]) | undefined;
2623
+ size?: import("@byyuurin/ui-kit").MaybeArray<"xs" | "sm" | "md" | "lg" | "xl"> | undefined;
2624
+ checked?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
2625
+ unchecked?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
2626
+ loading?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
2627
+ required?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
2628
+ disabled?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
2621
2629
  } & {
2622
2630
  class?: never;
2623
2631
  className?: {
@@ -2636,7 +2644,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
2636
2644
  } | undefined;
2637
2645
  } | undefined;
2638
2646
  table?: {
2639
- slots?: {
2647
+ parts?: {
2640
2648
  root?: string | undefined;
2641
2649
  base?: string | undefined;
2642
2650
  caption?: string | undefined;
@@ -2667,9 +2675,9 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
2667
2675
  } | undefined;
2668
2676
  } | undefined;
2669
2677
  compoundVariants?: ({
2670
- sticky?: (boolean | boolean[]) | undefined;
2671
- pinned?: (boolean | boolean[]) | undefined;
2672
- expanded?: (boolean | boolean[]) | undefined;
2678
+ sticky?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
2679
+ pinned?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
2680
+ expanded?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
2673
2681
  } & {
2674
2682
  class?: {
2675
2683
  root?: import("@byyuurin/ui-kit").ClassValue;
@@ -2685,9 +2693,9 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
2685
2693
  } | undefined;
2686
2694
  className?: never;
2687
2695
  })[] | ({
2688
- sticky?: (boolean | boolean[]) | undefined;
2689
- pinned?: (boolean | boolean[]) | undefined;
2690
- expanded?: (boolean | boolean[]) | undefined;
2696
+ sticky?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
2697
+ pinned?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
2698
+ expanded?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
2691
2699
  } & {
2692
2700
  class?: never;
2693
2701
  className?: {
@@ -2710,7 +2718,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
2710
2718
  } | undefined;
2711
2719
  } | undefined;
2712
2720
  tabs?: {
2713
- slots?: {
2721
+ parts?: {
2714
2722
  root?: string | undefined;
2715
2723
  list?: string | undefined;
2716
2724
  indicator?: string | undefined;
@@ -2843,7 +2851,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
2843
2851
  } | undefined;
2844
2852
  } | undefined;
2845
2853
  textarea?: {
2846
- slots?: {
2854
+ parts?: {
2847
2855
  root?: string | undefined;
2848
2856
  base?: string | undefined;
2849
2857
  } | undefined;
@@ -2937,7 +2945,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
2937
2945
  } | undefined;
2938
2946
  } | undefined;
2939
2947
  toast?: {
2940
- slots?: {
2948
+ parts?: {
2941
2949
  root?: string | undefined;
2942
2950
  wrapper?: string | undefined;
2943
2951
  title?: string | undefined;
@@ -2967,8 +2975,8 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
2967
2975
  } | undefined;
2968
2976
  } | undefined;
2969
2977
  compoundVariants?: ({
2970
- orientation?: ("horizontal" | "vertical" | ("horizontal" | "vertical")[]) | undefined;
2971
- title?: (boolean | boolean[]) | undefined;
2978
+ orientation?: import("@byyuurin/ui-kit").MaybeArray<"horizontal" | "vertical"> | undefined;
2979
+ title?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
2972
2980
  } & {
2973
2981
  class?: {
2974
2982
  root?: import("@byyuurin/ui-kit").ClassValue;
@@ -2984,8 +2992,8 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
2984
2992
  } | undefined;
2985
2993
  className?: never;
2986
2994
  })[] | ({
2987
- orientation?: ("horizontal" | "vertical" | ("horizontal" | "vertical")[]) | undefined;
2988
- title?: (boolean | boolean[]) | undefined;
2995
+ orientation?: import("@byyuurin/ui-kit").MaybeArray<"horizontal" | "vertical"> | undefined;
2996
+ title?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
2989
2997
  } & {
2990
2998
  class?: never;
2991
2999
  className?: {
@@ -3007,7 +3015,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
3007
3015
  } | undefined;
3008
3016
  } | undefined;
3009
3017
  toastProvider?: {
3010
- slots?: {
3018
+ parts?: {
3011
3019
  viewport?: string | undefined;
3012
3020
  base?: string | undefined;
3013
3021
  } | undefined;
@@ -3088,7 +3096,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
3088
3096
  } | undefined;
3089
3097
  } | undefined;
3090
3098
  tooltip?: {
3091
- slots?: {
3099
+ parts?: {
3092
3100
  content?: string | undefined;
3093
3101
  arrow?: string | undefined;
3094
3102
  text?: string | undefined;
@@ -3103,7 +3111,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
3103
3111
  } | undefined;
3104
3112
  } | undefined;
3105
3113
  compoundVariants?: ({
3106
- [x: string]: (string | number | (string | number)[]) | undefined;
3114
+ [x: string]: import("@byyuurin/ui-kit").MaybeArray<string | number> | undefined;
3107
3115
  } & {
3108
3116
  class?: {
3109
3117
  content?: import("@byyuurin/ui-kit").ClassValue;
@@ -3112,7 +3120,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
3112
3120
  } | undefined;
3113
3121
  className?: never;
3114
3122
  })[] | ({
3115
- [x: string]: (string | number | (string | number)[]) | undefined;
3123
+ [x: string]: import("@byyuurin/ui-kit").MaybeArray<string | number> | undefined;
3116
3124
  } & {
3117
3125
  class?: never;
3118
3126
  className?: {
@@ -3127,7 +3135,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
3127
3135
  } | undefined;
3128
3136
  }>>, provideThemeExtension: (value: MaybeRefOrGetter<{
3129
3137
  accordion?: {
3130
- slots?: {
3138
+ parts?: {
3131
3139
  root?: string | undefined;
3132
3140
  item?: string | undefined;
3133
3141
  header?: string | undefined;
@@ -3146,7 +3154,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
3146
3154
  } | undefined;
3147
3155
  } | undefined;
3148
3156
  compoundVariants?: ({
3149
- disabled?: (boolean | boolean[]) | undefined;
3157
+ disabled?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
3150
3158
  } & {
3151
3159
  class?: {
3152
3160
  root?: import("@byyuurin/ui-kit").ClassValue;
@@ -3161,7 +3169,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
3161
3169
  } | undefined;
3162
3170
  className?: never;
3163
3171
  })[] | ({
3164
- disabled?: (boolean | boolean[]) | undefined;
3172
+ disabled?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
3165
3173
  } & {
3166
3174
  class?: never;
3167
3175
  className?: {
@@ -3181,7 +3189,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
3181
3189
  } | undefined;
3182
3190
  } | undefined;
3183
3191
  alert?: {
3184
- slots?: {
3192
+ parts?: {
3185
3193
  root?: string | undefined;
3186
3194
  wrapper?: string | undefined;
3187
3195
  title?: string | undefined;
@@ -3223,9 +3231,9 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
3223
3231
  } | undefined;
3224
3232
  } | undefined;
3225
3233
  compoundVariants?: ({
3226
- variant?: ("solid" | "outline" | "soft" | "soft-outline" | ("solid" | "outline" | "soft" | "soft-outline")[]) | undefined;
3227
- orientation?: ("horizontal" | "vertical" | ("horizontal" | "vertical")[]) | undefined;
3228
- title?: (boolean | boolean[]) | undefined;
3234
+ variant?: import("@byyuurin/ui-kit").MaybeArray<"solid" | "outline" | "soft" | "soft-outline"> | undefined;
3235
+ orientation?: import("@byyuurin/ui-kit").MaybeArray<"horizontal" | "vertical"> | undefined;
3236
+ title?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
3229
3237
  } & {
3230
3238
  class?: {
3231
3239
  root?: import("@byyuurin/ui-kit").ClassValue;
@@ -3238,9 +3246,9 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
3238
3246
  } | undefined;
3239
3247
  className?: never;
3240
3248
  })[] | ({
3241
- variant?: ("solid" | "outline" | "soft" | "soft-outline" | ("solid" | "outline" | "soft" | "soft-outline")[]) | undefined;
3242
- orientation?: ("horizontal" | "vertical" | ("horizontal" | "vertical")[]) | undefined;
3243
- title?: (boolean | boolean[]) | undefined;
3249
+ variant?: import("@byyuurin/ui-kit").MaybeArray<"solid" | "outline" | "soft" | "soft-outline"> | undefined;
3250
+ orientation?: import("@byyuurin/ui-kit").MaybeArray<"horizontal" | "vertical"> | undefined;
3251
+ title?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
3244
3252
  } & {
3245
3253
  class?: never;
3246
3254
  className?: {
@@ -3278,7 +3286,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
3278
3286
  } | undefined;
3279
3287
  } | undefined;
3280
3288
  avatar?: {
3281
- slots?: {
3289
+ parts?: {
3282
3290
  root?: string | undefined;
3283
3291
  image?: string | undefined;
3284
3292
  fallback?: string | undefined;
@@ -3304,7 +3312,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
3304
3312
  } | undefined;
3305
3313
  } | undefined;
3306
3314
  compoundVariants?: ({
3307
- size?: ("xs" | "sm" | "md" | "lg" | "xl" | ("xs" | "sm" | "md" | "lg" | "xl")[]) | undefined;
3315
+ size?: import("@byyuurin/ui-kit").MaybeArray<"xs" | "sm" | "md" | "lg" | "xl"> | undefined;
3308
3316
  } & {
3309
3317
  class?: {
3310
3318
  root?: import("@byyuurin/ui-kit").ClassValue;
@@ -3314,7 +3322,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
3314
3322
  } | undefined;
3315
3323
  className?: never;
3316
3324
  })[] | ({
3317
- size?: ("xs" | "sm" | "md" | "lg" | "xl" | ("xs" | "sm" | "md" | "lg" | "xl")[]) | undefined;
3325
+ size?: import("@byyuurin/ui-kit").MaybeArray<"xs" | "sm" | "md" | "lg" | "xl"> | undefined;
3318
3326
  } & {
3319
3327
  class?: never;
3320
3328
  className?: {
@@ -3329,7 +3337,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
3329
3337
  } | undefined;
3330
3338
  } | undefined;
3331
3339
  avatarGroup?: {
3332
- slots?: {
3340
+ parts?: {
3333
3341
  root?: string | undefined;
3334
3342
  base?: string | undefined;
3335
3343
  } | undefined;
@@ -3353,7 +3361,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
3353
3361
  } | undefined;
3354
3362
  } | undefined;
3355
3363
  compoundVariants?: ({
3356
- size?: ("xs" | "sm" | "md" | "lg" | "xl" | ("xs" | "sm" | "md" | "lg" | "xl")[]) | undefined;
3364
+ size?: import("@byyuurin/ui-kit").MaybeArray<"xs" | "sm" | "md" | "lg" | "xl"> | undefined;
3357
3365
  } & {
3358
3366
  class?: {
3359
3367
  root?: import("@byyuurin/ui-kit").ClassValue;
@@ -3361,7 +3369,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
3361
3369
  } | undefined;
3362
3370
  className?: never;
3363
3371
  })[] | ({
3364
- size?: ("xs" | "sm" | "md" | "lg" | "xl" | ("xs" | "sm" | "md" | "lg" | "xl")[]) | undefined;
3372
+ size?: import("@byyuurin/ui-kit").MaybeArray<"xs" | "sm" | "md" | "lg" | "xl"> | undefined;
3365
3373
  } & {
3366
3374
  class?: never;
3367
3375
  className?: {
@@ -3374,7 +3382,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
3374
3382
  } | undefined;
3375
3383
  } | undefined;
3376
3384
  badge?: {
3377
- slots?: {
3385
+ parts?: {
3378
3386
  root?: string | undefined;
3379
3387
  base?: string | undefined;
3380
3388
  } | undefined;
@@ -3454,7 +3462,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
3454
3462
  } | undefined;
3455
3463
  } | undefined;
3456
3464
  breadcrumb?: {
3457
- slots?: {
3465
+ parts?: {
3458
3466
  root?: string | undefined;
3459
3467
  list?: string | undefined;
3460
3468
  item?: string | undefined;
@@ -3497,7 +3505,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
3497
3505
  } | undefined;
3498
3506
  } | undefined;
3499
3507
  button?: {
3500
- slots?: {
3508
+ parts?: {
3501
3509
  base?: string | undefined;
3502
3510
  label?: string | undefined;
3503
3511
  leadingIcon?: string | undefined;
@@ -3700,16 +3708,16 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
3700
3708
  } | undefined;
3701
3709
  } | undefined;
3702
3710
  compoundVariants?: ({
3703
- size?: ("xs" | "sm" | "md" | "lg" | "xl" | ("xs" | "sm" | "md" | "lg" | "xl")[]) | undefined;
3704
- orientation?: ("horizontal" | "vertical" | ("horizontal" | "vertical")[]) | undefined;
3711
+ size?: import("@byyuurin/ui-kit").MaybeArray<"xs" | "sm" | "md" | "lg" | "xl"> | undefined;
3712
+ orientation?: import("@byyuurin/ui-kit").MaybeArray<"horizontal" | "vertical"> | undefined;
3705
3713
  } & {
3706
3714
  class?: import("@byyuurin/ui-kit").ClassValue | {
3707
3715
  base?: import("@byyuurin/ui-kit").ClassValue;
3708
3716
  };
3709
3717
  className?: never;
3710
3718
  })[] | ({
3711
- size?: ("xs" | "sm" | "md" | "lg" | "xl" | ("xs" | "sm" | "md" | "lg" | "xl")[]) | undefined;
3712
- orientation?: ("horizontal" | "vertical" | ("horizontal" | "vertical")[]) | undefined;
3719
+ size?: import("@byyuurin/ui-kit").MaybeArray<"xs" | "sm" | "md" | "lg" | "xl"> | undefined;
3720
+ orientation?: import("@byyuurin/ui-kit").MaybeArray<"horizontal" | "vertical"> | undefined;
3713
3721
  } & {
3714
3722
  class?: never;
3715
3723
  className?: import("@byyuurin/ui-kit").ClassValue | {
@@ -3722,7 +3730,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
3722
3730
  } | undefined;
3723
3731
  } | undefined;
3724
3732
  calendar?: {
3725
- slots?: {
3733
+ parts?: {
3726
3734
  root?: string | undefined;
3727
3735
  header?: string | undefined;
3728
3736
  body?: string | undefined;
@@ -3753,6 +3761,14 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
3753
3761
  root?: string | undefined;
3754
3762
  } | undefined;
3755
3763
  } | undefined;
3764
+ multipleMonths?: {
3765
+ true?: {
3766
+ cellTrigger?: string | undefined;
3767
+ } | undefined;
3768
+ false?: {
3769
+ cellTrigger?: string | undefined;
3770
+ } | undefined;
3771
+ } | undefined;
3756
3772
  readonly?: {
3757
3773
  true?: {
3758
3774
  cellTrigger?: string | undefined;
@@ -3776,7 +3792,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
3776
3792
  } | undefined;
3777
3793
  } | undefined;
3778
3794
  card?: {
3779
- slots?: {
3795
+ parts?: {
3780
3796
  root?: string | undefined;
3781
3797
  header?: string | undefined;
3782
3798
  body?: string | undefined;
@@ -3805,7 +3821,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
3805
3821
  } | undefined;
3806
3822
  } | undefined;
3807
3823
  compoundVariants?: ({
3808
- variant?: ("solid" | "outline" | "soft" | "soft-outline" | ("solid" | "outline" | "soft" | "soft-outline")[]) | undefined;
3824
+ variant?: import("@byyuurin/ui-kit").MaybeArray<"solid" | "outline" | "soft" | "soft-outline"> | undefined;
3809
3825
  } & {
3810
3826
  class?: {
3811
3827
  root?: import("@byyuurin/ui-kit").ClassValue;
@@ -3817,7 +3833,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
3817
3833
  } | undefined;
3818
3834
  className?: never;
3819
3835
  })[] | ({
3820
- variant?: ("solid" | "outline" | "soft" | "soft-outline" | ("solid" | "outline" | "soft" | "soft-outline")[]) | undefined;
3836
+ variant?: import("@byyuurin/ui-kit").MaybeArray<"solid" | "outline" | "soft" | "soft-outline"> | undefined;
3821
3837
  } & {
3822
3838
  class?: never;
3823
3839
  className?: {
@@ -3834,7 +3850,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
3834
3850
  } | undefined;
3835
3851
  } | undefined;
3836
3852
  carousel?: {
3837
- slots?: {
3853
+ parts?: {
3838
3854
  root?: string | undefined;
3839
3855
  viewport?: string | undefined;
3840
3856
  container?: string | undefined;
@@ -3872,8 +3888,8 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
3872
3888
  } | undefined;
3873
3889
  } | undefined;
3874
3890
  compoundVariants?: ({
3875
- orientation?: ("horizontal" | "vertical" | ("horizontal" | "vertical")[]) | undefined;
3876
- active?: (boolean | boolean[]) | undefined;
3891
+ orientation?: import("@byyuurin/ui-kit").MaybeArray<"horizontal" | "vertical"> | undefined;
3892
+ active?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
3877
3893
  } & {
3878
3894
  class?: {
3879
3895
  root?: import("@byyuurin/ui-kit").ClassValue;
@@ -3889,8 +3905,8 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
3889
3905
  } | undefined;
3890
3906
  className?: never;
3891
3907
  })[] | ({
3892
- orientation?: ("horizontal" | "vertical" | ("horizontal" | "vertical")[]) | undefined;
3893
- active?: (boolean | boolean[]) | undefined;
3908
+ orientation?: import("@byyuurin/ui-kit").MaybeArray<"horizontal" | "vertical"> | undefined;
3909
+ active?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
3894
3910
  } & {
3895
3911
  class?: never;
3896
3912
  className?: {
@@ -3912,7 +3928,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
3912
3928
  } | undefined;
3913
3929
  } | undefined;
3914
3930
  checkbox?: {
3915
- slots?: {
3931
+ parts?: {
3916
3932
  root?: string | undefined;
3917
3933
  base?: string | undefined;
3918
3934
  container?: string | undefined;
@@ -3954,9 +3970,9 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
3954
3970
  } | undefined;
3955
3971
  } | undefined;
3956
3972
  compoundVariants?: ({
3957
- size?: ("xs" | "sm" | "md" | "lg" | "xl" | ("xs" | "sm" | "md" | "lg" | "xl")[]) | undefined;
3958
- required?: (boolean | boolean[]) | undefined;
3959
- disabled?: (boolean | boolean[]) | undefined;
3973
+ size?: import("@byyuurin/ui-kit").MaybeArray<"xs" | "sm" | "md" | "lg" | "xl"> | undefined;
3974
+ required?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
3975
+ disabled?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
3960
3976
  } & {
3961
3977
  class?: {
3962
3978
  root?: import("@byyuurin/ui-kit").ClassValue;
@@ -3969,9 +3985,9 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
3969
3985
  } | undefined;
3970
3986
  className?: never;
3971
3987
  })[] | ({
3972
- size?: ("xs" | "sm" | "md" | "lg" | "xl" | ("xs" | "sm" | "md" | "lg" | "xl")[]) | undefined;
3973
- required?: (boolean | boolean[]) | undefined;
3974
- disabled?: (boolean | boolean[]) | undefined;
3988
+ size?: import("@byyuurin/ui-kit").MaybeArray<"xs" | "sm" | "md" | "lg" | "xl"> | undefined;
3989
+ required?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
3990
+ disabled?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
3975
3991
  } & {
3976
3992
  class?: never;
3977
3993
  className?: {
@@ -3989,7 +4005,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
3989
4005
  } | undefined;
3990
4006
  } | undefined;
3991
4007
  chip?: {
3992
- slots?: {
4008
+ parts?: {
3993
4009
  base?: string | undefined;
3994
4010
  label?: string | undefined;
3995
4011
  leadingIcon?: string | undefined;
@@ -4054,7 +4070,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
4054
4070
  } | undefined;
4055
4071
  } | undefined;
4056
4072
  collapsible?: {
4057
- slots?: {
4073
+ parts?: {
4058
4074
  root?: string | undefined;
4059
4075
  content?: string | undefined;
4060
4076
  } | undefined;
@@ -4067,7 +4083,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
4067
4083
  } | undefined;
4068
4084
  } | undefined;
4069
4085
  compoundVariants?: ({
4070
- [x: string]: (string | number | (string | number)[]) | undefined;
4086
+ [x: string]: import("@byyuurin/ui-kit").MaybeArray<string | number> | undefined;
4071
4087
  } & {
4072
4088
  class?: {
4073
4089
  root?: import("@byyuurin/ui-kit").ClassValue;
@@ -4075,7 +4091,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
4075
4091
  } | undefined;
4076
4092
  className?: never;
4077
4093
  })[] | ({
4078
- [x: string]: (string | number | (string | number)[]) | undefined;
4094
+ [x: string]: import("@byyuurin/ui-kit").MaybeArray<string | number> | undefined;
4079
4095
  } & {
4080
4096
  class?: never;
4081
4097
  className?: {
@@ -4088,7 +4104,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
4088
4104
  } | undefined;
4089
4105
  } | undefined;
4090
4106
  drawer?: {
4091
- slots?: {
4107
+ parts?: {
4092
4108
  overlay?: string | undefined;
4093
4109
  content?: string | undefined;
4094
4110
  container?: string | undefined;
@@ -4203,7 +4219,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
4203
4219
  } | undefined;
4204
4220
  } | undefined;
4205
4221
  dropdownMenu?: {
4206
- slots?: {
4222
+ parts?: {
4207
4223
  content?: string | undefined;
4208
4224
  arrow?: string | undefined;
4209
4225
  group?: string | undefined;
@@ -4288,7 +4304,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
4288
4304
  defaultVariants?: {} | undefined;
4289
4305
  } | undefined;
4290
4306
  formItem?: {
4291
- slots?: {
4307
+ parts?: {
4292
4308
  root?: string | undefined;
4293
4309
  wrapper?: string | undefined;
4294
4310
  labelWrapper?: string | undefined;
@@ -4324,8 +4340,8 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
4324
4340
  } | undefined;
4325
4341
  } | undefined;
4326
4342
  compoundVariants?: ({
4327
- size?: ("xs" | "sm" | "md" | "lg" | "xl" | ("xs" | "sm" | "md" | "lg" | "xl")[]) | undefined;
4328
- required?: (boolean | boolean[]) | undefined;
4343
+ size?: import("@byyuurin/ui-kit").MaybeArray<"xs" | "sm" | "md" | "lg" | "xl"> | undefined;
4344
+ required?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
4329
4345
  } & {
4330
4346
  class?: {
4331
4347
  root?: import("@byyuurin/ui-kit").ClassValue;
@@ -4340,8 +4356,8 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
4340
4356
  } | undefined;
4341
4357
  className?: never;
4342
4358
  })[] | ({
4343
- size?: ("xs" | "sm" | "md" | "lg" | "xl" | ("xs" | "sm" | "md" | "lg" | "xl")[]) | undefined;
4344
- required?: (boolean | boolean[]) | undefined;
4359
+ size?: import("@byyuurin/ui-kit").MaybeArray<"xs" | "sm" | "md" | "lg" | "xl"> | undefined;
4360
+ required?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
4345
4361
  } & {
4346
4362
  class?: never;
4347
4363
  className?: {
@@ -4361,7 +4377,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
4361
4377
  } | undefined;
4362
4378
  } | undefined;
4363
4379
  input?: {
4364
- slots?: {
4380
+ parts?: {
4365
4381
  base?: string | undefined;
4366
4382
  input?: string | undefined;
4367
4383
  leading?: string | undefined;
@@ -4537,7 +4553,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
4537
4553
  } | undefined;
4538
4554
  } | undefined;
4539
4555
  inputNumber?: {
4540
- slots?: {
4556
+ parts?: {
4541
4557
  base?: string | undefined;
4542
4558
  input?: string | undefined;
4543
4559
  increment?: string | undefined;
@@ -4673,16 +4689,16 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
4673
4689
  } | undefined;
4674
4690
  } | undefined;
4675
4691
  compoundVariants?: ({
4676
- variant?: ("solid" | "outline" | "soft" | "soft-outline" | ("solid" | "outline" | "soft" | "soft-outline")[]) | undefined;
4677
- size?: ("xs" | "sm" | "md" | "lg" | "xl" | ("xs" | "sm" | "md" | "lg" | "xl")[]) | undefined;
4692
+ variant?: import("@byyuurin/ui-kit").MaybeArray<"solid" | "outline" | "soft" | "soft-outline"> | undefined;
4693
+ size?: import("@byyuurin/ui-kit").MaybeArray<"xs" | "sm" | "md" | "lg" | "xl"> | undefined;
4678
4694
  } & {
4679
4695
  class?: import("@byyuurin/ui-kit").ClassValue | {
4680
4696
  base?: import("@byyuurin/ui-kit").ClassValue;
4681
4697
  };
4682
4698
  className?: never;
4683
4699
  })[] | ({
4684
- variant?: ("solid" | "outline" | "soft" | "soft-outline" | ("solid" | "outline" | "soft" | "soft-outline")[]) | undefined;
4685
- size?: ("xs" | "sm" | "md" | "lg" | "xl" | ("xs" | "sm" | "md" | "lg" | "xl")[]) | undefined;
4700
+ variant?: import("@byyuurin/ui-kit").MaybeArray<"solid" | "outline" | "soft" | "soft-outline"> | undefined;
4701
+ size?: import("@byyuurin/ui-kit").MaybeArray<"xs" | "sm" | "md" | "lg" | "xl"> | undefined;
4686
4702
  } & {
4687
4703
  class?: never;
4688
4704
  className?: import("@byyuurin/ui-kit").ClassValue | {
@@ -4710,18 +4726,18 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
4710
4726
  } | undefined;
4711
4727
  } | undefined;
4712
4728
  compoundVariants?: ({
4713
- underline?: (boolean | boolean[]) | undefined;
4714
- active?: (boolean | boolean[]) | undefined;
4715
- disabled?: (boolean | boolean[]) | undefined;
4729
+ underline?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
4730
+ active?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
4731
+ disabled?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
4716
4732
  } & {
4717
4733
  class?: import("@byyuurin/ui-kit").ClassValue | {
4718
4734
  base?: import("@byyuurin/ui-kit").ClassValue;
4719
4735
  };
4720
4736
  className?: never;
4721
4737
  })[] | ({
4722
- underline?: (boolean | boolean[]) | undefined;
4723
- active?: (boolean | boolean[]) | undefined;
4724
- disabled?: (boolean | boolean[]) | undefined;
4738
+ underline?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
4739
+ active?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
4740
+ disabled?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
4725
4741
  } & {
4726
4742
  class?: never;
4727
4743
  className?: import("@byyuurin/ui-kit").ClassValue | {
@@ -4735,7 +4751,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
4735
4751
  } | undefined;
4736
4752
  } | undefined;
4737
4753
  modal?: {
4738
- slots?: {
4754
+ parts?: {
4739
4755
  overlay?: string | undefined;
4740
4756
  content?: string | undefined;
4741
4757
  header?: string | undefined;
@@ -4781,7 +4797,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
4781
4797
  } | undefined;
4782
4798
  } | undefined;
4783
4799
  pagination?: {
4784
- slots?: {
4800
+ parts?: {
4785
4801
  root?: string | undefined;
4786
4802
  list?: string | undefined;
4787
4803
  ellipsis?: string | undefined;
@@ -4808,7 +4824,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
4808
4824
  } | undefined;
4809
4825
  } | undefined;
4810
4826
  compoundVariants?: ({
4811
- [x: string]: (string | number | (string | number)[]) | undefined;
4827
+ [x: string]: import("@byyuurin/ui-kit").MaybeArray<string | number> | undefined;
4812
4828
  } & {
4813
4829
  class?: {
4814
4830
  root?: import("@byyuurin/ui-kit").ClassValue;
@@ -4823,7 +4839,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
4823
4839
  } | undefined;
4824
4840
  className?: never;
4825
4841
  })[] | ({
4826
- [x: string]: (string | number | (string | number)[]) | undefined;
4842
+ [x: string]: import("@byyuurin/ui-kit").MaybeArray<string | number> | undefined;
4827
4843
  } & {
4828
4844
  class?: never;
4829
4845
  className?: {
@@ -4843,7 +4859,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
4843
4859
  } | undefined;
4844
4860
  } | undefined;
4845
4861
  pinInput?: {
4846
- slots?: {
4862
+ parts?: {
4847
4863
  root?: string | undefined;
4848
4864
  container?: string | undefined;
4849
4865
  base?: string | undefined;
@@ -4941,7 +4957,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
4941
4957
  } | undefined;
4942
4958
  } | undefined;
4943
4959
  popover?: {
4944
- slots?: {
4960
+ parts?: {
4945
4961
  content?: string | undefined;
4946
4962
  arrow?: string | undefined;
4947
4963
  } | undefined;
@@ -4954,7 +4970,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
4954
4970
  } | undefined;
4955
4971
  } | undefined;
4956
4972
  compoundVariants?: ({
4957
- [x: string]: (string | number | (string | number)[]) | undefined;
4973
+ [x: string]: import("@byyuurin/ui-kit").MaybeArray<string | number> | undefined;
4958
4974
  } & {
4959
4975
  class?: {
4960
4976
  content?: import("@byyuurin/ui-kit").ClassValue;
@@ -4962,7 +4978,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
4962
4978
  } | undefined;
4963
4979
  className?: never;
4964
4980
  })[] | ({
4965
- [x: string]: (string | number | (string | number)[]) | undefined;
4981
+ [x: string]: import("@byyuurin/ui-kit").MaybeArray<string | number> | undefined;
4966
4982
  } & {
4967
4983
  class?: never;
4968
4984
  className?: {
@@ -4975,7 +4991,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
4975
4991
  } | undefined;
4976
4992
  } | undefined;
4977
4993
  progress?: {
4978
- slots?: {
4994
+ parts?: {
4979
4995
  wrapper?: string | undefined;
4980
4996
  root?: string | undefined;
4981
4997
  indicator?: string | undefined;
@@ -5159,7 +5175,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
5159
5175
  } | undefined;
5160
5176
  } | undefined;
5161
5177
  radioGroup?: {
5162
- slots?: {
5178
+ parts?: {
5163
5179
  root?: string | undefined;
5164
5180
  fieldset?: string | undefined;
5165
5181
  legend?: string | undefined;
@@ -5212,10 +5228,10 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
5212
5228
  } | undefined;
5213
5229
  } | undefined;
5214
5230
  compoundVariants?: ({
5215
- orientation?: ("horizontal" | "vertical" | ("horizontal" | "vertical")[]) | undefined;
5216
- size?: ("xs" | "sm" | "md" | "lg" | "xl" | ("xs" | "sm" | "md" | "lg" | "xl")[]) | undefined;
5217
- disabled?: (boolean | boolean[]) | undefined;
5218
- required?: (boolean | boolean[]) | undefined;
5231
+ orientation?: import("@byyuurin/ui-kit").MaybeArray<"horizontal" | "vertical"> | undefined;
5232
+ size?: import("@byyuurin/ui-kit").MaybeArray<"xs" | "sm" | "md" | "lg" | "xl"> | undefined;
5233
+ disabled?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
5234
+ required?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
5219
5235
  } & {
5220
5236
  class?: {
5221
5237
  root?: import("@byyuurin/ui-kit").ClassValue;
@@ -5231,10 +5247,10 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
5231
5247
  } | undefined;
5232
5248
  className?: never;
5233
5249
  })[] | ({
5234
- orientation?: ("horizontal" | "vertical" | ("horizontal" | "vertical")[]) | undefined;
5235
- size?: ("xs" | "sm" | "md" | "lg" | "xl" | ("xs" | "sm" | "md" | "lg" | "xl")[]) | undefined;
5236
- disabled?: (boolean | boolean[]) | undefined;
5237
- required?: (boolean | boolean[]) | undefined;
5250
+ orientation?: import("@byyuurin/ui-kit").MaybeArray<"horizontal" | "vertical"> | undefined;
5251
+ size?: import("@byyuurin/ui-kit").MaybeArray<"xs" | "sm" | "md" | "lg" | "xl"> | undefined;
5252
+ disabled?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
5253
+ required?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
5238
5254
  } & {
5239
5255
  class?: never;
5240
5256
  className?: {
@@ -5255,7 +5271,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
5255
5271
  } | undefined;
5256
5272
  } | undefined;
5257
5273
  scrollArea?: {
5258
- slots?: {
5274
+ parts?: {
5259
5275
  root?: string | undefined;
5260
5276
  viewport?: string | undefined;
5261
5277
  scrollbar?: string | undefined;
@@ -5274,7 +5290,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
5274
5290
  } | undefined;
5275
5291
  } | undefined;
5276
5292
  compoundVariants?: ({
5277
- [x: string]: (string | number | (string | number)[]) | undefined;
5293
+ [x: string]: import("@byyuurin/ui-kit").MaybeArray<string | number> | undefined;
5278
5294
  } & {
5279
5295
  class?: {
5280
5296
  root?: import("@byyuurin/ui-kit").ClassValue;
@@ -5285,7 +5301,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
5285
5301
  } | undefined;
5286
5302
  className?: never;
5287
5303
  })[] | ({
5288
- [x: string]: (string | number | (string | number)[]) | undefined;
5304
+ [x: string]: import("@byyuurin/ui-kit").MaybeArray<string | number> | undefined;
5289
5305
  } & {
5290
5306
  class?: never;
5291
5307
  className?: {
@@ -5301,7 +5317,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
5301
5317
  } | undefined;
5302
5318
  } | undefined;
5303
5319
  select?: {
5304
- slots?: {
5320
+ parts?: {
5305
5321
  base?: string | undefined;
5306
5322
  value?: string | undefined;
5307
5323
  placeholder?: string | undefined;
@@ -5491,7 +5507,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
5491
5507
  } | undefined;
5492
5508
  } | undefined;
5493
5509
  separator?: {
5494
- slots?: {
5510
+ parts?: {
5495
5511
  root?: string | undefined;
5496
5512
  line?: string | undefined;
5497
5513
  container?: string | undefined;
@@ -5560,7 +5576,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
5560
5576
  defaultVariants?: {} | undefined;
5561
5577
  } | undefined;
5562
5578
  slider?: {
5563
- slots?: {
5579
+ parts?: {
5564
5580
  root?: string | undefined;
5565
5581
  track?: string | undefined;
5566
5582
  range?: string | undefined;
@@ -5596,8 +5612,8 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
5596
5612
  } | undefined;
5597
5613
  } | undefined;
5598
5614
  compoundVariants?: ({
5599
- size?: ("xs" | "sm" | "md" | "lg" | "xl" | ("xs" | "sm" | "md" | "lg" | "xl")[]) | undefined;
5600
- orientation?: ("horizontal" | "vertical" | ("horizontal" | "vertical")[]) | undefined;
5615
+ size?: import("@byyuurin/ui-kit").MaybeArray<"xs" | "sm" | "md" | "lg" | "xl"> | undefined;
5616
+ orientation?: import("@byyuurin/ui-kit").MaybeArray<"horizontal" | "vertical"> | undefined;
5601
5617
  } & {
5602
5618
  class?: {
5603
5619
  root?: import("@byyuurin/ui-kit").ClassValue;
@@ -5607,8 +5623,8 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
5607
5623
  } | undefined;
5608
5624
  className?: never;
5609
5625
  })[] | ({
5610
- size?: ("xs" | "sm" | "md" | "lg" | "xl" | ("xs" | "sm" | "md" | "lg" | "xl")[]) | undefined;
5611
- orientation?: ("horizontal" | "vertical" | ("horizontal" | "vertical")[]) | undefined;
5626
+ size?: import("@byyuurin/ui-kit").MaybeArray<"xs" | "sm" | "md" | "lg" | "xl"> | undefined;
5627
+ orientation?: import("@byyuurin/ui-kit").MaybeArray<"horizontal" | "vertical"> | undefined;
5612
5628
  } & {
5613
5629
  class?: never;
5614
5630
  className?: {
@@ -5623,7 +5639,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
5623
5639
  } | undefined;
5624
5640
  } | undefined;
5625
5641
  switch?: {
5626
- slots?: {
5642
+ parts?: {
5627
5643
  root?: string | undefined;
5628
5644
  base?: string | undefined;
5629
5645
  container?: string | undefined;
@@ -5682,12 +5698,12 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
5682
5698
  } | undefined;
5683
5699
  } | undefined;
5684
5700
  compoundVariants?: ({
5685
- size?: ("xs" | "sm" | "md" | "lg" | "xl" | ("xs" | "sm" | "md" | "lg" | "xl")[]) | undefined;
5686
- checked?: (boolean | boolean[]) | undefined;
5687
- unchecked?: (boolean | boolean[]) | undefined;
5688
- loading?: (boolean | boolean[]) | undefined;
5689
- required?: (boolean | boolean[]) | undefined;
5690
- disabled?: (boolean | boolean[]) | undefined;
5701
+ size?: import("@byyuurin/ui-kit").MaybeArray<"xs" | "sm" | "md" | "lg" | "xl"> | undefined;
5702
+ checked?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
5703
+ unchecked?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
5704
+ loading?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
5705
+ required?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
5706
+ disabled?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
5691
5707
  } & {
5692
5708
  class?: {
5693
5709
  root?: import("@byyuurin/ui-kit").ClassValue;
@@ -5701,12 +5717,12 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
5701
5717
  } | undefined;
5702
5718
  className?: never;
5703
5719
  })[] | ({
5704
- size?: ("xs" | "sm" | "md" | "lg" | "xl" | ("xs" | "sm" | "md" | "lg" | "xl")[]) | undefined;
5705
- checked?: (boolean | boolean[]) | undefined;
5706
- unchecked?: (boolean | boolean[]) | undefined;
5707
- loading?: (boolean | boolean[]) | undefined;
5708
- required?: (boolean | boolean[]) | undefined;
5709
- disabled?: (boolean | boolean[]) | undefined;
5720
+ size?: import("@byyuurin/ui-kit").MaybeArray<"xs" | "sm" | "md" | "lg" | "xl"> | undefined;
5721
+ checked?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
5722
+ unchecked?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
5723
+ loading?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
5724
+ required?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
5725
+ disabled?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
5710
5726
  } & {
5711
5727
  class?: never;
5712
5728
  className?: {
@@ -5725,7 +5741,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
5725
5741
  } | undefined;
5726
5742
  } | undefined;
5727
5743
  table?: {
5728
- slots?: {
5744
+ parts?: {
5729
5745
  root?: string | undefined;
5730
5746
  base?: string | undefined;
5731
5747
  caption?: string | undefined;
@@ -5756,9 +5772,9 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
5756
5772
  } | undefined;
5757
5773
  } | undefined;
5758
5774
  compoundVariants?: ({
5759
- sticky?: (boolean | boolean[]) | undefined;
5760
- pinned?: (boolean | boolean[]) | undefined;
5761
- expanded?: (boolean | boolean[]) | undefined;
5775
+ sticky?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
5776
+ pinned?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
5777
+ expanded?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
5762
5778
  } & {
5763
5779
  class?: {
5764
5780
  root?: import("@byyuurin/ui-kit").ClassValue;
@@ -5774,9 +5790,9 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
5774
5790
  } | undefined;
5775
5791
  className?: never;
5776
5792
  })[] | ({
5777
- sticky?: (boolean | boolean[]) | undefined;
5778
- pinned?: (boolean | boolean[]) | undefined;
5779
- expanded?: (boolean | boolean[]) | undefined;
5793
+ sticky?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
5794
+ pinned?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
5795
+ expanded?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
5780
5796
  } & {
5781
5797
  class?: never;
5782
5798
  className?: {
@@ -5799,7 +5815,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
5799
5815
  } | undefined;
5800
5816
  } | undefined;
5801
5817
  tabs?: {
5802
- slots?: {
5818
+ parts?: {
5803
5819
  root?: string | undefined;
5804
5820
  list?: string | undefined;
5805
5821
  indicator?: string | undefined;
@@ -5932,7 +5948,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
5932
5948
  } | undefined;
5933
5949
  } | undefined;
5934
5950
  textarea?: {
5935
- slots?: {
5951
+ parts?: {
5936
5952
  root?: string | undefined;
5937
5953
  base?: string | undefined;
5938
5954
  } | undefined;
@@ -6026,7 +6042,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
6026
6042
  } | undefined;
6027
6043
  } | undefined;
6028
6044
  toast?: {
6029
- slots?: {
6045
+ parts?: {
6030
6046
  root?: string | undefined;
6031
6047
  wrapper?: string | undefined;
6032
6048
  title?: string | undefined;
@@ -6056,8 +6072,8 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
6056
6072
  } | undefined;
6057
6073
  } | undefined;
6058
6074
  compoundVariants?: ({
6059
- orientation?: ("horizontal" | "vertical" | ("horizontal" | "vertical")[]) | undefined;
6060
- title?: (boolean | boolean[]) | undefined;
6075
+ orientation?: import("@byyuurin/ui-kit").MaybeArray<"horizontal" | "vertical"> | undefined;
6076
+ title?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
6061
6077
  } & {
6062
6078
  class?: {
6063
6079
  root?: import("@byyuurin/ui-kit").ClassValue;
@@ -6073,8 +6089,8 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
6073
6089
  } | undefined;
6074
6090
  className?: never;
6075
6091
  })[] | ({
6076
- orientation?: ("horizontal" | "vertical" | ("horizontal" | "vertical")[]) | undefined;
6077
- title?: (boolean | boolean[]) | undefined;
6092
+ orientation?: import("@byyuurin/ui-kit").MaybeArray<"horizontal" | "vertical"> | undefined;
6093
+ title?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
6078
6094
  } & {
6079
6095
  class?: never;
6080
6096
  className?: {
@@ -6096,7 +6112,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
6096
6112
  } | undefined;
6097
6113
  } | undefined;
6098
6114
  toastProvider?: {
6099
- slots?: {
6115
+ parts?: {
6100
6116
  viewport?: string | undefined;
6101
6117
  base?: string | undefined;
6102
6118
  } | undefined;
@@ -6177,7 +6193,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
6177
6193
  } | undefined;
6178
6194
  } | undefined;
6179
6195
  tooltip?: {
6180
- slots?: {
6196
+ parts?: {
6181
6197
  content?: string | undefined;
6182
6198
  arrow?: string | undefined;
6183
6199
  text?: string | undefined;
@@ -6192,7 +6208,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
6192
6208
  } | undefined;
6193
6209
  } | undefined;
6194
6210
  compoundVariants?: ({
6195
- [x: string]: (string | number | (string | number)[]) | undefined;
6211
+ [x: string]: import("@byyuurin/ui-kit").MaybeArray<string | number> | undefined;
6196
6212
  } & {
6197
6213
  class?: {
6198
6214
  content?: import("@byyuurin/ui-kit").ClassValue;
@@ -6201,7 +6217,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
6201
6217
  } | undefined;
6202
6218
  className?: never;
6203
6219
  })[] | ({
6204
- [x: string]: (string | number | (string | number)[]) | undefined;
6220
+ [x: string]: import("@byyuurin/ui-kit").MaybeArray<string | number> | undefined;
6205
6221
  } & {
6206
6222
  class?: never;
6207
6223
  className?: {
@@ -6216,7 +6232,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
6216
6232
  } | undefined;
6217
6233
  }>) => void, injectThemeExtension: () => MaybeRefOrGetter<{
6218
6234
  accordion?: {
6219
- slots?: {
6235
+ parts?: {
6220
6236
  root?: string | undefined;
6221
6237
  item?: string | undefined;
6222
6238
  header?: string | undefined;
@@ -6235,7 +6251,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
6235
6251
  } | undefined;
6236
6252
  } | undefined;
6237
6253
  compoundVariants?: ({
6238
- disabled?: (boolean | boolean[]) | undefined;
6254
+ disabled?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
6239
6255
  } & {
6240
6256
  class?: {
6241
6257
  root?: import("@byyuurin/ui-kit").ClassValue;
@@ -6250,7 +6266,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
6250
6266
  } | undefined;
6251
6267
  className?: never;
6252
6268
  })[] | ({
6253
- disabled?: (boolean | boolean[]) | undefined;
6269
+ disabled?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
6254
6270
  } & {
6255
6271
  class?: never;
6256
6272
  className?: {
@@ -6270,7 +6286,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
6270
6286
  } | undefined;
6271
6287
  } | undefined;
6272
6288
  alert?: {
6273
- slots?: {
6289
+ parts?: {
6274
6290
  root?: string | undefined;
6275
6291
  wrapper?: string | undefined;
6276
6292
  title?: string | undefined;
@@ -6312,9 +6328,9 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
6312
6328
  } | undefined;
6313
6329
  } | undefined;
6314
6330
  compoundVariants?: ({
6315
- variant?: ("solid" | "outline" | "soft" | "soft-outline" | ("solid" | "outline" | "soft" | "soft-outline")[]) | undefined;
6316
- orientation?: ("horizontal" | "vertical" | ("horizontal" | "vertical")[]) | undefined;
6317
- title?: (boolean | boolean[]) | undefined;
6331
+ variant?: import("@byyuurin/ui-kit").MaybeArray<"solid" | "outline" | "soft" | "soft-outline"> | undefined;
6332
+ orientation?: import("@byyuurin/ui-kit").MaybeArray<"horizontal" | "vertical"> | undefined;
6333
+ title?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
6318
6334
  } & {
6319
6335
  class?: {
6320
6336
  root?: import("@byyuurin/ui-kit").ClassValue;
@@ -6327,9 +6343,9 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
6327
6343
  } | undefined;
6328
6344
  className?: never;
6329
6345
  })[] | ({
6330
- variant?: ("solid" | "outline" | "soft" | "soft-outline" | ("solid" | "outline" | "soft" | "soft-outline")[]) | undefined;
6331
- orientation?: ("horizontal" | "vertical" | ("horizontal" | "vertical")[]) | undefined;
6332
- title?: (boolean | boolean[]) | undefined;
6346
+ variant?: import("@byyuurin/ui-kit").MaybeArray<"solid" | "outline" | "soft" | "soft-outline"> | undefined;
6347
+ orientation?: import("@byyuurin/ui-kit").MaybeArray<"horizontal" | "vertical"> | undefined;
6348
+ title?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
6333
6349
  } & {
6334
6350
  class?: never;
6335
6351
  className?: {
@@ -6367,7 +6383,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
6367
6383
  } | undefined;
6368
6384
  } | undefined;
6369
6385
  avatar?: {
6370
- slots?: {
6386
+ parts?: {
6371
6387
  root?: string | undefined;
6372
6388
  image?: string | undefined;
6373
6389
  fallback?: string | undefined;
@@ -6393,7 +6409,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
6393
6409
  } | undefined;
6394
6410
  } | undefined;
6395
6411
  compoundVariants?: ({
6396
- size?: ("xs" | "sm" | "md" | "lg" | "xl" | ("xs" | "sm" | "md" | "lg" | "xl")[]) | undefined;
6412
+ size?: import("@byyuurin/ui-kit").MaybeArray<"xs" | "sm" | "md" | "lg" | "xl"> | undefined;
6397
6413
  } & {
6398
6414
  class?: {
6399
6415
  root?: import("@byyuurin/ui-kit").ClassValue;
@@ -6403,7 +6419,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
6403
6419
  } | undefined;
6404
6420
  className?: never;
6405
6421
  })[] | ({
6406
- size?: ("xs" | "sm" | "md" | "lg" | "xl" | ("xs" | "sm" | "md" | "lg" | "xl")[]) | undefined;
6422
+ size?: import("@byyuurin/ui-kit").MaybeArray<"xs" | "sm" | "md" | "lg" | "xl"> | undefined;
6407
6423
  } & {
6408
6424
  class?: never;
6409
6425
  className?: {
@@ -6418,7 +6434,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
6418
6434
  } | undefined;
6419
6435
  } | undefined;
6420
6436
  avatarGroup?: {
6421
- slots?: {
6437
+ parts?: {
6422
6438
  root?: string | undefined;
6423
6439
  base?: string | undefined;
6424
6440
  } | undefined;
@@ -6442,7 +6458,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
6442
6458
  } | undefined;
6443
6459
  } | undefined;
6444
6460
  compoundVariants?: ({
6445
- size?: ("xs" | "sm" | "md" | "lg" | "xl" | ("xs" | "sm" | "md" | "lg" | "xl")[]) | undefined;
6461
+ size?: import("@byyuurin/ui-kit").MaybeArray<"xs" | "sm" | "md" | "lg" | "xl"> | undefined;
6446
6462
  } & {
6447
6463
  class?: {
6448
6464
  root?: import("@byyuurin/ui-kit").ClassValue;
@@ -6450,7 +6466,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
6450
6466
  } | undefined;
6451
6467
  className?: never;
6452
6468
  })[] | ({
6453
- size?: ("xs" | "sm" | "md" | "lg" | "xl" | ("xs" | "sm" | "md" | "lg" | "xl")[]) | undefined;
6469
+ size?: import("@byyuurin/ui-kit").MaybeArray<"xs" | "sm" | "md" | "lg" | "xl"> | undefined;
6454
6470
  } & {
6455
6471
  class?: never;
6456
6472
  className?: {
@@ -6463,7 +6479,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
6463
6479
  } | undefined;
6464
6480
  } | undefined;
6465
6481
  badge?: {
6466
- slots?: {
6482
+ parts?: {
6467
6483
  root?: string | undefined;
6468
6484
  base?: string | undefined;
6469
6485
  } | undefined;
@@ -6543,7 +6559,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
6543
6559
  } | undefined;
6544
6560
  } | undefined;
6545
6561
  breadcrumb?: {
6546
- slots?: {
6562
+ parts?: {
6547
6563
  root?: string | undefined;
6548
6564
  list?: string | undefined;
6549
6565
  item?: string | undefined;
@@ -6586,7 +6602,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
6586
6602
  } | undefined;
6587
6603
  } | undefined;
6588
6604
  button?: {
6589
- slots?: {
6605
+ parts?: {
6590
6606
  base?: string | undefined;
6591
6607
  label?: string | undefined;
6592
6608
  leadingIcon?: string | undefined;
@@ -6789,16 +6805,16 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
6789
6805
  } | undefined;
6790
6806
  } | undefined;
6791
6807
  compoundVariants?: ({
6792
- size?: ("xs" | "sm" | "md" | "lg" | "xl" | ("xs" | "sm" | "md" | "lg" | "xl")[]) | undefined;
6793
- orientation?: ("horizontal" | "vertical" | ("horizontal" | "vertical")[]) | undefined;
6808
+ size?: import("@byyuurin/ui-kit").MaybeArray<"xs" | "sm" | "md" | "lg" | "xl"> | undefined;
6809
+ orientation?: import("@byyuurin/ui-kit").MaybeArray<"horizontal" | "vertical"> | undefined;
6794
6810
  } & {
6795
6811
  class?: import("@byyuurin/ui-kit").ClassValue | {
6796
6812
  base?: import("@byyuurin/ui-kit").ClassValue;
6797
6813
  };
6798
6814
  className?: never;
6799
6815
  })[] | ({
6800
- size?: ("xs" | "sm" | "md" | "lg" | "xl" | ("xs" | "sm" | "md" | "lg" | "xl")[]) | undefined;
6801
- orientation?: ("horizontal" | "vertical" | ("horizontal" | "vertical")[]) | undefined;
6816
+ size?: import("@byyuurin/ui-kit").MaybeArray<"xs" | "sm" | "md" | "lg" | "xl"> | undefined;
6817
+ orientation?: import("@byyuurin/ui-kit").MaybeArray<"horizontal" | "vertical"> | undefined;
6802
6818
  } & {
6803
6819
  class?: never;
6804
6820
  className?: import("@byyuurin/ui-kit").ClassValue | {
@@ -6811,7 +6827,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
6811
6827
  } | undefined;
6812
6828
  } | undefined;
6813
6829
  calendar?: {
6814
- slots?: {
6830
+ parts?: {
6815
6831
  root?: string | undefined;
6816
6832
  header?: string | undefined;
6817
6833
  body?: string | undefined;
@@ -6842,6 +6858,14 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
6842
6858
  root?: string | undefined;
6843
6859
  } | undefined;
6844
6860
  } | undefined;
6861
+ multipleMonths?: {
6862
+ true?: {
6863
+ cellTrigger?: string | undefined;
6864
+ } | undefined;
6865
+ false?: {
6866
+ cellTrigger?: string | undefined;
6867
+ } | undefined;
6868
+ } | undefined;
6845
6869
  readonly?: {
6846
6870
  true?: {
6847
6871
  cellTrigger?: string | undefined;
@@ -6865,7 +6889,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
6865
6889
  } | undefined;
6866
6890
  } | undefined;
6867
6891
  card?: {
6868
- slots?: {
6892
+ parts?: {
6869
6893
  root?: string | undefined;
6870
6894
  header?: string | undefined;
6871
6895
  body?: string | undefined;
@@ -6894,7 +6918,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
6894
6918
  } | undefined;
6895
6919
  } | undefined;
6896
6920
  compoundVariants?: ({
6897
- variant?: ("solid" | "outline" | "soft" | "soft-outline" | ("solid" | "outline" | "soft" | "soft-outline")[]) | undefined;
6921
+ variant?: import("@byyuurin/ui-kit").MaybeArray<"solid" | "outline" | "soft" | "soft-outline"> | undefined;
6898
6922
  } & {
6899
6923
  class?: {
6900
6924
  root?: import("@byyuurin/ui-kit").ClassValue;
@@ -6906,7 +6930,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
6906
6930
  } | undefined;
6907
6931
  className?: never;
6908
6932
  })[] | ({
6909
- variant?: ("solid" | "outline" | "soft" | "soft-outline" | ("solid" | "outline" | "soft" | "soft-outline")[]) | undefined;
6933
+ variant?: import("@byyuurin/ui-kit").MaybeArray<"solid" | "outline" | "soft" | "soft-outline"> | undefined;
6910
6934
  } & {
6911
6935
  class?: never;
6912
6936
  className?: {
@@ -6923,7 +6947,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
6923
6947
  } | undefined;
6924
6948
  } | undefined;
6925
6949
  carousel?: {
6926
- slots?: {
6950
+ parts?: {
6927
6951
  root?: string | undefined;
6928
6952
  viewport?: string | undefined;
6929
6953
  container?: string | undefined;
@@ -6961,8 +6985,8 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
6961
6985
  } | undefined;
6962
6986
  } | undefined;
6963
6987
  compoundVariants?: ({
6964
- orientation?: ("horizontal" | "vertical" | ("horizontal" | "vertical")[]) | undefined;
6965
- active?: (boolean | boolean[]) | undefined;
6988
+ orientation?: import("@byyuurin/ui-kit").MaybeArray<"horizontal" | "vertical"> | undefined;
6989
+ active?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
6966
6990
  } & {
6967
6991
  class?: {
6968
6992
  root?: import("@byyuurin/ui-kit").ClassValue;
@@ -6978,8 +7002,8 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
6978
7002
  } | undefined;
6979
7003
  className?: never;
6980
7004
  })[] | ({
6981
- orientation?: ("horizontal" | "vertical" | ("horizontal" | "vertical")[]) | undefined;
6982
- active?: (boolean | boolean[]) | undefined;
7005
+ orientation?: import("@byyuurin/ui-kit").MaybeArray<"horizontal" | "vertical"> | undefined;
7006
+ active?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
6983
7007
  } & {
6984
7008
  class?: never;
6985
7009
  className?: {
@@ -7001,7 +7025,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
7001
7025
  } | undefined;
7002
7026
  } | undefined;
7003
7027
  checkbox?: {
7004
- slots?: {
7028
+ parts?: {
7005
7029
  root?: string | undefined;
7006
7030
  base?: string | undefined;
7007
7031
  container?: string | undefined;
@@ -7043,9 +7067,9 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
7043
7067
  } | undefined;
7044
7068
  } | undefined;
7045
7069
  compoundVariants?: ({
7046
- size?: ("xs" | "sm" | "md" | "lg" | "xl" | ("xs" | "sm" | "md" | "lg" | "xl")[]) | undefined;
7047
- required?: (boolean | boolean[]) | undefined;
7048
- disabled?: (boolean | boolean[]) | undefined;
7070
+ size?: import("@byyuurin/ui-kit").MaybeArray<"xs" | "sm" | "md" | "lg" | "xl"> | undefined;
7071
+ required?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
7072
+ disabled?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
7049
7073
  } & {
7050
7074
  class?: {
7051
7075
  root?: import("@byyuurin/ui-kit").ClassValue;
@@ -7058,9 +7082,9 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
7058
7082
  } | undefined;
7059
7083
  className?: never;
7060
7084
  })[] | ({
7061
- size?: ("xs" | "sm" | "md" | "lg" | "xl" | ("xs" | "sm" | "md" | "lg" | "xl")[]) | undefined;
7062
- required?: (boolean | boolean[]) | undefined;
7063
- disabled?: (boolean | boolean[]) | undefined;
7085
+ size?: import("@byyuurin/ui-kit").MaybeArray<"xs" | "sm" | "md" | "lg" | "xl"> | undefined;
7086
+ required?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
7087
+ disabled?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
7064
7088
  } & {
7065
7089
  class?: never;
7066
7090
  className?: {
@@ -7078,7 +7102,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
7078
7102
  } | undefined;
7079
7103
  } | undefined;
7080
7104
  chip?: {
7081
- slots?: {
7105
+ parts?: {
7082
7106
  base?: string | undefined;
7083
7107
  label?: string | undefined;
7084
7108
  leadingIcon?: string | undefined;
@@ -7143,7 +7167,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
7143
7167
  } | undefined;
7144
7168
  } | undefined;
7145
7169
  collapsible?: {
7146
- slots?: {
7170
+ parts?: {
7147
7171
  root?: string | undefined;
7148
7172
  content?: string | undefined;
7149
7173
  } | undefined;
@@ -7156,7 +7180,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
7156
7180
  } | undefined;
7157
7181
  } | undefined;
7158
7182
  compoundVariants?: ({
7159
- [x: string]: (string | number | (string | number)[]) | undefined;
7183
+ [x: string]: import("@byyuurin/ui-kit").MaybeArray<string | number> | undefined;
7160
7184
  } & {
7161
7185
  class?: {
7162
7186
  root?: import("@byyuurin/ui-kit").ClassValue;
@@ -7164,7 +7188,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
7164
7188
  } | undefined;
7165
7189
  className?: never;
7166
7190
  })[] | ({
7167
- [x: string]: (string | number | (string | number)[]) | undefined;
7191
+ [x: string]: import("@byyuurin/ui-kit").MaybeArray<string | number> | undefined;
7168
7192
  } & {
7169
7193
  class?: never;
7170
7194
  className?: {
@@ -7177,7 +7201,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
7177
7201
  } | undefined;
7178
7202
  } | undefined;
7179
7203
  drawer?: {
7180
- slots?: {
7204
+ parts?: {
7181
7205
  overlay?: string | undefined;
7182
7206
  content?: string | undefined;
7183
7207
  container?: string | undefined;
@@ -7292,7 +7316,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
7292
7316
  } | undefined;
7293
7317
  } | undefined;
7294
7318
  dropdownMenu?: {
7295
- slots?: {
7319
+ parts?: {
7296
7320
  content?: string | undefined;
7297
7321
  arrow?: string | undefined;
7298
7322
  group?: string | undefined;
@@ -7377,7 +7401,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
7377
7401
  defaultVariants?: {} | undefined;
7378
7402
  } | undefined;
7379
7403
  formItem?: {
7380
- slots?: {
7404
+ parts?: {
7381
7405
  root?: string | undefined;
7382
7406
  wrapper?: string | undefined;
7383
7407
  labelWrapper?: string | undefined;
@@ -7413,8 +7437,8 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
7413
7437
  } | undefined;
7414
7438
  } | undefined;
7415
7439
  compoundVariants?: ({
7416
- size?: ("xs" | "sm" | "md" | "lg" | "xl" | ("xs" | "sm" | "md" | "lg" | "xl")[]) | undefined;
7417
- required?: (boolean | boolean[]) | undefined;
7440
+ size?: import("@byyuurin/ui-kit").MaybeArray<"xs" | "sm" | "md" | "lg" | "xl"> | undefined;
7441
+ required?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
7418
7442
  } & {
7419
7443
  class?: {
7420
7444
  root?: import("@byyuurin/ui-kit").ClassValue;
@@ -7429,8 +7453,8 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
7429
7453
  } | undefined;
7430
7454
  className?: never;
7431
7455
  })[] | ({
7432
- size?: ("xs" | "sm" | "md" | "lg" | "xl" | ("xs" | "sm" | "md" | "lg" | "xl")[]) | undefined;
7433
- required?: (boolean | boolean[]) | undefined;
7456
+ size?: import("@byyuurin/ui-kit").MaybeArray<"xs" | "sm" | "md" | "lg" | "xl"> | undefined;
7457
+ required?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
7434
7458
  } & {
7435
7459
  class?: never;
7436
7460
  className?: {
@@ -7450,7 +7474,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
7450
7474
  } | undefined;
7451
7475
  } | undefined;
7452
7476
  input?: {
7453
- slots?: {
7477
+ parts?: {
7454
7478
  base?: string | undefined;
7455
7479
  input?: string | undefined;
7456
7480
  leading?: string | undefined;
@@ -7626,7 +7650,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
7626
7650
  } | undefined;
7627
7651
  } | undefined;
7628
7652
  inputNumber?: {
7629
- slots?: {
7653
+ parts?: {
7630
7654
  base?: string | undefined;
7631
7655
  input?: string | undefined;
7632
7656
  increment?: string | undefined;
@@ -7762,16 +7786,16 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
7762
7786
  } | undefined;
7763
7787
  } | undefined;
7764
7788
  compoundVariants?: ({
7765
- variant?: ("solid" | "outline" | "soft" | "soft-outline" | ("solid" | "outline" | "soft" | "soft-outline")[]) | undefined;
7766
- size?: ("xs" | "sm" | "md" | "lg" | "xl" | ("xs" | "sm" | "md" | "lg" | "xl")[]) | undefined;
7789
+ variant?: import("@byyuurin/ui-kit").MaybeArray<"solid" | "outline" | "soft" | "soft-outline"> | undefined;
7790
+ size?: import("@byyuurin/ui-kit").MaybeArray<"xs" | "sm" | "md" | "lg" | "xl"> | undefined;
7767
7791
  } & {
7768
7792
  class?: import("@byyuurin/ui-kit").ClassValue | {
7769
7793
  base?: import("@byyuurin/ui-kit").ClassValue;
7770
7794
  };
7771
7795
  className?: never;
7772
7796
  })[] | ({
7773
- variant?: ("solid" | "outline" | "soft" | "soft-outline" | ("solid" | "outline" | "soft" | "soft-outline")[]) | undefined;
7774
- size?: ("xs" | "sm" | "md" | "lg" | "xl" | ("xs" | "sm" | "md" | "lg" | "xl")[]) | undefined;
7797
+ variant?: import("@byyuurin/ui-kit").MaybeArray<"solid" | "outline" | "soft" | "soft-outline"> | undefined;
7798
+ size?: import("@byyuurin/ui-kit").MaybeArray<"xs" | "sm" | "md" | "lg" | "xl"> | undefined;
7775
7799
  } & {
7776
7800
  class?: never;
7777
7801
  className?: import("@byyuurin/ui-kit").ClassValue | {
@@ -7799,18 +7823,18 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
7799
7823
  } | undefined;
7800
7824
  } | undefined;
7801
7825
  compoundVariants?: ({
7802
- underline?: (boolean | boolean[]) | undefined;
7803
- active?: (boolean | boolean[]) | undefined;
7804
- disabled?: (boolean | boolean[]) | undefined;
7826
+ underline?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
7827
+ active?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
7828
+ disabled?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
7805
7829
  } & {
7806
7830
  class?: import("@byyuurin/ui-kit").ClassValue | {
7807
7831
  base?: import("@byyuurin/ui-kit").ClassValue;
7808
7832
  };
7809
7833
  className?: never;
7810
7834
  })[] | ({
7811
- underline?: (boolean | boolean[]) | undefined;
7812
- active?: (boolean | boolean[]) | undefined;
7813
- disabled?: (boolean | boolean[]) | undefined;
7835
+ underline?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
7836
+ active?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
7837
+ disabled?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
7814
7838
  } & {
7815
7839
  class?: never;
7816
7840
  className?: import("@byyuurin/ui-kit").ClassValue | {
@@ -7824,7 +7848,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
7824
7848
  } | undefined;
7825
7849
  } | undefined;
7826
7850
  modal?: {
7827
- slots?: {
7851
+ parts?: {
7828
7852
  overlay?: string | undefined;
7829
7853
  content?: string | undefined;
7830
7854
  header?: string | undefined;
@@ -7870,7 +7894,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
7870
7894
  } | undefined;
7871
7895
  } | undefined;
7872
7896
  pagination?: {
7873
- slots?: {
7897
+ parts?: {
7874
7898
  root?: string | undefined;
7875
7899
  list?: string | undefined;
7876
7900
  ellipsis?: string | undefined;
@@ -7897,7 +7921,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
7897
7921
  } | undefined;
7898
7922
  } | undefined;
7899
7923
  compoundVariants?: ({
7900
- [x: string]: (string | number | (string | number)[]) | undefined;
7924
+ [x: string]: import("@byyuurin/ui-kit").MaybeArray<string | number> | undefined;
7901
7925
  } & {
7902
7926
  class?: {
7903
7927
  root?: import("@byyuurin/ui-kit").ClassValue;
@@ -7912,7 +7936,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
7912
7936
  } | undefined;
7913
7937
  className?: never;
7914
7938
  })[] | ({
7915
- [x: string]: (string | number | (string | number)[]) | undefined;
7939
+ [x: string]: import("@byyuurin/ui-kit").MaybeArray<string | number> | undefined;
7916
7940
  } & {
7917
7941
  class?: never;
7918
7942
  className?: {
@@ -7932,7 +7956,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
7932
7956
  } | undefined;
7933
7957
  } | undefined;
7934
7958
  pinInput?: {
7935
- slots?: {
7959
+ parts?: {
7936
7960
  root?: string | undefined;
7937
7961
  container?: string | undefined;
7938
7962
  base?: string | undefined;
@@ -8030,7 +8054,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
8030
8054
  } | undefined;
8031
8055
  } | undefined;
8032
8056
  popover?: {
8033
- slots?: {
8057
+ parts?: {
8034
8058
  content?: string | undefined;
8035
8059
  arrow?: string | undefined;
8036
8060
  } | undefined;
@@ -8043,7 +8067,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
8043
8067
  } | undefined;
8044
8068
  } | undefined;
8045
8069
  compoundVariants?: ({
8046
- [x: string]: (string | number | (string | number)[]) | undefined;
8070
+ [x: string]: import("@byyuurin/ui-kit").MaybeArray<string | number> | undefined;
8047
8071
  } & {
8048
8072
  class?: {
8049
8073
  content?: import("@byyuurin/ui-kit").ClassValue;
@@ -8051,7 +8075,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
8051
8075
  } | undefined;
8052
8076
  className?: never;
8053
8077
  })[] | ({
8054
- [x: string]: (string | number | (string | number)[]) | undefined;
8078
+ [x: string]: import("@byyuurin/ui-kit").MaybeArray<string | number> | undefined;
8055
8079
  } & {
8056
8080
  class?: never;
8057
8081
  className?: {
@@ -8064,7 +8088,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
8064
8088
  } | undefined;
8065
8089
  } | undefined;
8066
8090
  progress?: {
8067
- slots?: {
8091
+ parts?: {
8068
8092
  wrapper?: string | undefined;
8069
8093
  root?: string | undefined;
8070
8094
  indicator?: string | undefined;
@@ -8248,7 +8272,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
8248
8272
  } | undefined;
8249
8273
  } | undefined;
8250
8274
  radioGroup?: {
8251
- slots?: {
8275
+ parts?: {
8252
8276
  root?: string | undefined;
8253
8277
  fieldset?: string | undefined;
8254
8278
  legend?: string | undefined;
@@ -8301,10 +8325,10 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
8301
8325
  } | undefined;
8302
8326
  } | undefined;
8303
8327
  compoundVariants?: ({
8304
- orientation?: ("horizontal" | "vertical" | ("horizontal" | "vertical")[]) | undefined;
8305
- size?: ("xs" | "sm" | "md" | "lg" | "xl" | ("xs" | "sm" | "md" | "lg" | "xl")[]) | undefined;
8306
- disabled?: (boolean | boolean[]) | undefined;
8307
- required?: (boolean | boolean[]) | undefined;
8328
+ orientation?: import("@byyuurin/ui-kit").MaybeArray<"horizontal" | "vertical"> | undefined;
8329
+ size?: import("@byyuurin/ui-kit").MaybeArray<"xs" | "sm" | "md" | "lg" | "xl"> | undefined;
8330
+ disabled?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
8331
+ required?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
8308
8332
  } & {
8309
8333
  class?: {
8310
8334
  root?: import("@byyuurin/ui-kit").ClassValue;
@@ -8320,10 +8344,10 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
8320
8344
  } | undefined;
8321
8345
  className?: never;
8322
8346
  })[] | ({
8323
- orientation?: ("horizontal" | "vertical" | ("horizontal" | "vertical")[]) | undefined;
8324
- size?: ("xs" | "sm" | "md" | "lg" | "xl" | ("xs" | "sm" | "md" | "lg" | "xl")[]) | undefined;
8325
- disabled?: (boolean | boolean[]) | undefined;
8326
- required?: (boolean | boolean[]) | undefined;
8347
+ orientation?: import("@byyuurin/ui-kit").MaybeArray<"horizontal" | "vertical"> | undefined;
8348
+ size?: import("@byyuurin/ui-kit").MaybeArray<"xs" | "sm" | "md" | "lg" | "xl"> | undefined;
8349
+ disabled?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
8350
+ required?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
8327
8351
  } & {
8328
8352
  class?: never;
8329
8353
  className?: {
@@ -8344,7 +8368,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
8344
8368
  } | undefined;
8345
8369
  } | undefined;
8346
8370
  scrollArea?: {
8347
- slots?: {
8371
+ parts?: {
8348
8372
  root?: string | undefined;
8349
8373
  viewport?: string | undefined;
8350
8374
  scrollbar?: string | undefined;
@@ -8363,7 +8387,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
8363
8387
  } | undefined;
8364
8388
  } | undefined;
8365
8389
  compoundVariants?: ({
8366
- [x: string]: (string | number | (string | number)[]) | undefined;
8390
+ [x: string]: import("@byyuurin/ui-kit").MaybeArray<string | number> | undefined;
8367
8391
  } & {
8368
8392
  class?: {
8369
8393
  root?: import("@byyuurin/ui-kit").ClassValue;
@@ -8374,7 +8398,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
8374
8398
  } | undefined;
8375
8399
  className?: never;
8376
8400
  })[] | ({
8377
- [x: string]: (string | number | (string | number)[]) | undefined;
8401
+ [x: string]: import("@byyuurin/ui-kit").MaybeArray<string | number> | undefined;
8378
8402
  } & {
8379
8403
  class?: never;
8380
8404
  className?: {
@@ -8390,7 +8414,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
8390
8414
  } | undefined;
8391
8415
  } | undefined;
8392
8416
  select?: {
8393
- slots?: {
8417
+ parts?: {
8394
8418
  base?: string | undefined;
8395
8419
  value?: string | undefined;
8396
8420
  placeholder?: string | undefined;
@@ -8580,7 +8604,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
8580
8604
  } | undefined;
8581
8605
  } | undefined;
8582
8606
  separator?: {
8583
- slots?: {
8607
+ parts?: {
8584
8608
  root?: string | undefined;
8585
8609
  line?: string | undefined;
8586
8610
  container?: string | undefined;
@@ -8649,7 +8673,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
8649
8673
  defaultVariants?: {} | undefined;
8650
8674
  } | undefined;
8651
8675
  slider?: {
8652
- slots?: {
8676
+ parts?: {
8653
8677
  root?: string | undefined;
8654
8678
  track?: string | undefined;
8655
8679
  range?: string | undefined;
@@ -8685,8 +8709,8 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
8685
8709
  } | undefined;
8686
8710
  } | undefined;
8687
8711
  compoundVariants?: ({
8688
- size?: ("xs" | "sm" | "md" | "lg" | "xl" | ("xs" | "sm" | "md" | "lg" | "xl")[]) | undefined;
8689
- orientation?: ("horizontal" | "vertical" | ("horizontal" | "vertical")[]) | undefined;
8712
+ size?: import("@byyuurin/ui-kit").MaybeArray<"xs" | "sm" | "md" | "lg" | "xl"> | undefined;
8713
+ orientation?: import("@byyuurin/ui-kit").MaybeArray<"horizontal" | "vertical"> | undefined;
8690
8714
  } & {
8691
8715
  class?: {
8692
8716
  root?: import("@byyuurin/ui-kit").ClassValue;
@@ -8696,8 +8720,8 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
8696
8720
  } | undefined;
8697
8721
  className?: never;
8698
8722
  })[] | ({
8699
- size?: ("xs" | "sm" | "md" | "lg" | "xl" | ("xs" | "sm" | "md" | "lg" | "xl")[]) | undefined;
8700
- orientation?: ("horizontal" | "vertical" | ("horizontal" | "vertical")[]) | undefined;
8723
+ size?: import("@byyuurin/ui-kit").MaybeArray<"xs" | "sm" | "md" | "lg" | "xl"> | undefined;
8724
+ orientation?: import("@byyuurin/ui-kit").MaybeArray<"horizontal" | "vertical"> | undefined;
8701
8725
  } & {
8702
8726
  class?: never;
8703
8727
  className?: {
@@ -8712,7 +8736,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
8712
8736
  } | undefined;
8713
8737
  } | undefined;
8714
8738
  switch?: {
8715
- slots?: {
8739
+ parts?: {
8716
8740
  root?: string | undefined;
8717
8741
  base?: string | undefined;
8718
8742
  container?: string | undefined;
@@ -8771,12 +8795,12 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
8771
8795
  } | undefined;
8772
8796
  } | undefined;
8773
8797
  compoundVariants?: ({
8774
- size?: ("xs" | "sm" | "md" | "lg" | "xl" | ("xs" | "sm" | "md" | "lg" | "xl")[]) | undefined;
8775
- checked?: (boolean | boolean[]) | undefined;
8776
- unchecked?: (boolean | boolean[]) | undefined;
8777
- loading?: (boolean | boolean[]) | undefined;
8778
- required?: (boolean | boolean[]) | undefined;
8779
- disabled?: (boolean | boolean[]) | undefined;
8798
+ size?: import("@byyuurin/ui-kit").MaybeArray<"xs" | "sm" | "md" | "lg" | "xl"> | undefined;
8799
+ checked?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
8800
+ unchecked?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
8801
+ loading?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
8802
+ required?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
8803
+ disabled?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
8780
8804
  } & {
8781
8805
  class?: {
8782
8806
  root?: import("@byyuurin/ui-kit").ClassValue;
@@ -8790,12 +8814,12 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
8790
8814
  } | undefined;
8791
8815
  className?: never;
8792
8816
  })[] | ({
8793
- size?: ("xs" | "sm" | "md" | "lg" | "xl" | ("xs" | "sm" | "md" | "lg" | "xl")[]) | undefined;
8794
- checked?: (boolean | boolean[]) | undefined;
8795
- unchecked?: (boolean | boolean[]) | undefined;
8796
- loading?: (boolean | boolean[]) | undefined;
8797
- required?: (boolean | boolean[]) | undefined;
8798
- disabled?: (boolean | boolean[]) | undefined;
8817
+ size?: import("@byyuurin/ui-kit").MaybeArray<"xs" | "sm" | "md" | "lg" | "xl"> | undefined;
8818
+ checked?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
8819
+ unchecked?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
8820
+ loading?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
8821
+ required?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
8822
+ disabled?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
8799
8823
  } & {
8800
8824
  class?: never;
8801
8825
  className?: {
@@ -8814,7 +8838,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
8814
8838
  } | undefined;
8815
8839
  } | undefined;
8816
8840
  table?: {
8817
- slots?: {
8841
+ parts?: {
8818
8842
  root?: string | undefined;
8819
8843
  base?: string | undefined;
8820
8844
  caption?: string | undefined;
@@ -8845,9 +8869,9 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
8845
8869
  } | undefined;
8846
8870
  } | undefined;
8847
8871
  compoundVariants?: ({
8848
- sticky?: (boolean | boolean[]) | undefined;
8849
- pinned?: (boolean | boolean[]) | undefined;
8850
- expanded?: (boolean | boolean[]) | undefined;
8872
+ sticky?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
8873
+ pinned?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
8874
+ expanded?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
8851
8875
  } & {
8852
8876
  class?: {
8853
8877
  root?: import("@byyuurin/ui-kit").ClassValue;
@@ -8863,9 +8887,9 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
8863
8887
  } | undefined;
8864
8888
  className?: never;
8865
8889
  })[] | ({
8866
- sticky?: (boolean | boolean[]) | undefined;
8867
- pinned?: (boolean | boolean[]) | undefined;
8868
- expanded?: (boolean | boolean[]) | undefined;
8890
+ sticky?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
8891
+ pinned?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
8892
+ expanded?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
8869
8893
  } & {
8870
8894
  class?: never;
8871
8895
  className?: {
@@ -8888,7 +8912,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
8888
8912
  } | undefined;
8889
8913
  } | undefined;
8890
8914
  tabs?: {
8891
- slots?: {
8915
+ parts?: {
8892
8916
  root?: string | undefined;
8893
8917
  list?: string | undefined;
8894
8918
  indicator?: string | undefined;
@@ -9021,7 +9045,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
9021
9045
  } | undefined;
9022
9046
  } | undefined;
9023
9047
  textarea?: {
9024
- slots?: {
9048
+ parts?: {
9025
9049
  root?: string | undefined;
9026
9050
  base?: string | undefined;
9027
9051
  } | undefined;
@@ -9115,7 +9139,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
9115
9139
  } | undefined;
9116
9140
  } | undefined;
9117
9141
  toast?: {
9118
- slots?: {
9142
+ parts?: {
9119
9143
  root?: string | undefined;
9120
9144
  wrapper?: string | undefined;
9121
9145
  title?: string | undefined;
@@ -9145,8 +9169,8 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
9145
9169
  } | undefined;
9146
9170
  } | undefined;
9147
9171
  compoundVariants?: ({
9148
- orientation?: ("horizontal" | "vertical" | ("horizontal" | "vertical")[]) | undefined;
9149
- title?: (boolean | boolean[]) | undefined;
9172
+ orientation?: import("@byyuurin/ui-kit").MaybeArray<"horizontal" | "vertical"> | undefined;
9173
+ title?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
9150
9174
  } & {
9151
9175
  class?: {
9152
9176
  root?: import("@byyuurin/ui-kit").ClassValue;
@@ -9162,8 +9186,8 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
9162
9186
  } | undefined;
9163
9187
  className?: never;
9164
9188
  })[] | ({
9165
- orientation?: ("horizontal" | "vertical" | ("horizontal" | "vertical")[]) | undefined;
9166
- title?: (boolean | boolean[]) | undefined;
9189
+ orientation?: import("@byyuurin/ui-kit").MaybeArray<"horizontal" | "vertical"> | undefined;
9190
+ title?: import("@byyuurin/ui-kit").MaybeArray<boolean> | undefined;
9167
9191
  } & {
9168
9192
  class?: never;
9169
9193
  className?: {
@@ -9185,7 +9209,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
9185
9209
  } | undefined;
9186
9210
  } | undefined;
9187
9211
  toastProvider?: {
9188
- slots?: {
9212
+ parts?: {
9189
9213
  viewport?: string | undefined;
9190
9214
  base?: string | undefined;
9191
9215
  } | undefined;
@@ -9266,7 +9290,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
9266
9290
  } | undefined;
9267
9291
  } | undefined;
9268
9292
  tooltip?: {
9269
- slots?: {
9293
+ parts?: {
9270
9294
  content?: string | undefined;
9271
9295
  arrow?: string | undefined;
9272
9296
  text?: string | undefined;
@@ -9281,7 +9305,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
9281
9305
  } | undefined;
9282
9306
  } | undefined;
9283
9307
  compoundVariants?: ({
9284
- [x: string]: (string | number | (string | number)[]) | undefined;
9308
+ [x: string]: import("@byyuurin/ui-kit").MaybeArray<string | number> | undefined;
9285
9309
  } & {
9286
9310
  class?: {
9287
9311
  content?: import("@byyuurin/ui-kit").ClassValue;
@@ -9290,7 +9314,7 @@ export declare const InjectionKeyThemeExtension: import("vue").InjectionKey<Mayb
9290
9314
  } | undefined;
9291
9315
  className?: never;
9292
9316
  })[] | ({
9293
- [x: string]: (string | number | (string | number)[]) | undefined;
9317
+ [x: string]: import("@byyuurin/ui-kit").MaybeArray<string | number> | undefined;
9294
9318
  } & {
9295
9319
  class?: never;
9296
9320
  className?: {