@quidgest/ui 0.16.39 → 0.16.41
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 +2382 -522
- package/dist/ui.css +8 -1
- package/dist/ui.esm.js +11 -6
- package/dist/ui.js +3 -3
- package/dist/ui.min.css +1 -1
- package/dist/ui.min.js +7 -7
- package/dist/ui.scss +9 -2
- package/esm/components/QBadge/QBadge.d.ts.map +1 -1
- package/esm/components/QBadge/QBadge.vue.js +22 -19
- package/esm/components/QBadge/types.d.ts +6 -0
- package/esm/components/QBadge/types.d.ts.map +1 -1
- package/esm/components/QSelect/QSelect.d.ts +2 -0
- package/esm/components/QSelect/QSelect.d.ts.map +1 -1
- package/esm/components/QSelect/QSelect.vue.js +12 -10
- package/esm/components/QSelect/index.d.ts +1 -0
- package/esm/components/QSelect/index.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defineComponent as
|
|
1
|
+
import { defineComponent as y, useAttrs as k, computed as r, toRef as h, createElementBlock as c, openBlock as n, withKeys as x, normalizeStyle as B, normalizeClass as z, withModifiers as w, createCommentVNode as u, createElementVNode as E, renderSlot as T, createBlock as N, unref as m, withCtx as S, createVNode as V, normalizeProps as $, guardReactiveProps as A } from "vue";
|
|
2
2
|
import { DEFAULT_TEXTS as I, DEFAULT_ICONS as K } from "./constants.js";
|
|
3
3
|
import { QButton as P } from "../QButton/index.js";
|
|
4
4
|
import { QIcon as Q } from "../QIcon/index.js";
|
|
@@ -6,7 +6,7 @@ import { useColor as R } from "../../composables/useColor/index.js";
|
|
|
6
6
|
const U = ["id", "role", "tabindex", "onKeydown"], D = {
|
|
7
7
|
key: 0,
|
|
8
8
|
class: "q-badge__underlay"
|
|
9
|
-
}, F = { class: "q-badge__content" }, j = /* @__PURE__ */
|
|
9
|
+
}, F = { class: "q-badge__content" }, j = /* @__PURE__ */ y({
|
|
10
10
|
__name: "QBadge",
|
|
11
11
|
props: {
|
|
12
12
|
id: {},
|
|
@@ -15,50 +15,52 @@ const U = ["id", "role", "tabindex", "onKeydown"], D = {
|
|
|
15
15
|
color: { default: "primary" },
|
|
16
16
|
pill: { type: Boolean },
|
|
17
17
|
size: { default: "default" },
|
|
18
|
+
disabled: { type: Boolean },
|
|
18
19
|
removable: { type: Boolean },
|
|
19
20
|
icons: { default: () => K },
|
|
20
21
|
texts: { default: () => I }
|
|
21
22
|
},
|
|
22
23
|
emits: ["click:remove"],
|
|
23
|
-
setup(
|
|
24
|
-
const e =
|
|
25
|
-
const o = i.value ? `q-badge--${e.color}` : void 0,
|
|
24
|
+
setup(b, { emit: v }) {
|
|
25
|
+
const e = b, p = v, f = k(), t = r(() => !!f.onClick), _ = r(() => {
|
|
26
|
+
const o = i.value ? `q-badge--${e.color}` : void 0, a = e.size !== "default" ? `q-badge--${e.size}` : void 0;
|
|
26
27
|
return [
|
|
27
28
|
"q-badge",
|
|
28
29
|
`q-badge--${e.variant}`,
|
|
29
30
|
o,
|
|
30
|
-
|
|
31
|
+
a,
|
|
31
32
|
{
|
|
32
33
|
"q-badge--pill": e.pill,
|
|
33
|
-
"q-badge--
|
|
34
|
+
"q-badge--disabled": e.disabled,
|
|
35
|
+
"q-badge--clickable": t.value && !e.disabled
|
|
34
36
|
},
|
|
35
37
|
e.class
|
|
36
38
|
];
|
|
37
39
|
}), { isUtilityColor: i, style: l } = R(h(e, "color")), C = r(() => {
|
|
38
|
-
var o,
|
|
40
|
+
var o, a, s, d;
|
|
39
41
|
if (!i.value)
|
|
40
42
|
return {
|
|
41
43
|
"--q-badge-main-color": (o = l.value) == null ? void 0 : o.mainColor,
|
|
42
|
-
"--q-badge-on-main-color": (
|
|
44
|
+
"--q-badge-on-main-color": (a = l.value) == null ? void 0 : a.onMainColor,
|
|
43
45
|
"--q-badge-hover-color": (s = l.value) == null ? void 0 : s.hoverColor,
|
|
44
|
-
"--q-badge-on-hover-color": (
|
|
46
|
+
"--q-badge-on-hover-color": (d = l.value) == null ? void 0 : d.onHoverColor
|
|
45
47
|
};
|
|
46
48
|
});
|
|
47
49
|
function g(o) {
|
|
48
50
|
o.stopImmediatePropagation();
|
|
49
51
|
}
|
|
50
|
-
function
|
|
52
|
+
function q() {
|
|
51
53
|
p("click:remove");
|
|
52
54
|
}
|
|
53
|
-
return (o,
|
|
55
|
+
return (o, a) => (n(), c("span", {
|
|
54
56
|
id: e.id,
|
|
55
|
-
class:
|
|
56
|
-
role:
|
|
57
|
-
style:
|
|
58
|
-
tabindex:
|
|
57
|
+
class: z(_.value),
|
|
58
|
+
role: t.value ? "button" : "presentation",
|
|
59
|
+
style: B(C.value),
|
|
60
|
+
tabindex: t.value ? 0 : void 0,
|
|
59
61
|
onKeydown: x(w(g, ["stop", "prevent"]), ["enter"])
|
|
60
62
|
}, [
|
|
61
|
-
e.variant === "tonal" ? (n(),
|
|
63
|
+
e.variant === "tonal" ? (n(), c("div", D)) : u("v-if", !0),
|
|
62
64
|
E("div", F, [
|
|
63
65
|
T(o.$slots, "default"),
|
|
64
66
|
e.removable ? (n(), N(m(P), {
|
|
@@ -69,7 +71,8 @@ const U = ["id", "role", "tabindex", "onKeydown"], D = {
|
|
|
69
71
|
tabindex: "0",
|
|
70
72
|
color: e.color,
|
|
71
73
|
"aria-label": e.texts.removeText,
|
|
72
|
-
|
|
74
|
+
disabled: e.disabled,
|
|
75
|
+
onClick: q
|
|
73
76
|
}, {
|
|
74
77
|
default: S(() => [
|
|
75
78
|
V(
|
|
@@ -82,7 +85,7 @@ const U = ["id", "role", "tabindex", "onKeydown"], D = {
|
|
|
82
85
|
]),
|
|
83
86
|
_: 1
|
|
84
87
|
/* STABLE */
|
|
85
|
-
}, 8, ["color", "aria-label"])) : u("v-if", !0)
|
|
88
|
+
}, 8, ["color", "aria-label", "disabled"])) : u("v-if", !0)
|
|
86
89
|
])
|
|
87
90
|
], 46, U));
|
|
88
91
|
}
|
|
@@ -29,6 +29,12 @@ export type QBadgeProps = QBaseComponentProps & {
|
|
|
29
29
|
* @category Presentation
|
|
30
30
|
*/
|
|
31
31
|
size?: QBadgeSize;
|
|
32
|
+
/**
|
|
33
|
+
* Whether the badge is disabled.
|
|
34
|
+
*
|
|
35
|
+
* @category State
|
|
36
|
+
*/
|
|
37
|
+
disabled?: boolean;
|
|
32
38
|
/**
|
|
33
39
|
* Whether the badge can be removed.
|
|
34
40
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/QBadge/types.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,aAAa,CAAA;AAG1D,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAA;AAEhE,MAAM,MAAM,aAAa,GAAG,OAAO,GAAG,MAAM,GAAG,UAAU,CAAA;AAEzD,MAAM,MAAM,UAAU,GAAG,SAAS,GAAG,OAAO,CAAA;AAE5C,MAAM,MAAM,WAAW,GAAG,mBAAmB,GAAG;IAC/C;;;;OAIG;IACH,OAAO,CAAC,EAAE,aAAa,CAAA;IAEvB;;;;;;OAMG;IACH,KAAK,CAAC,EAAE,MAAM,CAAA;IAEd;;;;OAIG;IACH,IAAI,CAAC,EAAE,OAAO,CAAA;IAEd;;;;OAIG;IACH,IAAI,CAAC,EAAE,UAAU,CAAA;IAEjB;;;;OAIG;IACH,SAAS,CAAC,EAAE,OAAO,CAAA;IAEnB;;;;OAIG;IACH,KAAK,CAAC,EAAE,OAAO,aAAa,CAAA;IAE5B;;;;OAIG;IACH,KAAK,CAAC,EAAE,OAAO,aAAa,CAAA;CAC5B,CAAA"}
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/QBadge/types.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,aAAa,CAAA;AAG1D,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAA;AAEhE,MAAM,MAAM,aAAa,GAAG,OAAO,GAAG,MAAM,GAAG,UAAU,CAAA;AAEzD,MAAM,MAAM,UAAU,GAAG,SAAS,GAAG,OAAO,CAAA;AAE5C,MAAM,MAAM,WAAW,GAAG,mBAAmB,GAAG;IAC/C;;;;OAIG;IACH,OAAO,CAAC,EAAE,aAAa,CAAA;IAEvB;;;;;;OAMG;IACH,KAAK,CAAC,EAAE,MAAM,CAAA;IAEd;;;;OAIG;IACH,IAAI,CAAC,EAAE,OAAO,CAAA;IAEd;;;;OAIG;IACH,IAAI,CAAC,EAAE,UAAU,CAAA;IAEjB;;;;OAIG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAA;IAElB;;;;OAIG;IACH,SAAS,CAAC,EAAE,OAAO,CAAA;IAEnB;;;;OAIG;IACH,KAAK,CAAC,EAAE,OAAO,aAAa,CAAA;IAE5B;;;;OAIG;IACH,KAAK,CAAC,EAAE,OAAO,aAAa,CAAA;CAC5B,CAAA"}
|
|
@@ -99,6 +99,7 @@ declare function __VLS_template(): {
|
|
|
99
99
|
readonly color?: string | undefined;
|
|
100
100
|
readonly pill?: boolean | undefined;
|
|
101
101
|
readonly size?: import('..').QBadgeSize | undefined;
|
|
102
|
+
readonly disabled?: boolean | undefined;
|
|
102
103
|
readonly removable?: boolean | undefined;
|
|
103
104
|
readonly icons?: typeof import('../QBadge/constants').DEFAULT_ICONS | undefined;
|
|
104
105
|
readonly texts?: typeof import('../QBadge/constants').DEFAULT_TEXTS | undefined;
|
|
@@ -442,6 +443,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
442
443
|
readonly color?: string | undefined;
|
|
443
444
|
readonly pill?: boolean | undefined;
|
|
444
445
|
readonly size?: import('..').QBadgeSize | undefined;
|
|
446
|
+
readonly disabled?: boolean | undefined;
|
|
445
447
|
readonly removable?: boolean | undefined;
|
|
446
448
|
readonly icons?: typeof import('../QBadge/constants').DEFAULT_ICONS | undefined;
|
|
447
449
|
readonly texts?: typeof import('../QBadge/constants').DEFAULT_TEXTS | undefined;
|
|
@@ -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":"AAqMA;AA4hBC,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;AAoUjC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,GAAG,CAAC;CAChB,GAAG,WAAW,CAAC;AAKhB,iBAAS,cAAc;WAqeT,OAAO,IAA6B;;yBArBpB,GAAG;wBACJ,GAAG;wBACH,GAAG;gCACK,GAAG;;;YACZ,GAAG;+BACM,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCA/WV,GAAG,8CACrB,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCADnD,GAAG,8CACrB,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gDADnD,GAAG,8CACrB,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCADnD,GAAG,8CACrB,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAmYhF;AAoCD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAzaS,GAAG,8CACrB,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCADnD,GAAG,8CACrB,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4CADnD,GAAG,8CACrB,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCADnD,GAAG,8CACrB,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAib/E,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"}
|
|
@@ -78,7 +78,7 @@ const De = {
|
|
|
78
78
|
var l;
|
|
79
79
|
return (l = r.value) == null ? void 0 : l.map((t) => t[e.itemLabel]).join(", ");
|
|
80
80
|
}
|
|
81
|
-
),
|
|
81
|
+
), L = q(
|
|
82
82
|
() => e.clearable && !e.readonly && !e.disabled && !e.loading && !P.value
|
|
83
83
|
);
|
|
84
84
|
function j(l) {
|
|
@@ -86,13 +86,13 @@ const De = {
|
|
|
86
86
|
return (t = e.items) == null ? void 0 : t.find((u) => u[e.itemValue] === l);
|
|
87
87
|
}
|
|
88
88
|
function ie(l) {
|
|
89
|
-
e.multiple && l < s.value.length && (!e.required || s.value.length > 1) ? K.value = s.value.toSpliced(l, 1) :
|
|
89
|
+
e.multiple && l < s.value.length && (!e.required || s.value.length > 1) ? K.value = s.value.toSpliced(l, 1) : k();
|
|
90
90
|
}
|
|
91
91
|
function I(l) {
|
|
92
92
|
Array.isArray(l) ? (s.value = l.sort((t, u) => H.value.get(t) - H.value.get(u)), $()) : (s.value = l, E());
|
|
93
93
|
}
|
|
94
|
-
function
|
|
95
|
-
|
|
94
|
+
function k() {
|
|
95
|
+
I(e.emptyValue), J();
|
|
96
96
|
}
|
|
97
97
|
function re(l) {
|
|
98
98
|
var t, u, n;
|
|
@@ -108,7 +108,7 @@ const De = {
|
|
|
108
108
|
e.readonly || e.disabled || (d.value ? E() : G());
|
|
109
109
|
}
|
|
110
110
|
function x(l) {
|
|
111
|
-
!l.key || e.readonly || e.disabled || (["Enter", " ", "ArrowDown", "ArrowUp", "Home", "End", "Delete"].includes(l.key) && (l.preventDefault(), l.stopPropagation()), ["Enter", " ", "ArrowDown"].includes(l.key) && G(), ["Escape", "Tab"].includes(l.key) && (d.value ? E() :
|
|
111
|
+
!l.key || e.readonly || e.disabled || (["Enter", " ", "ArrowDown", "ArrowUp", "Home", "End", "Delete"].includes(l.key) && (l.preventDefault(), l.stopPropagation()), ["Enter", " ", "ArrowDown"].includes(l.key) && G(), ["Escape", "Tab"].includes(l.key) && (d.value ? E() : L.value && l.key === "Escape" && k()), L.value && l.key === "Delete" && k());
|
|
112
112
|
}
|
|
113
113
|
function se(l) {
|
|
114
114
|
l.key.length === 1 && l.preventDefault(), x(l);
|
|
@@ -179,11 +179,11 @@ const De = {
|
|
|
179
179
|
}, ve({
|
|
180
180
|
append: f(() => [
|
|
181
181
|
h(l.$slots, "append"),
|
|
182
|
-
|
|
182
|
+
L.value ? (a(), m(o(Le), {
|
|
183
183
|
key: 0,
|
|
184
184
|
icons: e.icons,
|
|
185
185
|
texts: e.texts,
|
|
186
|
-
onClick:
|
|
186
|
+
onClick: k
|
|
187
187
|
}, null, 8, ["icons", "texts"])) : p("v-if", !0),
|
|
188
188
|
e.readonly ? p("v-if", !0) : (a(), m(o(_e), {
|
|
189
189
|
key: 1,
|
|
@@ -333,7 +333,9 @@ const De = {
|
|
|
333
333
|
/* STABLE_FRAGMENT */
|
|
334
334
|
)) : (a(), m(o(M), {
|
|
335
335
|
key: 1,
|
|
336
|
-
pill: ""
|
|
336
|
+
pill: "",
|
|
337
|
+
removable: !e.required,
|
|
338
|
+
"onClick:remove": k
|
|
337
339
|
}, {
|
|
338
340
|
default: f(() => {
|
|
339
341
|
var n, i;
|
|
@@ -354,7 +356,7 @@ const De = {
|
|
|
354
356
|
}),
|
|
355
357
|
_: 1
|
|
356
358
|
/* STABLE */
|
|
357
|
-
}))
|
|
359
|
+
}, 8, ["removable"]))
|
|
358
360
|
],
|
|
359
361
|
512
|
|
360
362
|
/* NEED_PATCH */
|
|
@@ -378,7 +380,7 @@ const De = {
|
|
|
378
380
|
type: "text",
|
|
379
381
|
autocomplete: "off",
|
|
380
382
|
tabindex: e.disabled ? -1 : 0,
|
|
381
|
-
"aria-keyshortcuts":
|
|
383
|
+
"aria-keyshortcuts": L.value ? "Delete" : void 0,
|
|
382
384
|
onKeydown: se
|
|
383
385
|
}), null, 16, Qe), [
|
|
384
386
|
[be, A.value]
|
|
@@ -124,6 +124,7 @@ declare const QSelect: {
|
|
|
124
124
|
readonly color?: string | undefined;
|
|
125
125
|
readonly pill?: boolean | undefined;
|
|
126
126
|
readonly size?: import('..').QBadgeSize | undefined;
|
|
127
|
+
readonly disabled?: boolean | undefined;
|
|
127
128
|
readonly removable?: boolean | undefined;
|
|
128
129
|
readonly icons?: typeof import('../QBadge/constants').DEFAULT_ICONS | undefined;
|
|
129
130
|
readonly texts?: typeof import('../QBadge/constants').DEFAULT_TEXTS | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/QSelect/index.ts"],"names":[],"mappings":"AAMA,QAAA,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAO8tzB,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/QSelect/index.ts"],"names":[],"mappings":"AAMA,QAAA,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAO8tzB,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gDAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAPxzzB,CAAA;AAGzC,OAAO,EAAE,OAAO,EAAE,CAAA;AAGlB,cAAc,SAAS,CAAA"}
|