@indielayer/ui 1.18.0 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (863) hide show
  1. package/docs/assets/css/hljs.css +0 -1
  2. package/docs/assets/css/tailwind.css +35 -10
  3. package/docs/components/common/CodePreview.vue +1 -1
  4. package/docs/components/common/CodeSnippet.vue +30 -18
  5. package/docs/components/common/DocsHero.vue +3 -3
  6. package/docs/components/common/DocumentPage.vue +29 -27
  7. package/docs/components/common/ExampleBlocks.vue +147 -8
  8. package/docs/components/menu/DocsMenu.vue +3 -1
  9. package/docs/components/toolbar/PreToolbar.vue +1 -1
  10. package/docs/components/toolbar/Toolbar.vue +1 -1
  11. package/docs/components/toolbar/ToolbarColorToggle.vue +1 -1
  12. package/docs/components/toolbar/ToolbarSearch.vue +3 -3
  13. package/docs/main.ts +5 -0
  14. package/docs/pages/colors.vue +11 -19
  15. package/docs/pages/component/button/variants.vue +1 -1
  16. package/docs/pages/component/drawer/index.vue +1 -1
  17. package/docs/pages/component/empty/actions.vue +11 -0
  18. package/docs/pages/component/empty/bordered.vue +7 -0
  19. package/docs/pages/component/empty/index.vue +43 -0
  20. package/docs/pages/component/empty/usage.vue +6 -0
  21. package/docs/pages/component/form/usage.vue +36 -0
  22. package/docs/pages/component/formGroup/index.vue +1 -1
  23. package/docs/pages/component/icon/formats.vue +65 -0
  24. package/docs/pages/component/icon/index.vue +11 -4
  25. package/docs/pages/component/icon/usage.vue +52 -4
  26. package/docs/pages/component/image/index.vue +16 -2
  27. package/docs/pages/component/image/sizing.vue +42 -0
  28. package/docs/pages/component/image/states.vue +45 -0
  29. package/docs/pages/component/image/usage.vue +9 -6
  30. package/docs/pages/component/infiniteLoader/composable.vue +7 -5
  31. package/docs/pages/component/infiniteLoader/usage.vue +7 -5
  32. package/docs/pages/component/input/index.vue +1 -1
  33. package/docs/pages/component/input/variants.vue +11 -0
  34. package/docs/pages/component/inputGroup/index.vue +43 -0
  35. package/docs/pages/component/inputGroup/mixed.vue +18 -0
  36. package/docs/pages/component/inputGroup/usage.vue +20 -0
  37. package/docs/pages/component/inputGroup/validation.vue +33 -0
  38. package/docs/pages/component/radio/index.vue +23 -9
  39. package/docs/pages/component/radio/payment-method.vue +28 -0
  40. package/docs/pages/component/radio/radio-button-form-group.vue +28 -0
  41. package/docs/pages/component/radio/radio-button.vue +26 -0
  42. package/docs/pages/component/select/multiple.vue +2 -2
  43. package/docs/pages/component/skeleton/usage.vue +1 -1
  44. package/docs/pages/component/stepper/index.vue +9 -2
  45. package/docs/pages/component/stepper/usage.vue +56 -12
  46. package/docs/pages/component/stepper/wizard.vue +126 -0
  47. package/docs/pages/component/table/index.vue +1 -1
  48. package/docs/pages/component/table/states.vue +5 -3
  49. package/docs/pages/component/table/virtual.vue +1 -1
  50. package/docs/pages/component/tooltip/content.vue +11 -0
  51. package/docs/pages/component/tooltip/index.vue +30 -2
  52. package/docs/pages/component/tooltip/placement.vue +18 -0
  53. package/docs/pages/component/tooltip/states.vue +5 -0
  54. package/docs/pages/component/tooltip/toggle-tip.vue +6 -0
  55. package/docs/pages/component/tooltip/usage.vue +8 -9
  56. package/docs/pages/component/virtualGrid/usage.vue +5 -2
  57. package/docs/pages/component/virtualList/dynamicHeight.vue +8 -8
  58. package/docs/pages/component/virtualList/usage.vue +5 -2
  59. package/docs/pages/index.vue +30 -33
  60. package/docs/search/components.json +1 -1
  61. package/docs/search/index.json +1 -1
  62. package/docs/utils/shikiHighlighter.ts +22 -0
  63. package/exports/nuxt.mjs +1 -1
  64. package/exports/nuxt.plugin.js +1 -0
  65. package/exports/tailwind.css +74 -0
  66. package/lib/_virtual/_plugin-vue_export-helper.js +7 -8
  67. package/lib/_virtual/_rolldown/runtime.js +17 -0
  68. package/lib/common/colors.js +370 -19
  69. package/lib/common/icons.d.ts +1 -0
  70. package/lib/common/icons.js +4 -22
  71. package/lib/common/inputGroupRadius.d.ts +2 -0
  72. package/lib/common/inputGroupRadius.js +6 -0
  73. package/lib/common/props.d.ts +27 -0
  74. package/lib/common/props.js +18 -0
  75. package/lib/common/utils.js +17 -24
  76. package/lib/componentDefaults.d.ts +18 -0
  77. package/lib/components/accordion/Accordion.js +5 -0
  78. package/lib/components/accordion/Accordion.vue.d.ts +3 -4
  79. package/lib/components/accordion/Accordion.vue_vue_type_script_setup_true_lang.js +37 -0
  80. package/lib/components/accordion/AccordionItem.js +5 -0
  81. package/lib/components/accordion/AccordionItem.vue.d.ts +3 -4
  82. package/lib/components/accordion/AccordionItem.vue_vue_type_script_setup_true_lang.js +138 -0
  83. package/lib/components/accordion/theme/Accordion.base.theme.js +4 -8
  84. package/lib/components/accordion/theme/Accordion.carbon.theme.js +4 -4
  85. package/lib/components/accordion/theme/AccordionItem.base.theme.js +14 -16
  86. package/lib/components/accordion/theme/AccordionItem.carbon.theme.js +4 -4
  87. package/lib/components/alert/Alert.js +6 -0
  88. package/lib/components/alert/Alert.vue.d.ts +12 -16
  89. package/lib/components/alert/Alert.vue_vue_type_script_setup_true_lang.js +54 -0
  90. package/lib/components/alert/Alert.vue_vue_type_style_index_0_lang.module.js +6 -0
  91. package/lib/components/alert/theme/Alert.base.theme.js +38 -40
  92. package/lib/components/alert/theme/Alert.carbon.theme.js +38 -40
  93. package/lib/components/avatar/Avatar.js +6 -0
  94. package/lib/components/avatar/Avatar.vue.d.ts +6 -8
  95. package/lib/components/avatar/Avatar.vue_vue_type_script_setup_true_lang.js +66 -0
  96. package/lib/components/avatar/Avatar.vue_vue_type_style_index_0_lang.module.js +3 -0
  97. package/lib/components/avatar/theme/Avatar.base.theme.js +17 -21
  98. package/lib/components/avatar/theme/Avatar.carbon.theme.js +4 -4
  99. package/lib/components/badge/Badge.js +5 -0
  100. package/lib/components/badge/Badge.vue.d.ts +6 -8
  101. package/lib/components/badge/Badge.vue_vue_type_script_setup_true_lang.js +76 -0
  102. package/lib/components/badge/theme/Badge.base.theme.js +9 -11
  103. package/lib/components/badge/theme/Badge.carbon.theme.js +4 -4
  104. package/lib/components/breadcrumbs/Breadcrumbs.js +5 -0
  105. package/lib/components/breadcrumbs/Breadcrumbs.vue.d.ts +6 -8
  106. package/lib/components/breadcrumbs/Breadcrumbs.vue_vue_type_script_setup_true_lang.js +62 -0
  107. package/lib/components/breadcrumbs/theme/Breadcrumbs.base.theme.js +8 -10
  108. package/lib/components/breadcrumbs/theme/Breadcrumbs.carbon.theme.js +7 -9
  109. package/lib/components/button/Button.js +6 -0
  110. package/lib/components/button/Button.vue.d.ts +23 -28
  111. package/lib/components/button/Button.vue_vue_type_script_setup_true_lang.js +139 -0
  112. package/lib/components/button/Button.vue_vue_type_style_index_0_scoped_4402fde2_lang.module.js +6 -0
  113. package/lib/components/button/ButtonGroup.js +6 -0
  114. package/lib/components/button/ButtonGroup.vue.d.ts +21 -20
  115. package/lib/components/button/ButtonGroup.vue_vue_type_script_setup_true_lang.js +45 -0
  116. package/lib/components/button/ButtonGroup.vue_vue_type_style_index_0_lang.module.js +7 -0
  117. package/lib/components/button/theme/Button.base.theme.js +139 -140
  118. package/lib/components/button/theme/Button.carbon.theme.js +136 -137
  119. package/lib/components/button/theme/ButtonGroup.base.theme.js +4 -8
  120. package/lib/components/button/theme/ButtonGroup.carbon.theme.js +4 -8
  121. package/lib/components/card/Card.js +5 -0
  122. package/lib/components/card/Card.vue.d.ts +3 -4
  123. package/lib/components/card/Card.vue_vue_type_script_setup_true_lang.js +26 -0
  124. package/lib/components/card/theme/Card.base.theme.js +4 -8
  125. package/lib/components/card/theme/Card.carbon.theme.js +4 -4
  126. package/lib/components/carousel/Carousel.js +5 -0
  127. package/lib/components/carousel/Carousel.vue.d.ts +3 -4
  128. package/lib/components/carousel/Carousel.vue_vue_type_script_setup_true_lang.js +91 -0
  129. package/lib/components/carousel/CarouselSlide.js +6 -0
  130. package/lib/components/carousel/CarouselSlide.vue_vue_type_script_setup_true_lang.js +26 -0
  131. package/lib/components/carousel/CarouselSlide.vue_vue_type_style_index_0_scoped_e90d2127_lang.module.js +4 -0
  132. package/lib/components/carousel/theme/Carousel.base.theme.js +14 -16
  133. package/lib/components/carousel/theme/Carousel.carbon.theme.js +4 -4
  134. package/lib/components/carousel/theme/CarouselSlide.base.theme.js +4 -8
  135. package/lib/components/carousel/theme/CarouselSlide.carbon.theme.js +4 -4
  136. package/lib/components/checkbox/Checkbox.js +6 -0
  137. package/lib/components/checkbox/Checkbox.vue.d.ts +3 -4
  138. package/lib/components/checkbox/Checkbox.vue_vue_type_script_setup_true_lang.js +129 -0
  139. package/lib/components/checkbox/Checkbox.vue_vue_type_style_index_0_lang.module.js +4 -0
  140. package/lib/components/checkbox/theme/Checkbox.base.theme.js +58 -58
  141. package/lib/components/checkbox/theme/Checkbox.carbon.theme.js +58 -58
  142. package/lib/components/container/Container.js +5 -0
  143. package/lib/components/container/Container.vue_vue_type_script_setup_true_lang.js +28 -0
  144. package/lib/components/container/theme/Container.base.theme.js +7 -11
  145. package/lib/components/container/theme/Container.carbon.theme.js +4 -4
  146. package/lib/components/datepicker/Datepicker.js +6 -0
  147. package/lib/components/datepicker/Datepicker.vue.d.ts +9 -5
  148. package/lib/components/datepicker/Datepicker.vue_vue_type_script_setup_true_lang.js +638 -0
  149. package/lib/components/datepicker/theme/Datepicker.base.theme.js +26 -61
  150. package/lib/components/datepicker/theme/Datepicker.carbon.theme.js +4 -4
  151. package/lib/components/divider/Divider.js +5 -0
  152. package/lib/components/divider/Divider.vue.d.ts +4 -6
  153. package/lib/components/divider/Divider.vue_vue_type_script_setup_true_lang.js +43 -0
  154. package/lib/components/divider/theme/Divider.base.theme.js +8 -10
  155. package/lib/components/divider/theme/Divider.carbon.theme.js +4 -4
  156. package/lib/components/drawer/Drawer.js +5 -0
  157. package/lib/components/drawer/Drawer.vue_vue_type_script_setup_true_lang.js +149 -0
  158. package/lib/components/drawer/theme/Drawer.base.theme.js +7 -9
  159. package/lib/components/drawer/theme/Drawer.carbon.theme.js +4 -4
  160. package/lib/components/empty/Empty.js +5 -0
  161. package/lib/components/empty/Empty.vue.d.ts +62 -0
  162. package/lib/components/empty/Empty.vue_vue_type_script_setup_true_lang.js +67 -0
  163. package/lib/components/empty/index.d.ts +2 -0
  164. package/lib/components/empty/theme/Empty.base.theme.d.ts +3 -0
  165. package/lib/components/empty/theme/Empty.base.theme.js +20 -0
  166. package/lib/components/empty/theme/Empty.carbon.theme.d.ts +3 -0
  167. package/lib/components/empty/theme/Empty.carbon.theme.js +5 -0
  168. package/lib/components/form/Form.js +5 -0
  169. package/lib/components/form/Form.vue_vue_type_script_setup_true_lang.js +97 -0
  170. package/lib/components/form/theme/Form.base.theme.js +10 -12
  171. package/lib/components/form/theme/Form.carbon.theme.js +10 -12
  172. package/lib/components/formGroup/FormGroup.js +5 -0
  173. package/lib/components/formGroup/FormGroup.vue.d.ts +9 -2
  174. package/lib/components/formGroup/FormGroup.vue_vue_type_script_setup_true_lang.js +91 -0
  175. package/lib/components/formGroup/theme/FormGroup.base.theme.js +7 -11
  176. package/lib/components/formGroup/theme/FormGroup.carbon.theme.js +7 -11
  177. package/lib/components/icon/Icon.js +5 -0
  178. package/lib/components/icon/Icon.vue.d.ts +3 -4
  179. package/lib/components/icon/Icon.vue_vue_type_script_setup_true_lang.js +85 -0
  180. package/lib/components/icon/theme/Icon.base.theme.js +4 -11
  181. package/lib/components/icon/theme/Icon.carbon.theme.js +4 -11
  182. package/lib/components/image/Image.js +5 -0
  183. package/lib/components/image/Image.vue_vue_type_script_setup_true_lang.js +25 -0
  184. package/lib/components/image/theme/Image.base.theme.js +4 -8
  185. package/lib/components/image/theme/Image.carbon.theme.js +4 -4
  186. package/lib/components/index.d.ts +3 -0
  187. package/lib/components/index.js +128 -120
  188. package/lib/components/input/Input.js +5 -0
  189. package/lib/components/input/Input.vue.d.ts +17 -17
  190. package/lib/components/input/Input.vue_vue_type_script_setup_true_lang.js +238 -0
  191. package/lib/components/input/theme/Input.base.theme.js +22 -16
  192. package/lib/components/input/theme/Input.carbon.theme.js +21 -16
  193. package/lib/components/inputFooter/InputFooter.js +5 -0
  194. package/lib/components/inputFooter/InputFooter.vue.d.ts +4 -6
  195. package/lib/components/inputFooter/InputFooter.vue_vue_type_script_setup_true_lang.js +37 -0
  196. package/lib/components/inputFooter/theme/InputFooter.base.theme.js +10 -12
  197. package/lib/components/inputFooter/theme/InputFooter.carbon.theme.js +10 -12
  198. package/lib/components/inputGroup/InputGroup.js +5 -0
  199. package/lib/components/inputGroup/InputGroup.vue.d.ts +164 -0
  200. package/lib/components/inputGroup/InputGroup.vue_vue_type_script_setup_true_lang.js +120 -0
  201. package/lib/components/inputGroup/index.d.ts +2 -0
  202. package/lib/components/inputGroup/theme/InputGroup.base.theme.d.ts +3 -0
  203. package/lib/components/inputGroup/theme/InputGroup.base.theme.js +4 -0
  204. package/lib/components/inputGroup/theme/InputGroup.carbon.theme.d.ts +3 -0
  205. package/lib/components/inputGroup/theme/InputGroup.carbon.theme.js +5 -0
  206. package/lib/components/label/Label.js +5 -0
  207. package/lib/components/label/Label.vue.d.ts +8 -5
  208. package/lib/components/label/Label.vue_vue_type_script_setup_true_lang.js +59 -0
  209. package/lib/components/label/theme/Label.base.theme.js +13 -15
  210. package/lib/components/label/theme/Label.carbon.theme.js +10 -12
  211. package/lib/components/link/Link.js +6 -0
  212. package/lib/components/link/Link.vue.d.ts +9 -12
  213. package/lib/components/link/Link.vue_vue_type_script_setup_true_lang.js +47 -0
  214. package/lib/components/link/Link.vue_vue_type_style_index_0_scoped_8e0e4d08_lang.module.js +6 -0
  215. package/lib/components/link/theme/Link.base.theme.js +18 -24
  216. package/lib/components/link/theme/Link.carbon.theme.js +18 -24
  217. package/lib/components/loader/Loader.js +5 -0
  218. package/lib/components/loader/Loader.vue_vue_type_script_setup_true_lang.js +61 -0
  219. package/lib/components/loader/theme/Loader.base.theme.js +9 -11
  220. package/lib/components/loader/theme/Loader.carbon.theme.js +9 -11
  221. package/lib/components/menu/Menu.js +5 -0
  222. package/lib/components/menu/Menu.vue.d.ts +6 -8
  223. package/lib/components/menu/Menu.vue_vue_type_script_setup_true_lang.js +178 -0
  224. package/lib/components/menu/MenuItem.js +6 -0
  225. package/lib/components/menu/MenuItem.vue.d.ts +6 -8
  226. package/lib/components/menu/MenuItem.vue_vue_type_script_setup_true_lang.js +149 -0
  227. package/lib/components/menu/MenuItem.vue_vue_type_style_index_0_scoped_2a6b7341_lang.module.js +7 -0
  228. package/lib/components/menu/theme/Menu.base.theme.js +4 -8
  229. package/lib/components/menu/theme/Menu.carbon.theme.js +4 -4
  230. package/lib/components/menu/theme/MenuItem.base.theme.js +71 -75
  231. package/lib/components/menu/theme/MenuItem.carbon.theme.js +4 -4
  232. package/lib/components/modal/Modal.js +5 -0
  233. package/lib/components/modal/Modal.vue_vue_type_script_setup_true_lang.js +194 -0
  234. package/lib/components/modal/theme/Modal.base.theme.js +25 -27
  235. package/lib/components/modal/theme/Modal.carbon.theme.js +27 -29
  236. package/lib/components/notifications/Notifications.js +5 -0
  237. package/lib/components/notifications/Notifications.vue_vue_type_script_setup_true_lang.js +234 -0
  238. package/lib/components/notifications/theme/Notifications.base.theme.js +8 -10
  239. package/lib/components/notifications/theme/Notifications.carbon.theme.js +8 -10
  240. package/lib/components/pagination/Pagination.js +5 -0
  241. package/lib/components/pagination/Pagination.vue.d.ts +3 -4
  242. package/lib/components/pagination/Pagination.vue_vue_type_script_setup_true_lang.js +152 -0
  243. package/lib/components/pagination/PaginationItem.js +5 -0
  244. package/lib/components/pagination/PaginationItem.vue.d.ts +3 -4
  245. package/lib/components/pagination/PaginationItem.vue_vue_type_script_setup_true_lang.js +44 -0
  246. package/lib/components/pagination/theme/Pagination.base.theme.js +12 -12
  247. package/lib/components/pagination/theme/Pagination.carbon.theme.js +4 -4
  248. package/lib/components/pagination/theme/PaginationItem.base.theme.js +4 -8
  249. package/lib/components/pagination/theme/PaginationItem.carbon.theme.js +4 -4
  250. package/lib/components/popover/Popover.js +6 -0
  251. package/lib/components/popover/Popover.vue_vue_type_script_setup_true_lang.js +189 -0
  252. package/lib/components/popover/PopoverContainer.js +5 -0
  253. package/lib/components/popover/PopoverContainer.vue_vue_type_script_setup_true_lang.js +22 -0
  254. package/lib/components/popover/theme/Popover.base.theme.js +7 -9
  255. package/lib/components/popover/theme/Popover.carbon.theme.js +4 -4
  256. package/lib/components/popover/theme/PopoverContainer.base.theme.js +4 -8
  257. package/lib/components/popover/theme/PopoverContainer.carbon.theme.js +4 -8
  258. package/lib/components/progress/Progress.js +5 -0
  259. package/lib/components/progress/Progress.vue.d.ts +6 -8
  260. package/lib/components/progress/Progress.vue_vue_type_script_setup_true_lang.js +38 -0
  261. package/lib/components/progress/theme/Progress.base.theme.js +13 -17
  262. package/lib/components/progress/theme/Progress.carbon.theme.js +4 -4
  263. package/lib/components/qrCode/QrCode.js +5 -0
  264. package/lib/components/qrCode/QrCode.vue_vue_type_script_setup_true_lang.js +79 -0
  265. package/lib/components/qrCode/qrcodegen.js +766 -571
  266. package/lib/components/qrCode/theme/QrCode.base.theme.js +4 -8
  267. package/lib/components/qrCode/theme/QrCode.carbon.theme.js +4 -4
  268. package/lib/components/radio/Radio.js +6 -0
  269. package/lib/components/radio/Radio.vue.d.ts +3 -4
  270. package/lib/components/radio/Radio.vue_vue_type_script_setup_true_lang.js +116 -0
  271. package/lib/components/radio/Radio.vue_vue_type_style_index_0_lang.module.js +7 -0
  272. package/lib/components/radio/theme/Radio.base.theme.js +69 -69
  273. package/lib/components/radio/theme/Radio.carbon.theme.js +63 -63
  274. package/lib/components/radioButton/RadioButton.js +6 -0
  275. package/lib/components/radioButton/RadioButton.vue.d.ts +182 -0
  276. package/lib/components/radioButton/RadioButton.vue_vue_type_script_setup_true_lang.js +83 -0
  277. package/lib/components/radioButton/RadioButton.vue_vue_type_style_index_0_lang.module.js +6 -0
  278. package/lib/components/radioButton/index.d.ts +2 -0
  279. package/lib/components/radioButton/theme/RadioButton.base.theme.d.ts +3 -0
  280. package/lib/components/radioButton/theme/RadioButton.base.theme.js +110 -0
  281. package/lib/components/radioButton/theme/RadioButton.carbon.theme.d.ts +3 -0
  282. package/lib/components/radioButton/theme/RadioButton.carbon.theme.js +15 -0
  283. package/lib/components/scroll/Scroll.js +6 -0
  284. package/lib/components/scroll/Scroll.vue.d.ts +9 -12
  285. package/lib/components/scroll/Scroll.vue_vue_type_script_setup_true_lang.js +48 -0
  286. package/lib/components/scroll/Scroll.vue_vue_type_style_index_0_lang.module.js +12 -0
  287. package/lib/components/scroll/theme/Scroll.base.theme.js +4 -8
  288. package/lib/components/scroll/theme/Scroll.carbon.theme.js +4 -4
  289. package/lib/components/select/Select.js +5 -0
  290. package/lib/components/select/Select.vue.d.ts +96 -589
  291. package/lib/components/select/Select.vue_vue_type_script_setup_true_lang.js +548 -0
  292. package/lib/components/select/theme/Select.base.theme.js +26 -25
  293. package/lib/components/select/theme/Select.carbon.theme.js +23 -23
  294. package/lib/components/skeleton/Skeleton.js +5 -0
  295. package/lib/components/skeleton/Skeleton.vue_vue_type_script_setup_true_lang.js +30 -0
  296. package/lib/components/skeleton/theme/Skeleton.base.theme.js +7 -11
  297. package/lib/components/skeleton/theme/Skeleton.carbon.theme.js +4 -4
  298. package/lib/components/slider/Slider.js +7 -0
  299. package/lib/components/slider/Slider.vue_vue_type_script_setup_true_lang.js +106 -0
  300. package/lib/components/slider/theme/Slider.base.theme.js +17 -19
  301. package/lib/components/slider/theme/Slider.carbon.theme.js +4 -4
  302. package/lib/components/spacer/Spacer.js +9 -11
  303. package/lib/components/spinner/Spinner.js +5 -0
  304. package/lib/components/spinner/Spinner.vue_vue_type_script_setup_true_lang.js +23 -0
  305. package/lib/components/stepper/Stepper.js +5 -0
  306. package/lib/components/stepper/Stepper.vue.d.ts +137 -32
  307. package/lib/components/stepper/Stepper.vue_vue_type_script_setup_true_lang.js +377 -0
  308. package/lib/components/stepper/index.d.ts +1 -1
  309. package/lib/components/stepper/theme/Stepper.base.theme.js +33 -20
  310. package/lib/components/stepper/theme/Stepper.carbon.theme.js +4 -4
  311. package/lib/components/tab/Tab.js +5 -0
  312. package/lib/components/tab/Tab.vue.d.ts +3 -4
  313. package/lib/components/tab/Tab.vue_vue_type_script_setup_true_lang.js +139 -0
  314. package/lib/components/tab/TabGroup.js +5 -0
  315. package/lib/components/tab/TabGroup.vue.d.ts +6 -8
  316. package/lib/components/tab/TabGroup.vue_vue_type_script_setup_true_lang.js +122 -0
  317. package/lib/components/tab/theme/Tab.base.theme.js +13 -15
  318. package/lib/components/tab/theme/Tab.carbon.theme.js +16 -18
  319. package/lib/components/tab/theme/TabGroup.base.theme.js +30 -30
  320. package/lib/components/tab/theme/TabGroup.carbon.theme.js +30 -30
  321. package/lib/components/table/Table.js +5 -0
  322. package/lib/components/table/Table.vue.d.ts +49 -304
  323. package/lib/components/table/Table.vue_vue_type_script_setup_true_lang.js +385 -0
  324. package/lib/components/table/TableBody.js +9 -14
  325. package/lib/components/table/TableCell.js +5 -0
  326. package/lib/components/table/TableCell.vue.d.ts +6 -8
  327. package/lib/components/table/TableCell.vue_vue_type_script_setup_true_lang.js +81 -0
  328. package/lib/components/table/TableHead.js +5 -0
  329. package/lib/components/table/TableHead.vue.d.ts +4 -6
  330. package/lib/components/table/TableHead.vue_vue_type_script_setup_true_lang.js +17 -0
  331. package/lib/components/table/TableHeader.js +5 -0
  332. package/lib/components/table/TableHeader.vue.d.ts +3 -4
  333. package/lib/components/table/TableHeader.vue_vue_type_script_setup_true_lang.js +78 -0
  334. package/lib/components/table/TableRow.js +5 -0
  335. package/lib/components/table/TableRow.vue.d.ts +9 -12
  336. package/lib/components/table/TableRow.vue_vue_type_script_setup_true_lang.js +39 -0
  337. package/lib/components/table/theme/Table.base.theme.js +11 -13
  338. package/lib/components/table/theme/Table.carbon.theme.js +11 -13
  339. package/lib/components/table/theme/TableCell.base.theme.js +7 -11
  340. package/lib/components/table/theme/TableCell.carbon.theme.js +7 -11
  341. package/lib/components/table/theme/TableHead.base.theme.js +10 -12
  342. package/lib/components/table/theme/TableHead.carbon.theme.js +10 -12
  343. package/lib/components/table/theme/TableHeader.base.theme.js +14 -16
  344. package/lib/components/table/theme/TableHeader.carbon.theme.js +10 -12
  345. package/lib/components/table/theme/TableRow.base.theme.js +7 -11
  346. package/lib/components/table/theme/TableRow.carbon.theme.js +7 -11
  347. package/lib/components/tag/Tag.js +5 -0
  348. package/lib/components/tag/Tag.vue.d.ts +12 -16
  349. package/lib/components/tag/Tag.vue_vue_type_script_setup_true_lang.js +62 -0
  350. package/lib/components/tag/theme/Tag.base.theme.js +21 -23
  351. package/lib/components/tag/theme/Tag.carbon.theme.js +21 -23
  352. package/lib/components/textarea/Textarea.js +5 -0
  353. package/lib/components/textarea/Textarea.vue.d.ts +26 -29
  354. package/lib/components/textarea/Textarea.vue_vue_type_script_setup_true_lang.js +197 -0
  355. package/lib/components/textarea/theme/Textarea.base.theme.js +17 -13
  356. package/lib/components/textarea/theme/Textarea.carbon.theme.js +16 -13
  357. package/lib/components/themeProvider/ThemeProvider.js +5 -0
  358. package/lib/components/themeProvider/ThemeProvider.vue_vue_type_script_setup_true_lang.js +15 -0
  359. package/lib/components/toggle/Toggle.js +5 -0
  360. package/lib/components/toggle/Toggle.vue.d.ts +3 -4
  361. package/lib/components/toggle/Toggle.vue_vue_type_script_setup_true_lang.js +101 -0
  362. package/lib/components/toggle/theme/Toggle.base.theme.js +23 -28
  363. package/lib/components/toggle/theme/Toggle.carbon.theme.js +4 -4
  364. package/lib/components/tooltip/ToggleTip.js +5 -0
  365. package/lib/components/tooltip/ToggleTip.vue_vue_type_script_setup_true_lang.js +25 -0
  366. package/lib/components/tooltip/Tooltip.js +5 -0
  367. package/lib/components/tooltip/Tooltip.vue_vue_type_script_setup_true_lang.js +105 -0
  368. package/lib/components/tooltip/theme/Tooltip.base.theme.js +4 -8
  369. package/lib/components/tooltip/theme/Tooltip.carbon.theme.js +4 -4
  370. package/lib/components/upload/Upload.js +5 -0
  371. package/lib/components/upload/Upload.vue.d.ts +23 -9
  372. package/lib/components/upload/Upload.vue_vue_type_script_setup_true_lang.js +261 -0
  373. package/lib/components/upload/theme/Upload.base.theme.js +4 -8
  374. package/lib/components/upload/theme/Upload.carbon.theme.js +4 -4
  375. package/lib/composables/index.d.ts +1 -0
  376. package/lib/composables/keys.d.ts +2 -0
  377. package/lib/composables/keys.js +4 -12
  378. package/lib/composables/resolveComponentDefaults.d.ts +4 -0
  379. package/lib/composables/resolveComponentDefaults.js +15 -0
  380. package/lib/composables/useCSS.js +29 -25
  381. package/lib/composables/useColors.js +44 -51
  382. package/lib/composables/useCommon.js +15 -17
  383. package/lib/composables/useFocusTrap.js +50 -53
  384. package/lib/composables/useInputtable.d.ts +12 -2
  385. package/lib/composables/useInputtable.js +135 -113
  386. package/lib/composables/useInteractive.js +14 -20
  387. package/lib/composables/useNotifications.js +8 -8
  388. package/lib/composables/useTheme.js +44 -56
  389. package/lib/composables/useVirtualList.d.ts +1 -2
  390. package/lib/composables/useVirtualList.js +120 -115
  391. package/lib/create.d.ts +2 -0
  392. package/lib/create.js +21 -24
  393. package/lib/index.d.ts +1 -0
  394. package/lib/index.js +87 -169
  395. package/lib/index.umd.js +57 -41
  396. package/lib/install.js +14 -18
  397. package/lib/node_modules/.pnpm/@floating-ui_core@1.5.3/node_modules/@floating-ui/core/dist/floating-ui.core.js +321 -489
  398. package/lib/node_modules/.pnpm/@floating-ui_dom@1.1.1/node_modules/@floating-ui/dom/dist/floating-ui.dom.browser.min.js +288 -215
  399. package/lib/node_modules/.pnpm/@floating-ui_utils@0.2.1/node_modules/@floating-ui/utils/dist/floating-ui.utils.js +99 -115
  400. package/lib/node_modules/.pnpm/@vuepic_vue-datepicker@11.0.2_vue@3.5.34_typescript@5.2.2_/node_modules/@vuepic/vue-datepicker/dist/vue-datepicker.js +5380 -0
  401. package/lib/node_modules/.pnpm/@vueuse_core@11.1.0_vue@3.5.34_typescript@5.2.2_/node_modules/@vueuse/core/index.js +407 -0
  402. package/lib/node_modules/.pnpm/@vueuse_shared@11.1.0_vue@3.5.34_typescript@5.2.2_/node_modules/@vueuse/shared/index.js +75 -0
  403. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/_lib/addLeadingZeros.js +5 -6
  404. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/_lib/defaultOptions.js +6 -6
  405. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/_lib/format/formatters.js +378 -513
  406. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/_lib/format/lightFormatters.js +42 -58
  407. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/_lib/format/longFormatters.js +39 -51
  408. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/_lib/getTimezoneOffsetInMilliseconds.js +7 -17
  409. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/_lib/normalizeDates.js +7 -10
  410. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/_lib/normalizeInterval.js +10 -7
  411. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/_lib/protectedTokens.js +19 -17
  412. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/add.js +10 -19
  413. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/addDays.js +8 -9
  414. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/addHours.js +7 -8
  415. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/addMilliseconds.js +7 -8
  416. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/addMonths.js +11 -20
  417. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/addQuarters.js +6 -7
  418. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/addYears.js +6 -7
  419. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/compareAsc.js +7 -8
  420. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/constants.js +6 -9
  421. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/constructFrom.js +6 -7
  422. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/differenceInCalendarDays.js +10 -15
  423. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/differenceInCalendarYears.js +7 -12
  424. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/differenceInYears.js +11 -16
  425. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/eachDayOfInterval.js +14 -19
  426. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/eachQuarterOfInterval.js +13 -19
  427. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/endOfQuarter.js +7 -8
  428. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/endOfWeek.js +8 -10
  429. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/endOfYear.js +7 -8
  430. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/format.js +57 -58
  431. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/getDay.js +6 -7
  432. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/getDayOfYear.js +9 -10
  433. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/getDaysInMonth.js +8 -9
  434. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/getDefaultOptions.js +6 -7
  435. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/getHours.js +6 -7
  436. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/getISODay.js +7 -8
  437. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/getISOWeek.js +10 -11
  438. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/getISOWeekYear.js +13 -14
  439. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/getMinutes.js +6 -7
  440. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/getMonth.js +6 -7
  441. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/getQuarter.js +7 -8
  442. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/getSeconds.js +6 -7
  443. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/getWeek.js +10 -11
  444. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/getWeekYear.js +14 -16
  445. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/getYear.js +6 -7
  446. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/isAfter.js +6 -7
  447. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/isBefore.js +6 -7
  448. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/isDate.js +5 -6
  449. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/isEqual.js +6 -7
  450. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/isSameQuarter.js +8 -13
  451. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/isValid.js +7 -8
  452. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/locale/_lib/buildFormatLongFn.js +8 -8
  453. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/locale/_lib/buildLocalizeFn.js +16 -17
  454. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/locale/_lib/buildMatchFn.js +19 -28
  455. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/locale/_lib/buildMatchPatternFn.js +17 -16
  456. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/locale/en-US/_lib/formatDistance.js +68 -69
  457. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/locale/en-US/_lib/formatLong.js +31 -32
  458. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/locale/en-US/_lib/formatRelative.js +11 -11
  459. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/locale/en-US/_lib/localize.js +200 -153
  460. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/locale/en-US/_lib/match.js +123 -109
  461. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/locale/en-US.js +17 -18
  462. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/Parser.js +15 -21
  463. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/Setter.js +29 -40
  464. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/constants.js +29 -48
  465. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/AMPMMidnightParser.js +45 -48
  466. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/AMPMParser.js +45 -48
  467. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/DateParser.js +63 -60
  468. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/DayOfYearParser.js +40 -50
  469. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/DayParser.js +61 -44
  470. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/DayPeriodParser.js +43 -48
  471. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/EraParser.js +24 -29
  472. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/ExtendedYearParser.js +26 -20
  473. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/FractionOfSecondParser.js +14 -21
  474. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/Hour0To11Parser.js +28 -31
  475. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/Hour0to23Parser.js +30 -31
  476. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/Hour1To24Parser.js +31 -32
  477. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/Hour1to12Parser.js +29 -32
  478. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/ISODayParser.js +73 -98
  479. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/ISOTimezoneParser.js +27 -47
  480. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/ISOTimezoneWithZParser.js +27 -47
  481. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/ISOWeekParser.js +39 -48
  482. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/ISOWeekYearParser.js +33 -39
  483. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/LocalDayParser.js +76 -73
  484. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/LocalWeekParser.js +38 -47
  485. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/LocalWeekYearParser.js +47 -68
  486. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/MinuteParser.js +22 -31
  487. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/MonthParser.js +58 -70
  488. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/QuarterParser.js +57 -69
  489. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/SecondParser.js +22 -31
  490. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/StandAloneLocalDayParser.js +76 -73
  491. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/StandAloneMonthParser.js +58 -70
  492. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/StandAloneQuarterParser.js +57 -69
  493. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/TimestampMillisecondsParser.js +14 -20
  494. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/TimestampSecondsParser.js +14 -20
  495. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/YearParser.js +42 -48
  496. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers.js +66 -66
  497. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/utils.js +64 -93
  498. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse.js +61 -88
  499. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/set.js +9 -10
  500. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/setDay.js +9 -11
  501. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/setHours.js +7 -8
  502. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/setISODay.js +9 -10
  503. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/setISOWeek.js +8 -9
  504. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/setMilliseconds.js +7 -8
  505. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/setMinutes.js +7 -8
  506. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/setMonth.js +11 -12
  507. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/setSeconds.js +7 -8
  508. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/setWeek.js +8 -9
  509. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/setYear.js +8 -9
  510. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/startOfDay.js +7 -8
  511. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/startOfISOWeek.js +9 -7
  512. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/startOfISOWeekYear.js +9 -10
  513. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/startOfMonth.js +7 -8
  514. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/startOfQuarter.js +7 -8
  515. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/startOfWeek.js +8 -10
  516. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/startOfWeekYear.js +10 -12
  517. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/startOfYear.js +7 -8
  518. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/sub.js +9 -18
  519. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/subDays.js +6 -7
  520. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/subMonths.js +6 -7
  521. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/subYears.js +6 -7
  522. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/toDate.js +6 -7
  523. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/transpose.js +9 -16
  524. package/lib/node_modules/.pnpm/floating-vue@5.2.2_@nuxt_kit@4.4.6_magicast@0.5.3__vue@3.5.34_typescript@5.2.2_/node_modules/floating-vue/dist/floating-vue.js +1243 -0
  525. package/lib/node_modules/.pnpm/vue-demi@0.14.10_vue@3.5.34_typescript@5.2.2_/node_modules/vue-demi/lib/index.js +28 -0
  526. package/lib/nuxt.mjs +1 -1
  527. package/lib/nuxt.plugin.js +1 -0
  528. package/lib/tailwind.css +74 -0
  529. package/lib/theme.d.ts +4 -1
  530. package/lib/theme.js +12 -13
  531. package/lib/themes/base/components.d.ts +3 -0
  532. package/lib/themes/base/components.js +118 -108
  533. package/lib/themes/base/index.js +10 -10
  534. package/lib/themes/base/styles.d.ts +1 -1
  535. package/lib/themes/base/styles.js +4 -91
  536. package/lib/themes/carbon/components.d.ts +3 -0
  537. package/lib/themes/carbon/components.js +118 -108
  538. package/lib/themes/carbon/index.js +23 -13
  539. package/lib/themes/carbon/styles.d.ts +1 -1
  540. package/lib/themes/carbon/styles.js +4 -87
  541. package/lib/version.d.ts +1 -1
  542. package/lib/version.js +4 -4
  543. package/lib/virtual/components/infiniteLoader/InfiniteLoader.js +5 -0
  544. package/lib/virtual/components/infiniteLoader/InfiniteLoader.vue_vue_type_script_setup_true_lang.js +18 -0
  545. package/lib/virtual/components/virtualGrid/VirtualGrid.js +5 -0
  546. package/lib/virtual/components/virtualGrid/VirtualGrid.vue_vue_type_script_setup_true_lang.js +194 -0
  547. package/lib/virtual/components/virtualList/VirtualList.js +5 -0
  548. package/lib/virtual/components/virtualList/VirtualList.vue_vue_type_script_setup_true_lang.js +139 -0
  549. package/lib/virtual/components/virtualList/isDynamicRowHeight.js +5 -5
  550. package/lib/virtual/components/virtualList/useDynamicRowHeight.js +58 -67
  551. package/lib/virtual/composables/infinite-loader/scanForUnloadedIndices.js +26 -40
  552. package/lib/virtual/composables/infinite-loader/useInfiniteLoader.js +30 -41
  553. package/lib/virtual/core/createCachedBounds.js +40 -54
  554. package/lib/virtual/core/getEstimatedSize.js +11 -21
  555. package/lib/virtual/core/getOffsetForIndex.js +17 -39
  556. package/lib/virtual/core/getStartStopIndices.js +21 -30
  557. package/lib/virtual/core/useCachedBounds.js +10 -16
  558. package/lib/virtual/core/useIsRtl.js +10 -14
  559. package/lib/virtual/core/useItemSize.js +15 -26
  560. package/lib/virtual/core/useVirtualizer.js +145 -170
  561. package/lib/virtual/utils/adjustScrollOffsetForRtl.js +15 -23
  562. package/lib/virtual/utils/assert.js +5 -6
  563. package/lib/virtual/utils/getRTLOffsetType.js +12 -12
  564. package/lib/virtual/utils/getScrollbarSize.js +10 -10
  565. package/lib/virtual/utils/isRtl.js +10 -11
  566. package/lib/virtual/utils/parseNumericStyleValue.js +10 -14
  567. package/lib/virtual/utils/shallowCompare.js +9 -13
  568. package/package.json +20 -22
  569. package/src/common/__tests__/inputGroupRadius.spec.ts +14 -0
  570. package/src/common/icons.ts +1 -0
  571. package/src/common/inputGroupRadius.ts +11 -0
  572. package/src/common/props.ts +34 -0
  573. package/src/componentDefaults.ts +19 -0
  574. package/src/components/accordion/Accordion.vue +3 -1
  575. package/src/components/accordion/AccordionItem.vue +3 -1
  576. package/src/components/alert/Alert.vue +28 -24
  577. package/src/components/avatar/Avatar.vue +5 -3
  578. package/src/components/badge/Badge.vue +7 -3
  579. package/src/components/breadcrumbs/Breadcrumbs.vue +4 -2
  580. package/src/components/button/Button.vue +98 -55
  581. package/src/components/button/ButtonGroup.vue +23 -25
  582. package/src/components/button/theme/Button.base.theme.ts +7 -2
  583. package/src/components/button/theme/Button.carbon.theme.ts +8 -2
  584. package/src/components/card/Card.vue +3 -1
  585. package/src/components/card/theme/Card.base.theme.ts +1 -1
  586. package/src/components/carousel/Carousel.vue +3 -1
  587. package/src/components/carousel/CarouselSlide.vue +1 -1
  588. package/src/components/checkbox/Checkbox.vue +7 -7
  589. package/src/components/checkbox/theme/Checkbox.carbon.theme.ts +1 -1
  590. package/src/components/datepicker/Datepicker.vue +32 -10
  591. package/src/components/divider/Divider.vue +3 -2
  592. package/src/components/divider/theme/Divider.base.theme.ts +2 -2
  593. package/src/components/empty/Empty.vue +86 -0
  594. package/src/components/empty/__tests__/Empty.spec.ts +11 -0
  595. package/src/components/empty/index.ts +2 -0
  596. package/src/components/empty/theme/Empty.base.theme.ts +40 -0
  597. package/src/components/empty/theme/Empty.carbon.theme.ts +7 -0
  598. package/src/components/formGroup/FormGroup.vue +19 -7
  599. package/src/components/formGroup/__tests__/FormGroup.spec.ts +37 -2
  600. package/src/components/formGroup/theme/FormGroup.base.theme.ts +7 -3
  601. package/src/components/formGroup/theme/FormGroup.carbon.theme.ts +7 -3
  602. package/src/components/icon/Icon.vue +3 -1
  603. package/src/components/index.ts +3 -0
  604. package/src/components/input/Input.vue +114 -35
  605. package/src/components/input/__tests__/Input.spec.ts +28 -1
  606. package/src/components/input/theme/Input.base.theme.ts +10 -1
  607. package/src/components/input/theme/Input.carbon.theme.ts +5 -0
  608. package/src/components/inputFooter/InputFooter.vue +3 -1
  609. package/src/components/inputGroup/InputGroup.vue +185 -0
  610. package/src/components/inputGroup/__tests__/InputGroup.spec.ts +104 -0
  611. package/src/components/inputGroup/index.ts +2 -0
  612. package/src/components/inputGroup/theme/InputGroup.base.theme.ts +9 -0
  613. package/src/components/inputGroup/theme/InputGroup.carbon.theme.ts +7 -0
  614. package/src/components/label/Label.vue +23 -3
  615. package/src/components/label/theme/Label.base.theme.ts +2 -2
  616. package/src/components/label/theme/Label.carbon.theme.ts +2 -2
  617. package/src/components/link/Link.vue +34 -29
  618. package/src/components/menu/Menu.vue +4 -2
  619. package/src/components/menu/MenuItem.vue +39 -41
  620. package/src/components/pagination/Pagination.vue +3 -1
  621. package/src/components/pagination/PaginationItem.vue +3 -1
  622. package/src/components/popover/Popover.vue +12 -15
  623. package/src/components/progress/Progress.vue +4 -2
  624. package/src/components/radio/Radio.vue +27 -24
  625. package/src/components/radio/theme/Radio.base.theme.ts +1 -1
  626. package/src/components/radio/theme/Radio.carbon.theme.ts +1 -1
  627. package/src/components/radioButton/RadioButton.vue +154 -0
  628. package/src/components/radioButton/__tests__/RadioButton.spec.ts +48 -0
  629. package/src/components/radioButton/index.ts +2 -0
  630. package/src/components/radioButton/theme/RadioButton.base.theme.ts +155 -0
  631. package/src/components/radioButton/theme/RadioButton.carbon.theme.ts +31 -0
  632. package/src/components/scroll/Scroll.vue +6 -4
  633. package/src/components/select/Select.vue +87 -24
  634. package/src/components/select/theme/Select.base.theme.ts +7 -1
  635. package/src/components/select/theme/Select.carbon.theme.ts +2 -0
  636. package/src/components/slider/Slider.vue +19 -8
  637. package/src/components/spacer/Spacer.tsx +1 -1
  638. package/src/components/spacer/__tests__/Spacer.spec.ts +1 -1
  639. package/src/components/stepper/Stepper.vue +603 -80
  640. package/src/components/stepper/__tests__/Stepper.spec.ts +199 -5
  641. package/src/components/stepper/index.ts +4 -0
  642. package/src/components/stepper/theme/Stepper.base.theme.ts +49 -19
  643. package/src/components/tab/Tab.vue +6 -2
  644. package/src/components/tab/TabGroup.vue +8 -4
  645. package/src/components/table/Table.vue +31 -11
  646. package/src/components/table/TableCell.vue +4 -2
  647. package/src/components/table/TableHead.vue +3 -1
  648. package/src/components/table/TableHeader.vue +3 -1
  649. package/src/components/table/TableRow.vue +5 -3
  650. package/src/components/table/__tests__/Table.spec.ts +53 -0
  651. package/src/components/table/theme/Table.carbon.theme.ts +1 -1
  652. package/src/components/tag/Tag.vue +12 -8
  653. package/src/components/textarea/Textarea.vue +83 -19
  654. package/src/components/textarea/theme/Textarea.base.theme.ts +10 -1
  655. package/src/components/textarea/theme/Textarea.carbon.theme.ts +5 -0
  656. package/src/components/toggle/Toggle.vue +3 -1
  657. package/src/components/upload/Upload.vue +6 -2
  658. package/src/composables/__tests__/resolveComponentDefaults.spec.ts +139 -0
  659. package/src/composables/index.ts +1 -0
  660. package/src/composables/keys.ts +2 -0
  661. package/src/composables/resolveComponentDefaults.ts +33 -0
  662. package/src/composables/useInputtable.ts +56 -9
  663. package/src/composables/useTheme.ts +10 -3
  664. package/src/composables/useVirtualList.ts +1 -2
  665. package/src/create.ts +2 -0
  666. package/src/index.ts +1 -0
  667. package/src/theme.ts +6 -0
  668. package/src/themes/base/components.ts +3 -0
  669. package/src/themes/base/styles.ts +28 -20
  670. package/src/themes/carbon/components.ts +3 -0
  671. package/src/themes/carbon/styles.ts +25 -17
  672. package/src/version.ts +1 -1
  673. package/src/virtual/components/virtualList/VirtualList.test.ts +42 -4
  674. package/src/virtual/core/useVirtualizer.ts +18 -4
  675. package/docs/pages/component/radio/variants.vue +0 -39
  676. package/exports/tailwind.preset.js +0 -40
  677. package/lib/components/accordion/Accordion.vue.js +0 -40
  678. package/lib/components/accordion/Accordion.vue2.js +0 -4
  679. package/lib/components/accordion/AccordionItem.vue.js +0 -150
  680. package/lib/components/accordion/AccordionItem.vue2.js +0 -4
  681. package/lib/components/accordion/__tests__/Accordion.spec.d.ts +0 -1
  682. package/lib/components/alert/Alert.vue.js +0 -9
  683. package/lib/components/alert/Alert.vue2.js +0 -62
  684. package/lib/components/alert/Alert.vue3.js +0 -8
  685. package/lib/components/alert/__tests__/Alert.spec.d.ts +0 -1
  686. package/lib/components/avatar/Avatar.vue.js +0 -9
  687. package/lib/components/avatar/Avatar.vue2.js +0 -76
  688. package/lib/components/avatar/Avatar.vue3.js +0 -7
  689. package/lib/components/avatar/__tests__/Avatar.spec.d.ts +0 -1
  690. package/lib/components/badge/Badge.vue.js +0 -93
  691. package/lib/components/badge/Badge.vue2.js +0 -4
  692. package/lib/components/badge/__tests__/Badge.spec.d.ts +0 -1
  693. package/lib/components/breadcrumbs/Breadcrumbs.vue.js +0 -69
  694. package/lib/components/breadcrumbs/Breadcrumbs.vue2.js +0 -4
  695. package/lib/components/breadcrumbs/__tests__/Breadcrumbs.spec.d.ts +0 -1
  696. package/lib/components/button/Button.vue.js +0 -9
  697. package/lib/components/button/Button.vue2.js +0 -117
  698. package/lib/components/button/Button.vue3.js +0 -8
  699. package/lib/components/button/ButtonGroup.vue.js +0 -9
  700. package/lib/components/button/ButtonGroup.vue2.js +0 -53
  701. package/lib/components/button/ButtonGroup.vue3.js +0 -7
  702. package/lib/components/button/__tests__/ Button.spec.d.ts +0 -1
  703. package/lib/components/button/__tests__/ ButtonGroup.spec.d.ts +0 -1
  704. package/lib/components/card/Card.vue.js +0 -30
  705. package/lib/components/card/Card.vue2.js +0 -4
  706. package/lib/components/card/__tests__/Card.spec.d.ts +0 -1
  707. package/lib/components/carousel/Carousel.vue.js +0 -97
  708. package/lib/components/carousel/Carousel.vue2.js +0 -4
  709. package/lib/components/carousel/CarouselSlide.vue.js +0 -9
  710. package/lib/components/carousel/CarouselSlide.vue2.js +0 -32
  711. package/lib/components/carousel/CarouselSlide.vue3.js +0 -6
  712. package/lib/components/carousel/__tests__/Carousel.spec.d.ts +0 -1
  713. package/lib/components/checkbox/Checkbox.vue.js +0 -9
  714. package/lib/components/checkbox/Checkbox.vue2.js +0 -143
  715. package/lib/components/checkbox/Checkbox.vue3.js +0 -6
  716. package/lib/components/checkbox/__tests__/Checkbox.spec.d.ts +0 -1
  717. package/lib/components/container/Container.vue.js +0 -33
  718. package/lib/components/container/Container.vue2.js +0 -4
  719. package/lib/components/container/__tests__/Container.spec.d.ts +0 -1
  720. package/lib/components/datepicker/Datepicker.vue.js +0 -309
  721. package/lib/components/datepicker/Datepicker.vue2.js +0 -4
  722. package/lib/components/datepicker/Datepicker.vue3.js +0 -5
  723. package/lib/components/datepicker/__tests__/Datepicker.spec.d.ts +0 -1
  724. package/lib/components/divider/Divider.vue.js +0 -52
  725. package/lib/components/divider/Divider.vue2.js +0 -4
  726. package/lib/components/divider/__tests__/Divider.spec.d.ts +0 -1
  727. package/lib/components/drawer/Drawer.vue.js +0 -160
  728. package/lib/components/drawer/Drawer.vue2.js +0 -4
  729. package/lib/components/drawer/__tests__/Drawer.spec.d.ts +0 -1
  730. package/lib/components/form/Form.vue.js +0 -111
  731. package/lib/components/form/Form.vue2.js +0 -4
  732. package/lib/components/form/__tests__/Form.spec.d.ts +0 -1
  733. package/lib/components/formGroup/FormGroup.vue.js +0 -91
  734. package/lib/components/formGroup/FormGroup.vue2.js +0 -4
  735. package/lib/components/formGroup/__tests__/FormGroup.spec.d.ts +0 -1
  736. package/lib/components/icon/Icon.vue.js +0 -73
  737. package/lib/components/icon/Icon.vue2.js +0 -4
  738. package/lib/components/icon/__tests__/Icon.spec.d.ts +0 -1
  739. package/lib/components/image/Image.vue.js +0 -31
  740. package/lib/components/image/Image.vue2.js +0 -4
  741. package/lib/components/image/__tests__/Image.spec.d.ts +0 -1
  742. package/lib/components/input/Input.vue.js +0 -164
  743. package/lib/components/input/Input.vue2.js +0 -4
  744. package/lib/components/input/__tests__/Input.spec.d.ts +0 -1
  745. package/lib/components/inputFooter/InputFooter.vue.js +0 -43
  746. package/lib/components/inputFooter/InputFooter.vue2.js +0 -4
  747. package/lib/components/inputFooter/__tests__/InputFooter.spec.d.ts +0 -1
  748. package/lib/components/label/Label.vue.js +0 -54
  749. package/lib/components/label/Label.vue2.js +0 -4
  750. package/lib/components/label/__tests__/Label.spec.d.ts +0 -1
  751. package/lib/components/link/Link.vue.js +0 -9
  752. package/lib/components/link/Link.vue2.js +0 -47
  753. package/lib/components/link/Link.vue3.js +0 -8
  754. package/lib/components/link/__tests__/Link.spec.d.ts +0 -1
  755. package/lib/components/loader/Loader.vue.js +0 -54
  756. package/lib/components/loader/Loader.vue2.js +0 -4
  757. package/lib/components/loader/__tests__/Loader.spec.d.ts +0 -1
  758. package/lib/components/menu/Menu.vue.js +0 -141
  759. package/lib/components/menu/Menu.vue2.js +0 -4
  760. package/lib/components/menu/MenuItem.vue.js +0 -9
  761. package/lib/components/menu/MenuItem.vue2.js +0 -164
  762. package/lib/components/menu/MenuItem.vue3.js +0 -7
  763. package/lib/components/menu/__tests__/Menu.spec.d.ts +0 -1
  764. package/lib/components/menu/__tests__/MenuItem.spec.d.ts +0 -1
  765. package/lib/components/modal/Modal.vue.js +0 -211
  766. package/lib/components/modal/Modal.vue2.js +0 -4
  767. package/lib/components/modal/__tests__/Modal.spec.d.ts +0 -1
  768. package/lib/components/notifications/Notifications.vue.js +0 -266
  769. package/lib/components/notifications/Notifications.vue2.js +0 -4
  770. package/lib/components/notifications/__tests__/Notifications.spec.d.ts +0 -1
  771. package/lib/components/pagination/Pagination.vue.js +0 -131
  772. package/lib/components/pagination/Pagination.vue2.js +0 -4
  773. package/lib/components/pagination/PaginationItem.vue.js +0 -47
  774. package/lib/components/pagination/PaginationItem.vue2.js +0 -4
  775. package/lib/components/pagination/__tests__/Pagination.spec.d.ts +0 -1
  776. package/lib/components/pagination/__tests__/PaginationItem.spec.d.ts +0 -1
  777. package/lib/components/popover/Popover.vue.js +0 -134
  778. package/lib/components/popover/Popover.vue2.js +0 -4
  779. package/lib/components/popover/Popover.vue3.js +0 -5
  780. package/lib/components/popover/PopoverContainer.vue.js +0 -29
  781. package/lib/components/popover/PopoverContainer.vue2.js +0 -4
  782. package/lib/components/popover/__tests__/Popover.spec.d.ts +0 -1
  783. package/lib/components/popover/__tests__/PopoverContainer.spec.d.ts +0 -1
  784. package/lib/components/progress/Progress.vue.js +0 -50
  785. package/lib/components/progress/Progress.vue2.js +0 -4
  786. package/lib/components/progress/__tests__/Progress.spec.d.ts +0 -1
  787. package/lib/components/qrCode/QrCode.vue.js +0 -93
  788. package/lib/components/qrCode/QrCode.vue2.js +0 -4
  789. package/lib/components/qrCode/__tests__/QrCode.spec.d.ts +0 -1
  790. package/lib/components/radio/Radio.vue.js +0 -9
  791. package/lib/components/radio/Radio.vue2.js +0 -132
  792. package/lib/components/radio/Radio.vue3.js +0 -10
  793. package/lib/components/radio/__tests__/Radio.spec.d.ts +0 -1
  794. package/lib/components/scroll/Scroll.vue.js +0 -9
  795. package/lib/components/scroll/Scroll.vue2.js +0 -63
  796. package/lib/components/scroll/Scroll.vue3.js +0 -17
  797. package/lib/components/scroll/__tests__/Scroll.spec.d.ts +0 -1
  798. package/lib/components/select/Select.vue.js +0 -689
  799. package/lib/components/select/Select.vue2.js +0 -4
  800. package/lib/components/select/__tests__/Select.spec.d.ts +0 -1
  801. package/lib/components/skeleton/Skeleton.vue.js +0 -39
  802. package/lib/components/skeleton/Skeleton.vue2.js +0 -4
  803. package/lib/components/skeleton/__tests__/Skeleton.spec.d.ts +0 -1
  804. package/lib/components/slider/Slider.vue.js +0 -7
  805. package/lib/components/slider/Slider.vue2.js +0 -103
  806. package/lib/components/slider/Slider.vue3.js +0 -4
  807. package/lib/components/slider/__tests__/Slider.spec.d.ts +0 -1
  808. package/lib/components/spacer/__tests__/Spacer.spec.d.ts +0 -1
  809. package/lib/components/spinner/Spinner.vue.js +0 -27
  810. package/lib/components/spinner/Spinner.vue2.js +0 -4
  811. package/lib/components/spinner/__tests__/Spinner.spec.d.ts +0 -1
  812. package/lib/components/stepper/Stepper.vue.js +0 -129
  813. package/lib/components/stepper/Stepper.vue2.js +0 -4
  814. package/lib/components/stepper/__tests__/Stepper.spec.d.ts +0 -1
  815. package/lib/components/tab/Tab.vue.js +0 -150
  816. package/lib/components/tab/Tab.vue2.js +0 -4
  817. package/lib/components/tab/TabGroup.vue.js +0 -135
  818. package/lib/components/tab/TabGroup.vue2.js +0 -4
  819. package/lib/components/tab/__tests__/Tab.spec.d.ts +0 -1
  820. package/lib/components/tab/__tests__/TabGroup.spec.d.ts +0 -1
  821. package/lib/components/table/Table.vue.js +0 -424
  822. package/lib/components/table/Table.vue2.js +0 -4
  823. package/lib/components/table/TableCell.vue.js +0 -65
  824. package/lib/components/table/TableCell.vue2.js +0 -4
  825. package/lib/components/table/TableHead.vue.js +0 -24
  826. package/lib/components/table/TableHead.vue2.js +0 -4
  827. package/lib/components/table/TableHeader.vue.js +0 -82
  828. package/lib/components/table/TableHeader.vue2.js +0 -4
  829. package/lib/components/table/TableRow.vue.js +0 -30
  830. package/lib/components/table/TableRow.vue2.js +0 -4
  831. package/lib/components/table/__tests__/Table.spec.d.ts +0 -1
  832. package/lib/components/tag/Tag.vue.js +0 -73
  833. package/lib/components/tag/Tag.vue2.js +0 -4
  834. package/lib/components/tag/__tests__/Tag.spec.d.ts +0 -1
  835. package/lib/components/textarea/Textarea.vue.js +0 -141
  836. package/lib/components/textarea/Textarea.vue2.js +0 -4
  837. package/lib/components/textarea/__tests__/Textarea.spec.d.ts +0 -1
  838. package/lib/components/themeProvider/ThemeProvider.vue.js +0 -18
  839. package/lib/components/themeProvider/ThemeProvider.vue2.js +0 -4
  840. package/lib/components/toggle/Toggle.vue.js +0 -108
  841. package/lib/components/toggle/Toggle.vue2.js +0 -4
  842. package/lib/components/toggle/__tests__/Toggle.spec.d.ts +0 -1
  843. package/lib/components/tooltip/ToggleTip.vue.js +0 -29
  844. package/lib/components/tooltip/ToggleTip.vue2.js +0 -4
  845. package/lib/components/tooltip/Tooltip.vue.js +0 -132
  846. package/lib/components/tooltip/Tooltip.vue2.js +0 -4
  847. package/lib/components/tooltip/__tests__/ToggleTip.spec.d.ts +0 -1
  848. package/lib/components/tooltip/__tests__/Tooltip.spec.d.ts +0 -1
  849. package/lib/components/upload/Upload.vue.js +0 -275
  850. package/lib/components/upload/Upload.vue2.js +0 -4
  851. package/lib/components/upload/__tests__/Upload.spec.d.ts +0 -1
  852. package/lib/node_modules/.pnpm/@vuepic_vue-datepicker@11.0.2_vue@3.5.10_typescript@5.2.2_/node_modules/@vuepic/vue-datepicker/dist/main.css.js +0 -4
  853. package/lib/node_modules/.pnpm/@vuepic_vue-datepicker@11.0.2_vue@3.5.10_typescript@5.2.2_/node_modules/@vuepic/vue-datepicker/dist/vue-datepicker.js +0 -5210
  854. package/lib/node_modules/.pnpm/@vueuse_core@11.1.0_vue@3.5.10_typescript@5.2.2_/node_modules/@vueuse/core/index.js +0 -501
  855. package/lib/node_modules/.pnpm/@vueuse_shared@11.1.0_vue@3.5.10_typescript@5.2.2_/node_modules/@vueuse/shared/index.js +0 -96
  856. package/lib/node_modules/.pnpm/floating-vue@5.2.2_@nuxt_kit@3.10.1_rollup@3.29.4__vue@3.5.10_typescript@5.2.2_/node_modules/floating-vue/dist/floating-vue.js +0 -1371
  857. package/lib/tailwind.preset.js +0 -40
  858. package/lib/virtual/components/infiniteLoader/InfiniteLoader.vue.js +0 -21
  859. package/lib/virtual/components/infiniteLoader/InfiniteLoader.vue2.js +0 -4
  860. package/lib/virtual/components/virtualGrid/VirtualGrid.vue.js +0 -241
  861. package/lib/virtual/components/virtualGrid/VirtualGrid.vue2.js +0 -4
  862. package/lib/virtual/components/virtualList/VirtualList.vue.js +0 -159
  863. package/lib/virtual/components/virtualList/VirtualList.vue2.js +0 -4
@@ -1 +1 @@
1
- [{"name":"Accordion","description":"Accordion is a component that allows you to collapse and expand content.","url":"/component/accordion","category":"component"},{"name":"Alert","description":"Alerts are used to communicate a state that affects a system, feature or page.","url":"/component/alert","category":"component"},{"name":"Avatar","description":"Avatars are used to represent a user.","url":"/component/avatar","category":"component"},{"name":"Badge","description":"Badges are used to display a small amount of information.","url":"/component/badge","category":"component"},{"name":"Breadcrumbs","description":"Breadcrumbs are used to indicate the current page\\","url":"/component/breadcrumbs","category":"component"},{"name":"Button","description":"Buttons allow users to perform actions and make choices with a single click. They are commonly used for submitting forms, opening dialogs or menus, and executing commands. Buttons can be customized with different styles, sizes, and icons to fit various use cases.","url":"/component/button","category":"component"},{"name":"Card","description":"Cards are used to display content in an organized manner.","url":"/component/card","category":"component"},{"name":"Carousel","description":"A carousel is a rotating set of images.","url":"/component/carousel","category":"component"},{"name":"Checkbox","description":"Checkboxes enable users to select one or multiple options from a list. They are ideal for toggling settings or making selections where more than one choice is allowed. Each checkbox can be checked or unchecked independently.","url":"/component/checkbox","category":"component"},{"name":"Container","description":"Containers provide a flexible layout element for grouping and organizing content. They help structure pages by controlling width, alignment, and spacing, ensuring consistent presentation across different sections.","url":"/component/container","category":"component"},{"name":"Datepicker","description":"The datepicker component is used to select a date or time.","url":"/component/datepicker","category":"component"},{"name":"Divider","description":"Dividers are used to separate content.","url":"/component/divider","category":"component"},{"name":"Drawer","description":"Drawers slide in from the edge of the screen to present navigation, options, or additional content without disrupting the main view. They are ideal for menus, filters, or contextual panels.","url":"/component/drawer","category":"component"},{"name":"Form","description":"Forms provide a structured way to collect and validate user input, such as text, selections, and files. They support features like validation, grouping, and submission handling, making it easy to build interactive and accessible data entry interfaces.","url":"/component/form","category":"component"},{"name":"FormGroup","description":"Form groups organize related form elements together, providing structure and shared validation. They help group checkboxes, radio buttons, or inputs that belong to the same logical section.","url":"/component/formGroup","category":"component"},{"name":"Icon","description":"Icons visually represent actions, objects, or concepts, enhancing usability and recognition in interfaces. They can be used alone or alongside text for buttons, menus, and indicators.","url":"/component/icon","category":"component"},{"name":"Image","description":"Image is used to load an image file with a skeleton as placeholder and on load display the image.","url":"/component/image","category":"component"},{"name":"InfiniteLoader","description":"InfiniteLoader is a component that allows you to load data on demand as users scroll through a list.","url":"/component/infiniteLoader","category":"component"},{"name":"Input","description":"This is a text input component that allows users to enter and edit text.","url":"/component/input","category":"component"},{"name":"Link","description":"Links are used to navigate to a different page.","url":"/component/link","category":"component"},{"name":"Loader","description":"Loader component is used to show a loading state.","url":"/component/loader","category":"component"},{"name":"Menu","description":"Menus are used to display a list of options.","url":"/component/menu","category":"component"},{"name":"Modal","description":"Modals are used to display content on top of the current page.","url":"/component/modal","category":"component"},{"name":"Notifications","description":"Notifications provide timely feedback or alerts to users, such as success messages, warnings, or errors. They help keep users informed about important events or actions.","url":"/component/notifications","category":"component"},{"name":"Pagination","description":"Pagination divides large sets of content into manageable pages, allowing users to navigate through items efficiently. It is commonly used in tables, lists, and search results to improve usability and performance.","url":"/component/pagination","category":"component"},{"name":"Popover","description":"Popovers display additional information or interactive content in a floating overlay, anchored to a trigger element. They are useful for tooltips, menus, or contextual actions without navigating away from the current view.","url":"/component/popover","category":"component"},{"name":"Progress","description":"Progress indicators visually communicate the completion status of a task or process, such as file uploads or data loading. They help users understand how much work remains.","url":"/component/progress","category":"component"},{"name":"QR Code","description":"The QR Code component is used to generate a QR code.","url":"/component/qrCode","category":"component"},{"name":"Radio","description":"Radios allow the user to select one option from a set. Use radio buttons for exclusive selection if you think that the user needs to see all available options side-by-side.","url":"/component/radio","category":"component"},{"name":"Scroll","description":"The Scroll component enhances scrolling experiences by adding visual cues, such as inner shadows, to indicate additional content. It is useful for horizontally or vertically scrolling lists and containers.","url":"/component/scroll","category":"component"},{"name":"Select","description":"Selects allow the user to select one or more options from a set.","url":"/component/select","category":"component"},{"name":"Skeleton","description":"Skeletons provide placeholder elements that mimic the layout of content while data is loading. They improve perceived performance by giving users a visual cue that content is being fetched.","url":"/component/skeleton","category":"component"},{"name":"Slider","description":"Sliders allow users to select a numeric value or range by dragging a handle along a track. They are ideal for adjusting settings such as volume, brightness, or price filters.","url":"/component/slider","category":"component"},{"name":"Spacer","description":"Spacers create adjustable gaps between elements within flex layouts, helping to control spacing and alignment without using margin or padding directly.","url":"/component/spacer","category":"component"},{"name":"Spinner","description":"Spinners visually indicate that a background process or operation is ongoing, such as loading data or submitting a form. They help manage user expectations by signaling that the system is working.","url":"/component/spinner","category":"component"},{"name":"Stepper","description":"Stepper is a navigation component that guides users through the steps of a task.","url":"/component/stepper","category":"component"},{"name":"Table","description":"Tables are used to display data in a tabular format.","url":"/component/table","category":"component"},{"name":"Tabs","description":"Tabs are used to navigate through a set of views.","url":"/component/tabs","category":"component"},{"name":"Tag","description":"Tags are compact elements used to display brief information, such as categories, statuses, or labels. They help organize content and provide quick context or filtering options within lists and interfaces.","url":"/component/tag","category":"component"},{"name":"Textarea","description":"Textareas provide a multi-line input field for users to enter longer text, such as comments, descriptions, or messages. They support resizing and can be customized for different use cases.","url":"/component/textarea","category":"component"},{"name":"Toggle","description":"Toggles provide a simple switch interface for enabling or disabling a setting, or switching between two mutually exclusive states. They are ideal for binary options such as on/off, active/inactive, or show/hide.","url":"/component/toggle","category":"component"},{"name":"Tooltip","description":"Tooltips are used to display a message when hovering over an element.","url":"/component/tooltip","category":"component"},{"name":"Upload","description":"Upload is a component that allows you to upload files.","url":"/component/upload","category":"component"},{"name":"VirtualGrid","description":"VirtualGrid is a component that allows you to render a grid of items in a virtualized way. It is a high-performance component that is used to render large grids of items.","url":"/component/virtualGrid","category":"component"},{"name":"VirtualList","description":"VirtualList is a component that allows you to render a list of items in a virtualized way. It is a high-performance component that is used to render large lists of items.","url":"/component/virtualList","category":"component"}]
1
+ [{"name":"Accordion","description":"Accordion is a component that allows you to collapse and expand content.","url":"/component/accordion","category":"component"},{"name":"Alert","description":"Alerts are used to communicate a state that affects a system, feature or page.","url":"/component/alert","category":"component"},{"name":"Avatar","description":"Avatars are used to represent a user.","url":"/component/avatar","category":"component"},{"name":"Badge","description":"Badges are used to display a small amount of information.","url":"/component/badge","category":"component"},{"name":"Breadcrumbs","description":"Breadcrumbs are used to indicate the current page\\","url":"/component/breadcrumbs","category":"component"},{"name":"Button","description":"Buttons allow users to perform actions and make choices with a single click. They are commonly used for submitting forms, opening dialogs or menus, and executing commands. Buttons can be customized with different styles, sizes, and icons to fit various use cases.","url":"/component/button","category":"component"},{"name":"Card","description":"Cards are used to display content in an organized manner.","url":"/component/card","category":"component"},{"name":"Carousel","description":"A carousel is a rotating set of images.","url":"/component/carousel","category":"component"},{"name":"Checkbox","description":"Checkboxes enable users to select one or multiple options from a list. They are ideal for toggling settings or making selections where more than one choice is allowed. Each checkbox can be checked or unchecked independently.","url":"/component/checkbox","category":"component"},{"name":"Container","description":"Containers provide a flexible layout element for grouping and organizing content. They help structure pages by controlling width, alignment, and spacing, ensuring consistent presentation across different sections.","url":"/component/container","category":"component"},{"name":"Datepicker","description":"The datepicker component is used to select a date or time.","url":"/component/datepicker","category":"component"},{"name":"Divider","description":"Dividers are used to separate content.","url":"/component/divider","category":"component"},{"name":"Drawer","description":"Drawers slide in from the edge of the screen to present navigation, options, or additional content without disrupting the main view. They are ideal for menus, filters, or contextual panels.","url":"/component/drawer","category":"component"},{"name":"Empty","description":"Empty states communicate when there is no content to show. Use them in tables, lists, and panels with a title, description, optional icon, and actions.","url":"/component/empty","category":"component"},{"name":"Form","description":"Forms provide a structured way to collect and validate user input, such as text, selections, and files. They support features like validation, grouping, and submission handling, making it easy to build interactive and accessible data entry interfaces.","url":"/component/form","category":"component"},{"name":"FormGroup","description":"Form groups organize related form elements together, providing structure and shared validation. They help group checkboxes, radio buttons, or inputs that belong to the same logical section.","url":"/component/formGroup","category":"component"},{"name":"Icon","description":"Icons visually represent actions and concepts. Register SVG paths in a global map, then reference them by name on XIcon.","url":"/component/icon","category":"component"},{"name":"Image","description":"Loads a remote image after preloading. Use a background on the wrapper for a visible placeholder until load completes.","url":"/component/image","category":"component"},{"name":"InfiniteLoader","description":"InfiniteLoader is a component that allows you to load data on demand as users scroll through a list.","url":"/component/infiniteLoader","category":"component"},{"name":"Input","description":"This is a text input component that allows users to enter and edit text.","url":"/component/input","category":"component"},{"name":"Input Group","description":"Input groups combine multiple inline fields (Input, Textarea, Select, Datepicker, Button) into one control with a shared label and footer.","url":"/component/inputGroup","category":"component"},{"name":"Link","description":"Links are used to navigate to a different page.","url":"/component/link","category":"component"},{"name":"Loader","description":"Loader component is used to show a loading state.","url":"/component/loader","category":"component"},{"name":"Menu","description":"Menus are used to display a list of options.","url":"/component/menu","category":"component"},{"name":"Modal","description":"Modals are used to display content on top of the current page.","url":"/component/modal","category":"component"},{"name":"Notifications","description":"Notifications provide timely feedback or alerts to users, such as success messages, warnings, or errors. They help keep users informed about important events or actions.","url":"/component/notifications","category":"component"},{"name":"Pagination","description":"Pagination divides large sets of content into manageable pages, allowing users to navigate through items efficiently. It is commonly used in tables, lists, and search results to improve usability and performance.","url":"/component/pagination","category":"component"},{"name":"Popover","description":"Popovers display additional information or interactive content in a floating overlay, anchored to a trigger element. They are useful for tooltips, menus, or contextual actions without navigating away from the current view.","url":"/component/popover","category":"component"},{"name":"Progress","description":"Progress indicators visually communicate the completion status of a task or process, such as file uploads or data loading. They help users understand how much work remains.","url":"/component/progress","category":"component"},{"name":"QR Code","description":"The QR Code component is used to generate a QR code.","url":"/component/qrCode","category":"component"},{"name":"Radio","description":"Radios allow the user to select one option from a set. Use classic radios for standard options, or x-radio-button for a button-shaped variant. Place several x-radio-button options inside x-form-group for a joined segmented control.","url":"/component/radio","category":"component"},{"name":"Scroll","description":"The Scroll component enhances scrolling experiences by adding visual cues, such as inner shadows, to indicate additional content. It is useful for horizontally or vertically scrolling lists and containers.","url":"/component/scroll","category":"component"},{"name":"Select","description":"Selects allow the user to select one or more options from a set.","url":"/component/select","category":"component"},{"name":"Skeleton","description":"Skeletons provide placeholder elements that mimic the layout of content while data is loading. They improve perceived performance by giving users a visual cue that content is being fetched.","url":"/component/skeleton","category":"component"},{"name":"Slider","description":"Sliders allow users to select a numeric value or range by dragging a handle along a track. They are ideal for adjusting settings such as volume, brightness, or price filters.","url":"/component/slider","category":"component"},{"name":"Spacer","description":"Spacers create adjustable gaps between elements within flex layouts, helping to control spacing and alignment without using margin or padding directly.","url":"/component/spacer","category":"component"},{"name":"Spinner","description":"Spinners visually indicate that a background process or operation is ongoing, such as loading data or submitting a form. They help manage user expectations by signaling that the system is working.","url":"/component/spinner","category":"component"},{"name":"Stepper","description":"Multi-step wizard with declarative steps, named panel slots, programmatic next/prev navigation, validation hooks, and optional sidebar summaries.","url":"/component/stepper","category":"component"},{"name":"Table","description":"Tables display tabular data with single- or multi-column sorting, selection, expandable rows, and virtual lists.","url":"/component/table","category":"component"},{"name":"Tabs","description":"Tabs are used to navigate through a set of views.","url":"/component/tabs","category":"component"},{"name":"Tag","description":"Tags are compact elements used to display brief information, such as categories, statuses, or labels. They help organize content and provide quick context or filtering options within lists and interfaces.","url":"/component/tag","category":"component"},{"name":"Textarea","description":"Textareas provide a multi-line input field for users to enter longer text, such as comments, descriptions, or messages. They support resizing and can be customized for different use cases.","url":"/component/textarea","category":"component"},{"name":"Toggle","description":"Toggles provide a simple switch interface for enabling or disabling a setting, or switching between two mutually exclusive states. They are ideal for binary options such as on/off, active/inactive, or show/hide.","url":"/component/toggle","category":"component"},{"name":"Tooltip","description":"Tooltips display contextual help on hover. Use XToggleTip for a compact info-icon pattern beside labels.","url":"/component/tooltip","category":"component"},{"name":"Upload","description":"Upload is a component that allows you to upload files.","url":"/component/upload","category":"component"},{"name":"VirtualGrid","description":"VirtualGrid is a component that allows you to render a grid of items in a virtualized way. It is a high-performance component that is used to render large grids of items.","url":"/component/virtualGrid","category":"component"},{"name":"VirtualList","description":"VirtualList is a component that allows you to render a list of items in a virtualized way. It is a high-performance component that is used to render large lists of items.","url":"/component/virtualList","category":"component"}]
@@ -1 +1 @@
1
- [{"name":"Icons","description":"Custom icon set integration for Indielayer UI components.","url":"/icons","category":"guide"},{"name":"Colors","description":"Color palette, semantic tokens, and color props on components.","url":"/colors","category":"guide"},{"name":"Typography","description":"Type scale and typography utilities used across the library.","url":"/typography","category":"guide"},{"name":"Accordion","description":"Accordion is a component that allows you to collapse and expand content.","url":"/component/accordion","category":"component"},{"name":"Alert","description":"Alerts are used to communicate a state that affects a system, feature or page.","url":"/component/alert","category":"component"},{"name":"Avatar","description":"Avatars are used to represent a user.","url":"/component/avatar","category":"component"},{"name":"Badge","description":"Badges are used to display a small amount of information.","url":"/component/badge","category":"component"},{"name":"Breadcrumbs","description":"Breadcrumbs are used to indicate the current page\\","url":"/component/breadcrumbs","category":"component"},{"name":"Button","description":"Buttons allow users to perform actions and make choices with a single click. They are commonly used for submitting forms, opening dialogs or menus, and executing commands. Buttons can be customized with different styles, sizes, and icons to fit various use cases.","url":"/component/button","category":"component"},{"name":"Card","description":"Cards are used to display content in an organized manner.","url":"/component/card","category":"component"},{"name":"Carousel","description":"A carousel is a rotating set of images.","url":"/component/carousel","category":"component"},{"name":"Checkbox","description":"Checkboxes enable users to select one or multiple options from a list. They are ideal for toggling settings or making selections where more than one choice is allowed. Each checkbox can be checked or unchecked independently.","url":"/component/checkbox","category":"component"},{"name":"Container","description":"Containers provide a flexible layout element for grouping and organizing content. They help structure pages by controlling width, alignment, and spacing, ensuring consistent presentation across different sections.","url":"/component/container","category":"component"},{"name":"Datepicker","description":"The datepicker component is used to select a date or time.","url":"/component/datepicker","category":"component"},{"name":"Divider","description":"Dividers are used to separate content.","url":"/component/divider","category":"component"},{"name":"Drawer","description":"Drawers slide in from the edge of the screen to present navigation, options, or additional content without disrupting the main view. They are ideal for menus, filters, or contextual panels.","url":"/component/drawer","category":"component"},{"name":"Form","description":"Forms provide a structured way to collect and validate user input, such as text, selections, and files. They support features like validation, grouping, and submission handling, making it easy to build interactive and accessible data entry interfaces.","url":"/component/form","category":"component"},{"name":"FormGroup","description":"Form groups organize related form elements together, providing structure and shared validation. They help group checkboxes, radio buttons, or inputs that belong to the same logical section.","url":"/component/formGroup","category":"component"},{"name":"Icon","description":"Icons visually represent actions, objects, or concepts, enhancing usability and recognition in interfaces. They can be used alone or alongside text for buttons, menus, and indicators.","url":"/component/icon","category":"component"},{"name":"Image","description":"Image is used to load an image file with a skeleton as placeholder and on load display the image.","url":"/component/image","category":"component"},{"name":"InfiniteLoader","description":"InfiniteLoader is a component that allows you to load data on demand as users scroll through a list.","url":"/component/infiniteLoader","category":"component"},{"name":"Input","description":"This is a text input component that allows users to enter and edit text.","url":"/component/input","category":"component"},{"name":"Link","description":"Links are used to navigate to a different page.","url":"/component/link","category":"component"},{"name":"Loader","description":"Loader component is used to show a loading state.","url":"/component/loader","category":"component"},{"name":"Menu","description":"Menus are used to display a list of options.","url":"/component/menu","category":"component"},{"name":"Modal","description":"Modals are used to display content on top of the current page.","url":"/component/modal","category":"component"},{"name":"Notifications","description":"Notifications provide timely feedback or alerts to users, such as success messages, warnings, or errors. They help keep users informed about important events or actions.","url":"/component/notifications","category":"component"},{"name":"Pagination","description":"Pagination divides large sets of content into manageable pages, allowing users to navigate through items efficiently. It is commonly used in tables, lists, and search results to improve usability and performance.","url":"/component/pagination","category":"component"},{"name":"Popover","description":"Popovers display additional information or interactive content in a floating overlay, anchored to a trigger element. They are useful for tooltips, menus, or contextual actions without navigating away from the current view.","url":"/component/popover","category":"component"},{"name":"Progress","description":"Progress indicators visually communicate the completion status of a task or process, such as file uploads or data loading. They help users understand how much work remains.","url":"/component/progress","category":"component"},{"name":"QR Code","description":"The QR Code component is used to generate a QR code.","url":"/component/qrCode","category":"component"},{"name":"Radio","description":"Radios allow the user to select one option from a set. Use radio buttons for exclusive selection if you think that the user needs to see all available options side-by-side.","url":"/component/radio","category":"component"},{"name":"Scroll","description":"The Scroll component enhances scrolling experiences by adding visual cues, such as inner shadows, to indicate additional content. It is useful for horizontally or vertically scrolling lists and containers.","url":"/component/scroll","category":"component"},{"name":"Select","description":"Selects allow the user to select one or more options from a set.","url":"/component/select","category":"component"},{"name":"Skeleton","description":"Skeletons provide placeholder elements that mimic the layout of content while data is loading. They improve perceived performance by giving users a visual cue that content is being fetched.","url":"/component/skeleton","category":"component"},{"name":"Slider","description":"Sliders allow users to select a numeric value or range by dragging a handle along a track. They are ideal for adjusting settings such as volume, brightness, or price filters.","url":"/component/slider","category":"component"},{"name":"Spacer","description":"Spacers create adjustable gaps between elements within flex layouts, helping to control spacing and alignment without using margin or padding directly.","url":"/component/spacer","category":"component"},{"name":"Spinner","description":"Spinners visually indicate that a background process or operation is ongoing, such as loading data or submitting a form. They help manage user expectations by signaling that the system is working.","url":"/component/spinner","category":"component"},{"name":"Stepper","description":"Stepper is a navigation component that guides users through the steps of a task.","url":"/component/stepper","category":"component"},{"name":"Table","description":"Tables are used to display data in a tabular format.","url":"/component/table","category":"component"},{"name":"Tabs","description":"Tabs are used to navigate through a set of views.","url":"/component/tabs","category":"component"},{"name":"Tag","description":"Tags are compact elements used to display brief information, such as categories, statuses, or labels. They help organize content and provide quick context or filtering options within lists and interfaces.","url":"/component/tag","category":"component"},{"name":"Textarea","description":"Textareas provide a multi-line input field for users to enter longer text, such as comments, descriptions, or messages. They support resizing and can be customized for different use cases.","url":"/component/textarea","category":"component"},{"name":"Toggle","description":"Toggles provide a simple switch interface for enabling or disabling a setting, or switching between two mutually exclusive states. They are ideal for binary options such as on/off, active/inactive, or show/hide.","url":"/component/toggle","category":"component"},{"name":"Tooltip","description":"Tooltips are used to display a message when hovering over an element.","url":"/component/tooltip","category":"component"},{"name":"Upload","description":"Upload is a component that allows you to upload files.","url":"/component/upload","category":"component"},{"name":"VirtualGrid","description":"VirtualGrid is a component that allows you to render a grid of items in a virtualized way. It is a high-performance component that is used to render large grids of items.","url":"/component/virtualGrid","category":"component"},{"name":"VirtualList","description":"VirtualList is a component that allows you to render a list of items in a virtualized way. It is a high-performance component that is used to render large lists of items.","url":"/component/virtualList","category":"component"}]
1
+ [{"name":"Icons","description":"Custom icon set integration for Indielayer UI components.","url":"/icons","category":"guide"},{"name":"Colors","description":"Color palette, semantic tokens, and color props on components.","url":"/colors","category":"guide"},{"name":"Typography","description":"Type scale and typography utilities used across the library.","url":"/typography","category":"guide"},{"name":"Accordion","description":"Accordion is a component that allows you to collapse and expand content.","url":"/component/accordion","category":"component"},{"name":"Alert","description":"Alerts are used to communicate a state that affects a system, feature or page.","url":"/component/alert","category":"component"},{"name":"Avatar","description":"Avatars are used to represent a user.","url":"/component/avatar","category":"component"},{"name":"Badge","description":"Badges are used to display a small amount of information.","url":"/component/badge","category":"component"},{"name":"Breadcrumbs","description":"Breadcrumbs are used to indicate the current page\\","url":"/component/breadcrumbs","category":"component"},{"name":"Button","description":"Buttons allow users to perform actions and make choices with a single click. They are commonly used for submitting forms, opening dialogs or menus, and executing commands. Buttons can be customized with different styles, sizes, and icons to fit various use cases.","url":"/component/button","category":"component"},{"name":"Card","description":"Cards are used to display content in an organized manner.","url":"/component/card","category":"component"},{"name":"Carousel","description":"A carousel is a rotating set of images.","url":"/component/carousel","category":"component"},{"name":"Checkbox","description":"Checkboxes enable users to select one or multiple options from a list. They are ideal for toggling settings or making selections where more than one choice is allowed. Each checkbox can be checked or unchecked independently.","url":"/component/checkbox","category":"component"},{"name":"Container","description":"Containers provide a flexible layout element for grouping and organizing content. They help structure pages by controlling width, alignment, and spacing, ensuring consistent presentation across different sections.","url":"/component/container","category":"component"},{"name":"Datepicker","description":"The datepicker component is used to select a date or time.","url":"/component/datepicker","category":"component"},{"name":"Divider","description":"Dividers are used to separate content.","url":"/component/divider","category":"component"},{"name":"Drawer","description":"Drawers slide in from the edge of the screen to present navigation, options, or additional content without disrupting the main view. They are ideal for menus, filters, or contextual panels.","url":"/component/drawer","category":"component"},{"name":"Empty","description":"Empty states communicate when there is no content to show. Use them in tables, lists, and panels with a title, description, optional icon, and actions.","url":"/component/empty","category":"component"},{"name":"Form","description":"Forms provide a structured way to collect and validate user input, such as text, selections, and files. They support features like validation, grouping, and submission handling, making it easy to build interactive and accessible data entry interfaces.","url":"/component/form","category":"component"},{"name":"FormGroup","description":"Form groups organize related form elements together, providing structure and shared validation. They help group checkboxes, radio buttons, or inputs that belong to the same logical section.","url":"/component/formGroup","category":"component"},{"name":"Icon","description":"Icons visually represent actions and concepts. Register SVG paths in a global map, then reference them by name on XIcon.","url":"/component/icon","category":"component"},{"name":"Image","description":"Loads a remote image after preloading. Use a background on the wrapper for a visible placeholder until load completes.","url":"/component/image","category":"component"},{"name":"InfiniteLoader","description":"InfiniteLoader is a component that allows you to load data on demand as users scroll through a list.","url":"/component/infiniteLoader","category":"component"},{"name":"Input","description":"This is a text input component that allows users to enter and edit text.","url":"/component/input","category":"component"},{"name":"Input Group","description":"Input groups combine multiple inline fields (Input, Textarea, Select, Datepicker, Button) into one control with a shared label and footer.","url":"/component/inputGroup","category":"component"},{"name":"Link","description":"Links are used to navigate to a different page.","url":"/component/link","category":"component"},{"name":"Loader","description":"Loader component is used to show a loading state.","url":"/component/loader","category":"component"},{"name":"Menu","description":"Menus are used to display a list of options.","url":"/component/menu","category":"component"},{"name":"Modal","description":"Modals are used to display content on top of the current page.","url":"/component/modal","category":"component"},{"name":"Notifications","description":"Notifications provide timely feedback or alerts to users, such as success messages, warnings, or errors. They help keep users informed about important events or actions.","url":"/component/notifications","category":"component"},{"name":"Pagination","description":"Pagination divides large sets of content into manageable pages, allowing users to navigate through items efficiently. It is commonly used in tables, lists, and search results to improve usability and performance.","url":"/component/pagination","category":"component"},{"name":"Popover","description":"Popovers display additional information or interactive content in a floating overlay, anchored to a trigger element. They are useful for tooltips, menus, or contextual actions without navigating away from the current view.","url":"/component/popover","category":"component"},{"name":"Progress","description":"Progress indicators visually communicate the completion status of a task or process, such as file uploads or data loading. They help users understand how much work remains.","url":"/component/progress","category":"component"},{"name":"QR Code","description":"The QR Code component is used to generate a QR code.","url":"/component/qrCode","category":"component"},{"name":"Radio","description":"Radios allow the user to select one option from a set. Use classic radios for standard options, or x-radio-button for a button-shaped variant. Place several x-radio-button options inside x-form-group for a joined segmented control.","url":"/component/radio","category":"component"},{"name":"Scroll","description":"The Scroll component enhances scrolling experiences by adding visual cues, such as inner shadows, to indicate additional content. It is useful for horizontally or vertically scrolling lists and containers.","url":"/component/scroll","category":"component"},{"name":"Select","description":"Selects allow the user to select one or more options from a set.","url":"/component/select","category":"component"},{"name":"Skeleton","description":"Skeletons provide placeholder elements that mimic the layout of content while data is loading. They improve perceived performance by giving users a visual cue that content is being fetched.","url":"/component/skeleton","category":"component"},{"name":"Slider","description":"Sliders allow users to select a numeric value or range by dragging a handle along a track. They are ideal for adjusting settings such as volume, brightness, or price filters.","url":"/component/slider","category":"component"},{"name":"Spacer","description":"Spacers create adjustable gaps between elements within flex layouts, helping to control spacing and alignment without using margin or padding directly.","url":"/component/spacer","category":"component"},{"name":"Spinner","description":"Spinners visually indicate that a background process or operation is ongoing, such as loading data or submitting a form. They help manage user expectations by signaling that the system is working.","url":"/component/spinner","category":"component"},{"name":"Stepper","description":"Multi-step wizard with declarative steps, named panel slots, programmatic next/prev navigation, validation hooks, and optional sidebar summaries.","url":"/component/stepper","category":"component"},{"name":"Table","description":"Tables display tabular data with single- or multi-column sorting, selection, expandable rows, and virtual lists.","url":"/component/table","category":"component"},{"name":"Tabs","description":"Tabs are used to navigate through a set of views.","url":"/component/tabs","category":"component"},{"name":"Tag","description":"Tags are compact elements used to display brief information, such as categories, statuses, or labels. They help organize content and provide quick context or filtering options within lists and interfaces.","url":"/component/tag","category":"component"},{"name":"Textarea","description":"Textareas provide a multi-line input field for users to enter longer text, such as comments, descriptions, or messages. They support resizing and can be customized for different use cases.","url":"/component/textarea","category":"component"},{"name":"Toggle","description":"Toggles provide a simple switch interface for enabling or disabling a setting, or switching between two mutually exclusive states. They are ideal for binary options such as on/off, active/inactive, or show/hide.","url":"/component/toggle","category":"component"},{"name":"Tooltip","description":"Tooltips display contextual help on hover. Use XToggleTip for a compact info-icon pattern beside labels.","url":"/component/tooltip","category":"component"},{"name":"Upload","description":"Upload is a component that allows you to upload files.","url":"/component/upload","category":"component"},{"name":"VirtualGrid","description":"VirtualGrid is a component that allows you to render a grid of items in a virtualized way. It is a high-performance component that is used to render large grids of items.","url":"/component/virtualGrid","category":"component"},{"name":"VirtualList","description":"VirtualList is a component that allows you to render a list of items in a virtualized way. It is a high-performance component that is used to render large lists of items.","url":"/component/virtualList","category":"component"}]
@@ -0,0 +1,22 @@
1
+ import { createHighlighter, type Highlighter, type ThemeRegistrationRaw } from 'shiki'
2
+ import indielayerTheme from '../components/common/Indielayer-theme.json'
3
+
4
+ /** Theme id from {@link indielayerTheme} `name` field. */
5
+ export const INDIELAYER_THEME = 'Indielayer' as const
6
+
7
+ /** Languages used in docs code snippets. */
8
+ export const DOCS_CODE_LANGS = ['js', 'ts', 'vue-html', 'bash', 'vue'] as const
9
+
10
+ export type DocsCodeLang = typeof DOCS_CODE_LANGS[number]
11
+
12
+ // VS Code theme JSON uses `tokenColors`; Shiki accepts it at runtime via normalization.
13
+ const theme = indielayerTheme as unknown as ThemeRegistrationRaw
14
+
15
+ /**
16
+ * Long-lived highlighter for docs code blocks.
17
+ * @see https://shiki.style/guide/install#highlighter-usage
18
+ */
19
+ export const docsHighlighter: Promise<Highlighter> = createHighlighter({
20
+ langs: [...DOCS_CODE_LANGS],
21
+ themes: [theme],
22
+ })
package/exports/nuxt.mjs CHANGED
@@ -6,7 +6,7 @@ export default defineNuxtModule({
6
6
  name: '@indielayer/ui',
7
7
  configKey: 'indielayer',
8
8
  compatibility: {
9
- nuxt: '^3.0.0',
9
+ nuxt: '>=3.0.0',
10
10
  },
11
11
  },
12
12
  defaults: {
@@ -1,6 +1,7 @@
1
1
  import { defineNuxtPlugin } from '#app'
2
2
  import { BaseTheme, injectIconsKey, injectOptionsKey, injectThemeKey, createUI } from '../src'
3
3
 
4
+ // Configure via runtimeConfig.public.indielayerOptions (theme, icons, defaults, etc.)
4
5
  export default defineNuxtPlugin((nuxtApp) => {
5
6
  const UI = createUI({
6
7
  ...nuxtApp.$config.public?.indielayerOptions,
@@ -0,0 +1,74 @@
1
+ /**
2
+ * Indielayer UI theme tokens for Tailwind CSS v4.
3
+ * Import after tailwindcss in your app stylesheet:
4
+ * @import "tailwindcss";
5
+ * @import "@indielayer/ui/tailwind.css";
6
+ */
7
+ @custom-variant dark (&:where(.dark, .dark *));
8
+
9
+ @theme inline {
10
+ --color-primary-50: rgb(var(--primary-color-50));
11
+ --color-primary-100: rgb(var(--primary-color-100));
12
+ --color-primary-200: rgb(var(--primary-color-200));
13
+ --color-primary-300: rgb(var(--primary-color-300));
14
+ --color-primary-400: rgb(var(--primary-color-400));
15
+ --color-primary-500: rgb(var(--primary-color-500));
16
+ --color-primary-600: rgb(var(--primary-color-600));
17
+ --color-primary-700: rgb(var(--primary-color-700));
18
+ --color-primary-800: rgb(var(--primary-color-800));
19
+ --color-primary-900: rgb(var(--primary-color-900));
20
+ --color-primary-950: rgb(var(--primary-color-950));
21
+
22
+ --color-secondary-50: rgb(var(--secondary-color-50));
23
+ --color-secondary-100: rgb(var(--secondary-color-100));
24
+ --color-secondary-200: rgb(var(--secondary-color-200));
25
+ --color-secondary-300: rgb(var(--secondary-color-300));
26
+ --color-secondary-400: rgb(var(--secondary-color-400));
27
+ --color-secondary-500: rgb(var(--secondary-color-500));
28
+ --color-secondary-600: rgb(var(--secondary-color-600));
29
+ --color-secondary-700: rgb(var(--secondary-color-700));
30
+ --color-secondary-800: rgb(var(--secondary-color-800));
31
+ --color-secondary-900: rgb(var(--secondary-color-900));
32
+ --color-secondary-950: rgb(var(--secondary-color-950));
33
+
34
+ --color-success-50: rgb(var(--success-color-50));
35
+ --color-success-100: rgb(var(--success-color-100));
36
+ --color-success-200: rgb(var(--success-color-200));
37
+ --color-success-300: rgb(var(--success-color-300));
38
+ --color-success-400: rgb(var(--success-color-400));
39
+ --color-success-500: rgb(var(--success-color-500));
40
+ --color-success-600: rgb(var(--success-color-600));
41
+ --color-success-700: rgb(var(--success-color-700));
42
+ --color-success-800: rgb(var(--success-color-800));
43
+ --color-success-900: rgb(var(--success-color-900));
44
+ --color-success-950: rgb(var(--success-color-950));
45
+
46
+ --color-warning-50: rgb(var(--warning-color-50));
47
+ --color-warning-100: rgb(var(--warning-color-100));
48
+ --color-warning-200: rgb(var(--warning-color-200));
49
+ --color-warning-300: rgb(var(--warning-color-300));
50
+ --color-warning-400: rgb(var(--warning-color-400));
51
+ --color-warning-500: rgb(var(--warning-color-500));
52
+ --color-warning-600: rgb(var(--warning-color-600));
53
+ --color-warning-700: rgb(var(--warning-color-700));
54
+ --color-warning-800: rgb(var(--warning-color-800));
55
+ --color-warning-900: rgb(var(--warning-color-900));
56
+ --color-warning-950: rgb(var(--warning-color-950));
57
+
58
+ --color-error-50: rgb(var(--error-color-50));
59
+ --color-error-100: rgb(var(--error-color-100));
60
+ --color-error-200: rgb(var(--error-color-200));
61
+ --color-error-300: rgb(var(--error-color-300));
62
+ --color-error-400: rgb(var(--error-color-400));
63
+ --color-error-500: rgb(var(--error-color-500));
64
+ --color-error-600: rgb(var(--error-color-600));
65
+ --color-error-700: rgb(var(--error-color-700));
66
+ --color-error-800: rgb(var(--error-color-800));
67
+ --color-error-900: rgb(var(--error-color-900));
68
+ --color-error-950: rgb(var(--error-color-950));
69
+
70
+ --color-border: rgb(var(--border-color));
71
+
72
+ --font-sans: var(--font-family-sans);
73
+ --font-mono: var(--font-family-mono);
74
+ }
@@ -1,9 +1,8 @@
1
- const s = (t, e) => {
2
- const o = t.__vccOpts || t;
3
- for (const [r, c] of e)
4
- o[r] = c;
5
- return o;
6
- };
7
- export {
8
- s as default
1
+ //#region \0plugin-vue:export-helper
2
+ var e = (e, t) => {
3
+ let n = e.__vccOpts || e;
4
+ for (let [e, r] of t) n[e] = r;
5
+ return n;
9
6
  };
7
+ //#endregion
8
+ export { e as default };
@@ -0,0 +1,17 @@
1
+ //#region \0rolldown/runtime.js
2
+ var e = Object.defineProperty, t = Object.getOwnPropertyDescriptor, n = Object.getOwnPropertyNames, r = Object.prototype.hasOwnProperty, i = (t, n) => {
3
+ let r = {};
4
+ for (var i in t) e(r, i, {
5
+ get: t[i],
6
+ enumerable: !0
7
+ });
8
+ return n || e(r, Symbol.toStringTag, { value: "Module" }), r;
9
+ }, a = (i, a, o, s) => {
10
+ if (a && typeof a == "object" || typeof a == "function") for (var c = n(a), l = 0, u = c.length, d; l < u; l++) d = c[l], !r.call(i, d) && d !== o && e(i, d, {
11
+ get: ((e) => a[e]).bind(null, d),
12
+ enumerable: !(s = t(a, d)) || s.enumerable
13
+ });
14
+ return i;
15
+ }, o = (e, t, n) => (a(e, t, "default"), n && a(n, t, "default"));
16
+ //#endregion
17
+ export { i as __exportAll, o as __reExport };