@wikicasa-dev/components 2.2.9-alpha.16 → 2.2.9-alpha.17
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.
- package/dist/Swiper/autoplay.js +1 -1
- package/dist/Swiper/controller.js +1 -1
- package/dist/Swiper/keyboard.js +1 -1
- package/dist/Swiper/thumbs.js +1 -1
- package/dist/UIKit/BaseDropDown.d.ts +1 -0
- package/dist/packages/components/lib/UIKit/BaseDropDown.vue.js +26 -25
- package/package.json +1 -1
- /package/dist/assets/{swiper-autoplay.css → swiper-controller.css} +0 -0
package/dist/Swiper/autoplay.js
CHANGED
package/dist/Swiper/keyboard.js
CHANGED
package/dist/Swiper/thumbs.js
CHANGED
|
@@ -51,6 +51,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
51
51
|
activeIdx: import('vue').Ref<number, number>;
|
|
52
52
|
selectedIdx: import('vue').Ref<number, number>;
|
|
53
53
|
getRootElement: () => HTMLDivElement | null;
|
|
54
|
+
getContentElement: () => HTMLElement | null;
|
|
54
55
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
55
56
|
click: () => any;
|
|
56
57
|
"update:toggleDropdown": (value: Optional<boolean>) => any;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defineComponent as N, mergeModels as D, useId as R, useModel as E, shallowRef as x, computed as V, useTemplateRef as I, onMounted as z, onUnmounted as q, watch as l, nextTick as U, createElementBlock as j, openBlock as
|
|
1
|
+
import { defineComponent as N, mergeModels as D, useId as R, useModel as E, shallowRef as x, computed as V, useTemplateRef as I, onMounted as z, onUnmounted as q, watch as l, nextTick as U, createElementBlock as j, openBlock as k, normalizeClass as i, renderSlot as K, createBlock as B, createVNode as F, unref as r, withCtx as L, createElementVNode as G, createCommentVNode as J, resolveDynamicComponent as P } from "vue";
|
|
2
2
|
import Q from "./BaseButton.vue.js";
|
|
3
3
|
import { ArrowIcon as X } from "@wikicasa-dev/svg-icons";
|
|
4
4
|
import { useKeyboardController as Y } from "@wikicasa-dev/vue-composables";
|
|
@@ -29,12 +29,12 @@ const Z = ["innerHTML"], le = /* @__PURE__ */ N({
|
|
|
29
29
|
}),
|
|
30
30
|
emits: /* @__PURE__ */ D(["click", "update:dropdownState"], ["update:toggleDropdown", "update:resetKeyboardController"]),
|
|
31
31
|
setup(o, { expose: S, emit: A }) {
|
|
32
|
-
const n = o,
|
|
32
|
+
const n = o, v = R(), w = A, m = E(o, "toggleDropdown"), p = E(
|
|
33
33
|
o,
|
|
34
34
|
"resetKeyboardController"
|
|
35
35
|
);
|
|
36
|
-
let
|
|
37
|
-
const t = x(!1), u = x([]), M = V(() => u.value.length), s = I("container"),
|
|
36
|
+
let y = !1;
|
|
37
|
+
const t = x(!1), u = x([]), M = V(() => u.value.length), s = I("container"), c = I("dropdown"), { activeIdx: d, selectedIdx: a, onKeyDownHandler: O } = Y({
|
|
38
38
|
optionsLength: M,
|
|
39
39
|
isDropdownOpen: t,
|
|
40
40
|
global: !1
|
|
@@ -42,26 +42,26 @@ const Z = ["innerHTML"], le = /* @__PURE__ */ N({
|
|
|
42
42
|
t.value = !1;
|
|
43
43
|
}, b = ({ target: e }) => {
|
|
44
44
|
s.value?.contains(e) || W();
|
|
45
|
-
},
|
|
45
|
+
}, C = (e) => {
|
|
46
46
|
t.value && s.value?.contains(document.activeElement) && e.key === "Tab" && (t.value = !1);
|
|
47
47
|
}, $ = (e) => {
|
|
48
48
|
n.activateKeyboardController && O(e);
|
|
49
|
-
},
|
|
49
|
+
}, f = () => {
|
|
50
50
|
n.keepState === "closed" && !t.value || n.keepState === "opened" && t.value || (t.value = !t.value);
|
|
51
51
|
}, T = (e) => {
|
|
52
52
|
e != null && (d.value = e);
|
|
53
53
|
}, H = (e) => {
|
|
54
54
|
e != null && (a.value = e);
|
|
55
|
-
},
|
|
56
|
-
|
|
55
|
+
}, h = () => {
|
|
56
|
+
c.value && (u.value = Array.from(c.value.children));
|
|
57
57
|
};
|
|
58
58
|
return z(() => {
|
|
59
|
-
|
|
59
|
+
h();
|
|
60
60
|
}), q(() => {
|
|
61
|
-
n.closeWhenClickedOutside && (document.removeEventListener("click", b), document.removeEventListener("keydown",
|
|
62
|
-
}), l(
|
|
61
|
+
n.closeWhenClickedOutside && (document.removeEventListener("click", b), document.removeEventListener("keydown", C));
|
|
62
|
+
}), l(p, (e) => {
|
|
63
63
|
e && (d.value = -1, a.value = -1, U(() => {
|
|
64
|
-
|
|
64
|
+
h(), p.value = !1;
|
|
65
65
|
}));
|
|
66
66
|
}), l(
|
|
67
67
|
() => n.openDropdown,
|
|
@@ -72,28 +72,29 @@ const Z = ["innerHTML"], le = /* @__PURE__ */ N({
|
|
|
72
72
|
immediate: !0
|
|
73
73
|
}
|
|
74
74
|
), l(t, (e) => {
|
|
75
|
-
|
|
75
|
+
w("update:dropdownState", e);
|
|
76
76
|
}), l(t, (e) => {
|
|
77
|
-
!e ||
|
|
78
|
-
}), l(
|
|
79
|
-
e && (t.value = !t.value,
|
|
77
|
+
!e || y || !n.closeWhenClickedOutside || (document.addEventListener("click", b), document.addEventListener("keydown", C), y = !0);
|
|
78
|
+
}), l(m, (e) => {
|
|
79
|
+
e && (t.value = !t.value, m.value = !1);
|
|
80
80
|
}), l(a, (e) => {
|
|
81
81
|
e !== -1 && u.value[e].querySelector("a")?.click();
|
|
82
82
|
}), S({
|
|
83
83
|
activeIdx: d,
|
|
84
84
|
selectedIdx: a,
|
|
85
|
-
getRootElement: () => s.value
|
|
86
|
-
|
|
85
|
+
getRootElement: () => s.value,
|
|
86
|
+
getContentElement: () => c.value
|
|
87
|
+
}), (e, g) => (k(), j("div", {
|
|
87
88
|
ref: "container",
|
|
88
89
|
class: i(["uikit-relative uikit-block", e.$attrs.class]),
|
|
89
90
|
onKeydown: $
|
|
90
91
|
}, [
|
|
91
92
|
K(e.$slots, "btn_slot", {
|
|
92
|
-
toggleDropdown:
|
|
93
|
+
toggleDropdown: f,
|
|
93
94
|
isOpen: t.value
|
|
94
95
|
}, () => [
|
|
95
96
|
F(Q, {
|
|
96
|
-
id: r(
|
|
97
|
+
id: r(v),
|
|
97
98
|
type: "button",
|
|
98
99
|
"data-cy": o.dataCy,
|
|
99
100
|
class: i([
|
|
@@ -103,7 +104,7 @@ const Z = ["innerHTML"], le = /* @__PURE__ */ N({
|
|
|
103
104
|
"aria-expanded": t.value,
|
|
104
105
|
"btn-class": "uikit-btn-single-selection",
|
|
105
106
|
onClick: g[0] || (g[0] = (_) => {
|
|
106
|
-
|
|
107
|
+
w("click"), f();
|
|
107
108
|
})
|
|
108
109
|
}, {
|
|
109
110
|
default: L(() => [
|
|
@@ -111,7 +112,7 @@ const Z = ["innerHTML"], le = /* @__PURE__ */ N({
|
|
|
111
112
|
class: i(["uikit-mr-5px", o.labelClasses]),
|
|
112
113
|
innerHTML: o.btnLabel
|
|
113
114
|
}, null, 10, Z),
|
|
114
|
-
o.withArrowIcon ? (
|
|
115
|
+
o.withArrowIcon ? (k(), B(r(X), {
|
|
115
116
|
key: 0,
|
|
116
117
|
class: i(["uikit-shrink-0 uikit-transition-transform motion-reduce:uikit-transition-none", t.value ? "uikit-rotate-180" : ""]),
|
|
117
118
|
width: o.arrowWidth,
|
|
@@ -122,8 +123,8 @@ const Z = ["innerHTML"], le = /* @__PURE__ */ N({
|
|
|
122
123
|
_: 1
|
|
123
124
|
}, 8, ["id", "data-cy", "class", "aria-expanded"])
|
|
124
125
|
]),
|
|
125
|
-
(
|
|
126
|
-
id: "dropdown_" + r(
|
|
126
|
+
(k(), B(P(o.dropdownElement), {
|
|
127
|
+
id: "dropdown_" + r(v),
|
|
127
128
|
ref: "dropdown",
|
|
128
129
|
"data-cy": o.dataCy && `${o.dataCy}_dropdown`,
|
|
129
130
|
class: i(["uikit-dropdown-content uikit-w-full uikit-flex-col uikit-overflow-y-auto uikit-border uikit-border-solid uikit-bg-white uikit-pl-0 uikit-opacity-100 uikit-shadow uikit-no-scrollbar", [
|
|
@@ -138,7 +139,7 @@ const Z = ["innerHTML"], le = /* @__PURE__ */ N({
|
|
|
138
139
|
default: L(() => [
|
|
139
140
|
K(e.$slots, "default", {
|
|
140
141
|
isOpen: t.value,
|
|
141
|
-
toggleDropdown:
|
|
142
|
+
toggleDropdown: f,
|
|
142
143
|
activeIdx: r(d),
|
|
143
144
|
selectedIdx: r(a),
|
|
144
145
|
setActiveIdx: T,
|
package/package.json
CHANGED
|
File without changes
|