@quidgest/ui 0.16.21 → 0.16.22
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/ui.css +9 -1
- package/dist/ui.esm.js +3558 -3558
- package/dist/ui.js +10 -10
- package/dist/ui.min.css +1 -1
- package/dist/ui.min.js +768 -767
- package/dist/ui.scss +10 -2
- package/esm/components/QCombobox/QCombobox.d.ts +18 -68
- package/esm/components/QCombobox/QCombobox.d.ts.map +1 -1
- package/esm/components/QCombobox/index.d.ts +9 -34
- package/esm/components/QCombobox/index.d.ts.map +1 -1
- package/esm/components/QDropdownMenu/QDropdownMenuContent.d.ts +18 -68
- package/esm/components/QDropdownMenu/QDropdownMenuContent.d.ts.map +1 -1
- package/esm/components/QList/QList.d.ts +5 -10
- package/esm/components/QList/QList.d.ts.map +1 -1
- package/esm/components/QList/QList.vue.js +94 -96
- package/esm/components/QList/index.d.ts +10 -48
- package/esm/components/QList/index.d.ts.map +1 -1
- package/esm/components/QList/types.d.ts +5 -1
- package/esm/components/QList/types.d.ts.map +1 -1
- package/esm/components/QSelect/QSelect.d.ts +18 -68
- package/esm/components/QSelect/QSelect.d.ts.map +1 -1
- package/esm/components/QSelect/QSelect.vue.js +18 -18
- package/esm/components/QSelect/index.d.ts +9 -34
- package/esm/components/QSelect/index.d.ts.map +1 -1
- package/esm/components/QToggleGroup/types.d.ts +1 -1
- package/esm/composables/useGroup/index.d.ts +4 -2
- package/esm/composables/useGroup/index.d.ts.map +1 -1
- package/esm/composables/useGroup/index.js +26 -24
- package/package.json +1 -1
package/dist/ui.scss
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Quidgest UI v0.16.
|
|
2
|
+
* Quidgest UI v0.16.22
|
|
3
3
|
* (c) 2025 Quidgest - Consultores de Gestão, S.A.
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -255,6 +255,7 @@ $outline-color: rgb(var(--q-theme-info-rgb) / 50%) !default;
|
|
|
255
255
|
$outline: $outline-width $outline-style $outline-color;
|
|
256
256
|
$scrollbar-thumb: var(--q-theme-neutral-light);
|
|
257
257
|
$scrollbar-track: rgb(var(--q-theme-neutral-light-rgb) / 25%);
|
|
258
|
+
$headings-text-transform: uppercase !default;
|
|
258
259
|
$input-padding-y: 0.26rem !default;
|
|
259
260
|
$input-padding-x: 0.25rem !default;
|
|
260
261
|
:root {
|
|
@@ -316,6 +317,14 @@ a {
|
|
|
316
317
|
outline: $outline;
|
|
317
318
|
}
|
|
318
319
|
}
|
|
320
|
+
h1,
|
|
321
|
+
h2,
|
|
322
|
+
h3,
|
|
323
|
+
h4,
|
|
324
|
+
h5,
|
|
325
|
+
h6 {
|
|
326
|
+
text-transform: $headings-text-transform;
|
|
327
|
+
}
|
|
319
328
|
$transition-duration: 0.2s !default;
|
|
320
329
|
.fade-enter-from,
|
|
321
330
|
.fade-leave-to {
|
|
@@ -1349,7 +1358,6 @@ $q-carousel-height-md: 300px;
|
|
|
1349
1358
|
letter-spacing: 0.02rem;
|
|
1350
1359
|
h4 {
|
|
1351
1360
|
margin: 0;
|
|
1352
|
-
text-transform: uppercase;
|
|
1353
1361
|
}
|
|
1354
1362
|
}
|
|
1355
1363
|
}
|
|
@@ -312,9 +312,9 @@ declare function __VLS_template(): {
|
|
|
312
312
|
$: import('vue').ComponentInternalInstance;
|
|
313
313
|
$data: {};
|
|
314
314
|
$props: {
|
|
315
|
-
readonly modelValue?: any;
|
|
316
315
|
readonly id?: string | undefined;
|
|
317
316
|
readonly class?: string | unknown[] | undefined;
|
|
317
|
+
readonly modelValue?: any;
|
|
318
318
|
readonly highlighted?: any;
|
|
319
319
|
readonly items?: import('../QList/types').Item[] | undefined;
|
|
320
320
|
readonly groups?: import('../QList/types').Group[] | undefined;
|
|
@@ -325,7 +325,7 @@ declare function __VLS_template(): {
|
|
|
325
325
|
readonly multiple?: boolean | undefined;
|
|
326
326
|
readonly required?: boolean | undefined;
|
|
327
327
|
readonly onClick?: ((key: any) => any) | undefined;
|
|
328
|
-
readonly "onUpdate:modelValue"?: ((
|
|
328
|
+
readonly "onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
329
329
|
readonly "onMouseenter:item"?: ((key: any) => any) | undefined;
|
|
330
330
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
331
331
|
$attrs: {
|
|
@@ -417,23 +417,11 @@ declare function __VLS_template(): {
|
|
|
417
417
|
$root: import('vue').ComponentPublicInstance | null;
|
|
418
418
|
$parent: import('vue').ComponentPublicInstance | null;
|
|
419
419
|
$host: Element | null;
|
|
420
|
-
$emit: ((event: "click", key: any) => void) & ((event: "update:modelValue",
|
|
420
|
+
$emit: ((event: "click", key: any) => void) & ((event: "update:modelValue", val: any) => void) & ((event: "mouseenter:item", key: any) => void);
|
|
421
421
|
$el: any;
|
|
422
|
-
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
423
|
-
modelValue?: any;
|
|
424
|
-
} & import('../../types/component').QBaseComponentProps & {
|
|
425
|
-
highlighted?: any;
|
|
426
|
-
items?: import('../QList/types').Item[];
|
|
427
|
-
groups?: import('../QList/types').Group[];
|
|
428
|
-
itemValue?: string;
|
|
429
|
-
itemLabel?: string;
|
|
430
|
-
disabled?: boolean;
|
|
431
|
-
selectable?: boolean;
|
|
432
|
-
multiple?: boolean;
|
|
433
|
-
required?: boolean;
|
|
434
|
-
}> & Readonly<{
|
|
422
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('..').QListProps> & Readonly<{
|
|
435
423
|
onClick?: ((key: any) => any) | undefined;
|
|
436
|
-
"onUpdate:modelValue"?: ((
|
|
424
|
+
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
437
425
|
"onMouseenter:item"?: ((key: any) => any) | undefined;
|
|
438
426
|
}>, {
|
|
439
427
|
getItem: (idx: number) => HTMLElement | undefined;
|
|
@@ -441,10 +429,9 @@ declare function __VLS_template(): {
|
|
|
441
429
|
getAdjacentItemIndex: (idx: number, direction: "next" | "prev") => number;
|
|
442
430
|
getFirstFocusableItemIndex: () => number;
|
|
443
431
|
getLastFocusableItemIndex: () => number;
|
|
444
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
445
|
-
"update:modelValue": (value: any) => any;
|
|
446
|
-
} & {
|
|
432
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
447
433
|
click: (key: any) => any;
|
|
434
|
+
"update:modelValue": (val: any) => any;
|
|
448
435
|
"mouseenter:item": (key: any) => any;
|
|
449
436
|
}, string, {
|
|
450
437
|
groups: import('../QList/types').Group[];
|
|
@@ -474,21 +461,9 @@ declare function __VLS_template(): {
|
|
|
474
461
|
groups: import('../QList/types').Group[];
|
|
475
462
|
itemValue: string;
|
|
476
463
|
itemLabel: string;
|
|
477
|
-
}> & Omit<Readonly<{
|
|
478
|
-
modelValue?: any;
|
|
479
|
-
} & import('../../types/component').QBaseComponentProps & {
|
|
480
|
-
highlighted?: any;
|
|
481
|
-
items?: import('../QList/types').Item[];
|
|
482
|
-
groups?: import('../QList/types').Group[];
|
|
483
|
-
itemValue?: string;
|
|
484
|
-
itemLabel?: string;
|
|
485
|
-
disabled?: boolean;
|
|
486
|
-
selectable?: boolean;
|
|
487
|
-
multiple?: boolean;
|
|
488
|
-
required?: boolean;
|
|
489
|
-
}> & Readonly<{
|
|
464
|
+
}> & Omit<Readonly<import('..').QListProps> & Readonly<{
|
|
490
465
|
onClick?: ((key: any) => any) | undefined;
|
|
491
|
-
"onUpdate:modelValue"?: ((
|
|
466
|
+
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
492
467
|
"onMouseenter:item"?: ((key: any) => any) | undefined;
|
|
493
468
|
}>, "getItem" | "getActiveItemIndex" | "getAdjacentItemIndex" | "getFirstFocusableItemIndex" | "getLastFocusableItemIndex" | ("groups" | "itemValue" | "itemLabel")> & import('vue').ShallowUnwrapRef<{
|
|
494
469
|
getItem: (idx: number) => HTMLElement | undefined;
|
|
@@ -1220,9 +1195,9 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
1220
1195
|
$: import('vue').ComponentInternalInstance;
|
|
1221
1196
|
$data: {};
|
|
1222
1197
|
$props: {
|
|
1223
|
-
readonly modelValue?: any;
|
|
1224
1198
|
readonly id?: string | undefined;
|
|
1225
1199
|
readonly class?: string | unknown[] | undefined;
|
|
1200
|
+
readonly modelValue?: any;
|
|
1226
1201
|
readonly highlighted?: any;
|
|
1227
1202
|
readonly items?: import('../QList/types').Item[] | undefined;
|
|
1228
1203
|
readonly groups?: import('../QList/types').Group[] | undefined;
|
|
@@ -1233,7 +1208,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
1233
1208
|
readonly multiple?: boolean | undefined;
|
|
1234
1209
|
readonly required?: boolean | undefined;
|
|
1235
1210
|
readonly onClick?: ((key: any) => any) | undefined;
|
|
1236
|
-
readonly "onUpdate:modelValue"?: ((
|
|
1211
|
+
readonly "onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
1237
1212
|
readonly "onMouseenter:item"?: ((key: any) => any) | undefined;
|
|
1238
1213
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
1239
1214
|
$attrs: {
|
|
@@ -1325,23 +1300,11 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
1325
1300
|
$root: import('vue').ComponentPublicInstance | null;
|
|
1326
1301
|
$parent: import('vue').ComponentPublicInstance | null;
|
|
1327
1302
|
$host: Element | null;
|
|
1328
|
-
$emit: ((event: "click", key: any) => void) & ((event: "update:modelValue",
|
|
1303
|
+
$emit: ((event: "click", key: any) => void) & ((event: "update:modelValue", val: any) => void) & ((event: "mouseenter:item", key: any) => void);
|
|
1329
1304
|
$el: any;
|
|
1330
|
-
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
1331
|
-
modelValue?: any;
|
|
1332
|
-
} & import('../../types/component').QBaseComponentProps & {
|
|
1333
|
-
highlighted?: any;
|
|
1334
|
-
items?: import('../QList/types').Item[];
|
|
1335
|
-
groups?: import('../QList/types').Group[];
|
|
1336
|
-
itemValue?: string;
|
|
1337
|
-
itemLabel?: string;
|
|
1338
|
-
disabled?: boolean;
|
|
1339
|
-
selectable?: boolean;
|
|
1340
|
-
multiple?: boolean;
|
|
1341
|
-
required?: boolean;
|
|
1342
|
-
}> & Readonly<{
|
|
1305
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('..').QListProps> & Readonly<{
|
|
1343
1306
|
onClick?: ((key: any) => any) | undefined;
|
|
1344
|
-
"onUpdate:modelValue"?: ((
|
|
1307
|
+
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
1345
1308
|
"onMouseenter:item"?: ((key: any) => any) | undefined;
|
|
1346
1309
|
}>, {
|
|
1347
1310
|
getItem: (idx: number) => HTMLElement | undefined;
|
|
@@ -1349,10 +1312,9 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
1349
1312
|
getAdjacentItemIndex: (idx: number, direction: "next" | "prev") => number;
|
|
1350
1313
|
getFirstFocusableItemIndex: () => number;
|
|
1351
1314
|
getLastFocusableItemIndex: () => number;
|
|
1352
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1353
|
-
"update:modelValue": (value: any) => any;
|
|
1354
|
-
} & {
|
|
1315
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
1355
1316
|
click: (key: any) => any;
|
|
1317
|
+
"update:modelValue": (val: any) => any;
|
|
1356
1318
|
"mouseenter:item": (key: any) => any;
|
|
1357
1319
|
}, string, {
|
|
1358
1320
|
groups: import('../QList/types').Group[];
|
|
@@ -1382,21 +1344,9 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
1382
1344
|
groups: import('../QList/types').Group[];
|
|
1383
1345
|
itemValue: string;
|
|
1384
1346
|
itemLabel: string;
|
|
1385
|
-
}> & Omit<Readonly<{
|
|
1386
|
-
modelValue?: any;
|
|
1387
|
-
} & import('../../types/component').QBaseComponentProps & {
|
|
1388
|
-
highlighted?: any;
|
|
1389
|
-
items?: import('../QList/types').Item[];
|
|
1390
|
-
groups?: import('../QList/types').Group[];
|
|
1391
|
-
itemValue?: string;
|
|
1392
|
-
itemLabel?: string;
|
|
1393
|
-
disabled?: boolean;
|
|
1394
|
-
selectable?: boolean;
|
|
1395
|
-
multiple?: boolean;
|
|
1396
|
-
required?: boolean;
|
|
1397
|
-
}> & Readonly<{
|
|
1347
|
+
}> & Omit<Readonly<import('..').QListProps> & Readonly<{
|
|
1398
1348
|
onClick?: ((key: any) => any) | undefined;
|
|
1399
|
-
"onUpdate:modelValue"?: ((
|
|
1349
|
+
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
1400
1350
|
"onMouseenter:item"?: ((key: any) => any) | undefined;
|
|
1401
1351
|
}>, "getItem" | "getActiveItemIndex" | "getAdjacentItemIndex" | "getFirstFocusableItemIndex" | "getLastFocusableItemIndex" | ("groups" | "itemValue" | "itemLabel")> & import('vue').ShallowUnwrapRef<{
|
|
1402
1352
|
getItem: (idx: number) => HTMLElement | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"QCombobox.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QCombobox/QCombobox.vue"],"names":[],"mappings":"AA6HA;AAslBC,OAAO,EAAE,aAAa,EAAiB,MAAM,SAAS,CAAA;AAYtD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,SAAS,CAAA;AAG7C,OAAO,EAAY,QAAQ,EAAyB,MAAM,KAAK,CAAA;AAE/D,KAAK,WAAW,GAAG,cAAc,CAAC;AAodnC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,GAAG,CAAC;IACjB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,QAAQ,CAAC,EAAE,MAAM,CAAC;CACjB,GAAG,WAAW,CAAC;AAOhB,iBAAS,cAAc;WAuVT,OAAO,IAA6B;;iCAvBZ,GAAG;gCACJ,GAAG;yBACV,GAAG;wBACJ,GAAG;wBACH,GAAG;gCACK,GAAG;;;YACb,GAAG;+BACM,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gDAxalC,GAAE,8CAA8C,GAAG,yBACzC,GAAG,6DACa,GAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAF5B,GAAE,8CAA8C,GAAG,yBACzC,GAAG,6DACa,GAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAF5B,GAAE,8CAA8C,GAAG,yBACzC,GAAG,6DACa,GAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gDAF5B,GAAE,8CAA8C,GAAG,yBACzC,GAAG,6DACa,GAAE
|
|
1
|
+
{"version":3,"file":"QCombobox.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QCombobox/QCombobox.vue"],"names":[],"mappings":"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"}
|
|
@@ -722,9 +722,9 @@ declare const QCombobox: {
|
|
|
722
722
|
$: import('vue').ComponentInternalInstance;
|
|
723
723
|
$data: {};
|
|
724
724
|
$props: {
|
|
725
|
-
readonly modelValue?: any;
|
|
726
725
|
readonly id?: string | undefined;
|
|
727
726
|
readonly class?: string | unknown[] | undefined;
|
|
727
|
+
readonly modelValue?: any;
|
|
728
728
|
readonly highlighted?: any;
|
|
729
729
|
readonly items?: import('../QList/types').Item[] | undefined;
|
|
730
730
|
readonly groups?: import('../QList/types').Group[] | undefined;
|
|
@@ -735,7 +735,7 @@ declare const QCombobox: {
|
|
|
735
735
|
readonly multiple?: boolean | undefined;
|
|
736
736
|
readonly required?: boolean | undefined;
|
|
737
737
|
readonly onClick?: ((key: any) => any) | undefined;
|
|
738
|
-
readonly "onUpdate:modelValue"?: ((
|
|
738
|
+
readonly "onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
739
739
|
readonly "onMouseenter:item"?: ((key: any) => any) | undefined;
|
|
740
740
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
741
741
|
$attrs: {
|
|
@@ -827,23 +827,11 @@ declare const QCombobox: {
|
|
|
827
827
|
$root: import('vue').ComponentPublicInstance | null;
|
|
828
828
|
$parent: import('vue').ComponentPublicInstance | null;
|
|
829
829
|
$host: Element | null;
|
|
830
|
-
$emit: ((event: "click", key: any) => void) & ((event: "update:modelValue",
|
|
830
|
+
$emit: ((event: "click", key: any) => void) & ((event: "update:modelValue", val: any) => void) & ((event: "mouseenter:item", key: any) => void);
|
|
831
831
|
$el: any;
|
|
832
|
-
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
833
|
-
modelValue?: any;
|
|
834
|
-
} & import('../../types/component').QBaseComponentProps & {
|
|
835
|
-
highlighted?: any;
|
|
836
|
-
items?: import('../QList/types').Item[];
|
|
837
|
-
groups?: import('../QList/types').Group[];
|
|
838
|
-
itemValue?: string;
|
|
839
|
-
itemLabel?: string;
|
|
840
|
-
disabled?: boolean;
|
|
841
|
-
selectable?: boolean;
|
|
842
|
-
multiple?: boolean;
|
|
843
|
-
required?: boolean;
|
|
844
|
-
}> & Readonly<{
|
|
832
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('..').QListProps> & Readonly<{
|
|
845
833
|
onClick?: ((key: any) => any) | undefined;
|
|
846
|
-
"onUpdate:modelValue"?: ((
|
|
834
|
+
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
847
835
|
"onMouseenter:item"?: ((key: any) => any) | undefined;
|
|
848
836
|
}>, {
|
|
849
837
|
getItem: (idx: number) => HTMLElement | undefined;
|
|
@@ -851,10 +839,9 @@ declare const QCombobox: {
|
|
|
851
839
|
getAdjacentItemIndex: (idx: number, direction: "next" | "prev") => number;
|
|
852
840
|
getFirstFocusableItemIndex: () => number;
|
|
853
841
|
getLastFocusableItemIndex: () => number;
|
|
854
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
855
|
-
"update:modelValue": (value: any) => any;
|
|
856
|
-
} & {
|
|
842
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
857
843
|
click: (key: any) => any;
|
|
844
|
+
"update:modelValue": (val: any) => any;
|
|
858
845
|
"mouseenter:item": (key: any) => any;
|
|
859
846
|
}, string, {
|
|
860
847
|
groups: import('../QList/types').Group[];
|
|
@@ -884,21 +871,9 @@ declare const QCombobox: {
|
|
|
884
871
|
groups: import('../QList/types').Group[];
|
|
885
872
|
itemValue: string;
|
|
886
873
|
itemLabel: string;
|
|
887
|
-
}> & Omit<Readonly<{
|
|
888
|
-
modelValue?: any;
|
|
889
|
-
} & import('../../types/component').QBaseComponentProps & {
|
|
890
|
-
highlighted?: any;
|
|
891
|
-
items?: import('../QList/types').Item[];
|
|
892
|
-
groups?: import('../QList/types').Group[];
|
|
893
|
-
itemValue?: string;
|
|
894
|
-
itemLabel?: string;
|
|
895
|
-
disabled?: boolean;
|
|
896
|
-
selectable?: boolean;
|
|
897
|
-
multiple?: boolean;
|
|
898
|
-
required?: boolean;
|
|
899
|
-
}> & Readonly<{
|
|
874
|
+
}> & Omit<Readonly<import('..').QListProps> & Readonly<{
|
|
900
875
|
onClick?: ((key: any) => any) | undefined;
|
|
901
|
-
"onUpdate:modelValue"?: ((
|
|
876
|
+
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
902
877
|
"onMouseenter:item"?: ((key: any) => any) | undefined;
|
|
903
878
|
}>, "getItem" | "getActiveItemIndex" | "getAdjacentItemIndex" | "getFirstFocusableItemIndex" | "getLastFocusableItemIndex" | ("groups" | "itemValue" | "itemLabel")> & import('vue').ShallowUnwrapRef<{
|
|
904
879
|
getItem: (idx: number) => HTMLElement | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/QCombobox/index.ts"],"names":[],"mappings":"AAMA,QAAA,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gDAI2vzB,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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gDAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gDAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/QCombobox/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -21,9 +21,9 @@ declare function __VLS_template(): {
|
|
|
21
21
|
$: import('vue').ComponentInternalInstance;
|
|
22
22
|
$data: {};
|
|
23
23
|
$props: {
|
|
24
|
-
readonly modelValue?: any;
|
|
25
24
|
readonly id?: string | undefined;
|
|
26
25
|
readonly class?: string | unknown[] | undefined;
|
|
26
|
+
readonly modelValue?: any;
|
|
27
27
|
readonly highlighted?: any;
|
|
28
28
|
readonly items?: Item[] | undefined;
|
|
29
29
|
readonly groups?: import('../QList/types').Group[] | undefined;
|
|
@@ -34,7 +34,7 @@ declare function __VLS_template(): {
|
|
|
34
34
|
readonly multiple?: boolean | undefined;
|
|
35
35
|
readonly required?: boolean | undefined;
|
|
36
36
|
readonly onClick?: ((key: any) => any) | undefined;
|
|
37
|
-
readonly "onUpdate:modelValue"?: ((
|
|
37
|
+
readonly "onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
38
38
|
readonly "onMouseenter:item"?: ((key: any) => any) | undefined;
|
|
39
39
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
40
40
|
$attrs: {
|
|
@@ -126,23 +126,11 @@ declare function __VLS_template(): {
|
|
|
126
126
|
$root: import('vue').ComponentPublicInstance | null;
|
|
127
127
|
$parent: import('vue').ComponentPublicInstance | null;
|
|
128
128
|
$host: Element | null;
|
|
129
|
-
$emit: ((event: "click", key: any) => void) & ((event: "update:modelValue",
|
|
129
|
+
$emit: ((event: "click", key: any) => void) & ((event: "update:modelValue", val: any) => void) & ((event: "mouseenter:item", key: any) => void);
|
|
130
130
|
$el: any;
|
|
131
|
-
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
132
|
-
modelValue?: any;
|
|
133
|
-
} & import('../../types/component').QBaseComponentProps & {
|
|
134
|
-
highlighted?: any;
|
|
135
|
-
items?: Item[];
|
|
136
|
-
groups?: import('../QList/types').Group[];
|
|
137
|
-
itemValue?: string;
|
|
138
|
-
itemLabel?: string;
|
|
139
|
-
disabled?: boolean;
|
|
140
|
-
selectable?: boolean;
|
|
141
|
-
multiple?: boolean;
|
|
142
|
-
required?: boolean;
|
|
143
|
-
}> & Readonly<{
|
|
131
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('..').QListProps> & Readonly<{
|
|
144
132
|
onClick?: ((key: any) => any) | undefined;
|
|
145
|
-
"onUpdate:modelValue"?: ((
|
|
133
|
+
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
146
134
|
"onMouseenter:item"?: ((key: any) => any) | undefined;
|
|
147
135
|
}>, {
|
|
148
136
|
getItem: (idx: number) => HTMLElement | undefined;
|
|
@@ -150,10 +138,9 @@ declare function __VLS_template(): {
|
|
|
150
138
|
getAdjacentItemIndex: (idx: number, direction: "next" | "prev") => number;
|
|
151
139
|
getFirstFocusableItemIndex: () => number;
|
|
152
140
|
getLastFocusableItemIndex: () => number;
|
|
153
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
154
|
-
"update:modelValue": (value: any) => any;
|
|
155
|
-
} & {
|
|
141
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
156
142
|
click: (key: any) => any;
|
|
143
|
+
"update:modelValue": (val: any) => any;
|
|
157
144
|
"mouseenter:item": (key: any) => any;
|
|
158
145
|
}, string, {
|
|
159
146
|
groups: import('../QList/types').Group[];
|
|
@@ -183,21 +170,9 @@ declare function __VLS_template(): {
|
|
|
183
170
|
groups: import('../QList/types').Group[];
|
|
184
171
|
itemValue: string;
|
|
185
172
|
itemLabel: string;
|
|
186
|
-
}> & Omit<Readonly<{
|
|
187
|
-
modelValue?: any;
|
|
188
|
-
} & import('../../types/component').QBaseComponentProps & {
|
|
189
|
-
highlighted?: any;
|
|
190
|
-
items?: Item[];
|
|
191
|
-
groups?: import('../QList/types').Group[];
|
|
192
|
-
itemValue?: string;
|
|
193
|
-
itemLabel?: string;
|
|
194
|
-
disabled?: boolean;
|
|
195
|
-
selectable?: boolean;
|
|
196
|
-
multiple?: boolean;
|
|
197
|
-
required?: boolean;
|
|
198
|
-
}> & Readonly<{
|
|
173
|
+
}> & Omit<Readonly<import('..').QListProps> & Readonly<{
|
|
199
174
|
onClick?: ((key: any) => any) | undefined;
|
|
200
|
-
"onUpdate:modelValue"?: ((
|
|
175
|
+
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
201
176
|
"onMouseenter:item"?: ((key: any) => any) | undefined;
|
|
202
177
|
}>, "getItem" | "getActiveItemIndex" | "getAdjacentItemIndex" | "getFirstFocusableItemIndex" | "getLastFocusableItemIndex" | ("groups" | "itemValue" | "itemLabel")> & import('vue').ShallowUnwrapRef<{
|
|
203
178
|
getItem: (idx: number) => HTMLElement | undefined;
|
|
@@ -253,9 +228,9 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
253
228
|
$: import('vue').ComponentInternalInstance;
|
|
254
229
|
$data: {};
|
|
255
230
|
$props: {
|
|
256
|
-
readonly modelValue?: any;
|
|
257
231
|
readonly id?: string | undefined;
|
|
258
232
|
readonly class?: string | unknown[] | undefined;
|
|
233
|
+
readonly modelValue?: any;
|
|
259
234
|
readonly highlighted?: any;
|
|
260
235
|
readonly items?: Item[] | undefined;
|
|
261
236
|
readonly groups?: import('../QList/types').Group[] | undefined;
|
|
@@ -266,7 +241,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
266
241
|
readonly multiple?: boolean | undefined;
|
|
267
242
|
readonly required?: boolean | undefined;
|
|
268
243
|
readonly onClick?: ((key: any) => any) | undefined;
|
|
269
|
-
readonly "onUpdate:modelValue"?: ((
|
|
244
|
+
readonly "onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
270
245
|
readonly "onMouseenter:item"?: ((key: any) => any) | undefined;
|
|
271
246
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
272
247
|
$attrs: {
|
|
@@ -358,23 +333,11 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
358
333
|
$root: import('vue').ComponentPublicInstance | null;
|
|
359
334
|
$parent: import('vue').ComponentPublicInstance | null;
|
|
360
335
|
$host: Element | null;
|
|
361
|
-
$emit: ((event: "click", key: any) => void) & ((event: "update:modelValue",
|
|
336
|
+
$emit: ((event: "click", key: any) => void) & ((event: "update:modelValue", val: any) => void) & ((event: "mouseenter:item", key: any) => void);
|
|
362
337
|
$el: any;
|
|
363
|
-
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
364
|
-
modelValue?: any;
|
|
365
|
-
} & import('../../types/component').QBaseComponentProps & {
|
|
366
|
-
highlighted?: any;
|
|
367
|
-
items?: Item[];
|
|
368
|
-
groups?: import('../QList/types').Group[];
|
|
369
|
-
itemValue?: string;
|
|
370
|
-
itemLabel?: string;
|
|
371
|
-
disabled?: boolean;
|
|
372
|
-
selectable?: boolean;
|
|
373
|
-
multiple?: boolean;
|
|
374
|
-
required?: boolean;
|
|
375
|
-
}> & Readonly<{
|
|
338
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('..').QListProps> & Readonly<{
|
|
376
339
|
onClick?: ((key: any) => any) | undefined;
|
|
377
|
-
"onUpdate:modelValue"?: ((
|
|
340
|
+
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
378
341
|
"onMouseenter:item"?: ((key: any) => any) | undefined;
|
|
379
342
|
}>, {
|
|
380
343
|
getItem: (idx: number) => HTMLElement | undefined;
|
|
@@ -382,10 +345,9 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
382
345
|
getAdjacentItemIndex: (idx: number, direction: "next" | "prev") => number;
|
|
383
346
|
getFirstFocusableItemIndex: () => number;
|
|
384
347
|
getLastFocusableItemIndex: () => number;
|
|
385
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
386
|
-
"update:modelValue": (value: any) => any;
|
|
387
|
-
} & {
|
|
348
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
388
349
|
click: (key: any) => any;
|
|
350
|
+
"update:modelValue": (val: any) => any;
|
|
389
351
|
"mouseenter:item": (key: any) => any;
|
|
390
352
|
}, string, {
|
|
391
353
|
groups: import('../QList/types').Group[];
|
|
@@ -415,21 +377,9 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
415
377
|
groups: import('../QList/types').Group[];
|
|
416
378
|
itemValue: string;
|
|
417
379
|
itemLabel: string;
|
|
418
|
-
}> & Omit<Readonly<{
|
|
419
|
-
modelValue?: any;
|
|
420
|
-
} & import('../../types/component').QBaseComponentProps & {
|
|
421
|
-
highlighted?: any;
|
|
422
|
-
items?: Item[];
|
|
423
|
-
groups?: import('../QList/types').Group[];
|
|
424
|
-
itemValue?: string;
|
|
425
|
-
itemLabel?: string;
|
|
426
|
-
disabled?: boolean;
|
|
427
|
-
selectable?: boolean;
|
|
428
|
-
multiple?: boolean;
|
|
429
|
-
required?: boolean;
|
|
430
|
-
}> & Readonly<{
|
|
380
|
+
}> & Omit<Readonly<import('..').QListProps> & Readonly<{
|
|
431
381
|
onClick?: ((key: any) => any) | undefined;
|
|
432
|
-
"onUpdate:modelValue"?: ((
|
|
382
|
+
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
433
383
|
"onMouseenter:item"?: ((key: any) => any) | undefined;
|
|
434
384
|
}>, "getItem" | "getActiveItemIndex" | "getAdjacentItemIndex" | "getFirstFocusableItemIndex" | "getLastFocusableItemIndex" | ("groups" | "itemValue" | "itemLabel")> & import('vue').ShallowUnwrapRef<{
|
|
435
385
|
getItem: (idx: number) => HTMLElement | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"QDropdownMenuContent.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QDropdownMenu/QDropdownMenuContent.vue"],"names":[],"mappings":"AAuEA;AA4QC,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,gBAAgB,CAAA;AAC1C,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,SAAS,CAAA;AAGxD,OAAO,EAAiB,QAAQ,EAAkB,MAAM,KAAK,CAAA;AAC7D,OAAO,EAAE,aAAa,EAAE,MAAM,SAAS,CAAA;AAEvC,KAAK,WAAW,GAAG,yBAAyB,CAAC;AAiM9C,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,aAAa,CAAC,EAAE,GAAG,CAAC;CACnB,GAAG,WAAW,CAAC;AAMhB,iBAAS,cAAc;WAiMT,OAAO,IAA6B;;;;YAZvB,GAAG;;;YACM,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gDA0E60I,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG
|
|
1
|
+
{"version":3,"file":"QDropdownMenuContent.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QDropdownMenu/QDropdownMenuContent.vue"],"names":[],"mappings":"AAuEA;AA4QC,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,gBAAgB,CAAA;AAC1C,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,SAAS,CAAA;AAGxD,OAAO,EAAiB,QAAQ,EAAkB,MAAM,KAAK,CAAA;AAC7D,OAAO,EAAE,aAAa,EAAE,MAAM,SAAS,CAAA;AAEvC,KAAK,WAAW,GAAG,yBAAyB,CAAC;AAiM9C,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,aAAa,CAAC,EAAE,GAAG,CAAC;CACnB,GAAG,WAAW,CAAC;AAMhB,iBAAS,cAAc;WAiMT,OAAO,IAA6B;;;;YAZvB,GAAG;;;YACM,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gDA0E60I,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA1Dz+I;AA0BD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4CA+B+1I,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;OArBx+I,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,5 +1,4 @@
|
|
|
1
1
|
import { Group, QListProps } from './types';
|
|
2
|
-
type __VLS_Props = QListProps;
|
|
3
2
|
declare function getItem(idx: number): HTMLElement | undefined;
|
|
4
3
|
/**
|
|
5
4
|
* Retrieves the index of the currently active item among the provided array of HTML elements.
|
|
@@ -33,9 +32,6 @@ declare function getLastFocusableItemIndex(): number;
|
|
|
33
32
|
* @returns The index of the adjacent focusable item or the index of the active item if at the edge.
|
|
34
33
|
*/
|
|
35
34
|
declare function getAdjacentItemIndex(idx: number, direction: 'next' | 'prev'): number;
|
|
36
|
-
type __VLS_PublicProps = {
|
|
37
|
-
modelValue?: any;
|
|
38
|
-
} & __VLS_Props;
|
|
39
35
|
declare function __VLS_template(): {
|
|
40
36
|
attrs: Partial<{}>;
|
|
41
37
|
slots: {
|
|
@@ -130,20 +126,19 @@ declare function __VLS_template(): {
|
|
|
130
126
|
rootEl: any;
|
|
131
127
|
};
|
|
132
128
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
133
|
-
declare const __VLS_component: import('vue').DefineComponent<
|
|
129
|
+
declare const __VLS_component: import('vue').DefineComponent<QListProps, {
|
|
134
130
|
getItem: typeof getItem;
|
|
135
131
|
getActiveItemIndex: typeof getActiveItemIndex;
|
|
136
132
|
getAdjacentItemIndex: typeof getAdjacentItemIndex;
|
|
137
133
|
getFirstFocusableItemIndex: typeof getFirstFocusableItemIndex;
|
|
138
134
|
getLastFocusableItemIndex: typeof getLastFocusableItemIndex;
|
|
139
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
140
|
-
"update:modelValue": (value: any) => any;
|
|
141
|
-
} & {
|
|
135
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
142
136
|
click: (key: any) => any;
|
|
137
|
+
"update:modelValue": (val: any) => any;
|
|
143
138
|
"mouseenter:item": (key: any) => any;
|
|
144
|
-
}, string, import('vue').PublicProps, Readonly<
|
|
139
|
+
}, string, import('vue').PublicProps, Readonly<QListProps> & Readonly<{
|
|
145
140
|
onClick?: ((key: any) => any) | undefined;
|
|
146
|
-
"onUpdate:modelValue"?: ((
|
|
141
|
+
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
147
142
|
"onMouseenter:item"?: ((key: any) => any) | undefined;
|
|
148
143
|
}>, {
|
|
149
144
|
groups: Group[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"QList.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QList/QList.vue"],"names":[],"mappings":"AA8CA;AA+bC,OAAO,KAAK,EAAE,KAAK,EAAE,UAAU,EAAE,MAAM,SAAS,CAAA;
|
|
1
|
+
{"version":3,"file":"QList.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QList/QList.vue"],"names":[],"mappings":"AA8CA;AA+bC,OAAO,KAAK,EAAE,KAAK,EAAE,UAAU,EAAE,MAAM,SAAS,CAAA;AAsOhD,iBAAS,OAAO,CAAC,GAAG,EAAE,MAAM,GAAG,WAAW,GAAG,SAAS,CAIrD;AAED;;;;GAIG;AACH,iBAAS,kBAAkB,IAAI,MAAM,CAIpC;AAED;;;;;;GAMG;AACH,iBAAS,0BAA0B,IAAI,MAAM,CAO5C;AAED;;;;;;GAMG;AACH,iBAAS,yBAAyB,IAAI,MAAM,CAO3C;AAmCD;;;;;;;;GAQG;AACH,iBAAS,oBAAoB,CAAC,GAAG,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,GAAG,MAAM,GAAG,MAAM,CAuB7E;AA6DF,iBAAS,cAAc;WA0IT,OAAO,IAA6B;;yBAdpB,GAAG;;;;YACN,GAAG;;;;YACM,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCArFtC,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DACjF,GAAE;;;;;;;;;;;;;;;;;EAqGD;AAuBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCA9HpB,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DACjF,GAAE;;;;;;;;;;;;;;;OAwIA,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"}
|