@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,50 +0,0 @@
1
- import { defineComponent as f, reactive as d, ref as p, onBeforeMount as m, onBeforeUnmount as h, openBlock as V, createElementBlock as k, normalizeClass as B, renderSlot as i } from "vue";
2
- const y = /* @__PURE__ */ f({
3
- __name: "IntersectionObserver",
4
- props: {
5
- observeOnce: { type: Boolean, default: !0 },
6
- skip: { type: Boolean, default: !1 },
7
- threshold: { default: 0 }
8
- },
9
- emits: ["intersection"],
10
- setup(l, { emit: a }) {
11
- const u = a, o = l, r = d({ root: null, isVisible: !1 }), e = p(null), c = (s) => {
12
- s.forEach(({ target: t, isIntersecting: n }) => {
13
- n && (r.isVisible = !0, u("intersection")), o.observeOnce && n && v(t);
14
- });
15
- }, v = (s) => {
16
- e.value && e.value.unobserve(s);
17
- }, b = () => {
18
- e.value && e.value.disconnect();
19
- };
20
- return m(() => {
21
- if (o.skip) {
22
- r.isVisible = !0;
23
- return;
24
- }
25
- e.value = new IntersectionObserver(c, {
26
- root: null,
27
- //if the root is null, then we will check if the target is visible in the doc root!
28
- threshold: o.threshold
29
- });
30
- }), h(() => {
31
- b();
32
- }), (s, t) => r.isVisible ? i(s.$slots, "observer", {
33
- key: 1,
34
- observer: e.value,
35
- isVisible: r.isVisible
36
- }) : (V(), k("div", {
37
- key: 0,
38
- ref: "root",
39
- class: B(s.$attrs["root-classes"])
40
- }, [
41
- i(s.$slots, "observer", {
42
- observer: e.value,
43
- isVisible: r.isVisible
44
- })
45
- ], 2));
46
- }
47
- });
48
- export {
49
- y as default
50
- };
@@ -1,21 +0,0 @@
1
- export interface IntersectionObserverProviderProps {
2
- emitOnce?: boolean;
3
- skip?: boolean;
4
- threshold?: number;
5
- }
6
- declare const _default: typeof __VLS_export;
7
- export default _default;
8
- declare const __VLS_export: __VLS_WithSlots<import('vue').DefineComponent<IntersectionObserverProviderProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
9
- intersection: () => any;
10
- }, string, import('vue').PublicProps, Readonly<IntersectionObserverProviderProps> & Readonly<{
11
- onIntersection?: (() => any) | undefined;
12
- }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>, {
13
- default?: (props: {
14
- observer: IntersectionObserver | undefined;
15
- }) => any;
16
- }>;
17
- type __VLS_WithSlots<T, S> = T & {
18
- new (): {
19
- $slots: S;
20
- };
21
- };
@@ -1,4 +0,0 @@
1
- import f from "./IntersectionObserverProvider.vue.js";
2
- export {
3
- f as default
4
- };
@@ -1,39 +0,0 @@
1
- import { defineComponent as m, shallowRef as a, provide as i, onBeforeMount as b, onBeforeUnmount as h, renderSlot as p } from "vue";
2
- import { VisibleTargetsKey as g, ObserveTargetKey as O, UnobserveTargetKey as y } from "./types.js";
3
- const T = /* @__PURE__ */ m({
4
- __name: "IntersectionObserverProvider",
5
- props: {
6
- emitOnce: { type: Boolean, default: !1 },
7
- skip: { type: Boolean, default: !1 },
8
- threshold: { default: 0 }
9
- },
10
- emits: ["intersection"],
11
- setup(n, { emit: c }) {
12
- const u = c, r = a(/* @__PURE__ */ new Set()), t = a(), d = (e) => {
13
- n.skip || e.forEach(({ target: l, isIntersecting: f }) => {
14
- const o = l.getAttribute("target-id");
15
- if (!o) return;
16
- const s = new Set(r.value);
17
- f ? (s.add(o), u("intersection"), n.emitOnce && t.value?.disconnect()) : s.delete(o), r.value = s;
18
- });
19
- }, v = () => {
20
- t.value?.disconnect();
21
- };
22
- return i(g, r), i(O, (e) => {
23
- t.value?.observe(e);
24
- }), i(y, (e) => {
25
- t.value?.unobserve(e);
26
- }), b(() => {
27
- t.value = new IntersectionObserver(d, {
28
- root: null,
29
- //if the root is null, then we will check if the target is visible in the doc root!
30
- threshold: n.threshold
31
- });
32
- }), h(() => {
33
- v();
34
- }), (e, l) => p(e.$slots, "default", { observer: t.value });
35
- }
36
- });
37
- export {
38
- T as default
39
- };
@@ -1,22 +0,0 @@
1
- type __VLS_Props = {
2
- observeOnce?: boolean;
3
- };
4
- declare var __VLS_1: {
5
- isVisible: boolean;
6
- }, __VLS_3: {
7
- isVisible: true;
8
- };
9
- type __VLS_Slots = {} & {
10
- default?: (props: typeof __VLS_1) => any;
11
- } & {
12
- default?: (props: typeof __VLS_3) => any;
13
- };
14
- 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>;
15
- declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
16
- declare const _default: typeof __VLS_export;
17
- export default _default;
18
- type __VLS_WithSlots<T, S> = T & {
19
- new (): {
20
- $slots: S;
21
- };
22
- };
@@ -1,4 +0,0 @@
1
- import f from "./IntersectionObserverTarget.vue.js";
2
- export {
3
- f as default
4
- };
@@ -1,31 +0,0 @@
1
- import { defineComponent as v, useTemplateRef as d, useId as b, inject as s, computed as m, onMounted as g, watch as p, openBlock as T, createElementBlock as y, unref as k, renderSlot as u } from "vue";
2
- import { VisibleTargetsKey as O, ObserveTargetKey as _, UnobserveTargetKey as h } from "./types.js";
3
- const V = ["target-id"], I = /* @__PURE__ */ v({
4
- __name: "IntersectionObserverTarget",
5
- props: {
6
- observeOnce: { type: Boolean, default: !0 }
7
- },
8
- setup(n) {
9
- const e = d("root"), i = b(), c = s(O, void 0), f = s(_, void 0), a = s(h, void 0), t = m(
10
- () => c?.value.has(i) || !1
11
- );
12
- return g(() => {
13
- e.value && f?.(e.value);
14
- }), p([t, e], ([r, o], [, l]) => {
15
- n.observeOnce && r && (o && a?.(o), l && a?.(l));
16
- }), (r, o) => !n.observeOnce || !t.value ? (T(), y("div", {
17
- key: 0,
18
- ref_key: "root",
19
- ref: e,
20
- "target-id": k(i)
21
- }, [
22
- u(r.$slots, "default", { isVisible: t.value })
23
- ], 8, V)) : u(r.$slots, "default", {
24
- key: 1,
25
- isVisible: t.value
26
- });
27
- }
28
- });
29
- export {
30
- I as default
31
- };
@@ -1,4 +0,0 @@
1
- import { InjectionKey, ShallowRef } from 'vue';
2
- export declare const ObserveTargetKey: InjectionKey<(e: Element) => void>;
3
- export declare const UnobserveTargetKey: InjectionKey<(e: Element) => void>;
4
- export declare const VisibleTargetsKey: InjectionKey<ShallowRef<Set<string>>>;
@@ -1,6 +0,0 @@
1
- const e = /* @__PURE__ */ Symbol(), o = /* @__PURE__ */ Symbol(), s = /* @__PURE__ */ Symbol();
2
- export {
3
- e as ObserveTargetKey,
4
- o as UnobserveTargetKey,
5
- s as VisibleTargetsKey
6
- };
@@ -1,9 +0,0 @@
1
- import { SwiperOptions } from 'swiper/types';
2
- export type SwiperNavigationPrimitiveProps = NonNullable<SwiperOptions["navigation"]>;
3
- declare const _default: typeof __VLS_export;
4
- export default _default;
5
- declare const __VLS_export: import('vue').DefineComponent<{
6
- options?: SwiperNavigationPrimitiveProps;
7
- }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
8
- options?: SwiperNavigationPrimitiveProps;
9
- }> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
@@ -1,4 +0,0 @@
1
- import f from "./SwiperNavigationPrimitive.vue.js";
2
- export {
3
- f as default
4
- };
@@ -1,39 +0,0 @@
1
- import { defineComponent as p, inject as s, openBlock as a, createElementBlock as l, Fragment as d, createElementVNode as e, withModifiers as i } from "vue";
2
- import { NavigationModule as u } from "../../../lazyModules/Swiper/Navigation/factory.js";
3
- import { addModuleDescriptorKey as m } from "./SwiperRootPrimitive.vue.js";
4
- import '../../../assets/SwiperRootPrimitive2.css';import '../../../assets/SwiperRootPrimitive.css';/* empty css */
5
- /* empty css */
6
- const k = /* @__PURE__ */ p({
7
- __name: "SwiperNavigationPrimitive",
8
- props: {
9
- options: { type: [Object, Boolean], default: !0 }
10
- },
11
- setup(o) {
12
- const n = {
13
- nextEl: ".swiper-button-next",
14
- prevEl: ".swiper-button-prev"
15
- }, r = s(m, void 0);
16
- return o.options && r?.(
17
- u({
18
- ...n,
19
- ...typeof o.options == "boolean" ? {} : o.options
20
- })
21
- ), (f, t) => (a(), l(d, null, [
22
- e("div", {
23
- class: "swiper-button-prev",
24
- "data-cy": "swiper-button-prev",
25
- onClick: t[0] || (t[0] = i(() => {
26
- }, ["stop"]))
27
- }),
28
- e("div", {
29
- class: "swiper-button-next",
30
- "data-cy": "swiper-button-next",
31
- onClick: t[1] || (t[1] = i(() => {
32
- }, ["stop"]))
33
- })
34
- ], 64));
35
- }
36
- });
37
- export {
38
- k as default
39
- };
@@ -1,9 +0,0 @@
1
- import { SwiperOptions } from 'swiper/types';
2
- export type SwiperPaginationPrimitiveProps = NonNullable<SwiperOptions["pagination"]>;
3
- declare const _default: typeof __VLS_export;
4
- export default _default;
5
- declare const __VLS_export: import('vue').DefineComponent<{
6
- options?: SwiperPaginationPrimitiveProps;
7
- }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
8
- options?: SwiperPaginationPrimitiveProps;
9
- }> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
@@ -1,4 +0,0 @@
1
- import f from "./SwiperPaginationPrimitive.vue.js";
2
- export {
3
- f as default
4
- };
@@ -1,35 +0,0 @@
1
- import { defineComponent as r, inject as a, openBlock as p, createElementBlock as s, withModifiers as d } from "vue";
2
- import { addModuleDescriptorKey as c } from "./SwiperRootPrimitive.vue.js";
3
- import '../../../assets/swiperPaginationBullet.css';import '../../../assets/SwiperRootPrimitive2.css';import '../../../assets/SwiperRootPrimitive.css';/* empty css */
4
- /* empty css */
5
- import { PaginationModule as u } from "../../../lazyModules/Swiper/Pagination/factory.js";
6
- /* empty css */
7
- const x = /* @__PURE__ */ r({
8
- __name: "SwiperPaginationPrimitive",
9
- props: {
10
- options: { type: [Object, Boolean], default: !0 }
11
- },
12
- setup(t) {
13
- const n = {
14
- el: ".swiper-pagination",
15
- renderFraction: (o, i) => `<div class="uikit-rounded-xs uikit-border-w-black uikit-border uikit-border-solid uikit-px-3 uikit-bg-white uikit-pt-[3px] uikit-pb-[3px]">
16
- <span data-cy="swiper-pagination-current" class="${o}"></span>
17
- /
18
- <span data-cy="swiper-pagination-total" class="${i}"></span>
19
- </div>`
20
- }, e = a(c, void 0);
21
- return t.options && e?.(
22
- u({
23
- ...n,
24
- ...typeof t.options == "boolean" ? {} : t.options
25
- })
26
- ), (o, i) => (p(), s("div", {
27
- class: "swiper-pagination [&.swiper-pagination-fraction]:uikit-flex [&.swiper-pagination-fraction]:uikit-justify-center",
28
- onClick: i[0] || (i[0] = d(() => {
29
- }, ["stop"]))
30
- }));
31
- }
32
- });
33
- export {
34
- x as default
35
- };
@@ -1,20 +0,0 @@
1
- type __VLS_Props = {
2
- dataCy?: string;
3
- };
4
- declare var __VLS_1: {};
5
- type __VLS_Slots = {} & {
6
- default?: (props: typeof __VLS_1) => any;
7
- };
8
- declare const __VLS_base: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
9
- click: (args_0: MouseEvent) => any;
10
- }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
11
- onClick?: ((args_0: MouseEvent) => any) | undefined;
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 "./SwiperPrimitive.vue.js";
2
- export {
3
- f as default
4
- };
@@ -1,21 +0,0 @@
1
- import { defineComponent as s, openBlock as n, createElementBlock as c, renderSlot as l } from "vue";
2
- const p = ["data-cy"], m = /* @__PURE__ */ s({
3
- __name: "SwiperPrimitive",
4
- props: {
5
- dataCy: {}
6
- },
7
- emits: ["click"],
8
- setup(t, { emit: i }) {
9
- const o = i;
10
- return (r, e) => (n(), c("div", {
11
- "data-cy": t.dataCy,
12
- class: "swiper-wrapper",
13
- onClick: e[0] || (e[0] = (a) => o("click", a))
14
- }, [
15
- l(r.$slots, "default")
16
- ], 8, p));
17
- }
18
- });
19
- export {
20
- m as default
21
- };
@@ -1,51 +0,0 @@
1
- import { Nullable } from '@wikicasa-dev/types';
2
- import { SwiperModuleDescriptor } from '../../../lazyModules/Swiper/types';
3
- import { InjectionKey } from 'vue';
4
- import { Swiper, SwiperOptions } from 'swiper/types';
5
- import { ClassTypeProp } from '../../../UIKit/types';
6
- export declare const setLazyImagesLoaderKey: InjectionKey<(v: boolean) => void>;
7
- export declare const addModuleDescriptorKey: InjectionKey<(m: Nullable<SwiperModuleDescriptor>) => void>;
8
- export type SwiperRootPrimitiveProps = Omit<SwiperOptions, "pagination" | "navigation">;
9
- export type SwiperRootPrimitiveEmits = {
10
- moved: [{
11
- activeIndex: number;
12
- }];
13
- click: [];
14
- /**
15
- * Fired right after Swiper initialization.
16
- */
17
- init: [Swiper];
18
- };
19
- declare const _default: typeof __VLS_export;
20
- export default _default;
21
- declare const __VLS_export: __VLS_WithSlots<import('vue').DefineComponent<{
22
- rootClasses?: ClassTypeProp;
23
- swiperOptions?: SwiperRootPrimitiveProps;
24
- }, {
25
- swiper: import('vue').ShallowRef<Nullable<Swiper>, Nullable<Swiper>>;
26
- updateSlidesPerView: (value: number) => void;
27
- }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
28
- click: () => any;
29
- init: (args_0: Swiper) => any;
30
- moved: (args_0: {
31
- activeIndex: number;
32
- }) => any;
33
- }, string, import('vue').PublicProps, Readonly<{
34
- rootClasses?: ClassTypeProp;
35
- swiperOptions?: SwiperRootPrimitiveProps;
36
- }> & Readonly<{
37
- onClick?: (() => any) | undefined;
38
- onInit?: ((args_0: Swiper) => any) | undefined;
39
- onMoved?: ((args_0: {
40
- activeIndex: number;
41
- }) => any) | undefined;
42
- }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>, {
43
- default?: (props: {}) => any;
44
- } & {
45
- placeholder?: (props: {}) => any;
46
- }>;
47
- type __VLS_WithSlots<T, S> = T & {
48
- new (): {
49
- $slots: S;
50
- };
51
- };
@@ -1,11 +0,0 @@
1
- import o from "./SwiperRootPrimitive.vue.js";
2
- import { addModuleDescriptorKey as d, setLazyImagesLoaderKey as f } from "./SwiperRootPrimitive.vue.js";
3
- import '../../../assets/SwiperRootPrimitive2.css';import '../../../assets/SwiperRootPrimitive.css';/* empty css */
4
- /* empty css */
5
- import e from "../../../_virtual/_plugin-vue_export-helper.js";
6
- const m = /* @__PURE__ */ e(o, [["__scopeId", "data-v-e22604af"]]);
7
- export {
8
- d as addModuleDescriptorKey,
9
- m as default,
10
- f as setLazyImagesLoaderKey
11
- };
@@ -1,113 +0,0 @@
1
- import { defineComponent as A, shallowRef as y, useTemplateRef as N, onMounted as g, provide as I, openBlock as w, createElementBlock as P, createElementVNode as q, normalizeClass as x, renderSlot as k, createCommentVNode as B } from "vue";
2
- import { createSwiper as D } from "../../../lazyModules/Swiper/factory.js";
3
- import { AutoplayModule as K } from "../../../lazyModules/Swiper/Autoplay/factory.js";
4
- import { KeyboardModule as R } from "../../../lazyModules/Swiper/Keyboard/factory.js";
5
- import { ZoomModule as U } from "../../../lazyModules/Swiper/Zoom/factory.js";
6
- const $ = { class: "uikit-relative" }, F = {
7
- key: 0,
8
- class: "uikit-absolute uikit-inset-0"
9
- }, Z = /* @__PURE__ */ Symbol(), j = /* @__PURE__ */ Symbol(), Y = /* @__PURE__ */ A({
10
- __name: "SwiperRootPrimitive",
11
- props: {
12
- rootClasses: {},
13
- swiperOptions: {}
14
- },
15
- emits: ["moved", "click", "init"],
16
- setup(a, { expose: b, emit: h }) {
17
- const c = h, i = y(null), u = N("root"), n = y(!1), S = !!a.swiperOptions?.keyboard, T = !!a.swiperOptions?.autoplay, m = [];
18
- let p = !1;
19
- const E = (e) => {
20
- "requestIdleCallback" in window ? requestIdleCallback(e) : setTimeout(e, 200);
21
- }, v = (e, t = "img") => Array.from(e?.querySelectorAll(t) ?? []), d = (e) => {
22
- e.src || (e.src = e.dataset.src || "", e.srcset = e.dataset.srcset || "", e.dataset.src = "", e.dataset.srcset = "", e.removeAttribute("lazy"));
23
- }, f = (e, t) => {
24
- const o = e.params.lazyPreloadPrevNext ?? 0, r = v(e.slides[t]), l = [];
25
- for (let s = t - o; s <= t + o; s++)
26
- s !== t && (!e.params.loop && (s < 0 || s >= e.slides.length) || l.push(
27
- ...v(e.slides[s], "img[data-src]")
28
- ));
29
- return { visibleImages: r, preloadImages: l };
30
- }, C = async (e) => {
31
- const t = e.complete && e.src ? Promise.resolve() : new Promise((o) => {
32
- e.addEventListener("load", () => o(), { once: !0 }), e.addEventListener("error", () => o(), {
33
- once: !0
34
- });
35
- });
36
- d(e), await t, await e.decode?.().catch(() => {
37
- });
38
- }, O = () => {
39
- n.value = !0, c("init", i.value);
40
- }, z = async (e) => {
41
- i.value = await D(
42
- e,
43
- {
44
- on: {
45
- init: async (t) => {
46
- const { visibleImages: o, preloadImages: r } = f(
47
- t,
48
- t.activeIndex
49
- );
50
- let l;
51
- const s = new Promise(
52
- (V) => l = setTimeout(V, 6e3)
53
- ), M = Promise.all(
54
- o.map(C)
55
- ).finally(() => {
56
- clearTimeout(l);
57
- });
58
- await Promise.race([M, s]), E(() => {
59
- r.forEach(d);
60
- }), O();
61
- },
62
- slideChange: (t) => {
63
- c("moved", { activeIndex: t.activeIndex });
64
- const { visibleImages: o, preloadImages: r } = f(
65
- t,
66
- t.activeIndex
67
- );
68
- [...o, ...r].forEach(
69
- d
70
- );
71
- }
72
- },
73
- ...a.swiperOptions
74
- },
75
- [
76
- U(a.swiperOptions?.zoom),
77
- S ? R(a.swiperOptions?.keyboard) : void 0,
78
- T ? K(a.swiperOptions.autoplay) : void 0,
79
- ...m
80
- ].filter(Boolean)
81
- );
82
- };
83
- g(() => {
84
- u.value && setTimeout(() => z(u.value));
85
- });
86
- const L = (e) => {
87
- !i.value || i.value.params.slidesPerView === e || (i.value.params.slidesPerView = e, i.value.update());
88
- };
89
- return I(j, (e) => {
90
- e && m.push(e);
91
- }), I(Z, (e) => {
92
- e !== p && (p = e);
93
- }), b({
94
- swiper: i,
95
- updateSlidesPerView: L
96
- }), (e, t) => (w(), P("div", $, [
97
- q("div", {
98
- ref: "root",
99
- class: x(["swiper uikit-carousel", [{ "is-initialized": n.value }, a.rootClasses]])
100
- }, [
101
- k(e.$slots, "default", {}, void 0, !0)
102
- ], 2),
103
- n.value ? B("", !0) : (w(), P("div", F, [
104
- k(e.$slots, "placeholder", {}, void 0, !0)
105
- ]))
106
- ]));
107
- }
108
- });
109
- export {
110
- j as addModuleDescriptorKey,
111
- Y as default,
112
- Z as setLazyImagesLoaderKey
113
- };
@@ -1,18 +0,0 @@
1
- import { ClassTypeProp } from '../../../UIKit/types';
2
- export interface SwiperSlideImagePrimitiveProps {
3
- src?: string;
4
- srcset?: string;
5
- alt?: string;
6
- width?: number;
7
- height?: number;
8
- sizes?: string;
9
- imgClasses?: ClassTypeProp;
10
- decoding?: "auto" | "sync" | "async";
11
- crossorigin?: "anonymous" | "use-credentials";
12
- fetchpriority?: "auto" | "high" | "low";
13
- loading?: "lazy" | "eager";
14
- lazy?: boolean;
15
- }
16
- declare const _default: typeof __VLS_export;
17
- export default _default;
18
- declare const __VLS_export: import('vue').DefineComponent<SwiperSlideImagePrimitiveProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<SwiperSlideImagePrimitiveProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
@@ -1,5 +0,0 @@
1
- import o from "./SwiperSlideImagePrimitive.vue.js";
2
- import '../../../assets/SwiperSlideImagePrimitive.css';/* empty css */
3
- export {
4
- o as default
5
- };
@@ -1,40 +0,0 @@
1
- import { defineComponent as c, createPropsRestProxy as o, shallowRef as r, inject as l, openBlock as d, createBlock as m, withCtx as n, createElementVNode as g, mergeProps as u } from "vue";
2
- import f from "../SwiperSlide.js";
3
- import { setLazyImagesLoaderKey as y } from "./SwiperRootPrimitive.vue.js";
4
- import '../../../assets/SwiperRootPrimitive2.css';import '../../../assets/SwiperRootPrimitive.css';/* empty css */
5
- /* empty css */
6
- const v = ["src", "srcset", "data-src", "data-srcset"], L = /* @__PURE__ */ c({
7
- __name: "SwiperSlideImagePrimitive",
8
- props: {
9
- src: {},
10
- srcset: {},
11
- alt: {},
12
- width: {},
13
- height: {},
14
- sizes: {},
15
- imgClasses: {},
16
- decoding: {},
17
- crossorigin: {},
18
- fetchpriority: {},
19
- loading: {},
20
- lazy: { type: Boolean }
21
- },
22
- setup(e) {
23
- const s = o(e, ["src", "srcset", "imgClasses"]), t = r(), a = r(), i = l(y, void 0);
24
- return s.lazy && (t.value = e.src, a.value = e.srcset, i?.(!0)), (h, p) => (d(), m(f, null, {
25
- default: n(() => [
26
- g("img", u(s, {
27
- class: ["swiper-slide-image-primitive", e.imgClasses],
28
- src: e.lazy ? void 0 : e.src,
29
- srcset: e.lazy ? void 0 : e.srcset,
30
- "data-src": t.value,
31
- "data-srcset": a.value
32
- }), null, 16, v)
33
- ]),
34
- _: 1
35
- }));
36
- }
37
- });
38
- export {
39
- L as default
40
- };
@@ -1,50 +0,0 @@
1
- import { Image, Nullable } from '@wikicasa-dev/types';
2
- import { Swiper, SwiperOptions } from 'swiper/types';
3
- type SwiperCarouselProps = {
4
- id?: string;
5
- swiperOptions: SwiperOptions;
6
- thumbSwiperOptions?: SwiperOptions;
7
- lazyLoadImages?: boolean;
8
- backgroundImage?: boolean;
9
- images?: Image[];
10
- artDirection?: Record<string, {
11
- mq: string;
12
- width: string;
13
- }>;
14
- shiftFirstImage?: boolean;
15
- };
16
- declare var __VLS_1: {}, __VLS_3: {}, __VLS_5: {};
17
- type __VLS_Slots = {} & {
18
- default?: (props: typeof __VLS_1) => any;
19
- } & {
20
- last_slide?: (props: typeof __VLS_3) => any;
21
- } & {
22
- placeholder?: (props: typeof __VLS_5) => any;
23
- };
24
- declare const __VLS_base: import('vue').DefineComponent<SwiperCarouselProps, {
25
- swiper: import('vue').ShallowRef<Nullable<Swiper>, Nullable<Swiper>>;
26
- moveTo(index: number, speed?: number, runCallbacks?: boolean): void;
27
- updateSlidesPerView: (value: number) => void;
28
- }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
29
- click: () => any;
30
- init: () => any;
31
- moved: (args_0: {
32
- activeIndex: number;
33
- }) => any;
34
- firstSlideLoaded: () => any;
35
- }, string, import('vue').PublicProps, Readonly<SwiperCarouselProps> & Readonly<{
36
- onClick?: (() => any) | undefined;
37
- onInit?: (() => any) | undefined;
38
- onMoved?: ((args_0: {
39
- activeIndex: number;
40
- }) => any) | undefined;
41
- onFirstSlideLoaded?: (() => any) | undefined;
42
- }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
43
- declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
44
- declare const _default: typeof __VLS_export;
45
- export default _default;
46
- type __VLS_WithSlots<T, S> = T & {
47
- new (): {
48
- $slots: S;
49
- };
50
- };
@@ -1,7 +0,0 @@
1
- import o from "./SwiperCarousel.vue.js";
2
- import '../../assets/SwiperCarousel.css';/* empty css */
3
- import r from "../../_virtual/_plugin-vue_export-helper.js";
4
- const e = /* @__PURE__ */ r(o, [["__scopeId", "data-v-39725047"]]);
5
- export {
6
- e as default
7
- };