@quidgest/ui 0.16.49 → 0.16.50
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 +220 -5
- package/dist/manifest/components.json +1 -0
- package/dist/ui.css +9 -0
- package/dist/ui.esm.js +7048 -7703
- package/dist/ui.js +27 -38
- package/dist/ui.min.css +1 -1
- package/dist/ui.min.js +1026 -1148
- package/dist/ui.scss +9 -1
- package/esm/components/QDialog/QDialog.d.ts +3 -2
- package/esm/components/QDialog/QDialog.d.ts.map +1 -1
- package/esm/components/QDialog/QDialog.vue.js +83 -77
- package/esm/components/QDialog/index.d.ts +21 -9
- package/esm/components/QDialog/index.d.ts.map +1 -1
- package/esm/components/QDialog/types.d.ts +24 -3
- package/esm/components/QDialog/types.d.ts.map +1 -1
- package/esm/components/QFocusWrap/QFocusWrap.d.ts +26 -0
- package/esm/components/QFocusWrap/QFocusWrap.d.ts.map +1 -0
- package/esm/components/QFocusWrap/QFocusWrap.vue.js +119 -0
- package/esm/components/QFocusWrap/QFocusWrap.vue2.js +4 -0
- package/esm/components/QFocusWrap/index.d.ts +31 -0
- package/esm/components/QFocusWrap/index.d.ts.map +1 -0
- package/esm/components/QFocusWrap/index.js +6 -0
- package/esm/components/QFocusWrap/types.d.ts +42 -0
- package/esm/components/QFocusWrap/types.d.ts.map +1 -0
- package/esm/components/QOverlay/QOverlay.d.ts +2 -1
- package/esm/components/QOverlay/QOverlay.d.ts.map +1 -1
- package/esm/components/QOverlay/QOverlay.vue.js +126 -120
- package/esm/components/QOverlay/index.d.ts +18 -6
- package/esm/components/QOverlay/index.d.ts.map +1 -1
- package/esm/components/QOverlay/types.d.ts +24 -3
- package/esm/components/QOverlay/types.d.ts.map +1 -1
- package/esm/components/QPasswordField/QPasswordFieldMeterOverlay.vue.js +17 -14
- package/esm/components/QPopover/QPopover.d.ts.map +1 -1
- package/esm/components/QPopover/QPopover.vue.js +13 -14
- package/esm/components/QSelect/QSelect.d.ts +8 -8
- package/esm/components/QSelect/QSelect.d.ts.map +1 -1
- package/esm/components/QSelect/QSelect.vue.js +79 -77
- package/esm/components/QSelect/constants.d.ts +1 -0
- package/esm/components/QSelect/constants.d.ts.map +1 -1
- package/esm/components/QSelect/constants.js +10 -8
- package/esm/components/index.d.ts +1 -0
- package/esm/components/index.d.ts.map +1 -1
- package/esm/components/index.js +76 -74
- package/esm/composables/useDialog/index.d.ts +4 -1
- package/esm/composables/useDialog/index.d.ts.map +1 -1
- package/esm/index.d.ts +1 -0
- package/package.json +1 -1
- package/esm/vendors/focus-trap/dist/focus-trap.esm.js +0 -473
- package/esm/vendors/focus-trap-vue/dist/focus-trap-vue.esm-browser.js +0 -104
- package/esm/vendors/tabbable/dist/index.esm.js +0 -202
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { defineComponent as p, mergeModels as u, useModel as f, computed as y, createBlock as
|
|
1
|
+
import { defineComponent as p, mergeModels as u, useModel as f, computed as y, createBlock as i, openBlock as a, unref as c, withCtx as h, createElementVNode as d, createElementBlock as v, createCommentVNode as m, createVNode as g, toDisplayString as B } from "vue";
|
|
2
2
|
import { QMeter as _ } from "../QMeter/index.js";
|
|
3
3
|
import { QOverlay as V } from "../QOverlay/index.js";
|
|
4
4
|
import k from "./QPasswordFieldMessages.vue.js";
|
|
5
5
|
const w = { class: "q-password-field__meter" }, M = {
|
|
6
6
|
key: 0,
|
|
7
7
|
class: "q-password-field__meter-score"
|
|
8
|
-
},
|
|
8
|
+
}, L = /* @__PURE__ */ p({
|
|
9
9
|
inheritAttrs: !1,
|
|
10
10
|
__name: "QPasswordFieldMeterOverlay",
|
|
11
11
|
props: /* @__PURE__ */ u({
|
|
@@ -30,7 +30,10 @@ const w = { class: "q-password-field__meter" }, M = {
|
|
|
30
30
|
persistent: { type: Boolean },
|
|
31
31
|
spy: { type: Boolean },
|
|
32
32
|
trigger: {},
|
|
33
|
-
|
|
33
|
+
focusWrap: { type: Boolean },
|
|
34
|
+
initialFocus: {},
|
|
35
|
+
focusWithinOnActivate: { type: Boolean },
|
|
36
|
+
closingFocus: {},
|
|
34
37
|
returnFocusOnDeactivate: { type: Boolean },
|
|
35
38
|
messages: {},
|
|
36
39
|
score: {},
|
|
@@ -40,8 +43,8 @@ const w = { class: "q-password-field__meter" }, M = {
|
|
|
40
43
|
modelModifiers: {}
|
|
41
44
|
}),
|
|
42
45
|
emits: ["update:modelValue"],
|
|
43
|
-
setup(
|
|
44
|
-
const o =
|
|
46
|
+
setup(r) {
|
|
47
|
+
const o = r, n = f(r, "modelValue"), s = y(() => {
|
|
45
48
|
if (!o.levels.length) {
|
|
46
49
|
console.warn("Levels array is empty.");
|
|
47
50
|
return;
|
|
@@ -56,7 +59,7 @@ const w = { class: "q-password-field__meter" }, M = {
|
|
|
56
59
|
}
|
|
57
60
|
return o.levels[o.levels.length - 1];
|
|
58
61
|
});
|
|
59
|
-
return (t, l) => (
|
|
62
|
+
return (t, l) => (a(), i(c(V), {
|
|
60
63
|
modelValue: n.value,
|
|
61
64
|
"onUpdate:modelValue": l[0] || (l[0] = (e) => n.value = e),
|
|
62
65
|
trigger: "manual",
|
|
@@ -68,22 +71,22 @@ const w = { class: "q-password-field__meter" }, M = {
|
|
|
68
71
|
default: h(() => {
|
|
69
72
|
var e;
|
|
70
73
|
return [
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
g(
|
|
74
|
+
d("div", w, [
|
|
75
|
+
s.value ? (a(), v("div", M, [
|
|
76
|
+
g(c(_), {
|
|
74
77
|
"model-value": o.score,
|
|
75
78
|
max: 1,
|
|
76
|
-
color:
|
|
79
|
+
color: s.value.color
|
|
77
80
|
}, null, 8, ["model-value", "color"]),
|
|
78
|
-
|
|
81
|
+
d(
|
|
79
82
|
"span",
|
|
80
83
|
null,
|
|
81
|
-
B(
|
|
84
|
+
B(s.value.label),
|
|
82
85
|
1
|
|
83
86
|
/* TEXT */
|
|
84
87
|
)
|
|
85
88
|
])) : m("v-if", !0),
|
|
86
|
-
(e = t.messages) != null && e.length ? (
|
|
89
|
+
(e = t.messages) != null && e.length ? (a(), i(k, {
|
|
87
90
|
key: 1,
|
|
88
91
|
messages: t.messages
|
|
89
92
|
}, null, 8, ["messages"])) : m("v-if", !0)
|
|
@@ -96,5 +99,5 @@ const w = { class: "q-password-field__meter" }, M = {
|
|
|
96
99
|
}
|
|
97
100
|
});
|
|
98
101
|
export {
|
|
99
|
-
|
|
102
|
+
L as default
|
|
100
103
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"QPopover.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QPopover/QPopover.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"QPopover.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QPopover/QPopover.vue"],"names":[],"mappings":"AAkCA;AA6DC,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,SAAS,CAAA;AAE5C,KAAK,WAAW,GAAG,aAAa,CAAC;AAuBlC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,OAAO,CAAC;CACpB,GAAG,WAAW,CAAC;AAKhB,iBAAS,cAAc;WAsFT,OAAO,IAA6B;;wBAbtB,GAAG;kCACO,GAAG;iCACJ,GAAG;yBACX,GAAG;;;;EAe/B;AAYD,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,4 +1,4 @@
|
|
|
1
|
-
import { defineComponent as c, mergeModels as m, useModel as u, createBlock as h, openBlock as o, unref as f, normalizeClass as y, withCtx as _, createElementVNode as d, createElementBlock as
|
|
1
|
+
import { defineComponent as c, mergeModels as m, useModel as u, createBlock as h, openBlock as o, unref as f, normalizeClass as y, withCtx as _, createElementVNode as d, createElementBlock as l, createCommentVNode as v, renderSlot as a, Fragment as k, toDisplayString as i } from "vue";
|
|
2
2
|
import { QOverlay as B } from "../QOverlay/index.js";
|
|
3
3
|
const V = { class: "q-popover__content" }, g = {
|
|
4
4
|
key: 0,
|
|
@@ -23,12 +23,12 @@ const V = { class: "q-popover__content" }, g = {
|
|
|
23
23
|
modelModifiers: {}
|
|
24
24
|
}),
|
|
25
25
|
emits: ["update:modelValue"],
|
|
26
|
-
setup(
|
|
27
|
-
const e =
|
|
26
|
+
setup(n) {
|
|
27
|
+
const e = n, s = u(n, "modelValue");
|
|
28
28
|
return (t, r) => (o(), h(f(B), {
|
|
29
29
|
id: e.id,
|
|
30
|
-
modelValue:
|
|
31
|
-
"onUpdate:modelValue": r[0] || (r[0] = (p) =>
|
|
30
|
+
modelValue: s.value,
|
|
31
|
+
"onUpdate:modelValue": r[0] || (r[0] = (p) => s.value = p),
|
|
32
32
|
class: y(["q-popover", e.class]),
|
|
33
33
|
trigger: "click",
|
|
34
34
|
anchor: e.anchor,
|
|
@@ -36,17 +36,16 @@ const V = { class: "q-popover__content" }, g = {
|
|
|
36
36
|
attach: e.attach,
|
|
37
37
|
inline: e.inline,
|
|
38
38
|
disabled: e.disabled,
|
|
39
|
-
placement: e.placement
|
|
40
|
-
"focus-trap": ""
|
|
39
|
+
placement: e.placement
|
|
41
40
|
}, {
|
|
42
41
|
default: _(() => [
|
|
43
42
|
d("div", V, [
|
|
44
|
-
e.title || t.$slots.header ? (o(),
|
|
45
|
-
t.$slots.header ?
|
|
43
|
+
e.title || t.$slots.header ? (o(), l("div", g, [
|
|
44
|
+
t.$slots.header ? a(t.$slots, "header", { key: 0 }) : (o(), l(
|
|
46
45
|
k,
|
|
47
46
|
{ key: 1 },
|
|
48
47
|
[
|
|
49
|
-
|
|
48
|
+
a(t.$slots, "header.prepend"),
|
|
50
49
|
d(
|
|
51
50
|
"h4",
|
|
52
51
|
$,
|
|
@@ -54,17 +53,17 @@ const V = { class: "q-popover__content" }, g = {
|
|
|
54
53
|
1
|
|
55
54
|
/* TEXT */
|
|
56
55
|
),
|
|
57
|
-
|
|
56
|
+
a(t.$slots, "header.append")
|
|
58
57
|
],
|
|
59
58
|
64
|
|
60
59
|
/* STABLE_FRAGMENT */
|
|
61
60
|
))
|
|
62
61
|
])) : v("v-if", !0),
|
|
63
|
-
|
|
64
|
-
e.html ? (o(),
|
|
62
|
+
a(t.$slots, "default", {}, () => [
|
|
63
|
+
e.html ? (o(), l("span", {
|
|
65
64
|
key: 0,
|
|
66
65
|
innerHTML: e.text
|
|
67
|
-
}, null, 8, b)) : (o(),
|
|
66
|
+
}, null, 8, b)) : (o(), l(
|
|
68
67
|
"span",
|
|
69
68
|
w,
|
|
70
69
|
i(e.text),
|
|
@@ -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 (...
|
|
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;
|
|
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 (...
|
|
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;
|
|
152
152
|
} & Readonly<{
|
|
153
153
|
size: import('..').QBadgeSize;
|
|
154
154
|
color: string;
|
|
@@ -251,7 +251,7 @@ declare function __VLS_template(): {
|
|
|
251
251
|
};
|
|
252
252
|
$forceUpdate: () => void;
|
|
253
253
|
$nextTick: typeof nextTick;
|
|
254
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...
|
|
254
|
+
$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;
|
|
255
255
|
} & Readonly<{
|
|
256
256
|
icons: typeof import('../QList/constants').DEFAULT_ICONS;
|
|
257
257
|
}> & Omit<Readonly<{
|
|
@@ -312,7 +312,7 @@ declare function __VLS_template(): {
|
|
|
312
312
|
};
|
|
313
313
|
$forceUpdate: () => void;
|
|
314
314
|
$nextTick: typeof nextTick;
|
|
315
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...
|
|
315
|
+
$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;
|
|
316
316
|
} & Readonly<{
|
|
317
317
|
groups: import('..').Group[];
|
|
318
318
|
itemValue: string;
|
|
@@ -417,7 +417,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
417
417
|
};
|
|
418
418
|
$forceUpdate: () => void;
|
|
419
419
|
$nextTick: typeof nextTick;
|
|
420
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...
|
|
420
|
+
$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;
|
|
421
421
|
} & Readonly<{
|
|
422
422
|
size: import('..').QFieldSize;
|
|
423
423
|
}> & Omit<Readonly<import('..').QFieldProps> & Readonly<{}>, "size" | "fieldRef"> & import('vue').ShallowUnwrapRef<{
|
|
@@ -493,7 +493,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
493
493
|
};
|
|
494
494
|
$forceUpdate: () => void;
|
|
495
495
|
$nextTick: typeof nextTick;
|
|
496
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...
|
|
496
|
+
$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;
|
|
497
497
|
} & Readonly<{
|
|
498
498
|
size: import('..').QBadgeSize;
|
|
499
499
|
color: string;
|
|
@@ -596,7 +596,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
596
596
|
};
|
|
597
597
|
$forceUpdate: () => void;
|
|
598
598
|
$nextTick: typeof nextTick;
|
|
599
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...
|
|
599
|
+
$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;
|
|
600
600
|
} & Readonly<{
|
|
601
601
|
icons: typeof import('../QList/constants').DEFAULT_ICONS;
|
|
602
602
|
}> & Omit<Readonly<{
|
|
@@ -657,7 +657,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
657
657
|
};
|
|
658
658
|
$forceUpdate: () => void;
|
|
659
659
|
$nextTick: typeof nextTick;
|
|
660
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...
|
|
660
|
+
$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;
|
|
661
661
|
} & Readonly<{
|
|
662
662
|
groups: import('..').Group[];
|
|
663
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":"AAoMA;AAgiBC,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;WAkeT,OAAO,IAA6B;;yBAtBpB,GAAG;wBACJ,GAAG;wBACH,GAAG;gCACK,GAAG;;;YACZ,GAAG;+BACM,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAxXnC,GAAE,8CAEH,GAAG,yBAAyB,GAAG,6DACzB,GAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAHP,GAAE,8CAEH,GAAG,yBAAyB,GAAG,6DACzB,GAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gDAHP,GAAE,8CAEH,GAAG,yBAAyB,GAAG,6DACzB,GAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAHP,GAAE,8CAEH,GAAG,yBAAyB,GAAG,6DACzB,GAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA2YX;AAoCD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAnbhB,GAAE,8CAEH,GAAG,yBAAyB,GAAG,6DACzB,GAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAHP,GAAE,8CAEH,GAAG,yBAAyB,GAAG,6DACzB,GAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4CAHP,GAAE,8CAEH,GAAG,yBAAyB,GAAG,6DACzB,GAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAHP,GAAE,8CAEH,GAAG,yBAAyB,GAAG,6DACzB,GAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAybV,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"}
|