@quidgest/ui 0.16.46 → 0.16.48
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/json/api.json +23 -1
- package/dist/ui.css +17 -5
- package/dist/ui.esm.js +3800 -3784
- package/dist/ui.js +21 -21
- package/dist/ui.min.css +1 -1
- package/dist/ui.min.js +30 -30
- package/dist/ui.scss +20 -6
- package/esm/components/QCheckbox/QCheckbox.d.ts +1 -0
- package/esm/components/QCheckbox/QCheckbox.d.ts.map +1 -1
- package/esm/components/QCheckbox/QCheckbox.vue.js +41 -39
- package/esm/components/QCheckbox/index.d.ts +6 -0
- package/esm/components/QCheckbox/index.d.ts.map +1 -1
- package/esm/components/QCheckbox/types.d.ts +6 -0
- package/esm/components/QCheckbox/types.d.ts.map +1 -1
- package/esm/components/QOverlay/QOverlay.d.ts.map +1 -1
- package/esm/components/QOverlay/QOverlay.vue.js +40 -40
- package/esm/components/QRadioGroup/QRadioButton.d.ts.map +1 -1
- package/esm/components/QRadioGroup/QRadioButton.vue.js +38 -29
- package/esm/components/QRadioGroup/QRadioGroup.d.ts +1 -0
- package/esm/components/QRadioGroup/QRadioGroup.d.ts.map +1 -1
- package/esm/components/QRadioGroup/QRadioGroup.vue.js +21 -19
- package/esm/components/QRadioGroup/index.d.ts +6 -0
- package/esm/components/QRadioGroup/index.d.ts.map +1 -1
- package/esm/components/QRadioGroup/types.d.ts +6 -0
- package/esm/components/QRadioGroup/types.d.ts.map +1 -1
- package/esm/components/QSelect/QSelect.d.ts +10 -8
- package/esm/components/QSelect/QSelect.d.ts.map +1 -1
- package/esm/components/QSelect/QSelect.vue.js +128 -125
- package/esm/components/QSelect/index.d.ts +1 -0
- package/esm/components/QSelect/index.d.ts.map +1 -1
- package/esm/symbols/dismissibleLayer.d.ts.map +1 -1
- package/esm/symbols/dismissibleLayer.js +1 -1
- package/package.json +1 -1
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { defineComponent as de, mergeModels as F, useModel as fe, computed as
|
|
1
|
+
import { defineComponent as de, mergeModels as F, useModel as fe, computed as u, reactive as I, watch as P, ref as _, nextTick as g, onMounted as ve, onBeforeUnmount as pe, createElementBlock as k, openBlock as c, Fragment as me, createBlock as b, createCommentVNode as y, Teleport as ye, createVNode as B, Transition as z, withCtx as L, normalizeClass as U, normalizeStyle as N, unref as T, createElementVNode as he, mergeProps as we, renderSlot as ge } from "vue";
|
|
2
2
|
import { QDismissibleLayer as ke } from "../QDismissibleLayer/index.js";
|
|
3
3
|
import { QRemoveScrollBar as Le } from "../QRemoveScrollBar/index.js";
|
|
4
4
|
import { FocusTrap as Ee } from "../../vendors/focus-trap-vue/dist/focus-trap-vue.esm-browser.js";
|
|
5
|
-
import { getSideFromPlacement as
|
|
5
|
+
import { getSideFromPlacement as _e, computePosition as be } from "../../composables/overlay.js";
|
|
6
6
|
import { useTheme as Be } from "../../composables/theme.js";
|
|
7
7
|
import { getElement as Te } from "../../utils/getElement.js";
|
|
8
8
|
const Ce = ["id"], xe = ["role"], Ae = /* @__PURE__ */ de({
|
|
@@ -38,17 +38,17 @@ const Ce = ["id"], xe = ["role"], Ae = /* @__PURE__ */ de({
|
|
|
38
38
|
}),
|
|
39
39
|
emits: /* @__PURE__ */ F(["enter", "leave"], ["update:modelValue"]),
|
|
40
40
|
setup(C, { emit: Q }) {
|
|
41
|
-
const t = C, x = Q, r = fe(C, "modelValue"), { class: W } = Be(), j =
|
|
41
|
+
const t = C, x = Q, r = fe(C, "modelValue"), { class: W } = Be(), j = u(() => [
|
|
42
42
|
"q-overlay",
|
|
43
|
-
`q-overlay--${
|
|
43
|
+
`q-overlay--${_e(o.placement)}`,
|
|
44
44
|
W.value,
|
|
45
45
|
{
|
|
46
|
-
"q-overlay--independent":
|
|
46
|
+
"q-overlay--independent": v.value,
|
|
47
47
|
"q-overlay--inverted": t.appearance === "inverted",
|
|
48
48
|
"q-overlay--center": t.centerVertically
|
|
49
49
|
},
|
|
50
50
|
t.class
|
|
51
|
-
]),
|
|
51
|
+
]), v = u(() => t.anchor === void 0), D = u(() => r.value && !t.nonModal), G = u(() => (r.value || o.animating) && t.scrollLock), H = u(() => !t.inline && (r.value || o.animating)), O = () => d.value ? d.value ?? void 0 : "#" + t.id, o = I({
|
|
52
52
|
animating: !1,
|
|
53
53
|
top: 0,
|
|
54
54
|
left: 0,
|
|
@@ -60,37 +60,37 @@ const Ce = ["id"], xe = ["role"], Ae = /* @__PURE__ */ de({
|
|
|
60
60
|
hidden: !0
|
|
61
61
|
});
|
|
62
62
|
P(r, te);
|
|
63
|
-
const J =
|
|
64
|
-
if (
|
|
65
|
-
const e =
|
|
63
|
+
const J = u(() => {
|
|
64
|
+
if (v.value) return;
|
|
65
|
+
const e = l(), s = t.width === "anchor", n = s ? e == null ? void 0 : e.getBoundingClientRect().width : void 0;
|
|
66
66
|
return {
|
|
67
67
|
top: `${o.top}px`,
|
|
68
68
|
left: `${o.left}px`,
|
|
69
69
|
width: n !== void 0 ? `${n}px` : void 0
|
|
70
70
|
};
|
|
71
|
-
}), K =
|
|
71
|
+
}), K = u(() => {
|
|
72
72
|
if (t.arrow)
|
|
73
73
|
return {
|
|
74
74
|
top: a.top !== void 0 ? `${a.top}px` : void 0,
|
|
75
75
|
left: a.left !== void 0 ? `${a.left}px` : void 0,
|
|
76
76
|
opacity: a.hidden ? 0 : 1
|
|
77
77
|
};
|
|
78
|
-
}), h =
|
|
78
|
+
}), h = _(null), S = _(null), d = _(null);
|
|
79
79
|
function i() {
|
|
80
|
-
const e =
|
|
81
|
-
if (!e || !
|
|
80
|
+
const e = l();
|
|
81
|
+
if (!e || !d.value)
|
|
82
82
|
return;
|
|
83
|
-
const
|
|
83
|
+
const s = {
|
|
84
84
|
placement: t.placement,
|
|
85
85
|
width: t.width,
|
|
86
86
|
offset: t.offset,
|
|
87
87
|
crossOffset: t.crossOffset,
|
|
88
88
|
arrow: t.arrow
|
|
89
|
-
}, n =
|
|
89
|
+
}, n = be(
|
|
90
90
|
e,
|
|
91
|
-
|
|
91
|
+
d.value,
|
|
92
92
|
(h == null ? void 0 : h.value) ?? void 0,
|
|
93
|
-
|
|
93
|
+
s
|
|
94
94
|
);
|
|
95
95
|
o.left = n.overlayCoords.x, o.top = n.overlayCoords.y, o.placement = n.placement, a.hidden = n.arrowCoords === void 0, n.arrowCoords && (a.top = n.arrowCoords.y, a.left = n.arrowCoords.x);
|
|
96
96
|
}
|
|
@@ -110,9 +110,9 @@ const Ce = ["id"], xe = ["role"], Ae = /* @__PURE__ */ de({
|
|
|
110
110
|
r.value = !0;
|
|
111
111
|
}, e);
|
|
112
112
|
}
|
|
113
|
-
function
|
|
113
|
+
function f() {
|
|
114
114
|
if (p && M(), r.value = !1, t.anchor && t.trigger === "click") {
|
|
115
|
-
const e =
|
|
115
|
+
const e = l();
|
|
116
116
|
g(() => e == null ? void 0 : e.focus());
|
|
117
117
|
}
|
|
118
118
|
}
|
|
@@ -137,7 +137,7 @@ const Ce = ["id"], xe = ["role"], Ae = /* @__PURE__ */ de({
|
|
|
137
137
|
function V() {
|
|
138
138
|
o.animating = !1;
|
|
139
139
|
}
|
|
140
|
-
function
|
|
140
|
+
function l() {
|
|
141
141
|
return t.anchor ? Te(t.anchor) : null;
|
|
142
142
|
}
|
|
143
143
|
function ne(e) {
|
|
@@ -149,21 +149,21 @@ const Ce = ["id"], xe = ["role"], Ae = /* @__PURE__ */ de({
|
|
|
149
149
|
e.preventDefault();
|
|
150
150
|
return;
|
|
151
151
|
}
|
|
152
|
-
let
|
|
153
|
-
e.defaultPrevented || e.detail.originalEvent.type === "pointerdown" && (
|
|
152
|
+
let s = !1;
|
|
153
|
+
e.defaultPrevented || e.detail.originalEvent.type === "pointerdown" && (s = !0);
|
|
154
154
|
const n = e.detail.originalEvent.target;
|
|
155
|
-
if ((A =
|
|
155
|
+
if ((A = l()) == null ? void 0 : A.contains(n)) {
|
|
156
156
|
e.preventDefault();
|
|
157
157
|
return;
|
|
158
158
|
}
|
|
159
|
-
e.detail.originalEvent.type === "focusin" &&
|
|
159
|
+
e.detail.originalEvent.type === "focusin" && s && e.preventDefault();
|
|
160
160
|
}
|
|
161
161
|
function re() {
|
|
162
|
-
|
|
162
|
+
f();
|
|
163
163
|
}
|
|
164
164
|
let m;
|
|
165
165
|
function ae() {
|
|
166
|
-
const e =
|
|
166
|
+
const e = l();
|
|
167
167
|
if (e)
|
|
168
168
|
switch (m = new MutationObserver(i), m.observe(e, {
|
|
169
169
|
attributes: !1,
|
|
@@ -175,19 +175,19 @@ const Ce = ["id"], xe = ["role"], Ae = /* @__PURE__ */ de({
|
|
|
175
175
|
e.addEventListener("click", w);
|
|
176
176
|
break;
|
|
177
177
|
case "hover":
|
|
178
|
-
e.addEventListener("mouseenter", q), e.addEventListener("mouseleave",
|
|
178
|
+
e.addEventListener("mouseenter", q), e.addEventListener("mouseleave", f), e.addEventListener("focusin", w), e.addEventListener("focusout", f);
|
|
179
179
|
break;
|
|
180
180
|
}
|
|
181
181
|
}
|
|
182
182
|
function ie() {
|
|
183
|
-
const e =
|
|
183
|
+
const e = l();
|
|
184
184
|
if (e)
|
|
185
185
|
switch (m == null || m.disconnect(), t.trigger) {
|
|
186
186
|
case "click":
|
|
187
187
|
e.removeEventListener("click", w);
|
|
188
188
|
break;
|
|
189
189
|
case "hover":
|
|
190
|
-
e.removeEventListener("mouseenter", q), e.removeEventListener("mouseleave",
|
|
190
|
+
e.removeEventListener("mouseenter", q), e.removeEventListener("mouseleave", f), e.removeEventListener("focusin", w), e.removeEventListener("focusout", f);
|
|
191
191
|
break;
|
|
192
192
|
}
|
|
193
193
|
}
|
|
@@ -199,22 +199,22 @@ const Ce = ["id"], xe = ["role"], Ae = /* @__PURE__ */ de({
|
|
|
199
199
|
}
|
|
200
200
|
let E;
|
|
201
201
|
function $() {
|
|
202
|
-
|
|
202
|
+
l() ? (i(), E = window.setTimeout($, 100)) : f();
|
|
203
203
|
}
|
|
204
204
|
function ue() {
|
|
205
205
|
var e;
|
|
206
|
-
|
|
206
|
+
v.value || (le(), t.spy ? $() : i()), (v.value || t.trigger === "click") && ((e = S.value) == null || e.focus());
|
|
207
207
|
}
|
|
208
208
|
function ce() {
|
|
209
|
-
|
|
209
|
+
v.value || se(), t.spy && (clearTimeout(E), E = void 0);
|
|
210
210
|
}
|
|
211
211
|
return ve(() => {
|
|
212
212
|
g(ae);
|
|
213
|
-
}), pe(ie), (e,
|
|
213
|
+
}), pe(ie), (e, s) => (c(), k(
|
|
214
214
|
me,
|
|
215
215
|
null,
|
|
216
216
|
[
|
|
217
|
-
(c(),
|
|
217
|
+
(c(), b(ye, {
|
|
218
218
|
disabled: !H.value,
|
|
219
219
|
to: t.attach
|
|
220
220
|
}, [
|
|
@@ -254,7 +254,7 @@ const Ce = ["id"], xe = ["role"], Ae = /* @__PURE__ */ de({
|
|
|
254
254
|
key: 0,
|
|
255
255
|
id: t.id,
|
|
256
256
|
ref_key: "overlayContainerRef",
|
|
257
|
-
ref:
|
|
257
|
+
ref: d,
|
|
258
258
|
tabindex: "-1",
|
|
259
259
|
class: U(j.value),
|
|
260
260
|
style: N(J.value)
|
|
@@ -265,11 +265,11 @@ const Ce = ["id"], xe = ["role"], Ae = /* @__PURE__ */ de({
|
|
|
265
265
|
onPointerDownOutside: ne
|
|
266
266
|
}, {
|
|
267
267
|
default: L(() => [
|
|
268
|
-
|
|
268
|
+
d.value ? (c(), b(T(Ee), {
|
|
269
269
|
key: 0,
|
|
270
270
|
active: !t.nonModal && r.value && t.focusTrap,
|
|
271
|
-
"fallback-focus": O
|
|
272
|
-
"initial-focus": O
|
|
271
|
+
"fallback-focus": O,
|
|
272
|
+
"initial-focus": O,
|
|
273
273
|
"return-focus-on-deactivate": t.returnFocusOnDeactivate
|
|
274
274
|
}, {
|
|
275
275
|
default: L(() => [
|
|
@@ -299,7 +299,7 @@ const Ce = ["id"], xe = ["role"], Ae = /* @__PURE__ */ de({
|
|
|
299
299
|
]),
|
|
300
300
|
_: 3
|
|
301
301
|
/* FORWARDED */
|
|
302
|
-
}, 8, ["active", "
|
|
302
|
+
}, 8, ["active", "return-focus-on-deactivate"])) : y("v-if", !0)
|
|
303
303
|
]),
|
|
304
304
|
_: 3
|
|
305
305
|
/* FORWARDED */
|
|
@@ -310,7 +310,7 @@ const Ce = ["id"], xe = ["role"], Ae = /* @__PURE__ */ de({
|
|
|
310
310
|
/* FORWARDED */
|
|
311
311
|
}, 8, ["name"])
|
|
312
312
|
], 8, ["disabled", "to"])),
|
|
313
|
-
G.value ? (c(),
|
|
313
|
+
G.value ? (c(), b(T(Le), { key: 0 })) : y("v-if", !0)
|
|
314
314
|
],
|
|
315
315
|
64
|
|
316
316
|
/* STABLE_FRAGMENT */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"QRadioButton.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QRadioGroup/QRadioButton.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"QRadioButton.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QRadioGroup/QRadioButton.vue"],"names":[],"mappings":"AAgCA;AA2IC,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,SAAS,CAAA;AA+FjD,iBAAS,cAAc;WAkFT,OAAO,IAA6B;;yBAbrB,GAAG;yBACF,GAAG;;;;;;EAiBhC;AAkBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;OAQnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { defineComponent as
|
|
2
|
-
import { QLabel as
|
|
3
|
-
import { useId as
|
|
4
|
-
import { useGroupItem as
|
|
5
|
-
const
|
|
1
|
+
import { defineComponent as g, toRef as k, useTemplateRef as C, computed as r, createBlock as h, openBlock as q, unref as t, withModifiers as d, normalizeClass as B, createSlots as R, withCtx as i, createElementVNode as A, renderSlot as s, createCommentVNode as z, mergeProps as E } from "vue";
|
|
2
|
+
import { QLabel as P } from "../QLabel/index.js";
|
|
3
|
+
import { useId as _ } from "../../composables/uid.js";
|
|
4
|
+
import { useGroupItem as $ } from "../../composables/useGroup/index.js";
|
|
5
|
+
const D = ["id", "checked", "name", "value", "disabled"], G = /* @__PURE__ */ g({
|
|
6
6
|
inheritAttrs: !1,
|
|
7
7
|
__name: "QRadioButton",
|
|
8
8
|
props: {
|
|
@@ -21,10 +21,10 @@ const $ = ["id", "checked", "name", "value", "disabled"], G = /* @__PURE__ */ v(
|
|
|
21
21
|
invalid: { type: Boolean }
|
|
22
22
|
},
|
|
23
23
|
setup(u) {
|
|
24
|
-
const e = u,
|
|
25
|
-
if (!
|
|
24
|
+
const e = u, a = _(k(e, "id")), p = C("inputEl"), n = $(e.value);
|
|
25
|
+
if (!n)
|
|
26
26
|
throw new Error("QRadioButton must be used inside a QRadioGroup");
|
|
27
|
-
const c = r(() => e.labelPlacement === "start" ? "append" : "prepend"),
|
|
27
|
+
const c = r(() => e.labelPlacement === "start" ? "append" : "prepend"), f = r(() => {
|
|
28
28
|
const o = e.size !== "regular" ? `q-radio-button--${e.size}` : void 0, l = e.color !== "primary" ? `q-radio-button--${e.color}` : void 0;
|
|
29
29
|
return [
|
|
30
30
|
"q-radio-button",
|
|
@@ -38,47 +38,56 @@ const $ = ["id", "checked", "name", "value", "disabled"], G = /* @__PURE__ */ v(
|
|
|
38
38
|
e.class
|
|
39
39
|
];
|
|
40
40
|
});
|
|
41
|
-
function
|
|
41
|
+
function b(o) {
|
|
42
|
+
(e.readonly || e.disabled) && ["ArrowUp", "ArrowDown", "ArrowLeft", "ArrowRight"].includes(o.key) && o.preventDefault();
|
|
43
|
+
}
|
|
44
|
+
function m(o) {
|
|
45
|
+
(e.readonly || e.disabled) && o.preventDefault();
|
|
46
|
+
}
|
|
47
|
+
function y(o) {
|
|
48
|
+
e.readonly || e.disabled ? o.preventDefault() : n == null || n.toggle();
|
|
49
|
+
}
|
|
50
|
+
function v() {
|
|
42
51
|
var o;
|
|
43
52
|
(o = p.value) == null || o.focus();
|
|
44
53
|
}
|
|
45
|
-
return (o, l) => (
|
|
46
|
-
for: t(
|
|
47
|
-
class:
|
|
54
|
+
return (o, l) => (q(), h(t(P), {
|
|
55
|
+
for: t(a),
|
|
56
|
+
class: B(f.value),
|
|
48
57
|
label: e.label,
|
|
49
|
-
tabindex:
|
|
50
|
-
onMousedown:
|
|
51
|
-
onClick:
|
|
52
|
-
},
|
|
53
|
-
[c.value]:
|
|
54
|
-
|
|
55
|
-
id: t(
|
|
58
|
+
tabindex: e.disabled ? void 0 : -1,
|
|
59
|
+
onMousedown: d(v, ["prevent"]),
|
|
60
|
+
onClick: y
|
|
61
|
+
}, R({
|
|
62
|
+
[c.value]: i(() => [
|
|
63
|
+
A("input", E({
|
|
64
|
+
id: t(a),
|
|
56
65
|
ref: "inputEl",
|
|
57
|
-
checked: t(
|
|
66
|
+
checked: t(n).isActive.value,
|
|
58
67
|
type: "radio",
|
|
59
68
|
class: "q-radio-button__input",
|
|
60
69
|
name: e.name,
|
|
61
70
|
value: o.value,
|
|
62
|
-
disabled: e.
|
|
71
|
+
disabled: e.disabled
|
|
63
72
|
}, o.$attrs, {
|
|
64
73
|
onChange: l[0] || (l[0] = //@ts-ignore
|
|
65
|
-
(...
|
|
66
|
-
onClick:
|
|
67
|
-
|
|
68
|
-
}), null, 16,
|
|
69
|
-
e.labelPlacement === "end" ?
|
|
74
|
+
(...w) => t(n).toggle && t(n).toggle(...w)),
|
|
75
|
+
onClick: d(m, ["stop"]),
|
|
76
|
+
onKeydown: b
|
|
77
|
+
}), null, 16, D),
|
|
78
|
+
e.labelPlacement === "end" ? s(o.$slots, "default", { key: 0 }) : z("v-if", !0)
|
|
70
79
|
]),
|
|
71
80
|
_: 2
|
|
72
81
|
/* DYNAMIC */
|
|
73
82
|
}, [
|
|
74
83
|
e.labelPlacement === "start" ? {
|
|
75
84
|
name: "prepend",
|
|
76
|
-
fn:
|
|
77
|
-
|
|
85
|
+
fn: i(() => [
|
|
86
|
+
s(o.$slots, "default")
|
|
78
87
|
]),
|
|
79
88
|
key: "0"
|
|
80
89
|
} : void 0
|
|
81
|
-
]), 1032, ["for", "class", "label", "
|
|
90
|
+
]), 1032, ["for", "class", "label", "tabindex"]));
|
|
82
91
|
}
|
|
83
92
|
});
|
|
84
93
|
export {
|
|
@@ -19,6 +19,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
19
19
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
20
20
|
}>, {
|
|
21
21
|
size: import('./types').QRadioButtonSize;
|
|
22
|
+
hasFocusOutline: boolean;
|
|
22
23
|
orientation: import('./types').QRadioButtonOrientation;
|
|
23
24
|
columns: number;
|
|
24
25
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"QRadioGroup.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QRadioGroup/QRadioGroup.vue"],"names":[],"mappings":"AAuBA;
|
|
1
|
+
{"version":3,"file":"QRadioGroup.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QRadioGroup/QRadioGroup.vue"],"names":[],"mappings":"AAuBA;AA8GC,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,SAAS,CAAA;AAK/C,KAAK,WAAW,GAAG,gBAAgB,CAAC;AAsErC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,GAAG,CAAC;CAChB,GAAG,WAAW,CAAC;AAKhB,iBAAS,cAAc;WAsDT,OAAO,IAA6B;;yBAZrB,GAAG;wBACJ,GAAG;;;;EAgB9B;AAcD,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;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { defineComponent as
|
|
1
|
+
import { defineComponent as g, mergeModels as q, useModel as b, watch as h, toRef as r, computed as d, createElementBlock as n, openBlock as l, normalizeClass as B, createBlock as _, createCommentVNode as u, createElementVNode as z, unref as a, mergeProps as k, renderSlot as c } from "vue";
|
|
2
2
|
import { QLabel as V } from "../QLabel/index.js";
|
|
3
3
|
import { provideDefaults as $ } from "../../composables/defaults.js";
|
|
4
|
-
import { useId as
|
|
4
|
+
import { useId as m } from "../../composables/uid.js";
|
|
5
5
|
import { useGroup as C } from "../../composables/useGroup/index.js";
|
|
6
6
|
const M = ["id"], Q = {
|
|
7
7
|
key: 1,
|
|
8
8
|
class: "q-field__extras"
|
|
9
|
-
},
|
|
9
|
+
}, S = /* @__PURE__ */ g({
|
|
10
10
|
inheritAttrs: !1,
|
|
11
11
|
__name: "QRadioGroup",
|
|
12
|
-
props: /* @__PURE__ */
|
|
12
|
+
props: /* @__PURE__ */ q({
|
|
13
13
|
id: {},
|
|
14
14
|
class: {},
|
|
15
15
|
label: {},
|
|
@@ -21,24 +21,26 @@ const M = ["id"], Q = {
|
|
|
21
21
|
columns: { default: 1 },
|
|
22
22
|
disabled: { type: Boolean },
|
|
23
23
|
readonly: { type: Boolean },
|
|
24
|
-
invalid: { type: Boolean }
|
|
24
|
+
invalid: { type: Boolean },
|
|
25
|
+
hasFocusOutline: { type: Boolean, default: !0 }
|
|
25
26
|
}, {
|
|
26
27
|
modelValue: {},
|
|
27
28
|
modelModifiers: {}
|
|
28
29
|
}),
|
|
29
30
|
emits: ["update:modelValue"],
|
|
30
31
|
setup(t) {
|
|
31
|
-
const e = t,
|
|
32
|
-
|
|
33
|
-
|
|
32
|
+
const e = t, s = b(t, "modelValue"), { active: p } = C({ active: s, required: !0 });
|
|
33
|
+
h(p, (o) => {
|
|
34
|
+
s.value = o;
|
|
34
35
|
});
|
|
35
|
-
const
|
|
36
|
+
const i = m(r(e, "id")), f = m(r(e, "name")), v = d(() => [
|
|
36
37
|
"q-radio-group",
|
|
37
38
|
{
|
|
38
|
-
"q-radio-group--horizontal": e.orientation === "horizontal"
|
|
39
|
+
"q-radio-group--horizontal": e.orientation === "horizontal",
|
|
40
|
+
"q-radio-group--focus-style": e.hasFocusOutline
|
|
39
41
|
},
|
|
40
42
|
e.class
|
|
41
|
-
]),
|
|
43
|
+
]), y = d(() => e.columns > 1 ? {
|
|
42
44
|
"--q-radio-group-columns": e.columns
|
|
43
45
|
} : {
|
|
44
46
|
undefined: void 0
|
|
@@ -54,25 +56,25 @@ const M = ["id"], Q = {
|
|
|
54
56
|
}), (o, R) => (l(), n(
|
|
55
57
|
"div",
|
|
56
58
|
{
|
|
57
|
-
class:
|
|
59
|
+
class: B(v.value)
|
|
58
60
|
},
|
|
59
61
|
[
|
|
60
|
-
e.label ? (l(),
|
|
62
|
+
e.label ? (l(), _(a(V), {
|
|
61
63
|
key: 0,
|
|
62
|
-
for: a(
|
|
64
|
+
for: a(i),
|
|
63
65
|
label: e.label,
|
|
64
66
|
required: e.required
|
|
65
67
|
}, null, 8, ["for", "label", "required"])) : u("v-if", !0),
|
|
66
68
|
z("div", k({
|
|
67
|
-
id: a(
|
|
69
|
+
id: a(i),
|
|
68
70
|
class: ["q-radio-group__group", { "q-radio-group--grid": e.columns > 1 }],
|
|
69
71
|
role: "radiogroup",
|
|
70
|
-
style:
|
|
72
|
+
style: y.value
|
|
71
73
|
}, o.$attrs), [
|
|
72
|
-
|
|
74
|
+
c(o.$slots, "default")
|
|
73
75
|
], 16, M),
|
|
74
76
|
o.$slots.extras ? (l(), n("div", Q, [
|
|
75
|
-
|
|
77
|
+
c(o.$slots, "extras")
|
|
76
78
|
])) : u("v-if", !0)
|
|
77
79
|
],
|
|
78
80
|
2
|
|
@@ -81,5 +83,5 @@ const M = ["id"], Q = {
|
|
|
81
83
|
}
|
|
82
84
|
});
|
|
83
85
|
export {
|
|
84
|
-
|
|
86
|
+
S as default
|
|
85
87
|
};
|
|
@@ -45,12 +45,14 @@ declare const QRadioGroup: {
|
|
|
45
45
|
disabled?: boolean;
|
|
46
46
|
readonly?: boolean;
|
|
47
47
|
invalid?: boolean;
|
|
48
|
+
hasFocusOutline?: boolean;
|
|
48
49
|
}> & Readonly<{
|
|
49
50
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
50
51
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
51
52
|
"update:modelValue": (value: any) => any;
|
|
52
53
|
}, import('vue').PublicProps, {
|
|
53
54
|
size: import('./types').QRadioButtonSize;
|
|
55
|
+
hasFocusOutline: boolean;
|
|
54
56
|
orientation: import('./types').QRadioButtonOrientation;
|
|
55
57
|
columns: number;
|
|
56
58
|
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
@@ -74,10 +76,12 @@ declare const QRadioGroup: {
|
|
|
74
76
|
disabled?: boolean;
|
|
75
77
|
readonly?: boolean;
|
|
76
78
|
invalid?: boolean;
|
|
79
|
+
hasFocusOutline?: boolean;
|
|
77
80
|
}> & Readonly<{
|
|
78
81
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
79
82
|
}>, {}, {}, {}, {}, {
|
|
80
83
|
size: import('./types').QRadioButtonSize;
|
|
84
|
+
hasFocusOutline: boolean;
|
|
81
85
|
orientation: import('./types').QRadioButtonOrientation;
|
|
82
86
|
columns: number;
|
|
83
87
|
}>;
|
|
@@ -98,12 +102,14 @@ declare const QRadioGroup: {
|
|
|
98
102
|
disabled?: boolean;
|
|
99
103
|
readonly?: boolean;
|
|
100
104
|
invalid?: boolean;
|
|
105
|
+
hasFocusOutline?: boolean;
|
|
101
106
|
}> & Readonly<{
|
|
102
107
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
103
108
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
104
109
|
"update:modelValue": (value: any) => any;
|
|
105
110
|
}, string, {
|
|
106
111
|
size: import('./types').QRadioButtonSize;
|
|
112
|
+
hasFocusOutline: boolean;
|
|
107
113
|
orientation: import('./types').QRadioButtonOrientation;
|
|
108
114
|
columns: number;
|
|
109
115
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/QRadioGroup/index.ts"],"names":[],"mappings":"AAOA,QAAA,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAiC,CAAA;AACnD,QAAA,MAAM,WAAW
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/QRadioGroup/index.ts"],"names":[],"mappings":"AAOA,QAAA,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAiC,CAAA;AACnD,QAAA,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAgC,CAAA;AAGjD,OAAO,EAAE,YAAY,EAAE,WAAW,EAAE,CAAA;AAGpC,cAAc,SAAS,CAAA"}
|
|
@@ -44,6 +44,12 @@ export type QRadioGroupProps = QLabelProps & {
|
|
|
44
44
|
* @category State
|
|
45
45
|
*/
|
|
46
46
|
invalid?: boolean;
|
|
47
|
+
/**
|
|
48
|
+
* Indicates whether the control will have an outline when focused.
|
|
49
|
+
*
|
|
50
|
+
* @category Behavior
|
|
51
|
+
*/
|
|
52
|
+
hasFocusOutline?: boolean;
|
|
47
53
|
};
|
|
48
54
|
export type QRadioButtonLabelPlacement = 'start' | 'end';
|
|
49
55
|
export type QRadioButtonProps = QLabelProps & {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/QRadioGroup/types.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,WAAW,CAAA;AAE5C,MAAM,MAAM,uBAAuB,GAAG,UAAU,GAAG,YAAY,CAAA;AAE/D,MAAM,MAAM,gBAAgB,GAAG,OAAO,GAAG,SAAS,GAAG,OAAO,CAAA;AAE5D,MAAM,MAAM,gBAAgB,GAAG,WAAW,GAAG;IAC5C;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAA;IAEb;;;;OAIG;IACH,WAAW,CAAC,EAAE,uBAAuB,CAAA;IAErC;;;;OAIG;IACH,IAAI,CAAC,EAAE,gBAAgB,CAAA;IAEvB;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAA;IAEhB;;;;OAIG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAA;IAElB;;;;OAIG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAA;IAElB;;;;OAIG;IACH,OAAO,CAAC,EAAE,OAAO,CAAA;
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/QRadioGroup/types.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,WAAW,CAAA;AAE5C,MAAM,MAAM,uBAAuB,GAAG,UAAU,GAAG,YAAY,CAAA;AAE/D,MAAM,MAAM,gBAAgB,GAAG,OAAO,GAAG,SAAS,GAAG,OAAO,CAAA;AAE5D,MAAM,MAAM,gBAAgB,GAAG,WAAW,GAAG;IAC5C;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAA;IAEb;;;;OAIG;IACH,WAAW,CAAC,EAAE,uBAAuB,CAAA;IAErC;;;;OAIG;IACH,IAAI,CAAC,EAAE,gBAAgB,CAAA;IAEvB;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAA;IAEhB;;;;OAIG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAA;IAElB;;;;OAIG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAA;IAElB;;;;OAIG;IACH,OAAO,CAAC,EAAE,OAAO,CAAA;IAEjB;;;;OAIG;IACH,eAAe,CAAC,EAAE,OAAO,CAAA;CACzB,CAAA;AAED,MAAM,MAAM,0BAA0B,GAAG,OAAO,GAAG,KAAK,CAAA;AAExD,MAAM,MAAM,iBAAiB,GAAG,WAAW,GAAG;IAC7C;;;;OAIG;IACH,KAAK,EAAE,MAAM,CAAA;IAEb;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAA;IAEb;;;;OAIG;IACH,cAAc,CAAC,EAAE,0BAA0B,CAAA;IAE3C;;;;OAIG;IACH,KAAK,CAAC,EAAE,MAAM,CAAA;IAEd;;;;OAIG;IACH,IAAI,CAAC,EAAE,gBAAgB,CAAA;IAEvB;;;;OAIG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAA;IAElB;;;;OAIG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAA;IAElB;;;;OAIG;IACH,OAAO,CAAC,EAAE,OAAO,CAAA;CACjB,CAAA"}
|
|
@@ -72,7 +72,7 @@ declare function __VLS_template(): {
|
|
|
72
72
|
};
|
|
73
73
|
$forceUpdate: () => void;
|
|
74
74
|
$nextTick: typeof nextTick;
|
|
75
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
75
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (... /** @type { typeof __VLS_ctx.badgesContainer } */args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
76
76
|
} & Readonly<{
|
|
77
77
|
size: import('..').QFieldSize;
|
|
78
78
|
}> & Omit<Readonly<import('..').QFieldProps> & Readonly<{}>, "size" | "fieldRef"> & import('vue').ShallowUnwrapRef<{
|
|
@@ -148,7 +148,7 @@ declare function __VLS_template(): {
|
|
|
148
148
|
};
|
|
149
149
|
$forceUpdate: () => void;
|
|
150
150
|
$nextTick: typeof nextTick;
|
|
151
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
151
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (... /** @type { typeof __VLS_ctx.badgesContainer } */args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
152
152
|
} & Readonly<{
|
|
153
153
|
size: import('..').QBadgeSize;
|
|
154
154
|
color: string;
|
|
@@ -162,6 +162,7 @@ declare function __VLS_template(): {
|
|
|
162
162
|
default?(_: {}): any;
|
|
163
163
|
};
|
|
164
164
|
}) | null)[];
|
|
165
|
+
input: HTMLInputElement;
|
|
165
166
|
content: HTMLDivElement;
|
|
166
167
|
list: ({
|
|
167
168
|
$: import('vue').ComponentInternalInstance;
|
|
@@ -250,7 +251,7 @@ declare function __VLS_template(): {
|
|
|
250
251
|
};
|
|
251
252
|
$forceUpdate: () => void;
|
|
252
253
|
$nextTick: typeof nextTick;
|
|
253
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
254
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (... /** @type { typeof __VLS_ctx.badgesContainer } */args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
254
255
|
} & Readonly<{
|
|
255
256
|
icons: typeof import('../QList/constants').DEFAULT_ICONS;
|
|
256
257
|
}> & Omit<Readonly<{
|
|
@@ -311,7 +312,7 @@ declare function __VLS_template(): {
|
|
|
311
312
|
};
|
|
312
313
|
$forceUpdate: () => void;
|
|
313
314
|
$nextTick: typeof nextTick;
|
|
314
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
315
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (... /** @type { typeof __VLS_ctx.badgesContainer } */args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
315
316
|
} & Readonly<{
|
|
316
317
|
groups: import('..').Group[];
|
|
317
318
|
itemValue: string;
|
|
@@ -416,7 +417,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
416
417
|
};
|
|
417
418
|
$forceUpdate: () => void;
|
|
418
419
|
$nextTick: typeof nextTick;
|
|
419
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
420
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (... /** @type { typeof __VLS_ctx.badgesContainer } */args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
420
421
|
} & Readonly<{
|
|
421
422
|
size: import('..').QFieldSize;
|
|
422
423
|
}> & Omit<Readonly<import('..').QFieldProps> & Readonly<{}>, "size" | "fieldRef"> & import('vue').ShallowUnwrapRef<{
|
|
@@ -492,7 +493,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
492
493
|
};
|
|
493
494
|
$forceUpdate: () => void;
|
|
494
495
|
$nextTick: typeof nextTick;
|
|
495
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
496
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (... /** @type { typeof __VLS_ctx.badgesContainer } */args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
496
497
|
} & Readonly<{
|
|
497
498
|
size: import('..').QBadgeSize;
|
|
498
499
|
color: string;
|
|
@@ -506,6 +507,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
506
507
|
default?(_: {}): any;
|
|
507
508
|
};
|
|
508
509
|
}) | null)[];
|
|
510
|
+
input: HTMLInputElement;
|
|
509
511
|
content: HTMLDivElement;
|
|
510
512
|
list: ({
|
|
511
513
|
$: import('vue').ComponentInternalInstance;
|
|
@@ -594,7 +596,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
594
596
|
};
|
|
595
597
|
$forceUpdate: () => void;
|
|
596
598
|
$nextTick: typeof nextTick;
|
|
597
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
599
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (... /** @type { typeof __VLS_ctx.badgesContainer } */args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
598
600
|
} & Readonly<{
|
|
599
601
|
icons: typeof import('../QList/constants').DEFAULT_ICONS;
|
|
600
602
|
}> & Omit<Readonly<{
|
|
@@ -655,7 +657,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
655
657
|
};
|
|
656
658
|
$forceUpdate: () => void;
|
|
657
659
|
$nextTick: typeof nextTick;
|
|
658
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
660
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (... /** @type { typeof __VLS_ctx.badgesContainer } */args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
659
661
|
} & Readonly<{
|
|
660
662
|
groups: import('..').Group[];
|
|
661
663
|
itemValue: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"QSelect.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QSelect/QSelect.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"QSelect.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QSelect/QSelect.vue"],"names":[],"mappings":"AAkMA;AA8hBC,OAAO,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,aAAa,CAAA;AAe1D,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,UAAU,CAAA;AACpC,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,SAAS,CAAA;AAG3C,OAAO,EAAY,QAAQ,EAAgD,MAAM,KAAK,CAAA;AAMtF,KAAK,WAAW,GAAG,YAAY,CAAC;AAyUjC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,GAAG,CAAC;CAChB,GAAG,WAAW,CAAC;AAKhB,iBAAS,cAAc;WA8dT,OAAO,IAA6B;;yBAtBpB,GAAG;wBACJ,GAAG;wBACH,GAAG;gCACK,GAAG;;;YACZ,GAAG;+BACM,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAlX/B,GAAG,8CAA8C,GAC1D,CAAA,iDAAiD,yBAAxB,GAAG,6DAChB,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAFN,GAAG,8CAA8C,GAC1D,CAAA,iDAAiD,yBAAxB,GAAG,6DAChB,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gDAFN,GAAG,8CAA8C,GAC1D,CAAA,iDAAiD,yBAAxB,GAAG,6DAChB,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAFN,GAAG,8CAA8C,GAC1D,CAAA,iDAAiD,yBAAxB,GAAG,6DAChB,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAsYd;AAoCD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCA7aZ,GAAG,8CAA8C,GAC1D,CAAA,iDAAiD,yBAAxB,GAAG,6DAChB,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAFN,GAAG,8CAA8C,GAC1D,CAAA,iDAAiD,yBAAxB,GAAG,6DAChB,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4CAFN,GAAG,8CAA8C,GAC1D,CAAA,iDAAiD,yBAAxB,GAAG,6DAChB,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAFN,GAAG,8CAA8C,GAC1D,CAAA,iDAAiD,yBAAxB,GAAG,6DAChB,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAobb,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|