@wikicasa-dev/components 2.1.4-alpha.9 → 2.1.4

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 (170) hide show
  1. package/dist/UIKit/BaseAlert.d.ts +9 -20
  2. package/dist/UIKit/BaseBadge.d.ts +5 -40
  3. package/dist/UIKit/BaseBreadcrumb.js +2 -3
  4. package/dist/UIKit/BaseButton.d.ts +8 -9
  5. package/dist/UIKit/BaseComplexToggle.d.ts +1 -1
  6. package/dist/UIKit/BaseComplexToggle.js +2 -2
  7. package/dist/UIKit/BaseDropDown.d.ts +0 -5
  8. package/dist/UIKit/BaseFloatingLabel.js +3 -1
  9. package/dist/UIKit/BaseInput.d.ts +5 -4
  10. package/dist/UIKit/BaseInput.js +3 -1
  11. package/dist/UIKit/BasePagination.d.ts +3 -10
  12. package/dist/UIKit/BaseSlider.d.ts +10 -14
  13. package/dist/UIKit/BaseSlider.js +4 -1
  14. package/dist/UIKit/BaseSnackbar.js +4 -4
  15. package/dist/UIKit/BaseTextarea.d.ts +4 -4
  16. package/dist/UIKit/BaseTextarea.js +3 -3
  17. package/dist/UIKit/BaseToggle.d.ts +8 -5
  18. package/dist/UIKit/BaseToggle.js +4 -1
  19. package/dist/UIKit/BaseTooltip.d.ts +20 -10
  20. package/dist/UIKit/BaseTooltip.js +2 -2
  21. package/dist/UIKit/Checkbox/CheckboxBtn.d.ts +16 -9
  22. package/dist/UIKit/Checkbox/CheckboxBtn.js +5 -2
  23. package/dist/UIKit/Checkbox/CheckboxGroup.d.ts +3 -2
  24. package/dist/UIKit/ShimmerLoader/BaseShimmerLoader.js +3 -1
  25. package/dist/UIKit/ShimmerLoader/ShimmerMultiLine.d.ts +5 -1
  26. package/dist/UIKit/Slider/SimpleSlider.d.ts +19 -0
  27. package/dist/UIKit/Slider/SimpleSlider.js +7 -0
  28. package/dist/UIKit/Tab/BaseTabList.d.ts +0 -1
  29. package/dist/UIKit/types.d.ts +6 -11
  30. package/dist/assets/packages/components/lib/UIKit/BaseAlert.css +1 -1
  31. package/dist/assets/packages/components/lib/UIKit/BaseBadge.css +1 -1
  32. package/dist/assets/packages/components/lib/UIKit/BaseCard.css +1 -1
  33. package/dist/assets/packages/components/lib/UIKit/BaseComplexToggle.css +1 -1
  34. package/dist/assets/packages/components/lib/UIKit/BaseFloatingLabel.css +1 -1
  35. package/dist/assets/packages/components/lib/UIKit/BaseInput.css +1 -1
  36. package/dist/assets/packages/components/lib/UIKit/BaseModal.css +1 -1
  37. package/dist/assets/packages/components/lib/UIKit/BaseSlider.css +1 -0
  38. package/dist/assets/packages/components/lib/UIKit/BaseSnackbar.css +1 -1
  39. package/dist/assets/packages/components/lib/UIKit/BaseTextarea.css +1 -1
  40. package/dist/assets/packages/components/lib/UIKit/BaseToggle.css +1 -0
  41. package/dist/assets/packages/components/lib/UIKit/BaseTooltip.css +1 -1
  42. package/dist/assets/packages/components/lib/UIKit/Checkbox/CheckboxBtn.css +1 -0
  43. package/dist/assets/packages/components/lib/UIKit/ShimmerLoader/BaseShimmerLoader.css +1 -1
  44. package/dist/assets/packages/components/lib/UIKit/Slider/SimpleSlider.css +1 -0
  45. package/dist/assets/packages/components/src/tailwind.css +1 -1
  46. package/dist/composables/useFloatingLabel.d.ts +1 -1
  47. package/dist/composables/useFloatingLabel.js +20 -20
  48. package/dist/index.d.ts +2 -5
  49. package/dist/index.js +85 -98
  50. package/dist/node_modules/.pnpm/@wikicasa-dev_utilities@1.1.21/node_modules/@wikicasa-dev/utilities/dist/utils/ArrayUtils.js +4 -0
  51. package/dist/node_modules/.pnpm/@wikicasa-dev_utilities@1.1.21/node_modules/@wikicasa-dev/utilities/dist/utils/DeviceDetectionUtils.js +4 -0
  52. package/dist/node_modules/.pnpm/@wikicasa-dev_utilities@1.1.21/node_modules/@wikicasa-dev/utilities/dist/utils/GenericUtils.js +12 -0
  53. package/dist/node_modules/.pnpm/@wikicasa-dev_utilities@1.1.21/node_modules/@wikicasa-dev/utilities/dist/utils/NumberUtils.js +18 -0
  54. package/dist/node_modules/.pnpm/@wikicasa-dev_utilities@1.1.21/node_modules/@wikicasa-dev/utilities/dist/utils/StringUtils.js +4 -0
  55. package/dist/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.6}/node_modules/swiper/modules/controller.js +1 -1
  56. package/dist/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.6}/node_modules/swiper/modules/free-mode.js +1 -1
  57. package/dist/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.6}/node_modules/swiper/modules/keyboard.js +9 -9
  58. package/dist/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.6}/node_modules/swiper/modules/pagination.js +17 -17
  59. package/dist/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.6}/node_modules/swiper/modules/thumbs.js +1 -1
  60. package/dist/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.6}/node_modules/swiper/modules/zoom.js +13 -13
  61. package/dist/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.6}/node_modules/swiper/shared/utils.js +26 -32
  62. package/dist/packages/components/lazyModules/Swiper/autoplay.js +2 -2
  63. package/dist/packages/components/lazyModules/Swiper/controller.js +2 -2
  64. package/dist/packages/components/lazyModules/Swiper/free-mode.js +2 -2
  65. package/dist/packages/components/lazyModules/Swiper/keyboard.js +2 -2
  66. package/dist/packages/components/lazyModules/Swiper/navigation.js +2 -2
  67. package/dist/packages/components/lazyModules/Swiper/pagination.js +2 -2
  68. package/dist/packages/components/lazyModules/Swiper/thumbs.js +2 -2
  69. package/dist/packages/components/lib/UIKit/AccessibleSelect.vue.js +30 -30
  70. package/dist/packages/components/lib/UIKit/Accordion/BaseAccordionBtn.vue.js +2 -2
  71. package/dist/packages/components/lib/UIKit/Accordion/BaseAccordionItem.vue.js +9 -9
  72. package/dist/packages/components/lib/UIKit/BaseAlert.vue.js +13 -107
  73. package/dist/packages/components/lib/UIKit/BaseAutocomplete.vue.js +27 -28
  74. package/dist/packages/components/lib/UIKit/BaseBadge.vue.js +11 -46
  75. package/dist/packages/components/lib/UIKit/BaseBreadcrumb.vue.js +35 -32
  76. package/dist/packages/components/lib/UIKit/BaseButton.vue.js +36 -56
  77. package/dist/packages/components/lib/UIKit/BaseComplexToggle.vue.js +12 -12
  78. package/dist/packages/components/lib/UIKit/BaseDropDown.vue.js +45 -48
  79. package/dist/packages/components/lib/UIKit/BaseFloatingLabel.vue.js +17 -14
  80. package/dist/packages/components/lib/UIKit/BaseInput.vue.js +119 -93
  81. package/dist/packages/components/lib/UIKit/BaseModal.vue.js +66 -70
  82. package/dist/packages/components/lib/UIKit/BasePagination.vue.js +134 -89
  83. package/dist/packages/components/lib/UIKit/BaseSlider.vue.js +178 -107
  84. package/dist/packages/components/lib/UIKit/BaseSnackbar.vue.js +7 -7
  85. package/dist/packages/components/lib/UIKit/BaseTextarea.vue.js +73 -55
  86. package/dist/packages/components/lib/UIKit/BaseToggle.vue.js +31 -27
  87. package/dist/packages/components/lib/UIKit/BaseTooltip.vue.js +33 -48
  88. package/dist/packages/components/lib/UIKit/BaseUploadFile.vue.js +40 -19
  89. package/dist/packages/components/lib/UIKit/Checkbox/CheckboxBtn.vue.js +52 -55
  90. package/dist/packages/components/lib/UIKit/Checkbox/CheckboxGroup.vue.js +26 -20
  91. package/dist/packages/components/lib/UIKit/Radio/RadioButton.vue.js +9 -9
  92. package/dist/packages/components/lib/UIKit/ShimmerLoader/BaseShimmerLoader.vue.js +9 -10
  93. package/dist/packages/components/lib/UIKit/ShimmerLoader/ShimmerMultiLine.vue.js +9 -10
  94. package/dist/packages/components/lib/UIKit/Slider/SimpleSlider.vue.js +82 -0
  95. package/dist/packages/components/lib/UIKit/Tab/BaseTabList.vue.js +27 -28
  96. package/dist/packages/components/lib/UIKit/Tab/BaseTabView.vue.js +19 -21
  97. package/dist/packages/components/lib/components/carousel/SwiperCarousel.vue.js +6 -5
  98. package/dist/utils.d.ts +1 -1
  99. package/dist/utils.js +3 -5
  100. package/package.json +18 -25
  101. package/dist/UIKit/BaseBanner/Background/BaseBannerBgElement1.js +0 -4
  102. package/dist/UIKit/BaseBanner/Background/BaseBannerBgElement2.js +0 -4
  103. package/dist/UIKit/BaseBanner/Background/BaseBannerBgElement3.js +0 -4
  104. package/dist/UIKit/BaseBanner/Background/BaseBannerBgElement4.js +0 -4
  105. package/dist/UIKit/BaseBanner.js +0 -4
  106. package/dist/UIKit/BaseChip.js +0 -4
  107. package/dist/UIKit/BaseCollapse.js +0 -7
  108. package/dist/UIKit/BaseNotificationBadge.js +0 -4
  109. package/dist/UIKit/BasePin.d.ts +0 -22
  110. package/dist/UIKit/BasePin.js +0 -5
  111. package/dist/UIKit/BaseSelect.d.ts +0 -26
  112. package/dist/UIKit/BaseSelect.js +0 -5
  113. package/dist/UIKit/DatePicker.js +0 -5
  114. package/dist/UIKit/InputDropdown.js +0 -4
  115. package/dist/UIKit/Navigation/NavigationBar.d.ts +0 -17
  116. package/dist/UIKit/Navigation/NavigationBar.js +0 -5
  117. package/dist/UIKit/Navigation/NavigationBarItem.d.ts +0 -34
  118. package/dist/UIKit/Navigation/NavigationBarItem.js +0 -4
  119. package/dist/UIKit/SegmentedControl/SegmentedControl.js +0 -4
  120. package/dist/UIKit/SegmentedControl/SegmentedControlItem.js +0 -4
  121. package/dist/UIKit/Tab/BaseTabItem.d.ts +0 -27
  122. package/dist/UIKit/Tab/BaseTabItem.js +0 -4
  123. package/dist/assets/node_modules/.pnpm/@vuepic_vue-datepicker@11.0.2_vue@3.5.16_typescript@5.8.3_/node_modules/@vuepic/vue-datepicker/dist/main.css +0 -1
  124. package/dist/assets/packages/components/lib/UIKit/BaseBreadcrumb.css +0 -1
  125. package/dist/assets/packages/components/lib/UIKit/BaseCollapse.css +0 -1
  126. package/dist/assets/packages/components/lib/UIKit/BasePin.css +0 -1
  127. package/dist/assets/packages/components/lib/UIKit/BaseSelect.css +0 -1
  128. package/dist/assets/packages/components/lib/UIKit/DatePicker.css +0 -1
  129. package/dist/assets/packages/components/lib/UIKit/Navigation/NavigationBar.css +0 -1
  130. package/dist/node_modules/.pnpm/@wikicasa-dev_svg-icons@1.2.12_typescript@5.8.3/node_modules/@wikicasa-dev/svg-icons/dist/ArrowFilledIcon.js +0 -19
  131. package/dist/node_modules/.pnpm/@wikicasa-dev_svg-icons@1.2.12_typescript@5.8.3/node_modules/@wikicasa-dev/svg-icons/dist/CheckIcon.js +0 -16
  132. package/dist/node_modules/.pnpm/@wikicasa-dev_svg-icons@1.2.12_typescript@5.8.3/node_modules/@wikicasa-dev/svg-icons/dist/svgIconFactory-BpnFimFz.js +0 -29
  133. package/dist/node_modules/.pnpm/@wikicasa-dev_vue-composables@0.0.23_typescript@5.8.3/node_modules/@wikicasa-dev/vue-composables/dist/useBreakpoints.js +0 -33
  134. package/dist/packages/components/lib/UIKit/BaseBanner/Background/BaseBannerBgElement1.vue.js +0 -29
  135. package/dist/packages/components/lib/UIKit/BaseBanner/Background/BaseBannerBgElement2.vue.js +0 -56
  136. package/dist/packages/components/lib/UIKit/BaseBanner/Background/BaseBannerBgElement3.vue.js +0 -56
  137. package/dist/packages/components/lib/UIKit/BaseBanner/Background/BaseBannerBgElement4.vue.js +0 -56
  138. package/dist/packages/components/lib/UIKit/BaseBanner.vue.js +0 -75
  139. package/dist/packages/components/lib/UIKit/BaseChip.vue.js +0 -38
  140. package/dist/packages/components/lib/UIKit/BaseCollapse.vue.js +0 -54
  141. package/dist/packages/components/lib/UIKit/BaseNotificationBadge.vue.js +0 -19
  142. package/dist/packages/components/lib/UIKit/BasePin.vue.js +0 -37
  143. package/dist/packages/components/lib/UIKit/BaseSelect.vue.js +0 -65
  144. package/dist/packages/components/lib/UIKit/DatePicker.vue.js +0 -143
  145. package/dist/packages/components/lib/UIKit/InputDropdown.vue.js +0 -152
  146. package/dist/packages/components/lib/UIKit/Navigation/NavigationBar.vue.js +0 -21
  147. package/dist/packages/components/lib/UIKit/Navigation/NavigationBarItem.vue.js +0 -48
  148. package/dist/packages/components/lib/UIKit/SegmentedControl/SegmentedControl.vue.js +0 -93
  149. package/dist/packages/components/lib/UIKit/SegmentedControl/SegmentedControlItem.vue.js +0 -30
  150. package/dist/packages/components/lib/UIKit/Tab/BaseTabItem.vue.js +0 -39
  151. package/plugins/buttonPlugin.ts +0 -290
  152. /package/dist/assets/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.6}/node_modules/swiper/modules/free-mode.css +0 -0
  153. /package/dist/assets/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.6}/node_modules/swiper/modules/navigation.css +0 -0
  154. /package/dist/assets/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.6}/node_modules/swiper/modules/pagination.css +0 -0
  155. /package/dist/assets/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.6}/node_modules/swiper/modules/zoom.css +0 -0
  156. /package/dist/assets/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.6}/node_modules/swiper/swiper.css +0 -0
  157. /package/dist/node_modules/.pnpm/{@wikicasa-dev_svg-icons@1.2.12_typescript@5.8.3 → @wikicasa-dev_svg-icons@1.2.11_typescript@5.8.3}/node_modules/@wikicasa-dev/svg-icons/dist/ArrowIcon.js +0 -0
  158. /package/dist/node_modules/.pnpm/{@wikicasa-dev_svg-icons@1.2.12_typescript@5.8.3 → @wikicasa-dev_svg-icons@1.2.11_typescript@5.8.3}/node_modules/@wikicasa-dev/svg-icons/dist/CloseIcon.js +0 -0
  159. /package/dist/node_modules/.pnpm/{@wikicasa-dev_svg-icons@1.2.12_typescript@5.8.3 → @wikicasa-dev_svg-icons@1.2.11_typescript@5.8.3}/node_modules/@wikicasa-dev/svg-icons/dist/DefaultValues-CpabIgVz.js +0 -0
  160. /package/dist/node_modules/.pnpm/{@wikicasa-dev_svg-icons@1.2.12_typescript@5.8.3 → @wikicasa-dev_svg-icons@1.2.11_typescript@5.8.3}/node_modules/@wikicasa-dev/svg-icons/dist/PharmacyIcon.js +0 -0
  161. /package/dist/node_modules/.pnpm/{@wikicasa-dev_svg-icons@1.2.12_typescript@5.8.3 → @wikicasa-dev_svg-icons@1.2.11_typescript@5.8.3}/node_modules/@wikicasa-dev/svg-icons/dist/WarningIconRounded.js +0 -0
  162. /package/dist/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.6}/node_modules/swiper/modules/autoplay.css.js +0 -0
  163. /package/dist/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.6}/node_modules/swiper/modules/autoplay.js +0 -0
  164. /package/dist/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.6}/node_modules/swiper/modules/controller.css.js +0 -0
  165. /package/dist/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.6}/node_modules/swiper/modules/keyboard.css.js +0 -0
  166. /package/dist/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.6}/node_modules/swiper/modules/navigation.js +0 -0
  167. /package/dist/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.6}/node_modules/swiper/modules/thumbs.css.js +0 -0
  168. /package/dist/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.6}/node_modules/swiper/shared/classes-to-selector.js +0 -0
  169. /package/dist/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.6}/node_modules/swiper/shared/create-element-if-not-defined.js +0 -0
  170. /package/dist/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.6}/node_modules/swiper/shared/ssr-window.esm.js +0 -0
@@ -1 +0,0 @@
1
- .uikit-pin{--pin-bg-color: #fff;--pin-color: #2b5dff;--pin-arrow-top: 4px}.uikit-pin.uikit-pin-blue{--pin-bg-color: #2b5dff;--pin-color: #fff}.uikit-pin.uikit-pin-cultured{--pin-bg-color: #F4F7FF;--pin-color: #222222}.uikit-pin.uikit-pin-dark-blue{--pin-bg-color: #162F80;--pin-color: #fff}.uikit-pin.uikit-pin-outlined{--pin-border-width: 1px;--pin-border-color: #2b5dff;--pin-arrow-top: 3px}.uikit-pin.uikit-pin-outlined.uikit-pin-red{--pin-border-color: #F20003;--pin-color: #F20003}.uikit-pin.uikit-pin-outlined .uikit-pin-body:after{content:"";width:15px;height:2px;position:absolute;background-color:var(--pin-bg-color);bottom:0;left:26.5px}.uikit-pin.uikit-pin-rounded{--pin-border-color: #2b5dff;--pin-border-width: 2px}.uikit-pin.uikit-pin-rounded.uikit-pin-blue{--pin-border-color: #fff}.uikit-pin .uikit-pin-body{background-color:var(--pin-bg-color);color:var(--pin-color);border:var(--pin-border-width) var(--pin-border-color) solid;box-shadow:0 5px 10px #0000001a}.uikit-pin .uikit-pin-arrow{position:absolute;background-color:var(--pin-bg-color);text-align:left;top:calc(100% - 8px);left:calc(50% - 8px);width:15px;height:15px;border-bottom-left-radius:4px;clip-path:polygon(0% 0%,0 100%,100% 100%);transform:rotate(-56deg) skew(-20deg) scaleY(.95);border:var(--pin-border-width) var(--pin-border-color) solid}
@@ -1 +0,0 @@
1
- .select-wrapper{position:relative;display:inline-block}.select-wrapper select{appearance:none;-webkit-appearance:none;-moz-appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='16' height='16' viewBox='0 0 16 16'%3E%3Cg%3E%3Cpath d='M21.006,9.708l-7.448,7.448a.543.543,0,0,1-.779,0L5.331,9.708a.548.548,0,0,1,.384-.932H20.622A.543.543,0,0,1,21.006,9.708Z' transform='translate(-5.172 -5.048)' fill='%230e1d34'/%3E%3C/g%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 12px center;background-size:var(--7c189782)}
@@ -1 +0,0 @@
1
- :root{--dp-font-family: "Poppins"}.dp__theme_light{--dp-primary-color: #F4F7FF;--dp-hover-color: #F4F7FF;--dp-primary-text-color: #222222;--dp-menu-padding: 0;--dp-border-radius: 8px;--dp-cell-border-radius: 9999px;--dp-border-color: #C1C8D5}@media screen and (max-width: 640px){.dp__theme_light{--dp-menu-min-width: 460px }}.dp__calendar_header{padding-top:8px;font-size:14px;font-weight:400;text-transform:capitalize;--tw-text-opacity: 1;color:rgb(109 118 135 / var(--tw-text-opacity, 1))}.dp__calendar_header_separator{display:none}.dp__calendar{font-size:16px;font-weight:400;--tw-text-opacity: 1;color:rgb(34 34 34 / var(--tw-text-opacity, 1))}.dp__calendar .dp__cell_offset{--tw-text-opacity: 1;color:rgb(193 200 213 / var(--tw-text-opacity, 1))}.dp__active_date,.dp__range_start,.dp__range_end{border-radius:9999px;--tw-border-opacity: 1;border-color:rgb(43 93 255 / var(--tw-border-opacity, 1))}.dp__range_start:after{position:absolute;right:-20px;z-index:-1;height:35px;width:100%;--tw-bg-opacity: 1;background-color:rgb(244 247 255 / var(--tw-bg-opacity, 1));--tw-content: "";content:var(--tw-content)}@media (min-width: 640px){.dp__range_start:after{right:-1px;width:50%}}.dp__range_end:after{position:absolute;left:-20px;z-index:-1;height:35px;width:100%;--tw-bg-opacity: 1;background-color:rgb(244 247 255 / var(--tw-bg-opacity, 1));--tw-content: "";content:var(--tw-content)}@media (min-width: 640px){.dp__range_end:after{left:-1px;width:50%}}.dp__range-mode .dp__date_hover{flex-grow:1}.dp__range_between{border-width:0px;--tw-bg-opacity: 1;background-color:rgb(244 247 255 / var(--tw-bg-opacity, 1))}@media not all and (min-width: 640px){.dp__range_between{flex-grow:1}}.dp__action_row{--tw-bg-opacity: 1;background-color:rgb(244 247 255 / var(--tw-bg-opacity, 1))}.dp__menu{overflow:hidden;--tw-shadow: 0px 1px 3px rgba(0,0,0,.1);--tw-shadow-colored: 0px 1px 3px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.dp__single_mode .dp__action_row{display:none}.dp__calendar_item{position:relative;z-index:0;display:flex}@media not all and (min-width: 640px){.dp__calendar_item,.dp__cell_inner{justify-content:center}}@media (min-width: 640px){.dp__cell_inner{flex-grow:1}}
@@ -1 +0,0 @@
1
- .uikit-navigation-bar-shadow{box-shadow:0 0 4px #0000001a,0 -3px 4px #0000001a}
@@ -1,19 +0,0 @@
1
- import { h as r } from "vue";
2
- import { s as l } from "./svgIconFactory-BpnFimFz.js";
3
- const a = (o) => l({
4
- props: o,
5
- svgNodeAttrs: {
6
- viewBox: "0 0 16 16"
7
- },
8
- childrenNodes: r(
9
- "g",
10
- r("path", {
11
- d: "M21.006,9.708l-7.448,7.448a.543.543,0,0,1-.779,0L5.331,9.708a.548.548,0,0,1,.384-.932H20.622A.543.543,0,0,1,21.006,9.708Z",
12
- transform: "translate(-5.172 -5.048)",
13
- fill: o["fill-color"] ?? "#0e1d34"
14
- })
15
- )
16
- });
17
- export {
18
- a as ArrowFilledIcon
19
- };
@@ -1,16 +0,0 @@
1
- import { h as l } from "vue";
2
- import { s as c } from "./svgIconFactory-BpnFimFz.js";
3
- const s = (o) => c({
4
- props: o,
5
- svgNodeAttrs: {
6
- "xml:space": "preserve",
7
- viewBox: "23.79 36.49 74.46 58.72"
8
- },
9
- childrenNodes: l("path", {
10
- fill: o["fill-color"] ?? "#2B5DFF",
11
- d: "M51.84 95.21 23.79 67.16c-.94-.94-.94-2.46 0-3.4l5.47-5.47c.94-.94 2.46-.94 3.4 0l19.18 19.13c.94.94 2.46.93 3.4 0l44.33-44.33c.94-.94 2.47-.94 3.4.01l5.48 5.52a2.4 2.4 0 0 1-.01 3.39l-53.2 53.2c-.94.93-2.46.93-3.4 0"
12
- })
13
- });
14
- export {
15
- s as CheckIcon
16
- };
@@ -1,29 +0,0 @@
1
- import { h as d } from "vue";
2
- import { g as c } from "./DefaultValues-CpabIgVz.js";
3
- const a = ({ props: t, svgNodeAttrs: s, childrenNodes: i }) => {
4
- const r = {
5
- ...c(),
6
- //Removing undefined props
7
- ...Object.entries(t).reduce(
8
- (e, [h, o]) => (o && (e[h] = o), e),
9
- {}
10
- )
11
- };
12
- return d(
13
- "svg",
14
- {
15
- xmlns: "http://www.w3.org/2000/svg",
16
- "stroke-color": t["stroke-color"],
17
- height: r.height,
18
- //Setting default height (20px)
19
- width: r.width,
20
- //Setting default width (20px)
21
- "aria-hidden": r["aria-hidden"],
22
- ...s
23
- },
24
- i
25
- );
26
- };
27
- export {
28
- a as s
29
- };
@@ -1,33 +0,0 @@
1
- import { reactive as r, ref as o, toRefs as a, onBeforeMount as d, onUnmounted as l } from "vue";
2
- const s = {
3
- SMALL: 576,
4
- MEDIUM: 768,
5
- LARGE: 992,
6
- EXTRA_LARGE: 1200
7
- };
8
- function m(i = {
9
- breakpoints: {
10
- sm: s.SMALL,
11
- md: s.MEDIUM,
12
- lg: s.LARGE,
13
- xl: s.EXTRA_LARGE
14
- }
15
- }) {
16
- const e = r({
17
- isDesktopMode: !1,
18
- isSmall: !1,
19
- isLarge: !1,
20
- isMedium: !1,
21
- isExtraLarge: !1
22
- }), n = o(!1), t = () => {
23
- e.isDesktopMode = window.innerWidth > i.breakpoints.sm, e.isSmall = window.innerWidth <= i.breakpoints.sm, e.isMedium = window.innerWidth > i.breakpoints.sm, e.isLarge = window.innerWidth > i.breakpoints.md, e.isExtraLarge = window.innerWidth > i.breakpoints.lg;
24
- };
25
- return d(() => {
26
- t(), n.value = !0, window.addEventListener("resize", t);
27
- }), l(() => {
28
- window.removeEventListener("resize", t), n.value = !1;
29
- }), { ...a(e), isInitialized: n };
30
- }
31
- export {
32
- m as useBreakpoints
33
- };
@@ -1,29 +0,0 @@
1
- import { defineComponent as o, createElementBlock as l, openBlock as n, createElementVNode as t } from "vue";
2
- const r = ["width", "height"], h = ["fill"], d = /* @__PURE__ */ o({
3
- __name: "BaseBannerBgElement1",
4
- props: {
5
- width: { default: 726 },
6
- height: { default: 96 },
7
- color: { default: "#de1681" }
8
- },
9
- setup(i) {
10
- return (e, a) => (n(), l("svg", {
11
- xmlns: "http://www.w3.org/2000/svg",
12
- "xmlns:xlink": "http://www.w3.org/1999/xlink",
13
- width: e.width,
14
- height: e.height,
15
- viewBox: "0 0 726 96"
16
- }, [
17
- t("g", null, [
18
- t("path", {
19
- d: "M391.314,2.476C599.068-14.131,760.7,31.792,752.325,105.049S568.744,251.155,360.989,267.763-8.4,238.447-.022,165.19,183.559,19.084,391.314,2.476Z",
20
- transform: "translate(400.913 -94.21) rotate(14)",
21
- fill: e.color
22
- }, null, 8, h)
23
- ])
24
- ], 8, r));
25
- }
26
- });
27
- export {
28
- d as default
29
- };
@@ -1,56 +0,0 @@
1
- import { defineComponent as l, createElementBlock as i, openBlock as n, createElementVNode as e } from "vue";
2
- const r = ["width", "height"], s = ["fill"], h = /* @__PURE__ */ l({
3
- __name: "BaseBannerBgElement2",
4
- props: {
5
- width: { default: 726 },
6
- height: { default: 96 },
7
- color: { default: "#c21973" }
8
- },
9
- setup(a) {
10
- return (t, o) => (n(), i("svg", {
11
- xmlns: "http://www.w3.org/2000/svg",
12
- "xmlns:xlink": "http://www.w3.org/1999/xlink",
13
- width: t.width,
14
- height: t.height,
15
- viewBox: "0 0 726 96"
16
- }, [
17
- o[0] || (o[0] = e("defs", null, [
18
- e("filter", {
19
- x: "-9",
20
- y: "-7",
21
- width: "744",
22
- height: "114",
23
- filterUnits: "userSpaceOnUse"
24
- }, [
25
- e("feOffset", {
26
- dy: "2",
27
- input: "SourceAlpha"
28
- }),
29
- e("feGaussianBlur", {
30
- stdDeviation: "3",
31
- result: "blur"
32
- }),
33
- e("feFlood", {
34
- "flood-color": "#6e6e6e",
35
- "flood-opacity": "0.6"
36
- }),
37
- e("feComposite", {
38
- operator: "in",
39
- in2: "blur"
40
- }),
41
- e("feComposite", { in: "SourceGraphic" })
42
- ])
43
- ], -1)),
44
- e("g", null, [
45
- e("path", {
46
- d: "M296.562,2.236C453.63-11.06,575.519,21.962,568.808,75.994S429.328,184.605,272.26,197.9-6.7,178.176.013,124.145,139.494,15.533,296.562,2.236Z",
47
- transform: "translate(442.664 -69.902) rotate(14)",
48
- fill: t.color
49
- }, null, 8, s)
50
- ])
51
- ], 8, r));
52
- }
53
- });
54
- export {
55
- h as default
56
- };
@@ -1,56 +0,0 @@
1
- import { defineComponent as l, createElementBlock as i, openBlock as n, createElementVNode as e } from "vue";
2
- const r = ["width", "height"], s = ["fill"], h = /* @__PURE__ */ l({
3
- __name: "BaseBannerBgElement3",
4
- props: {
5
- width: { default: 343 },
6
- height: { default: 164 },
7
- color: { default: "#c21973" }
8
- },
9
- setup(a) {
10
- return (t, o) => (n(), i("svg", {
11
- xmlns: "http://www.w3.org/2000/svg",
12
- "xmlns:xlink": "http://www.w3.org/1999/xlink",
13
- width: t.width,
14
- height: t.height,
15
- viewBox: "0 0 343 164"
16
- }, [
17
- o[0] || (o[0] = e("defs", null, [
18
- e("filter", {
19
- x: "-9",
20
- y: "-7",
21
- width: "361",
22
- height: "182",
23
- filterUnits: "userSpaceOnUse"
24
- }, [
25
- e("feOffset", {
26
- dy: "2",
27
- input: "SourceAlpha"
28
- }),
29
- e("feGaussianBlur", {
30
- stdDeviation: "3",
31
- result: "blur"
32
- }),
33
- e("feFlood", {
34
- "flood-color": "#6e6e6e",
35
- "flood-opacity": "0.6"
36
- }),
37
- e("feComposite", {
38
- operator: "in",
39
- in2: "blur"
40
- }),
41
- e("feComposite", { in: "SourceGraphic" })
42
- ])
43
- ], -1)),
44
- e("g", null, [
45
- e("path", {
46
- d: "M127.936,6c81.713,23.824,157.7,113.234,169.726,199.7S253.192,342.96,171.478,319.137,13.776,205.9,1.752,119.434,46.222-17.82,127.936,6Z",
47
- transform: "translate(24.544 291.435) rotate(-68)",
48
- fill: t.color
49
- }, null, 8, s)
50
- ])
51
- ], 8, r));
52
- }
53
- });
54
- export {
55
- h as default
56
- };
@@ -1,56 +0,0 @@
1
- import { defineComponent as l, createElementBlock as r, openBlock as i, createElementVNode as e } from "vue";
2
- const n = ["width", "height"], s = { transform: "translate(-475 -2098)" }, a = ["fill"], h = /* @__PURE__ */ l({
3
- __name: "BaseBannerBgElement4",
4
- props: {
5
- width: { default: 343 },
6
- height: { default: 164 },
7
- color: { default: "#de1681" }
8
- },
9
- setup(f) {
10
- return (t, o) => (i(), r("svg", {
11
- xmlns: "http://www.w3.org/2000/svg",
12
- "xmlns:xlink": "http://www.w3.org/1999/xlink",
13
- width: t.width,
14
- height: t.height,
15
- viewBox: "0 0 343 164"
16
- }, [
17
- o[0] || (o[0] = e("defs", null, [
18
- e("filter", {
19
- x: "-9",
20
- y: "-7",
21
- width: "361",
22
- height: "182",
23
- filterUnits: "userSpaceOnUse"
24
- }, [
25
- e("feOffset", {
26
- dy: "2",
27
- input: "SourceAlpha"
28
- }),
29
- e("feGaussianBlur", {
30
- stdDeviation: "3",
31
- result: "blur"
32
- }),
33
- e("feFlood", {
34
- "flood-color": "#6e6e6e",
35
- "flood-opacity": "0.6"
36
- }),
37
- e("feComposite", {
38
- operator: "in",
39
- in2: "blur"
40
- }),
41
- e("feComposite", { in: "SourceGraphic" })
42
- ])
43
- ], -1)),
44
- e("g", s, [
45
- e("path", {
46
- d: "M167.755,7.884C276.138,41.063,377.561,163.273,394.291,280.848S336.72,466.841,228.337,433.663,18.531,278.274,1.8,160.7,59.373-25.294,167.755,7.884Z",
47
- transform: "translate(426.502 2353.926) rotate(-52)",
48
- fill: t.color
49
- }, null, 8, a)
50
- ])
51
- ], 8, n));
52
- }
53
- });
54
- export {
55
- h as default
56
- };
@@ -1,75 +0,0 @@
1
- import { defineComponent as d, createElementBlock as k, openBlock as e, normalizeClass as m, createElementVNode as a, renderSlot as o, createVNode as t, createBlock as s, resolveDynamicComponent as r, withCtx as l, createTextVNode as u, toDisplayString as n } from "vue";
2
- import c from "./BaseBanner/Background/BaseBannerBgElement1.vue.js";
3
- import b from "./BaseBanner/Background/BaseBannerBgElement2.vue.js";
4
- import h from "./BaseBanner/Background/BaseBannerBgElement3.vue.js";
5
- import p from "./BaseBanner/Background/BaseBannerBgElement4.vue.js";
6
- const f = ["aria-label"], g = { class: "uikit-relative uikit-z-[2]" }, v = { class: "uikit-text max-sm:uikit-mb-md" }, L = /* @__PURE__ */ d({
7
- __name: "BaseBanner",
8
- props: {
9
- ariaLabel: {},
10
- headerTag: {},
11
- title: {},
12
- description: {},
13
- ctaComponent: { type: [Object, Function] },
14
- ctaLabel: {},
15
- bannerClass: {}
16
- },
17
- setup(C) {
18
- return (i, _) => (e(), k("section", {
19
- "aria-label": i.ariaLabel,
20
- class: m([
21
- "uikit-relative uikit-overflow-hidden uikit-rounded-xs uikit-p-md uikit-text-white sm:uikit-p-lg",
22
- i.bannerClass === "secondary" ? "uikit-bg-w-blue" : "uikit-bg-w-pink"
23
- ])
24
- }, [
25
- a("div", g, [
26
- o(i.$slots, "title", {}, () => [
27
- (e(), s(r(i.headerTag || "h2"), { class: "uikit-m-0 uikit-text-20 max-sm:uikit-mb-xs" }, {
28
- default: l(() => [
29
- u(n(i.title), 1)
30
- ]),
31
- _: 1
32
- }))
33
- ]),
34
- o(i.$slots, "description", {}, () => [
35
- a("p", v, n(i.description), 1)
36
- ])
37
- ]),
38
- o(i.$slots, "cta", {}, () => [
39
- (e(), s(r(i.ctaComponent || "button"), { class: "uikit-btn uikit-btn-ternary uikit-relative uikit-z-[2]" }, {
40
- default: l(() => [
41
- u(n(i.ctaLabel), 1)
42
- ]),
43
- _: 1
44
- }))
45
- ]),
46
- t(c, {
47
- class: "uikit-pointer-events-none uikit-absolute -uikit-right-1/2 uikit-bottom-0 max-sm:uikit-hidden",
48
- width: 1597,
49
- height: 211,
50
- color: i.bannerClass === "secondary" ? "#254fd9" : void 0
51
- }, null, 8, ["color"]),
52
- t(b, {
53
- class: "uikit-pointer-events-none uikit-absolute -uikit-right-1/2 uikit-bottom-0 max-sm:uikit-hidden",
54
- width: 1597,
55
- height: 211,
56
- color: i.bannerClass === "secondary" ? "#2146bf" : void 0
57
- }, null, 8, ["color"]),
58
- t(h, {
59
- class: "uikit-pointer-events-none uikit-absolute uikit-bottom-0 uikit-right-0 uikit-z-[1] sm:uikit-hidden",
60
- width: 411,
61
- height: 196,
62
- color: i.bannerClass === "secondary" ? "#2146bf" : void 0
63
- }, null, 8, ["color"]),
64
- t(p, {
65
- class: "uikit-pointer-events-none uikit-absolute uikit-bottom-0 uikit-right-0 sm:uikit-hidden",
66
- width: 411,
67
- height: 196,
68
- color: i.bannerClass === "secondary" ? "#254fd9" : void 0
69
- }, null, 8, ["color"])
70
- ], 10, f));
71
- }
72
- });
73
- export {
74
- L as default
75
- };
@@ -1,38 +0,0 @@
1
- import { defineComponent as a, useModel as d, createBlock as s, openBlock as i, unref as o, withCtx as k, renderSlot as m, createElementBlock as n, createCommentVNode as f, createVNode as c } from "vue";
2
- import { Toggle as p } from "reka-ui";
3
- import { CloseIcon as x } from "../../../../node_modules/.pnpm/@wikicasa-dev_svg-icons@1.2.12_typescript@5.8.3/node_modules/@wikicasa-dev/svg-icons/dist/CloseIcon.js";
4
- import "../../../../node_modules/.pnpm/@wikicasa-dev_svg-icons@1.2.12_typescript@5.8.3/node_modules/@wikicasa-dev/svg-icons/dist/PharmacyIcon.js";
5
- const b = {
6
- key: 0,
7
- class: "uikit-box-border uikit-flex uikit-size-sm uikit-items-center uikit-justify-center uikit-rounded-full uikit-bg-w-blue uikit-text-10 uikit-text-white"
8
- }, C = /* @__PURE__ */ a({
9
- __name: "BaseChip",
10
- props: {
11
- modelValue: { default: !1 },
12
- modelModifiers: {}
13
- },
14
- emits: ["update:modelValue"],
15
- setup(u) {
16
- const e = d(u, "modelValue");
17
- return (l, t) => (i(), s(o(p), {
18
- modelValue: e.value,
19
- "onUpdate:modelValue": t[0] || (t[0] = (r) => e.value = r),
20
- class: "uikit-flex uikit-h-xl uikit-items-center uikit-gap-x-2xs uikit-rounded-2xs uikit-border uikit-border-solid uikit-border-w-lightgray uikit-bg-white uikit-px-sm uikit-py-xs uikit-text-12 hover:uikit-border-[#385CF6] data-[state=on]:uikit-border-[#385CF6] data-[state=on]:uikit-bg-w-cultured data-[state=on]:uikit-font-medium data-[state=on]:uikit-text-w-blue"
21
- }, {
22
- default: k(() => [
23
- m(l.$slots, "default"),
24
- e.value ? (i(), n("span", b, [
25
- c(o(x), {
26
- width: 6,
27
- height: 6,
28
- "stroke-color": "#fff"
29
- })
30
- ])) : f("", !0)
31
- ]),
32
- _: 3
33
- }, 8, ["modelValue"]));
34
- }
35
- });
36
- export {
37
- C as default
38
- };
@@ -1,54 +0,0 @@
1
- import { defineComponent as s, mergeModels as p, useModel as d, createBlock as f, openBlock as m, unref as t, withCtx as i, createVNode as n, renderSlot as l, normalizeClass as k } from "vue";
2
- import { ArrowFilledIcon as c } from "../../../../node_modules/.pnpm/@wikicasa-dev_svg-icons@1.2.12_typescript@5.8.3/node_modules/@wikicasa-dev/svg-icons/dist/ArrowFilledIcon.js";
3
- import "../../../../node_modules/.pnpm/@wikicasa-dev_svg-icons@1.2.12_typescript@5.8.3/node_modules/@wikicasa-dev/svg-icons/dist/PharmacyIcon.js";
4
- import { CollapsibleRoot as b, CollapsibleTrigger as g, CollapsibleContent as C } from "reka-ui";
5
- const M = /* @__PURE__ */ s({
6
- __name: "BaseCollapse",
7
- props: /* @__PURE__ */ p({
8
- unmountOnHide: { type: Boolean, default: !0 }
9
- }, {
10
- open: { default: !1 },
11
- openModifiers: {}
12
- }),
13
- emits: ["update:open"],
14
- setup(a) {
15
- const o = d(a, "open");
16
- return (e, r) => (m(), f(t(b), {
17
- open: o.value,
18
- "onUpdate:open": r[0] || (r[0] = (u) => o.value = u),
19
- "unmount-on-hide": e.unmountOnHide
20
- }, {
21
- default: i(() => [
22
- n(t(g), { class: "uikit-inline-flex uikit-cursor-pointer uikit-appearance-none uikit-items-center uikit-gap-xs uikit-bg-transparent uikit-p-0 uikit-font-semibold uikit-text-w-blue" }, {
23
- default: i(() => [
24
- l(e.$slots, "label", {}, void 0, !0),
25
- l(e.$slots, "trigger", {}, () => [
26
- n(t(c), {
27
- "fill-color": "#2b5dff",
28
- width: 14,
29
- height: 16,
30
- class: k([
31
- "uikit-pointer-events-none uikit-transition-transform uikit-will-change-transform",
32
- {
33
- "uikit-rotate-180": o.value
34
- }
35
- ])
36
- }, null, 8, ["class"])
37
- ], !0)
38
- ]),
39
- _: 3
40
- }),
41
- n(t(C), { class: "collapsible-content" }, {
42
- default: i(() => [
43
- l(e.$slots, "default", {}, void 0, !0)
44
- ]),
45
- _: 3
46
- })
47
- ]),
48
- _: 3
49
- }, 8, ["open", "unmount-on-hide"]));
50
- }
51
- });
52
- export {
53
- M as default
54
- };
@@ -1,19 +0,0 @@
1
- import { defineComponent as o, createElementBlock as e, openBlock as i, renderSlot as n, createCommentVNode as u, toDisplayString as s } from "vue";
2
- const r = { class: "uikit-relative uikit-inline-block" }, a = {
3
- key: 0,
4
- class: "uikit-pointer-events-none uikit-absolute -uikit-right-sm -uikit-top-sm uikit-rounded-3xs uikit-bg-w-cultured uikit-px-2xs uikit-text-12 uikit-font-medium uikit-text-w-blue"
5
- }, p = /* @__PURE__ */ o({
6
- __name: "BaseNotificationBadge",
7
- props: {
8
- count: { default: 0 }
9
- },
10
- setup(l) {
11
- return (t, c) => (i(), e("span", r, [
12
- n(t.$slots, "default"),
13
- t.count ? (i(), e("span", a, s(t.count), 1)) : u("", !0)
14
- ]));
15
- }
16
- });
17
- export {
18
- p as default
19
- };
@@ -1,37 +0,0 @@
1
- import { defineComponent as u, createElementBlock as e, openBlock as t, normalizeClass as n, createElementVNode as l, createCommentVNode as s, renderSlot as o } from "vue";
2
- const a = {
3
- key: 0,
4
- class: "uikit-pin-arrow"
5
- }, k = /* @__PURE__ */ u({
6
- __name: "BasePin",
7
- props: {
8
- type: { default: "default" },
9
- pinClass: { default: "white" },
10
- outlined: { type: Boolean, default: !1 }
11
- },
12
- setup(p) {
13
- return (i, r) => (t(), e("span", {
14
- class: n(["uikit-pin uikit-relative uikit-inline-block uikit-text", [
15
- { "uikit-pin-outlined": i.outlined },
16
- `uikit-pin-${i.pinClass}`,
17
- `uikit-pin-${i.type}`
18
- ]])
19
- }, [
20
- l("span", {
21
- class: n(["uikit-pin-body uikit-box-border", [
22
- {
23
- "uikit-inline-flex uikit-min-w-xl uikit-rounded-3xs uikit-px-sm uikit-py-2xs": ["default", "large"].includes(i.type),
24
- "uikit-px-xs": i.type === "large",
25
- "uikit-inline-flex uikit-size-lg uikit-items-center uikit-justify-center uikit-rounded-full": i.type === "rounded"
26
- }
27
- ]])
28
- }, [
29
- o(i.$slots, "default")
30
- ], 2),
31
- i.type !== "rounded" ? (t(), e("div", a)) : s("", !0)
32
- ], 2));
33
- }
34
- });
35
- export {
36
- k as default
37
- };
@@ -1,65 +0,0 @@
1
- import { defineComponent as x, mergeModels as u, useCssVars as w, computed as C, useModel as v, useId as y, watch as S, createElementBlock as a, openBlock as d, createCommentVNode as V, createElementVNode as O, normalizeClass as c, unref as m, toDisplayString as p, Fragment as z, renderList as B } from "vue";
2
- const E = { class: "select-wrapper" }, D = ["for"], M = ["id"], T = ["data-idx", "selected"], N = /* @__PURE__ */ x({
3
- __name: "BaseSelect",
4
- props: /* @__PURE__ */ u({
5
- labelText: { default: "" },
6
- options: { default: () => [] },
7
- border: { type: Boolean, default: !0 },
8
- labelClasses: {},
9
- arrowSize: { default: 16 }
10
- }, {
11
- modelValue: {
12
- default: () => ({
13
- id: -1,
14
- label: ""
15
- })
16
- },
17
- modelModifiers: {}
18
- }),
19
- emits: /* @__PURE__ */ u(["change"], ["update:modelValue"]),
20
- setup(o, { emit: f }) {
21
- w((e) => ({
22
- "7c189782": b.value
23
- }));
24
- const s = v(o, "modelValue"), k = f, n = y(), b = C(() => `${o.arrowSize}px`), g = ({ target: e }) => {
25
- const i = (e.selectedOptions?.[0]).dataset.idx;
26
- if (i === void 0) return;
27
- const h = o.options[i];
28
- s.value = h;
29
- }, r = (e, t) => e.id === t?.id || e.label === t?.label;
30
- return S(
31
- s,
32
- (e) => {
33
- const t = o.options.find(
34
- (l) => r(l, e)
35
- );
36
- t && (s.value = t);
37
- },
38
- { immediate: !0 }
39
- ), (e, t) => (d(), a("div", E, [
40
- e.labelText ? (d(), a("label", {
41
- key: 0,
42
- for: m(n),
43
- class: c(["uikit-block", e.labelClasses])
44
- }, p(e.labelText), 11, D)) : V("", !0),
45
- O("select", {
46
- id: m(n),
47
- class: c(["uikit-w-full uikit-cursor-pointer uikit-bg-white uikit-pr-xl uikit-text-16 uikit-font-regular", {
48
- "uikit-rounded-2xs uikit-border uikit-border-solid uikit-border-w-lightgray uikit-py-md uikit-pl-sm": e.border
49
- }]),
50
- onChange: t[0] || (t[0] = (l) => {
51
- k("change", l), g(l);
52
- })
53
- }, [
54
- (d(!0), a(z, null, B(e.options, (l, i) => (d(), a("option", {
55
- key: `option-${i}`,
56
- "data-idx": i,
57
- selected: r(l, s.value)
58
- }, p(l.label), 9, T))), 128))
59
- ], 42, M)
60
- ]));
61
- }
62
- });
63
- export {
64
- N as default
65
- };