@indielayer/ui 1.18.1 → 2.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (979) hide show
  1. package/docs/App.vue +19 -4
  2. package/docs/assets/css/hljs.css +0 -1
  3. package/docs/assets/css/tailwind.css +40 -9
  4. package/docs/components/Cookies.vue +3 -1
  5. package/docs/components/common/CodePreview.vue +1 -1
  6. package/docs/components/common/CodeSnippet.vue +30 -18
  7. package/docs/components/common/DocsCopyPage.vue +200 -0
  8. package/docs/components/common/DocsHero.vue +3 -3
  9. package/docs/components/common/DocumentPage.vue +105 -50
  10. package/docs/components/common/ExampleBlocks.vue +147 -8
  11. package/docs/components/menu/DocsMenu.vue +3 -1
  12. package/docs/components/toolbar/PreToolbar.vue +1 -1
  13. package/docs/components/toolbar/Toolbar.vue +1 -1
  14. package/docs/components/toolbar/ToolbarColorToggle.vue +29 -18
  15. package/docs/components/toolbar/ToolbarSearch.vue +7 -7
  16. package/docs/composables/useDocMeta.ts +63 -4
  17. package/docs/icons.ts +3 -0
  18. package/docs/main.ts +26 -22
  19. package/docs/pages/colors.vue +11 -19
  20. package/docs/pages/component/accordion/index.vue +2 -2
  21. package/docs/pages/component/alert/index.vue +2 -2
  22. package/docs/pages/component/avatar/index.vue +4 -4
  23. package/docs/pages/component/badge/index.vue +2 -2
  24. package/docs/pages/component/breadcrumbs/index.vue +2 -2
  25. package/docs/pages/component/button/button-group.vue +3 -3
  26. package/docs/pages/component/button/index.vue +14 -7
  27. package/docs/pages/component/button/tooltip.vue +10 -0
  28. package/docs/pages/component/button/variants.vue +1 -1
  29. package/docs/pages/component/card/index.vue +2 -2
  30. package/docs/pages/component/carousel/index.vue +2 -2
  31. package/docs/pages/component/checkbox/index.vue +5 -5
  32. package/docs/pages/component/container/index.vue +2 -2
  33. package/docs/pages/component/datepicker/index.vue +2 -2
  34. package/docs/pages/component/divider/index.vue +4 -4
  35. package/docs/pages/component/drawer/index.vue +3 -3
  36. package/docs/pages/component/empty/actions.vue +11 -0
  37. package/docs/pages/component/empty/bordered.vue +7 -0
  38. package/docs/pages/component/empty/index.vue +43 -0
  39. package/docs/pages/component/empty/usage.vue +6 -0
  40. package/docs/pages/component/form/index.vue +2 -2
  41. package/docs/pages/component/form/usage.vue +36 -0
  42. package/docs/pages/component/formGroup/index.vue +3 -3
  43. package/docs/pages/component/icon/formats.vue +65 -0
  44. package/docs/pages/component/icon/index.vue +11 -4
  45. package/docs/pages/component/icon/usage.vue +52 -4
  46. package/docs/pages/component/image/index.vue +16 -2
  47. package/docs/pages/component/image/sizing.vue +42 -0
  48. package/docs/pages/component/image/states.vue +45 -0
  49. package/docs/pages/component/image/usage.vue +9 -6
  50. package/docs/pages/component/infiniteLoader/composable.vue +7 -5
  51. package/docs/pages/component/infiniteLoader/index.vue +3 -3
  52. package/docs/pages/component/infiniteLoader/usage.vue +7 -5
  53. package/docs/pages/component/input/index.vue +6 -6
  54. package/docs/pages/component/input/variants.vue +11 -0
  55. package/docs/pages/component/inputGroup/index.vue +43 -0
  56. package/docs/pages/component/inputGroup/mixed.vue +18 -0
  57. package/docs/pages/component/inputGroup/usage.vue +20 -0
  58. package/docs/pages/component/inputGroup/validation.vue +38 -0
  59. package/docs/pages/component/link/index.vue +2 -2
  60. package/docs/pages/component/loader/index.vue +2 -2
  61. package/docs/pages/component/menu/index.vue +2 -2
  62. package/docs/pages/component/modal/index.vue +3 -3
  63. package/docs/pages/component/notifications/index.vue +2 -2
  64. package/docs/pages/component/pagination/index.vue +2 -2
  65. package/docs/pages/component/popover/index.vue +2 -2
  66. package/docs/pages/component/popover/usage.vue +14 -0
  67. package/docs/pages/component/progress/index.vue +3 -3
  68. package/docs/pages/component/qrCode/index.vue +2 -2
  69. package/docs/pages/component/radio/index.vue +26 -12
  70. package/docs/pages/component/radio/payment-method.vue +28 -0
  71. package/docs/pages/component/radio/radio-button-form-group.vue +28 -0
  72. package/docs/pages/component/radio/radio-button.vue +26 -0
  73. package/docs/pages/component/scroll/index.vue +3 -3
  74. package/docs/pages/component/select/index.vue +5 -5
  75. package/docs/pages/component/skeleton/index.vue +2 -2
  76. package/docs/pages/component/skeleton/usage.vue +1 -1
  77. package/docs/pages/component/slider/index.vue +2 -2
  78. package/docs/pages/component/spacer/index.vue +2 -2
  79. package/docs/pages/component/spinner/index.vue +3 -3
  80. package/docs/pages/component/stepper/index.vue +9 -2
  81. package/docs/pages/component/stepper/usage.vue +56 -12
  82. package/docs/pages/component/stepper/wizard.vue +126 -0
  83. package/docs/pages/component/table/index.vue +5 -5
  84. package/docs/pages/component/table/states.vue +5 -3
  85. package/docs/pages/component/table/virtual.vue +1 -1
  86. package/docs/pages/component/tabs/index.vue +2 -2
  87. package/docs/pages/component/tabs/usage.vue +26 -0
  88. package/docs/pages/component/tag/index.vue +2 -2
  89. package/docs/pages/component/textarea/index.vue +4 -4
  90. package/docs/pages/component/toggle/index.vue +4 -4
  91. package/docs/pages/component/tooltip/content.vue +11 -0
  92. package/docs/pages/component/tooltip/index.vue +30 -2
  93. package/docs/pages/component/tooltip/placement.vue +18 -0
  94. package/docs/pages/component/tooltip/states.vue +5 -0
  95. package/docs/pages/component/tooltip/toggle-tip.vue +6 -0
  96. package/docs/pages/component/tooltip/usage.vue +8 -9
  97. package/docs/pages/component/upload/index.vue +2 -2
  98. package/docs/pages/component/upload/usage.vue +1 -0
  99. package/docs/pages/component/virtualGrid/index.vue +2 -2
  100. package/docs/pages/component/virtualGrid/usage.vue +5 -2
  101. package/docs/pages/component/virtualList/dynamicHeight.vue +8 -8
  102. package/docs/pages/component/virtualList/index.vue +3 -3
  103. package/docs/pages/component/virtualList/usage.vue +5 -2
  104. package/docs/pages/icons.vue +2 -2
  105. package/docs/pages/index.vue +30 -33
  106. package/docs/router/index.ts +39 -44
  107. package/docs/search/components.json +1 -1
  108. package/docs/search/index.json +1 -1
  109. package/docs/utils/shikiHighlighter.ts +22 -0
  110. package/exports/nuxt.mjs +1 -1
  111. package/exports/nuxt.plugin.js +1 -0
  112. package/exports/tailwind.css +74 -0
  113. package/lib/_virtual/_plugin-vue_export-helper.js +7 -8
  114. package/lib/_virtual/_rolldown/runtime.js +17 -0
  115. package/lib/common/buttonGroupRadius.d.ts +3 -0
  116. package/lib/common/buttonGroupRadius.js +6 -0
  117. package/lib/common/colors.js +370 -19
  118. package/lib/common/icons.d.ts +1 -0
  119. package/lib/common/icons.js +4 -22
  120. package/lib/common/inputGroupRadius.d.ts +2 -0
  121. package/lib/common/inputGroupRadius.js +6 -0
  122. package/lib/common/props.d.ts +27 -0
  123. package/lib/common/props.js +19 -0
  124. package/lib/common/utils.js +17 -24
  125. package/lib/componentDefaults.d.ts +18 -0
  126. package/lib/components/accordion/Accordion.js +5 -0
  127. package/lib/components/accordion/Accordion.vue.d.ts +45 -13
  128. package/lib/components/accordion/Accordion.vue_vue_type_script_setup_true_lang.js +49 -0
  129. package/lib/components/accordion/AccordionItem.js +5 -0
  130. package/lib/components/accordion/AccordionItem.vue.d.ts +36 -10
  131. package/lib/components/accordion/AccordionItem.vue_vue_type_script_setup_true_lang.js +163 -0
  132. package/lib/components/accordion/theme/Accordion.base.theme.js +4 -8
  133. package/lib/components/accordion/theme/Accordion.carbon.theme.js +4 -4
  134. package/lib/components/accordion/theme/AccordionItem.base.theme.js +14 -16
  135. package/lib/components/accordion/theme/AccordionItem.carbon.theme.js +4 -4
  136. package/lib/components/alert/Alert.js +6 -0
  137. package/lib/components/alert/Alert.vue.d.ts +39 -22
  138. package/lib/components/alert/Alert.vue_vue_type_script_setup_true_lang.js +68 -0
  139. package/lib/components/alert/Alert.vue_vue_type_style_index_0_lang.module.js +6 -0
  140. package/lib/components/alert/theme/Alert.base.theme.js +38 -40
  141. package/lib/components/alert/theme/Alert.carbon.theme.js +38 -40
  142. package/lib/components/avatar/Avatar.js +6 -0
  143. package/lib/components/avatar/Avatar.vue.d.ts +51 -17
  144. package/lib/components/avatar/Avatar.vue_vue_type_script_setup_true_lang.js +77 -0
  145. package/lib/components/avatar/Avatar.vue_vue_type_style_index_0_lang.module.js +3 -0
  146. package/lib/components/avatar/theme/Avatar.base.theme.js +17 -21
  147. package/lib/components/avatar/theme/Avatar.carbon.theme.js +4 -4
  148. package/lib/components/badge/Badge.js +5 -0
  149. package/lib/components/badge/Badge.vue.d.ts +60 -17
  150. package/lib/components/badge/Badge.vue_vue_type_script_setup_true_lang.js +93 -0
  151. package/lib/components/badge/theme/Badge.base.theme.js +9 -11
  152. package/lib/components/badge/theme/Badge.carbon.theme.js +4 -4
  153. package/lib/components/breadcrumbs/Breadcrumbs.js +5 -0
  154. package/lib/components/breadcrumbs/Breadcrumbs.vue.d.ts +36 -14
  155. package/lib/components/breadcrumbs/Breadcrumbs.vue_vue_type_script_setup_true_lang.js +70 -0
  156. package/lib/components/breadcrumbs/theme/Breadcrumbs.base.theme.js +8 -10
  157. package/lib/components/breadcrumbs/theme/Breadcrumbs.carbon.theme.js +7 -9
  158. package/lib/components/button/Button.js +6 -0
  159. package/lib/components/button/Button.vue.d.ts +161 -56
  160. package/lib/components/button/Button.vue_vue_type_script_setup_true_lang.js +261 -0
  161. package/lib/components/button/Button.vue_vue_type_style_index_0_scoped_486cb9c0_lang.module.js +6 -0
  162. package/lib/components/button/ButtonGroup.js +5 -0
  163. package/lib/components/button/ButtonGroup.vue.d.ts +75 -30
  164. package/lib/components/button/ButtonGroup.vue_vue_type_script_setup_true_lang.js +56 -0
  165. package/lib/components/button/theme/Button.base.theme.js +140 -140
  166. package/lib/components/button/theme/Button.carbon.theme.js +137 -137
  167. package/lib/components/button/theme/ButtonGroup.base.theme.js +4 -8
  168. package/lib/components/button/theme/ButtonGroup.carbon.theme.js +4 -8
  169. package/lib/components/card/Card.js +5 -0
  170. package/lib/components/card/Card.vue.d.ts +6 -4
  171. package/lib/components/card/Card.vue_vue_type_script_setup_true_lang.js +28 -0
  172. package/lib/components/card/theme/Card.base.theme.js +4 -8
  173. package/lib/components/card/theme/Card.carbon.theme.js +4 -4
  174. package/lib/components/carousel/Carousel.js +5 -0
  175. package/lib/components/carousel/Carousel.vue.d.ts +24 -7
  176. package/lib/components/carousel/Carousel.vue_vue_type_script_setup_true_lang.js +109 -0
  177. package/lib/components/carousel/CarouselSlide.js +6 -0
  178. package/lib/components/carousel/CarouselSlide.vue.d.ts +3 -0
  179. package/lib/components/carousel/CarouselSlide.vue_vue_type_script_setup_true_lang.js +28 -0
  180. package/lib/components/carousel/CarouselSlide.vue_vue_type_style_index_0_scoped_4f559831_lang.module.js +4 -0
  181. package/lib/components/carousel/theme/Carousel.base.theme.js +14 -16
  182. package/lib/components/carousel/theme/Carousel.carbon.theme.js +4 -4
  183. package/lib/components/carousel/theme/CarouselSlide.base.theme.js +4 -8
  184. package/lib/components/carousel/theme/CarouselSlide.carbon.theme.js +4 -4
  185. package/lib/components/checkbox/Checkbox.js +6 -0
  186. package/lib/components/checkbox/Checkbox.vue.d.ts +201 -49
  187. package/lib/components/checkbox/Checkbox.vue_vue_type_script_setup_true_lang.js +146 -0
  188. package/lib/components/checkbox/Checkbox.vue_vue_type_style_index_0_lang.module.js +4 -0
  189. package/lib/components/checkbox/theme/Checkbox.base.theme.js +58 -58
  190. package/lib/components/checkbox/theme/Checkbox.carbon.theme.js +58 -58
  191. package/lib/components/container/Container.js +5 -0
  192. package/lib/components/container/Container.vue.d.ts +6 -0
  193. package/lib/components/container/Container.vue_vue_type_script_setup_true_lang.js +31 -0
  194. package/lib/components/container/theme/Container.base.theme.js +7 -11
  195. package/lib/components/container/theme/Container.carbon.theme.js +4 -4
  196. package/lib/components/datepicker/Datepicker.js +6 -0
  197. package/lib/components/datepicker/Datepicker.vue.d.ts +471 -41
  198. package/lib/components/datepicker/Datepicker.vue_vue_type_script_setup_true_lang.js +779 -0
  199. package/lib/components/datepicker/theme/Datepicker.base.theme.js +26 -61
  200. package/lib/components/datepicker/theme/Datepicker.carbon.theme.js +4 -4
  201. package/lib/components/divider/Divider.js +5 -0
  202. package/lib/components/divider/Divider.vue.d.ts +16 -9
  203. package/lib/components/divider/Divider.vue_vue_type_script_setup_true_lang.js +47 -0
  204. package/lib/components/divider/theme/Divider.base.theme.js +8 -10
  205. package/lib/components/divider/theme/Divider.carbon.theme.js +4 -4
  206. package/lib/components/drawer/Drawer.js +5 -0
  207. package/lib/components/drawer/Drawer.vue.d.ts +39 -6
  208. package/lib/components/drawer/Drawer.vue_vue_type_script_setup_true_lang.js +172 -0
  209. package/lib/components/drawer/theme/Drawer.base.theme.js +7 -9
  210. package/lib/components/drawer/theme/Drawer.carbon.theme.js +4 -4
  211. package/lib/components/empty/Empty.js +5 -0
  212. package/lib/components/empty/Empty.vue.d.ts +86 -0
  213. package/lib/components/empty/Empty.vue_vue_type_script_setup_true_lang.js +80 -0
  214. package/lib/components/empty/index.d.ts +2 -0
  215. package/lib/components/empty/theme/Empty.base.theme.d.ts +3 -0
  216. package/lib/components/empty/theme/Empty.base.theme.js +20 -0
  217. package/lib/components/empty/theme/Empty.carbon.theme.d.ts +3 -0
  218. package/lib/components/empty/theme/Empty.carbon.theme.js +5 -0
  219. package/lib/components/form/Form.js +5 -0
  220. package/lib/components/form/Form.vue.d.ts +48 -9
  221. package/lib/components/form/Form.vue_vue_type_script_setup_true_lang.js +124 -0
  222. package/lib/components/form/theme/Form.base.theme.js +10 -12
  223. package/lib/components/form/theme/Form.carbon.theme.js +10 -12
  224. package/lib/components/formGroup/FormGroup.js +5 -0
  225. package/lib/components/formGroup/FormGroup.vue.d.ts +180 -41
  226. package/lib/components/formGroup/FormGroup.vue_vue_type_script_setup_true_lang.js +97 -0
  227. package/lib/components/formGroup/theme/FormGroup.base.theme.js +7 -11
  228. package/lib/components/formGroup/theme/FormGroup.carbon.theme.js +7 -11
  229. package/lib/components/icon/Icon.js +5 -0
  230. package/lib/components/icon/Icon.vue.d.ts +12 -4
  231. package/lib/components/icon/Icon.vue_vue_type_script_setup_true_lang.js +88 -0
  232. package/lib/components/icon/theme/Icon.base.theme.js +4 -11
  233. package/lib/components/icon/theme/Icon.carbon.theme.js +4 -11
  234. package/lib/components/image/Image.js +5 -0
  235. package/lib/components/image/Image.vue.d.ts +12 -3
  236. package/lib/components/image/Image.vue_vue_type_script_setup_true_lang.js +29 -0
  237. package/lib/components/image/theme/Image.base.theme.js +4 -8
  238. package/lib/components/image/theme/Image.carbon.theme.js +4 -4
  239. package/lib/components/index.d.ts +3 -0
  240. package/lib/components/index.js +128 -120
  241. package/lib/components/input/Input.js +5 -0
  242. package/lib/components/input/Input.vue.d.ts +308 -83
  243. package/lib/components/input/Input.vue_vue_type_script_setup_true_lang.js +276 -0
  244. package/lib/components/input/theme/Input.base.theme.js +22 -16
  245. package/lib/components/input/theme/Input.carbon.theme.js +21 -16
  246. package/lib/components/inputFooter/InputFooter.js +5 -0
  247. package/lib/components/inputFooter/InputFooter.vue.d.ts +52 -18
  248. package/lib/components/inputFooter/InputFooter.vue_vue_type_script_setup_true_lang.js +50 -0
  249. package/lib/components/inputFooter/theme/InputFooter.base.theme.js +10 -12
  250. package/lib/components/inputFooter/theme/InputFooter.carbon.theme.js +10 -12
  251. package/lib/components/inputGroup/InputGroup.js +5 -0
  252. package/lib/components/inputGroup/InputGroup.vue.d.ts +296 -0
  253. package/lib/components/inputGroup/InputGroup.vue_vue_type_script_setup_true_lang.js +125 -0
  254. package/lib/components/inputGroup/index.d.ts +2 -0
  255. package/lib/components/inputGroup/theme/InputGroup.base.theme.d.ts +3 -0
  256. package/lib/components/inputGroup/theme/InputGroup.base.theme.js +4 -0
  257. package/lib/components/inputGroup/theme/InputGroup.carbon.theme.d.ts +3 -0
  258. package/lib/components/inputGroup/theme/InputGroup.carbon.theme.js +5 -0
  259. package/lib/components/label/Label.js +5 -0
  260. package/lib/components/label/Label.vue.d.ts +83 -20
  261. package/lib/components/label/Label.vue_vue_type_script_setup_true_lang.js +79 -0
  262. package/lib/components/label/theme/Label.base.theme.js +13 -15
  263. package/lib/components/label/theme/Label.carbon.theme.js +10 -12
  264. package/lib/components/link/Link.js +6 -0
  265. package/lib/components/link/Link.vue.d.ts +27 -15
  266. package/lib/components/link/Link.vue_vue_type_script_setup_true_lang.js +52 -0
  267. package/lib/components/link/Link.vue_vue_type_style_index_0_scoped_3ee61e03_lang.module.js +6 -0
  268. package/lib/components/link/theme/Link.base.theme.js +18 -24
  269. package/lib/components/link/theme/Link.carbon.theme.js +18 -24
  270. package/lib/components/loader/Loader.js +5 -0
  271. package/lib/components/loader/Loader.vue.d.ts +30 -6
  272. package/lib/components/loader/Loader.vue_vue_type_script_setup_true_lang.js +69 -0
  273. package/lib/components/loader/theme/Loader.base.theme.js +9 -11
  274. package/lib/components/loader/theme/Loader.carbon.theme.js +9 -11
  275. package/lib/components/menu/Menu.js +5 -0
  276. package/lib/components/menu/Menu.vue.d.ts +57 -17
  277. package/lib/components/menu/Menu.vue_vue_type_script_setup_true_lang.js +194 -0
  278. package/lib/components/menu/MenuItem.js +6 -0
  279. package/lib/components/menu/MenuItem.vue.d.ts +204 -53
  280. package/lib/components/menu/MenuItem.vue_vue_type_script_setup_true_lang.js +210 -0
  281. package/lib/components/menu/MenuItem.vue_vue_type_style_index_0_scoped_5aebaff3_lang.module.js +7 -0
  282. package/lib/components/menu/theme/Menu.base.theme.js +4 -8
  283. package/lib/components/menu/theme/Menu.carbon.theme.js +4 -4
  284. package/lib/components/menu/theme/MenuItem.base.theme.js +71 -75
  285. package/lib/components/menu/theme/MenuItem.carbon.theme.js +4 -4
  286. package/lib/components/modal/Modal.js +5 -0
  287. package/lib/components/modal/Modal.vue.d.ts +177 -39
  288. package/lib/components/modal/Modal.vue_vue_type_script_setup_true_lang.js +275 -0
  289. package/lib/components/modal/theme/Modal.base.theme.js +25 -27
  290. package/lib/components/modal/theme/Modal.carbon.theme.js +27 -29
  291. package/lib/components/notifications/Notifications.js +5 -0
  292. package/lib/components/notifications/Notifications.vue.d.ts +24 -0
  293. package/lib/components/notifications/Notifications.vue_vue_type_script_setup_true_lang.js +261 -0
  294. package/lib/components/notifications/theme/Notifications.base.theme.js +8 -10
  295. package/lib/components/notifications/theme/Notifications.carbon.theme.js +8 -10
  296. package/lib/components/pagination/Pagination.js +5 -0
  297. package/lib/components/pagination/Pagination.vue.d.ts +15 -4
  298. package/lib/components/pagination/Pagination.vue_vue_type_script_setup_true_lang.js +156 -0
  299. package/lib/components/pagination/PaginationItem.js +5 -0
  300. package/lib/components/pagination/PaginationItem.vue.d.ts +21 -7
  301. package/lib/components/pagination/PaginationItem.vue_vue_type_script_setup_true_lang.js +49 -0
  302. package/lib/components/pagination/theme/Pagination.base.theme.js +12 -12
  303. package/lib/components/pagination/theme/Pagination.carbon.theme.js +4 -4
  304. package/lib/components/pagination/theme/PaginationItem.base.theme.js +4 -8
  305. package/lib/components/pagination/theme/PaginationItem.carbon.theme.js +4 -4
  306. package/lib/components/popover/Popover.js +6 -0
  307. package/lib/components/popover/Popover.vue.d.ts +204 -45
  308. package/lib/components/popover/Popover.vue_vue_type_script_setup_true_lang.js +280 -0
  309. package/lib/components/popover/PopoverContainer.js +5 -0
  310. package/lib/components/popover/PopoverContainer.vue.d.ts +3 -0
  311. package/lib/components/popover/PopoverContainer.vue_vue_type_script_setup_true_lang.js +24 -0
  312. package/lib/components/popover/PopoverContentBoundary.js +5 -0
  313. package/lib/components/popover/PopoverContentBoundary.vue.d.ts +9 -0
  314. package/lib/components/popover/PopoverContentBoundary.vue_vue_type_script_setup_true_lang.js +18 -0
  315. package/lib/components/popover/theme/Popover.base.theme.js +7 -9
  316. package/lib/components/popover/theme/Popover.carbon.theme.js +4 -4
  317. package/lib/components/popover/theme/PopoverContainer.base.theme.js +4 -8
  318. package/lib/components/popover/theme/PopoverContainer.carbon.theme.js +4 -8
  319. package/lib/components/progress/Progress.js +5 -0
  320. package/lib/components/progress/Progress.vue.d.ts +15 -8
  321. package/lib/components/progress/Progress.vue_vue_type_script_setup_true_lang.js +41 -0
  322. package/lib/components/progress/theme/Progress.base.theme.js +13 -17
  323. package/lib/components/progress/theme/Progress.carbon.theme.js +4 -4
  324. package/lib/components/qrCode/QrCode.js +5 -0
  325. package/lib/components/qrCode/QrCode.vue.d.ts +24 -3
  326. package/lib/components/qrCode/QrCode.vue_vue_type_script_setup_true_lang.js +87 -0
  327. package/lib/components/qrCode/qrcodegen.js +766 -571
  328. package/lib/components/qrCode/theme/QrCode.base.theme.js +4 -8
  329. package/lib/components/qrCode/theme/QrCode.carbon.theme.js +4 -4
  330. package/lib/components/radio/Radio.js +6 -0
  331. package/lib/components/radio/Radio.vue.d.ts +189 -46
  332. package/lib/components/radio/Radio.vue_vue_type_script_setup_true_lang.js +124 -0
  333. package/lib/components/radio/Radio.vue_vue_type_style_index_0_lang.module.js +7 -0
  334. package/lib/components/radio/theme/Radio.base.theme.js +69 -69
  335. package/lib/components/radio/theme/Radio.carbon.theme.js +63 -63
  336. package/lib/components/radioButton/RadioButton.js +6 -0
  337. package/lib/components/radioButton/RadioButton.vue.d.ts +326 -0
  338. package/lib/components/radioButton/RadioButton.vue_vue_type_script_setup_true_lang.js +91 -0
  339. package/lib/components/radioButton/RadioButton.vue_vue_type_style_index_0_lang.module.js +6 -0
  340. package/lib/components/radioButton/index.d.ts +2 -0
  341. package/lib/components/radioButton/theme/RadioButton.base.theme.d.ts +3 -0
  342. package/lib/components/radioButton/theme/RadioButton.base.theme.js +110 -0
  343. package/lib/components/radioButton/theme/RadioButton.carbon.theme.d.ts +3 -0
  344. package/lib/components/radioButton/theme/RadioButton.carbon.theme.js +15 -0
  345. package/lib/components/scroll/Scroll.js +6 -0
  346. package/lib/components/scroll/Scroll.vue.d.ts +12 -12
  347. package/lib/components/scroll/Scroll.vue_vue_type_script_setup_true_lang.js +53 -0
  348. package/lib/components/scroll/Scroll.vue_vue_type_style_index_0_lang.module.js +12 -0
  349. package/lib/components/scroll/theme/Scroll.base.theme.js +4 -8
  350. package/lib/components/scroll/theme/Scroll.carbon.theme.js +4 -4
  351. package/lib/components/select/Select.js +5 -0
  352. package/lib/components/select/Select.vue.d.ts +714 -383
  353. package/lib/components/select/Select.vue_vue_type_script_setup_true_lang.js +583 -0
  354. package/lib/components/select/theme/Select.base.theme.js +26 -25
  355. package/lib/components/select/theme/Select.carbon.theme.js +23 -23
  356. package/lib/components/skeleton/Skeleton.js +5 -0
  357. package/lib/components/skeleton/Skeleton.vue.d.ts +6 -0
  358. package/lib/components/skeleton/Skeleton.vue_vue_type_script_setup_true_lang.js +33 -0
  359. package/lib/components/skeleton/theme/Skeleton.base.theme.js +7 -11
  360. package/lib/components/skeleton/theme/Skeleton.carbon.theme.js +4 -4
  361. package/lib/components/slider/Slider.js +7 -0
  362. package/lib/components/slider/Slider.vue.d.ts +180 -39
  363. package/lib/components/slider/Slider.vue_vue_type_script_setup_true_lang.js +117 -0
  364. package/lib/components/slider/theme/Slider.base.theme.js +17 -19
  365. package/lib/components/slider/theme/Slider.carbon.theme.js +4 -4
  366. package/lib/components/spacer/Spacer.js +9 -11
  367. package/lib/components/spinner/Spinner.js +5 -0
  368. package/lib/components/spinner/Spinner.vue.d.ts +6 -0
  369. package/lib/components/spinner/Spinner.vue_vue_type_script_setup_true_lang.js +25 -0
  370. package/lib/components/stepper/Stepper.js +5 -0
  371. package/lib/components/stepper/Stepper.vue.d.ts +242 -41
  372. package/lib/components/stepper/Stepper.vue_vue_type_script_setup_true_lang.js +425 -0
  373. package/lib/components/stepper/index.d.ts +1 -1
  374. package/lib/components/stepper/theme/Stepper.base.theme.js +33 -20
  375. package/lib/components/stepper/theme/Stepper.carbon.theme.js +4 -4
  376. package/lib/components/tab/Tab.js +5 -0
  377. package/lib/components/tab/Tab.vue.d.ts +113 -33
  378. package/lib/components/tab/Tab.vue_vue_type_script_setup_true_lang.js +210 -0
  379. package/lib/components/tab/TabGroup.js +5 -0
  380. package/lib/components/tab/TabGroup.vue.d.ts +53 -20
  381. package/lib/components/tab/TabGroup.vue_vue_type_script_setup_true_lang.js +166 -0
  382. package/lib/components/tab/theme/Tab.base.theme.js +13 -15
  383. package/lib/components/tab/theme/Tab.carbon.theme.js +16 -18
  384. package/lib/components/tab/theme/TabGroup.base.theme.js +30 -30
  385. package/lib/components/tab/theme/TabGroup.carbon.theme.js +30 -30
  386. package/lib/components/table/Table.js +5 -0
  387. package/lib/components/table/Table.vue.d.ts +94 -313
  388. package/lib/components/table/Table.vue_vue_type_script_setup_true_lang.js +440 -0
  389. package/lib/components/table/TableBody.js +9 -14
  390. package/lib/components/table/TableCell.js +5 -0
  391. package/lib/components/table/TableCell.vue.d.ts +60 -20
  392. package/lib/components/table/TableCell.vue_vue_type_script_setup_true_lang.js +96 -0
  393. package/lib/components/table/TableHead.js +5 -0
  394. package/lib/components/table/TableHead.vue.d.ts +4 -6
  395. package/lib/components/table/TableHead.vue_vue_type_script_setup_true_lang.js +18 -0
  396. package/lib/components/table/TableHeader.js +5 -0
  397. package/lib/components/table/TableHeader.vue.d.ts +21 -7
  398. package/lib/components/table/TableHeader.vue_vue_type_script_setup_true_lang.js +84 -0
  399. package/lib/components/table/TableRow.js +5 -0
  400. package/lib/components/table/TableRow.vue.d.ts +24 -15
  401. package/lib/components/table/TableRow.vue_vue_type_script_setup_true_lang.js +44 -0
  402. package/lib/components/table/theme/Table.base.theme.js +11 -13
  403. package/lib/components/table/theme/Table.carbon.theme.js +11 -13
  404. package/lib/components/table/theme/TableCell.base.theme.js +7 -11
  405. package/lib/components/table/theme/TableCell.carbon.theme.js +7 -11
  406. package/lib/components/table/theme/TableHead.base.theme.js +10 -12
  407. package/lib/components/table/theme/TableHead.carbon.theme.js +10 -12
  408. package/lib/components/table/theme/TableHeader.base.theme.js +14 -16
  409. package/lib/components/table/theme/TableHeader.carbon.theme.js +10 -12
  410. package/lib/components/table/theme/TableRow.base.theme.js +7 -11
  411. package/lib/components/table/theme/TableRow.carbon.theme.js +7 -11
  412. package/lib/components/tag/Tag.js +5 -0
  413. package/lib/components/tag/Tag.vue.d.ts +45 -22
  414. package/lib/components/tag/Tag.vue_vue_type_script_setup_true_lang.js +76 -0
  415. package/lib/components/tag/theme/Tag.base.theme.js +21 -23
  416. package/lib/components/tag/theme/Tag.carbon.theme.js +21 -23
  417. package/lib/components/textarea/Textarea.js +5 -0
  418. package/lib/components/textarea/Textarea.vue.d.ts +263 -83
  419. package/lib/components/textarea/Textarea.vue_vue_type_script_setup_true_lang.js +222 -0
  420. package/lib/components/textarea/theme/Textarea.base.theme.js +17 -13
  421. package/lib/components/textarea/theme/Textarea.carbon.theme.js +16 -13
  422. package/lib/components/themeProvider/ThemeProvider.js +5 -0
  423. package/lib/components/themeProvider/ThemeProvider.vue.d.ts +10 -4
  424. package/lib/components/themeProvider/ThemeProvider.vue_vue_type_script_setup_true_lang.js +20 -0
  425. package/lib/components/toggle/Toggle.js +5 -0
  426. package/lib/components/toggle/Toggle.vue.d.ts +177 -43
  427. package/lib/components/toggle/Toggle.vue_vue_type_script_setup_true_lang.js +105 -0
  428. package/lib/components/toggle/theme/Toggle.base.theme.js +23 -28
  429. package/lib/components/toggle/theme/Toggle.carbon.theme.js +4 -4
  430. package/lib/components/tooltip/ToggleTip.js +5 -0
  431. package/lib/components/tooltip/ToggleTip.vue.d.ts +24 -6
  432. package/lib/components/tooltip/ToggleTip.vue_vue_type_script_setup_true_lang.js +32 -0
  433. package/lib/components/tooltip/Tooltip.js +5 -0
  434. package/lib/components/tooltip/Tooltip.vue.d.ts +30 -6
  435. package/lib/components/tooltip/Tooltip.vue_vue_type_script_setup_true_lang.js +117 -0
  436. package/lib/components/tooltip/theme/Tooltip.base.theme.js +4 -8
  437. package/lib/components/tooltip/theme/Tooltip.carbon.theme.js +4 -4
  438. package/lib/components/upload/Upload.js +5 -0
  439. package/lib/components/upload/Upload.vue.d.ts +272 -66
  440. package/lib/components/upload/Upload.vue_vue_type_script_setup_true_lang.js +292 -0
  441. package/lib/components/upload/fileAccept.d.ts +6 -0
  442. package/lib/components/upload/fileAccept.js +17 -0
  443. package/lib/components/upload/theme/Upload.base.theme.js +4 -8
  444. package/lib/components/upload/theme/Upload.carbon.theme.js +4 -4
  445. package/lib/composables/index.d.ts +1 -0
  446. package/lib/composables/keys.d.ts +2 -0
  447. package/lib/composables/keys.js +4 -12
  448. package/lib/composables/resolveComponentDefaults.d.ts +4 -0
  449. package/lib/composables/resolveComponentDefaults.js +15 -0
  450. package/lib/composables/useCSS.js +29 -25
  451. package/lib/composables/useColors.d.ts +1 -0
  452. package/lib/composables/useColors.js +45 -51
  453. package/lib/composables/useCommon.d.ts +1 -0
  454. package/lib/composables/useCommon.js +16 -17
  455. package/lib/composables/useFocusTrap.js +50 -53
  456. package/lib/composables/useInputtable.d.ts +57 -12
  457. package/lib/composables/useInputtable.js +177 -113
  458. package/lib/composables/useInteractive.d.ts +13 -3
  459. package/lib/composables/useInteractive.js +24 -20
  460. package/lib/composables/useNotifications.js +8 -8
  461. package/lib/composables/useTheme.js +44 -56
  462. package/lib/composables/useVirtualList.d.ts +1 -2
  463. package/lib/composables/useVirtualList.js +120 -115
  464. package/lib/create.d.ts +2 -0
  465. package/lib/create.js +21 -24
  466. package/lib/index.d.ts +1 -0
  467. package/lib/index.js +87 -169
  468. package/lib/index.umd.js +56 -41
  469. package/lib/install.js +14 -18
  470. package/lib/node_modules/.pnpm/@floating-ui_core@1.5.3/node_modules/@floating-ui/core/dist/floating-ui.core.js +321 -489
  471. 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
  472. package/lib/node_modules/.pnpm/@floating-ui_utils@0.2.1/node_modules/@floating-ui/utils/dist/floating-ui.utils.js +99 -115
  473. 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
  474. 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
  475. 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
  476. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/_lib/addLeadingZeros.js +5 -6
  477. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/_lib/defaultOptions.js +6 -6
  478. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/_lib/format/formatters.js +378 -513
  479. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/_lib/format/lightFormatters.js +42 -58
  480. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/_lib/format/longFormatters.js +39 -51
  481. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/_lib/getTimezoneOffsetInMilliseconds.js +7 -17
  482. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/_lib/normalizeDates.js +7 -10
  483. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/_lib/normalizeInterval.js +10 -7
  484. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/_lib/protectedTokens.js +19 -17
  485. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/add.js +10 -19
  486. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/addDays.js +8 -9
  487. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/addHours.js +7 -8
  488. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/addMilliseconds.js +7 -8
  489. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/addMonths.js +11 -20
  490. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/addQuarters.js +6 -7
  491. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/addYears.js +6 -7
  492. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/compareAsc.js +7 -8
  493. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/constants.js +6 -9
  494. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/constructFrom.js +6 -7
  495. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/differenceInCalendarDays.js +10 -15
  496. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/differenceInCalendarYears.js +7 -12
  497. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/differenceInYears.js +11 -16
  498. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/eachDayOfInterval.js +14 -19
  499. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/eachQuarterOfInterval.js +13 -19
  500. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/endOfQuarter.js +7 -8
  501. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/endOfWeek.js +8 -10
  502. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/endOfYear.js +7 -8
  503. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/format.js +57 -58
  504. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/getDay.js +6 -7
  505. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/getDayOfYear.js +9 -10
  506. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/getDaysInMonth.js +8 -9
  507. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/getDefaultOptions.js +6 -7
  508. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/getHours.js +6 -7
  509. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/getISODay.js +7 -8
  510. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/getISOWeek.js +10 -11
  511. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/getISOWeekYear.js +13 -14
  512. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/getMinutes.js +6 -7
  513. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/getMonth.js +6 -7
  514. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/getQuarter.js +7 -8
  515. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/getSeconds.js +6 -7
  516. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/getWeek.js +10 -11
  517. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/getWeekYear.js +14 -16
  518. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/getYear.js +6 -7
  519. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/isAfter.js +6 -7
  520. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/isBefore.js +6 -7
  521. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/isDate.js +5 -6
  522. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/isEqual.js +6 -7
  523. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/isSameQuarter.js +8 -13
  524. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/isValid.js +7 -8
  525. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/locale/_lib/buildFormatLongFn.js +8 -8
  526. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/locale/_lib/buildLocalizeFn.js +16 -17
  527. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/locale/_lib/buildMatchFn.js +19 -28
  528. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/locale/_lib/buildMatchPatternFn.js +17 -16
  529. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/locale/en-US/_lib/formatDistance.js +68 -69
  530. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/locale/en-US/_lib/formatLong.js +31 -32
  531. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/locale/en-US/_lib/formatRelative.js +11 -11
  532. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/locale/en-US/_lib/localize.js +200 -153
  533. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/locale/en-US/_lib/match.js +123 -109
  534. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/locale/en-US.js +17 -18
  535. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/Parser.js +15 -21
  536. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/Setter.js +29 -40
  537. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/constants.js +29 -48
  538. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/AMPMMidnightParser.js +45 -48
  539. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/AMPMParser.js +45 -48
  540. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/DateParser.js +63 -60
  541. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/DayOfYearParser.js +40 -50
  542. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/DayParser.js +61 -44
  543. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/DayPeriodParser.js +43 -48
  544. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/EraParser.js +24 -29
  545. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/ExtendedYearParser.js +26 -20
  546. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/FractionOfSecondParser.js +14 -21
  547. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/Hour0To11Parser.js +28 -31
  548. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/Hour0to23Parser.js +30 -31
  549. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/Hour1To24Parser.js +31 -32
  550. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/Hour1to12Parser.js +29 -32
  551. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/ISODayParser.js +73 -98
  552. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/ISOTimezoneParser.js +27 -47
  553. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/ISOTimezoneWithZParser.js +27 -47
  554. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/ISOWeekParser.js +39 -48
  555. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/ISOWeekYearParser.js +33 -39
  556. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/LocalDayParser.js +76 -73
  557. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/LocalWeekParser.js +38 -47
  558. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/LocalWeekYearParser.js +47 -68
  559. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/MinuteParser.js +22 -31
  560. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/MonthParser.js +58 -70
  561. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/QuarterParser.js +57 -69
  562. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/SecondParser.js +22 -31
  563. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/StandAloneLocalDayParser.js +76 -73
  564. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/StandAloneMonthParser.js +58 -70
  565. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/StandAloneQuarterParser.js +57 -69
  566. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/TimestampMillisecondsParser.js +14 -20
  567. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/TimestampSecondsParser.js +14 -20
  568. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers/YearParser.js +42 -48
  569. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/parsers.js +66 -66
  570. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse/_lib/utils.js +64 -93
  571. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/parse.js +61 -88
  572. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/set.js +9 -10
  573. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/setDay.js +9 -11
  574. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/setHours.js +7 -8
  575. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/setISODay.js +9 -10
  576. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/setISOWeek.js +8 -9
  577. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/setMilliseconds.js +7 -8
  578. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/setMinutes.js +7 -8
  579. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/setMonth.js +11 -12
  580. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/setSeconds.js +7 -8
  581. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/setWeek.js +8 -9
  582. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/setYear.js +8 -9
  583. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/startOfDay.js +7 -8
  584. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/startOfISOWeek.js +9 -7
  585. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/startOfISOWeekYear.js +9 -10
  586. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/startOfMonth.js +7 -8
  587. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/startOfQuarter.js +7 -8
  588. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/startOfWeek.js +8 -10
  589. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/startOfWeekYear.js +10 -12
  590. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/startOfYear.js +7 -8
  591. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/sub.js +9 -18
  592. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/subDays.js +6 -7
  593. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/subMonths.js +6 -7
  594. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/subYears.js +6 -7
  595. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/toDate.js +6 -7
  596. package/lib/node_modules/.pnpm/date-fns@4.1.0/node_modules/date-fns/transpose.js +9 -16
  597. 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
  598. 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
  599. package/lib/nuxt.mjs +1 -1
  600. package/lib/nuxt.plugin.js +1 -0
  601. package/lib/tailwind.css +74 -0
  602. package/lib/theme.d.ts +4 -1
  603. package/lib/theme.js +12 -13
  604. package/lib/themes/base/components.d.ts +3 -0
  605. package/lib/themes/base/components.js +118 -108
  606. package/lib/themes/base/index.js +10 -10
  607. package/lib/themes/base/styles.d.ts +1 -1
  608. package/lib/themes/base/styles.js +4 -91
  609. package/lib/themes/carbon/components.d.ts +3 -0
  610. package/lib/themes/carbon/components.js +118 -108
  611. package/lib/themes/carbon/index.js +23 -13
  612. package/lib/themes/carbon/styles.d.ts +1 -1
  613. package/lib/themes/carbon/styles.js +4 -87
  614. package/lib/version.d.ts +1 -1
  615. package/lib/version.js +4 -4
  616. package/lib/virtual/components/infiniteLoader/InfiniteLoader.js +5 -0
  617. package/lib/virtual/components/infiniteLoader/InfiniteLoader.vue.d.ts +27 -16
  618. package/lib/virtual/components/infiniteLoader/InfiniteLoader.vue_vue_type_script_setup_true_lang.js +38 -0
  619. package/lib/virtual/components/virtualGrid/VirtualGrid.js +5 -0
  620. package/lib/virtual/components/virtualGrid/VirtualGrid.vue.d.ts +108 -86
  621. package/lib/virtual/components/virtualGrid/VirtualGrid.vue_vue_type_script_setup_true_lang.js +264 -0
  622. package/lib/virtual/components/virtualList/VirtualList.js +5 -0
  623. package/lib/virtual/components/virtualList/VirtualList.vue.d.ts +62 -48
  624. package/lib/virtual/components/virtualList/VirtualList.vue_vue_type_script_setup_true_lang.js +190 -0
  625. package/lib/virtual/components/virtualList/isDynamicRowHeight.js +5 -5
  626. package/lib/virtual/components/virtualList/useDynamicRowHeight.js +59 -67
  627. package/lib/virtual/composables/infinite-loader/scanForUnloadedIndices.js +26 -40
  628. package/lib/virtual/composables/infinite-loader/useInfiniteLoader.js +30 -41
  629. package/lib/virtual/core/createCachedBounds.js +40 -54
  630. package/lib/virtual/core/getEstimatedSize.js +11 -21
  631. package/lib/virtual/core/getOffsetForIndex.js +17 -39
  632. package/lib/virtual/core/getStartStopIndices.js +21 -30
  633. package/lib/virtual/core/useCachedBounds.js +10 -16
  634. package/lib/virtual/core/useIsRtl.js +10 -14
  635. package/lib/virtual/core/useItemSize.js +15 -26
  636. package/lib/virtual/core/useVirtualizer.js +145 -170
  637. package/lib/virtual/utils/adjustScrollOffsetForRtl.js +15 -23
  638. package/lib/virtual/utils/assert.js +5 -6
  639. package/lib/virtual/utils/getRTLOffsetType.js +12 -12
  640. package/lib/virtual/utils/getScrollbarSize.js +10 -10
  641. package/lib/virtual/utils/isRtl.js +10 -11
  642. package/lib/virtual/utils/parseNumericStyleValue.js +10 -14
  643. package/lib/virtual/utils/shallowCompare.js +9 -13
  644. package/package.json +23 -23
  645. package/src/common/__tests__/inputGroupRadius.spec.ts +14 -0
  646. package/src/common/buttonGroupRadius.ts +16 -0
  647. package/src/common/icons.ts +1 -0
  648. package/src/common/inputGroupRadius.ts +11 -0
  649. package/src/common/props.ts +35 -0
  650. package/src/componentDefaults.ts +19 -0
  651. package/src/components/accordion/Accordion.vue +22 -4
  652. package/src/components/accordion/AccordionItem.vue +30 -3
  653. package/src/components/alert/Alert.vue +46 -26
  654. package/src/components/avatar/Avatar.vue +23 -6
  655. package/src/components/badge/Badge.vue +29 -6
  656. package/src/components/breadcrumbs/Breadcrumbs.vue +17 -5
  657. package/src/components/button/Button.vue +237 -59
  658. package/src/components/button/ButtonGroup.vue +47 -33
  659. package/src/components/button/__tests__/ Button.spec.ts +41 -0
  660. package/src/components/button/__tests__/ ButtonGroup.spec.ts +32 -0
  661. package/src/components/button/theme/Button.base.theme.ts +10 -2
  662. package/src/components/button/theme/Button.carbon.theme.ts +9 -2
  663. package/src/components/card/Card.vue +12 -2
  664. package/src/components/card/theme/Card.base.theme.ts +1 -1
  665. package/src/components/carousel/Carousel.vue +24 -2
  666. package/src/components/carousel/CarouselSlide.vue +7 -1
  667. package/src/components/checkbox/Checkbox.vue +28 -9
  668. package/src/components/checkbox/theme/Checkbox.carbon.theme.ts +1 -1
  669. package/src/components/container/Container.vue +10 -1
  670. package/src/components/datepicker/Datepicker.vue +498 -111
  671. package/src/components/datepicker/__tests__/Datepicker.spec.ts +31 -0
  672. package/src/components/divider/Divider.vue +11 -4
  673. package/src/components/divider/theme/Divider.base.theme.ts +2 -2
  674. package/src/components/drawer/Drawer.vue +27 -2
  675. package/src/components/empty/Empty.vue +101 -0
  676. package/src/components/empty/__tests__/Empty.spec.ts +11 -0
  677. package/src/components/empty/index.ts +2 -0
  678. package/src/components/empty/theme/Empty.base.theme.ts +40 -0
  679. package/src/components/empty/theme/Empty.carbon.theme.ts +7 -0
  680. package/src/components/form/Form.vue +32 -3
  681. package/src/components/formGroup/FormGroup.vue +31 -7
  682. package/src/components/formGroup/__tests__/FormGroup.spec.ts +37 -2
  683. package/src/components/formGroup/theme/FormGroup.base.theme.ts +7 -3
  684. package/src/components/formGroup/theme/FormGroup.carbon.theme.ts +7 -3
  685. package/src/components/icon/Icon.vue +6 -1
  686. package/src/components/image/Image.vue +8 -2
  687. package/src/components/index.ts +3 -0
  688. package/src/components/input/Input.vue +165 -44
  689. package/src/components/input/__tests__/Input.spec.ts +28 -1
  690. package/src/components/input/theme/Input.base.theme.ts +10 -1
  691. package/src/components/input/theme/Input.carbon.theme.ts +5 -0
  692. package/src/components/inputFooter/InputFooter.vue +23 -6
  693. package/src/components/inputGroup/InputGroup.vue +196 -0
  694. package/src/components/inputGroup/__tests__/InputGroup.spec.ts +104 -0
  695. package/src/components/inputGroup/index.ts +2 -0
  696. package/src/components/inputGroup/theme/InputGroup.base.theme.ts +9 -0
  697. package/src/components/inputGroup/theme/InputGroup.carbon.theme.ts +7 -0
  698. package/src/components/label/Label.vue +52 -8
  699. package/src/components/label/theme/Label.base.theme.ts +2 -2
  700. package/src/components/label/theme/Label.carbon.theme.ts +2 -2
  701. package/src/components/link/Link.vue +47 -31
  702. package/src/components/loader/Loader.vue +10 -2
  703. package/src/components/menu/Menu.vue +25 -5
  704. package/src/components/menu/MenuItem.vue +115 -56
  705. package/src/components/modal/Modal.vue +90 -15
  706. package/src/components/notifications/Notifications.vue +23 -0
  707. package/src/components/notifications/__tests__/Notifications.spec.ts +44 -4
  708. package/src/components/pagination/Pagination.vue +11 -1
  709. package/src/components/pagination/PaginationItem.vue +13 -2
  710. package/src/components/popover/Popover.vue +125 -33
  711. package/src/components/popover/PopoverContainer.vue +9 -1
  712. package/src/components/popover/PopoverContentBoundary.vue +32 -0
  713. package/src/components/popover/__tests__/Popover.spec.ts +51 -0
  714. package/src/components/popover/theme/PopoverContainer.base.theme.ts +1 -1
  715. package/src/components/progress/Progress.vue +10 -3
  716. package/src/components/qrCode/QrCode.vue +9 -1
  717. package/src/components/radio/Radio.vue +42 -25
  718. package/src/components/radio/theme/Radio.base.theme.ts +1 -1
  719. package/src/components/radio/theme/Radio.carbon.theme.ts +1 -1
  720. package/src/components/radioButton/RadioButton.vue +168 -0
  721. package/src/components/radioButton/__tests__/RadioButton.spec.ts +48 -0
  722. package/src/components/radioButton/index.ts +2 -0
  723. package/src/components/radioButton/theme/RadioButton.base.theme.ts +155 -0
  724. package/src/components/radioButton/theme/RadioButton.carbon.theme.ts +31 -0
  725. package/src/components/scroll/Scroll.vue +18 -5
  726. package/src/components/select/Select.vue +99 -21
  727. package/src/components/select/theme/Select.base.theme.ts +7 -1
  728. package/src/components/select/theme/Select.carbon.theme.ts +2 -0
  729. package/src/components/skeleton/Skeleton.vue +3 -0
  730. package/src/components/slider/Slider.vue +34 -8
  731. package/src/components/spacer/Spacer.tsx +1 -1
  732. package/src/components/spacer/__tests__/Spacer.spec.ts +1 -1
  733. package/src/components/spinner/Spinner.vue +2 -0
  734. package/src/components/stepper/Stepper.vue +654 -83
  735. package/src/components/stepper/__tests__/Stepper.spec.ts +199 -5
  736. package/src/components/stepper/index.ts +4 -0
  737. package/src/components/stepper/theme/Stepper.base.theme.ts +49 -19
  738. package/src/components/tab/Tab.vue +157 -63
  739. package/src/components/tab/TabGroup.vue +116 -28
  740. package/src/components/tab/__tests__/Tab.spec.ts +53 -0
  741. package/src/components/tab/__tests__/TabGroup.spec.ts +113 -0
  742. package/src/components/tab/theme/Tab.base.theme.ts +24 -2
  743. package/src/components/tab/theme/Tab.carbon.theme.ts +30 -7
  744. package/src/components/tab/theme/TabGroup.base.theme.ts +12 -9
  745. package/src/components/tab/theme/TabGroup.carbon.theme.ts +6 -2
  746. package/src/components/table/Table.vue +98 -21
  747. package/src/components/table/TableCell.vue +27 -6
  748. package/src/components/table/TableHead.vue +11 -2
  749. package/src/components/table/TableHeader.vue +18 -3
  750. package/src/components/table/TableRow.vue +19 -5
  751. package/src/components/table/__tests__/Table.spec.ts +53 -0
  752. package/src/components/table/theme/Table.carbon.theme.ts +1 -1
  753. package/src/components/tag/Tag.vue +30 -10
  754. package/src/components/textarea/Textarea.vue +117 -24
  755. package/src/components/textarea/theme/Textarea.base.theme.ts +10 -1
  756. package/src/components/textarea/theme/Textarea.carbon.theme.ts +5 -0
  757. package/src/components/themeProvider/ThemeProvider.vue +22 -7
  758. package/src/components/toggle/Toggle.vue +11 -1
  759. package/src/components/tooltip/ToggleTip.vue +12 -3
  760. package/src/components/tooltip/Tooltip.vue +19 -3
  761. package/src/components/upload/Upload.vue +50 -16
  762. package/src/components/upload/__tests__/fileAccept.spec.ts +39 -0
  763. package/src/components/upload/fileAccept.ts +29 -0
  764. package/src/composables/__tests__/resolveComponentDefaults.spec.ts +139 -0
  765. package/src/composables/index.ts +1 -0
  766. package/src/composables/keys.ts +2 -0
  767. package/src/composables/resolveComponentDefaults.ts +33 -0
  768. package/src/composables/useColors.ts +1 -0
  769. package/src/composables/useCommon.ts +1 -0
  770. package/src/composables/useFocusTrap.ts +3 -1
  771. package/src/composables/useInputtable.ts +122 -19
  772. package/src/composables/useInteractive.ts +13 -3
  773. package/src/composables/useTheme.ts +10 -3
  774. package/src/composables/useVirtualList.ts +1 -2
  775. package/src/create.ts +2 -0
  776. package/src/index.ts +1 -0
  777. package/src/theme.ts +6 -0
  778. package/src/themes/base/components.ts +3 -0
  779. package/src/themes/base/styles.ts +27 -20
  780. package/src/themes/carbon/components.ts +3 -0
  781. package/src/themes/carbon/styles.ts +24 -17
  782. package/src/version.ts +1 -1
  783. package/src/virtual/components/infiniteLoader/InfiniteLoader.vue +33 -1
  784. package/src/virtual/components/virtualGrid/VirtualGrid.vue +104 -10
  785. package/src/virtual/components/virtualList/VirtualList.test.ts +42 -4
  786. package/src/virtual/components/virtualList/VirtualList.vue +73 -8
  787. package/src/virtual/components/virtualList/useDynamicRowHeight.ts +9 -2
  788. package/src/virtual/core/useVirtualizer.ts +18 -4
  789. package/volar.d.ts +3 -0
  790. package/docs/layouts/simple.vue +0 -5
  791. package/docs/pages/component/radio/variants.vue +0 -39
  792. package/exports/tailwind.preset.js +0 -40
  793. package/lib/components/accordion/Accordion.vue.js +0 -40
  794. package/lib/components/accordion/Accordion.vue2.js +0 -4
  795. package/lib/components/accordion/AccordionItem.vue.js +0 -150
  796. package/lib/components/accordion/AccordionItem.vue2.js +0 -4
  797. package/lib/components/accordion/__tests__/Accordion.spec.d.ts +0 -1
  798. package/lib/components/alert/Alert.vue.js +0 -9
  799. package/lib/components/alert/Alert.vue2.js +0 -62
  800. package/lib/components/alert/Alert.vue3.js +0 -8
  801. package/lib/components/alert/__tests__/Alert.spec.d.ts +0 -1
  802. package/lib/components/avatar/Avatar.vue.js +0 -9
  803. package/lib/components/avatar/Avatar.vue2.js +0 -76
  804. package/lib/components/avatar/Avatar.vue3.js +0 -7
  805. package/lib/components/avatar/__tests__/Avatar.spec.d.ts +0 -1
  806. package/lib/components/badge/Badge.vue.js +0 -93
  807. package/lib/components/badge/Badge.vue2.js +0 -4
  808. package/lib/components/badge/__tests__/Badge.spec.d.ts +0 -1
  809. package/lib/components/breadcrumbs/Breadcrumbs.vue.js +0 -69
  810. package/lib/components/breadcrumbs/Breadcrumbs.vue2.js +0 -4
  811. package/lib/components/breadcrumbs/__tests__/Breadcrumbs.spec.d.ts +0 -1
  812. package/lib/components/button/Button.vue.js +0 -9
  813. package/lib/components/button/Button.vue2.js +0 -117
  814. package/lib/components/button/Button.vue3.js +0 -8
  815. package/lib/components/button/ButtonGroup.vue.js +0 -9
  816. package/lib/components/button/ButtonGroup.vue2.js +0 -53
  817. package/lib/components/button/ButtonGroup.vue3.js +0 -7
  818. package/lib/components/button/__tests__/ Button.spec.d.ts +0 -1
  819. package/lib/components/button/__tests__/ ButtonGroup.spec.d.ts +0 -1
  820. package/lib/components/card/Card.vue.js +0 -30
  821. package/lib/components/card/Card.vue2.js +0 -4
  822. package/lib/components/card/__tests__/Card.spec.d.ts +0 -1
  823. package/lib/components/carousel/Carousel.vue.js +0 -97
  824. package/lib/components/carousel/Carousel.vue2.js +0 -4
  825. package/lib/components/carousel/CarouselSlide.vue.js +0 -9
  826. package/lib/components/carousel/CarouselSlide.vue2.js +0 -32
  827. package/lib/components/carousel/CarouselSlide.vue3.js +0 -6
  828. package/lib/components/carousel/__tests__/Carousel.spec.d.ts +0 -1
  829. package/lib/components/checkbox/Checkbox.vue.js +0 -9
  830. package/lib/components/checkbox/Checkbox.vue2.js +0 -143
  831. package/lib/components/checkbox/Checkbox.vue3.js +0 -6
  832. package/lib/components/checkbox/__tests__/Checkbox.spec.d.ts +0 -1
  833. package/lib/components/container/Container.vue.js +0 -33
  834. package/lib/components/container/Container.vue2.js +0 -4
  835. package/lib/components/container/__tests__/Container.spec.d.ts +0 -1
  836. package/lib/components/datepicker/Datepicker.vue.js +0 -309
  837. package/lib/components/datepicker/Datepicker.vue2.js +0 -4
  838. package/lib/components/datepicker/Datepicker.vue3.js +0 -5
  839. package/lib/components/datepicker/__tests__/Datepicker.spec.d.ts +0 -1
  840. package/lib/components/divider/Divider.vue.js +0 -52
  841. package/lib/components/divider/Divider.vue2.js +0 -4
  842. package/lib/components/divider/__tests__/Divider.spec.d.ts +0 -1
  843. package/lib/components/drawer/Drawer.vue.js +0 -160
  844. package/lib/components/drawer/Drawer.vue2.js +0 -4
  845. package/lib/components/drawer/__tests__/Drawer.spec.d.ts +0 -1
  846. package/lib/components/form/Form.vue.js +0 -111
  847. package/lib/components/form/Form.vue2.js +0 -4
  848. package/lib/components/form/__tests__/Form.spec.d.ts +0 -1
  849. package/lib/components/formGroup/FormGroup.vue.js +0 -91
  850. package/lib/components/formGroup/FormGroup.vue2.js +0 -4
  851. package/lib/components/formGroup/__tests__/FormGroup.spec.d.ts +0 -1
  852. package/lib/components/icon/Icon.vue.js +0 -73
  853. package/lib/components/icon/Icon.vue2.js +0 -4
  854. package/lib/components/icon/__tests__/Icon.spec.d.ts +0 -1
  855. package/lib/components/image/Image.vue.js +0 -31
  856. package/lib/components/image/Image.vue2.js +0 -4
  857. package/lib/components/image/__tests__/Image.spec.d.ts +0 -1
  858. package/lib/components/input/Input.vue.js +0 -164
  859. package/lib/components/input/Input.vue2.js +0 -4
  860. package/lib/components/input/__tests__/Input.spec.d.ts +0 -1
  861. package/lib/components/inputFooter/InputFooter.vue.js +0 -43
  862. package/lib/components/inputFooter/InputFooter.vue2.js +0 -4
  863. package/lib/components/inputFooter/__tests__/InputFooter.spec.d.ts +0 -1
  864. package/lib/components/label/Label.vue.js +0 -54
  865. package/lib/components/label/Label.vue2.js +0 -4
  866. package/lib/components/label/__tests__/Label.spec.d.ts +0 -1
  867. package/lib/components/link/Link.vue.js +0 -9
  868. package/lib/components/link/Link.vue2.js +0 -47
  869. package/lib/components/link/Link.vue3.js +0 -8
  870. package/lib/components/link/__tests__/Link.spec.d.ts +0 -1
  871. package/lib/components/loader/Loader.vue.js +0 -54
  872. package/lib/components/loader/Loader.vue2.js +0 -4
  873. package/lib/components/loader/__tests__/Loader.spec.d.ts +0 -1
  874. package/lib/components/menu/Menu.vue.js +0 -141
  875. package/lib/components/menu/Menu.vue2.js +0 -4
  876. package/lib/components/menu/MenuItem.vue.js +0 -9
  877. package/lib/components/menu/MenuItem.vue2.js +0 -164
  878. package/lib/components/menu/MenuItem.vue3.js +0 -7
  879. package/lib/components/menu/__tests__/Menu.spec.d.ts +0 -1
  880. package/lib/components/menu/__tests__/MenuItem.spec.d.ts +0 -1
  881. package/lib/components/modal/Modal.vue.js +0 -211
  882. package/lib/components/modal/Modal.vue2.js +0 -4
  883. package/lib/components/modal/__tests__/Modal.spec.d.ts +0 -1
  884. package/lib/components/notifications/Notifications.vue.js +0 -266
  885. package/lib/components/notifications/Notifications.vue2.js +0 -4
  886. package/lib/components/notifications/__tests__/Notifications.spec.d.ts +0 -1
  887. package/lib/components/pagination/Pagination.vue.js +0 -131
  888. package/lib/components/pagination/Pagination.vue2.js +0 -4
  889. package/lib/components/pagination/PaginationItem.vue.js +0 -47
  890. package/lib/components/pagination/PaginationItem.vue2.js +0 -4
  891. package/lib/components/pagination/__tests__/Pagination.spec.d.ts +0 -1
  892. package/lib/components/pagination/__tests__/PaginationItem.spec.d.ts +0 -1
  893. package/lib/components/popover/Popover.vue.js +0 -134
  894. package/lib/components/popover/Popover.vue2.js +0 -4
  895. package/lib/components/popover/Popover.vue3.js +0 -5
  896. package/lib/components/popover/PopoverContainer.vue.js +0 -29
  897. package/lib/components/popover/PopoverContainer.vue2.js +0 -4
  898. package/lib/components/popover/__tests__/Popover.spec.d.ts +0 -1
  899. package/lib/components/popover/__tests__/PopoverContainer.spec.d.ts +0 -1
  900. package/lib/components/progress/Progress.vue.js +0 -50
  901. package/lib/components/progress/Progress.vue2.js +0 -4
  902. package/lib/components/progress/__tests__/Progress.spec.d.ts +0 -1
  903. package/lib/components/qrCode/QrCode.vue.js +0 -93
  904. package/lib/components/qrCode/QrCode.vue2.js +0 -4
  905. package/lib/components/qrCode/__tests__/QrCode.spec.d.ts +0 -1
  906. package/lib/components/radio/Radio.vue.js +0 -9
  907. package/lib/components/radio/Radio.vue2.js +0 -132
  908. package/lib/components/radio/Radio.vue3.js +0 -10
  909. package/lib/components/radio/__tests__/Radio.spec.d.ts +0 -1
  910. package/lib/components/scroll/Scroll.vue.js +0 -9
  911. package/lib/components/scroll/Scroll.vue2.js +0 -63
  912. package/lib/components/scroll/Scroll.vue3.js +0 -17
  913. package/lib/components/scroll/__tests__/Scroll.spec.d.ts +0 -1
  914. package/lib/components/select/Select.vue.js +0 -696
  915. package/lib/components/select/Select.vue2.js +0 -4
  916. package/lib/components/select/__tests__/Select.spec.d.ts +0 -1
  917. package/lib/components/skeleton/Skeleton.vue.js +0 -39
  918. package/lib/components/skeleton/Skeleton.vue2.js +0 -4
  919. package/lib/components/skeleton/__tests__/Skeleton.spec.d.ts +0 -1
  920. package/lib/components/slider/Slider.vue.js +0 -7
  921. package/lib/components/slider/Slider.vue2.js +0 -103
  922. package/lib/components/slider/Slider.vue3.js +0 -4
  923. package/lib/components/slider/__tests__/Slider.spec.d.ts +0 -1
  924. package/lib/components/spacer/__tests__/Spacer.spec.d.ts +0 -1
  925. package/lib/components/spinner/Spinner.vue.js +0 -27
  926. package/lib/components/spinner/Spinner.vue2.js +0 -4
  927. package/lib/components/spinner/__tests__/Spinner.spec.d.ts +0 -1
  928. package/lib/components/stepper/Stepper.vue.js +0 -129
  929. package/lib/components/stepper/Stepper.vue2.js +0 -4
  930. package/lib/components/stepper/__tests__/Stepper.spec.d.ts +0 -1
  931. package/lib/components/tab/Tab.vue.js +0 -150
  932. package/lib/components/tab/Tab.vue2.js +0 -4
  933. package/lib/components/tab/TabGroup.vue.js +0 -135
  934. package/lib/components/tab/TabGroup.vue2.js +0 -4
  935. package/lib/components/tab/__tests__/Tab.spec.d.ts +0 -1
  936. package/lib/components/tab/__tests__/TabGroup.spec.d.ts +0 -1
  937. package/lib/components/table/Table.vue.js +0 -424
  938. package/lib/components/table/Table.vue2.js +0 -4
  939. package/lib/components/table/TableCell.vue.js +0 -65
  940. package/lib/components/table/TableCell.vue2.js +0 -4
  941. package/lib/components/table/TableHead.vue.js +0 -24
  942. package/lib/components/table/TableHead.vue2.js +0 -4
  943. package/lib/components/table/TableHeader.vue.js +0 -82
  944. package/lib/components/table/TableHeader.vue2.js +0 -4
  945. package/lib/components/table/TableRow.vue.js +0 -30
  946. package/lib/components/table/TableRow.vue2.js +0 -4
  947. package/lib/components/table/__tests__/Table.spec.d.ts +0 -1
  948. package/lib/components/tag/Tag.vue.js +0 -73
  949. package/lib/components/tag/Tag.vue2.js +0 -4
  950. package/lib/components/tag/__tests__/Tag.spec.d.ts +0 -1
  951. package/lib/components/textarea/Textarea.vue.js +0 -141
  952. package/lib/components/textarea/Textarea.vue2.js +0 -4
  953. package/lib/components/textarea/__tests__/Textarea.spec.d.ts +0 -1
  954. package/lib/components/themeProvider/ThemeProvider.vue.js +0 -18
  955. package/lib/components/themeProvider/ThemeProvider.vue2.js +0 -4
  956. package/lib/components/toggle/Toggle.vue.js +0 -108
  957. package/lib/components/toggle/Toggle.vue2.js +0 -4
  958. package/lib/components/toggle/__tests__/Toggle.spec.d.ts +0 -1
  959. package/lib/components/tooltip/ToggleTip.vue.js +0 -29
  960. package/lib/components/tooltip/ToggleTip.vue2.js +0 -4
  961. package/lib/components/tooltip/Tooltip.vue.js +0 -132
  962. package/lib/components/tooltip/Tooltip.vue2.js +0 -4
  963. package/lib/components/tooltip/__tests__/ToggleTip.spec.d.ts +0 -1
  964. package/lib/components/tooltip/__tests__/Tooltip.spec.d.ts +0 -1
  965. package/lib/components/upload/Upload.vue.js +0 -275
  966. package/lib/components/upload/Upload.vue2.js +0 -4
  967. package/lib/components/upload/__tests__/Upload.spec.d.ts +0 -1
  968. 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
  969. 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
  970. 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
  971. 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
  972. 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
  973. package/lib/tailwind.preset.js +0 -40
  974. package/lib/virtual/components/infiniteLoader/InfiniteLoader.vue.js +0 -21
  975. package/lib/virtual/components/infiniteLoader/InfiniteLoader.vue2.js +0 -4
  976. package/lib/virtual/components/virtualGrid/VirtualGrid.vue.js +0 -241
  977. package/lib/virtual/components/virtualGrid/VirtualGrid.vue2.js +0 -4
  978. package/lib/virtual/components/virtualList/VirtualList.vue.js +0 -159
  979. package/lib/virtual/components/virtualList/VirtualList.vue2.js +0 -4
@@ -1,72 +1,137 @@
1
- import { type PropType, type ExtractPublicPropTypes, type Ref, nextTick } from 'vue';
1
+ import { type PropType, type ExtractPublicPropTypes, type Ref, type ComputedRef, nextTick } from 'vue';
2
2
  import { type ThemeComponent } from '../../composables/useTheme';
3
+ import type { Size } from '../../composables/useCommon';
4
+ import type { InputGroupPosition } from '../../common/inputGroupRadius';
3
5
  import XPopover from '../popover/Popover.vue';
4
6
  declare const selectProps: {
5
- placeholder: StringConstructor;
6
- options: PropType<SelectOption[]>;
7
- multiple: BooleanConstructor;
8
- multipleCheckbox: BooleanConstructor;
9
- truncate: BooleanConstructor;
10
- flat: BooleanConstructor;
11
- native: BooleanConstructor;
12
- filterable: BooleanConstructor;
13
- clearable: BooleanConstructor;
7
+ placeholder: {
8
+ type: StringConstructor;
9
+ description: string;
10
+ };
11
+ options: {
12
+ type: PropType<SelectOption[]>;
13
+ description: string;
14
+ };
15
+ multiple: import("vue").Prop<boolean | undefined>;
16
+ multipleCheckbox: import("vue").Prop<boolean | undefined>;
17
+ truncate: import("vue").Prop<boolean | undefined>;
18
+ flat: import("vue").Prop<boolean | undefined>;
19
+ native: import("vue").Prop<boolean | undefined>;
20
+ filterable: import("vue").Prop<boolean | undefined>;
21
+ clearable: import("vue").Prop<boolean | undefined>;
14
22
  filterPlaceholder: {
15
23
  type: StringConstructor;
16
24
  default: string;
25
+ description: string;
26
+ };
27
+ filterablePrefix: import("vue").Prop<boolean | undefined>;
28
+ filterableSuffix: import("vue").Prop<boolean | undefined>;
29
+ hideSelectedOptionSlots: import("vue").Prop<boolean | undefined>;
30
+ virtualList: import("vue").Prop<boolean | undefined>;
31
+ virtualListOffsetTop: {
32
+ type: NumberConstructor;
33
+ description: string;
34
+ };
35
+ virtualListOffsetBottom: {
36
+ type: NumberConstructor;
37
+ description: string;
17
38
  };
18
- filterablePrefix: BooleanConstructor;
19
- filterableSuffix: BooleanConstructor;
20
- hideSelectedOptionSlots: BooleanConstructor;
21
- virtualList: BooleanConstructor;
22
- virtualListOffsetTop: NumberConstructor;
23
- virtualListOffsetBottom: NumberConstructor;
24
39
  virtualListItemHeight: {
25
40
  type: NumberConstructor;
26
41
  default: number;
42
+ description: string;
27
43
  };
28
44
  virtualListOverscan: {
29
45
  type: NumberConstructor;
30
46
  default: number;
47
+ description: string;
48
+ };
49
+ placement: {
50
+ type: PropType<import("floating-vue").Placement>;
51
+ description: string;
31
52
  };
32
- placement: PropType<import("floating-vue").Placement>;
33
53
  modelValue: {
34
54
  readonly type: PropType<string | number | boolean | object | any[] | undefined>;
35
55
  readonly default: undefined;
56
+ readonly description: "Bound value (v-model).";
57
+ };
58
+ id: {
59
+ readonly type: StringConstructor;
60
+ readonly description: "Native id attribute for the input element.";
61
+ };
62
+ name: {
63
+ readonly type: StringConstructor;
64
+ readonly description: "Native name attribute for form submission.";
65
+ };
66
+ readonly: {
67
+ readonly type: BooleanConstructor;
68
+ readonly description: "Makes the field read-only without disabling it.";
69
+ };
70
+ required: {
71
+ readonly type: BooleanConstructor;
72
+ readonly description: "Marks the field as required for validation.";
36
73
  };
37
- id: StringConstructor;
38
- name: StringConstructor;
39
- readonly: BooleanConstructor;
40
- required: BooleanConstructor;
41
74
  validateOnInput: {
42
75
  readonly type: BooleanConstructor;
43
76
  readonly default: true;
77
+ readonly description: "Runs validation on each input event when true.";
78
+ };
79
+ label: {
80
+ readonly type: StringConstructor;
81
+ readonly description: "Visible label text for the field.";
82
+ };
83
+ helper: {
84
+ readonly type: StringConstructor;
85
+ readonly description: "Helper text shown below the field.";
86
+ };
87
+ error: {
88
+ readonly type: StringConstructor;
89
+ readonly description: "External error message; overrides rule errors when set.";
90
+ };
91
+ hideFooter: {
92
+ readonly type: BooleanConstructor;
93
+ readonly description: "Hides the footer area (helper / error).";
44
94
  };
45
- label: StringConstructor;
46
- helper: StringConstructor;
47
- error: StringConstructor;
48
- hideFooter: BooleanConstructor;
49
95
  rules: {
50
96
  readonly type: ArrayConstructor;
51
97
  readonly default: () => never[];
98
+ readonly description: "Validation rule functions or rule descriptors.";
99
+ };
100
+ tooltip: {
101
+ readonly type: StringConstructor;
102
+ readonly description: "Optional tooltip text next to the label.";
103
+ };
104
+ skipFormRegistry: {
105
+ readonly type: BooleanConstructor;
106
+ readonly description: "Skips registering this field with a parent x-form.";
107
+ };
108
+ disabled: {
109
+ readonly type: BooleanConstructor;
110
+ readonly description: "Disables interaction and applies disabled styling.";
111
+ };
112
+ loading: {
113
+ readonly type: BooleanConstructor;
114
+ readonly description: "Shows a loading indicator and blocks interaction.";
115
+ };
116
+ loadingLabel: {
117
+ readonly type: StringConstructor;
118
+ readonly description: "Accessible label announced while loading.";
52
119
  };
53
- tooltip: StringConstructor;
54
- skipFormRegistry: BooleanConstructor;
55
- disabled: BooleanConstructor;
56
- loading: BooleanConstructor;
57
- loadingLabel: StringConstructor;
58
120
  loadingStatus: {
59
121
  readonly type: PropType<import("../loader/Loader.vue").LoaderStatus>;
60
122
  readonly default: "active";
123
+ readonly description: "Loader visual status (for example active or indeterminate).";
61
124
  };
62
125
  size: {
63
- readonly type: PropType<import("../../composables/useCommon").Size>;
126
+ readonly type: PropType<Size>;
64
127
  readonly default: "md";
65
128
  readonly validator: (value: string) => boolean;
129
+ readonly description: "Control size. One of xs, sm, md, lg, xl.";
66
130
  };
67
131
  color: {
68
132
  readonly type: StringConstructor;
69
133
  readonly default: string | undefined;
134
+ readonly description: "Theme or CSS color used for the control accents.";
70
135
  };
71
136
  };
72
137
  export type SelectOption = {
@@ -82,76 +147,142 @@ export type SelectProps = ExtractPublicPropTypes<typeof selectProps>;
82
147
  type InternalClasses = 'wrapper' | 'box' | 'truncateCounter' | 'content' | 'search' | 'contentBody' | 'iconWrapper' | 'clearButton' | 'icon';
83
148
  type InternalExtraData = {
84
149
  errorInternal: Ref<boolean>;
150
+ isInsideInputGroup: boolean;
151
+ inputGroupPosition: InputGroupPosition | undefined;
152
+ isPopoverOpen: ComputedRef<boolean>;
85
153
  };
86
154
  export interface SelectTheme extends ThemeComponent<SelectProps, InternalClasses, InternalExtraData> {
87
155
  }
88
156
  declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<{
89
157
  filter: import('vue').PropType<any>;
90
- placeholder: StringConstructor;
91
- options: PropType<SelectOption[]>;
92
- multiple: BooleanConstructor;
93
- multipleCheckbox: BooleanConstructor;
94
- truncate: BooleanConstructor;
95
- flat: BooleanConstructor;
96
- native: BooleanConstructor;
97
- filterable: BooleanConstructor;
98
- clearable: BooleanConstructor;
158
+ placeholder: {
159
+ type: StringConstructor;
160
+ description: string;
161
+ };
162
+ options: {
163
+ type: PropType<SelectOption[]>;
164
+ description: string;
165
+ };
166
+ multiple: import("vue").Prop<boolean | undefined>;
167
+ multipleCheckbox: import("vue").Prop<boolean | undefined>;
168
+ truncate: import("vue").Prop<boolean | undefined>;
169
+ flat: import("vue").Prop<boolean | undefined>;
170
+ native: import("vue").Prop<boolean | undefined>;
171
+ filterable: import("vue").Prop<boolean | undefined>;
172
+ clearable: import("vue").Prop<boolean | undefined>;
99
173
  filterPlaceholder: {
100
174
  type: StringConstructor;
101
175
  default: string;
176
+ description: string;
177
+ };
178
+ filterablePrefix: import("vue").Prop<boolean | undefined>;
179
+ filterableSuffix: import("vue").Prop<boolean | undefined>;
180
+ hideSelectedOptionSlots: import("vue").Prop<boolean | undefined>;
181
+ virtualList: import("vue").Prop<boolean | undefined>;
182
+ virtualListOffsetTop: {
183
+ type: NumberConstructor;
184
+ description: string;
185
+ };
186
+ virtualListOffsetBottom: {
187
+ type: NumberConstructor;
188
+ description: string;
102
189
  };
103
- filterablePrefix: BooleanConstructor;
104
- filterableSuffix: BooleanConstructor;
105
- hideSelectedOptionSlots: BooleanConstructor;
106
- virtualList: BooleanConstructor;
107
- virtualListOffsetTop: NumberConstructor;
108
- virtualListOffsetBottom: NumberConstructor;
109
190
  virtualListItemHeight: {
110
191
  type: NumberConstructor;
111
192
  default: number;
193
+ description: string;
112
194
  };
113
195
  virtualListOverscan: {
114
196
  type: NumberConstructor;
115
197
  default: number;
198
+ description: string;
199
+ };
200
+ placement: {
201
+ type: PropType<import("floating-vue").Placement>;
202
+ description: string;
116
203
  };
117
- placement: PropType<import("floating-vue").Placement>;
118
204
  modelValue: {
119
205
  readonly type: PropType<string | number | boolean | object | any[] | undefined>;
120
206
  readonly default: undefined;
207
+ readonly description: "Bound value (v-model).";
208
+ };
209
+ id: {
210
+ readonly type: StringConstructor;
211
+ readonly description: "Native id attribute for the input element.";
212
+ };
213
+ name: {
214
+ readonly type: StringConstructor;
215
+ readonly description: "Native name attribute for form submission.";
216
+ };
217
+ readonly: {
218
+ readonly type: BooleanConstructor;
219
+ readonly description: "Makes the field read-only without disabling it.";
220
+ };
221
+ required: {
222
+ readonly type: BooleanConstructor;
223
+ readonly description: "Marks the field as required for validation.";
121
224
  };
122
- id: StringConstructor;
123
- name: StringConstructor;
124
- readonly: BooleanConstructor;
125
- required: BooleanConstructor;
126
225
  validateOnInput: {
127
226
  readonly type: BooleanConstructor;
128
227
  readonly default: true;
228
+ readonly description: "Runs validation on each input event when true.";
229
+ };
230
+ label: {
231
+ readonly type: StringConstructor;
232
+ readonly description: "Visible label text for the field.";
233
+ };
234
+ helper: {
235
+ readonly type: StringConstructor;
236
+ readonly description: "Helper text shown below the field.";
237
+ };
238
+ error: {
239
+ readonly type: StringConstructor;
240
+ readonly description: "External error message; overrides rule errors when set.";
241
+ };
242
+ hideFooter: {
243
+ readonly type: BooleanConstructor;
244
+ readonly description: "Hides the footer area (helper / error).";
129
245
  };
130
- label: StringConstructor;
131
- helper: StringConstructor;
132
- error: StringConstructor;
133
- hideFooter: BooleanConstructor;
134
246
  rules: {
135
247
  readonly type: ArrayConstructor;
136
248
  readonly default: () => never[];
249
+ readonly description: "Validation rule functions or rule descriptors.";
250
+ };
251
+ tooltip: {
252
+ readonly type: StringConstructor;
253
+ readonly description: "Optional tooltip text next to the label.";
254
+ };
255
+ skipFormRegistry: {
256
+ readonly type: BooleanConstructor;
257
+ readonly description: "Skips registering this field with a parent x-form.";
258
+ };
259
+ disabled: {
260
+ readonly type: BooleanConstructor;
261
+ readonly description: "Disables interaction and applies disabled styling.";
262
+ };
263
+ loading: {
264
+ readonly type: BooleanConstructor;
265
+ readonly description: "Shows a loading indicator and blocks interaction.";
266
+ };
267
+ loadingLabel: {
268
+ readonly type: StringConstructor;
269
+ readonly description: "Accessible label announced while loading.";
137
270
  };
138
- tooltip: StringConstructor;
139
- skipFormRegistry: BooleanConstructor;
140
- disabled: BooleanConstructor;
141
- loading: BooleanConstructor;
142
- loadingLabel: StringConstructor;
143
271
  loadingStatus: {
144
272
  readonly type: PropType<import("../loader/Loader.vue").LoaderStatus>;
145
273
  readonly default: "active";
274
+ readonly description: "Loader visual status (for example active or indeterminate).";
146
275
  };
147
276
  size: {
148
- readonly type: PropType<import("../../composables/useCommon").Size>;
277
+ readonly type: PropType<Size>;
149
278
  readonly default: "md";
150
279
  readonly validator: (value: string) => boolean;
280
+ readonly description: "Control size. One of xs, sm, md, lg, xl.";
151
281
  };
152
282
  color: {
153
283
  readonly type: StringConstructor;
154
284
  readonly default: string | undefined;
285
+ readonly description: "Theme or CSS color used for the control accents.";
155
286
  };
156
287
  }>, {
157
288
  focus: () => void | undefined;
@@ -166,8 +297,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
166
297
  disabled: boolean;
167
298
  type: string;
168
299
  color: string;
169
- size: import("../../composables/useCommon").Size;
170
- block: boolean;
300
+ size: Size;
171
301
  loading: boolean;
172
302
  loadingStatus: import("../loader/Loader.vue").LoaderStatus;
173
303
  modelValue: string | number | boolean | object | any[] | undefined;
@@ -177,17 +307,14 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
177
307
  hideFooter: boolean;
178
308
  rules: unknown[];
179
309
  skipFormRegistry: boolean;
180
- clearable: boolean;
181
310
  showPasswordToggle: boolean;
182
311
  dir: "rtl" | "ltr";
183
- showCounter: boolean;
184
312
  }> & Omit<{
185
313
  [x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
186
314
  readonly disabled: boolean;
187
315
  readonly type: string;
188
316
  readonly color: string;
189
- readonly size: import("../../composables/useCommon").Size;
190
- readonly block: boolean;
317
+ readonly size: Size;
191
318
  readonly loading: boolean;
192
319
  readonly loadingStatus: import("../loader/Loader.vue").LoaderStatus;
193
320
  readonly readonly: boolean;
@@ -196,96 +323,30 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
196
323
  readonly hideFooter: boolean;
197
324
  readonly rules: unknown[];
198
325
  readonly skipFormRegistry: boolean;
199
- readonly clearable: boolean;
200
326
  readonly showPasswordToggle: boolean;
201
327
  readonly dir: "rtl" | "ltr";
202
- readonly showCounter: boolean;
203
328
  readonly error?: string | undefined;
204
329
  readonly name?: string | undefined;
205
330
  readonly icon?: string | undefined;
206
331
  readonly iconLeft?: string | undefined;
207
332
  readonly iconRight?: string | undefined;
333
+ readonly tooltip?: string | undefined;
334
+ readonly block?: boolean | undefined;
208
335
  readonly loadingLabel?: string | undefined;
209
336
  readonly modelValue?: string | number | boolean | object | any[] | undefined;
210
337
  readonly id?: string | undefined;
211
338
  readonly label?: string | undefined;
212
339
  readonly helper?: string | undefined;
213
- readonly tooltip?: string | undefined;
214
340
  readonly placeholder?: string | undefined;
341
+ readonly clearable?: boolean | undefined;
215
342
  readonly max?: string | number | undefined;
216
343
  readonly maxlength?: string | number | undefined;
217
344
  readonly min?: string | number | undefined;
218
345
  readonly minlength?: string | number | undefined;
219
346
  readonly step?: string | number | undefined;
220
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
221
- showPasswordToggle: {
222
- type: BooleanConstructor;
223
- default: boolean;
224
- };
225
- dir: {
226
- type: PropType<"rtl" | "ltr">;
227
- default: string;
228
- };
229
- icon: StringConstructor;
230
- iconLeft: StringConstructor;
231
- iconRight: StringConstructor;
232
- max: (StringConstructor | NumberConstructor)[];
233
- maxlength: (StringConstructor | NumberConstructor)[];
234
- min: (StringConstructor | NumberConstructor)[];
235
- minlength: (StringConstructor | NumberConstructor)[];
236
- placeholder: StringConstructor;
237
- type: {
238
- type: StringConstructor;
239
- default: string;
240
- };
241
- step: (StringConstructor | NumberConstructor)[];
242
- block: BooleanConstructor;
243
- showCounter: BooleanConstructor;
244
- clearable: BooleanConstructor;
245
- modelValue: {
246
- readonly type: PropType<string | number | boolean | object | any[] | undefined>;
247
- readonly default: undefined;
248
- };
249
- id: StringConstructor;
250
- name: StringConstructor;
251
- readonly: BooleanConstructor;
252
- required: BooleanConstructor;
253
- validateOnInput: {
254
- readonly type: BooleanConstructor;
255
- readonly default: true;
256
- };
257
- label: StringConstructor;
258
- helper: StringConstructor;
259
- error: StringConstructor;
260
- hideFooter: BooleanConstructor;
261
- rules: {
262
- readonly type: ArrayConstructor;
263
- readonly default: () => never[];
264
- };
265
- tooltip: StringConstructor;
266
- skipFormRegistry: BooleanConstructor;
267
- disabled: BooleanConstructor;
268
- loading: BooleanConstructor;
269
- loadingLabel: StringConstructor;
270
- loadingStatus: {
271
- readonly type: PropType<import("../loader/Loader.vue").LoaderStatus>;
272
- readonly default: "active";
273
- };
274
- color: {
275
- readonly type: StringConstructor;
276
- readonly default: string | undefined;
277
- };
278
- size: {
279
- readonly type: PropType<import("../../composables/useCommon").Size>;
280
- readonly default: "md";
281
- readonly validator: (value: string) => boolean;
282
- };
283
- }>> & Readonly<{
284
- [x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
285
- }>, "disabled" | "type" | "color" | "size" | "block" | "loading" | "loadingStatus" | "modelValue" | "readonly" | "required" | "validateOnInput" | "hideFooter" | "rules" | "skipFormRegistry" | "clearable" | "showPasswordToggle" | "dir" | "showCounter">;
286
- $attrs: {
287
- [x: string]: unknown;
288
- };
347
+ readonly showCounter?: boolean | undefined;
348
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "type" | "color" | "size" | "loading" | "loadingStatus" | "modelValue" | "readonly" | "required" | "validateOnInput" | "hideFooter" | "rules" | "skipFormRegistry" | "showPasswordToggle" | "dir">;
349
+ $attrs: import("vue").Attrs;
289
350
  $refs: {
290
351
  [x: string]: unknown;
291
352
  };
@@ -301,64 +362,139 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
301
362
  showPasswordToggle: {
302
363
  type: BooleanConstructor;
303
364
  default: boolean;
365
+ description: string;
304
366
  };
305
367
  dir: {
306
368
  type: PropType<"rtl" | "ltr">;
307
369
  default: string;
370
+ description: string;
371
+ };
372
+ icon: {
373
+ type: StringConstructor;
374
+ description: string;
375
+ };
376
+ iconLeft: {
377
+ type: StringConstructor;
378
+ description: string;
379
+ };
380
+ iconRight: {
381
+ type: StringConstructor;
382
+ description: string;
383
+ };
384
+ max: {
385
+ type: (StringConstructor | NumberConstructor)[];
386
+ description: string;
387
+ };
388
+ maxlength: {
389
+ type: (StringConstructor | NumberConstructor)[];
390
+ description: string;
391
+ };
392
+ min: {
393
+ type: (StringConstructor | NumberConstructor)[];
394
+ description: string;
395
+ };
396
+ minlength: {
397
+ type: (StringConstructor | NumberConstructor)[];
398
+ description: string;
399
+ };
400
+ placeholder: {
401
+ type: StringConstructor;
402
+ description: string;
308
403
  };
309
- icon: StringConstructor;
310
- iconLeft: StringConstructor;
311
- iconRight: StringConstructor;
312
- max: (StringConstructor | NumberConstructor)[];
313
- maxlength: (StringConstructor | NumberConstructor)[];
314
- min: (StringConstructor | NumberConstructor)[];
315
- minlength: (StringConstructor | NumberConstructor)[];
316
- placeholder: StringConstructor;
317
404
  type: {
318
405
  type: StringConstructor;
319
406
  default: string;
407
+ description: string;
320
408
  };
321
- step: (StringConstructor | NumberConstructor)[];
322
- block: BooleanConstructor;
323
- showCounter: BooleanConstructor;
324
- clearable: BooleanConstructor;
409
+ step: {
410
+ type: (StringConstructor | NumberConstructor)[];
411
+ description: string;
412
+ };
413
+ block: import("vue").Prop<boolean | undefined>;
414
+ showCounter: import("vue").Prop<boolean | undefined>;
415
+ clearable: import("vue").Prop<boolean | undefined>;
325
416
  modelValue: {
326
417
  readonly type: PropType<string | number | boolean | object | any[] | undefined>;
327
418
  readonly default: undefined;
419
+ readonly description: "Bound value (v-model).";
420
+ };
421
+ id: {
422
+ readonly type: StringConstructor;
423
+ readonly description: "Native id attribute for the input element.";
424
+ };
425
+ name: {
426
+ readonly type: StringConstructor;
427
+ readonly description: "Native name attribute for form submission.";
428
+ };
429
+ readonly: {
430
+ readonly type: BooleanConstructor;
431
+ readonly description: "Makes the field read-only without disabling it.";
432
+ };
433
+ required: {
434
+ readonly type: BooleanConstructor;
435
+ readonly description: "Marks the field as required for validation.";
328
436
  };
329
- id: StringConstructor;
330
- name: StringConstructor;
331
- readonly: BooleanConstructor;
332
- required: BooleanConstructor;
333
437
  validateOnInput: {
334
438
  readonly type: BooleanConstructor;
335
439
  readonly default: true;
440
+ readonly description: "Runs validation on each input event when true.";
441
+ };
442
+ label: {
443
+ readonly type: StringConstructor;
444
+ readonly description: "Visible label text for the field.";
445
+ };
446
+ helper: {
447
+ readonly type: StringConstructor;
448
+ readonly description: "Helper text shown below the field.";
449
+ };
450
+ error: {
451
+ readonly type: StringConstructor;
452
+ readonly description: "External error message; overrides rule errors when set.";
453
+ };
454
+ hideFooter: {
455
+ readonly type: BooleanConstructor;
456
+ readonly description: "Hides the footer area (helper / error).";
336
457
  };
337
- label: StringConstructor;
338
- helper: StringConstructor;
339
- error: StringConstructor;
340
- hideFooter: BooleanConstructor;
341
458
  rules: {
342
459
  readonly type: ArrayConstructor;
343
460
  readonly default: () => never[];
461
+ readonly description: "Validation rule functions or rule descriptors.";
462
+ };
463
+ tooltip: {
464
+ readonly type: StringConstructor;
465
+ readonly description: "Optional tooltip text next to the label.";
466
+ };
467
+ skipFormRegistry: {
468
+ readonly type: BooleanConstructor;
469
+ readonly description: "Skips registering this field with a parent x-form.";
470
+ };
471
+ disabled: {
472
+ readonly type: BooleanConstructor;
473
+ readonly description: "Disables interaction and applies disabled styling.";
474
+ };
475
+ loading: {
476
+ readonly type: BooleanConstructor;
477
+ readonly description: "Shows a loading indicator and blocks interaction.";
478
+ };
479
+ loadingLabel: {
480
+ readonly type: StringConstructor;
481
+ readonly description: "Accessible label announced while loading.";
344
482
  };
345
- tooltip: StringConstructor;
346
- skipFormRegistry: BooleanConstructor;
347
- disabled: BooleanConstructor;
348
- loading: BooleanConstructor;
349
- loadingLabel: StringConstructor;
350
483
  loadingStatus: {
351
484
  readonly type: PropType<import("../loader/Loader.vue").LoaderStatus>;
352
485
  readonly default: "active";
486
+ readonly description: "Loader visual status (for example active or indeterminate).";
353
487
  };
354
488
  color: {
355
489
  readonly type: StringConstructor;
356
490
  readonly default: string | undefined;
491
+ readonly description: "Theme or CSS color used for the control accents.";
357
492
  };
358
493
  size: {
359
- readonly type: PropType<import("../../composables/useCommon").Size>;
494
+ readonly type: PropType<Size>;
360
495
  readonly default: "md";
361
496
  readonly validator: (value: string) => boolean;
497
+ readonly description: "Control size. One of xs, sm, md, lg, xl.";
362
498
  };
363
499
  }>> & Readonly<{
364
500
  [x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
@@ -372,8 +508,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
372
508
  disabled: boolean;
373
509
  type: string;
374
510
  color: string;
375
- size: import("../../composables/useCommon").Size;
376
- block: boolean;
511
+ size: Size;
377
512
  loading: boolean;
378
513
  loadingStatus: import("../loader/Loader.vue").LoaderStatus;
379
514
  modelValue: string | number | boolean | object | any[] | undefined;
@@ -383,10 +518,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
383
518
  hideFooter: boolean;
384
519
  rules: unknown[];
385
520
  skipFormRegistry: boolean;
386
- clearable: boolean;
387
521
  showPasswordToggle: boolean;
388
522
  dir: "rtl" | "ltr";
389
- showCounter: boolean;
390
523
  }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
391
524
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
392
525
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -411,8 +544,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
411
544
  disabled: boolean;
412
545
  type: string;
413
546
  color: string;
414
- size: import("../../composables/useCommon").Size;
415
- block: boolean;
547
+ size: Size;
416
548
  loading: boolean;
417
549
  loadingStatus: import("../loader/Loader.vue").LoaderStatus;
418
550
  modelValue: string | number | boolean | object | any[] | undefined;
@@ -422,82 +554,155 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
422
554
  hideFooter: boolean;
423
555
  rules: unknown[];
424
556
  skipFormRegistry: boolean;
425
- clearable: boolean;
426
557
  showPasswordToggle: boolean;
427
558
  dir: "rtl" | "ltr";
428
- showCounter: boolean;
429
559
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
430
560
  showPasswordToggle: {
431
561
  type: BooleanConstructor;
432
562
  default: boolean;
563
+ description: string;
433
564
  };
434
565
  dir: {
435
566
  type: PropType<"rtl" | "ltr">;
436
567
  default: string;
568
+ description: string;
569
+ };
570
+ icon: {
571
+ type: StringConstructor;
572
+ description: string;
573
+ };
574
+ iconLeft: {
575
+ type: StringConstructor;
576
+ description: string;
577
+ };
578
+ iconRight: {
579
+ type: StringConstructor;
580
+ description: string;
581
+ };
582
+ max: {
583
+ type: (StringConstructor | NumberConstructor)[];
584
+ description: string;
585
+ };
586
+ maxlength: {
587
+ type: (StringConstructor | NumberConstructor)[];
588
+ description: string;
589
+ };
590
+ min: {
591
+ type: (StringConstructor | NumberConstructor)[];
592
+ description: string;
593
+ };
594
+ minlength: {
595
+ type: (StringConstructor | NumberConstructor)[];
596
+ description: string;
597
+ };
598
+ placeholder: {
599
+ type: StringConstructor;
600
+ description: string;
437
601
  };
438
- icon: StringConstructor;
439
- iconLeft: StringConstructor;
440
- iconRight: StringConstructor;
441
- max: (StringConstructor | NumberConstructor)[];
442
- maxlength: (StringConstructor | NumberConstructor)[];
443
- min: (StringConstructor | NumberConstructor)[];
444
- minlength: (StringConstructor | NumberConstructor)[];
445
- placeholder: StringConstructor;
446
602
  type: {
447
603
  type: StringConstructor;
448
604
  default: string;
605
+ description: string;
449
606
  };
450
- step: (StringConstructor | NumberConstructor)[];
451
- block: BooleanConstructor;
452
- showCounter: BooleanConstructor;
453
- clearable: BooleanConstructor;
607
+ step: {
608
+ type: (StringConstructor | NumberConstructor)[];
609
+ description: string;
610
+ };
611
+ block: import("vue").Prop<boolean | undefined>;
612
+ showCounter: import("vue").Prop<boolean | undefined>;
613
+ clearable: import("vue").Prop<boolean | undefined>;
454
614
  modelValue: {
455
615
  readonly type: PropType<string | number | boolean | object | any[] | undefined>;
456
616
  readonly default: undefined;
617
+ readonly description: "Bound value (v-model).";
618
+ };
619
+ id: {
620
+ readonly type: StringConstructor;
621
+ readonly description: "Native id attribute for the input element.";
622
+ };
623
+ name: {
624
+ readonly type: StringConstructor;
625
+ readonly description: "Native name attribute for form submission.";
626
+ };
627
+ readonly: {
628
+ readonly type: BooleanConstructor;
629
+ readonly description: "Makes the field read-only without disabling it.";
630
+ };
631
+ required: {
632
+ readonly type: BooleanConstructor;
633
+ readonly description: "Marks the field as required for validation.";
457
634
  };
458
- id: StringConstructor;
459
- name: StringConstructor;
460
- readonly: BooleanConstructor;
461
- required: BooleanConstructor;
462
635
  validateOnInput: {
463
636
  readonly type: BooleanConstructor;
464
637
  readonly default: true;
638
+ readonly description: "Runs validation on each input event when true.";
639
+ };
640
+ label: {
641
+ readonly type: StringConstructor;
642
+ readonly description: "Visible label text for the field.";
643
+ };
644
+ helper: {
645
+ readonly type: StringConstructor;
646
+ readonly description: "Helper text shown below the field.";
647
+ };
648
+ error: {
649
+ readonly type: StringConstructor;
650
+ readonly description: "External error message; overrides rule errors when set.";
651
+ };
652
+ hideFooter: {
653
+ readonly type: BooleanConstructor;
654
+ readonly description: "Hides the footer area (helper / error).";
465
655
  };
466
- label: StringConstructor;
467
- helper: StringConstructor;
468
- error: StringConstructor;
469
- hideFooter: BooleanConstructor;
470
656
  rules: {
471
657
  readonly type: ArrayConstructor;
472
658
  readonly default: () => never[];
659
+ readonly description: "Validation rule functions or rule descriptors.";
660
+ };
661
+ tooltip: {
662
+ readonly type: StringConstructor;
663
+ readonly description: "Optional tooltip text next to the label.";
664
+ };
665
+ skipFormRegistry: {
666
+ readonly type: BooleanConstructor;
667
+ readonly description: "Skips registering this field with a parent x-form.";
668
+ };
669
+ disabled: {
670
+ readonly type: BooleanConstructor;
671
+ readonly description: "Disables interaction and applies disabled styling.";
672
+ };
673
+ loading: {
674
+ readonly type: BooleanConstructor;
675
+ readonly description: "Shows a loading indicator and blocks interaction.";
676
+ };
677
+ loadingLabel: {
678
+ readonly type: StringConstructor;
679
+ readonly description: "Accessible label announced while loading.";
473
680
  };
474
- tooltip: StringConstructor;
475
- skipFormRegistry: BooleanConstructor;
476
- disabled: BooleanConstructor;
477
- loading: BooleanConstructor;
478
- loadingLabel: StringConstructor;
479
681
  loadingStatus: {
480
682
  readonly type: PropType<import("../loader/Loader.vue").LoaderStatus>;
481
683
  readonly default: "active";
684
+ readonly description: "Loader visual status (for example active or indeterminate).";
482
685
  };
483
686
  color: {
484
687
  readonly type: StringConstructor;
485
688
  readonly default: string | undefined;
689
+ readonly description: "Theme or CSS color used for the control accents.";
486
690
  };
487
691
  size: {
488
- readonly type: PropType<import("../../composables/useCommon").Size>;
692
+ readonly type: PropType<Size>;
489
693
  readonly default: "md";
490
694
  readonly validator: (value: string) => boolean;
695
+ readonly description: "Control size. One of xs, sm, md, lg, xl.";
491
696
  };
492
697
  }>> & Readonly<{
493
698
  [x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
494
- }>, "blur" | "focus" | "reset" | "validate" | "setError" | ("disabled" | "type" | "color" | "size" | "block" | "loading" | "loadingStatus" | "modelValue" | "readonly" | "required" | "validateOnInput" | "hideFooter" | "rules" | "skipFormRegistry" | "clearable" | "showPasswordToggle" | "dir" | "showCounter")> & import("vue").ShallowUnwrapRef<{
699
+ }>, "blur" | "focus" | "reset" | "validate" | "setError" | ("disabled" | "type" | "color" | "size" | "loading" | "loadingStatus" | "modelValue" | "readonly" | "required" | "validateOnInput" | "hideFooter" | "rules" | "skipFormRegistry" | "showPasswordToggle" | "dir")> & {
495
700
  focus: () => void | undefined;
496
701
  blur: () => void | undefined;
497
702
  reset: () => void;
498
703
  validate: (val?: any) => boolean;
499
704
  setError: (val: string) => void;
500
- }> & {} & import("vue").ComponentCustomProperties & {} & {
705
+ } & {} & import("vue").ComponentCustomProperties & {} & {
501
706
  $slots: {
502
707
  prefix?(_: {}): any;
503
708
  suffix?(_: {}): any;
@@ -509,8 +714,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
509
714
  disabled: boolean;
510
715
  type: string;
511
716
  color: string;
512
- size: import("../../composables/useCommon").Size;
513
- block: boolean;
717
+ size: Size;
514
718
  loading: boolean;
515
719
  loadingStatus: import("../loader/Loader.vue").LoaderStatus;
516
720
  modelValue: string | number | boolean | object | any[] | undefined;
@@ -520,17 +724,14 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
520
724
  hideFooter: boolean;
521
725
  rules: unknown[];
522
726
  skipFormRegistry: boolean;
523
- clearable: boolean;
524
727
  showPasswordToggle: boolean;
525
728
  dir: "rtl" | "ltr";
526
- showCounter: boolean;
527
729
  }> & Omit<{
528
730
  [x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
529
731
  readonly disabled: boolean;
530
732
  readonly type: string;
531
733
  readonly color: string;
532
- readonly size: import("../../composables/useCommon").Size;
533
- readonly block: boolean;
734
+ readonly size: Size;
534
735
  readonly loading: boolean;
535
736
  readonly loadingStatus: import("../loader/Loader.vue").LoaderStatus;
536
737
  readonly readonly: boolean;
@@ -539,96 +740,30 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
539
740
  readonly hideFooter: boolean;
540
741
  readonly rules: unknown[];
541
742
  readonly skipFormRegistry: boolean;
542
- readonly clearable: boolean;
543
743
  readonly showPasswordToggle: boolean;
544
744
  readonly dir: "rtl" | "ltr";
545
- readonly showCounter: boolean;
546
745
  readonly error?: string | undefined;
547
746
  readonly name?: string | undefined;
548
747
  readonly icon?: string | undefined;
549
748
  readonly iconLeft?: string | undefined;
550
749
  readonly iconRight?: string | undefined;
750
+ readonly tooltip?: string | undefined;
751
+ readonly block?: boolean | undefined;
551
752
  readonly loadingLabel?: string | undefined;
552
753
  readonly modelValue?: string | number | boolean | object | any[] | undefined;
553
754
  readonly id?: string | undefined;
554
755
  readonly label?: string | undefined;
555
756
  readonly helper?: string | undefined;
556
- readonly tooltip?: string | undefined;
557
757
  readonly placeholder?: string | undefined;
758
+ readonly clearable?: boolean | undefined;
558
759
  readonly max?: string | number | undefined;
559
760
  readonly maxlength?: string | number | undefined;
560
761
  readonly min?: string | number | undefined;
561
762
  readonly minlength?: string | number | undefined;
562
763
  readonly step?: string | number | undefined;
563
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
564
- showPasswordToggle: {
565
- type: BooleanConstructor;
566
- default: boolean;
567
- };
568
- dir: {
569
- type: PropType<"rtl" | "ltr">;
570
- default: string;
571
- };
572
- icon: StringConstructor;
573
- iconLeft: StringConstructor;
574
- iconRight: StringConstructor;
575
- max: (StringConstructor | NumberConstructor)[];
576
- maxlength: (StringConstructor | NumberConstructor)[];
577
- min: (StringConstructor | NumberConstructor)[];
578
- minlength: (StringConstructor | NumberConstructor)[];
579
- placeholder: StringConstructor;
580
- type: {
581
- type: StringConstructor;
582
- default: string;
583
- };
584
- step: (StringConstructor | NumberConstructor)[];
585
- block: BooleanConstructor;
586
- showCounter: BooleanConstructor;
587
- clearable: BooleanConstructor;
588
- modelValue: {
589
- readonly type: PropType<string | number | boolean | object | any[] | undefined>;
590
- readonly default: undefined;
591
- };
592
- id: StringConstructor;
593
- name: StringConstructor;
594
- readonly: BooleanConstructor;
595
- required: BooleanConstructor;
596
- validateOnInput: {
597
- readonly type: BooleanConstructor;
598
- readonly default: true;
599
- };
600
- label: StringConstructor;
601
- helper: StringConstructor;
602
- error: StringConstructor;
603
- hideFooter: BooleanConstructor;
604
- rules: {
605
- readonly type: ArrayConstructor;
606
- readonly default: () => never[];
607
- };
608
- tooltip: StringConstructor;
609
- skipFormRegistry: BooleanConstructor;
610
- disabled: BooleanConstructor;
611
- loading: BooleanConstructor;
612
- loadingLabel: StringConstructor;
613
- loadingStatus: {
614
- readonly type: PropType<import("../loader/Loader.vue").LoaderStatus>;
615
- readonly default: "active";
616
- };
617
- color: {
618
- readonly type: StringConstructor;
619
- readonly default: string | undefined;
620
- };
621
- size: {
622
- readonly type: PropType<import("../../composables/useCommon").Size>;
623
- readonly default: "md";
624
- readonly validator: (value: string) => boolean;
625
- };
626
- }>> & Readonly<{
627
- [x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
628
- }>, "disabled" | "type" | "color" | "size" | "block" | "loading" | "loadingStatus" | "modelValue" | "readonly" | "required" | "validateOnInput" | "hideFooter" | "rules" | "skipFormRegistry" | "clearable" | "showPasswordToggle" | "dir" | "showCounter">;
629
- $attrs: {
630
- [x: string]: unknown;
631
- };
764
+ readonly showCounter?: boolean | undefined;
765
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "type" | "color" | "size" | "loading" | "loadingStatus" | "modelValue" | "readonly" | "required" | "validateOnInput" | "hideFooter" | "rules" | "skipFormRegistry" | "showPasswordToggle" | "dir">;
766
+ $attrs: import("vue").Attrs;
632
767
  $refs: {
633
768
  [x: string]: unknown;
634
769
  };
@@ -644,64 +779,139 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
644
779
  showPasswordToggle: {
645
780
  type: BooleanConstructor;
646
781
  default: boolean;
782
+ description: string;
647
783
  };
648
784
  dir: {
649
785
  type: PropType<"rtl" | "ltr">;
650
786
  default: string;
787
+ description: string;
788
+ };
789
+ icon: {
790
+ type: StringConstructor;
791
+ description: string;
792
+ };
793
+ iconLeft: {
794
+ type: StringConstructor;
795
+ description: string;
796
+ };
797
+ iconRight: {
798
+ type: StringConstructor;
799
+ description: string;
800
+ };
801
+ max: {
802
+ type: (StringConstructor | NumberConstructor)[];
803
+ description: string;
804
+ };
805
+ maxlength: {
806
+ type: (StringConstructor | NumberConstructor)[];
807
+ description: string;
808
+ };
809
+ min: {
810
+ type: (StringConstructor | NumberConstructor)[];
811
+ description: string;
812
+ };
813
+ minlength: {
814
+ type: (StringConstructor | NumberConstructor)[];
815
+ description: string;
816
+ };
817
+ placeholder: {
818
+ type: StringConstructor;
819
+ description: string;
651
820
  };
652
- icon: StringConstructor;
653
- iconLeft: StringConstructor;
654
- iconRight: StringConstructor;
655
- max: (StringConstructor | NumberConstructor)[];
656
- maxlength: (StringConstructor | NumberConstructor)[];
657
- min: (StringConstructor | NumberConstructor)[];
658
- minlength: (StringConstructor | NumberConstructor)[];
659
- placeholder: StringConstructor;
660
821
  type: {
661
822
  type: StringConstructor;
662
823
  default: string;
824
+ description: string;
663
825
  };
664
- step: (StringConstructor | NumberConstructor)[];
665
- block: BooleanConstructor;
666
- showCounter: BooleanConstructor;
667
- clearable: BooleanConstructor;
826
+ step: {
827
+ type: (StringConstructor | NumberConstructor)[];
828
+ description: string;
829
+ };
830
+ block: import("vue").Prop<boolean | undefined>;
831
+ showCounter: import("vue").Prop<boolean | undefined>;
832
+ clearable: import("vue").Prop<boolean | undefined>;
668
833
  modelValue: {
669
834
  readonly type: PropType<string | number | boolean | object | any[] | undefined>;
670
835
  readonly default: undefined;
836
+ readonly description: "Bound value (v-model).";
837
+ };
838
+ id: {
839
+ readonly type: StringConstructor;
840
+ readonly description: "Native id attribute for the input element.";
841
+ };
842
+ name: {
843
+ readonly type: StringConstructor;
844
+ readonly description: "Native name attribute for form submission.";
845
+ };
846
+ readonly: {
847
+ readonly type: BooleanConstructor;
848
+ readonly description: "Makes the field read-only without disabling it.";
849
+ };
850
+ required: {
851
+ readonly type: BooleanConstructor;
852
+ readonly description: "Marks the field as required for validation.";
671
853
  };
672
- id: StringConstructor;
673
- name: StringConstructor;
674
- readonly: BooleanConstructor;
675
- required: BooleanConstructor;
676
854
  validateOnInput: {
677
855
  readonly type: BooleanConstructor;
678
856
  readonly default: true;
857
+ readonly description: "Runs validation on each input event when true.";
858
+ };
859
+ label: {
860
+ readonly type: StringConstructor;
861
+ readonly description: "Visible label text for the field.";
862
+ };
863
+ helper: {
864
+ readonly type: StringConstructor;
865
+ readonly description: "Helper text shown below the field.";
866
+ };
867
+ error: {
868
+ readonly type: StringConstructor;
869
+ readonly description: "External error message; overrides rule errors when set.";
870
+ };
871
+ hideFooter: {
872
+ readonly type: BooleanConstructor;
873
+ readonly description: "Hides the footer area (helper / error).";
679
874
  };
680
- label: StringConstructor;
681
- helper: StringConstructor;
682
- error: StringConstructor;
683
- hideFooter: BooleanConstructor;
684
875
  rules: {
685
876
  readonly type: ArrayConstructor;
686
877
  readonly default: () => never[];
878
+ readonly description: "Validation rule functions or rule descriptors.";
879
+ };
880
+ tooltip: {
881
+ readonly type: StringConstructor;
882
+ readonly description: "Optional tooltip text next to the label.";
883
+ };
884
+ skipFormRegistry: {
885
+ readonly type: BooleanConstructor;
886
+ readonly description: "Skips registering this field with a parent x-form.";
887
+ };
888
+ disabled: {
889
+ readonly type: BooleanConstructor;
890
+ readonly description: "Disables interaction and applies disabled styling.";
891
+ };
892
+ loading: {
893
+ readonly type: BooleanConstructor;
894
+ readonly description: "Shows a loading indicator and blocks interaction.";
895
+ };
896
+ loadingLabel: {
897
+ readonly type: StringConstructor;
898
+ readonly description: "Accessible label announced while loading.";
687
899
  };
688
- tooltip: StringConstructor;
689
- skipFormRegistry: BooleanConstructor;
690
- disabled: BooleanConstructor;
691
- loading: BooleanConstructor;
692
- loadingLabel: StringConstructor;
693
900
  loadingStatus: {
694
901
  readonly type: PropType<import("../loader/Loader.vue").LoaderStatus>;
695
902
  readonly default: "active";
903
+ readonly description: "Loader visual status (for example active or indeterminate).";
696
904
  };
697
905
  color: {
698
906
  readonly type: StringConstructor;
699
907
  readonly default: string | undefined;
908
+ readonly description: "Theme or CSS color used for the control accents.";
700
909
  };
701
910
  size: {
702
- readonly type: PropType<import("../../composables/useCommon").Size>;
911
+ readonly type: PropType<Size>;
703
912
  readonly default: "md";
704
913
  readonly validator: (value: string) => boolean;
914
+ readonly description: "Control size. One of xs, sm, md, lg, xl.";
705
915
  };
706
916
  }>> & Readonly<{
707
917
  [x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
@@ -715,8 +925,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
715
925
  disabled: boolean;
716
926
  type: string;
717
927
  color: string;
718
- size: import("../../composables/useCommon").Size;
719
- block: boolean;
928
+ size: Size;
720
929
  loading: boolean;
721
930
  loadingStatus: import("../loader/Loader.vue").LoaderStatus;
722
931
  modelValue: string | number | boolean | object | any[] | undefined;
@@ -726,10 +935,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
726
935
  hideFooter: boolean;
727
936
  rules: unknown[];
728
937
  skipFormRegistry: boolean;
729
- clearable: boolean;
730
938
  showPasswordToggle: boolean;
731
939
  dir: "rtl" | "ltr";
732
- showCounter: boolean;
733
940
  }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
734
941
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
735
942
  created?: ((() => void) | (() => void)[]) | undefined;
@@ -754,8 +961,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
754
961
  disabled: boolean;
755
962
  type: string;
756
963
  color: string;
757
- size: import("../../composables/useCommon").Size;
758
- block: boolean;
964
+ size: Size;
759
965
  loading: boolean;
760
966
  loadingStatus: import("../loader/Loader.vue").LoaderStatus;
761
967
  modelValue: string | number | boolean | object | any[] | undefined;
@@ -765,82 +971,155 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
765
971
  hideFooter: boolean;
766
972
  rules: unknown[];
767
973
  skipFormRegistry: boolean;
768
- clearable: boolean;
769
974
  showPasswordToggle: boolean;
770
975
  dir: "rtl" | "ltr";
771
- showCounter: boolean;
772
976
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
773
977
  showPasswordToggle: {
774
978
  type: BooleanConstructor;
775
979
  default: boolean;
980
+ description: string;
776
981
  };
777
982
  dir: {
778
983
  type: PropType<"rtl" | "ltr">;
779
984
  default: string;
985
+ description: string;
986
+ };
987
+ icon: {
988
+ type: StringConstructor;
989
+ description: string;
990
+ };
991
+ iconLeft: {
992
+ type: StringConstructor;
993
+ description: string;
994
+ };
995
+ iconRight: {
996
+ type: StringConstructor;
997
+ description: string;
998
+ };
999
+ max: {
1000
+ type: (StringConstructor | NumberConstructor)[];
1001
+ description: string;
1002
+ };
1003
+ maxlength: {
1004
+ type: (StringConstructor | NumberConstructor)[];
1005
+ description: string;
1006
+ };
1007
+ min: {
1008
+ type: (StringConstructor | NumberConstructor)[];
1009
+ description: string;
1010
+ };
1011
+ minlength: {
1012
+ type: (StringConstructor | NumberConstructor)[];
1013
+ description: string;
1014
+ };
1015
+ placeholder: {
1016
+ type: StringConstructor;
1017
+ description: string;
780
1018
  };
781
- icon: StringConstructor;
782
- iconLeft: StringConstructor;
783
- iconRight: StringConstructor;
784
- max: (StringConstructor | NumberConstructor)[];
785
- maxlength: (StringConstructor | NumberConstructor)[];
786
- min: (StringConstructor | NumberConstructor)[];
787
- minlength: (StringConstructor | NumberConstructor)[];
788
- placeholder: StringConstructor;
789
1019
  type: {
790
1020
  type: StringConstructor;
791
1021
  default: string;
1022
+ description: string;
1023
+ };
1024
+ step: {
1025
+ type: (StringConstructor | NumberConstructor)[];
1026
+ description: string;
792
1027
  };
793
- step: (StringConstructor | NumberConstructor)[];
794
- block: BooleanConstructor;
795
- showCounter: BooleanConstructor;
796
- clearable: BooleanConstructor;
1028
+ block: import("vue").Prop<boolean | undefined>;
1029
+ showCounter: import("vue").Prop<boolean | undefined>;
1030
+ clearable: import("vue").Prop<boolean | undefined>;
797
1031
  modelValue: {
798
1032
  readonly type: PropType<string | number | boolean | object | any[] | undefined>;
799
1033
  readonly default: undefined;
1034
+ readonly description: "Bound value (v-model).";
1035
+ };
1036
+ id: {
1037
+ readonly type: StringConstructor;
1038
+ readonly description: "Native id attribute for the input element.";
1039
+ };
1040
+ name: {
1041
+ readonly type: StringConstructor;
1042
+ readonly description: "Native name attribute for form submission.";
1043
+ };
1044
+ readonly: {
1045
+ readonly type: BooleanConstructor;
1046
+ readonly description: "Makes the field read-only without disabling it.";
1047
+ };
1048
+ required: {
1049
+ readonly type: BooleanConstructor;
1050
+ readonly description: "Marks the field as required for validation.";
800
1051
  };
801
- id: StringConstructor;
802
- name: StringConstructor;
803
- readonly: BooleanConstructor;
804
- required: BooleanConstructor;
805
1052
  validateOnInput: {
806
1053
  readonly type: BooleanConstructor;
807
1054
  readonly default: true;
1055
+ readonly description: "Runs validation on each input event when true.";
1056
+ };
1057
+ label: {
1058
+ readonly type: StringConstructor;
1059
+ readonly description: "Visible label text for the field.";
1060
+ };
1061
+ helper: {
1062
+ readonly type: StringConstructor;
1063
+ readonly description: "Helper text shown below the field.";
1064
+ };
1065
+ error: {
1066
+ readonly type: StringConstructor;
1067
+ readonly description: "External error message; overrides rule errors when set.";
1068
+ };
1069
+ hideFooter: {
1070
+ readonly type: BooleanConstructor;
1071
+ readonly description: "Hides the footer area (helper / error).";
808
1072
  };
809
- label: StringConstructor;
810
- helper: StringConstructor;
811
- error: StringConstructor;
812
- hideFooter: BooleanConstructor;
813
1073
  rules: {
814
1074
  readonly type: ArrayConstructor;
815
1075
  readonly default: () => never[];
1076
+ readonly description: "Validation rule functions or rule descriptors.";
1077
+ };
1078
+ tooltip: {
1079
+ readonly type: StringConstructor;
1080
+ readonly description: "Optional tooltip text next to the label.";
1081
+ };
1082
+ skipFormRegistry: {
1083
+ readonly type: BooleanConstructor;
1084
+ readonly description: "Skips registering this field with a parent x-form.";
1085
+ };
1086
+ disabled: {
1087
+ readonly type: BooleanConstructor;
1088
+ readonly description: "Disables interaction and applies disabled styling.";
1089
+ };
1090
+ loading: {
1091
+ readonly type: BooleanConstructor;
1092
+ readonly description: "Shows a loading indicator and blocks interaction.";
1093
+ };
1094
+ loadingLabel: {
1095
+ readonly type: StringConstructor;
1096
+ readonly description: "Accessible label announced while loading.";
816
1097
  };
817
- tooltip: StringConstructor;
818
- skipFormRegistry: BooleanConstructor;
819
- disabled: BooleanConstructor;
820
- loading: BooleanConstructor;
821
- loadingLabel: StringConstructor;
822
1098
  loadingStatus: {
823
1099
  readonly type: PropType<import("../loader/Loader.vue").LoaderStatus>;
824
1100
  readonly default: "active";
1101
+ readonly description: "Loader visual status (for example active or indeterminate).";
825
1102
  };
826
1103
  color: {
827
1104
  readonly type: StringConstructor;
828
1105
  readonly default: string | undefined;
1106
+ readonly description: "Theme or CSS color used for the control accents.";
829
1107
  };
830
1108
  size: {
831
- readonly type: PropType<import("../../composables/useCommon").Size>;
1109
+ readonly type: PropType<Size>;
832
1110
  readonly default: "md";
833
1111
  readonly validator: (value: string) => boolean;
1112
+ readonly description: "Control size. One of xs, sm, md, lg, xl.";
834
1113
  };
835
1114
  }>> & Readonly<{
836
1115
  [x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
837
- }>, "blur" | "focus" | "reset" | "validate" | "setError" | ("disabled" | "type" | "color" | "size" | "block" | "loading" | "loadingStatus" | "modelValue" | "readonly" | "required" | "validateOnInput" | "hideFooter" | "rules" | "skipFormRegistry" | "clearable" | "showPasswordToggle" | "dir" | "showCounter")> & import("vue").ShallowUnwrapRef<{
1116
+ }>, "blur" | "focus" | "reset" | "validate" | "setError" | ("disabled" | "type" | "color" | "size" | "loading" | "loadingStatus" | "modelValue" | "readonly" | "required" | "validateOnInput" | "hideFooter" | "rules" | "skipFormRegistry" | "showPasswordToggle" | "dir")> & {
838
1117
  focus: () => void | undefined;
839
1118
  blur: () => void | undefined;
840
1119
  reset: () => void;
841
1120
  validate: (val?: any) => boolean;
842
1121
  setError: (val: string) => void;
843
- }> & {} & import("vue").ComponentCustomProperties & {} & {
1122
+ } & {} & import("vue").ComponentCustomProperties & {} & {
844
1123
  $slots: {
845
1124
  prefix?(_: {}): any;
846
1125
  suffix?(_: {}): any;
@@ -848,79 +1127,141 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
848
1127
  }) | null>;
849
1128
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, string[], string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
850
1129
  filter: import('vue').PropType<any>;
851
- placeholder: StringConstructor;
852
- options: PropType<SelectOption[]>;
853
- multiple: BooleanConstructor;
854
- multipleCheckbox: BooleanConstructor;
855
- truncate: BooleanConstructor;
856
- flat: BooleanConstructor;
857
- native: BooleanConstructor;
858
- filterable: BooleanConstructor;
859
- clearable: BooleanConstructor;
1130
+ placeholder: {
1131
+ type: StringConstructor;
1132
+ description: string;
1133
+ };
1134
+ options: {
1135
+ type: PropType<SelectOption[]>;
1136
+ description: string;
1137
+ };
1138
+ multiple: import("vue").Prop<boolean | undefined>;
1139
+ multipleCheckbox: import("vue").Prop<boolean | undefined>;
1140
+ truncate: import("vue").Prop<boolean | undefined>;
1141
+ flat: import("vue").Prop<boolean | undefined>;
1142
+ native: import("vue").Prop<boolean | undefined>;
1143
+ filterable: import("vue").Prop<boolean | undefined>;
1144
+ clearable: import("vue").Prop<boolean | undefined>;
860
1145
  filterPlaceholder: {
861
1146
  type: StringConstructor;
862
1147
  default: string;
1148
+ description: string;
1149
+ };
1150
+ filterablePrefix: import("vue").Prop<boolean | undefined>;
1151
+ filterableSuffix: import("vue").Prop<boolean | undefined>;
1152
+ hideSelectedOptionSlots: import("vue").Prop<boolean | undefined>;
1153
+ virtualList: import("vue").Prop<boolean | undefined>;
1154
+ virtualListOffsetTop: {
1155
+ type: NumberConstructor;
1156
+ description: string;
1157
+ };
1158
+ virtualListOffsetBottom: {
1159
+ type: NumberConstructor;
1160
+ description: string;
863
1161
  };
864
- filterablePrefix: BooleanConstructor;
865
- filterableSuffix: BooleanConstructor;
866
- hideSelectedOptionSlots: BooleanConstructor;
867
- virtualList: BooleanConstructor;
868
- virtualListOffsetTop: NumberConstructor;
869
- virtualListOffsetBottom: NumberConstructor;
870
1162
  virtualListItemHeight: {
871
1163
  type: NumberConstructor;
872
1164
  default: number;
1165
+ description: string;
873
1166
  };
874
1167
  virtualListOverscan: {
875
1168
  type: NumberConstructor;
876
1169
  default: number;
1170
+ description: string;
1171
+ };
1172
+ placement: {
1173
+ type: PropType<import("floating-vue").Placement>;
1174
+ description: string;
877
1175
  };
878
- placement: PropType<import("floating-vue").Placement>;
879
1176
  modelValue: {
880
1177
  readonly type: PropType<string | number | boolean | object | any[] | undefined>;
881
1178
  readonly default: undefined;
1179
+ readonly description: "Bound value (v-model).";
1180
+ };
1181
+ id: {
1182
+ readonly type: StringConstructor;
1183
+ readonly description: "Native id attribute for the input element.";
1184
+ };
1185
+ name: {
1186
+ readonly type: StringConstructor;
1187
+ readonly description: "Native name attribute for form submission.";
1188
+ };
1189
+ readonly: {
1190
+ readonly type: BooleanConstructor;
1191
+ readonly description: "Makes the field read-only without disabling it.";
1192
+ };
1193
+ required: {
1194
+ readonly type: BooleanConstructor;
1195
+ readonly description: "Marks the field as required for validation.";
882
1196
  };
883
- id: StringConstructor;
884
- name: StringConstructor;
885
- readonly: BooleanConstructor;
886
- required: BooleanConstructor;
887
1197
  validateOnInput: {
888
1198
  readonly type: BooleanConstructor;
889
1199
  readonly default: true;
1200
+ readonly description: "Runs validation on each input event when true.";
1201
+ };
1202
+ label: {
1203
+ readonly type: StringConstructor;
1204
+ readonly description: "Visible label text for the field.";
1205
+ };
1206
+ helper: {
1207
+ readonly type: StringConstructor;
1208
+ readonly description: "Helper text shown below the field.";
1209
+ };
1210
+ error: {
1211
+ readonly type: StringConstructor;
1212
+ readonly description: "External error message; overrides rule errors when set.";
1213
+ };
1214
+ hideFooter: {
1215
+ readonly type: BooleanConstructor;
1216
+ readonly description: "Hides the footer area (helper / error).";
890
1217
  };
891
- label: StringConstructor;
892
- helper: StringConstructor;
893
- error: StringConstructor;
894
- hideFooter: BooleanConstructor;
895
1218
  rules: {
896
1219
  readonly type: ArrayConstructor;
897
1220
  readonly default: () => never[];
1221
+ readonly description: "Validation rule functions or rule descriptors.";
1222
+ };
1223
+ tooltip: {
1224
+ readonly type: StringConstructor;
1225
+ readonly description: "Optional tooltip text next to the label.";
1226
+ };
1227
+ skipFormRegistry: {
1228
+ readonly type: BooleanConstructor;
1229
+ readonly description: "Skips registering this field with a parent x-form.";
1230
+ };
1231
+ disabled: {
1232
+ readonly type: BooleanConstructor;
1233
+ readonly description: "Disables interaction and applies disabled styling.";
1234
+ };
1235
+ loading: {
1236
+ readonly type: BooleanConstructor;
1237
+ readonly description: "Shows a loading indicator and blocks interaction.";
1238
+ };
1239
+ loadingLabel: {
1240
+ readonly type: StringConstructor;
1241
+ readonly description: "Accessible label announced while loading.";
898
1242
  };
899
- tooltip: StringConstructor;
900
- skipFormRegistry: BooleanConstructor;
901
- disabled: BooleanConstructor;
902
- loading: BooleanConstructor;
903
- loadingLabel: StringConstructor;
904
1243
  loadingStatus: {
905
1244
  readonly type: PropType<import("../loader/Loader.vue").LoaderStatus>;
906
1245
  readonly default: "active";
1246
+ readonly description: "Loader visual status (for example active or indeterminate).";
907
1247
  };
908
1248
  size: {
909
- readonly type: PropType<import("../../composables/useCommon").Size>;
1249
+ readonly type: PropType<Size>;
910
1250
  readonly default: "md";
911
1251
  readonly validator: (value: string) => boolean;
1252
+ readonly description: "Control size. One of xs, sm, md, lg, xl.";
912
1253
  };
913
1254
  color: {
914
1255
  readonly type: StringConstructor;
915
1256
  readonly default: string | undefined;
1257
+ readonly description: "Theme or CSS color used for the control accents.";
916
1258
  };
917
1259
  }>> & Readonly<{
918
1260
  [x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
919
1261
  }>, {
920
1262
  disabled: boolean;
921
- flat: boolean;
922
1263
  color: string;
923
- size: import("../../composables/useCommon").Size;
1264
+ size: Size;
924
1265
  loading: boolean;
925
1266
  loadingStatus: import("../loader/Loader.vue").LoaderStatus;
926
1267
  modelValue: string | number | boolean | object | any[] | undefined;
@@ -930,17 +1271,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
930
1271
  hideFooter: boolean;
931
1272
  rules: unknown[];
932
1273
  skipFormRegistry: boolean;
933
- clearable: boolean;
934
- multiple: boolean;
935
- multipleCheckbox: boolean;
936
- truncate: boolean;
937
- native: boolean;
938
- filterable: boolean;
939
1274
  filterPlaceholder: string;
940
- filterablePrefix: boolean;
941
- filterableSuffix: boolean;
942
- hideSelectedOptionSlots: boolean;
943
- virtualList: boolean;
944
1275
  virtualListItemHeight: number;
945
1276
  virtualListOverscan: number;
946
1277
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {