@validol4ik/uikit 0.5.0 → 0.5.1
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/{AppButtonCopy-jS9yhR64.cjs → AppButtonCopy-4GxKBcWx.cjs} +1 -1
- package/dist/{AppButtonCopy-DputojEy.js → AppButtonCopy-CcsAzDik.js} +1 -1
- package/dist/{AppSelect-d9yw42DL.js → AppSelect-BtUUK2ea.js} +2 -2
- package/dist/{AppSelect-CxSQ68ng.cjs → AppSelect-Tg7_Uj55.cjs} +1 -1
- package/dist/{DropdownButton-DHdch-yh.js → DropdownButton-CZwBMGcA.js} +128 -123
- package/dist/DropdownButton-DXQzSYcl.cjs +1 -0
- package/dist/{QMenu-DBCUi8rK.js → QMenu-P1hqLpnc.js} +1 -1
- package/dist/{QMenu-wOuNu3u9.cjs → QMenu-cWjMyOHy.cjs} +1 -1
- package/dist/{index-B8dSKB9o.cjs → index-CNCrt1w6.cjs} +1 -1
- package/dist/{index-BKMebY38.js → index-CtoDgaeS.js} +3 -3
- package/dist/style.css +1 -1
- package/dist/types/components/buttons/DropdownButton/DropdownButton.vue.d.ts +8 -2
- package/dist/types/components/buttons/DropdownButton/types.d.ts +1 -1
- package/dist/types/index.d.ts +18 -3
- package/dist/uikit.cjs +1 -1
- package/dist/uikit.es.js +1 -1
- package/package.json +1 -1
- package/dist/DropdownButton-CmEZIaeZ.cjs +0 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { getCurrentInstance as A, computed as
|
|
2
|
-
import { c as
|
|
3
|
-
import { u as X, Q as x, l as ee } from "./QMenu-
|
|
4
|
-
const ne = ["ul", "ol"], oe =
|
|
1
|
+
import { getCurrentInstance as A, computed as i, h as s, ref as y, watch as M, onMounted as P, defineComponent as _, openBlock as b, createBlock as R, unref as B, normalizeClass as m, withCtx as h, createVNode as j, renderSlot as G, createElementBlock as v, createCommentVNode as p, Fragment as E, createTextVNode as N, toDisplayString as T } from "vue";
|
|
2
|
+
import { c as q, u as W, h as D, e as F, S as u, w as U, x as L, Q as Y, y as S, t as Z, C as J, _ as K } from "./index-CtoDgaeS.js";
|
|
3
|
+
import { u as X, Q as x, l as ee } from "./QMenu-P1hqLpnc.js";
|
|
4
|
+
const ne = ["ul", "ol"], oe = q({
|
|
5
5
|
name: "QList",
|
|
6
6
|
props: {
|
|
7
7
|
...F,
|
|
@@ -14,19 +14,19 @@ const ne = ["ul", "ol"], oe = h({
|
|
|
14
14
|
default: "div"
|
|
15
15
|
}
|
|
16
16
|
},
|
|
17
|
-
setup(e, { slots:
|
|
18
|
-
const
|
|
17
|
+
setup(e, { slots: l }) {
|
|
18
|
+
const n = A(), r = W(e, n.proxy.$q), a = i(
|
|
19
19
|
() => ne.includes(e.tag) ? null : "list"
|
|
20
|
-
),
|
|
20
|
+
), d = i(
|
|
21
21
|
() => "q-list" + (e.bordered === !0 ? " q-list--bordered" : "") + (e.dense === !0 ? " q-list--dense" : "") + (e.separator === !0 ? " q-list--separator" : "") + (r.value === !0 ? " q-list--dark" : "") + (e.padding === !0 ? " q-list--padding" : "")
|
|
22
22
|
);
|
|
23
|
-
return () =>
|
|
23
|
+
return () => s(e.tag, { class: d.value, role: a.value }, D(l.default));
|
|
24
24
|
}
|
|
25
25
|
}), te = {
|
|
26
|
-
[
|
|
27
|
-
[
|
|
28
|
-
[
|
|
29
|
-
}, ae =
|
|
26
|
+
[u.SM]: "3px 9px",
|
|
27
|
+
[u.MD]: "5px 12px",
|
|
28
|
+
[u.LG]: "9px 20px"
|
|
29
|
+
}, ae = q({
|
|
30
30
|
name: "QBtnGroup",
|
|
31
31
|
props: {
|
|
32
32
|
unelevated: Boolean,
|
|
@@ -39,24 +39,24 @@ const ne = ["ul", "ol"], oe = h({
|
|
|
39
39
|
glossy: Boolean,
|
|
40
40
|
spread: Boolean
|
|
41
41
|
},
|
|
42
|
-
setup(e, { slots:
|
|
43
|
-
const
|
|
44
|
-
const r = ["unelevated", "outline", "flat", "rounded", "square", "push", "stretch", "glossy"].filter((
|
|
42
|
+
setup(e, { slots: l }) {
|
|
43
|
+
const n = i(() => {
|
|
44
|
+
const r = ["unelevated", "outline", "flat", "rounded", "square", "push", "stretch", "glossy"].filter((a) => e[a] === !0).map((a) => `q-btn-group--${a}`).join(" ");
|
|
45
45
|
return `q-btn-group row no-wrap${r.length !== 0 ? " " + r : ""}` + (e.spread === !0 ? " q-btn-group--spread" : " inline");
|
|
46
46
|
});
|
|
47
|
-
return () =>
|
|
47
|
+
return () => s("div", { class: n.value }, D(l.default));
|
|
48
48
|
}
|
|
49
|
-
}), le = Object.keys(
|
|
49
|
+
}), le = Object.keys(L);
|
|
50
50
|
function re(e) {
|
|
51
|
-
return le.reduce((
|
|
52
|
-
const r = e[
|
|
53
|
-
return r !== void 0 && (
|
|
51
|
+
return le.reduce((l, n) => {
|
|
52
|
+
const r = e[n];
|
|
53
|
+
return r !== void 0 && (l[n] = r), l;
|
|
54
54
|
}, {});
|
|
55
55
|
}
|
|
56
|
-
const de =
|
|
56
|
+
const de = q({
|
|
57
57
|
name: "QBtnDropdown",
|
|
58
58
|
props: {
|
|
59
|
-
...
|
|
59
|
+
...L,
|
|
60
60
|
...ee,
|
|
61
61
|
modelValue: Boolean,
|
|
62
62
|
split: Boolean,
|
|
@@ -82,65 +82,65 @@ const de = h({
|
|
|
82
82
|
toggleAriaLabel: String
|
|
83
83
|
},
|
|
84
84
|
emits: ["update:modelValue", "click", "beforeShow", "show", "beforeHide", "hide"],
|
|
85
|
-
setup(e, { slots:
|
|
86
|
-
const { proxy: r } = A(),
|
|
85
|
+
setup(e, { slots: l, emit: n }) {
|
|
86
|
+
const { proxy: r } = A(), a = y(e.modelValue), d = y(null), c = X(), f = i(() => {
|
|
87
87
|
const o = {
|
|
88
|
-
"aria-expanded":
|
|
88
|
+
"aria-expanded": a.value === !0 ? "true" : "false",
|
|
89
89
|
"aria-haspopup": "true",
|
|
90
|
-
"aria-controls":
|
|
91
|
-
"aria-label": e.toggleAriaLabel || r.$q.lang.label[
|
|
90
|
+
"aria-controls": c.value,
|
|
91
|
+
"aria-label": e.toggleAriaLabel || r.$q.lang.label[a.value === !0 ? "collapse" : "expand"](e.label)
|
|
92
92
|
};
|
|
93
93
|
return (e.disable === !0 || e.split === !1 && e.disableMainBtn === !0 || e.disableDropdown === !0) && (o["aria-disabled"] = "true"), o;
|
|
94
|
-
}),
|
|
95
|
-
() => "q-btn-dropdown__arrow" + (
|
|
96
|
-
),
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
}),
|
|
100
|
-
function $(o) {
|
|
101
|
-
n.value = !0, a("beforeShow", o);
|
|
102
|
-
}
|
|
94
|
+
}), t = i(
|
|
95
|
+
() => "q-btn-dropdown__arrow" + (a.value === !0 && e.noIconAnimation === !1 ? " rotate-180" : "") + (e.split === !1 ? " q-btn-dropdown__arrow-container" : "")
|
|
96
|
+
), w = i(() => U(e)), k = i(() => re(e));
|
|
97
|
+
M(() => e.modelValue, (o) => {
|
|
98
|
+
d.value !== null && d.value[o ? "show" : "hide"]();
|
|
99
|
+
}), M(() => e.split, g);
|
|
103
100
|
function I(o) {
|
|
104
|
-
a
|
|
101
|
+
a.value = !0, n("beforeShow", o);
|
|
102
|
+
}
|
|
103
|
+
function $(o) {
|
|
104
|
+
n("show", o), n("update:modelValue", !0);
|
|
105
105
|
}
|
|
106
106
|
function Q(o) {
|
|
107
|
-
|
|
107
|
+
a.value = !1, n("beforeHide", o);
|
|
108
|
+
}
|
|
109
|
+
function H(o) {
|
|
110
|
+
n("hide", o), n("update:modelValue", !1);
|
|
108
111
|
}
|
|
109
112
|
function O(o) {
|
|
110
|
-
|
|
113
|
+
n("click", o);
|
|
111
114
|
}
|
|
112
115
|
function V(o) {
|
|
113
|
-
|
|
116
|
+
Z(o), g(), n("click", o);
|
|
114
117
|
}
|
|
115
118
|
function z(o) {
|
|
116
|
-
|
|
117
|
-
}
|
|
118
|
-
function P(o) {
|
|
119
|
-
l.value !== null && l.value.toggle(o);
|
|
119
|
+
d.value !== null && d.value.toggle(o);
|
|
120
120
|
}
|
|
121
|
-
function
|
|
122
|
-
|
|
121
|
+
function C(o) {
|
|
122
|
+
d.value !== null && d.value.show(o);
|
|
123
123
|
}
|
|
124
|
-
function
|
|
125
|
-
|
|
124
|
+
function g(o) {
|
|
125
|
+
d.value !== null && d.value.hide(o);
|
|
126
126
|
}
|
|
127
127
|
return Object.assign(r, {
|
|
128
|
-
show:
|
|
129
|
-
hide:
|
|
130
|
-
toggle:
|
|
131
|
-
}),
|
|
132
|
-
e.modelValue === !0 &&
|
|
128
|
+
show: C,
|
|
129
|
+
hide: g,
|
|
130
|
+
toggle: z
|
|
131
|
+
}), P(() => {
|
|
132
|
+
e.modelValue === !0 && C();
|
|
133
133
|
}), () => {
|
|
134
134
|
const o = [
|
|
135
|
-
|
|
136
|
-
class:
|
|
135
|
+
s(Y, {
|
|
136
|
+
class: t.value,
|
|
137
137
|
name: e.dropdownIcon || r.$q.iconSet.arrow.dropdown
|
|
138
138
|
})
|
|
139
139
|
];
|
|
140
140
|
return e.disableDropdown !== !0 && o.push(
|
|
141
|
-
|
|
142
|
-
ref:
|
|
143
|
-
id:
|
|
141
|
+
s(x, {
|
|
142
|
+
ref: d,
|
|
143
|
+
id: c.value,
|
|
144
144
|
class: e.contentClass,
|
|
145
145
|
style: e.contentStyle,
|
|
146
146
|
cover: e.cover,
|
|
@@ -155,45 +155,45 @@ const de = h({
|
|
|
155
155
|
transitionShow: e.transitionShow,
|
|
156
156
|
transitionHide: e.transitionHide,
|
|
157
157
|
transitionDuration: e.transitionDuration,
|
|
158
|
-
onBeforeShow:
|
|
159
|
-
onShow:
|
|
158
|
+
onBeforeShow: I,
|
|
159
|
+
onShow: $,
|
|
160
160
|
onBeforeHide: Q,
|
|
161
|
-
onHide:
|
|
162
|
-
},
|
|
163
|
-
), e.split === !1 ?
|
|
161
|
+
onHide: H
|
|
162
|
+
}, l.default)
|
|
163
|
+
), e.split === !1 ? s(S, {
|
|
164
164
|
class: "q-btn-dropdown q-btn-dropdown--simple",
|
|
165
|
-
...
|
|
166
|
-
...
|
|
165
|
+
...k.value,
|
|
166
|
+
...f.value,
|
|
167
167
|
disable: e.disable === !0 || e.disableMainBtn === !0,
|
|
168
168
|
noWrap: !0,
|
|
169
169
|
round: !1,
|
|
170
|
-
onClick:
|
|
170
|
+
onClick: O
|
|
171
171
|
}, {
|
|
172
|
-
default: () =>
|
|
173
|
-
loading:
|
|
174
|
-
}) :
|
|
172
|
+
default: () => D(l.label, []).concat(o),
|
|
173
|
+
loading: l.loading
|
|
174
|
+
}) : s(ae, {
|
|
175
175
|
class: "q-btn-dropdown q-btn-dropdown--split no-wrap q-btn-item",
|
|
176
176
|
rounded: e.rounded,
|
|
177
177
|
square: e.square,
|
|
178
|
-
...
|
|
178
|
+
...w.value,
|
|
179
179
|
glossy: e.glossy,
|
|
180
180
|
stretch: e.stretch
|
|
181
181
|
}, () => [
|
|
182
|
-
|
|
182
|
+
s(S, {
|
|
183
183
|
class: "q-btn-dropdown--current",
|
|
184
|
-
...
|
|
184
|
+
...k.value,
|
|
185
185
|
disable: e.disable === !0 || e.disableMainBtn === !0,
|
|
186
186
|
noWrap: !0,
|
|
187
187
|
round: !1,
|
|
188
|
-
onClick:
|
|
188
|
+
onClick: V
|
|
189
189
|
}, {
|
|
190
|
-
default:
|
|
191
|
-
loading:
|
|
190
|
+
default: l.label,
|
|
191
|
+
loading: l.loading
|
|
192
192
|
}),
|
|
193
|
-
|
|
193
|
+
s(S, {
|
|
194
194
|
class: "q-btn-dropdown__arrow-container q-anchor--skip",
|
|
195
|
-
...
|
|
196
|
-
...
|
|
195
|
+
...f.value,
|
|
196
|
+
...w.value,
|
|
197
197
|
disable: e.disable === !0 || e.disableDropdown === !0,
|
|
198
198
|
rounded: e.rounded,
|
|
199
199
|
color: e.color,
|
|
@@ -206,10 +206,10 @@ const de = h({
|
|
|
206
206
|
]);
|
|
207
207
|
};
|
|
208
208
|
}
|
|
209
|
-
}), se = /* @__PURE__ */
|
|
209
|
+
}), se = /* @__PURE__ */ _({
|
|
210
210
|
__name: "DropdownButton",
|
|
211
211
|
props: {
|
|
212
|
-
size: { default:
|
|
212
|
+
size: { default: u.MD },
|
|
213
213
|
transparent: { type: Boolean },
|
|
214
214
|
flat: { type: Boolean },
|
|
215
215
|
rounded: { type: Boolean },
|
|
@@ -226,65 +226,70 @@ const de = h({
|
|
|
226
226
|
menuAnchor: {},
|
|
227
227
|
menuSelf: {}
|
|
228
228
|
},
|
|
229
|
-
|
|
230
|
-
|
|
229
|
+
emits: ["menuShown", "menuHidden"],
|
|
230
|
+
setup(e, { emit: l }) {
|
|
231
|
+
const n = e, r = l, a = y(!1), d = i(() => [
|
|
231
232
|
"dropdown-btn",
|
|
232
233
|
{
|
|
233
|
-
"dropdown-btn_default": !
|
|
234
|
-
"dropdown-btn_trans":
|
|
235
|
-
"dropdown-btn_flat":
|
|
236
|
-
"dropdown-btn_rounded":
|
|
237
|
-
"dropdown-btn_sm":
|
|
238
|
-
"dropdown-btn_md":
|
|
239
|
-
"dropdown-btn_lg":
|
|
240
|
-
"dropdown-btn_icon-left":
|
|
241
|
-
"dropdown-btn_icon-middle":
|
|
234
|
+
"dropdown-btn_default": !n.transparent && !n.flat,
|
|
235
|
+
"dropdown-btn_trans": n.transparent,
|
|
236
|
+
"dropdown-btn_flat": n.flat,
|
|
237
|
+
"dropdown-btn_rounded": n.rounded,
|
|
238
|
+
"dropdown-btn_sm": n.size === u.SM,
|
|
239
|
+
"dropdown-btn_md": n.size === u.MD,
|
|
240
|
+
"dropdown-btn_lg": n.size === u.LG,
|
|
241
|
+
"dropdown-btn_icon-left": n.iconLeft,
|
|
242
|
+
"dropdown-btn_icon-middle": n.iconMiddle
|
|
242
243
|
},
|
|
243
|
-
`dropdown-btn_${
|
|
244
|
-
])
|
|
245
|
-
|
|
244
|
+
`dropdown-btn_${n.color}`
|
|
245
|
+
]), c = () => {
|
|
246
|
+
a.value = !0, r("menuShown");
|
|
247
|
+
}, f = () => {
|
|
248
|
+
a.value = !1, r("menuHidden");
|
|
249
|
+
};
|
|
250
|
+
return (t, w) => (b(), R(B(de), {
|
|
246
251
|
"no-caps": "",
|
|
247
252
|
unelevated: "",
|
|
248
|
-
class:
|
|
249
|
-
padding:
|
|
250
|
-
loading:
|
|
251
|
-
disable:
|
|
252
|
-
"aria-label":
|
|
253
|
-
"menu-offset":
|
|
254
|
-
"menu-anchor":
|
|
255
|
-
"menu-self":
|
|
256
|
-
onBeforeShow:
|
|
257
|
-
onBeforeHide:
|
|
253
|
+
class: m(d.value),
|
|
254
|
+
padding: B(te)[t.size || B(u).MD],
|
|
255
|
+
loading: t.loading,
|
|
256
|
+
disable: t.disabled || void 0,
|
|
257
|
+
"aria-label": t.ariaLabel,
|
|
258
|
+
"menu-offset": t.menuOffset,
|
|
259
|
+
"menu-anchor": t.menuAnchor,
|
|
260
|
+
"menu-self": t.menuSelf,
|
|
261
|
+
onBeforeShow: c,
|
|
262
|
+
onBeforeHide: f
|
|
258
263
|
}, {
|
|
259
|
-
label:
|
|
260
|
-
|
|
264
|
+
label: h(() => [
|
|
265
|
+
t.iconLeft || t.iconMiddle ? (b(), v("i", {
|
|
261
266
|
key: 0,
|
|
262
|
-
class:
|
|
267
|
+
class: m([
|
|
263
268
|
"icon-kl",
|
|
264
|
-
|
|
265
|
-
`icon-kl-${
|
|
266
|
-
|
|
269
|
+
t.iconLeft ? "icon-kl_left" : "icon-kl_middle",
|
|
270
|
+
`icon-kl-${t.iconLeft || t.iconMiddle}`,
|
|
271
|
+
t.transparent || t.flat ? `text-${t.color}` : "text-secondary"
|
|
267
272
|
])
|
|
268
|
-
}, null, 2)) :
|
|
269
|
-
|
|
270
|
-
N(T(
|
|
271
|
-
], 64)) :
|
|
272
|
-
|
|
273
|
+
}, null, 2)) : p("", !0),
|
|
274
|
+
t.label ? (b(), v(E, { key: 1 }, [
|
|
275
|
+
N(T(t.label), 1)
|
|
276
|
+
], 64)) : p("", !0),
|
|
277
|
+
t.hideDropIcon ? p("", !0) : (b(), v("i", {
|
|
273
278
|
key: 2,
|
|
274
|
-
class:
|
|
279
|
+
class: m([
|
|
275
280
|
"icon-kl",
|
|
276
281
|
"icon-kl-arrow-down",
|
|
277
282
|
{ "icon-kl-arrow-down_rotated": a.value },
|
|
278
|
-
|
|
283
|
+
t.transparent ? `text-${t.color}` : "text-secondary"
|
|
279
284
|
])
|
|
280
285
|
}, null, 2))
|
|
281
286
|
]),
|
|
282
|
-
default:
|
|
283
|
-
|
|
284
|
-
class:
|
|
287
|
+
default: h(() => [
|
|
288
|
+
j(oe, {
|
|
289
|
+
class: m(["dropdown-btn-menu", `dropdown-btn-menu_${t.size} ${t.menuClass ? t.menuClass : ""}`])
|
|
285
290
|
}, {
|
|
286
|
-
default:
|
|
287
|
-
G(
|
|
291
|
+
default: h(() => [
|
|
292
|
+
G(t.$slots, "default", {}, void 0, !0)
|
|
288
293
|
]),
|
|
289
294
|
_: 3
|
|
290
295
|
}, 8, ["class"])
|
|
@@ -292,7 +297,7 @@ const de = h({
|
|
|
292
297
|
_: 3
|
|
293
298
|
}, 8, ["class", "padding", "loading", "disable", "aria-label", "menu-offset", "menu-anchor", "menu-self"]));
|
|
294
299
|
}
|
|
295
|
-
}), fe = /* @__PURE__ */ K(se, [["__scopeId", "data-v-
|
|
300
|
+
}), fe = /* @__PURE__ */ K(se, [["__scopeId", "data-v-66c28b87"]]);
|
|
296
301
|
export {
|
|
297
302
|
fe as default
|
|
298
303
|
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const n=require("vue"),l=require("./index-CNCrt1w6.cjs"),b=require("./QMenu-cWjMyOHy.cjs"),q=["ul","ol"],y=l.createComponent({name:"QList",props:{...l.useDarkProps,bordered:Boolean,dense:Boolean,separator:Boolean,padding:Boolean,tag:{type:String,default:"div"}},setup(e,{slots:d}){const o=n.getCurrentInstance(),u=l.useDark(e,o.proxy.$q),r=n.computed(()=>q.includes(e.tag)?null:"list"),s=n.computed(()=>"q-list"+(e.bordered===!0?" q-list--bordered":"")+(e.dense===!0?" q-list--dense":"")+(e.separator===!0?" q-list--separator":"")+(u.value===!0?" q-list--dark":"")+(e.padding===!0?" q-list--padding":""));return()=>n.h(e.tag,{class:s.value,role:r.value},l.hSlot(d.default))}}),D={[l.SIZES.SM]:"3px 9px",[l.SIZES.MD]:"5px 12px",[l.SIZES.LG]:"9px 20px"},M=l.createComponent({name:"QBtnGroup",props:{unelevated:Boolean,outline:Boolean,flat:Boolean,rounded:Boolean,square:Boolean,push:Boolean,stretch:Boolean,glossy:Boolean,spread:Boolean},setup(e,{slots:d}){const o=n.computed(()=>{const u=["unelevated","outline","flat","rounded","square","push","stretch","glossy"].filter(r=>e[r]===!0).map(r=>`q-btn-group--${r}`).join(" ");return`q-btn-group row no-wrap${u.length!==0?" "+u:""}`+(e.spread===!0?" q-btn-group--spread":" inline")});return()=>n.h("div",{class:o.value},l.hSlot(d.default))}}),I=Object.keys(l.nonRoundBtnProps);function A(e){return I.reduce((d,o)=>{const u=e[o];return u!==void 0&&(d[o]=u),d},{})}const L=l.createComponent({name:"QBtnDropdown",props:{...l.nonRoundBtnProps,...b.useTransitionProps,modelValue:Boolean,split:Boolean,dropdownIcon:String,contentClass:[Array,String,Object],contentStyle:[Array,String,Object],cover:Boolean,persistent:Boolean,noRouteDismiss:Boolean,autoClose:Boolean,menuAnchor:{type:String,default:"bottom end"},menuSelf:{type:String,default:"top end"},menuOffset:Array,disableMainBtn:Boolean,disableDropdown:Boolean,noIconAnimation:Boolean,toggleAriaLabel:String},emits:["update:modelValue","click","beforeShow","show","beforeHide","hide"],setup(e,{slots:d,emit:o}){const{proxy:u}=n.getCurrentInstance(),r=n.ref(e.modelValue),s=n.ref(null),i=b.useId(),c=n.computed(()=>{const t={"aria-expanded":r.value===!0?"true":"false","aria-haspopup":"true","aria-controls":i.value,"aria-label":e.toggleAriaLabel||u.$q.lang.label[r.value===!0?"collapse":"expand"](e.label)};return(e.disable===!0||e.split===!1&&e.disableMainBtn===!0||e.disableDropdown===!0)&&(t["aria-disabled"]="true"),t}),a=n.computed(()=>"q-btn-dropdown__arrow"+(r.value===!0&&e.noIconAnimation===!1?" rotate-180":"")+(e.split===!1?" q-btn-dropdown__arrow-container":"")),f=n.computed(()=>l.getBtnDesignAttr(e)),w=n.computed(()=>A(e));n.watch(()=>e.modelValue,t=>{s.value!==null&&s.value[t?"show":"hide"]()}),n.watch(()=>e.split,m);function B(t){r.value=!0,o("beforeShow",t)}function g(t){o("show",t),o("update:modelValue",!0)}function p(t){r.value=!1,o("beforeHide",t)}function S(t){o("hide",t),o("update:modelValue",!1)}function v(t){o("click",t)}function C(t){l.stop(t),m(),o("click",t)}function k(t){s.value!==null&&s.value.toggle(t)}function h(t){s.value!==null&&s.value.show(t)}function m(t){s.value!==null&&s.value.hide(t)}return Object.assign(u,{show:h,hide:m,toggle:k}),n.onMounted(()=>{e.modelValue===!0&&h()}),()=>{const t=[n.h(l.QIcon,{class:a.value,name:e.dropdownIcon||u.$q.iconSet.arrow.dropdown})];return e.disableDropdown!==!0&&t.push(n.h(b.QMenu,{ref:s,id:i.value,class:e.contentClass,style:e.contentStyle,cover:e.cover,fit:!0,persistent:e.persistent,noRouteDismiss:e.noRouteDismiss,autoClose:e.autoClose,anchor:e.menuAnchor,self:e.menuSelf,offset:e.menuOffset,separateClosePopup:!0,transitionShow:e.transitionShow,transitionHide:e.transitionHide,transitionDuration:e.transitionDuration,onBeforeShow:B,onShow:g,onBeforeHide:p,onHide:S},d.default)),e.split===!1?n.h(l.QBtn,{class:"q-btn-dropdown q-btn-dropdown--simple",...w.value,...c.value,disable:e.disable===!0||e.disableMainBtn===!0,noWrap:!0,round:!1,onClick:v},{default:()=>l.hSlot(d.label,[]).concat(t),loading:d.loading}):n.h(M,{class:"q-btn-dropdown q-btn-dropdown--split no-wrap q-btn-item",rounded:e.rounded,square:e.square,...f.value,glossy:e.glossy,stretch:e.stretch},()=>[n.h(l.QBtn,{class:"q-btn-dropdown--current",...w.value,disable:e.disable===!0||e.disableMainBtn===!0,noWrap:!0,round:!1,onClick:C},{default:d.label,loading:d.loading}),n.h(l.QBtn,{class:"q-btn-dropdown__arrow-container q-anchor--skip",...c.value,...f.value,disable:e.disable===!0||e.disableDropdown===!0,rounded:e.rounded,color:e.color,textColor:e.textColor,dense:e.dense,size:e.size,padding:e.padding,ripple:e.ripple},()=>t)])}}}),z=n.defineComponent({__name:"DropdownButton",props:{size:{default:l.SIZES.MD},transparent:{type:Boolean},flat:{type:Boolean},rounded:{type:Boolean},color:{default:l.COLORS.PRIMARY},iconLeft:{},iconMiddle:{},hideDropIcon:{type:Boolean},disabled:{type:Boolean},loading:{type:Boolean},ariaLabel:{},label:{},menuClass:{},menuOffset:{},menuAnchor:{},menuSelf:{}},emits:["menuShown","menuHidden"],setup(e,{emit:d}){const o=e,u=d,r=n.ref(!1),s=n.computed(()=>["dropdown-btn",{"dropdown-btn_default":!o.transparent&&!o.flat,"dropdown-btn_trans":o.transparent,"dropdown-btn_flat":o.flat,"dropdown-btn_rounded":o.rounded,"dropdown-btn_sm":o.size===l.SIZES.SM,"dropdown-btn_md":o.size===l.SIZES.MD,"dropdown-btn_lg":o.size===l.SIZES.LG,"dropdown-btn_icon-left":o.iconLeft,"dropdown-btn_icon-middle":o.iconMiddle},`dropdown-btn_${o.color}`]),i=()=>{r.value=!0,u("menuShown")},c=()=>{r.value=!1,u("menuHidden")};return(a,f)=>(n.openBlock(),n.createBlock(n.unref(L),{"no-caps":"",unelevated:"",class:n.normalizeClass(s.value),padding:n.unref(D)[a.size||n.unref(l.SIZES).MD],loading:a.loading,disable:a.disabled||void 0,"aria-label":a.ariaLabel,"menu-offset":a.menuOffset,"menu-anchor":a.menuAnchor,"menu-self":a.menuSelf,onBeforeShow:i,onBeforeHide:c},{label:n.withCtx(()=>[a.iconLeft||a.iconMiddle?(n.openBlock(),n.createElementBlock("i",{key:0,class:n.normalizeClass(["icon-kl",a.iconLeft?"icon-kl_left":"icon-kl_middle",`icon-kl-${a.iconLeft||a.iconMiddle}`,a.transparent||a.flat?`text-${a.color}`:"text-secondary"])},null,2)):n.createCommentVNode("",!0),a.label?(n.openBlock(),n.createElementBlock(n.Fragment,{key:1},[n.createTextVNode(n.toDisplayString(a.label),1)],64)):n.createCommentVNode("",!0),a.hideDropIcon?n.createCommentVNode("",!0):(n.openBlock(),n.createElementBlock("i",{key:2,class:n.normalizeClass(["icon-kl","icon-kl-arrow-down",{"icon-kl-arrow-down_rotated":r.value},a.transparent?`text-${a.color}`:"text-secondary"])},null,2))]),default:n.withCtx(()=>[n.createVNode(y,{class:n.normalizeClass(["dropdown-btn-menu",`dropdown-btn-menu_${a.size} ${a.menuClass?a.menuClass:""}`])},{default:n.withCtx(()=>[n.renderSlot(a.$slots,"default",{},void 0,!0)]),_:3},8,["class"])]),_:3},8,["class","padding","loading","disable","aria-label","menu-offset","menu-anchor","menu-self"]))}}),E=l._export_sfc(z,[["__scopeId","data-v-66c28b87"]]);exports.default=E;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ref as T, onMounted as oe, watch as S, computed as E, getCurrentInstance as R, nextTick as I, onBeforeUnmount as z, onUnmounted as Ie, h as Q, Teleport as Qe, onDeactivated as Se, Transition as _e } from "vue";
|
|
2
2
|
import { i as Ne, P as Ke, b as je, c as Ce, r as Ue, a as Ge } from "./focusout-DjvPXP_b.js";
|
|
3
|
-
import { z as ce, p as de, i as Pe, B as Xe, n as J, D as Ye, E as X, c as He, F as ke, G as Ze, H as fe, u as Je, h as et, I as tt, q as ot, s as nt, e as lt } from "./index-
|
|
3
|
+
import { z as ce, p as de, i as Pe, B as Xe, n as J, D as Ye, E as X, c as He, F as ke, G as Ze, H as fe, u as Je, h as et, I as tt, q as ot, s as nt, e as lt } from "./index-CtoDgaeS.js";
|
|
4
4
|
let Y, V = 0;
|
|
5
5
|
const y = new Array(256);
|
|
6
6
|
for (let e = 0; e < 256; e++)
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";const u=require("vue"),F=require("./focusout-DzWGke-4.cjs"),g=require("./index-B8dSKB9o.cjs");let _,R=0;const b=new Array(256);for(let e=0;e<256;e++)b[e]=(e+256).toString(16).substring(1);const De=(()=>{const e=typeof crypto<"u"?crypto:typeof window<"u"?window.crypto||window.msCrypto:void 0;if(e!==void 0){if(e.randomBytes!==void 0)return e.randomBytes;if(e.getRandomValues!==void 0)return t=>{const o=new Uint8Array(t);return e.getRandomValues(o),o}}return t=>{const o=[];for(let n=t;n>0;n--)o.push(Math.floor(Math.random()*256));return o}})(),le=4096;function j(){(_===void 0||R+16>le)&&(R=0,_=De(le));const e=Array.prototype.slice.call(_,R,R+=16);return e[6]=e[6]&15|64,e[8]=e[8]&63|128,b[e[0]]+b[e[1]]+b[e[2]]+b[e[3]]+"-"+b[e[4]]+b[e[5]]+"-"+b[e[6]]+b[e[7]]+"-"+b[e[8]]+b[e[9]]+"-"+b[e[10]]+b[e[11]]+b[e[12]]+b[e[13]]+b[e[14]]+b[e[15]]}function Re(e){return e??null}function ie(e,t){return e??(t===!0?`f_${j()}`:null)}function Ie({getValue:e,required:t=!0}={}){if(F.isRuntimeSsrPreHydration.value===!0){const o=e!==void 0?u.ref(Re(e())):u.ref(null);return t===!0&&o.value===null&&u.onMounted(()=>{o.value=`f_${j()}`}),e!==void 0&&u.watch(e,n=>{o.value=ie(n,t)}),o}return e!==void 0?u.computed(()=>ie(e(),t)):u.ref(`f_${j()}`)}let k=[],D=[];function he(e){D=D.filter(t=>t!==e)}function ze(e){he(e),D.push(e)}function ue(e){he(e),D.length===0&&k.length!==0&&(k[k.length-1](),k=[])}function ve(e){D.length===0?e():k.push(e)}function Oe(e){k=k.filter(t=>t!==e)}function Ve(){if(window.getSelection!==void 0){const e=window.getSelection();e.empty!==void 0?e.empty():e.removeAllRanges!==void 0&&(e.removeAllRanges(),F.Platform.is.mobile!==!0&&e.addRange(document.createRange()))}else document.selection!==void 0&&document.selection.empty()}const Ke={target:{type:[Boolean,String,Element],default:!0},noParentEvent:Boolean},Qe={...Ke,contextMenu:Boolean};function Ue({showing:e,avoidEmit:t,configureAnchorEl:o}){const{props:n,proxy:l,emit:m}=u.getCurrentInstance(),i=u.ref(null);let a=null;function h(r){return i.value===null?!1:r===void 0||r.touches===void 0||r.touches.length<=1}const d={};o===void 0&&(Object.assign(d,{hide(r){l.hide(r)},toggle(r){l.toggle(r),r.qAnchorHandled=!0},toggleKey(r){g.isKeyCode(r,13)===!0&&d.toggle(r)},contextClick(r){l.hide(r),g.prevent(r),u.nextTick(()=>{l.show(r),r.qAnchorHandled=!0})},prevent:g.prevent,mobileTouch(r){if(d.mobileCleanup(r),h(r)!==!0)return;l.hide(r),i.value.classList.add("non-selectable");const f=r.target;g.addEvt(d,"anchor",[[f,"touchmove","mobileCleanup","passive"],[f,"touchend","mobileCleanup","passive"],[f,"touchcancel","mobileCleanup","passive"],[i.value,"contextmenu","prevent","notPassive"]]),a=setTimeout(()=>{a=null,l.show(r),r.qAnchorHandled=!0},300)},mobileCleanup(r){i.value.classList.remove("non-selectable"),a!==null&&(clearTimeout(a),a=null),e.value===!0&&r!==void 0&&Ve()}}),o=function(r=n.contextMenu){if(n.noParentEvent===!0||i.value===null)return;let f;r===!0?l.$q.platform.is.mobile===!0?f=[[i.value,"touchstart","mobileTouch","passive"]]:f=[[i.value,"mousedown","hide","passive"],[i.value,"contextmenu","contextClick","notPassive"]]:f=[[i.value,"click","toggle","passive"],[i.value,"keyup","toggleKey","passive"]],g.addEvt(d,"anchor",f)});function s(){g.cleanEvt(d,"anchor")}function w(r){for(i.value=r;i.value.classList.contains("q-anchor--skip");)i.value=i.value.parentNode;o()}function y(){if(n.target===!1||n.target===""||l.$el.parentNode===null)i.value=null;else if(n.target===!0)w(l.$el.parentNode);else{let r=n.target;if(typeof n.target=="string")try{r=document.querySelector(n.target)}catch{r=void 0}r!=null?(i.value=r.$el||r,o()):(i.value=null,console.error(`Anchor: target "${n.target}" not found`))}}return u.watch(()=>n.contextMenu,r=>{i.value!==null&&(s(),o(r))}),u.watch(()=>n.target,()=>{i.value!==null&&s(),y()}),u.watch(()=>n.noParentEvent,r=>{i.value!==null&&(r===!0?s():o())}),u.onMounted(()=>{y(),t!==!0&&n.modelValue===!0&&i.value===null&&m("update:modelValue",!1)}),u.onBeforeUnmount(()=>{a!==null&&clearTimeout(a),s()}),{anchorEl:i,canShow:h,anchorEvents:d}}function _e(e,t){const o=u.ref(null);let n;function l(a,h){const d=`${h!==void 0?"add":"remove"}EventListener`,s=h!==void 0?h:n;a!==window&&a[d]("scroll",s,g.listenOpts.passive),window[d]("scroll",s,g.listenOpts.passive),n=h}function m(){o.value!==null&&(l(o.value),o.value=null)}const i=u.watch(()=>e.noParentEvent,()=>{o.value!==null&&(m(),t())});return u.onBeforeUnmount(i),{localScrollTarget:o,unconfigureScrollTarget:m,changeScrollEvent:l}}const ge={modelValue:{type:Boolean,default:null},"onUpdate:modelValue":[Function,Array]},pe=["beforeShow","show","beforeHide","hide"];function we({showing:e,canShow:t,hideOnRouteChange:o,handleShow:n,handleHide:l,processOnMount:m}){const i=u.getCurrentInstance(),{props:a,emit:h,proxy:d}=i;let s;function w(v){e.value===!0?f(v):y(v)}function y(v){if(a.disable===!0||v!==void 0&&v.qAnchorHandled===!0||t!==void 0&&t(v)!==!0)return;const p=a["onUpdate:modelValue"]!==void 0;p===!0&&(h("update:modelValue",!0),s=v,u.nextTick(()=>{s===v&&(s=void 0)})),(a.modelValue===null||p===!1)&&r(v)}function r(v){e.value!==!0&&(e.value=!0,h("beforeShow",v),n!==void 0?n(v):h("show",v))}function f(v){if(a.disable===!0)return;const p=a["onUpdate:modelValue"]!==void 0;p===!0&&(h("update:modelValue",!1),s=v,u.nextTick(()=>{s===v&&(s=void 0)})),(a.modelValue===null||p===!1)&&H(v)}function H(v){e.value!==!1&&(e.value=!1,h("beforeHide",v),l!==void 0?l(v):h("hide",v))}function C(v){a.disable===!0&&v===!0?a["onUpdate:modelValue"]!==void 0&&h("update:modelValue",!1):v===!0!==e.value&&(v===!0?r:H)(s)}u.watch(()=>a.modelValue,C),o!==void 0&&g.vmHasRouter(i)===!0&&u.watch(()=>d.$route.fullPath,()=>{o.value===!0&&e.value===!0&&f()}),u.onMounted(()=>{C(a.modelValue)});const M={show:y,hide:f,toggle:w};return Object.assign(d,M),M}const re={};let Ne=1,je=document.body;function Ge(e,t){const o=document.createElement("div");if(o.id=t!==void 0?`q-portal--${t}--${Ne++}`:e,re.globalNodes!==void 0){const n=re.globalNodes.class;n!==void 0&&(o.className=n)}return je.appendChild(o),o}function Xe(e){e.remove()}const A=[];function Ye(e,t){do{if(e.$options.name==="QMenu"){if(e.hide(t),e.$props.separateClosePopup===!0)return g.getParentProxy(e)}else if(e.__qPortal===!0){const o=g.getParentProxy(e);return o!==void 0&&o.$options.name==="QPopupProxy"?(e.hide(t),o):e}e=g.getParentProxy(e)}while(e!=null)}const Ze=g.createComponent({name:"QPortal",setup(e,{slots:t}){return()=>t.default()}});function Je(e){for(e=e.parent;e!=null;){if(e.type.name==="QGlobalDialog")return!0;if(e.type.name==="QDialog"||e.type.name==="QMenu")return!1;e=e.parent}return!1}function ye(e,t,o,n){const l=u.ref(!1),m=u.ref(!1);let i=null;const a={},h=n==="dialog"&&Je(e);function d(w){if(w===!0){ue(a),m.value=!0;return}m.value=!1,l.value===!1&&(h===!1&&i===null&&(i=Ge(!1,n)),l.value=!0,A.push(e.proxy),ze(a))}function s(w){if(m.value=!1,w!==!0)return;ue(a),l.value=!1;const y=A.indexOf(e.proxy);y!==-1&&A.splice(y,1),i!==null&&(Xe(i),i=null)}return u.onUnmounted(()=>{s(!0)}),e.proxy.__qPortal=!0,F.injectProp(e.proxy,"contentEl",()=>t.value),{showPortal:d,hidePortal:s,portalIsActive:l,portalIsAccessible:m,renderPortal:()=>h===!0?o():l.value===!0?[u.h(u.Teleport,{to:i},u.h(Ze,o))]:void 0}}const xe={transitionShow:{type:String,default:"fade"},transitionHide:{type:String,default:"fade"},transitionDuration:{type:[String,Number],default:300}};function be(e,t=()=>{},o=()=>{}){return{transitionProps:u.computed(()=>{const n=`q-transition--${e.transitionShow||t()}`,l=`q-transition--${e.transitionHide||o()}`;return{appear:!0,enterFromClass:`${n}-enter-from`,enterActiveClass:`${n}-enter-active`,enterToClass:`${n}-enter-to`,leaveFromClass:`${l}-leave-from`,leaveActiveClass:`${l}-leave-active`,leaveToClass:`${l}-leave-to`}}),transitionStyle:u.computed(()=>`--q-transition-duration: ${e.transitionDuration}ms`)}}function Te(){let e;const t=u.getCurrentInstance();function o(){e=void 0}return u.onDeactivated(o),u.onBeforeUnmount(o),{removeTick:o,registerTick(n){e=n,u.nextTick(()=>{e===n&&(g.vmIsDestroyed(t)===!1&&e(),e=void 0)})}}}function Ee(){let e=null;const t=u.getCurrentInstance();function o(){e!==null&&(clearTimeout(e),e=null)}return u.onDeactivated(o),u.onBeforeUnmount(o),{removeTimeout:o,registerTimeout(n,l){o(),g.vmIsDestroyed(t)===!1&&(e=setTimeout(()=>{e=null,n()},l))}}}const et=[Element,String],tt=[null,document,document.body,document.scrollingElement,document.documentElement];function ot(e,t){let o=g.getElement(t);if(o===void 0){if(e==null)return window;o=e.closest(".scroll,.scroll-y,.overflow-auto")}return tt.includes(o)?window:o}function nt(e){return e===window?window.pageYOffset||window.scrollY||document.body.scrollTop||0:e.scrollTop}function lt(e){return e===window?window.pageXOffset||window.scrollX||document.body.scrollLeft||0:e.scrollLeft}let I;function it(){if(I!==void 0)return I;const e=document.createElement("p"),t=document.createElement("div");g.css(e,{width:"100%",height:"200px"}),g.css(t,{position:"absolute",top:"0px",left:"0px",visibility:"hidden",width:"200px",height:"150px",overflow:"hidden"}),t.appendChild(e),document.body.appendChild(t);const o=e.offsetWidth;t.style.overflow="scroll";let n=e.offsetWidth;return o===n&&(n=t.clientWidth),t.remove(),I=o-n,I}function ut(e,t=!0){return!e||e.nodeType!==Node.ELEMENT_NODE?!1:t?e.scrollHeight>e.clientHeight&&(e.classList.contains("scroll")||e.classList.contains("overflow-auto")||["auto","scroll"].includes(window.getComputedStyle(e)["overflow-y"])):e.scrollWidth>e.clientWidth&&(e.classList.contains("scroll")||e.classList.contains("overflow-auto")||["auto","scroll"].includes(window.getComputedStyle(e)["overflow-x"]))}const W=[];let B;function rt(e){B=e.keyCode===27}function at(){B===!0&&(B=!1)}function st(e){B===!0&&(B=!1,g.isKeyCode(e,27)===!0&&W[W.length-1](e))}function Ce(e){window[e]("keydown",rt),window[e]("blur",at),window[e]("keyup",st),B=!1}function Pe(e){F.client.is.desktop===!0&&(W.push(e),W.length===1&&Ce("addEventListener"))}function G(e){const t=W.indexOf(e);t!==-1&&(W.splice(t,1),W.length===0&&Ce("removeEventListener"))}const{notPassiveCapture:z}=g.listenOpts,q=[];function O(e){const t=e.target;if(t===void 0||t.nodeType===8||t.classList.contains("no-pointer-events")===!0)return;let o=A.length-1;for(;o>=0;){const n=A[o].$;if(n.type.name==="QTooltip"){o--;continue}if(n.type.name!=="QDialog")break;if(n.props.seamless!==!0)return;o--}for(let n=q.length-1;n>=0;n--){const l=q[n];if((l.anchorEl.value===null||l.anchorEl.value.contains(t)===!1)&&(t===document.body||l.innerRef.value!==null&&l.innerRef.value.contains(t)===!1))e.qClickOutside=!0,l.onClickOutside(e);else return}}function ct(e){q.push(e),q.length===1&&(document.addEventListener("mousedown",O,z),document.addEventListener("touchstart",O,z))}function ae(e){const t=q.findIndex(o=>o===e);t!==-1&&(q.splice(t,1),q.length===0&&(document.removeEventListener("mousedown",O,z),document.removeEventListener("touchstart",O,z)))}let se,ce;function de(e){const t=e.split(" ");return t.length!==2?!1:["top","center","bottom"].includes(t[0])!==!0?(console.error("Anchor/Self position must start with one of top/center/bottom"),!1):["left","middle","right","start","end"].includes(t[1])!==!0?(console.error("Anchor/Self position must end with one of left/middle/right/start/end"),!1):!0}function dt(e){return e?!(e.length!==2||typeof e[0]!="number"||typeof e[1]!="number"):!0}const X={"start#ltr":"left","start#rtl":"right","end#ltr":"right","end#rtl":"left"};["left","middle","right"].forEach(e=>{X[`${e}#ltr`]=e,X[`${e}#rtl`]=e});function fe(e,t){const o=e.split(" ");return{vertical:o[0],horizontal:X[`${o[1]}#${t===!0?"rtl":"ltr"}`]}}function ft(e,t){let{top:o,left:n,right:l,bottom:m,width:i,height:a}=e.getBoundingClientRect();return t!==void 0&&(o-=t[1],n-=t[0],m+=t[1],l+=t[0],i+=t[0],a+=t[1]),{top:o,bottom:m,height:a,left:n,right:l,width:i,middle:n+(l-n)/2,center:o+(m-o)/2}}function mt(e,t,o){let{top:n,left:l}=e.getBoundingClientRect();return n+=t.top,l+=t.left,o!==void 0&&(n+=o[1],l+=o[0]),{top:n,bottom:n+1,height:1,left:l,right:l+1,width:1,middle:l,center:n}}function ht(e,t){return{top:0,center:t/2,bottom:t,left:0,middle:e/2,right:e}}function me(e,t,o,n){return{top:e[o.vertical]-t[n.vertical],left:e[o.horizontal]-t[n.horizontal]}}function Se(e,t=0){if(e.targetEl===null||e.anchorEl===null||t>5)return;if(e.targetEl.offsetHeight===0||e.targetEl.offsetWidth===0){setTimeout(()=>{Se(e,t+1)},10);return}const{targetEl:o,offset:n,anchorEl:l,anchorOrigin:m,selfOrigin:i,absoluteOffset:a,fit:h,cover:d,maxHeight:s,maxWidth:w}=e;if(F.client.is.ios===!0&&window.visualViewport!==void 0){const $=document.body.style,{offsetLeft:T,offsetTop:E}=window.visualViewport;T!==se&&($.setProperty("--q-pe-left",T+"px"),se=T),E!==ce&&($.setProperty("--q-pe-top",E+"px"),ce=E)}const{scrollLeft:y,scrollTop:r}=o,f=a===void 0?ft(l,d===!0?[0,0]:n):mt(l,a,n);Object.assign(o.style,{top:0,left:0,minWidth:null,minHeight:null,maxWidth:w,maxHeight:s,visibility:"visible"});const{offsetWidth:H,offsetHeight:C}=o,{elWidth:M,elHeight:v}=h===!0||d===!0?{elWidth:Math.max(f.width,H),elHeight:d===!0?Math.max(f.height,C):C}:{elWidth:H,elHeight:C};let p={maxWidth:w,maxHeight:s};(h===!0||d===!0)&&(p.minWidth=f.width+"px",d===!0&&(p.minHeight=f.height+"px")),Object.assign(o.style,p);const P=ht(M,v);let x=me(f,P,m,i);if(a===void 0||n===void 0)N(x,f,P,m,i);else{const{top:$,left:T}=x;N(x,f,P,m,i);let E=!1;if(x.top!==$){E=!0;const S=2*n[1];f.center=f.top-=S,f.bottom-=S+2}if(x.left!==T){E=!0;const S=2*n[0];f.middle=f.left-=S,f.right-=S+2}E===!0&&(x=me(f,P,m,i),N(x,f,P,m,i))}p={top:x.top+"px",left:x.left+"px"},x.maxHeight!==void 0&&(p.maxHeight=x.maxHeight+"px",f.height>x.maxHeight&&(p.minHeight=p.maxHeight)),x.maxWidth!==void 0&&(p.maxWidth=x.maxWidth+"px",f.width>x.maxWidth&&(p.minWidth=p.maxWidth)),Object.assign(o.style,p),o.scrollTop!==r&&(o.scrollTop=r),o.scrollLeft!==y&&(o.scrollLeft=y)}function N(e,t,o,n,l){const m=o.bottom,i=o.right,a=it(),h=window.innerHeight-a,d=document.body.clientWidth;if(e.top<0||e.top+m>h)if(l.vertical==="center")e.top=t[n.vertical]>h/2?Math.max(0,h-m):0,e.maxHeight=Math.min(m,h);else if(t[n.vertical]>h/2){const s=Math.min(h,n.vertical==="center"?t.center:n.vertical===l.vertical?t.bottom:t.top);e.maxHeight=Math.min(m,s),e.top=Math.max(0,s-m)}else e.top=Math.max(0,n.vertical==="center"?t.center:n.vertical===l.vertical?t.top:t.bottom),e.maxHeight=Math.min(m,h-e.top);if(e.left<0||e.left+i>d)if(e.maxWidth=Math.min(i,d),l.horizontal==="middle")e.left=t[n.horizontal]>d/2?Math.max(0,d-i):0;else if(t[n.horizontal]>d/2){const s=Math.min(d,n.horizontal==="middle"?t.middle:n.horizontal===l.horizontal?t.right:t.left);e.maxWidth=Math.min(i,s),e.left=Math.max(0,s-e.maxWidth)}else e.left=Math.max(0,n.horizontal==="middle"?t.middle:n.horizontal===l.horizontal?t.left:t.right),e.maxWidth=Math.min(i,d-e.left)}const vt=g.createComponent({name:"QMenu",inheritAttrs:!1,props:{...Qe,...ge,...g.useDarkProps,...xe,persistent:Boolean,autoClose:Boolean,separateClosePopup:Boolean,noRouteDismiss:Boolean,noRefocus:Boolean,noFocus:Boolean,fit:Boolean,cover:Boolean,square:Boolean,anchor:{type:String,validator:de},self:{type:String,validator:de},offset:{type:Array,validator:dt},scrollTarget:et,touchPosition:Boolean,maxHeight:{type:String,default:null},maxWidth:{type:String,default:null}},emits:[...pe,"click","escapeKey"],setup(e,{slots:t,emit:o,attrs:n}){let l=null,m,i,a;const h=u.getCurrentInstance(),{proxy:d}=h,{$q:s}=d,w=u.ref(null),y=u.ref(!1),r=u.computed(()=>e.persistent!==!0&&e.noRouteDismiss!==!0),f=g.useDark(e,s),{registerTick:H,removeTick:C}=Te(),{registerTimeout:M}=Ee(),{transitionProps:v,transitionStyle:p}=be(e),{localScrollTarget:P,changeScrollEvent:x,unconfigureScrollTarget:$}=_e(e,oe),{anchorEl:T,canShow:E}=Ue({showing:y}),{hide:S}=we({showing:y,canShow:E,handleShow:qe,handleHide:Fe,hideOnRouteChange:r,processOnMount:!0}),{showPortal:Y,hidePortal:Z,renderPortal:He}=ye(h,w,Be,"menu"),V={anchorEl:T,innerRef:w,onClickOutside(c){if(e.persistent!==!0&&y.value===!0)return S(c),(c.type==="touchstart"||c.target.classList.contains("q-dialog__backdrop"))&&g.stopAndPrevent(c),!0}},J=u.computed(()=>fe(e.anchor||(e.cover===!0?"center middle":"bottom start"),s.lang.rtl)),Me=u.computed(()=>e.cover===!0?J.value:fe(e.self||"top start",s.lang.rtl)),ke=u.computed(()=>(e.square===!0?" q-menu--square":"")+(f.value===!0?" q-menu--dark q-dark":"")),We=u.computed(()=>e.autoClose===!0?{onClick:$e}:{}),ee=u.computed(()=>y.value===!0&&e.persistent!==!0);u.watch(ee,c=>{c===!0?(Pe(Q),ct(V)):(G(Q),ae(V))});function K(){ve(()=>{let c=w.value;c&&c.contains(document.activeElement)!==!0&&(c=c.querySelector("[autofocus][tabindex], [data-autofocus][tabindex]")||c.querySelector("[autofocus] [tabindex], [data-autofocus] [tabindex]")||c.querySelector("[autofocus], [data-autofocus]")||c,c.focus({preventScroll:!0}))})}function qe(c){if(l=e.noRefocus===!1?document.activeElement:null,F.addFocusout(ne),Y(),oe(),m=void 0,c!==void 0&&(e.touchPosition||e.contextMenu)){const U=g.position(c);if(U.left!==void 0){const{top:Le,left:Ae}=T.value.getBoundingClientRect();m={left:U.left-Ae,top:U.top-Le}}}i===void 0&&(i=u.watch(()=>s.screen.width+"|"+s.screen.height+"|"+e.self+"|"+e.anchor+"|"+s.lang.rtl,L)),e.noFocus!==!0&&document.activeElement.blur(),H(()=>{L(),e.noFocus!==!0&&K()}),M(()=>{s.platform.is.ios===!0&&(a=e.autoClose,w.value.click()),L(),Y(!0),o("show",c)},e.transitionDuration)}function Fe(c){C(),Z(),te(!0),l!==null&&(c===void 0||c.qClickOutside!==!0)&&(((c&&c.type.indexOf("key")===0?l.closest('[tabindex]:not([tabindex^="-"])'):void 0)||l).focus(),l=null),M(()=>{Z(!0),o("hide",c)},e.transitionDuration)}function te(c){m=void 0,i!==void 0&&(i(),i=void 0),(c===!0||y.value===!0)&&(F.removeFocusout(ne),$(),ae(V),G(Q)),c!==!0&&(l=null)}function oe(){(T.value!==null||e.scrollTarget!==void 0)&&(P.value=ot(T.value,e.scrollTarget),x(P.value,L))}function $e(c){a!==!0?(Ye(d,c),o("click",c)):a=!1}function ne(c){ee.value===!0&&e.noFocus!==!0&&g.childHasFocus(w.value,c.target)!==!0&&K()}function Q(c){o("escapeKey"),S(c)}function L(){Se({targetEl:w.value,offset:e.offset,anchorEl:T.value,anchorOrigin:J.value,selfOrigin:Me.value,absoluteOffset:m,fit:e.fit,cover:e.cover,maxHeight:e.maxHeight,maxWidth:e.maxWidth})}function Be(){return u.h(u.Transition,v.value,()=>y.value===!0?u.h("div",{role:"menu",...n,ref:w,tabindex:-1,class:["q-menu q-position-engine scroll"+ke.value,n.class],style:[n.style,p.value],...We.value},g.hSlot(t.default)):null)}return u.onBeforeUnmount(te),Object.assign(d,{focus:K,updatePosition:L}),He}});exports.QMenu=vt;exports.addEscapeKey=Pe;exports.addFocusFn=ve;exports.getHorizontalScrollPosition=lt;exports.getVerticalScrollPosition=nt;exports.hasScrollbar=ut;exports.removeEscapeKey=G;exports.removeFocusFn=Oe;exports.useId=Ie;exports.useModelToggle=we;exports.useModelToggleEmits=pe;exports.useModelToggleProps=ge;exports.usePortal=ye;exports.useTick=Te;exports.useTimeout=Ee;exports.useTransition=be;exports.useTransitionProps=xe;
|
|
1
|
+
"use strict";const u=require("vue"),F=require("./focusout-DzWGke-4.cjs"),g=require("./index-CNCrt1w6.cjs");let _,R=0;const b=new Array(256);for(let e=0;e<256;e++)b[e]=(e+256).toString(16).substring(1);const De=(()=>{const e=typeof crypto<"u"?crypto:typeof window<"u"?window.crypto||window.msCrypto:void 0;if(e!==void 0){if(e.randomBytes!==void 0)return e.randomBytes;if(e.getRandomValues!==void 0)return t=>{const o=new Uint8Array(t);return e.getRandomValues(o),o}}return t=>{const o=[];for(let n=t;n>0;n--)o.push(Math.floor(Math.random()*256));return o}})(),le=4096;function j(){(_===void 0||R+16>le)&&(R=0,_=De(le));const e=Array.prototype.slice.call(_,R,R+=16);return e[6]=e[6]&15|64,e[8]=e[8]&63|128,b[e[0]]+b[e[1]]+b[e[2]]+b[e[3]]+"-"+b[e[4]]+b[e[5]]+"-"+b[e[6]]+b[e[7]]+"-"+b[e[8]]+b[e[9]]+"-"+b[e[10]]+b[e[11]]+b[e[12]]+b[e[13]]+b[e[14]]+b[e[15]]}function Re(e){return e??null}function ie(e,t){return e??(t===!0?`f_${j()}`:null)}function Ie({getValue:e,required:t=!0}={}){if(F.isRuntimeSsrPreHydration.value===!0){const o=e!==void 0?u.ref(Re(e())):u.ref(null);return t===!0&&o.value===null&&u.onMounted(()=>{o.value=`f_${j()}`}),e!==void 0&&u.watch(e,n=>{o.value=ie(n,t)}),o}return e!==void 0?u.computed(()=>ie(e(),t)):u.ref(`f_${j()}`)}let k=[],D=[];function he(e){D=D.filter(t=>t!==e)}function ze(e){he(e),D.push(e)}function ue(e){he(e),D.length===0&&k.length!==0&&(k[k.length-1](),k=[])}function ve(e){D.length===0?e():k.push(e)}function Oe(e){k=k.filter(t=>t!==e)}function Ve(){if(window.getSelection!==void 0){const e=window.getSelection();e.empty!==void 0?e.empty():e.removeAllRanges!==void 0&&(e.removeAllRanges(),F.Platform.is.mobile!==!0&&e.addRange(document.createRange()))}else document.selection!==void 0&&document.selection.empty()}const Ke={target:{type:[Boolean,String,Element],default:!0},noParentEvent:Boolean},Qe={...Ke,contextMenu:Boolean};function Ue({showing:e,avoidEmit:t,configureAnchorEl:o}){const{props:n,proxy:l,emit:m}=u.getCurrentInstance(),i=u.ref(null);let a=null;function h(r){return i.value===null?!1:r===void 0||r.touches===void 0||r.touches.length<=1}const d={};o===void 0&&(Object.assign(d,{hide(r){l.hide(r)},toggle(r){l.toggle(r),r.qAnchorHandled=!0},toggleKey(r){g.isKeyCode(r,13)===!0&&d.toggle(r)},contextClick(r){l.hide(r),g.prevent(r),u.nextTick(()=>{l.show(r),r.qAnchorHandled=!0})},prevent:g.prevent,mobileTouch(r){if(d.mobileCleanup(r),h(r)!==!0)return;l.hide(r),i.value.classList.add("non-selectable");const f=r.target;g.addEvt(d,"anchor",[[f,"touchmove","mobileCleanup","passive"],[f,"touchend","mobileCleanup","passive"],[f,"touchcancel","mobileCleanup","passive"],[i.value,"contextmenu","prevent","notPassive"]]),a=setTimeout(()=>{a=null,l.show(r),r.qAnchorHandled=!0},300)},mobileCleanup(r){i.value.classList.remove("non-selectable"),a!==null&&(clearTimeout(a),a=null),e.value===!0&&r!==void 0&&Ve()}}),o=function(r=n.contextMenu){if(n.noParentEvent===!0||i.value===null)return;let f;r===!0?l.$q.platform.is.mobile===!0?f=[[i.value,"touchstart","mobileTouch","passive"]]:f=[[i.value,"mousedown","hide","passive"],[i.value,"contextmenu","contextClick","notPassive"]]:f=[[i.value,"click","toggle","passive"],[i.value,"keyup","toggleKey","passive"]],g.addEvt(d,"anchor",f)});function s(){g.cleanEvt(d,"anchor")}function w(r){for(i.value=r;i.value.classList.contains("q-anchor--skip");)i.value=i.value.parentNode;o()}function y(){if(n.target===!1||n.target===""||l.$el.parentNode===null)i.value=null;else if(n.target===!0)w(l.$el.parentNode);else{let r=n.target;if(typeof n.target=="string")try{r=document.querySelector(n.target)}catch{r=void 0}r!=null?(i.value=r.$el||r,o()):(i.value=null,console.error(`Anchor: target "${n.target}" not found`))}}return u.watch(()=>n.contextMenu,r=>{i.value!==null&&(s(),o(r))}),u.watch(()=>n.target,()=>{i.value!==null&&s(),y()}),u.watch(()=>n.noParentEvent,r=>{i.value!==null&&(r===!0?s():o())}),u.onMounted(()=>{y(),t!==!0&&n.modelValue===!0&&i.value===null&&m("update:modelValue",!1)}),u.onBeforeUnmount(()=>{a!==null&&clearTimeout(a),s()}),{anchorEl:i,canShow:h,anchorEvents:d}}function _e(e,t){const o=u.ref(null);let n;function l(a,h){const d=`${h!==void 0?"add":"remove"}EventListener`,s=h!==void 0?h:n;a!==window&&a[d]("scroll",s,g.listenOpts.passive),window[d]("scroll",s,g.listenOpts.passive),n=h}function m(){o.value!==null&&(l(o.value),o.value=null)}const i=u.watch(()=>e.noParentEvent,()=>{o.value!==null&&(m(),t())});return u.onBeforeUnmount(i),{localScrollTarget:o,unconfigureScrollTarget:m,changeScrollEvent:l}}const ge={modelValue:{type:Boolean,default:null},"onUpdate:modelValue":[Function,Array]},pe=["beforeShow","show","beforeHide","hide"];function we({showing:e,canShow:t,hideOnRouteChange:o,handleShow:n,handleHide:l,processOnMount:m}){const i=u.getCurrentInstance(),{props:a,emit:h,proxy:d}=i;let s;function w(v){e.value===!0?f(v):y(v)}function y(v){if(a.disable===!0||v!==void 0&&v.qAnchorHandled===!0||t!==void 0&&t(v)!==!0)return;const p=a["onUpdate:modelValue"]!==void 0;p===!0&&(h("update:modelValue",!0),s=v,u.nextTick(()=>{s===v&&(s=void 0)})),(a.modelValue===null||p===!1)&&r(v)}function r(v){e.value!==!0&&(e.value=!0,h("beforeShow",v),n!==void 0?n(v):h("show",v))}function f(v){if(a.disable===!0)return;const p=a["onUpdate:modelValue"]!==void 0;p===!0&&(h("update:modelValue",!1),s=v,u.nextTick(()=>{s===v&&(s=void 0)})),(a.modelValue===null||p===!1)&&H(v)}function H(v){e.value!==!1&&(e.value=!1,h("beforeHide",v),l!==void 0?l(v):h("hide",v))}function C(v){a.disable===!0&&v===!0?a["onUpdate:modelValue"]!==void 0&&h("update:modelValue",!1):v===!0!==e.value&&(v===!0?r:H)(s)}u.watch(()=>a.modelValue,C),o!==void 0&&g.vmHasRouter(i)===!0&&u.watch(()=>d.$route.fullPath,()=>{o.value===!0&&e.value===!0&&f()}),u.onMounted(()=>{C(a.modelValue)});const M={show:y,hide:f,toggle:w};return Object.assign(d,M),M}const re={};let Ne=1,je=document.body;function Ge(e,t){const o=document.createElement("div");if(o.id=t!==void 0?`q-portal--${t}--${Ne++}`:e,re.globalNodes!==void 0){const n=re.globalNodes.class;n!==void 0&&(o.className=n)}return je.appendChild(o),o}function Xe(e){e.remove()}const A=[];function Ye(e,t){do{if(e.$options.name==="QMenu"){if(e.hide(t),e.$props.separateClosePopup===!0)return g.getParentProxy(e)}else if(e.__qPortal===!0){const o=g.getParentProxy(e);return o!==void 0&&o.$options.name==="QPopupProxy"?(e.hide(t),o):e}e=g.getParentProxy(e)}while(e!=null)}const Ze=g.createComponent({name:"QPortal",setup(e,{slots:t}){return()=>t.default()}});function Je(e){for(e=e.parent;e!=null;){if(e.type.name==="QGlobalDialog")return!0;if(e.type.name==="QDialog"||e.type.name==="QMenu")return!1;e=e.parent}return!1}function ye(e,t,o,n){const l=u.ref(!1),m=u.ref(!1);let i=null;const a={},h=n==="dialog"&&Je(e);function d(w){if(w===!0){ue(a),m.value=!0;return}m.value=!1,l.value===!1&&(h===!1&&i===null&&(i=Ge(!1,n)),l.value=!0,A.push(e.proxy),ze(a))}function s(w){if(m.value=!1,w!==!0)return;ue(a),l.value=!1;const y=A.indexOf(e.proxy);y!==-1&&A.splice(y,1),i!==null&&(Xe(i),i=null)}return u.onUnmounted(()=>{s(!0)}),e.proxy.__qPortal=!0,F.injectProp(e.proxy,"contentEl",()=>t.value),{showPortal:d,hidePortal:s,portalIsActive:l,portalIsAccessible:m,renderPortal:()=>h===!0?o():l.value===!0?[u.h(u.Teleport,{to:i},u.h(Ze,o))]:void 0}}const xe={transitionShow:{type:String,default:"fade"},transitionHide:{type:String,default:"fade"},transitionDuration:{type:[String,Number],default:300}};function be(e,t=()=>{},o=()=>{}){return{transitionProps:u.computed(()=>{const n=`q-transition--${e.transitionShow||t()}`,l=`q-transition--${e.transitionHide||o()}`;return{appear:!0,enterFromClass:`${n}-enter-from`,enterActiveClass:`${n}-enter-active`,enterToClass:`${n}-enter-to`,leaveFromClass:`${l}-leave-from`,leaveActiveClass:`${l}-leave-active`,leaveToClass:`${l}-leave-to`}}),transitionStyle:u.computed(()=>`--q-transition-duration: ${e.transitionDuration}ms`)}}function Te(){let e;const t=u.getCurrentInstance();function o(){e=void 0}return u.onDeactivated(o),u.onBeforeUnmount(o),{removeTick:o,registerTick(n){e=n,u.nextTick(()=>{e===n&&(g.vmIsDestroyed(t)===!1&&e(),e=void 0)})}}}function Ee(){let e=null;const t=u.getCurrentInstance();function o(){e!==null&&(clearTimeout(e),e=null)}return u.onDeactivated(o),u.onBeforeUnmount(o),{removeTimeout:o,registerTimeout(n,l){o(),g.vmIsDestroyed(t)===!1&&(e=setTimeout(()=>{e=null,n()},l))}}}const et=[Element,String],tt=[null,document,document.body,document.scrollingElement,document.documentElement];function ot(e,t){let o=g.getElement(t);if(o===void 0){if(e==null)return window;o=e.closest(".scroll,.scroll-y,.overflow-auto")}return tt.includes(o)?window:o}function nt(e){return e===window?window.pageYOffset||window.scrollY||document.body.scrollTop||0:e.scrollTop}function lt(e){return e===window?window.pageXOffset||window.scrollX||document.body.scrollLeft||0:e.scrollLeft}let I;function it(){if(I!==void 0)return I;const e=document.createElement("p"),t=document.createElement("div");g.css(e,{width:"100%",height:"200px"}),g.css(t,{position:"absolute",top:"0px",left:"0px",visibility:"hidden",width:"200px",height:"150px",overflow:"hidden"}),t.appendChild(e),document.body.appendChild(t);const o=e.offsetWidth;t.style.overflow="scroll";let n=e.offsetWidth;return o===n&&(n=t.clientWidth),t.remove(),I=o-n,I}function ut(e,t=!0){return!e||e.nodeType!==Node.ELEMENT_NODE?!1:t?e.scrollHeight>e.clientHeight&&(e.classList.contains("scroll")||e.classList.contains("overflow-auto")||["auto","scroll"].includes(window.getComputedStyle(e)["overflow-y"])):e.scrollWidth>e.clientWidth&&(e.classList.contains("scroll")||e.classList.contains("overflow-auto")||["auto","scroll"].includes(window.getComputedStyle(e)["overflow-x"]))}const W=[];let B;function rt(e){B=e.keyCode===27}function at(){B===!0&&(B=!1)}function st(e){B===!0&&(B=!1,g.isKeyCode(e,27)===!0&&W[W.length-1](e))}function Ce(e){window[e]("keydown",rt),window[e]("blur",at),window[e]("keyup",st),B=!1}function Pe(e){F.client.is.desktop===!0&&(W.push(e),W.length===1&&Ce("addEventListener"))}function G(e){const t=W.indexOf(e);t!==-1&&(W.splice(t,1),W.length===0&&Ce("removeEventListener"))}const{notPassiveCapture:z}=g.listenOpts,q=[];function O(e){const t=e.target;if(t===void 0||t.nodeType===8||t.classList.contains("no-pointer-events")===!0)return;let o=A.length-1;for(;o>=0;){const n=A[o].$;if(n.type.name==="QTooltip"){o--;continue}if(n.type.name!=="QDialog")break;if(n.props.seamless!==!0)return;o--}for(let n=q.length-1;n>=0;n--){const l=q[n];if((l.anchorEl.value===null||l.anchorEl.value.contains(t)===!1)&&(t===document.body||l.innerRef.value!==null&&l.innerRef.value.contains(t)===!1))e.qClickOutside=!0,l.onClickOutside(e);else return}}function ct(e){q.push(e),q.length===1&&(document.addEventListener("mousedown",O,z),document.addEventListener("touchstart",O,z))}function ae(e){const t=q.findIndex(o=>o===e);t!==-1&&(q.splice(t,1),q.length===0&&(document.removeEventListener("mousedown",O,z),document.removeEventListener("touchstart",O,z)))}let se,ce;function de(e){const t=e.split(" ");return t.length!==2?!1:["top","center","bottom"].includes(t[0])!==!0?(console.error("Anchor/Self position must start with one of top/center/bottom"),!1):["left","middle","right","start","end"].includes(t[1])!==!0?(console.error("Anchor/Self position must end with one of left/middle/right/start/end"),!1):!0}function dt(e){return e?!(e.length!==2||typeof e[0]!="number"||typeof e[1]!="number"):!0}const X={"start#ltr":"left","start#rtl":"right","end#ltr":"right","end#rtl":"left"};["left","middle","right"].forEach(e=>{X[`${e}#ltr`]=e,X[`${e}#rtl`]=e});function fe(e,t){const o=e.split(" ");return{vertical:o[0],horizontal:X[`${o[1]}#${t===!0?"rtl":"ltr"}`]}}function ft(e,t){let{top:o,left:n,right:l,bottom:m,width:i,height:a}=e.getBoundingClientRect();return t!==void 0&&(o-=t[1],n-=t[0],m+=t[1],l+=t[0],i+=t[0],a+=t[1]),{top:o,bottom:m,height:a,left:n,right:l,width:i,middle:n+(l-n)/2,center:o+(m-o)/2}}function mt(e,t,o){let{top:n,left:l}=e.getBoundingClientRect();return n+=t.top,l+=t.left,o!==void 0&&(n+=o[1],l+=o[0]),{top:n,bottom:n+1,height:1,left:l,right:l+1,width:1,middle:l,center:n}}function ht(e,t){return{top:0,center:t/2,bottom:t,left:0,middle:e/2,right:e}}function me(e,t,o,n){return{top:e[o.vertical]-t[n.vertical],left:e[o.horizontal]-t[n.horizontal]}}function Se(e,t=0){if(e.targetEl===null||e.anchorEl===null||t>5)return;if(e.targetEl.offsetHeight===0||e.targetEl.offsetWidth===0){setTimeout(()=>{Se(e,t+1)},10);return}const{targetEl:o,offset:n,anchorEl:l,anchorOrigin:m,selfOrigin:i,absoluteOffset:a,fit:h,cover:d,maxHeight:s,maxWidth:w}=e;if(F.client.is.ios===!0&&window.visualViewport!==void 0){const $=document.body.style,{offsetLeft:T,offsetTop:E}=window.visualViewport;T!==se&&($.setProperty("--q-pe-left",T+"px"),se=T),E!==ce&&($.setProperty("--q-pe-top",E+"px"),ce=E)}const{scrollLeft:y,scrollTop:r}=o,f=a===void 0?ft(l,d===!0?[0,0]:n):mt(l,a,n);Object.assign(o.style,{top:0,left:0,minWidth:null,minHeight:null,maxWidth:w,maxHeight:s,visibility:"visible"});const{offsetWidth:H,offsetHeight:C}=o,{elWidth:M,elHeight:v}=h===!0||d===!0?{elWidth:Math.max(f.width,H),elHeight:d===!0?Math.max(f.height,C):C}:{elWidth:H,elHeight:C};let p={maxWidth:w,maxHeight:s};(h===!0||d===!0)&&(p.minWidth=f.width+"px",d===!0&&(p.minHeight=f.height+"px")),Object.assign(o.style,p);const P=ht(M,v);let x=me(f,P,m,i);if(a===void 0||n===void 0)N(x,f,P,m,i);else{const{top:$,left:T}=x;N(x,f,P,m,i);let E=!1;if(x.top!==$){E=!0;const S=2*n[1];f.center=f.top-=S,f.bottom-=S+2}if(x.left!==T){E=!0;const S=2*n[0];f.middle=f.left-=S,f.right-=S+2}E===!0&&(x=me(f,P,m,i),N(x,f,P,m,i))}p={top:x.top+"px",left:x.left+"px"},x.maxHeight!==void 0&&(p.maxHeight=x.maxHeight+"px",f.height>x.maxHeight&&(p.minHeight=p.maxHeight)),x.maxWidth!==void 0&&(p.maxWidth=x.maxWidth+"px",f.width>x.maxWidth&&(p.minWidth=p.maxWidth)),Object.assign(o.style,p),o.scrollTop!==r&&(o.scrollTop=r),o.scrollLeft!==y&&(o.scrollLeft=y)}function N(e,t,o,n,l){const m=o.bottom,i=o.right,a=it(),h=window.innerHeight-a,d=document.body.clientWidth;if(e.top<0||e.top+m>h)if(l.vertical==="center")e.top=t[n.vertical]>h/2?Math.max(0,h-m):0,e.maxHeight=Math.min(m,h);else if(t[n.vertical]>h/2){const s=Math.min(h,n.vertical==="center"?t.center:n.vertical===l.vertical?t.bottom:t.top);e.maxHeight=Math.min(m,s),e.top=Math.max(0,s-m)}else e.top=Math.max(0,n.vertical==="center"?t.center:n.vertical===l.vertical?t.top:t.bottom),e.maxHeight=Math.min(m,h-e.top);if(e.left<0||e.left+i>d)if(e.maxWidth=Math.min(i,d),l.horizontal==="middle")e.left=t[n.horizontal]>d/2?Math.max(0,d-i):0;else if(t[n.horizontal]>d/2){const s=Math.min(d,n.horizontal==="middle"?t.middle:n.horizontal===l.horizontal?t.right:t.left);e.maxWidth=Math.min(i,s),e.left=Math.max(0,s-e.maxWidth)}else e.left=Math.max(0,n.horizontal==="middle"?t.middle:n.horizontal===l.horizontal?t.left:t.right),e.maxWidth=Math.min(i,d-e.left)}const vt=g.createComponent({name:"QMenu",inheritAttrs:!1,props:{...Qe,...ge,...g.useDarkProps,...xe,persistent:Boolean,autoClose:Boolean,separateClosePopup:Boolean,noRouteDismiss:Boolean,noRefocus:Boolean,noFocus:Boolean,fit:Boolean,cover:Boolean,square:Boolean,anchor:{type:String,validator:de},self:{type:String,validator:de},offset:{type:Array,validator:dt},scrollTarget:et,touchPosition:Boolean,maxHeight:{type:String,default:null},maxWidth:{type:String,default:null}},emits:[...pe,"click","escapeKey"],setup(e,{slots:t,emit:o,attrs:n}){let l=null,m,i,a;const h=u.getCurrentInstance(),{proxy:d}=h,{$q:s}=d,w=u.ref(null),y=u.ref(!1),r=u.computed(()=>e.persistent!==!0&&e.noRouteDismiss!==!0),f=g.useDark(e,s),{registerTick:H,removeTick:C}=Te(),{registerTimeout:M}=Ee(),{transitionProps:v,transitionStyle:p}=be(e),{localScrollTarget:P,changeScrollEvent:x,unconfigureScrollTarget:$}=_e(e,oe),{anchorEl:T,canShow:E}=Ue({showing:y}),{hide:S}=we({showing:y,canShow:E,handleShow:qe,handleHide:Fe,hideOnRouteChange:r,processOnMount:!0}),{showPortal:Y,hidePortal:Z,renderPortal:He}=ye(h,w,Be,"menu"),V={anchorEl:T,innerRef:w,onClickOutside(c){if(e.persistent!==!0&&y.value===!0)return S(c),(c.type==="touchstart"||c.target.classList.contains("q-dialog__backdrop"))&&g.stopAndPrevent(c),!0}},J=u.computed(()=>fe(e.anchor||(e.cover===!0?"center middle":"bottom start"),s.lang.rtl)),Me=u.computed(()=>e.cover===!0?J.value:fe(e.self||"top start",s.lang.rtl)),ke=u.computed(()=>(e.square===!0?" q-menu--square":"")+(f.value===!0?" q-menu--dark q-dark":"")),We=u.computed(()=>e.autoClose===!0?{onClick:$e}:{}),ee=u.computed(()=>y.value===!0&&e.persistent!==!0);u.watch(ee,c=>{c===!0?(Pe(Q),ct(V)):(G(Q),ae(V))});function K(){ve(()=>{let c=w.value;c&&c.contains(document.activeElement)!==!0&&(c=c.querySelector("[autofocus][tabindex], [data-autofocus][tabindex]")||c.querySelector("[autofocus] [tabindex], [data-autofocus] [tabindex]")||c.querySelector("[autofocus], [data-autofocus]")||c,c.focus({preventScroll:!0}))})}function qe(c){if(l=e.noRefocus===!1?document.activeElement:null,F.addFocusout(ne),Y(),oe(),m=void 0,c!==void 0&&(e.touchPosition||e.contextMenu)){const U=g.position(c);if(U.left!==void 0){const{top:Le,left:Ae}=T.value.getBoundingClientRect();m={left:U.left-Ae,top:U.top-Le}}}i===void 0&&(i=u.watch(()=>s.screen.width+"|"+s.screen.height+"|"+e.self+"|"+e.anchor+"|"+s.lang.rtl,L)),e.noFocus!==!0&&document.activeElement.blur(),H(()=>{L(),e.noFocus!==!0&&K()}),M(()=>{s.platform.is.ios===!0&&(a=e.autoClose,w.value.click()),L(),Y(!0),o("show",c)},e.transitionDuration)}function Fe(c){C(),Z(),te(!0),l!==null&&(c===void 0||c.qClickOutside!==!0)&&(((c&&c.type.indexOf("key")===0?l.closest('[tabindex]:not([tabindex^="-"])'):void 0)||l).focus(),l=null),M(()=>{Z(!0),o("hide",c)},e.transitionDuration)}function te(c){m=void 0,i!==void 0&&(i(),i=void 0),(c===!0||y.value===!0)&&(F.removeFocusout(ne),$(),ae(V),G(Q)),c!==!0&&(l=null)}function oe(){(T.value!==null||e.scrollTarget!==void 0)&&(P.value=ot(T.value,e.scrollTarget),x(P.value,L))}function $e(c){a!==!0?(Ye(d,c),o("click",c)):a=!1}function ne(c){ee.value===!0&&e.noFocus!==!0&&g.childHasFocus(w.value,c.target)!==!0&&K()}function Q(c){o("escapeKey"),S(c)}function L(){Se({targetEl:w.value,offset:e.offset,anchorEl:T.value,anchorOrigin:J.value,selfOrigin:Me.value,absoluteOffset:m,fit:e.fit,cover:e.cover,maxHeight:e.maxHeight,maxWidth:e.maxWidth})}function Be(){return u.h(u.Transition,v.value,()=>y.value===!0?u.h("div",{role:"menu",...n,ref:w,tabindex:-1,class:["q-menu q-position-engine scroll"+ke.value,n.class],style:[n.style,p.value],...We.value},g.hSlot(t.default)):null)}return u.onBeforeUnmount(te),Object.assign(d,{focus:K,updatePosition:L}),He}});exports.QMenu=vt;exports.addEscapeKey=Pe;exports.addFocusFn=ve;exports.getHorizontalScrollPosition=lt;exports.getVerticalScrollPosition=nt;exports.hasScrollbar=ut;exports.removeEscapeKey=G;exports.removeFocusFn=Oe;exports.useId=Ie;exports.useModelToggle=we;exports.useModelToggleEmits=pe;exports.useModelToggleProps=ge;exports.usePortal=ye;exports.useTick=Te;exports.useTimeout=Ee;exports.useTransition=be;exports.useTransitionProps=xe;
|