@quidgest/ui 0.14.9 → 0.14.11
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/manifest/components.json +1 -0
- package/dist/ui.css +30 -4
- package/dist/ui.esm.js +1228 -1028
- package/dist/ui.js +22 -22
- package/dist/ui.min.css +1 -1
- package/dist/ui.min.js +90 -74
- package/dist/ui.scss +30 -5
- package/esm/components/QCombobox/QCombobox.d.ts +5 -0
- package/esm/components/QCombobox/QCombobox.d.ts.map +1 -1
- package/esm/components/QDropdownMenu/QDropdownMenu.d.ts +16 -0
- package/esm/components/QDropdownMenu/QDropdownMenu.d.ts.map +1 -0
- package/esm/components/QDropdownMenu/QDropdownMenu.vue.js +38 -0
- package/esm/components/QDropdownMenu/QDropdownMenu.vue2.js +4 -0
- package/esm/components/QDropdownMenu/QDropdownMenuContent.d.ts +148 -0
- package/esm/components/QDropdownMenu/QDropdownMenuContent.d.ts.map +1 -0
- package/esm/components/QDropdownMenu/QDropdownMenuContent.vue.js +153 -0
- package/esm/components/QDropdownMenu/QDropdownMenuContent.vue2.js +4 -0
- package/esm/components/QDropdownMenu/index.d.ts +4 -0
- package/esm/components/QDropdownMenu/index.d.ts.map +1 -0
- package/esm/components/QDropdownMenu/index.js +6 -0
- package/esm/components/QDropdownMenu/types.d.ts +95 -0
- package/esm/components/QDropdownMenu/types.d.ts.map +1 -0
- package/esm/components/QDropdownMenu/types.js +8 -0
- package/esm/components/QList/QList.d.ts +74 -0
- package/esm/components/QList/QList.d.ts.map +1 -1
- package/esm/components/QList/QList.vue.js +118 -100
- package/esm/components/QList/QListItem.d.ts +2 -0
- package/esm/components/QList/QListItem.d.ts.map +1 -1
- package/esm/components/QList/QListItem.vue.js +32 -30
- package/esm/components/QList/types.d.ts +0 -7
- package/esm/components/QList/types.d.ts.map +1 -1
- package/esm/components/QOverlay/QOverlay.d.ts +1 -0
- package/esm/components/QOverlay/QOverlay.d.ts.map +1 -1
- package/esm/components/QOverlay/QOverlay.vue.js +87 -82
- package/esm/components/QOverlay/types.d.ts +4 -0
- package/esm/components/QOverlay/types.d.ts.map +1 -1
- package/esm/components/QSelect/QSelect.d.ts +5 -0
- package/esm/components/QSelect/QSelect.d.ts.map +1 -1
- package/esm/components/index.d.ts +1 -0
- package/esm/components/index.d.ts.map +1 -1
- package/esm/components/index.js +44 -42
- package/esm/composables/overlay.d.ts +4 -0
- package/esm/composables/overlay.d.ts.map +1 -1
- package/esm/composables/overlay.js +69 -62
- package/esm/index.d.ts +1 -0
- package/package.json +2 -33
- /package/{LICENSE.md → LICENSE} +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { defineComponent as
|
|
2
|
-
import { QListItemGroup as
|
|
3
|
-
const
|
|
1
|
+
import { defineComponent as H, mergeModels as K, useModel as N, ref as k, computed as F, openBlock as d, createBlock as x, resolveDynamicComponent as z, normalizeClass as J, withCtx as b, createElementBlock as B, Fragment as L, renderList as M, unref as _, renderSlot as D } from "vue";
|
|
2
|
+
import { QListItemGroup as P, QListItem as W } from "./index.js";
|
|
3
|
+
const Z = /* @__PURE__ */ H({
|
|
4
4
|
__name: "QList",
|
|
5
|
-
props: /* @__PURE__ */
|
|
5
|
+
props: /* @__PURE__ */ K({
|
|
6
6
|
highlighted: { type: [String, Number, Boolean, Symbol], default: void 0 },
|
|
7
7
|
items: {},
|
|
8
8
|
groups: { default: () => [] },
|
|
@@ -18,150 +18,168 @@ const P = /* @__PURE__ */ T({
|
|
|
18
18
|
modelModifiers: {}
|
|
19
19
|
}),
|
|
20
20
|
emits: ["update:modelValue"],
|
|
21
|
-
setup(
|
|
22
|
-
const
|
|
23
|
-
(e) =>
|
|
24
|
-
) : [{ id: "", title: "" }]),
|
|
25
|
-
function
|
|
26
|
-
|
|
27
|
-
}
|
|
28
|
-
function
|
|
29
|
-
|
|
30
|
-
}
|
|
31
|
-
function
|
|
32
|
-
|
|
33
|
-
}
|
|
34
|
-
function
|
|
35
|
-
var
|
|
36
|
-
if ((
|
|
21
|
+
setup(y, { expose: E }) {
|
|
22
|
+
const l = y, f = N(y, "modelValue"), p = k(!1), C = F(() => i.value.length > 1 ? "div" : "ul"), i = F(() => l.groups.length ? l.groups.filter(
|
|
23
|
+
(e) => l.items.some((t) => t.group === e.id)
|
|
24
|
+
) : [{ id: "", title: "" }]), g = k(null), v = k(null);
|
|
25
|
+
function R(e) {
|
|
26
|
+
f.value = e;
|
|
27
|
+
}
|
|
28
|
+
function $() {
|
|
29
|
+
p.value = !0;
|
|
30
|
+
}
|
|
31
|
+
function q() {
|
|
32
|
+
p.value = !1;
|
|
33
|
+
}
|
|
34
|
+
function O(e) {
|
|
35
|
+
var s;
|
|
36
|
+
if ((s = g.value) != null && s.contains(e.relatedTarget))
|
|
37
37
|
return;
|
|
38
38
|
let t;
|
|
39
|
-
|
|
40
|
-
const
|
|
41
|
-
|
|
39
|
+
f.value ? t = l.items.findIndex((o) => o[l.itemValue] === f.value) : t = h();
|
|
40
|
+
const n = p.value;
|
|
41
|
+
r(t, n);
|
|
42
42
|
}
|
|
43
|
-
function
|
|
43
|
+
function Q(e) {
|
|
44
44
|
switch (["ArrowDown", "ArrowUp", "Home", "End"].includes(e.key) && e.preventDefault(), e.key) {
|
|
45
45
|
case "ArrowDown":
|
|
46
|
-
|
|
46
|
+
m("next");
|
|
47
47
|
break;
|
|
48
48
|
case "ArrowUp":
|
|
49
|
-
|
|
49
|
+
m("prev");
|
|
50
50
|
break;
|
|
51
51
|
case "Home":
|
|
52
|
-
|
|
52
|
+
m("first");
|
|
53
53
|
break;
|
|
54
54
|
case "End":
|
|
55
|
-
|
|
55
|
+
m("last");
|
|
56
56
|
break;
|
|
57
57
|
}
|
|
58
58
|
}
|
|
59
|
-
function
|
|
59
|
+
function m(e) {
|
|
60
60
|
switch (e) {
|
|
61
61
|
case "next":
|
|
62
62
|
case "prev":
|
|
63
|
-
|
|
63
|
+
r(j(e));
|
|
64
64
|
break;
|
|
65
65
|
case "first":
|
|
66
|
-
|
|
66
|
+
r(h());
|
|
67
67
|
break;
|
|
68
68
|
case "last":
|
|
69
|
-
|
|
69
|
+
r(w());
|
|
70
70
|
break;
|
|
71
71
|
}
|
|
72
72
|
}
|
|
73
|
-
function
|
|
74
|
-
var
|
|
75
|
-
(
|
|
73
|
+
function r(e, t = !1) {
|
|
74
|
+
var s;
|
|
75
|
+
(s = a()[e]) == null || s.focus({ preventScroll: t });
|
|
76
76
|
}
|
|
77
|
-
function
|
|
77
|
+
function a() {
|
|
78
78
|
var t;
|
|
79
|
-
const e = (t =
|
|
79
|
+
const e = (t = g.value) == null ? void 0 : t.querySelectorAll("li");
|
|
80
80
|
return e ? Array.from(e) : [];
|
|
81
81
|
}
|
|
82
|
-
function
|
|
83
|
-
return
|
|
82
|
+
function T(e) {
|
|
83
|
+
return a()[e];
|
|
84
84
|
}
|
|
85
|
-
function
|
|
86
|
-
return
|
|
85
|
+
function U() {
|
|
86
|
+
return a().indexOf(document.activeElement);
|
|
87
87
|
}
|
|
88
|
-
function
|
|
89
|
-
const e =
|
|
88
|
+
function h() {
|
|
89
|
+
const e = a(), t = e.find((n) => I(n));
|
|
90
90
|
return t ? e.indexOf(t) : -1;
|
|
91
91
|
}
|
|
92
|
-
function
|
|
93
|
-
const e =
|
|
92
|
+
function w() {
|
|
93
|
+
const e = a(), t = [...e].reverse().find((n) => I(n));
|
|
94
94
|
return t ? e.indexOf(t) : -1;
|
|
95
95
|
}
|
|
96
|
-
function
|
|
97
|
-
return t === "prev" && e
|
|
96
|
+
function A(e, t, n) {
|
|
97
|
+
return t === "prev" && e <= 0 || t === "next" && e === n.length - 1;
|
|
98
98
|
}
|
|
99
|
-
function
|
|
100
|
-
const t =
|
|
101
|
-
return
|
|
99
|
+
function j(e) {
|
|
100
|
+
const t = U();
|
|
101
|
+
return S(t, e);
|
|
102
102
|
}
|
|
103
|
-
function
|
|
104
|
-
const
|
|
105
|
-
if (
|
|
103
|
+
function S(e, t) {
|
|
104
|
+
const n = a();
|
|
105
|
+
if (A(e, t, n))
|
|
106
106
|
return e;
|
|
107
|
-
let
|
|
108
|
-
for (; !
|
|
109
|
-
if (
|
|
107
|
+
let s = e + (t === "next" ? 1 : -1);
|
|
108
|
+
for (; !I(n[s]); ) {
|
|
109
|
+
if (A(s, t, n))
|
|
110
110
|
return e;
|
|
111
|
-
|
|
111
|
+
s += t === "next" ? 1 : -1;
|
|
112
112
|
}
|
|
113
|
-
return
|
|
113
|
+
return s;
|
|
114
114
|
}
|
|
115
|
-
function
|
|
115
|
+
function I(e) {
|
|
116
116
|
return e.tabIndex === -2;
|
|
117
117
|
}
|
|
118
|
-
function
|
|
119
|
-
return e ?
|
|
120
|
-
}
|
|
121
|
-
return
|
|
122
|
-
focusItem:
|
|
123
|
-
getItem:
|
|
124
|
-
getAdjacentItemIndex:
|
|
125
|
-
getFirstFocusableItemIndex:
|
|
126
|
-
getLastFocusableItemIndex:
|
|
127
|
-
}), (e, t) => (
|
|
118
|
+
function G(e) {
|
|
119
|
+
return e ? l.items.filter((t) => t.group === e) : l.items;
|
|
120
|
+
}
|
|
121
|
+
return E({
|
|
122
|
+
focusItem: r,
|
|
123
|
+
getItem: T,
|
|
124
|
+
getAdjacentItemIndex: S,
|
|
125
|
+
getFirstFocusableItemIndex: h,
|
|
126
|
+
getLastFocusableItemIndex: w
|
|
127
|
+
}), (e, t) => (d(), x(z(C.value), {
|
|
128
128
|
ref_key: "listRef",
|
|
129
|
-
ref:
|
|
130
|
-
class:
|
|
129
|
+
ref: g,
|
|
130
|
+
class: J(["q-list", { "q-list--disabled": l.disabled }, l.class]),
|
|
131
131
|
role: "listbox",
|
|
132
|
-
tabindex:
|
|
133
|
-
onFocus:
|
|
134
|
-
onMousedown:
|
|
135
|
-
onMouseup:
|
|
136
|
-
onKeydown:
|
|
132
|
+
tabindex: l.disabled ? -1 : 0,
|
|
133
|
+
onFocus: O,
|
|
134
|
+
onMousedown: $,
|
|
135
|
+
onMouseup: q,
|
|
136
|
+
onKeydown: Q
|
|
137
137
|
}, {
|
|
138
|
-
default:
|
|
139
|
-
(
|
|
140
|
-
|
|
138
|
+
default: b(() => [
|
|
139
|
+
(d(!0), B(
|
|
140
|
+
L,
|
|
141
141
|
null,
|
|
142
|
-
|
|
143
|
-
id:
|
|
144
|
-
key:
|
|
145
|
-
title:
|
|
142
|
+
M(i.value, (n, s) => (d(), x(_(P), {
|
|
143
|
+
id: n.id,
|
|
144
|
+
key: n.id,
|
|
145
|
+
title: i.value.length === 1 ? void 0 : n.title
|
|
146
146
|
}, {
|
|
147
|
-
default:
|
|
148
|
-
(
|
|
149
|
-
|
|
147
|
+
default: b(() => [
|
|
148
|
+
(d(!0), B(
|
|
149
|
+
L,
|
|
150
150
|
null,
|
|
151
|
-
|
|
152
|
-
key:
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
151
|
+
M(G(n.id), (o, V) => (d(), x(_(W), {
|
|
152
|
+
key: o[l.itemValue],
|
|
153
|
+
ref_for: !0,
|
|
154
|
+
ref_key: "listItemsRef",
|
|
155
|
+
ref: v,
|
|
156
|
+
value: o[l.itemValue],
|
|
157
|
+
label: o[l.itemLabel],
|
|
158
|
+
description: o.description,
|
|
159
|
+
icon: o.icon,
|
|
160
|
+
disabled: l.disabled || n.disabled || o.disabled,
|
|
161
|
+
highlighted: l.highlighted === o[l.itemValue],
|
|
162
|
+
selected: e.selectable && f.value === o[l.itemValue],
|
|
163
|
+
onSelect: R
|
|
161
164
|
}, {
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
+
append: b(() => {
|
|
166
|
+
var u, c;
|
|
167
|
+
return [
|
|
168
|
+
D(e.$slots, "item.append", {
|
|
169
|
+
item: o,
|
|
170
|
+
element: (c = (u = v.value) == null ? void 0 : u[V + s * i.value.length]) == null ? void 0 : c.$el
|
|
171
|
+
})
|
|
172
|
+
];
|
|
173
|
+
}),
|
|
174
|
+
default: b(() => {
|
|
175
|
+
var u, c;
|
|
176
|
+
return [
|
|
177
|
+
D(e.$slots, "item", {
|
|
178
|
+
item: o,
|
|
179
|
+
element: (c = (u = v.value) == null ? void 0 : u[V + s * i.value.length]) == null ? void 0 : c.$el
|
|
180
|
+
})
|
|
181
|
+
];
|
|
182
|
+
}),
|
|
165
183
|
_: 2
|
|
166
184
|
/* DYNAMIC */
|
|
167
185
|
}, 1032, ["value", "label", "description", "icon", "disabled", "highlighted", "selected"]))),
|
|
@@ -182,5 +200,5 @@ const P = /* @__PURE__ */ T({
|
|
|
182
200
|
}
|
|
183
201
|
});
|
|
184
202
|
export {
|
|
185
|
-
|
|
203
|
+
Z as default
|
|
186
204
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"QListItem.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QList/QListItem.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"QListItem.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QList/QListItem.vue"],"names":[],"mappings":"AA8CA;AA2FC,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,SAAS,CAAA;AAC7C,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAA;AAGlD,OAAO,EAAE,aAAa,EAAE,MAAM,SAAS,CAAA;AA4CxC,iBAAS,cAAc;WAqFT,OAAO,IAA6B;;yBAVrB,GAAG;yBACH,GAAG;wBACH,GAAG;;;;EAa/B;AAcD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;uFASnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAgBpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { defineComponent as
|
|
1
|
+
import { defineComponent as k, openBlock as i, createElementBlock as c, unref as o, normalizeClass as v, withModifiers as g, renderSlot as n, createElementVNode as l, createBlock as r, normalizeProps as p, mergeProps as m, createCommentVNode as d, createTextVNode as q, toDisplayString as u, createVNode as B, guardReactiveProps as N } from "vue";
|
|
2
2
|
import { QIcon as a } from "../QIcon/index.js";
|
|
3
3
|
import { DEFAULT_ICONS as S } from "./types.js";
|
|
4
4
|
import { useId as C } from "../../composables/uid.js";
|
|
5
|
-
const
|
|
5
|
+
const D = ["id", "data-key", "tabindex", "aria-label", "aria-selected"], E = { class: "q-list-item__container" }, I = { class: "q-list-item__content" }, P = {
|
|
6
6
|
key: 0,
|
|
7
7
|
class: "q-list-item__description"
|
|
8
|
-
},
|
|
8
|
+
}, V = { class: "q-list-item__check-container" }, K = /* @__PURE__ */ k({
|
|
9
9
|
__name: "QListItem",
|
|
10
10
|
props: {
|
|
11
11
|
value: { type: [String, Number, Boolean, Symbol] },
|
|
@@ -18,20 +18,20 @@ const x = ["id", "data-key", "tabindex", "aria-label", "aria-selected"], D = { c
|
|
|
18
18
|
icons: { default: () => S }
|
|
19
19
|
},
|
|
20
20
|
emits: ["select"],
|
|
21
|
-
setup(
|
|
22
|
-
const e =
|
|
23
|
-
function
|
|
24
|
-
e.disabled ||
|
|
21
|
+
setup(f, { emit: _ }) {
|
|
22
|
+
const e = f, h = _, b = C();
|
|
23
|
+
function s() {
|
|
24
|
+
e.disabled || h("select", e.value);
|
|
25
25
|
}
|
|
26
|
-
function
|
|
27
|
-
t.key === "Tab" &&
|
|
26
|
+
function y(t) {
|
|
27
|
+
t.key === "Tab" && s(), (t.key === "Enter" || t.key === " ") && (t.preventDefault(), t.stopPropagation(), s());
|
|
28
28
|
}
|
|
29
|
-
return (t,
|
|
30
|
-
id: o(
|
|
29
|
+
return (t, w) => (i(), c("li", {
|
|
30
|
+
id: o(b),
|
|
31
31
|
"data-key": e.value,
|
|
32
32
|
role: "option",
|
|
33
33
|
tabindex: e.disabled ? void 0 : -2,
|
|
34
|
-
class:
|
|
34
|
+
class: v([
|
|
35
35
|
"q-list-item",
|
|
36
36
|
{
|
|
37
37
|
"q-list-item--disabled": e.disabled,
|
|
@@ -41,30 +41,31 @@ const x = ["id", "data-key", "tabindex", "aria-label", "aria-selected"], D = { c
|
|
|
41
41
|
]),
|
|
42
42
|
"aria-label": e.label,
|
|
43
43
|
"aria-selected": e.disabled ? void 0 : e.selected,
|
|
44
|
-
onKeydown:
|
|
45
|
-
onClick:
|
|
44
|
+
onKeydown: y,
|
|
45
|
+
onClick: g(s, ["stop", "prevent"])
|
|
46
46
|
}, [
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
47
|
+
n(t.$slots, "prepend"),
|
|
48
|
+
l("div", E, [
|
|
49
|
+
l("div", I, [
|
|
50
|
+
n(t.$slots, "default", {}, () => [
|
|
51
|
+
e.icon ? (i(), r(
|
|
51
52
|
o(a),
|
|
52
|
-
|
|
53
|
+
p(m({ key: 0 }, e.icon)),
|
|
53
54
|
null,
|
|
54
55
|
16
|
|
55
56
|
/* FULL_PROPS */
|
|
56
|
-
)) :
|
|
57
|
+
)) : d("v-if", !0),
|
|
57
58
|
q(
|
|
58
|
-
" " +
|
|
59
|
+
" " + u(e.label),
|
|
59
60
|
1
|
|
60
61
|
/* TEXT */
|
|
61
62
|
)
|
|
62
63
|
])
|
|
63
64
|
]),
|
|
64
|
-
e.description ? (i(),
|
|
65
|
+
e.description ? (i(), c("div", P, [
|
|
65
66
|
B(
|
|
66
67
|
o(a),
|
|
67
|
-
|
|
68
|
+
p(N(e.icons.description)),
|
|
68
69
|
null,
|
|
69
70
|
16
|
|
70
71
|
/* FULL_PROPS */
|
|
@@ -72,24 +73,25 @@ const x = ["id", "data-key", "tabindex", "aria-label", "aria-selected"], D = { c
|
|
|
72
73
|
l(
|
|
73
74
|
"span",
|
|
74
75
|
null,
|
|
75
|
-
|
|
76
|
+
u(e.description),
|
|
76
77
|
1
|
|
77
78
|
/* TEXT */
|
|
78
79
|
)
|
|
79
|
-
])) :
|
|
80
|
+
])) : d("v-if", !0)
|
|
80
81
|
]),
|
|
81
|
-
|
|
82
|
-
|
|
82
|
+
n(t.$slots, "append"),
|
|
83
|
+
l("div", V, [
|
|
84
|
+
e.selected ? (i(), r(
|
|
83
85
|
o(a),
|
|
84
86
|
m({ key: 0 }, e.icons.check, { class: "q-list-item__check" }),
|
|
85
87
|
null,
|
|
86
88
|
16
|
|
87
89
|
/* FULL_PROPS */
|
|
88
|
-
)) :
|
|
90
|
+
)) : d("v-if", !0)
|
|
89
91
|
])
|
|
90
|
-
], 42,
|
|
92
|
+
], 42, D));
|
|
91
93
|
}
|
|
92
94
|
});
|
|
93
95
|
export {
|
|
94
|
-
|
|
96
|
+
K as default
|
|
95
97
|
};
|
|
@@ -43,13 +43,6 @@ export type QListProps = {
|
|
|
43
43
|
*/
|
|
44
44
|
selectable?: boolean;
|
|
45
45
|
};
|
|
46
|
-
export type ListItem = {
|
|
47
|
-
[key: string]: any;
|
|
48
|
-
icon?: Icon;
|
|
49
|
-
selected?: boolean;
|
|
50
|
-
group?: string;
|
|
51
|
-
disabled?: boolean;
|
|
52
|
-
};
|
|
53
46
|
export type QListItemProps = {
|
|
54
47
|
/**
|
|
55
48
|
* The value of the item.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/QList/types.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,oBAAoB,CAAA;AAC9C,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAA;AAElD,MAAM,MAAM,IAAI,GAAG,IAAI,CAAC,cAAc,EAAE,OAAO,GAAG,OAAO,CAAC,GAAG;IAG5D,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAA;CAClB,CAAA;AAED,MAAM,MAAM,KAAK,GAAG,mBAAmB,GAAG;IACzC;;OAEG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAA;CAClB,CAAA;AAED,MAAM,MAAM,UAAU,GAAG;IACxB;;OAEG;IACH,WAAW,CAAC,EAAE,SAAS,CAAA;IAEvB;;OAEG;IACH,KAAK,EAAE,IAAI,EAAE,CAAA;IAEb;;OAEG;IACH,MAAM,CAAC,EAAE,KAAK,EAAE,CAAA;IAEhB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAA;IAElB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAA;IAElB;;OAEG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAA;IAElB;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,GAAG,OAAO,EAAE,CAAA;IAE1B;;OAEG;IACH,UAAU,CAAC,EAAE,OAAO,CAAA;CACpB,CAAA;AAED,MAAM,MAAM,
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/QList/types.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,oBAAoB,CAAA;AAC9C,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAA;AAElD,MAAM,MAAM,IAAI,GAAG,IAAI,CAAC,cAAc,EAAE,OAAO,GAAG,OAAO,CAAC,GAAG;IAG5D,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAA;CAClB,CAAA;AAED,MAAM,MAAM,KAAK,GAAG,mBAAmB,GAAG;IACzC;;OAEG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAA;CAClB,CAAA;AAED,MAAM,MAAM,UAAU,GAAG;IACxB;;OAEG;IACH,WAAW,CAAC,EAAE,SAAS,CAAA;IAEvB;;OAEG;IACH,KAAK,EAAE,IAAI,EAAE,CAAA;IAEb;;OAEG;IACH,MAAM,CAAC,EAAE,KAAK,EAAE,CAAA;IAEhB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAA;IAElB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAA;IAElB;;OAEG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAA;IAElB;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,GAAG,OAAO,EAAE,CAAA;IAE1B;;OAEG;IACH,UAAU,CAAC,EAAE,OAAO,CAAA;CACpB,CAAA;AAED,MAAM,MAAM,cAAc,GAAG;IAC5B;;OAEG;IACH,KAAK,EAAE,SAAS,CAAA;IAEhB;;OAEG;IACH,KAAK,EAAE,MAAM,CAAA;IAEb;;OAEG;IACH,IAAI,CAAC,EAAE,IAAI,CAAA;IAEX;;OAEG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAA;IAElB;;OAEG;IACH,WAAW,CAAC,EAAE,OAAO,CAAA;IAErB;;OAEG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAA;IAElB;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAA;IAEpB;;OAEG;IACH,KAAK,CAAC,EAAE,OAAO,aAAa,CAAA;CAC5B,CAAA;AAED,MAAM,MAAM,mBAAmB,GAAG;IACjC;;OAEG;IACH,EAAE,EAAE,MAAM,CAAA;IAEV;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAA;CACd,CAAA;AAED,KAAK,QAAQ,GAAG,OAAO,GAAG,aAAa,CAAA;AAGvC,eAAO,MAAM,aAAa,EAAE,MAAM,CAAC,QAAQ,EAAE,IAAI,CAOhD,CAAA"}
|
|
@@ -34,6 +34,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
34
34
|
backdropClass: string | unknown[];
|
|
35
35
|
delay: number;
|
|
36
36
|
offset: number;
|
|
37
|
+
crossOffset: number;
|
|
37
38
|
placement: import('../../composables/overlay').Placement;
|
|
38
39
|
trigger: import('../../composables/overlay').Trigger;
|
|
39
40
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"QOverlay.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QOverlay/QOverlay.vue"],"names":[],"mappings":"AAyCA;
|
|
1
|
+
{"version":3,"file":"QOverlay.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QOverlay/QOverlay.vue"],"names":[],"mappings":"AAyCA;AAqZC,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,SAAS,CAAA;AAQ7C,KAAK,WAAW,GAAG,aAAa,CAAC;AA2WjC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,OAAO,CAAC;CACpB,GAAG,WAAW,CAAC;AAKhB,iBAAS,cAAc;WA+FT,OAAO,IAA6B;;yBAVpB,GAAG;;;;;;;EAehC;AAsBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;6EAQnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAgBpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|