@wikicasa-dev/components 2.6.10 → 3.0.0-alpha.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 (456) hide show
  1. package/dist/AccessibleSelect.js +4 -0
  2. package/dist/BaseAccordion.js +4 -0
  3. package/dist/BaseAccordionBtn.js +4 -0
  4. package/dist/BaseAccordionContent.js +4 -0
  5. package/dist/BaseAccordionItem.js +4 -0
  6. package/dist/BaseAlert.js +4 -0
  7. package/dist/BaseAutocomplete.js +4 -0
  8. package/dist/BaseBadge.js +4 -0
  9. package/dist/BaseBreadcrumb.js +4 -0
  10. package/dist/BaseButton.js +4 -0
  11. package/dist/BaseCard.js +38 -0
  12. package/dist/BaseComplexToggle.js +107 -0
  13. package/dist/BaseDropDown.js +4 -0
  14. package/dist/BaseFloatingLabel.js +41 -0
  15. package/dist/BaseIcon.js +28 -0
  16. package/dist/BaseInput.js +212 -0
  17. package/dist/BaseModal.js +4 -0
  18. package/dist/BasePagination.js +4 -0
  19. package/dist/BasePaper.js +14 -0
  20. package/dist/BaseShimmerLoader.js +22 -0
  21. package/dist/{UIKit/BaseSlider.vue.js → BaseSlider.js} +52 -49
  22. package/dist/BaseSnackbar.js +82 -0
  23. package/dist/BaseTab.js +4 -0
  24. package/dist/BaseTabList.js +4 -0
  25. package/dist/BaseTabPanel.js +4 -0
  26. package/dist/BaseTabView.js +4 -0
  27. package/dist/BaseTextarea.js +128 -0
  28. package/dist/BaseToggle.js +43 -0
  29. package/dist/BaseTooltip.js +42 -0
  30. package/dist/BaseUploadFile.js +4 -0
  31. package/dist/CheckboxBtn.js +76 -0
  32. package/dist/CheckboxGroup.js +4 -0
  33. package/dist/DoughnutChart.js +4 -0
  34. package/dist/IntersectionObservable.js +4 -0
  35. package/dist/IntersectionObserver.js +4 -0
  36. package/dist/LineChart.js +4 -0
  37. package/dist/RadioButton.js +4 -0
  38. package/dist/RadioGroup.js +4 -0
  39. package/dist/SelectItem.js +4 -0
  40. package/dist/ShimmerMultiLine.js +4 -0
  41. package/dist/{UIKit/Slider/SimpleSlider.vue.js → SimpleSlider.js} +30 -29
  42. package/dist/StaticSpinner.js +28 -0
  43. package/dist/SwiperCarousel.js +5 -0
  44. package/dist/{components/carousel/SwiperSlide.js → SwiperSlide.js} +3 -3
  45. package/dist/UIKit/AccessibleSelect.vue.d.ts +55 -0
  46. package/dist/UIKit/Accordion/BaseAccordion.vue.d.ts +32 -0
  47. package/dist/UIKit/Accordion/BaseAccordionBtn.vue.d.ts +34 -0
  48. package/dist/UIKit/Accordion/BaseAccordionContent.vue.d.ts +30 -0
  49. package/dist/UIKit/Accordion/BaseAccordionItem.vue.d.ts +60 -0
  50. package/dist/UIKit/BaseAlert.vue.d.ts +26 -0
  51. package/dist/UIKit/BaseAutocomplete.vue.d.ts +48 -0
  52. package/dist/UIKit/BaseBadge.vue.d.ts +22 -0
  53. package/dist/UIKit/BaseBreadcrumb.vue.d.ts +35 -0
  54. package/dist/UIKit/BaseButton.vue.d.ts +46 -0
  55. package/dist/UIKit/BaseCard.vue.d.ts +29 -0
  56. package/dist/UIKit/BaseComplexToggle.vue.d.ts +47 -0
  57. package/dist/UIKit/BaseDropDown.vue.d.ts +81 -0
  58. package/dist/UIKit/BaseFloatingLabel.vue.d.ts +17 -0
  59. package/dist/UIKit/BaseIcon.vue.d.ts +11 -0
  60. package/dist/UIKit/BaseInput.vue.d.ts +68 -0
  61. package/dist/UIKit/BaseModal.vue.d.ts +63 -0
  62. package/dist/UIKit/{BasePagination.d.ts → BasePagination.vue.d.ts} +5 -13
  63. package/dist/UIKit/BasePaper.vue.d.ts +2 -0
  64. package/dist/UIKit/BaseSelect/SelectItem.vue.d.ts +38 -0
  65. package/dist/UIKit/{BaseSlider.d.ts → BaseSlider.vue.d.ts} +7 -6
  66. package/dist/UIKit/BaseSnackbar.vue.d.ts +24 -0
  67. package/dist/UIKit/{BaseTextarea.d.ts → BaseTextarea.vue.d.ts} +10 -10
  68. package/dist/UIKit/BaseToggle.vue.d.ts +32 -0
  69. package/dist/UIKit/BaseTooltip.vue.d.ts +38 -0
  70. package/dist/UIKit/BaseUploadFile.vue.d.ts +42 -0
  71. package/dist/UIKit/Checkbox/CheckboxBtn.vue.d.ts +53 -0
  72. package/dist/UIKit/Checkbox/CheckboxGroup.vue.d.ts +71 -0
  73. package/dist/UIKit/Radio/RadioButton.vue.d.ts +27 -0
  74. package/dist/UIKit/Radio/RadioGroup.vue.d.ts +54 -0
  75. package/dist/UIKit/ShimmerLoader/BaseShimmerLoader.vue.d.ts +21 -0
  76. package/dist/UIKit/ShimmerLoader/ShimmerMultiLine.vue.d.ts +63 -0
  77. package/dist/UIKit/Slider/{SimpleSlider.d.ts → SimpleSlider.vue.d.ts} +6 -6
  78. package/dist/UIKit/StaticSpinner.vue.d.ts +6 -0
  79. package/dist/UIKit/Tab/BaseTab.vue.d.ts +23 -0
  80. package/dist/UIKit/Tab/BaseTabList.vue.d.ts +14 -0
  81. package/dist/UIKit/Tab/BaseTabPanel.vue.d.ts +24 -0
  82. package/dist/UIKit/Tab/BaseTabView.vue.d.ts +27 -0
  83. package/dist/UIKit/types.d.ts +52 -10
  84. package/dist/assets/BaseAlert.css +1 -0
  85. package/dist/assets/BaseBadge.css +1 -1
  86. package/dist/assets/BaseCard.css +1 -0
  87. package/dist/assets/BaseComplexToggle.css +1 -0
  88. package/dist/assets/BaseFloatingLabel.css +1 -0
  89. package/dist/assets/BaseIcon.css +1 -0
  90. package/dist/assets/BaseInput.css +1 -0
  91. package/dist/assets/BaseModal.css +1 -0
  92. package/dist/assets/BasePaper.css +1 -0
  93. package/dist/assets/BaseShimmerLoader.css +1 -1
  94. package/dist/assets/BaseSlider.css +1 -0
  95. package/dist/assets/BaseSnackbar.css +1 -1
  96. package/dist/assets/BaseTextarea.css +1 -0
  97. package/dist/assets/BaseToggle.css +1 -0
  98. package/dist/assets/BaseTooltip.css +1 -0
  99. package/dist/assets/CheckboxBtn.css +1 -1
  100. package/dist/assets/SimpleSlider.css +1 -1
  101. package/dist/assets/StaticSpinner.css +1 -1
  102. package/dist/assets/SwiperCarousel.css +1 -1
  103. package/dist/assets/index.css +1 -0
  104. package/dist/chart/DoughnutChart.vue.d.ts +7 -0
  105. package/dist/chart/LineChart.vue.d.ts +19 -0
  106. package/dist/chart/composables/useChartjsModules.d.ts +10 -0
  107. package/dist/chunks/AccessibleSelect.vue_vue_type_script_setup_true_lang.QU1FSgY0.js +246 -0
  108. package/dist/chunks/ArrowIcon.Bq6Xr3uH.js +28 -0
  109. package/dist/chunks/BaseAccordion.vue_vue_type_script_setup_true_lang.C34SZThb.js +32 -0
  110. package/dist/chunks/BaseAccordionBtn.vue_vue_type_script_setup_true_lang.DEk3SXLJ.js +60 -0
  111. package/dist/chunks/BaseAccordionContent.vue_vue_type_script_setup_true_lang.Qp_TWYFE.js +34 -0
  112. package/dist/chunks/BaseAccordionItem.vue_vue_type_script_setup_true_lang.BJB5DnDs.js +143 -0
  113. package/dist/chunks/BaseAlert.vue_vue_type_style_index_0_lang.DUWb9d9_.js +19 -0
  114. package/dist/chunks/BaseAutocomplete.vue_vue_type_script_setup_true_lang.S_XFg2zV.js +202 -0
  115. package/dist/chunks/BaseBadge.vue_vue_type_style_index_0_lang.DvAI34Oa.js +19 -0
  116. package/dist/chunks/BaseBreadcrumb.vue_vue_type_script_setup_true_lang.BrzeVW2_.js +58 -0
  117. package/dist/chunks/BaseButton.vue_vue_type_script_setup_true_lang.DHwyd5Gb.js +66 -0
  118. package/dist/chunks/BaseDropDown.vue_vue_type_script_setup_true_lang.OKB0gEpo.js +137 -0
  119. package/dist/chunks/BaseModal.vue_vue_type_style_index_0_lang.a2qGyPhV.js +150 -0
  120. package/dist/chunks/BasePagination.vue_vue_type_script_setup_true_lang.DdFMVFIO.js +164 -0
  121. package/dist/{UIKit/Tab/BaseTab.vue.js → chunks/BaseTab.vue_vue_type_script_setup_true_lang.Cu67jd8K.js} +3 -3
  122. package/dist/chunks/BaseTabList.vue_vue_type_script_setup_true_lang.CxrS-Vq6.js +43 -0
  123. package/dist/chunks/BaseTabPanel.vue_vue_type_script_setup_true_lang.CVJUssBq.js +24 -0
  124. package/dist/chunks/BaseTabView.vue_vue_type_script_setup_true_lang.DGTsSVEG.js +105 -0
  125. package/dist/chunks/BaseUploadFile.vue_vue_type_script_setup_true_lang.BL98w2D8.js +71 -0
  126. package/dist/chunks/CheckboxGroup.vue_vue_type_script_setup_true_lang.B_9CFhd2.js +111 -0
  127. package/dist/chunks/CloseIcon.BZ4U3aiI.js +38 -0
  128. package/dist/chunks/DoughnutChart.vue_vue_type_script_setup_true_lang.B8wxbJBV.js +27 -0
  129. package/dist/chunks/IntersectionObservable.vue_vue_type_script_setup_true_lang.DC17cx-h.js +24 -0
  130. package/dist/chunks/IntersectionObserver.vue_vue_type_script_setup_true_lang.BKewKDXG.js +52 -0
  131. package/dist/chunks/LineChart.vue_vue_type_script_setup_true_lang.CXNsFiyD.js +42 -0
  132. package/dist/chunks/ObjectUtils.DwkJjVq1.js +10 -0
  133. package/dist/chunks/PharmacyIcon.DEQ8mOEJ.js +11 -0
  134. package/dist/chunks/RadioButton.vue_vue_type_script_setup_true_lang.CxVJji0G.js +58 -0
  135. package/dist/chunks/RadioGroup.vue_vue_type_script_setup_true_lang.BNKSEicl.js +62 -0
  136. package/dist/chunks/SelectItem.vue_vue_type_script_setup_true_lang.jB3LVM3c.js +41 -0
  137. package/dist/chunks/ShimmerMultiLine.vue_vue_type_script_setup_true_lang.CPUobRgG.js +29 -0
  138. package/dist/chunks/SwiperCarousel.BheiaKKw.js +748 -0
  139. package/dist/chunks/_plugin-vue_export-helper.CHgC5LLL.js +9 -0
  140. package/dist/chunks/index.BJP9rQkU.js +887 -0
  141. package/dist/chunks/polyline.DjpLdMaW.js +5256 -0
  142. package/dist/chunks/useBreakpoints.BXk8Xcw3.js +5189 -0
  143. package/dist/components/IntersectionObserver/IntersectionObservable.vue.d.ts +29 -0
  144. package/dist/components/IntersectionObserver/IntersectionObserver.vue.d.ts +57 -0
  145. package/dist/components/carousel/SwiperCarousel.vue.d.ts +57 -0
  146. package/dist/components/carousel/SwiperSlide.vue.d.ts +17 -0
  147. package/dist/composables/useFloatingLabel.d.ts +1 -1
  148. package/dist/index.d.ts +45 -67
  149. package/dist/index.js +85 -150
  150. package/dist/useChartjsModules.js +48 -0
  151. package/dist/utils.js +3 -3
  152. package/package.json +38 -71
  153. package/dist/UIKit/AccessibleSelect.d.ts +0 -64
  154. package/dist/UIKit/AccessibleSelect.js +0 -5
  155. package/dist/UIKit/AccessibleSelect.vue.js +0 -206
  156. package/dist/UIKit/Accordion/AccordionContentPrimitive.d.ts +0 -15
  157. package/dist/UIKit/Accordion/AccordionContentPrimitive.js +0 -4
  158. package/dist/UIKit/Accordion/AccordionContentPrimitive.vue.js +0 -22
  159. package/dist/UIKit/Accordion/AccordionHeaderPrimitive.d.ts +0 -12
  160. package/dist/UIKit/Accordion/AccordionHeaderPrimitive.js +0 -4
  161. package/dist/UIKit/Accordion/AccordionHeaderPrimitive.vue.js +0 -21
  162. package/dist/UIKit/Accordion/AccordionItemPrimitive.d.ts +0 -14
  163. package/dist/UIKit/Accordion/AccordionItemPrimitive.js +0 -4
  164. package/dist/UIKit/Accordion/AccordionItemPrimitive.vue.js +0 -24
  165. package/dist/UIKit/Accordion/AccordionTriggerPrimitive.d.ts +0 -14
  166. package/dist/UIKit/Accordion/AccordionTriggerPrimitive.js +0 -4
  167. package/dist/UIKit/Accordion/AccordionTriggerPrimitive.vue.js +0 -22
  168. package/dist/UIKit/Accordion/BaseAccordion.d.ts +0 -38
  169. package/dist/UIKit/Accordion/BaseAccordion.js +0 -4
  170. package/dist/UIKit/Accordion/BaseAccordion.vue.js +0 -37
  171. package/dist/UIKit/Accordion/BaseAccordionItem.d.ts +0 -33
  172. package/dist/UIKit/Accordion/BaseAccordionItem.js +0 -5
  173. package/dist/UIKit/Accordion/BaseAccordionItem.vue.js +0 -82
  174. package/dist/UIKit/Autocomplete/ClearableAutocomplete.d.ts +0 -75
  175. package/dist/UIKit/Autocomplete/ClearableAutocomplete.js +0 -5
  176. package/dist/UIKit/Autocomplete/ClearableAutocomplete.vue.js +0 -227
  177. package/dist/UIKit/BaseAlert.d.ts +0 -22
  178. package/dist/UIKit/BaseAlert.js +0 -5
  179. package/dist/UIKit/BaseAlert.vue.js +0 -19
  180. package/dist/UIKit/BaseAutocomplete.d.ts +0 -62
  181. package/dist/UIKit/BaseAutocomplete.js +0 -5
  182. package/dist/UIKit/BaseAutocomplete.vue.js +0 -195
  183. package/dist/UIKit/BaseBadge.d.ts +0 -18
  184. package/dist/UIKit/BaseBadge.js +0 -5
  185. package/dist/UIKit/BaseBadge.vue.js +0 -18
  186. package/dist/UIKit/BaseBreadcrumb.d.ts +0 -32
  187. package/dist/UIKit/BaseBreadcrumb.js +0 -4
  188. package/dist/UIKit/BaseBreadcrumb.vue.js +0 -57
  189. package/dist/UIKit/BaseButton.d.ts +0 -75
  190. package/dist/UIKit/BaseButton.js +0 -4
  191. package/dist/UIKit/BaseButton.vue.js +0 -88
  192. package/dist/UIKit/BaseComplexToggle.d.ts +0 -54
  193. package/dist/UIKit/BaseComplexToggle.js +0 -7
  194. package/dist/UIKit/BaseComplexToggle.vue.js +0 -106
  195. package/dist/UIKit/BaseDropDown.d.ts +0 -88
  196. package/dist/UIKit/BaseDropDown.js +0 -5
  197. package/dist/UIKit/BaseDropDown.vue.js +0 -152
  198. package/dist/UIKit/BaseFloatingLabel.d.ts +0 -24
  199. package/dist/UIKit/BaseFloatingLabel.js +0 -7
  200. package/dist/UIKit/BaseFloatingLabel.vue.js +0 -40
  201. package/dist/UIKit/BaseInput.d.ts +0 -63
  202. package/dist/UIKit/BaseInput.js +0 -7
  203. package/dist/UIKit/BaseInput.vue.js +0 -211
  204. package/dist/UIKit/BaseModal.d.ts +0 -65
  205. package/dist/UIKit/BaseModal.js +0 -5
  206. package/dist/UIKit/BaseModal.vue.js +0 -170
  207. package/dist/UIKit/BasePagination.js +0 -4
  208. package/dist/UIKit/BasePagination.vue.js +0 -228
  209. package/dist/UIKit/BaseSelect/SelectItem.d.ts +0 -30
  210. package/dist/UIKit/BaseSelect/SelectItem.js +0 -4
  211. package/dist/UIKit/BaseSelect/SelectItem.vue.js +0 -42
  212. package/dist/UIKit/BaseSlider.js +0 -7
  213. package/dist/UIKit/BaseSnackbar.d.ts +0 -64
  214. package/dist/UIKit/BaseSnackbar.js +0 -5
  215. package/dist/UIKit/BaseSnackbar.vue.js +0 -147
  216. package/dist/UIKit/BaseTextarea.js +0 -7
  217. package/dist/UIKit/BaseTextarea.vue.js +0 -127
  218. package/dist/UIKit/BaseToggle.d.ts +0 -28
  219. package/dist/UIKit/BaseToggle.js +0 -4
  220. package/dist/UIKit/BaseToggle.vue.js +0 -39
  221. package/dist/UIKit/BaseTooltip.d.ts +0 -35
  222. package/dist/UIKit/BaseTooltip.js +0 -7
  223. package/dist/UIKit/BaseTooltip.vue.js +0 -41
  224. package/dist/UIKit/BaseUploadFile.d.ts +0 -38
  225. package/dist/UIKit/BaseUploadFile.js +0 -4
  226. package/dist/UIKit/BaseUploadFile.vue.js +0 -71
  227. package/dist/UIKit/Card/BaseCard.d.ts +0 -25
  228. package/dist/UIKit/Card/BaseCard.js +0 -5
  229. package/dist/UIKit/Card/BaseCard.vue.js +0 -37
  230. package/dist/UIKit/Card/CardDescriptionPrimitive.d.ts +0 -13
  231. package/dist/UIKit/Card/CardDescriptionPrimitive.js +0 -12
  232. package/dist/UIKit/Card/CardImagePrimitive.d.ts +0 -13
  233. package/dist/UIKit/Card/CardImagePrimitive.js +0 -4
  234. package/dist/UIKit/Card/CardImagePrimitive.vue.js +0 -16
  235. package/dist/UIKit/Card/CardRootPrimitive.d.ts +0 -20
  236. package/dist/UIKit/Card/CardRootPrimitive.js +0 -5
  237. package/dist/UIKit/Card/CardRootPrimitive.vue.js +0 -27
  238. package/dist/UIKit/Card/type.d.ts +0 -3
  239. package/dist/UIKit/Card/type.js +0 -4
  240. package/dist/UIKit/Checkbox/CheckboxBtn.d.ts +0 -52
  241. package/dist/UIKit/Checkbox/CheckboxBtn.js +0 -5
  242. package/dist/UIKit/Checkbox/CheckboxBtn.vue.js +0 -82
  243. package/dist/UIKit/Checkbox/CheckboxGroup.d.ts +0 -74
  244. package/dist/UIKit/Checkbox/CheckboxGroup.js +0 -4
  245. package/dist/UIKit/Checkbox/CheckboxGroup.vue.js +0 -117
  246. package/dist/UIKit/Checkbox/v2/CheckboxButtonGroup.d.ts +0 -41
  247. package/dist/UIKit/Checkbox/v2/CheckboxButtonGroup.js +0 -4
  248. package/dist/UIKit/Checkbox/v2/CheckboxButtonGroup.vue.js +0 -78
  249. package/dist/UIKit/Checkbox/v2/CheckboxGroupItemPrimitive.d.ts +0 -31
  250. package/dist/UIKit/Checkbox/v2/CheckboxGroupItemPrimitive.js +0 -4
  251. package/dist/UIKit/Checkbox/v2/CheckboxGroupItemPrimitive.vue.js +0 -35
  252. package/dist/UIKit/Checkbox/v2/CheckboxGroupPrimitive.d.ts +0 -26
  253. package/dist/UIKit/Checkbox/v2/CheckboxGroupPrimitive.js +0 -4
  254. package/dist/UIKit/Checkbox/v2/CheckboxGroupPrimitive.vue.js +0 -35
  255. package/dist/UIKit/ProgressBar/ProgressIndicatorPrimitive.d.ts +0 -4
  256. package/dist/UIKit/ProgressBar/ProgressIndicatorPrimitive.js +0 -4
  257. package/dist/UIKit/ProgressBar/ProgressIndicatorPrimitive.vue.js +0 -16
  258. package/dist/UIKit/ProgressBar/ProgressRootPrimitive.d.ts +0 -25
  259. package/dist/UIKit/ProgressBar/ProgressRootPrimitive.js +0 -4
  260. package/dist/UIKit/ProgressBar/ProgressRootPrimitive.vue.js +0 -32
  261. package/dist/UIKit/Radio/RadioButton.d.ts +0 -38
  262. package/dist/UIKit/Radio/RadioButton.js +0 -4
  263. package/dist/UIKit/Radio/RadioButton.vue.js +0 -60
  264. package/dist/UIKit/Radio/RadioGroup.d.ts +0 -64
  265. package/dist/UIKit/Radio/RadioGroup.js +0 -4
  266. package/dist/UIKit/Radio/RadioGroup.vue.js +0 -64
  267. package/dist/UIKit/Radio/v2/RadioButtonGroup.d.ts +0 -38
  268. package/dist/UIKit/Radio/v2/RadioButtonGroup.js +0 -4
  269. package/dist/UIKit/Radio/v2/RadioButtonGroup.vue.js +0 -48
  270. package/dist/UIKit/Radio/v2/RadioButtonItem.d.ts +0 -17
  271. package/dist/UIKit/Radio/v2/RadioButtonItem.js +0 -5
  272. package/dist/UIKit/Radio/v2/RadioButtonItem.vue.js +0 -45
  273. package/dist/UIKit/Radio/v2/RadioGroupItemPrimitive.d.ts +0 -22
  274. package/dist/UIKit/Radio/v2/RadioGroupItemPrimitive.js +0 -4
  275. package/dist/UIKit/Radio/v2/RadioGroupItemPrimitive.vue.js +0 -31
  276. package/dist/UIKit/ShimmerLoader/BaseShimmerLoader.d.ts +0 -15
  277. package/dist/UIKit/ShimmerLoader/BaseShimmerLoader.js +0 -7
  278. package/dist/UIKit/ShimmerLoader/BaseShimmerLoader.vue.js +0 -20
  279. package/dist/UIKit/ShimmerLoader/ShimmerMultiLine.d.ts +0 -11
  280. package/dist/UIKit/ShimmerLoader/ShimmerMultiLine.js +0 -4
  281. package/dist/UIKit/ShimmerLoader/ShimmerMultiLine.vue.js +0 -31
  282. package/dist/UIKit/Slider/SimpleSlider.js +0 -7
  283. package/dist/UIKit/StaticSpinner.d.ts +0 -7
  284. package/dist/UIKit/StaticSpinner.js +0 -7
  285. package/dist/UIKit/StaticSpinner.vue.js +0 -27
  286. package/dist/UIKit/Tab/BaseTab.d.ts +0 -19
  287. package/dist/UIKit/Tab/BaseTab.js +0 -4
  288. package/dist/UIKit/Tab/BaseTabList.d.ts +0 -14
  289. package/dist/UIKit/Tab/BaseTabList.js +0 -4
  290. package/dist/UIKit/Tab/BaseTabList.vue.js +0 -45
  291. package/dist/UIKit/Tab/BaseTabPanel.d.ts +0 -20
  292. package/dist/UIKit/Tab/BaseTabPanel.js +0 -4
  293. package/dist/UIKit/Tab/BaseTabPanel.vue.js +0 -25
  294. package/dist/UIKit/Tab/BaseTabView.d.ts +0 -49
  295. package/dist/UIKit/Tab/BaseTabView.js +0 -4
  296. package/dist/UIKit/Tab/BaseTabView.vue.js +0 -106
  297. package/dist/UIKit/Tab/v2/BaseTabs.d.ts +0 -29
  298. package/dist/UIKit/Tab/v2/BaseTabs.js +0 -5
  299. package/dist/UIKit/Tab/v2/BaseTabs.vue.js +0 -39
  300. package/dist/UIKit/Tab/v2/BaseTabsContent.d.ts +0 -14
  301. package/dist/UIKit/Tab/v2/BaseTabsContent.js +0 -4
  302. package/dist/UIKit/Tab/v2/BaseTabsContent.vue.js +0 -24
  303. package/dist/UIKit/Tab/v2/BaseTabsIndicator.d.ts +0 -16
  304. package/dist/UIKit/Tab/v2/BaseTabsIndicator.js +0 -5
  305. package/dist/UIKit/Tab/v2/BaseTabsIndicator.vue.js +0 -34
  306. package/dist/UIKit/Tab/v2/BaseTabsList.d.ts +0 -14
  307. package/dist/UIKit/Tab/v2/BaseTabsList.js +0 -4
  308. package/dist/UIKit/Tab/v2/BaseTabsList.vue.js +0 -23
  309. package/dist/UIKit/Tab/v2/BaseTabsTrigger.d.ts +0 -25
  310. package/dist/UIKit/Tab/v2/BaseTabsTrigger.js +0 -4
  311. package/dist/UIKit/Tab/v2/BaseTabsTrigger.vue.js +0 -31
  312. package/dist/UIKit/types.js +0 -1
  313. package/dist/_virtual/_plugin-vue_export-helper.js +0 -9
  314. package/dist/assets/AccessibleSelect.css +0 -1
  315. package/dist/assets/BaseAccordionItem.css +0 -1
  316. package/dist/assets/BaseAutocomplete.css +0 -1
  317. package/dist/assets/BaseComplexToggle2.css +0 -1
  318. package/dist/assets/BaseDropDown.css +0 -1
  319. package/dist/assets/BaseFloatingLabel2.css +0 -1
  320. package/dist/assets/BaseInput2.css +0 -1
  321. package/dist/assets/BaseSlider2.css +0 -1
  322. package/dist/assets/BaseTabs.css +0 -1
  323. package/dist/assets/BaseTabsIndicator.css +0 -1
  324. package/dist/assets/BaseTextarea2.css +0 -1
  325. package/dist/assets/BaseTooltip2.css +0 -1
  326. package/dist/assets/ClearableAutocomplete.css +0 -1
  327. package/dist/assets/RadioButtonItem.css +0 -1
  328. package/dist/assets/SwiperCarousel2.css +0 -1
  329. package/dist/assets/SwiperRootPrimitive.css +0 -1
  330. package/dist/assets/SwiperRootPrimitive2.css +0 -1
  331. package/dist/assets/SwiperSlideImagePrimitive.css +0 -1
  332. package/dist/assets/baseAlert.css +0 -1
  333. package/dist/assets/baseCard.css +0 -1
  334. package/dist/assets/baseComplexToggle.css +0 -1
  335. package/dist/assets/baseFloatingLabel.css +0 -1
  336. package/dist/assets/baseInput.css +0 -1
  337. package/dist/assets/baseModal.css +0 -1
  338. package/dist/assets/baseSlider.css +0 -1
  339. package/dist/assets/baseSpinner.css +0 -1
  340. package/dist/assets/baseTextarea.css +0 -1
  341. package/dist/assets/baseTooltip.css +0 -1
  342. package/dist/assets/swiper-free-mode.css +0 -1
  343. package/dist/assets/swiper-navigation.css +0 -1
  344. package/dist/assets/swiper-pagination.css +0 -1
  345. package/dist/assets/swiper-swiper.css +0 -1
  346. package/dist/assets/swiper-thumbs.css +0 -0
  347. package/dist/assets/swiper-zoom.css +0 -1
  348. package/dist/assets/tailwind.css +0 -1
  349. package/dist/chart/DoughnutChart.d.ts +0 -8
  350. package/dist/chart/DoughnutChart.js +0 -4
  351. package/dist/chart/DoughnutChart.vue.js +0 -26
  352. package/dist/chart/LineChart.d.ts +0 -11
  353. package/dist/chart/LineChart.js +0 -4
  354. package/dist/chart/LineChart.vue.js +0 -30
  355. package/dist/components/IntersectionObserver/IntersectionObservable.d.ts +0 -22
  356. package/dist/components/IntersectionObserver/IntersectionObservable.js +0 -4
  357. package/dist/components/IntersectionObserver/IntersectionObservable.vue.js +0 -24
  358. package/dist/components/IntersectionObserver/IntersectionObserver.d.ts +0 -52
  359. package/dist/components/IntersectionObserver/IntersectionObserver.js +0 -4
  360. package/dist/components/IntersectionObserver/IntersectionObserver.vue.js +0 -50
  361. package/dist/components/IntersectionObserver/v2/IntersectionObserverProvider.d.ts +0 -21
  362. package/dist/components/IntersectionObserver/v2/IntersectionObserverProvider.js +0 -4
  363. package/dist/components/IntersectionObserver/v2/IntersectionObserverProvider.vue.js +0 -39
  364. package/dist/components/IntersectionObserver/v2/IntersectionObserverTarget.d.ts +0 -22
  365. package/dist/components/IntersectionObserver/v2/IntersectionObserverTarget.js +0 -4
  366. package/dist/components/IntersectionObserver/v2/IntersectionObserverTarget.vue.js +0 -31
  367. package/dist/components/IntersectionObserver/v2/types.d.ts +0 -4
  368. package/dist/components/IntersectionObserver/v2/types.js +0 -6
  369. package/dist/components/carousel/Primitive/SwiperNavigationPrimitive.d.ts +0 -9
  370. package/dist/components/carousel/Primitive/SwiperNavigationPrimitive.js +0 -4
  371. package/dist/components/carousel/Primitive/SwiperNavigationPrimitive.vue.js +0 -39
  372. package/dist/components/carousel/Primitive/SwiperPaginationPrimitive.d.ts +0 -9
  373. package/dist/components/carousel/Primitive/SwiperPaginationPrimitive.js +0 -5
  374. package/dist/components/carousel/Primitive/SwiperPaginationPrimitive.vue.js +0 -34
  375. package/dist/components/carousel/Primitive/SwiperPrimitive.d.ts +0 -20
  376. package/dist/components/carousel/Primitive/SwiperPrimitive.js +0 -4
  377. package/dist/components/carousel/Primitive/SwiperPrimitive.vue.js +0 -21
  378. package/dist/components/carousel/Primitive/SwiperRootPrimitive.d.ts +0 -51
  379. package/dist/components/carousel/Primitive/SwiperRootPrimitive.js +0 -11
  380. package/dist/components/carousel/Primitive/SwiperRootPrimitive.vue.js +0 -113
  381. package/dist/components/carousel/Primitive/SwiperSlideImagePrimitive.d.ts +0 -18
  382. package/dist/components/carousel/Primitive/SwiperSlideImagePrimitive.js +0 -5
  383. package/dist/components/carousel/Primitive/SwiperSlideImagePrimitive.vue.js +0 -40
  384. package/dist/components/carousel/SwiperCarousel.d.ts +0 -50
  385. package/dist/components/carousel/SwiperCarousel.js +0 -8
  386. package/dist/components/carousel/SwiperCarousel.vue.js +0 -231
  387. package/dist/components/carousel/SwiperSlide.d.ts +0 -13
  388. package/dist/composables/mock.d.ts +0 -25
  389. package/dist/composables/mock.js +0 -49
  390. package/dist/lazyModules/ChartJs/Chart.d.ts +0 -1
  391. package/dist/lazyModules/ChartJs/Chart.js +0 -4
  392. package/dist/lazyModules/ChartJs/DoughnutChart/core.d.ts +0 -2
  393. package/dist/lazyModules/ChartJs/DoughnutChart/core.js +0 -6
  394. package/dist/lazyModules/ChartJs/LineChart/cartesian.d.ts +0 -2
  395. package/dist/lazyModules/ChartJs/LineChart/cartesian.js +0 -6
  396. package/dist/lazyModules/ChartJs/LineChart/core.d.ts +0 -2
  397. package/dist/lazyModules/ChartJs/LineChart/core.js +0 -6
  398. package/dist/lazyModules/ChartJs/Plugins/Legend.d.ts +0 -1
  399. package/dist/lazyModules/ChartJs/Plugins/Legend.js +0 -2
  400. package/dist/lazyModules/ChartJs/Plugins/TimeScale.d.ts +0 -0
  401. package/dist/lazyModules/ChartJs/Plugins/TimeScale.js +0 -3
  402. package/dist/lazyModules/ChartJs/Plugins/Title.d.ts +0 -1
  403. package/dist/lazyModules/ChartJs/Plugins/Title.js +0 -2
  404. package/dist/lazyModules/ChartJs/Plugins/Tooltip.d.ts +0 -1
  405. package/dist/lazyModules/ChartJs/Plugins/Tooltip.js +0 -2
  406. package/dist/lazyModules/Swiper/Autoplay/factory.d.ts +0 -3
  407. package/dist/lazyModules/Swiper/Autoplay/factory.js +0 -9
  408. package/dist/lazyModules/Swiper/Autoplay/index.d.ts +0 -1
  409. package/dist/lazyModules/Swiper/Autoplay/index.js +0 -6
  410. package/dist/lazyModules/Swiper/Controller/factory.d.ts +0 -3
  411. package/dist/lazyModules/Swiper/Controller/factory.js +0 -7
  412. package/dist/lazyModules/Swiper/Controller/index.d.ts +0 -1
  413. package/dist/lazyModules/Swiper/Controller/index.js +0 -6
  414. package/dist/lazyModules/Swiper/FreeMode/factory.d.ts +0 -3
  415. package/dist/lazyModules/Swiper/FreeMode/factory.js +0 -9
  416. package/dist/lazyModules/Swiper/FreeMode/index.d.ts +0 -1
  417. package/dist/lazyModules/Swiper/FreeMode/index.js +0 -6
  418. package/dist/lazyModules/Swiper/Keyboard/factory.d.ts +0 -3
  419. package/dist/lazyModules/Swiper/Keyboard/factory.js +0 -9
  420. package/dist/lazyModules/Swiper/Keyboard/index.d.ts +0 -1
  421. package/dist/lazyModules/Swiper/Keyboard/index.js +0 -6
  422. package/dist/lazyModules/Swiper/Navigation/factory.d.ts +0 -3
  423. package/dist/lazyModules/Swiper/Navigation/factory.js +0 -9
  424. package/dist/lazyModules/Swiper/Navigation/index.d.ts +0 -1
  425. package/dist/lazyModules/Swiper/Navigation/index.js +0 -6
  426. package/dist/lazyModules/Swiper/Pagination/factory.d.ts +0 -3
  427. package/dist/lazyModules/Swiper/Pagination/factory.js +0 -7
  428. package/dist/lazyModules/Swiper/Pagination/index.d.ts +0 -1
  429. package/dist/lazyModules/Swiper/Pagination/index.js +0 -6
  430. package/dist/lazyModules/Swiper/Thumbs/factory.d.ts +0 -3
  431. package/dist/lazyModules/Swiper/Thumbs/factory.js +0 -7
  432. package/dist/lazyModules/Swiper/Thumbs/index.d.ts +0 -1
  433. package/dist/lazyModules/Swiper/Thumbs/index.js +0 -6
  434. package/dist/lazyModules/Swiper/Zoom/factory.d.ts +0 -3
  435. package/dist/lazyModules/Swiper/Zoom/factory.js +0 -9
  436. package/dist/lazyModules/Swiper/Zoom/index.d.ts +0 -1
  437. package/dist/lazyModules/Swiper/Zoom/index.js +0 -6
  438. package/dist/lazyModules/Swiper/factory.d.ts +0 -3
  439. package/dist/lazyModules/Swiper/factory.js +0 -13
  440. package/dist/lazyModules/Swiper/index.d.ts +0 -1
  441. package/dist/lazyModules/Swiper/index.js +0 -5
  442. package/dist/lazyModules/Swiper/swiper-css.d.js +0 -1
  443. package/dist/lazyModules/Swiper/types.d.ts +0 -5
  444. package/dist/lazyModules/Swiper/types.js +0 -1
  445. package/dist/lazyModules/VueChartJs/Doughnut/factory.d.ts +0 -7
  446. package/dist/lazyModules/VueChartJs/Doughnut/factory.js +0 -12
  447. package/dist/lazyModules/VueChartJs/Doughnut/index.d.ts +0 -3
  448. package/dist/lazyModules/VueChartJs/Doughnut/index.js +0 -5
  449. package/dist/lazyModules/VueChartJs/Line/factory.d.ts +0 -7
  450. package/dist/lazyModules/VueChartJs/Line/factory.js +0 -14
  451. package/dist/lazyModules/VueChartJs/Line/index.d.ts +0 -3
  452. package/dist/lazyModules/VueChartJs/Line/index.js +0 -5
  453. package/dist/types/index.d.ts +0 -33
  454. package/dist/types/index.js +0 -1
  455. /package/dist/{composables/useFloatingLabel.js → useFloatingLabel.js} +0 -0
  456. /package/dist/{composables/useValidator.js → useValidator.js} +0 -0
@@ -1,20 +0,0 @@
1
- import { defineComponent as i, openBlock as a, createElementBlock as l, createElementVNode as o, normalizeClass as s, renderSlot as d } from "vue";
2
- const n = { class: "uikit-relative uikit-overflow-hidden uikit-bg-w-lavender" }, r = ["data-enabled"], c = /* @__PURE__ */ i({
3
- __name: "BaseShimmerLoader",
4
- props: {
5
- shimmerClasses: { default: "" },
6
- enabled: { type: Boolean, default: !0 }
7
- },
8
- setup(e) {
9
- return (t, u) => (a(), l("div", n, [
10
- o("div", {
11
- class: s(["shimmer uikit-absolute uikit-bottom-0 uikit-left-0 uikit-right-0 uikit-top-0 uikit-h-full", e.shimmerClasses]),
12
- "data-enabled": e.enabled || void 0
13
- }, null, 10, r),
14
- d(t.$slots, "default", {}, void 0, !0)
15
- ]));
16
- }
17
- });
18
- export {
19
- c as default
20
- };
@@ -1,11 +0,0 @@
1
- import { BaseShimmerLoaderProps } from './BaseShimmerLoader';
2
- import { ClassTypeProp } from '../types';
3
- type __VLS_Props = {
4
- lines?: number;
5
- randomLength?: boolean;
6
- shimmerClasses?: ClassTypeProp;
7
- inheritHeight?: boolean;
8
- } & Pick<BaseShimmerLoaderProps, "enabled">;
9
- declare const __VLS_export: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
10
- declare const _default: typeof __VLS_export;
11
- export default _default;
@@ -1,4 +0,0 @@
1
- import f from "./ShimmerMultiLine.vue.js";
2
- export {
3
- f as default
4
- };
@@ -1,31 +0,0 @@
1
- import { defineComponent as l, openBlock as t, createElementBlock as a, Fragment as r, renderList as i, createBlock as m, normalizeStyle as s, normalizeClass as o } from "vue";
2
- import u from "./BaseShimmerLoader.js";
3
- const k = /* @__PURE__ */ l({
4
- __name: "ShimmerMultiLine",
5
- props: {
6
- lines: { default: 1 },
7
- randomLength: { type: Boolean, default: !1 },
8
- shimmerClasses: {},
9
- inheritHeight: { type: Boolean, default: !1 },
10
- enabled: { type: Boolean, default: !0 }
11
- },
12
- setup(e) {
13
- return (d, h) => (t(!0), a(r, null, i(e.lines, (n) => (t(), m(u, {
14
- ref_for: !0,
15
- ref: "shimmerLines",
16
- class: o(["shimmer-line", [
17
- e.shimmerClasses,
18
- e.inheritHeight ? "uikit-h-[1em]" : "uikit-h-8",
19
- "uikit-mb-2 uikit-rounded-xs"
20
- ]]),
21
- enabled: e.enabled,
22
- key: `sml-${n}`,
23
- style: s({
24
- marginRight: e.randomLength ? `${Math.round(Math.random() * 5) * 10}%` : 0
25
- })
26
- }, null, 8, ["class", "enabled", "style"]))), 128));
27
- }
28
- });
29
- export {
30
- k as default
31
- };
@@ -1,7 +0,0 @@
1
- import o from "./SimpleSlider.vue.js";
2
- import '../../assets/SimpleSlider.css';/* empty css */
3
- import r from "../../_virtual/_plugin-vue_export-helper.js";
4
- const p = /* @__PURE__ */ r(o, [["__scopeId", "data-v-54b825e3"]]);
5
- export {
6
- p as default
7
- };
@@ -1,7 +0,0 @@
1
- type __VLS_Props = {
2
- thickness?: number;
3
- strokeColor?: string;
4
- };
5
- declare const __VLS_export: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
6
- declare const _default: typeof __VLS_export;
7
- export default _default;
@@ -1,7 +0,0 @@
1
- import t from "./StaticSpinner.vue.js";
2
- import '../assets/StaticSpinner.css';/* empty css */
3
- import o from "../_virtual/_plugin-vue_export-helper.js";
4
- const c = /* @__PURE__ */ o(t, [["__scopeId", "data-v-10e0c0fd"]]);
5
- export {
6
- c as default
7
- };
@@ -1,27 +0,0 @@
1
- import { defineComponent as t, openBlock as o, createElementBlock as s, createElementVNode as n } from "vue";
2
- const c = {
3
- viewBox: "0 0 128 128",
4
- class: "icon-spin uikit-h-6 uikit-w-6"
5
- }, i = ["stroke", "stroke-width"], k = /* @__PURE__ */ t({
6
- __name: "StaticSpinner",
7
- props: {
8
- thickness: { default: 9 },
9
- strokeColor: { default: "#fff" }
10
- },
11
- setup(e) {
12
- return (r, l) => (o(), s("svg", c, [
13
- n("circle", {
14
- class: "path",
15
- cx: "64",
16
- cy: "64",
17
- r: "42",
18
- fill: "none",
19
- stroke: e.strokeColor,
20
- "stroke-width": e.thickness
21
- }, null, 8, i)
22
- ]));
23
- }
24
- });
25
- export {
26
- k as default
27
- };
@@ -1,19 +0,0 @@
1
- import { ClassTypeProp } from '../types';
2
- type __VLS_Props = {
3
- activeTabPanelIdx?: number;
4
- headerTitle?: string;
5
- tabPanelClasses?: ClassTypeProp;
6
- };
7
- declare var __VLS_1: {};
8
- type __VLS_Slots = {} & {
9
- header?: (props: typeof __VLS_1) => any;
10
- };
11
- declare const __VLS_base: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
12
- declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
13
- declare const _default: typeof __VLS_export;
14
- export default _default;
15
- type __VLS_WithSlots<T, S> = T & {
16
- new (): {
17
- $slots: S;
18
- };
19
- };
@@ -1,4 +0,0 @@
1
- import f from "./BaseTab.vue.js";
2
- export {
3
- f as default
4
- };
@@ -1,14 +0,0 @@
1
- import { ClassTypeProp } from '../types';
2
- import { TabType } from './BaseTabView';
3
- type __VLS_Props = {
4
- dataCy?: string;
5
- uid: string;
6
- tabListClasses?: ClassTypeProp;
7
- };
8
- declare const __VLS_export: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
9
- tabClick: (e: Event, tabIdx: number, tabElement: TabType) => any;
10
- }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
11
- onTabClick?: ((e: Event, tabIdx: number, tabElement: TabType) => any) | undefined;
12
- }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
13
- declare const _default: typeof __VLS_export;
14
- export default _default;
@@ -1,4 +0,0 @@
1
- import f from "./BaseTabList.vue.js";
2
- export {
3
- f as default
4
- };
@@ -1,45 +0,0 @@
1
- import { defineComponent as m, inject as l, openBlock as a, createElementBlock as r, normalizeClass as c, Fragment as y, renderList as C, unref as i, toDisplayString as h, createBlock as p, resolveDynamicComponent as f, createCommentVNode as _ } from "vue";
2
- const v = ["aria-labelledby", "data-cy"], B = ["id", "data-cy", "aria-selected", "aria-controls", "tabindex", "onClick"], F = { key: 0 }, $ = /* @__PURE__ */ m({
3
- __name: "BaseTabList",
4
- props: {
5
- dataCy: {},
6
- uid: {},
7
- tabListClasses: {}
8
- },
9
- emits: ["tabClick"],
10
- setup(n, { emit: o }) {
11
- const d = l("tabs"), s = l("isTabActive"), b = l("handleClick"), u = o;
12
- return (L, g) => (a(), r("div", {
13
- role: "tablist",
14
- "aria-labelledby": `tablist-${n.uid}`,
15
- class: c(n.tabListClasses),
16
- "data-cy": n.dataCy
17
- }, [
18
- (a(!0), r(y, null, C(i(d), (e, t) => (a(), r("button", {
19
- id: e.tabId,
20
- key: t,
21
- "data-cy": e["data-cy"],
22
- type: "button",
23
- role: "tab",
24
- "aria-selected": i(s)(t),
25
- "aria-controls": `base-tab-panel-${t}-${n.uid}`,
26
- tabindex: i(s)(t) ? void 0 : -1,
27
- class: c([
28
- "uikit-bg-transparent uikit-p-5px",
29
- {
30
- "uikit-border-b-2 uikit-border-solid uikit-border-w-primary uikit-font-semibold": i(s)(t)
31
- },
32
- e.class
33
- ]),
34
- onClick: (k) => {
35
- i(b)(t, e), u("tabClick", k, t, e);
36
- }
37
- }, [
38
- e["header-title"] ? (a(), r("span", F, h(e["header-title"]), 1)) : e.renderFn.children && e.renderFn.children.header ? (a(), p(f(e.renderFn.children.header), { key: 1 })) : _("", !0)
39
- ], 10, B))), 128))
40
- ], 10, v));
41
- }
42
- });
43
- export {
44
- $ as default
45
- };
@@ -1,20 +0,0 @@
1
- type __VLS_Props = {
2
- id: string;
3
- active?: boolean;
4
- labelledBy: string;
5
- };
6
- declare var __VLS_1: {};
7
- type __VLS_Slots = {} & {
8
- default?: (props: typeof __VLS_1) => any;
9
- };
10
- declare const __VLS_base: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
11
- active: boolean;
12
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
13
- declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
14
- declare const _default: typeof __VLS_export;
15
- export default _default;
16
- type __VLS_WithSlots<T, S> = T & {
17
- new (): {
18
- $slots: S;
19
- };
20
- };
@@ -1,4 +0,0 @@
1
- import f from "./BaseTabPanel.vue.js";
2
- export {
3
- f as default
4
- };
@@ -1,25 +0,0 @@
1
- import { defineComponent as l, withDirectives as t, openBlock as i, createElementBlock as d, normalizeClass as n, renderSlot as o, vShow as s } from "vue";
2
- const c = ["id", "aria-labelledby", "data-active"], v = /* @__PURE__ */ l({
3
- __name: "BaseTabPanel",
4
- props: {
5
- id: {},
6
- active: { type: Boolean, default: !1 },
7
- labelledBy: {}
8
- },
9
- setup(e) {
10
- return (a, r) => t((i(), d("div", {
11
- id: e.id,
12
- role: "tabpanel",
13
- "aria-labelledby": e.labelledBy,
14
- class: n(a.$attrs.class),
15
- "data-active": e.active
16
- }, [
17
- o(a.$slots, "default")
18
- ], 10, c)), [
19
- [s, e.active]
20
- ]);
21
- }
22
- });
23
- export {
24
- v as default
25
- };
@@ -1,49 +0,0 @@
1
- import { ClassTypeProp } from '../types';
2
- export type BaseTabProps = Partial<{
3
- "header-title": string;
4
- class: string;
5
- "active-tab-panel-idx": number;
6
- "tab-panel-classes": ClassTypeProp;
7
- "data-cy": string;
8
- }>;
9
- export type TabType = {
10
- renderFn: any;
11
- tabId: string;
12
- } & BaseTabProps;
13
- declare const _default: typeof __VLS_export;
14
- export default _default;
15
- declare const __VLS_export: import('vue').DefineComponent<{
16
- tabsPosition?: "top" | "bottom";
17
- tabViewDescription: string;
18
- tabListClasses?: ClassTypeProp;
19
- dataCy?: string;
20
- } & {
21
- /**
22
- * Model value which keeps track of the active tab.
23
- * By default, we will activate the first tab
24
- */
25
- activeIdx?: number | undefined;
26
- }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
27
- "update:activeIdx": (value: number | undefined) => any;
28
- tabClicked: (args_0: {
29
- tabIdx: number;
30
- tabElement: TabType;
31
- }) => any;
32
- }, string, import('vue').PublicProps, Readonly<{
33
- tabsPosition?: "top" | "bottom";
34
- tabViewDescription: string;
35
- tabListClasses?: ClassTypeProp;
36
- dataCy?: string;
37
- } & {
38
- /**
39
- * Model value which keeps track of the active tab.
40
- * By default, we will activate the first tab
41
- */
42
- activeIdx?: number | undefined;
43
- }> & Readonly<{
44
- "onUpdate:activeIdx"?: ((value: number | undefined) => any) | undefined;
45
- onTabClicked?: ((args_0: {
46
- tabIdx: number;
47
- tabElement: TabType;
48
- }) => any) | undefined;
49
- }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
@@ -1,4 +0,0 @@
1
- import f from "./BaseTabView.vue.js";
2
- export {
3
- f as default
4
- };
@@ -1,106 +0,0 @@
1
- import { defineComponent as S, useModel as z, ref as T, useId as j, useSlots as q, computed as G, provide as v, watch as x, openBlock as l, createElementBlock as f, normalizeClass as k, createElementVNode as H, unref as m, toDisplayString as J, createBlock as o, createCommentVNode as u, Fragment as I, renderList as K, withCtx as O, resolveDynamicComponent as Q, mergeModels as g } from "vue";
2
- import R from "./BaseTabPanel.vue.js";
3
- import P from "./BaseTabList.vue.js";
4
- const U = ["data-cy"], W = ["id"], ae = /* @__PURE__ */ S({
5
- inheritAttrs: !1,
6
- __name: "BaseTabView",
7
- props: /* @__PURE__ */ g({
8
- tabsPosition: { default: "top" },
9
- tabViewDescription: {},
10
- tabListClasses: {},
11
- dataCy: {}
12
- }, {
13
- activeIdx: { default: 0 },
14
- activeIdxModifiers: {}
15
- }),
16
- emits: /* @__PURE__ */ g(["tabClicked"], ["update:activeIdx"]),
17
- setup(s, { emit: $ }) {
18
- const B = $, c = z(s, "activeIdx"), A = T(""), b = T(null), d = j(), y = q(), r = (e) => e.props ?? null, h = (e) => e.type.__name === "BaseTab", p = (e, a) => ({
19
- renderFn: e,
20
- tabId: C(a),
21
- "active-tab-panel-idx": r(e)?.["active-tab-panel-idx"] ?? a,
22
- "header-title": r(e)?.["header-title"] || "",
23
- class: r(e)?.class || "",
24
- "tab-panel-classes": r(e)?.["tab-panel-classes"] || "",
25
- "data-cy": r(e)?.["data-cy"] || ""
26
- }), i = G(() => y.default ? y.default().reduce((e, a) => (a.children && Array.isArray(a.children) ? a.children.forEach((t) => {
27
- h(t) && e.push(p(t, e.length));
28
- }) : h(a) && e.push(p(a, e.length)), e), []) : []);
29
- v("tabs", i), v("isTabActive", (e) => c.value === e);
30
- const F = (e = -1) => b.value === e, C = (e) => `base-tab-${e}-${d}`, V = (e = -1) => `base-tab-panel-${e}-${d}`, w = (e = -1) => {
31
- const a = i.value.reduce(
32
- (t, n, N) => (n["active-tab-panel-idx"] !== e || t.push({ tab: n, idx: N }), t),
33
- []
34
- );
35
- return a && a.length === 1 ? a[0].tab.tabId : a.find((t) => t.idx === c.value)?.tab.tabId;
36
- }, D = (e) => {
37
- A.value = C(e);
38
- }, L = (e) => {
39
- const a = i.value.at(e ?? -1);
40
- b.value = a?.["active-tab-panel-idx"] ?? null;
41
- };
42
- v("handleClick", (e, a) => {
43
- D(e), c.value = e, B("tabClicked", { tabIdx: e, tabElement: a });
44
- }), x(
45
- c,
46
- (e) => {
47
- L(e ?? -1);
48
- },
49
- {
50
- immediate: !0
51
- }
52
- );
53
- const E = (e, a) => {
54
- for (let t = 0; t < e.length; t++)
55
- if (e[t] !== a[t]) return t;
56
- return null;
57
- }, M = (e = -1) => i.value.find((a) => a["active-tab-panel-idx"] === e);
58
- return x(
59
- () => i.value.map((e) => e["active-tab-panel-idx"]),
60
- (e, a) => {
61
- const t = E(e, a);
62
- if (t === null) return;
63
- const n = i.value[t]["active-tab-panel-idx"];
64
- c.value !== t || n === void 0 || (b.value = n);
65
- }
66
- ), (e, a) => (l(), f("div", {
67
- ref: "root",
68
- class: k(e.$attrs.class),
69
- "data-cy": s.dataCy
70
- }, [
71
- H("span", {
72
- id: `tablist-${m(d)}`,
73
- class: "uikit-sr-only"
74
- }, J(s.tabViewDescription), 9, W),
75
- s.tabsPosition === "top" ? (l(), o(P, {
76
- key: 0,
77
- uid: m(d),
78
- "tab-list-classes": s.tabListClasses,
79
- "data-cy": s.dataCy ? `${s.dataCy}-tab-list` : ""
80
- }, null, 8, ["uid", "tab-list-classes", "data-cy"])) : u("", !0),
81
- (l(!0), f(I, null, K(i.value, (t, n) => (l(), f(I, { key: n }, [
82
- M(n) ? (l(), o(R, {
83
- key: 0,
84
- id: V(t["active-tab-panel-idx"]),
85
- "labelled-by": w(n) ?? "",
86
- active: F(n),
87
- class: k(t["tab-panel-classes"])
88
- }, {
89
- default: O(() => [
90
- t.renderFn.children && t.renderFn.children.default ? (l(), o(Q(t.renderFn.children.default), { key: 0 })) : u("", !0)
91
- ]),
92
- _: 2
93
- }, 1032, ["id", "labelled-by", "active", "class"])) : u("", !0)
94
- ], 64))), 128)),
95
- s.tabsPosition === "bottom" ? (l(), o(P, {
96
- key: 1,
97
- uid: m(d),
98
- "tab-list-classes": s.tabListClasses,
99
- "data-cy": s.dataCy ? `${s.dataCy}-tab-list` : ""
100
- }, null, 8, ["uid", "tab-list-classes", "data-cy"])) : u("", !0)
101
- ], 10, U));
102
- }
103
- });
104
- export {
105
- ae as default
106
- };
@@ -1,29 +0,0 @@
1
- import { TabsRootProps } from 'reka-ui';
2
- export interface BaseTabsProps<T extends string | number> extends TabsRootProps<T> {
3
- dataCy?: string;
4
- }
5
- declare const _default: typeof __VLS_export;
6
- export default _default;
7
- declare const __VLS_export: <T extends string | number>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
8
- props: import('vue').PublicProps & __VLS_PrettifyLocal<BaseTabsProps<T> & {
9
- "onUpdate:modelValue"?: ((payload: T) => any) | undefined;
10
- onMounted?: (() => any) | undefined;
11
- }> & (typeof globalThis extends {
12
- __VLS_PROPS_FALLBACK: infer P;
13
- } ? P : {});
14
- expose: (exposed: {}) => void;
15
- attrs: any;
16
- slots: {
17
- default?: (props: {
18
- modelValue: T;
19
- }) => any;
20
- };
21
- emit: ((evt: "update:modelValue", payload: T) => void) & ((evt: "mounted") => void);
22
- }>) => import('vue').VNode & {
23
- __ctx?: Awaited<typeof __VLS_setup>;
24
- };
25
- type __VLS_PrettifyLocal<T> = (T extends any ? {
26
- [K in keyof T]: T[K];
27
- } : {
28
- [K in keyof T as K]: T[K];
29
- }) & {};
@@ -1,5 +0,0 @@
1
- import o from "./BaseTabs.vue.js";
2
- import '../../../assets/BaseTabs.css';/* empty css */
3
- export {
4
- o as default
5
- };
@@ -1,39 +0,0 @@
1
- import { defineComponent as l, createPropsRestProxy as i, shallowRef as m, provide as d, onMounted as p, openBlock as c, createBlock as f, unref as y, mergeProps as C, withCtx as B, renderSlot as M } from "vue";
2
- import { TabsRoot as V } from "reka-ui";
3
- const v = /* @__PURE__ */ l({
4
- __name: "BaseTabs",
5
- props: {
6
- dataCy: {},
7
- defaultValue: {},
8
- orientation: {},
9
- dir: {},
10
- activationMode: {},
11
- modelValue: {},
12
- unmountOnHide: { type: Boolean },
13
- asChild: { type: Boolean },
14
- as: {}
15
- },
16
- emits: ["update:modelValue", "mounted"],
17
- setup(t, { emit: s }) {
18
- const r = i(t, ["dataCy"]), o = s, a = m(!1);
19
- return d("indicatorMounted", a), d("setIndicatorMounted", () => {
20
- a.value = !0;
21
- }), p(() => {
22
- o("mounted");
23
- }), (u, n) => (c(), f(y(V), C(r, {
24
- "data-cy": t.dataCy,
25
- class: "uikit-base-tabs",
26
- "onUpdate:modelValue": n[0] || (n[0] = (e) => o("update:modelValue", e))
27
- }), {
28
- default: B(({ modelValue: e }) => [
29
- M(u.$slots, "default", {
30
- modelValue: e
31
- })
32
- ]),
33
- _: 3
34
- }, 16, ["data-cy"]));
35
- }
36
- });
37
- export {
38
- v as default
39
- };
@@ -1,14 +0,0 @@
1
- import { TabsContentProps } from 'reka-ui';
2
- export interface BaseTabsContentProps extends TabsContentProps {
3
- dataCy?: string;
4
- }
5
- declare const _default: typeof __VLS_export;
6
- export default _default;
7
- declare const __VLS_export: __VLS_WithSlots<import('vue').DefineComponent<BaseTabsContentProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<BaseTabsContentProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>, {
8
- default?: (props: {}) => any;
9
- }>;
10
- type __VLS_WithSlots<T, S> = T & {
11
- new (): {
12
- $slots: S;
13
- };
14
- };
@@ -1,4 +0,0 @@
1
- import f from "./BaseTabsContent.vue.js";
2
- export {
3
- f as default
4
- };
@@ -1,24 +0,0 @@
1
- import { defineComponent as o, createPropsRestProxy as r, openBlock as n, createBlock as s, unref as c, mergeProps as p, withCtx as d, renderSlot as l } from "vue";
2
- import { TabsContent as f } from "reka-ui";
3
- const C = /* @__PURE__ */ o({
4
- __name: "BaseTabsContent",
5
- props: {
6
- dataCy: {},
7
- value: {},
8
- forceMount: { type: Boolean },
9
- asChild: { type: Boolean },
10
- as: {}
11
- },
12
- setup(e) {
13
- const t = r(e, ["dataCy"]);
14
- return (a, u) => (n(), s(c(f), p({ "data-cy": e.dataCy }, t), {
15
- default: d(() => [
16
- l(a.$slots, "default")
17
- ]),
18
- _: 3
19
- }, 16, ["data-cy"]));
20
- }
21
- });
22
- export {
23
- C as default
24
- };
@@ -1,16 +0,0 @@
1
- import { TabsIndicatorProps } from 'reka-ui';
2
- export interface BaseTabsIndicatorProps extends TabsIndicatorProps {
3
- dataCy?: string;
4
- }
5
- declare const _default: typeof __VLS_export;
6
- export default _default;
7
- declare const __VLS_export: __VLS_WithSlots<import('vue').DefineComponent<BaseTabsIndicatorProps, {
8
- updateIndicatorStyle: () => void | undefined;
9
- }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<BaseTabsIndicatorProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>, {
10
- default?: (props: {}) => any;
11
- }>;
12
- type __VLS_WithSlots<T, S> = T & {
13
- new (): {
14
- $slots: S;
15
- };
16
- };
@@ -1,5 +0,0 @@
1
- import o from "./BaseTabsIndicator.vue.js";
2
- import '../../../assets/BaseTabsIndicator.css';/* empty css */
3
- export {
4
- o as default
5
- };
@@ -1,34 +0,0 @@
1
- import { defineComponent as s, createPropsRestProxy as d, inject as u, useTemplateRef as c, onMounted as l, openBlock as p, createBlock as k, unref as f, mergeProps as m, withCtx as b, renderSlot as y, createElementVNode as I } from "vue";
2
- import { TabsIndicator as x } from "reka-ui";
3
- const v = /* @__PURE__ */ s({
4
- __name: "BaseTabsIndicator",
5
- props: {
6
- dataCy: {},
7
- asChild: { type: Boolean },
8
- as: {}
9
- },
10
- setup(t, { expose: i }) {
11
- const e = d(t, ["dataCy"]), o = u(
12
- "setIndicatorMounted",
13
- void 0
14
- ), n = c("tabIndicatorRef");
15
- return l(() => {
16
- o?.();
17
- }), i({
18
- updateIndicatorStyle: () => n.value?.updateIndicatorStyle?.()
19
- }), (r, a) => (p(), k(f(x), m({ ref: "tabIndicatorRef" }, e, {
20
- "data-cy": t.dataCy,
21
- class: "uikit-base-tabs-indicator uikit-absolute uikit-bottom-[var(--indicator-bottom,0)] uikit-left-0 uikit-z-[1] uikit-h-[2px] uikit-w-[--reka-tabs-indicator-size] uikit-translate-x-[--reka-tabs-indicator-position] uikit-translate-y-[1px] uikit-transition-[width,transform] uikit-duration-300"
22
- }), {
23
- default: b(() => [
24
- y(r.$slots, "default", {}, () => [
25
- a[0] || (a[0] = I("div", { class: "uikit-base-tabs-indicator-element uikit-h-full uikit-w-full" }, null, -1))
26
- ])
27
- ]),
28
- _: 3
29
- }, 16, ["data-cy"]));
30
- }
31
- });
32
- export {
33
- v as default
34
- };
@@ -1,14 +0,0 @@
1
- import { TabsListProps } from 'reka-ui';
2
- export interface BaseTabsListProps extends TabsListProps {
3
- dataCy?: string;
4
- }
5
- declare const _default: typeof __VLS_export;
6
- export default _default;
7
- declare const __VLS_export: __VLS_WithSlots<import('vue').DefineComponent<BaseTabsListProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<BaseTabsListProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>, {
8
- default?: (props: {}) => any;
9
- }>;
10
- type __VLS_WithSlots<T, S> = T & {
11
- new (): {
12
- $slots: S;
13
- };
14
- };
@@ -1,4 +0,0 @@
1
- import f from "./BaseTabsList.vue.js";
2
- export {
3
- f as default
4
- };