@wikicasa-dev/components 2.6.11-alpha.0 → 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 -149
  150. package/dist/useChartjsModules.js +48 -0
  151. package/dist/utils.js +3 -3
  152. package/package.json +39 -69
  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 -230
  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/SwiperRootPrimitive.css +0 -1
  329. package/dist/assets/SwiperRootPrimitive2.css +0 -1
  330. package/dist/assets/SwiperSlideImagePrimitive.css +0 -1
  331. package/dist/assets/baseAlert.css +0 -1
  332. package/dist/assets/baseCard.css +0 -1
  333. package/dist/assets/baseComplexToggle.css +0 -1
  334. package/dist/assets/baseFloatingLabel.css +0 -1
  335. package/dist/assets/baseInput.css +0 -1
  336. package/dist/assets/baseModal.css +0 -1
  337. package/dist/assets/baseSlider.css +0 -1
  338. package/dist/assets/baseSpinner.css +0 -1
  339. package/dist/assets/baseTextarea.css +0 -1
  340. package/dist/assets/baseTooltip.css +0 -1
  341. package/dist/assets/swiper-free-mode.css +0 -1
  342. package/dist/assets/swiper-navigation.css +0 -1
  343. package/dist/assets/swiper-pagination.css +0 -1
  344. package/dist/assets/swiper-swiper.css +0 -1
  345. package/dist/assets/swiper-thumbs.css +0 -0
  346. package/dist/assets/swiper-zoom.css +0 -1
  347. package/dist/assets/swiperPaginationBullet.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 -4
  374. package/dist/components/carousel/Primitive/SwiperPaginationPrimitive.vue.js +0 -35
  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 -7
  386. package/dist/components/carousel/SwiperCarousel.vue.js +0 -232
  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,8 +1,9 @@
1
- import { defineComponent as R, useModel as w, ref as p, useTemplateRef as D, useAttrs as _, onMounted as j, openBlock as q, createElementBlock as G, createElementVNode as x, withModifiers as T, createVNode as k, mergeModels as H } from "vue";
1
+ import { defineComponent as R, mergeModels as j, useModel as D, ref as p, useTemplateRef as T, useAttrs as q, onMounted as G, createElementBlock as H, openBlock as J, createElementVNode as x, withModifiers as _, unref as h, createVNode as k } from "vue";
2
2
  import C from "./BaseInput.js";
3
- const J = { class: "range_container" }, K = { class: "sliders_control" }, O = ["value", "min", "max", "step"], Q = ["value", "min", "max", "step"], W = { class: "form_control row" }, X = { class: "pb-15 pb-sm-0 col-sm-6 col-xl-4" }, Y = { class: "col-sm-6 col-xl-4" }, ae = /* @__PURE__ */ R({
3
+ import { _ as K } from "./chunks/_plugin-vue_export-helper.CHgC5LLL.js";
4
+ import './assets/BaseSlider.css';const O = { class: "range_container" }, Q = { class: "sliders_control" }, W = ["value", "min", "max", "step"], X = ["value", "min", "max", "step"], Y = { class: "form_control row" }, Z = { class: "pb-sm-0 col-sm-6 col-xl-4 pb-15" }, ee = { class: "col-sm-6 col-xl-4" }, le = /* @__PURE__ */ R({
4
5
  __name: "BaseSlider",
5
- props: /* @__PURE__ */ H({
6
+ props: /* @__PURE__ */ j({
6
7
  type: { default: "linear" },
7
8
  min: { default: 0 },
8
9
  max: { default: 100 }
@@ -14,7 +15,7 @@ const J = { class: "range_container" }, K = { class: "sliders_control" }, O = ["
14
15
  }),
15
16
  emits: ["update:minValue", "update:maxValue"],
16
17
  setup(m) {
17
- function B(e, l) {
18
+ function M(e, l) {
18
19
  const a = parseInt(e.value, 10), t = parseInt(l.value, 10);
19
20
  return [a, t];
20
21
  }
@@ -22,29 +23,29 @@ const J = { class: "range_container" }, K = { class: "sliders_control" }, O = ["
22
23
  (e.position - e.minPos) * e.scale + e.minlval
23
24
  );
24
25
  function V(e, l, a, t, v) {
25
- const s = l.max - l.min, f = e - l.min, $ = l.value - l.min;
26
+ const i = l.max - l.min, f = e - l.min, $ = l.value - l.min;
26
27
  v.style.background = `linear-gradient(
27
28
  to right,
28
29
  ${a} 0%,
29
- ${a} ${f / s * 100}%,
30
- ${t} ${f / s * 100}%,
31
- ${t} ${$ / s * 100}%,
32
- ${a} ${$ / s * 100}%,
30
+ ${a} ${f / i * 100}%,
31
+ ${t} ${f / i * 100}%,
32
+ ${t} ${$ / i * 100}%,
33
+ ${a} ${$ / i * 100}%,
33
34
  ${a} 100%)`;
34
35
  }
35
- function h(e, l) {
36
+ function y(e, l) {
36
37
  e <= 0 ? l.style.zIndex = "2" : l.style.zIndex = "0";
37
38
  }
38
- const r = w(m, "minValue"), o = w(m, "maxValue"), n = p(0), u = p(100), c = p(10), d = p(40), F = p(0), M = p(0), y = p(0), g = D("fromSlider"), i = D("toSlider"), P = (e, l) => {
39
- if (!g.value || !i.value) return;
39
+ const r = D(m, "minValue"), o = D(m, "maxValue"), n = p(0), u = p(100), c = p(10), d = p(40), F = p(0), P = p(0), B = p(0), g = T("fromSlider"), s = T("toSlider"), S = (e, l) => {
40
+ if (!g.value || !s.value) return;
40
41
  l || (l = "0");
41
42
  const a = parseInt(l, 10);
42
43
  if (e == "min-input") {
43
44
  if (a >= o.value) return;
44
- r.value = a, z(i.value, a, o.value);
45
+ r.value = a, z(s.value, a, o.value);
45
46
  return;
46
47
  }
47
- a < r.value || (o.value = a, A(i.value, i.value, r.value, a));
48
+ a < r.value || (o.value = a, A(s.value, s.value, r.value, a));
48
49
  }, I = (e) => {
49
50
  if (m.type === "logarithmic")
50
51
  return e = e || 1, parseInt(
@@ -52,19 +53,19 @@ const J = { class: "range_container" }, K = { class: "sliders_control" }, O = ["
52
53
  value: e,
53
54
  minPos: n.value,
54
55
  minlval: F.value,
55
- scale: y.value
56
+ scale: B.value
56
57
  }).toFixed(0),
57
58
  10
58
59
  );
59
60
  if (m.type === "linear")
60
61
  return e;
61
62
  throw new Error("The slider type has not been implemented");
62
- }, S = (e) => {
63
+ }, b = (e) => {
63
64
  if (m.type === "logarithmic")
64
65
  return e = e || 1, parseInt(
65
66
  L({
66
67
  position: e,
67
- scale: y.value,
68
+ scale: B.value,
68
69
  minlval: F.value,
69
70
  minPos: n.value
70
71
  }).toFixed(0),
@@ -86,26 +87,26 @@ const J = { class: "range_container" }, K = { class: "sliders_control" }, O = ["
86
87
  "#2B5DFF",
87
88
  e
88
89
  );
89
- const s = t, f = o.value;
90
- s > f ? c.value = f : c.value = s;
90
+ const i = t, f = o.value;
91
+ i > f ? c.value = f : c.value = i;
91
92
  }, A = (e, l, a, t) => {
92
- const v = I(a), s = I(t);
93
+ const v = I(a), i = I(t);
93
94
  V(
94
95
  v,
95
96
  {
96
97
  min: n.value,
97
98
  max: u.value,
98
- value: s
99
+ value: i
99
100
  },
100
101
  "#B4C2F0",
101
102
  "#2B5DFF",
102
103
  l
103
104
  );
104
- const f = r.value, $ = s;
105
- h(o.value, e), f <= $ ? d.value = $ : d.value = f;
105
+ const f = r.value, $ = i;
106
+ y(o.value, e), f <= $ ? d.value = $ : d.value = f;
106
107
  }, N = (e, l) => {
107
108
  if (!l.value) return;
108
- const [a, t] = B(e, l), v = S(a);
109
+ const [a, t] = M(e, l), v = b(a);
109
110
  V(
110
111
  a,
111
112
  {
@@ -119,7 +120,7 @@ const J = { class: "range_container" }, K = { class: "sliders_control" }, O = ["
119
120
  ), a > t ? (e.value = `${t}`, c.value = t, r.value = t) : (c.value = a, r.value = v);
120
121
  }, U = (e, l) => {
121
122
  if (!l.value) return;
122
- const [a, t] = B(e, l), v = S(t);
123
+ const [a, t] = M(e, l), v = b(t);
123
124
  V(
124
125
  c.value,
125
126
  {
@@ -130,10 +131,12 @@ const J = { class: "range_container" }, K = { class: "sliders_control" }, O = ["
130
131
  "#B4C2F0",
131
132
  "#2B5DFF",
132
133
  l
133
- ), h(parseInt(l.value, 10), l), a <= t ? (d.value = t, o.value = v) : (l.value = `${a}`, d.value = a, o.value = a);
134
- }, b = _();
135
- return n.value = parseInt(`${m.min || 0}`, 10), u.value = parseInt(`${m.max || 100}`, 10), c.value = n.value, d.value = u.value, r.value = parseInt(`${b.minValue || n.value}`, 10), o.value = parseInt(`${b.maxValue || u.value}`, 10), F.value = Math.log(r.value || 1), M.value = Math.log(o.value), y.value = (M.value - F.value) / (u.value - n.value), j(() => {
136
- !g.value || !i.value || (V(
134
+ ), y(parseInt(l.value, 10), l), a <= t ? (d.value = t, o.value = v) : (l.value = `${a}`, d.value = a, o.value = a);
135
+ }, w = q();
136
+ return (() => {
137
+ n.value = parseInt(`${m.min || 0}`, 10), u.value = parseInt(`${m.max || 100}`, 10), c.value = n.value, d.value = u.value, r.value = parseInt(`${w.minValue || n.value}`, 10), o.value = parseInt(`${w.maxValue || u.value}`, 10), F.value = Math.log(r.value || 1), P.value = Math.log(o.value), B.value = (P.value - F.value) / (u.value - n.value);
138
+ })(), G(() => {
139
+ !g.value || !s.value || (V(
137
140
  c.value,
138
141
  {
139
142
  min: n.value,
@@ -142,10 +145,10 @@ const J = { class: "range_container" }, K = { class: "sliders_control" }, O = ["
142
145
  },
143
146
  "#B4C2F0",
144
147
  "#2B5DFF",
145
- i.value
146
- ), h(d.value, i.value));
147
- }), (e, l) => (q(), G("div", J, [
148
- x("div", K, [
148
+ s.value
149
+ ), y(d.value, s.value));
150
+ }), (e, l) => (J(), H("div", O, [
151
+ x("div", Q, [
149
152
  x("input", {
150
153
  ref_key: "fromSlider",
151
154
  ref: g,
@@ -155,51 +158,51 @@ const J = { class: "range_container" }, K = { class: "sliders_control" }, O = ["
155
158
  min: n.value,
156
159
  max: u.value,
157
160
  step: e.$attrs.step,
158
- onInput: l[0] || (l[0] = T((a) => N(
159
- g.value,
160
- i.value
161
+ onInput: l[0] || (l[0] = _((a) => N(
162
+ h(g),
163
+ h(s)
161
164
  ), ["stop"]))
162
- }, null, 40, O),
165
+ }, null, 40, W),
163
166
  x("input", {
164
167
  ref_key: "toSlider",
165
- ref: i,
168
+ ref: s,
166
169
  class: "toSlider",
167
170
  type: "range",
168
171
  value: d.value,
169
172
  min: n.value,
170
173
  max: u.value,
171
174
  step: e.$attrs.step,
172
- onInput: l[1] || (l[1] = T((a) => U(
173
- g.value,
174
- i.value
175
+ onInput: l[1] || (l[1] = _((a) => U(
176
+ h(g),
177
+ h(s)
175
178
  ), ["stop"]))
176
- }, null, 40, Q)
179
+ }, null, 40, X)
177
180
  ]),
178
- x("div", W, [
179
- x("div", X, [
181
+ x("div", Y, [
182
+ x("div", Z, [
180
183
  k(C, {
181
184
  "label-text": "Min",
182
185
  type: "text",
183
186
  pattern: "[0-9]*",
184
187
  inputmode: "numeric",
185
188
  "model-value": r.value,
186
- "onUpdate:modelValue": l[2] || (l[2] = (a) => P("min-input", `${a || ""}`))
189
+ "onUpdate:modelValue": l[2] || (l[2] = (a) => S("min-input", `${a || ""}`))
187
190
  }, null, 8, ["model-value"])
188
191
  ]),
189
- x("div", Y, [
192
+ x("div", ee, [
190
193
  k(C, {
191
194
  "label-text": "Max",
192
195
  type: "text",
193
196
  pattern: "[0-9]*",
194
197
  inputmode: "numeric",
195
198
  "model-value": o.value,
196
- "onUpdate:modelValue": l[3] || (l[3] = (a) => P("max-input", `${a || ""}`))
199
+ "onUpdate:modelValue": l[3] || (l[3] = (a) => S("max-input", `${a || ""}`))
197
200
  }, null, 8, ["model-value"])
198
201
  ])
199
202
  ])
200
203
  ]));
201
204
  }
202
- });
205
+ }), oe = /* @__PURE__ */ K(le, [["__scopeId", "data-v-a68b88ef"]]);
203
206
  export {
204
- ae as default
207
+ oe as default
205
208
  };
@@ -0,0 +1,82 @@
1
+ import { defineComponent as b, ref as u, onBeforeMount as f, createBlock as h, openBlock as i, Teleport as y, createElementVNode as e, withModifiers as l, normalizeClass as x, createElementBlock as a, createCommentVNode as s, createVNode as _, unref as v } from "vue";
2
+ import { l as g } from "./chunks/CloseIcon.BZ4U3aiI.js";
3
+ import "./chunks/PharmacyIcon.DEQ8mOEJ.js";
4
+ import { _ as C } from "./chunks/_plugin-vue_export-helper.CHgC5LLL.js";
5
+ import './assets/BaseSnackbar.css';const T = { class: "snackbar-container uikit:fixed uikit:bottom-10px uikit:left-10px uikit:z-2000 uikit:max-sm:left-0 uikit:max-sm:w-full" }, w = ["data-cy"], B = ["src", "alt"], L = {
6
+ key: 1,
7
+ class: "snackbar-type-icon uikit:bg-contain uikit:bg-no-repeat"
8
+ }, M = { class: "snackbar-text uikit:px-4 uikit:py-0 uikit:text-base uikit:font-regular uikit:max-sm:max-w-[80%] uikit:max-sm:pr-0 uikit:sm:text-16" }, S = ["innerHTML"], H = ["innerHTML"], E = /* @__PURE__ */ b({
9
+ inheritAttrs: !1,
10
+ __name: "BaseSnackbar",
11
+ props: {
12
+ type: { default: "" },
13
+ title: {},
14
+ body: {},
15
+ icon: {},
16
+ timeout: { default: 55e4 },
17
+ cb: { default: null }
18
+ },
19
+ emits: ["snackbar-hidden"],
20
+ setup(k, { emit: m }) {
21
+ const n = k, d = m, o = u(null), r = u(null), p = () => {
22
+ o.value && o.value();
23
+ }, c = () => {
24
+ const t = r.value;
25
+ t && (t.classList.remove("snackbar-active"), t.classList.add("snackbar-hidden"), setTimeout(() => {
26
+ d("snackbar-hidden");
27
+ }, 300));
28
+ };
29
+ return f(() => {
30
+ n.cb && (o.value = n.cb), setTimeout(() => {
31
+ c();
32
+ }, n.timeout);
33
+ }), (t, N) => (i(), h(y, { to: "body" }, [
34
+ e("div", T, [
35
+ e("div", {
36
+ ref_key: "snackbar",
37
+ ref: r,
38
+ "data-cy": t.$attrs["data-cy"],
39
+ class: x(["snackbar snackbar-active uikit:flex uikit:items-center uikit:rounded-[5px] uikit:px-4 uikit:py-10px uikit:font-medium uikit:shadow uikit:hover:cursor-pointer uikit:max-sm:relative uikit:max-sm:mx-10px uikit:max-sm:my-0", t.type]),
40
+ onClick: l(p, ["stop"])
41
+ }, [
42
+ t.icon ? (i(), a("img", {
43
+ key: 0,
44
+ src: t.icon.src,
45
+ alt: `${t.icon.alt}`,
46
+ width: "20",
47
+ height: "20"
48
+ }, null, 8, B)) : s("", !0),
49
+ t.type && !t.icon ? (i(), a("span", L)) : s("", !0),
50
+ e("div", M, [
51
+ t.title ? (i(), a("p", {
52
+ key: 0,
53
+ class: "uikit:m-0",
54
+ innerHTML: t.title
55
+ }, null, 8, S)) : s("", !0),
56
+ t.body ? (i(), a("p", {
57
+ key: 1,
58
+ class: "uikit:m-0",
59
+ innerHTML: t.body
60
+ }, null, 8, H)) : s("", !0)
61
+ ]),
62
+ e("button", {
63
+ type: "button",
64
+ "data-cy": "base-snackbar-close-btn",
65
+ class: "uikit:bg-transparent uikit:max-sm:absolute uikit:max-sm:right-5",
66
+ onClick: l(c, ["stop"])
67
+ }, [
68
+ _(v(g), {
69
+ class: "snackbar-close-icon",
70
+ width: 20,
71
+ height: 20,
72
+ "stroke-color": "#000"
73
+ })
74
+ ])
75
+ ], 10, w)
76
+ ])
77
+ ]));
78
+ }
79
+ }), I = /* @__PURE__ */ C(E, [["__scopeId", "data-v-c91da41d"]]);
80
+ export {
81
+ I as default
82
+ };
@@ -0,0 +1,4 @@
1
+ import { _ as f } from "./chunks/BaseTab.vue_vue_type_script_setup_true_lang.Cu67jd8K.js";
2
+ export {
3
+ f as default
4
+ };
@@ -0,0 +1,4 @@
1
+ import { _ as f } from "./chunks/BaseTabList.vue_vue_type_script_setup_true_lang.CxrS-Vq6.js";
2
+ export {
3
+ f as default
4
+ };
@@ -0,0 +1,4 @@
1
+ import { _ as f } from "./chunks/BaseTabPanel.vue_vue_type_script_setup_true_lang.CVJUssBq.js";
2
+ export {
3
+ f as default
4
+ };
@@ -0,0 +1,4 @@
1
+ import { _ as f } from "./chunks/BaseTabView.vue_vue_type_script_setup_true_lang.DGTsSVEG.js";
2
+ export {
3
+ f as default
4
+ };
@@ -0,0 +1,128 @@
1
+ import { defineComponent as h, mergeModels as f, useModel as x, ref as $, watch as L, createElementBlock as k, openBlock as b, normalizeClass as s, createElementVNode as o, createCommentVNode as p, unref as l, createVNode as M, withModifiers as d, nextTick as C } from "vue";
2
+ import F from "./BaseFloatingLabel.js";
3
+ import { useFloatingLabel as B } from "./useFloatingLabel.js";
4
+ import { _ as z } from "./chunks/_plugin-vue_export-helper.CHgC5LLL.js";
5
+ import './assets/BaseTextarea.css';const E = ["id", "data-cy", "rows", "disabled", "aria-labelledby", "readonly", "value"], H = {
6
+ key: 0,
7
+ class: "uikit:visible uikit:float-none uikit:ml-2 uikit:block uikit:h-3 uikit:w-auto uikit:max-w-full uikit:overflow-hidden uikit:whitespace-nowrap uikit:p-0 uikit:text-base uikit:duration-[50s] uikit:ease-out"
8
+ }, I = ["innerHTML"], q = ["innerHTML"], A = /* @__PURE__ */ h({
9
+ inheritAttrs: !1,
10
+ __name: "BaseTextarea",
11
+ props: /* @__PURE__ */ f({
12
+ labelText: { default: "" },
13
+ feedback: {},
14
+ isValid: { default: null },
15
+ resize: { type: Boolean, default: !1 },
16
+ labelClasses: {}
17
+ }, {
18
+ modelValue: { default: "" },
19
+ modelModifiers: {}
20
+ }),
21
+ emits: /* @__PURE__ */ f(["focusin", "focusout", "click", "keydown"], ["update:modelValue"]),
22
+ setup(v, { expose: m, emit: c }) {
23
+ const r = x(v, "modelValue"), n = c, {
24
+ labelState: a,
25
+ handleFocusIn: w,
26
+ handleFocusOut: g,
27
+ setFloatingLabel: y,
28
+ setInlineLabel: V
29
+ } = B(n), i = $(null);
30
+ L(
31
+ r,
32
+ (e) => {
33
+ `${e}`.length && a.value !== "floating-label" ? y() : !e?.length && a.value !== "inline-label" && document.activeElement !== i.value && V();
34
+ },
35
+ { immediate: !0 }
36
+ );
37
+ const T = ({ target: e }) => {
38
+ r.value = e.value;
39
+ };
40
+ return m({
41
+ disableTextarea: () => {
42
+ i.value && (i.value.setAttribute("readonly", "readonly"), i.value.classList.add("disabled"));
43
+ },
44
+ clearTextareaElem: () => {
45
+ i.value && (i.value.value = "");
46
+ },
47
+ focusDisabledTextarea: () => {
48
+ i.value && (i.value.removeAttribute("readonly"), i.value.classList.remove("disabled"), C(() => {
49
+ i.value && i.value.focus();
50
+ }));
51
+ }
52
+ }), (e, t) => (b(), k("div", {
53
+ class: s(e.$attrs["wrapper-classes"])
54
+ }, [
55
+ o("div", {
56
+ class: s(["input-wrapper uikit:relative uikit:rounded-xs uikit:px-0", [
57
+ l(a) === "floating-label" ? "floating-state" : "inline-state"
58
+ ]])
59
+ }, [
60
+ o("textarea", {
61
+ id: e.$attrs.id,
62
+ ref_key: "textarea",
63
+ ref: i,
64
+ "data-cy": e.$attrs["data-cy"],
65
+ class: s(["textarea-scrollbar uikit:peer/fieldset uikit:relative uikit:z-20 uikit:mb-10px uikit:mt-15px uikit:w-[calc(100%-1px)] uikit:overflow-y-auto uikit:whitespace-pre-wrap uikit:rounded-xs uikit:border-0 uikit:bg-transparent uikit:bg-no-repeat uikit:px-15px uikit:pb-[8px] uikit:outline-hidden", [
66
+ { "is-invalid invalid-bg uikit:pr-10!": e.isValid === !1 },
67
+ { "is-valid valid-bg uikit:pr-10!": e.isValid },
68
+ { "uikit:resize-none": !e.resize },
69
+ e.$attrs.class
70
+ ]]),
71
+ rows: e.$attrs.rows,
72
+ disabled: e.$attrs.disabled,
73
+ "aria-labelledby": e.$attrs.id,
74
+ readonly: e.$attrs.readonly,
75
+ onFocusin: t[0] || (t[0] = d((u) => l(w)(), ["stop"])),
76
+ onFocusout: t[1] || (t[1] = d((u) => l(g)(`${r.value}`.trim()), ["stop"])),
77
+ onInput: d(T, ["stop"]),
78
+ onKeydown: t[2] || (t[2] = d((u) => n("keydown", u), ["stop"])),
79
+ onClick: t[3] || (t[3] = (u) => n("click", u)),
80
+ value: r.value
81
+ }, null, 42, E),
82
+ o("fieldset", {
83
+ class: s(["uikit:pointer-events-none uikit:absolute uikit:-top-0 uikit:bottom-[3px] uikit:left-0 uikit:right-0 uikit:m-0 uikit:min-w-0 uikit:overflow-hidden uikit:rounded-xs uikit:border uikit:border-solid uikit:bg-white uikit:p-0 uikit:px-2 uikit:text-start uikit:transition-[border] uikit:duration-100 uikit:ease-out uikit:peer-focus/fieldset:border-2 uikit:peer-focus/fieldset:border-w-primary uikit:peer-disabled/fieldset:bg-w-cultured uikit:peer-[&.disabled]/fieldset:bg-w-cultured uikit:[&.is-invalid]:peer-focus/fieldset:border-w-danger", [
84
+ { "is-invalid": e.isValid === !1, "is-valid": e.isValid },
85
+ { "uikit:border-w-danger": e.isValid === !1 },
86
+ { "uikit:border-w-primary": e.isValid },
87
+ { "uikit:border-w-secondary": e.isValid === null }
88
+ ]])
89
+ }, [
90
+ e.labelText ? (b(), k("legend", H, [
91
+ o("span", {
92
+ class: s(["uikit:px-5px uikit:opacity-0", [
93
+ {
94
+ "uikit:visible uikit:inline-block": l(a) === "floating-label"
95
+ },
96
+ {
97
+ "uikit:invisible uikit:hidden": l(a) === "inline-label"
98
+ }
99
+ ]]),
100
+ innerHTML: e.labelText
101
+ }, null, 10, I)
102
+ ])) : p("", !0)
103
+ ], 2),
104
+ M(F, {
105
+ for: e.$attrs.id,
106
+ "label-text": e.labelText,
107
+ "label-state": l(a),
108
+ required: e.$attrs.required,
109
+ "is-valid": e.isValid,
110
+ "label-classes": [
111
+ l(a) === "floating-label" ? "uikit:-top-1!" : "uikit:top-4!",
112
+ e.labelClasses
113
+ ]
114
+ }, null, 8, ["for", "label-text", "label-state", "required", "is-valid", "label-classes"])
115
+ ], 2),
116
+ (e.isValid || e.isValid === !1) && e.feedback ? (b(), k("div", {
117
+ key: 0,
118
+ class: s(
119
+ e.isValid === !1 ? "uikit:mt-1 uikit:text-12 uikit:text-w-danger" : "uikit:mt-1 uikit:text-12 uikit:text-w-primary"
120
+ ),
121
+ innerHTML: e.isValid === !1 ? e.feedback.invalid : e.feedback.valid
122
+ }, null, 10, q)) : p("", !0)
123
+ ], 2));
124
+ }
125
+ }), J = /* @__PURE__ */ z(A, [["__scopeId", "data-v-0db69a87"]]);
126
+ export {
127
+ J as default
128
+ };
@@ -0,0 +1,43 @@
1
+ import { defineComponent as a, mergeModels as n, useModel as d, createElementBlock as k, openBlock as b, normalizeClass as c, renderSlot as l, createElementVNode as i, createCommentVNode as f, withModifiers as p } from "vue";
2
+ import { _ as m } from "./chunks/_plugin-vue_export-helper.CHgC5LLL.js";
3
+ import './assets/BaseToggle.css';const h = { class: "switch uikit:relative uikit:inline-block uikit:min-w-[40px] uikit:text-sm" }, g = ["data-cy", "checked"], w = ["innerHTML"], y = /* @__PURE__ */ a({
4
+ inheritAttrs: !1,
5
+ __name: "BaseToggle",
6
+ props: /* @__PURE__ */ n({
7
+ withRightLabel: { type: Boolean, default: !0 },
8
+ label: { default: "" }
9
+ }, {
10
+ modelValue: { type: Boolean, default: !1 },
11
+ modelModifiers: {}
12
+ }),
13
+ emits: ["update:modelValue"],
14
+ setup(r) {
15
+ const o = d(r, "modelValue"), u = ({ target: e }) => {
16
+ o.value = e.checked;
17
+ };
18
+ return (e, t) => (b(), k("div", {
19
+ class: c(["switch-container uikit:inline-block uikit:items-center", e.$attrs.class])
20
+ }, [
21
+ l(e.$slots, "leftLabel", {}, void 0, !0),
22
+ i("label", h, [
23
+ i("input", {
24
+ "data-cy": e.$attrs["data-cy"] ?? "",
25
+ class: "uikit:peer/toggle uikit:h-0 uikit:w-0 uikit:opacity-0",
26
+ type: "checkbox",
27
+ checked: o.value,
28
+ onInput: t[0] || (t[0] = p((s) => u(s), ["stop"]))
29
+ }, null, 40, g),
30
+ t[1] || (t[1] = i("span", { class: "slider round uikit:absolute uikit:bottom-0 uikit:left-0 uikit:right-0 uikit:top-0 uikit:cursor-pointer uikit:bg-w-lavender uikit:duration-300 uikit:before:absolute uikit:before:bottom-0 uikit:before:left-0 uikit:before:top-0 uikit:before:box-border uikit:before:h-[22px] uikit:before:w-[22px] uikit:before:rounded-circle uikit:before:border uikit:before:border-solid uikit:before:border-w-secondary uikit:before:bg-white uikit:before:shadow-sm uikit:before:duration-300 uikit:before:content-[''] uikit:peer-checked/toggle:bg-w-primary" }, null, -1))
31
+ ]),
32
+ e.withRightLabel ? l(e.$slots, "rightLabel", { key: 0 }, () => [
33
+ i("span", {
34
+ class: "uikit:ml-10px",
35
+ innerHTML: e.label
36
+ }, null, 8, w)
37
+ ], !0) : f("", !0)
38
+ ], 2));
39
+ }
40
+ }), B = /* @__PURE__ */ m(y, [["__scopeId", "data-v-80d7348e"]]);
41
+ export {
42
+ B as default
43
+ };
@@ -0,0 +1,42 @@
1
+ import { defineComponent as a, createElementBlock as e, openBlock as t, renderSlot as s, createElementVNode as i, normalizeClass as l, createCommentVNode as n } from "vue";
2
+ import { _ as r } from "./chunks/_plugin-vue_export-helper.CHgC5LLL.js";
3
+ import './assets/BaseTooltip.css';const p = { class: "base-tooltip" }, d = /* @__PURE__ */ a({
4
+ __name: "BaseTooltip",
5
+ props: {
6
+ theme: { default: () => ({
7
+ color: "blue",
8
+ size: "sm"
9
+ }) },
10
+ direction: { default: "top" },
11
+ customTooltipClass: { default: "" },
12
+ showTooltipContentManually: { type: Boolean, default: !0 },
13
+ tooltipContentClasses: { default: "" }
14
+ },
15
+ setup(m) {
16
+ return (o, u) => (t(), e("div", p, [
17
+ s(o.$slots, "trigger", {}, void 0, !0),
18
+ i("div", {
19
+ class: l(["bg-transparent", [
20
+ o.theme.size,
21
+ `${o.customTooltipClass ? o.customTooltipClass : "tooltip-content-wrapper"}`
22
+ ]])
23
+ }, [
24
+ o.showTooltipContentManually ? (t(), e("div", {
25
+ key: 0,
26
+ class: l(["tooltip-content uikit:shadow-lg uikit:shadow-w-primary/10", [
27
+ "base-tooltip-arrow",
28
+ o.direction,
29
+ o.theme.color,
30
+ o.theme.size,
31
+ o.tooltipContentClasses
32
+ ]])
33
+ }, [
34
+ s(o.$slots, "content", {}, void 0, !0)
35
+ ], 2)) : n("", !0)
36
+ ], 2)
37
+ ]));
38
+ }
39
+ }), C = /* @__PURE__ */ r(d, [["__scopeId", "data-v-d8fdaf0c"]]);
40
+ export {
41
+ C as default
42
+ };
@@ -0,0 +1,4 @@
1
+ import { _ as f } from "./chunks/BaseUploadFile.vue_vue_type_script_setup_true_lang.BL98w2D8.js";
2
+ export {
3
+ f as default
4
+ };
@@ -0,0 +1,76 @@
1
+ import { defineComponent as b, useId as f, computed as h, createElementBlock as s, openBlock as r, withModifiers as o, normalizeClass as l, createElementVNode as u, renderSlot as m, createCommentVNode as C, toDisplayString as g } from "vue";
2
+ import { _ as y } from "./chunks/_plugin-vue_export-helper.CHgC5LLL.js";
3
+ import './assets/CheckboxBtn.css';const v = ["id"], V = ["id", "data-cy", "checked", "disabled"], B = ["for"], w = /* @__PURE__ */ b({
4
+ __name: "CheckboxBtn",
5
+ props: {
6
+ id: {},
7
+ dataCy: {},
8
+ disabled: { type: Boolean },
9
+ checked: { type: Boolean, default: () => {
10
+ } },
11
+ required: { type: Boolean },
12
+ inputClass: {},
13
+ inline: { type: Boolean, default: !1 },
14
+ label: { default: "" },
15
+ labelClass: {},
16
+ isValid: { default: null },
17
+ containerId: {},
18
+ handleLabelClick: { type: Boolean, default: !0 },
19
+ modelValue: { type: Boolean, default: !1 }
20
+ },
21
+ emits: ["click", "change", "update:modelValue"],
22
+ setup(i, { emit: c }) {
23
+ const a = c, d = f(), n = h(() => `${i.id ?? d}`), k = () => {
24
+ const e = i.checked ?? i.modelValue;
25
+ a("change", {
26
+ id: i.id ?? d,
27
+ label: i.label,
28
+ checked: !e
29
+ }), a("update:modelValue", !e);
30
+ }, p = () => {
31
+ k(), i.handleLabelClick && a("click");
32
+ };
33
+ return (e, t) => (r(), s("div", {
34
+ id: e.containerId,
35
+ class: l(["uikit:group uikit:relative uikit:items-center uikit:pl-30px uikit:hover:cursor-pointer", [
36
+ { "uikit:inline-flex": e.inline },
37
+ { "uikit:flex": !e.inline },
38
+ e.$attrs["wrapper-classes"]
39
+ ]]),
40
+ onClick: o(p, ["stop"])
41
+ }, [
42
+ u("input", {
43
+ id: n.value,
44
+ ref: "checkbox",
45
+ "data-cy": e.dataCy,
46
+ class: l(["uikit:pointer-events-none uikit:absolute uikit:left-0 uikit:size-4 uikit:appearance-none uikit:rounded-3xs uikit:border uikit:border-solid uikit:border-w-secondary uikit:bg-white uikit:checked:bg-center uikit:checked:bg-no-repeat uikit:group-hover:cursor-pointer", [
47
+ { "uikit:border-w-danger!": e.isValid === !1 },
48
+ e.inputClass,
49
+ e.isValid === !1 ? "checked-bg-invalid" : "checked-bg"
50
+ ]]),
51
+ type: "checkbox",
52
+ checked: e.checked ?? e.modelValue,
53
+ disabled: e.disabled,
54
+ onChange: t[0] || (t[0] = o(() => {
55
+ }, ["prevent", "stop"])),
56
+ onClick: t[1] || (t[1] = o(() => {
57
+ }, ["prevent", "stop"]))
58
+ }, null, 42, V),
59
+ m(e.$slots, "label", {}, () => [
60
+ u("label", {
61
+ class: l(["uikit:text-sm uikit:group-hover:cursor-pointer", [e.labelClass, { "uikit:text-w-danger": e.isValid === !1 }]]),
62
+ for: n.value
63
+ }, g(e.label), 11, B),
64
+ e.required ? (r(), s("span", {
65
+ key: 0,
66
+ class: l(["required uikit:after:content-['*']", [
67
+ e.isValid !== !1 ? "uikit:after:text-w-primary" : "uikit:after:text-w-danger"
68
+ ]])
69
+ }, null, 2)) : C("", !0)
70
+ ], !0)
71
+ ], 10, v));
72
+ }
73
+ }), $ = /* @__PURE__ */ y(w, [["__scopeId", "data-v-2c47878d"]]);
74
+ export {
75
+ $ as default
76
+ };
@@ -0,0 +1,4 @@
1
+ import { _ as f } from "./chunks/CheckboxGroup.vue_vue_type_script_setup_true_lang.B_9CFhd2.js";
2
+ export {
3
+ f as default
4
+ };
@@ -0,0 +1,4 @@
1
+ import { _ as f } from "./chunks/DoughnutChart.vue_vue_type_script_setup_true_lang.B8wxbJBV.js";
2
+ export {
3
+ f as default
4
+ };
@@ -0,0 +1,4 @@
1
+ import { _ as f } from "./chunks/IntersectionObservable.vue_vue_type_script_setup_true_lang.DC17cx-h.js";
2
+ export {
3
+ f as default
4
+ };
@@ -0,0 +1,4 @@
1
+ import { _ as f } from "./chunks/IntersectionObserver.vue_vue_type_script_setup_true_lang.BKewKDXG.js";
2
+ export {
3
+ f as default
4
+ };
@@ -0,0 +1,4 @@
1
+ import { _ as f } from "./chunks/LineChart.vue_vue_type_script_setup_true_lang.CXNsFiyD.js";
2
+ export {
3
+ f as default
4
+ };