@wikicasa-dev/components 1.3.2 → 1.3.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.
@@ -1,4 +1,4 @@
1
- import { _ as f } from "./chunks/BaseAutocomplete.vue_vue_type_script_setup_true_lang.KqJ6OB8f.js";
1
+ import { _ as f } from "./chunks/BaseAutocomplete.vue_vue_type_script_setup_true_lang.CnyHYNUi.js";
2
2
  export {
3
3
  f as default
4
4
  };
@@ -1,4 +1,4 @@
1
- import { _ as f } from "./chunks/BaseDropDown.vue_vue_type_script_setup_true_lang.C4VH7V0e.js";
1
+ import { _ as f } from "./chunks/BaseDropDown.vue_vue_type_script_setup_true_lang.BTIpnAy4.js";
2
2
  export {
3
3
  f as default
4
4
  };
@@ -1,7 +1,7 @@
1
1
  import './assets/CheckboxBtn.css';
2
- import { defineComponent as f, openBlock as o, createElementBlock as r, normalizeClass as a, withModifiers as d, createElementVNode as n, renderSlot as b, toDisplayString as m, createCommentVNode as h } from "vue";
2
+ import { defineComponent as f, openBlock as o, createElementBlock as s, normalizeClass as l, withModifiers as r, createElementVNode as d, renderSlot as b, toDisplayString as m, createCommentVNode as h } from "vue";
3
3
  import { _ as g } from "./chunks/_plugin-vue_export-helper.CHgC5LLL.js";
4
- const C = ["id"], V = ["id", "data-cy", "checked", "disabled"], y = ["for"], v = /* @__PURE__ */ f({
4
+ const C = ["id"], y = ["id", "data-cy", "checked", "disabled"], V = ["for"], v = /* @__PURE__ */ f({
5
5
  __name: "CheckboxBtn",
6
6
  props: {
7
7
  id: {},
@@ -16,35 +16,31 @@ const C = ["id"], V = ["id", "data-cy", "checked", "disabled"], y = ["for"], v =
16
16
  handleLabelClick: { type: Boolean, default: !0 }
17
17
  },
18
18
  emits: ["click", "change", "update:modelValue"],
19
- setup(s, { emit: u }) {
20
- const i = s, t = u, k = () => {
19
+ setup(u, { emit: k }) {
20
+ const i = u, t = k, n = () => {
21
21
  t("change", {
22
22
  id: i.id,
23
23
  label: i.label,
24
24
  checked: !i.modelValue
25
25
  }), t("update:modelValue", !i.modelValue);
26
- }, c = () => {
27
- t("click"), i.handleLabelClick && (t("change", {
28
- id: i.id,
29
- label: i.label,
30
- checked: !i.modelValue
31
- }), t("update:modelValue", !i.modelValue));
26
+ }, p = () => {
27
+ n(), i.handleLabelClick && t("click");
32
28
  };
33
- return (e, l) => (o(), r("div", {
29
+ return (e, a) => (o(), s("div", {
34
30
  id: e.containerId,
35
- class: a(["uikit-group uikit-relative uikit-block uikit-pl-25px hover:uikit-cursor-pointer", [
31
+ class: l(["uikit-group uikit-relative uikit-block uikit-pl-25px hover:uikit-cursor-pointer", [
36
32
  { "uikit-mr-4 uikit-inline-flex uikit-items-center": e.inline },
37
33
  { "uikit-py-10px": !e.inline && !e.$attrs["wrapper-margin-y"] },
38
34
  e.$attrs["wrapper-margin-y"],
39
35
  e.containerClass
40
36
  ]]),
41
- onClick: d(c, ["stop", "prevent"])
37
+ onClick: r(p, ["stop", "prevent"])
42
38
  }, [
43
- n("input", {
39
+ d("input", {
44
40
  id: `${e.id}`,
45
41
  ref: "checkbox",
46
42
  "data-cy": e.$attrs["data-cy"],
47
- class: a(["uikit-absolute uikit-left-0 uikit-h-4 uikit-w-4 uikit-appearance-none uikit-rounded-3xs uikit-border uikit-border-solid uikit-border-w-secondary uikit-bg-white checked:uikit-bg-center checked:uikit-bg-no-repeat group-hover:uikit-cursor-pointer", [
43
+ class: l(["uikit-absolute uikit-left-0 uikit-h-4 uikit-w-4 uikit-appearance-none uikit-rounded-3xs uikit-border uikit-border-solid uikit-border-w-secondary uikit-bg-white checked:uikit-bg-center checked:uikit-bg-no-repeat group-hover:uikit-cursor-pointer", [
48
44
  { "!uikit-border-w-danger": e.isValid === !1 },
49
45
  e.inputClass,
50
46
  e.isValid === !1 ? "checked-bg-invalid" : "checked-bg"
@@ -52,24 +48,24 @@ const C = ["id"], V = ["id", "data-cy", "checked", "disabled"], y = ["for"], v =
52
48
  type: "checkbox",
53
49
  checked: e.$attrs.checked || e.modelValue,
54
50
  disabled: e.$attrs.disabled,
55
- onChange: l[0] || (l[0] = d((p) => k(), ["stop", "prevent"])),
56
- onClick: l[1] || (l[1] = d((p) => t("click"), ["stop"]))
57
- }, null, 42, V),
51
+ onChange: a[0] || (a[0] = r((c) => n(), ["stop", "prevent"])),
52
+ onClick: a[1] || (a[1] = r((c) => t("click"), ["stop"]))
53
+ }, null, 42, y),
58
54
  b(e.$slots, "label", {}, () => [
59
- n("label", {
60
- class: a(["uikit-pl-10px uikit-text-sm group-hover:uikit-cursor-pointer", [e.labelClass, { "uikit-text-w-danger": e.isValid === !1 }]]),
55
+ d("label", {
56
+ class: l(["uikit-pl-10px uikit-text-sm group-hover:uikit-cursor-pointer", [e.labelClass, { "uikit-text-w-danger": e.isValid === !1 }]]),
61
57
  for: `${e.id}`
62
- }, m(e.label), 11, y),
63
- e.$attrs.required ? (o(), r("span", {
58
+ }, m(e.label), 11, V),
59
+ e.$attrs.required ? (o(), s("span", {
64
60
  key: 0,
65
- class: a(["required after:uikit-content-['*']", [
61
+ class: l(["required after:uikit-content-['*']", [
66
62
  e.isValid !== !1 ? "after:uikit-text-w-primary" : "after:uikit-text-w-danger"
67
63
  ]])
68
64
  }, null, 2)) : h("", !0)
69
65
  ], !0)
70
66
  ], 10, C));
71
67
  }
72
- }), B = /* @__PURE__ */ g(v, [["__scopeId", "data-v-d7455d95"]]);
68
+ }), B = /* @__PURE__ */ g(v, [["__scopeId", "data-v-13281133"]]);
73
69
  export {
74
70
  B as default
75
71
  };
@@ -1,4 +1,4 @@
1
- import { _ as f } from "./chunks/SelectItem.vue_vue_type_script_setup_true_lang.BOLdDTLM.js";
1
+ import { _ as f } from "./chunks/SelectItem.vue_vue_type_script_setup_true_lang.Colhxc7n.js";
2
2
  export {
3
3
  f as default
4
4
  };
@@ -18,6 +18,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
18
18
  type: import("vue").PropType<boolean>;
19
19
  default: boolean;
20
20
  };
21
+ dropdownClasses: {
22
+ type: import("vue").PropType<string>;
23
+ default: string;
24
+ };
21
25
  keepState: {
22
26
  type: import("vue").PropType<Nullable<"closed" | "open">>;
23
27
  default: null;
@@ -63,6 +67,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
63
67
  type: import("vue").PropType<boolean>;
64
68
  default: boolean;
65
69
  };
70
+ dropdownClasses: {
71
+ type: import("vue").PropType<string>;
72
+ default: string;
73
+ };
66
74
  keepState: {
67
75
  type: import("vue").PropType<Nullable<"closed" | "open">>;
68
76
  default: null;
@@ -93,6 +101,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
93
101
  isValid: Nullable<boolean>;
94
102
  theme: BaseAutocompleteThemes;
95
103
  border: boolean;
104
+ dropdownClasses: string;
96
105
  keepState: Nullable<"closed" | "open">;
97
106
  disableCb: boolean;
98
107
  onOptionSelectedCb: Nullable<(v: AccessibleSelectOptions) => void>;
@@ -1 +1 @@
1
- .checked-bg[data-v-d7455d95]:checked{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cg transform='translate(-307 -2432)'%3E%3Crect width='16' height='16' fill='%232b5dff' data-name='Rettangolo 2689' rx='3' transform='translate(307 2432)'/%3E%3Cpath fill='none' stroke='%23f4f7ff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m319.499 2437.499-6 6Zm-9 3 3 3Z' data-name='Unione 5'/%3E%3C/g%3E%3C/svg%3E")}.checked-bg-invalid[data-v-d7455d95]:checked{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cg transform='translate(-307 -2432)'%3E%3Crect width='16' height='16' fill='%23FA4F64' data-name='Rettangolo 2689' rx='3' transform='translate(307 2432)'/%3E%3Cpath fill='none' stroke='%23f4f7ff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m319.499 2437.499-6 6Zm-9 3 3 3Z' data-name='Unione 5'/%3E%3C/g%3E%3C/svg%3E")}
1
+ .checked-bg[data-v-13281133]:checked{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cg transform='translate(-307 -2432)'%3E%3Crect width='16' height='16' fill='%232b5dff' data-name='Rettangolo 2689' rx='3' transform='translate(307 2432)'/%3E%3Cpath fill='none' stroke='%23f4f7ff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m319.499 2437.499-6 6Zm-9 3 3 3Z' data-name='Unione 5'/%3E%3C/g%3E%3C/svg%3E")}.checked-bg-invalid[data-v-13281133]:checked{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cg transform='translate(-307 -2432)'%3E%3Crect width='16' height='16' fill='%23FA4F64' data-name='Rettangolo 2689' rx='3' transform='translate(307 2432)'/%3E%3Cpath fill='none' stroke='%23f4f7ff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m319.499 2437.499-6 6Zm-9 3 3 3Z' data-name='Unione 5'/%3E%3C/g%3E%3C/svg%3E")}
@@ -1,15 +1,15 @@
1
- import { defineComponent as H, mergeModels as S, useModel as z, ref as s, computed as k, onBeforeMount as E, watch as C, openBlock as g, createBlock as V, normalizeClass as J, withCtx as c, createVNode as K, renderSlot as B, createElementBlock as U, Fragment as A, renderList as F, unref as P, createElementVNode as W } from "vue";
1
+ import { defineComponent as H, mergeModels as S, useModel as z, ref as s, computed as f, onBeforeMount as E, watch as C, openBlock as g, createBlock as V, normalizeClass as J, withCtx as c, createVNode as K, renderSlot as O, createElementBlock as U, Fragment as A, renderList as F, unref as P, createElementVNode as W } from "vue";
2
2
  import j from "../BaseInput.js";
3
- import { _ as q } from "./BaseDropDown.vue_vue_type_script_setup_true_lang.C4VH7V0e.js";
3
+ import { _ as q } from "./BaseDropDown.vue_vue_type_script_setup_true_lang.BTIpnAy4.js";
4
4
  import "./js.cookie.BQua9eWh.js";
5
- import { _ as G } from "./SelectItem.vue_vue_type_script_setup_true_lang.BOLdDTLM.js";
5
+ import { _ as G } from "./SelectItem.vue_vue_type_script_setup_true_lang.Colhxc7n.js";
6
6
  import { useKeyboardController as Q } from "../useKeyboardController.js";
7
- function R(u, f) {
8
- return (...v) => new Promise((t, n) => {
7
+ function R(u, k) {
8
+ return (...v) => new Promise((l, n) => {
9
9
  u.id && clearTimeout(u.id), u.id = setTimeout(() => {
10
10
  try {
11
- const i = f(...v);
12
- t(i);
11
+ const i = k(...v);
12
+ l(i);
13
13
  } catch (i) {
14
14
  n(i);
15
15
  }
@@ -27,7 +27,8 @@ const X = ["innerHTML"], oe = /* @__PURE__ */ H({
27
27
  onInputChangeCb: {},
28
28
  onOptionSelectedCb: { default: null },
29
29
  keepState: { default: null },
30
- cleanupOnClose: { type: Boolean, default: !0 }
30
+ cleanupOnClose: { type: Boolean, default: !0 },
31
+ dropdownClasses: { default: "" }
31
32
  }, {
32
33
  modelValue: {
33
34
  default() {
@@ -37,40 +38,40 @@ const X = ["innerHTML"], oe = /* @__PURE__ */ H({
37
38
  modelModifiers: {}
38
39
  }),
39
40
  emits: /* @__PURE__ */ S(["dropdownClosed", "changedValue", "click", "keydown"], ["update:modelValue"]),
40
- setup(u, { expose: f, emit: v }) {
41
- const t = u, n = z(u, "modelValue"), i = v, d = s(""), a = s([]), m = s(null), p = s(!1), l = s(!1), y = s(null), O = k(() => a.value.length);
41
+ setup(u, { expose: k, emit: v }) {
42
+ const l = u, n = z(u, "modelValue"), i = v, d = s(""), o = s([]), m = s(null), p = s(!1), t = s(!1), y = s(null), B = f(() => o.value.length);
42
43
  E(() => {
43
- d.value = n.value?.label || "", m.value = R({ delay: 300 }, t.onInputChangeCb);
44
+ d.value = n.value?.label || "", m.value = R({ delay: 300 }, l.onInputChangeCb);
44
45
  });
45
46
  const { activeIdx: h, selectedIdx: w } = Q({
46
- optionsLength: O,
47
- isDropdownOpen: l,
47
+ optionsLength: B,
48
+ isDropdownOpen: t,
48
49
  disableSpaceHandler: !0
49
- }), M = k(() => {
50
- switch (t.theme) {
50
+ }), M = f(() => {
51
+ switch (l.theme) {
51
52
  case "bordered":
52
53
  return "";
53
54
  case "all-bordered":
54
- return "uikit-rounded " + (l.value && "uikit-rounded-b-none");
55
+ return "uikit-rounded " + (t.value && "uikit-rounded-b-none");
55
56
  case "all-bordered-thick":
56
- return "uikit-rounded-xl !uikit-h-[60px] " + (l.value && "uikit-rounded-b-none");
57
+ return "uikit-rounded-xl !uikit-h-[60px] " + (t.value && "uikit-rounded-b-none");
57
58
  default:
58
59
  return "";
59
60
  }
60
- }), I = k(() => {
61
- switch (t.theme) {
61
+ }), I = f(() => {
62
+ switch (l.theme) {
62
63
  case "bordered":
63
64
  return "";
64
65
  case "all-bordered":
65
- return "uikit-border uikit-border-w-lavender uikit-border-solid uikit-rounded " + (l.value ? "uikit-border-b-0 uikit-rounded-b-none" : "");
66
+ return "uikit-border uikit-border-w-lavender uikit-border-solid uikit-rounded " + (t.value ? "uikit-border-b-0 uikit-rounded-b-none" : "");
66
67
  case "all-bordered-thick":
67
- return "uikit-rounded-xl !uikit-h-[60px]" + (l.value && "uikit-rounded-b-none");
68
+ return "uikit-rounded-xl !uikit-h-[60px]" + (t.value && "uikit-rounded-b-none");
68
69
  default:
69
70
  return "";
70
71
  }
71
- }), T = k(() => {
72
+ }), T = f(() => {
72
73
  const e = "uikit-rounded-b-xl uikit-shadow uikit-rounded-t-none uikit-mb-0 !uikit-mt-0 uikit-text-w-black !uikit-rounded-b-xl !uikit-rounded-t-none";
73
- switch (t.theme) {
74
+ switch (l.theme) {
74
75
  case "bordered":
75
76
  return "before:uikit-content-[''] before:uikit-absolute before:uikit-w-1/2 before:uikit-border-b before:uikit-border-b-w-lavender before:[border-bottom-style:solid] before:uikit-right-1/4 uikit-rounded-b-xl uikit-shadow uikit-rounded-t-none uikit-mt-5px uikit-mb-0";
76
77
  case "all-bordered":
@@ -81,35 +82,35 @@ const X = ["innerHTML"], oe = /* @__PURE__ */ H({
81
82
  return "";
82
83
  }
83
84
  }), L = async (e) => {
84
- if (d.value !== e && (i("changedValue", e), d.value = e, !!t.onInputChangeCb)) {
85
- if (n.value && !e && (n.value.label = "", l.value = !1), !e || p.value) {
86
- a.value = [], p.value = !1, w.value = -1, h.value = -1, await m.value(null);
85
+ if (d.value !== e && (i("changedValue", e), d.value = e, !!l.onInputChangeCb)) {
86
+ if (n.value && !e && (n.value.label = "", t.value = !1), !e || p.value) {
87
+ o.value = [], p.value = !1, w.value = -1, h.value = -1, await m.value(null);
87
88
  return;
88
89
  }
89
- t.disableCb || (a.value = await m.value(e), console.log({ options: JSON.parse(JSON.stringify(a.value)) }), a.value.length && (l.value = !0));
90
+ l.disableCb || (o.value = await m.value(e), console.log({ options: JSON.parse(JSON.stringify(o.value)) }), o.value.length && (t.value = !0));
90
91
  }
91
- }, $ = (e, o) => {
92
- t.onOptionSelectedCb && t.onOptionSelectedCb(e), p.value = !0, d.value = e.label, n.value = e, l.value = !1, w.value = o;
92
+ }, $ = (e, a) => {
93
+ l.onOptionSelectedCb && l.onOptionSelectedCb(e), l.cleanupOnClose && (o.value = []), p.value = !0, d.value = e.label, n.value = e, t.value = !1, w.value = a;
93
94
  }, N = () => {
94
- a.value.length && t.keepState !== "closed" && (l.value = !0);
95
+ o.value.length && l.keepState !== "closed" && (t.value = !0);
95
96
  };
96
- return C(n, (e, o) => {
97
- e !== o && (d.value = e?.label || "");
97
+ return C(n, (e, a) => {
98
+ e !== a && (d.value = e?.label || "");
98
99
  }), C(w, (e) => {
99
- if (e === -1)
100
+ if (e === -1 || !o.value.length)
100
101
  return;
101
- const o = a.value[e];
102
- p.value && o.label === n.value?.label || $(o, e);
102
+ const a = o.value[e];
103
+ p.value && a.label === n.value?.label || $(a, e);
103
104
  }), C(
104
- () => t.keepState,
105
+ () => l.keepState,
105
106
  (e) => {
106
- e === "closed" ? l.value = !1 : e === "open" && a.value.length && (l.value = !0), t.cleanupOnClose && (a.value = []), i("dropdownClosed", l.value);
107
+ e === "closed" ? (t.value = !1, l.cleanupOnClose && (o.value = [])) : e === "open" && o.value.length && (t.value = !0), i("dropdownClosed", t.value);
107
108
  }
108
- ), f({
109
+ ), k({
109
110
  select: () => {
110
111
  y.value?.select();
111
112
  }
112
- }), (e, o) => (g(), V(q, {
113
+ }), (e, a) => (g(), V(q, {
113
114
  class: J(e.$attrs["root-classes"]),
114
115
  "data-cy": `ac_${e.$attrs.id}`,
115
116
  "dropdown-element": "ul",
@@ -122,12 +123,12 @@ const X = ["innerHTML"], oe = /* @__PURE__ */ H({
122
123
  },
123
124
  T.value,
124
125
  "!uikit-max-h-[210px] uikit-z-10",
125
- e.$attrs["dropdown-classes"]
126
+ e.dropdownClasses
126
127
  ],
127
- "open-dropdown": l.value,
128
- "keep-state": !a.value.length || t.keepState === "closed" ? "closed" : "opened",
129
- "onUpdate:dropdownState": o[1] || (o[1] = (r) => l.value = r),
130
- onClick: o[2] || (o[2] = (r) => {
128
+ "open-dropdown": t.value,
129
+ "keep-state": !o.value.length || l.keepState === "closed" ? "closed" : "opened",
130
+ "onUpdate:dropdownState": a[1] || (a[1] = (r) => t.value = r),
131
+ onClick: a[2] || (a[2] = (r) => {
131
132
  i("click"), N();
132
133
  })
133
134
  }, {
@@ -150,19 +151,19 @@ const X = ["innerHTML"], oe = /* @__PURE__ */ H({
150
151
  "fieldset-classes": [I.value, e.$attrs["fieldset-classes"]],
151
152
  "keep-floating-label": !!d.value,
152
153
  "onUpdate:modelValue": L,
153
- onKeydown: o[0] || (o[0] = (r) => i("keydown", r))
154
+ onKeydown: a[0] || (a[0] = (r) => i("keydown", r))
154
155
  }, {
155
156
  leftIcon: c(() => [
156
- B(e.$slots, "lefticon")
157
+ O(e.$slots, "lefticon")
157
158
  ]),
158
159
  righticon: c(({ handleClean: r }) => [
159
- B(e.$slots, "righticon", { handleClean: r })
160
+ O(e.$slots, "righticon", { handleClean: r })
160
161
  ]),
161
162
  _: 3
162
163
  }, 8, ["id", "data-cy", "label-text", "model-value", "is-valid", "disabled", "placeholder", "with-left-icon", "with-right-icon", "border", "radius", "input-class", "fieldset-classes", "keep-floating-label"])
163
164
  ]),
164
165
  default: c(() => [
165
- (g(!0), U(A, null, F(a.value, (r, b) => (g(), V(G, {
166
+ (g(!0), U(A, null, F(o.value, (r, b) => (g(), V(G, {
166
167
  key: b,
167
168
  active: P(h) === b,
168
169
  class: "uikit-m-1 uikit-rounded-[5px] uikit-px-5 uikit-py-10px hover:uikit-cursor-pointer",
@@ -88,7 +88,7 @@ const S = ["innerHTML"], M = /* @__PURE__ */ w({
88
88
  id: "dropdown_" + e.id,
89
89
  ref: "dropdown",
90
90
  "data-cy": e.$attrs["data-cy"] && `${e.$attrs["data-cy"]}_dropdown`,
91
- class: i(["uikit-max-h-[220px] uikit-w-full uikit-min-w-[90px] uikit-flex-col uikit-overflow-y-auto uikit-border uikit-border-solid uikit-border-w-lavender uikit-bg-white uikit-opacity-100 uikit-shadow uikit-no-scrollbar", [
91
+ class: i(["uikit-max-h-[220px] uikit-w-full uikit-min-w-[90px] uikit-flex-col uikit-overflow-y-auto uikit-border uikit-border-solid uikit-border-w-lavender uikit-bg-white uikit-pl-0 uikit-opacity-100 uikit-shadow uikit-no-scrollbar", [
92
92
  e.dropdownClasses,
93
93
  t.value ? "uikit-flex" : "uikit-hidden",
94
94
  { "uikit-bottom-[55px] uikit-rounded-xs": e.direction === "up" },
@@ -20,7 +20,7 @@ const b = ["tabindex"], x = ["innerHTML"], I = /* @__PURE__ */ r({
20
20
  ), (e, i) => (c(), f("li", {
21
21
  ref_key: "liItem",
22
22
  ref: l,
23
- class: k(["uikit-text-w-black", [
23
+ class: k(["uikit-list-none uikit-text-w-black", [
24
24
  { "active uikit-bg-w-cultured": e.active },
25
25
  "uikit-outline-none",
26
26
  e.$attrs.class
package/dist/index.js CHANGED
@@ -3,19 +3,19 @@ import { _ as a } from "./chunks/BaseAccordion.vue_vue_type_script_setup_true_la
3
3
  import { _ as t } from "./chunks/BaseAccordionBtn.vue_vue_type_script_setup_true_lang.CrVwjQqr.js";
4
4
  import { _ as f } from "./chunks/BaseAccordionContent.vue_vue_type_script_setup_true_lang.N7oILwdv.js";
5
5
  import { _ as m } from "./chunks/BaseAccordionItem.vue_vue_type_script_setup_true_lang.ofUooWrJ.js";
6
- import { _ as l } from "./chunks/SelectItem.vue_vue_type_script_setup_true_lang.BOLdDTLM.js";
6
+ import { _ as l } from "./chunks/SelectItem.vue_vue_type_script_setup_true_lang.Colhxc7n.js";
7
7
  import { default as B } from "./CheckboxBtn.js";
8
8
  import { _ as n } from "./chunks/CheckboxGroup.vue_vue_type_script_setup_true_lang.DDtN9_Bg.js";
9
9
  import { _ as c } from "./chunks/RadioButton.vue_vue_type_script_setup_true_lang.DR6a7QAi.js";
10
10
  import { _ as b } from "./chunks/RadioGroup.vue_vue_type_script_setup_true_lang.C-jm5z4e.js";
11
11
  import { _ as A } from "./chunks/AccessibleSelect.vue_vue_type_script_setup_true_lang.lyHlWiC5.js";
12
12
  import { _ as C } from "./chunks/BaseAlert.vue_vue_type_script_setup_true_lang.HqYdk4yE.js";
13
- import { _ as T } from "./chunks/BaseAutocomplete.vue_vue_type_script_setup_true_lang.KqJ6OB8f.js";
13
+ import { _ as T } from "./chunks/BaseAutocomplete.vue_vue_type_script_setup_true_lang.CnyHYNUi.js";
14
14
  import { _ as w } from "./chunks/BaseBadge.vue_vue_type_style_index_0_lang.BOA1gBKu.js";
15
15
  import { _ as k } from "./chunks/BaseButton.vue_vue_type_script_setup_true_lang.BrJbAMJ8.js";
16
16
  import { _ as F } from "./chunks/BaseCard.vue_vue_type_style_index_0_lang.w5aEohzG.js";
17
17
  import { default as O } from "./BaseComplexToggle.js";
18
- import { _ as R } from "./chunks/BaseDropDown.vue_vue_type_script_setup_true_lang.C4VH7V0e.js";
18
+ import { _ as R } from "./chunks/BaseDropDown.vue_vue_type_script_setup_true_lang.BTIpnAy4.js";
19
19
  import { default as M } from "./BaseFloatingLabel.js";
20
20
  import { default as U } from "./BaseIcon.js";
21
21
  import { default as j } from "./BaseInput.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wikicasa-dev/components",
3
- "version": "1.3.2",
3
+ "version": "1.3.4",
4
4
  "description": "Wikicasa frontend components",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",