@wikicasa-dev/components 2.1.4-alpha.8 → 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 (178) 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 -6
  49. package/dist/index.js +85 -100
  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 +17 -20
  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/_virtual/_commonjsHelpers.js +0 -6
  124. package/dist/_virtual/create-plugin.js +0 -4
  125. package/dist/_virtual/createPlugin.js +0 -4
  126. package/dist/_virtual/plugin.js +0 -7
  127. 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
  128. package/dist/assets/packages/components/lib/UIKit/BaseBreadcrumb.css +0 -1
  129. package/dist/assets/packages/components/lib/UIKit/BaseCollapse.css +0 -1
  130. package/dist/assets/packages/components/lib/UIKit/BasePin.css +0 -1
  131. package/dist/assets/packages/components/lib/UIKit/BaseSelect.css +0 -1
  132. package/dist/assets/packages/components/lib/UIKit/DatePicker.css +0 -1
  133. package/dist/assets/packages/components/lib/UIKit/Navigation/NavigationBar.css +0 -1
  134. 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
  135. 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
  136. 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
  137. 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
  138. package/dist/node_modules/.pnpm/tailwindcss@3.4.15_ts-node@10.9.2_@types_node@24.0.1_typescript@5.8.3_/node_modules/tailwindcss/lib/public/create-plugin.js +0 -25
  139. package/dist/node_modules/.pnpm/tailwindcss@3.4.15_ts-node@10.9.2_@types_node@24.0.1_typescript@5.8.3_/node_modules/tailwindcss/lib/util/createPlugin.js +0 -34
  140. package/dist/node_modules/.pnpm/tailwindcss@3.4.15_ts-node@10.9.2_@types_node@24.0.1_typescript@5.8.3_/node_modules/tailwindcss/plugin.js +0 -11
  141. package/dist/packages/components/lib/UIKit/BaseBanner/Background/BaseBannerBgElement1.vue.js +0 -29
  142. package/dist/packages/components/lib/UIKit/BaseBanner/Background/BaseBannerBgElement2.vue.js +0 -56
  143. package/dist/packages/components/lib/UIKit/BaseBanner/Background/BaseBannerBgElement3.vue.js +0 -56
  144. package/dist/packages/components/lib/UIKit/BaseBanner/Background/BaseBannerBgElement4.vue.js +0 -56
  145. package/dist/packages/components/lib/UIKit/BaseBanner.vue.js +0 -75
  146. package/dist/packages/components/lib/UIKit/BaseChip.vue.js +0 -38
  147. package/dist/packages/components/lib/UIKit/BaseCollapse.vue.js +0 -54
  148. package/dist/packages/components/lib/UIKit/BaseNotificationBadge.vue.js +0 -19
  149. package/dist/packages/components/lib/UIKit/BasePin.vue.js +0 -37
  150. package/dist/packages/components/lib/UIKit/BaseSelect.vue.js +0 -65
  151. package/dist/packages/components/lib/UIKit/DatePicker.vue.js +0 -143
  152. package/dist/packages/components/lib/UIKit/InputDropdown.vue.js +0 -152
  153. package/dist/packages/components/lib/UIKit/Navigation/NavigationBar.vue.js +0 -21
  154. package/dist/packages/components/lib/UIKit/Navigation/NavigationBarItem.vue.js +0 -48
  155. package/dist/packages/components/lib/UIKit/SegmentedControl/SegmentedControl.vue.js +0 -93
  156. package/dist/packages/components/lib/UIKit/SegmentedControl/SegmentedControlItem.vue.js +0 -30
  157. package/dist/packages/components/lib/UIKit/Tab/BaseTabItem.vue.js +0 -39
  158. package/dist/plugins/buttonPlugin.d.ts +0 -4
  159. package/dist/plugins/buttonPlugin.js +0 -232
  160. /package/dist/assets/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.6}/node_modules/swiper/modules/free-mode.css +0 -0
  161. /package/dist/assets/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.6}/node_modules/swiper/modules/navigation.css +0 -0
  162. /package/dist/assets/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.6}/node_modules/swiper/modules/pagination.css +0 -0
  163. /package/dist/assets/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.6}/node_modules/swiper/modules/zoom.css +0 -0
  164. /package/dist/assets/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.6}/node_modules/swiper/swiper.css +0 -0
  165. /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
  166. /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
  167. /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
  168. /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
  169. /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
  170. /package/dist/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.6}/node_modules/swiper/modules/autoplay.css.js +0 -0
  171. /package/dist/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.6}/node_modules/swiper/modules/autoplay.js +0 -0
  172. /package/dist/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.6}/node_modules/swiper/modules/controller.css.js +0 -0
  173. /package/dist/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.6}/node_modules/swiper/modules/keyboard.css.js +0 -0
  174. /package/dist/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.6}/node_modules/swiper/modules/navigation.js +0 -0
  175. /package/dist/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.6}/node_modules/swiper/modules/thumbs.css.js +0 -0
  176. /package/dist/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.6}/node_modules/swiper/shared/classes-to-selector.js +0 -0
  177. /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
  178. /package/dist/node_modules/.pnpm/{swiper@11.2.8 → swiper@11.2.6}/node_modules/swiper/shared/ssr-window.esm.js +0 -0
@@ -1,46 +1,45 @@
1
- import { defineComponent as C, inject as n, createElementBlock as o, openBlock as i, normalizeClass as l, Fragment as u, renderList as h, unref as s, createBlock as c, withCtx as k, createCommentVNode as v, toDisplayString as _, resolveDynamicComponent as f } from "vue";
2
- import B from "./BaseTabItem.vue.js";
3
- const F = ["aria-labelledby", "data-cy"], L = { key: 0 }, D = /* @__PURE__ */ C({
1
+ import { defineComponent as p, inject as l, createElementBlock as s, openBlock as t, normalizeClass as o, Fragment as m, renderList as y, unref as i, createBlock as C, createCommentVNode as h, toDisplayString as _, resolveDynamicComponent as f } from "vue";
2
+ const v = ["aria-labelledby", "data-cy"], B = ["id", "data-cy", "aria-selected", "aria-controls", "tabindex", "onClick"], F = { key: 0 }, $ = /* @__PURE__ */ p({
4
3
  __name: "BaseTabList",
5
4
  props: {
6
5
  dataCy: {},
7
6
  uid: {},
8
- tabListClasses: {},
9
- activeBorderPosition: {}
7
+ tabListClasses: {}
10
8
  },
11
9
  emits: ["tabClick"],
12
- setup($, { emit: d }) {
13
- const b = n("tabs"), r = n("isTabActive"), m = n("handleClick"), p = d;
14
- return (t, T) => (i(), o("div", {
10
+ setup(L, { emit: c }) {
11
+ const d = l("tabs"), n = l("isTabActive"), b = l("handleClick"), u = c;
12
+ return (r, g) => (t(), s("div", {
15
13
  role: "tablist",
16
- "aria-labelledby": `tablist-${t.uid}`,
17
- class: l(t.tabListClasses),
18
- "data-cy": t.dataCy
14
+ "aria-labelledby": `tablist-${r.uid}`,
15
+ class: o(r.tabListClasses),
16
+ "data-cy": r.dataCy
19
17
  }, [
20
- (i(!0), o(u, null, h(s(b), (e, a) => (i(), c(B, {
18
+ (t(!0), s(m, null, y(i(d), (e, a) => (t(), s("button", {
21
19
  id: e.tabId,
22
20
  key: a,
23
- "active-border-position": t.activeBorderPosition,
24
- "is-active": s(r)(a),
25
21
  "data-cy": e["data-cy"],
26
22
  type: "button",
27
23
  role: "tab",
28
- "aria-selected": s(r)(a),
29
- "aria-controls": `base-tab-panel-${a}-${t.uid}`,
30
- tabindex: s(r)(a) ? void 0 : -1,
31
- class: l(e.class),
32
- onClick: (y) => {
33
- s(m)(a, e), p("tabClick", y, a, e);
34
- }
35
- }, {
36
- default: k(() => [
37
- e["header-title"] ? (i(), o("span", L, _(e["header-title"]), 1)) : e.renderFn.children && e.renderFn.children.header ? (i(), c(f(e.renderFn.children.header), { key: 1 })) : v("", !0)
24
+ "aria-selected": i(n)(a),
25
+ "aria-controls": `base-tab-panel-${a}-${r.uid}`,
26
+ tabindex: i(n)(a) ? void 0 : -1,
27
+ class: o([
28
+ "uikit-bg-transparent uikit-p-5px",
29
+ {
30
+ "uikit-border-b-2 uikit-border-solid uikit-border-w-primary uikit-font-semibold": i(n)(a)
31
+ },
32
+ e.class
38
33
  ]),
39
- _: 2
40
- }, 1032, ["id", "active-border-position", "is-active", "data-cy", "aria-selected", "aria-controls", "tabindex", "class", "onClick"]))), 128))
41
- ], 10, F));
34
+ onClick: (k) => {
35
+ i(b)(a, e), u("tabClick", k, a, e);
36
+ }
37
+ }, [
38
+ e["header-title"] ? (t(), s("span", F, _(e["header-title"]), 1)) : e.renderFn.children && e.renderFn.children.header ? (t(), C(f(e.renderFn.children.header), { key: 1 })) : h("", !0)
39
+ ], 10, B))), 128))
40
+ ], 10, v));
42
41
  }
43
42
  });
44
43
  export {
45
- D as default
44
+ $ as default
46
45
  };
@@ -1,4 +1,4 @@
1
- import { defineComponent as S, mergeModels as T, useModel as z, ref as b, useId as j, useSlots as q, computed as G, provide as p, watch as k, createElementBlock as v, openBlock as i, normalizeClass as I, createElementVNode as H, createBlock as o, createCommentVNode as c, unref as f, toDisplayString as J, Fragment as g, renderList as K, withCtx as O, resolveDynamicComponent as Q } from "vue";
1
+ import { defineComponent as S, mergeModels as T, useModel as z, ref as b, useId as j, useSlots as q, computed as G, provide as v, watch as k, createElementBlock as p, openBlock as l, normalizeClass as I, createElementVNode as H, createBlock as c, createCommentVNode as o, unref as f, toDisplayString as J, Fragment as g, renderList as K, withCtx as O, resolveDynamicComponent as Q } from "vue";
2
2
  import R from "./BaseTabPanel.vue.js";
3
3
  import P from "./BaseTabList.vue.js";
4
4
  const U = ["data-cy"], W = ["id"], te = /* @__PURE__ */ S({
@@ -15,7 +15,7 @@ const U = ["data-cy"], W = ["id"], te = /* @__PURE__ */ S({
15
15
  }),
16
16
  emits: /* @__PURE__ */ T(["tabClicked"], ["update:activeIdx"]),
17
17
  setup($, { emit: B }) {
18
- const A = B, l = z($, "activeIdx"), _ = b(""), u = b(null), F = b(null), r = j(), m = q(), d = (e) => e.props ?? null, y = (e) => e.type.__name === "BaseTab", h = (e, a) => ({
18
+ const A = B, i = z($, "activeIdx"), _ = b(""), u = b(null), F = b(null), r = j(), m = q(), d = (e) => e.props ?? null, y = (e) => e.type.__name === "BaseTab", h = (e, a) => ({
19
19
  renderFn: e,
20
20
  tabId: C(a),
21
21
  "active-tab-panel-idx": d(e)?.["active-tab-panel-idx"] ?? a,
@@ -26,23 +26,23 @@ const U = ["data-cy"], W = ["id"], te = /* @__PURE__ */ S({
26
26
  }), n = G(() => m.default ? m.default().reduce((e, a) => (a.children && Array.isArray(a.children) ? a.children.forEach((t) => {
27
27
  y(t) && e.push(h(t, e.length));
28
28
  }) : y(a) && e.push(h(a, e.length)), e), []) : []);
29
- p("tabs", n), p("isTabActive", (e) => l.value === e);
29
+ v("tabs", n), v("isTabActive", (e) => i.value === e);
30
30
  const V = (e = -1) => u.value === e, C = (e) => `base-tab-${e}-${r}`, w = (e = -1) => `base-tab-panel-${e}-${r}`, x = (e = -1) => {
31
31
  const a = n.value.reduce(
32
32
  (t, s, N) => (s["active-tab-panel-idx"] !== e || t.push({ tab: s, idx: N }), t),
33
33
  []
34
34
  );
35
- return a && a.length === 1 ? a[0].tab.tabId : a.find((t) => t.idx === l.value)?.tab.tabId;
35
+ return a && a.length === 1 ? a[0].tab.tabId : a.find((t) => t.idx === i.value)?.tab.tabId;
36
36
  }, D = (e) => {
37
37
  _.value = C(e);
38
38
  }, L = (e) => {
39
39
  const a = n.value.at(e ?? -1);
40
40
  u.value = a?.["active-tab-panel-idx"] ?? null;
41
41
  };
42
- p("handleClick", (e, a) => {
43
- D(e), l.value = e, A("tabClicked", { tabIdx: e, tabElement: a });
42
+ v("handleClick", (e, a) => {
43
+ D(e), i.value = e, A("tabClicked", { tabIdx: e, tabElement: a });
44
44
  }), k(
45
- l,
45
+ i,
46
46
  (e) => {
47
47
  L(e ?? -1);
48
48
  },
@@ -61,9 +61,9 @@ const U = ["data-cy"], W = ["id"], te = /* @__PURE__ */ S({
61
61
  const t = E(e, a);
62
62
  if (t === null) return;
63
63
  const s = n.value[t]["active-tab-panel-idx"];
64
- l.value !== t || s === void 0 || (u.value = s);
64
+ i.value !== t || s === void 0 || (u.value = s);
65
65
  }
66
- ), (e, a) => (i(), v("div", {
66
+ ), (e, a) => (l(), p("div", {
67
67
  ref_key: "root",
68
68
  ref: F,
69
69
  class: I(e.$attrs.class),
@@ -73,15 +73,14 @@ const U = ["data-cy"], W = ["id"], te = /* @__PURE__ */ S({
73
73
  id: `tablist-${f(r)}`,
74
74
  class: "uikit-sr-only"
75
75
  }, J(e.tabViewDescription), 9, W),
76
- e.tabsPosition === "top" ? (i(), o(P, {
76
+ e.tabsPosition === "top" ? (l(), c(P, {
77
77
  key: 0,
78
78
  uid: f(r),
79
79
  "tab-list-classes": e.tabListClasses,
80
- "data-cy": e.dataCy ? `${e.dataCy}-tab-list` : "",
81
- "active-border-position": "bottom"
82
- }, null, 8, ["uid", "tab-list-classes", "data-cy"])) : c("", !0),
83
- (i(!0), v(g, null, K(n.value, (t, s) => (i(), v(g, { key: s }, [
84
- M(s) ? (i(), o(R, {
80
+ "data-cy": e.dataCy ? `${e.dataCy}-tab-list` : ""
81
+ }, null, 8, ["uid", "tab-list-classes", "data-cy"])) : o("", !0),
82
+ (l(!0), p(g, null, K(n.value, (t, s) => (l(), p(g, { key: s }, [
83
+ M(s) ? (l(), c(R, {
85
84
  key: 0,
86
85
  id: w(t["active-tab-panel-idx"]),
87
86
  "labelled-by": x(s) ?? "",
@@ -89,18 +88,17 @@ const U = ["data-cy"], W = ["id"], te = /* @__PURE__ */ S({
89
88
  class: I(t["tab-panel-classes"])
90
89
  }, {
91
90
  default: O(() => [
92
- t.renderFn.children && t.renderFn.children.default ? (i(), o(Q(t.renderFn.children.default), { key: 0 })) : c("", !0)
91
+ t.renderFn.children && t.renderFn.children.default ? (l(), c(Q(t.renderFn.children.default), { key: 0 })) : o("", !0)
93
92
  ]),
94
93
  _: 2
95
- }, 1032, ["id", "labelled-by", "active", "class"])) : c("", !0)
94
+ }, 1032, ["id", "labelled-by", "active", "class"])) : o("", !0)
96
95
  ], 64))), 128)),
97
- e.tabsPosition === "bottom" ? (i(), o(P, {
96
+ e.tabsPosition === "bottom" ? (l(), c(P, {
98
97
  key: 1,
99
98
  uid: f(r),
100
99
  "tab-list-classes": e.tabListClasses,
101
- "data-cy": e.dataCy ? `${e.dataCy}-tab-list` : "",
102
- "active-border-position": "top"
103
- }, null, 8, ["uid", "tab-list-classes", "data-cy"])) : c("", !0)
100
+ "data-cy": e.dataCy ? `${e.dataCy}-tab-list` : ""
101
+ }, null, 8, ["uid", "tab-list-classes", "data-cy"])) : o("", !0)
104
102
  ], 10, U));
105
103
  }
106
104
  });
@@ -1,7 +1,7 @@
1
1
  import { defineComponent as J, reactive as Q, ref as k, useId as U, computed as f, onMounted as X, watch as Y, nextTick as M, createElementBlock as l, openBlock as u, normalizeClass as p, createElementVNode as v, createCommentVNode as y, renderSlot as E, Fragment as P, renderList as F, mergeProps as T, withModifiers as O } from "vue";
2
2
  import { Swiper as B } from "swiper";
3
- import x from "../../../../../node_modules/.pnpm/swiper@11.2.8/node_modules/swiper/modules/zoom.js";
4
- import '../../../../../assets/node_modules/.pnpm/swiper@11.2.8/node_modules/swiper/modules/zoom.css';import '../../../../../assets/node_modules/.pnpm/swiper@11.2.8/node_modules/swiper/swiper.css';/* empty css */
3
+ import x from "../../../../../node_modules/.pnpm/swiper@11.2.6/node_modules/swiper/modules/zoom.js";
4
+ import '../../../../../assets/node_modules/.pnpm/swiper@11.2.6/node_modules/swiper/modules/zoom.css';import '../../../../../assets/node_modules/.pnpm/swiper@11.2.6/node_modules/swiper/swiper.css';/* empty css */
5
5
  /* empty css */
6
6
  import "../../../../../node_modules/.pnpm/js-cookie@3.0.5/node_modules/js-cookie/dist/js.cookie.js";
7
7
  import { shallowCopyObjectTo as _ } from "../../../../../node_modules/.pnpm/@wikicasa-dev_utilities@1.1.21/node_modules/@wikicasa-dev/utilities/dist/utils/ObjectUtils.js";
@@ -184,7 +184,7 @@ const ee = ["id"], te = ["id", "data-cy"], se = ["data-idx", "alt", "width", "he
184
184
  },
185
185
  class: ["disable-select", [e.$attrs["slide-img-classes"] || t.classes]],
186
186
  "data-idx": `${d.value}-slide-img-${a}`
187
- }, { ref_for: !0 }, z(t, a), {
187
+ }, z(t, a), {
188
188
  alt: t.alt,
189
189
  itemprop: "image",
190
190
  width: t.width,
@@ -231,8 +231,9 @@ const ee = ["id"], te = ["id", "data-cy"], se = ["data-idx", "alt", "width", "he
231
231
  class: p(["swiper-slide", e.$attrs["thumb-img-wrapper-classes"]])
232
232
  }, [
233
233
  v("img", T({
234
- class: e.$attrs["thumb-img-classes"]
235
- }, { ref_for: !0 }, z(t, -1, !1), {
234
+ class: e.$attrs["thumb-img-classes"],
235
+ ref_for: !0
236
+ }, z(t, -1, !1), {
236
237
  alt: t.alt
237
238
  }), null, 16, ae)
238
239
  ], 2))), 128))
package/dist/utils.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const log: <T>(message: string, payload: T) => void;
1
+ export declare const getUID: (prefix?: string) => string;
package/dist/utils.js CHANGED
@@ -1,7 +1,5 @@
1
- const c = (o, l) => console.log("DEBUG:", {
2
- message: o,
3
- payload: l
4
- });
1
+ var t = 0;
2
+ const e = (r = "uikit_id_") => (t++, `${r}${t}`);
5
3
  export {
6
- c as log
4
+ e as getUID
7
5
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wikicasa-dev/components",
3
- "version": "2.1.4-alpha.8",
3
+ "version": "2.1.4",
4
4
  "description": "Wikicasa frontend components",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -41,46 +41,43 @@
41
41
  },
42
42
  "homepage": "https://bitbucket.org/wikicasa/wikicasa-fe#readme",
43
43
  "dependencies": {
44
- "@vuepic/vue-datepicker": "^11.0.2",
45
- "caniuse-lite": "^1.0.30001722",
44
+ "caniuse-lite": "^1.0.30001715",
46
45
  "chart.js": "^4.4.9",
47
46
  "chartjs-adapter-date-fns": "^3.0.0",
48
47
  "date-fns": "^4.1.0",
49
- "reka-ui": "^2.3.1",
50
- "swiper": "^11.2.8",
48
+ "swiper": "^11.2.6",
51
49
  "vue": "^3.5.13",
52
50
  "vue-chartjs": "^5.3.2",
53
51
  "vue-router": "^4.5.0"
54
52
  },
55
53
  "devDependencies": {
56
- "@babel/eslint-parser": "^7.27.5",
54
+ "@babel/eslint-parser": "^7.27.0",
57
55
  "@histoire/plugin-vue": "^1.0.0-alpha.2",
58
- "@types/node": "^24.0.1",
59
- "@vitejs/plugin-vue": "^5.2.4",
56
+ "@types/node": "^22.14.1",
57
+ "@vitejs/plugin-vue": "^5.2.3",
60
58
  "@vue/eslint-config-prettier": "^10.2.0",
61
59
  "@vue/eslint-config-typescript": "^14.5.0",
62
- "@wikicasa-dev/svg-icons": "1.2.12",
60
+ "@wikicasa-dev/svg-icons": "1.2.11",
63
61
  "@wikicasa-dev/tailwind-plugins": "^0.0.3",
64
- "@wikicasa-dev/types": "2.2.0",
62
+ "@wikicasa-dev/types": "2.1.2",
65
63
  "@wikicasa-dev/utilities": "1.1.21",
66
64
  "@wikicasa-dev/vue-composables": "0.0.23",
67
65
  "ajv": "^8.17.1",
68
66
  "autoprefixer": "^10.4.21",
69
- "eslint": "^9.28",
70
- "eslint-plugin-vue": "^10.2.0",
71
- "glob": "^11.0.2",
67
+ "eslint": "^9.25",
68
+ "eslint-plugin-vue": "^10.0.0",
69
+ "glob": "^11.0.1",
72
70
  "histoire": "^1.0.0-alpha.2",
73
- "postcss": "^8.5.5",
71
+ "postcss": "^8.5.3",
74
72
  "prettier": "^3.5.3",
75
- "prettier-plugin-tailwindcss": "^0.6.12",
76
- "rollup-plugin-visualizer": "^6.0.3",
73
+ "prettier-plugin-tailwindcss": "^0.6.11",
74
+ "rollup-plugin-visualizer": "^5.14.0",
77
75
  "tailwindcss": "^3.4.15",
78
76
  "typescript": "^5.8.3",
79
- "vite": "^6.3.5",
80
- "vite-plugin-dts": "^4.5.4",
77
+ "vite": "^6.3.2",
78
+ "vite-plugin-dts": "^4.5.3",
81
79
  "vite-plugin-lib-inject-css": "^2.2.2",
82
- "vite-plugin-vue-devtools": "^7.7.6",
83
- "vue-tsc": "^2.2.10"
80
+ "vue-tsc": "^2.2.8"
84
81
  },
85
82
  "readme": "ERROR: No README data found!",
86
83
  "scripts": {
@@ -1,4 +0,0 @@
1
- import f from "../../../packages/components/lib/UIKit/BaseBanner/Background/BaseBannerBgElement1.vue.js";
2
- export {
3
- f as default
4
- };
@@ -1,4 +0,0 @@
1
- import f from "../../../packages/components/lib/UIKit/BaseBanner/Background/BaseBannerBgElement2.vue.js";
2
- export {
3
- f as default
4
- };
@@ -1,4 +0,0 @@
1
- import f from "../../../packages/components/lib/UIKit/BaseBanner/Background/BaseBannerBgElement3.vue.js";
2
- export {
3
- f as default
4
- };
@@ -1,4 +0,0 @@
1
- import f from "../../../packages/components/lib/UIKit/BaseBanner/Background/BaseBannerBgElement4.vue.js";
2
- export {
3
- f as default
4
- };
@@ -1,4 +0,0 @@
1
- import f from "../packages/components/lib/UIKit/BaseBanner.vue.js";
2
- export {
3
- f as default
4
- };
@@ -1,4 +0,0 @@
1
- import f from "../packages/components/lib/UIKit/BaseChip.vue.js";
2
- export {
3
- f as default
4
- };
@@ -1,7 +0,0 @@
1
- import o from "../packages/components/lib/UIKit/BaseCollapse.vue.js";
2
- import '../assets/packages/components/lib/UIKit/BaseCollapse.css';/* empty css */
3
- import a from "../_virtual/_plugin-vue_export-helper.js";
4
- const r = /* @__PURE__ */ a(o, [["__scopeId", "data-v-ae1482e7"]]);
5
- export {
6
- r as default
7
- };
@@ -1,4 +0,0 @@
1
- import f from "../packages/components/lib/UIKit/BaseNotificationBadge.vue.js";
2
- export {
3
- f as default
4
- };
@@ -1,22 +0,0 @@
1
- type __VLS_Props = {
2
- type?: "default" | "large" | "rounded";
3
- pinClass?: "white" | "blue" | "cultured" | "dark-blue" | "red";
4
- outlined?: boolean;
5
- };
6
- declare function __VLS_template(): {
7
- attrs: Partial<{}>;
8
- slots: {
9
- default?(_: {}): any;
10
- };
11
- refs: {};
12
- rootEl: HTMLSpanElement;
13
- };
14
- type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
15
- declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLSpanElement>;
16
- declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
17
- export default _default;
18
- type __VLS_WithTemplateSlots<T, S> = T & {
19
- new (): {
20
- $slots: S;
21
- };
22
- };
@@ -1,5 +0,0 @@
1
- import o from "../packages/components/lib/UIKit/BasePin.vue.js";
2
- import '../assets/packages/components/lib/UIKit/BasePin.css';/* empty css */
3
- export {
4
- o as default
5
- };
@@ -1,26 +0,0 @@
1
- import { AccessibleSelectOptions, ClassTypeProp } from './types';
2
- import { Optional } from '@wikicasa-dev/types';
3
- declare const _default: <TPayload, TID extends string | number | undefined>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
4
- props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
5
- readonly onChange?: ((args_0: Event) => any) | undefined;
6
- readonly "onUpdate:modelValue"?: ((value: Optional<AccessibleSelectOptions<TPayload, TID>>) => any) | undefined;
7
- } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>, "onChange" | "onUpdate:modelValue"> & ({
8
- modelValue?: Optional<AccessibleSelectOptions<TPayload, TID>>;
9
- } & {
10
- labelText?: string;
11
- options?: AccessibleSelectOptions<TPayload, TID>[];
12
- border?: boolean;
13
- labelClasses?: ClassTypeProp;
14
- arrowSize?: number;
15
- }) & Partial<{}>> & import('vue').PublicProps;
16
- expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
17
- attrs: any;
18
- slots: {};
19
- emit: ((evt: "change", args_0: Event) => void) & ((evt: "update:modelValue", value: Optional<AccessibleSelectOptions<TPayload, TID>>) => void);
20
- }>) => import('vue').VNode & {
21
- __ctx?: Awaited<typeof __VLS_setup>;
22
- };
23
- export default _default;
24
- type __VLS_PrettifyLocal<T> = {
25
- [K in keyof T]: T[K];
26
- } & {};
@@ -1,5 +0,0 @@
1
- import o from "../packages/components/lib/UIKit/BaseSelect.vue.js";
2
- import '../assets/packages/components/lib/UIKit/BaseSelect.css';/* empty css */
3
- export {
4
- o as default
5
- };
@@ -1,5 +0,0 @@
1
- import o from "../packages/components/lib/UIKit/DatePicker.vue.js";
2
- import '../assets/packages/components/lib/UIKit/DatePicker.css';/* empty css */
3
- export {
4
- o as default
5
- };
@@ -1,4 +0,0 @@
1
- import f from "../packages/components/lib/UIKit/InputDropdown.vue.js";
2
- export {
3
- f as default
4
- };
@@ -1,17 +0,0 @@
1
- declare function __VLS_template(): {
2
- attrs: Partial<{}>;
3
- slots: {
4
- default?(_: {}): any;
5
- };
6
- refs: {};
7
- rootEl: any;
8
- };
9
- type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
10
- declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
11
- declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
12
- export default _default;
13
- type __VLS_WithTemplateSlots<T, S> = T & {
14
- new (): {
15
- $slots: S;
16
- };
17
- };
@@ -1,5 +0,0 @@
1
- import o from "../../packages/components/lib/UIKit/Navigation/NavigationBar.vue.js";
2
- import '../../assets/packages/components/lib/UIKit/Navigation/NavigationBar.css';/* empty css */
3
- export {
4
- o as default
5
- };
@@ -1,34 +0,0 @@
1
- import { Component } from 'vue';
2
- type __VLS_Props = {
3
- as?: Component | "a";
4
- activeBorderPosition?: "top" | "bottom";
5
- active?: boolean;
6
- href?: string;
7
- value?: string;
8
- };
9
- declare function __VLS_template(): {
10
- attrs: Partial<{}>;
11
- slots: {
12
- icon?(_: {}): any;
13
- label?(_: {}): any;
14
- };
15
- refs: {};
16
- rootEl: any;
17
- };
18
- type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
19
- declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
20
- select: (payload: CustomEvent<{
21
- originalEvent: Event;
22
- }>) => any;
23
- }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
24
- onSelect?: ((payload: CustomEvent<{
25
- originalEvent: Event;
26
- }>) => any) | undefined;
27
- }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
28
- declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
29
- export default _default;
30
- type __VLS_WithTemplateSlots<T, S> = T & {
31
- new (): {
32
- $slots: S;
33
- };
34
- };
@@ -1,4 +0,0 @@
1
- import f from "../../packages/components/lib/UIKit/Navigation/NavigationBarItem.vue.js";
2
- export {
3
- f as default
4
- };
@@ -1,4 +0,0 @@
1
- import f from "../../packages/components/lib/UIKit/SegmentedControl/SegmentedControl.vue.js";
2
- export {
3
- f as default
4
- };
@@ -1,4 +0,0 @@
1
- import f from "../../packages/components/lib/UIKit/SegmentedControl/SegmentedControlItem.vue.js";
2
- export {
3
- f as default
4
- };
@@ -1,27 +0,0 @@
1
- import { Component } from 'vue';
2
- type __VLS_Props = {
3
- component?: Component | string;
4
- activeBorderPosition?: "top" | "bottom";
5
- isActive?: boolean;
6
- };
7
- declare function __VLS_template(): {
8
- attrs: Partial<{}>;
9
- slots: {
10
- default?(_: {}): any;
11
- };
12
- refs: {};
13
- rootEl: any;
14
- };
15
- type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
16
- declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
17
- click: (args_0: MouseEvent) => any;
18
- }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
19
- onClick?: ((args_0: MouseEvent) => any) | undefined;
20
- }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
21
- declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
22
- export default _default;
23
- type __VLS_WithTemplateSlots<T, S> = T & {
24
- new (): {
25
- $slots: S;
26
- };
27
- };
@@ -1,4 +0,0 @@
1
- import f from "../../packages/components/lib/UIKit/Tab/BaseTabItem.vue.js";
2
- export {
3
- f as default
4
- };
@@ -1,6 +0,0 @@
1
- function e(t) {
2
- return t && t.__esModule && Object.prototype.hasOwnProperty.call(t, "default") ? t.default : t;
3
- }
4
- export {
5
- e as getDefaultExportFromCjs
6
- };
@@ -1,4 +0,0 @@
1
- var e = {};
2
- export {
3
- e as __exports
4
- };
@@ -1,4 +0,0 @@
1
- var e = {};
2
- export {
3
- e as __exports
4
- };
@@ -1,7 +0,0 @@
1
- import { getDefaultExportFromCjs as r } from "./_commonjsHelpers.js";
2
- import { __require as o } from "../node_modules/.pnpm/tailwindcss@3.4.15_ts-node@10.9.2_@types_node@24.0.1_typescript@5.8.3_/node_modules/tailwindcss/plugin.js";
3
- var t = o();
4
- const p = /* @__PURE__ */ r(t);
5
- export {
6
- p as default
7
- };