vuetify 3.0.4 → 3.0.6
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/_component-variables.sass +1 -0
- package/dist/json/attributes.json +34 -14
- package/dist/json/importMap.json +62 -62
- package/dist/json/tags.json +5 -0
- package/dist/json/web-types.json +76 -38
- package/dist/vuetify.css +20 -8
- package/dist/vuetify.d.ts +283 -173
- package/dist/vuetify.esm.js +235 -185
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +235 -185
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +132 -129
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAlert/index.d.ts +1 -1
- package/lib/components/VApp/{variables.scss → _variables.scss} +0 -0
- package/lib/components/VAutocomplete/VAutocomplete.mjs +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/components/VAutocomplete/index.d.ts +41 -24
- package/lib/components/VAvatar/VAvatar.mjs +7 -2
- package/lib/components/VAvatar/VAvatar.mjs.map +1 -1
- package/lib/components/VAvatar/index.d.ts +2 -0
- package/lib/components/VBottomNavigation/VBottomNavigation.mjs +6 -3
- package/lib/components/VBottomNavigation/VBottomNavigation.mjs.map +1 -1
- package/lib/components/VBottomNavigation/index.d.ts +9 -0
- package/lib/components/VBtn/index.d.ts +2 -3
- package/lib/components/VCard/index.d.ts +2 -3
- package/lib/components/VChip/VChip.mjs +1 -1
- package/lib/components/VChip/VChip.mjs.map +1 -1
- package/lib/components/VChip/index.d.ts +1 -1
- package/lib/components/VChipGroup/index.d.ts +1 -1
- package/lib/components/VCombobox/VCombobox.mjs +1 -1
- package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
- package/lib/components/VCombobox/index.d.ts +41 -24
- package/lib/components/VDialog/index.d.ts +21 -6
- package/lib/components/VExpansionPanel/index.d.ts +1 -1
- package/lib/components/VField/VField.mjs +1 -1
- package/lib/components/VField/VField.mjs.map +1 -1
- package/lib/components/VField/index.d.ts +5 -8
- package/lib/components/VFileInput/VFileInput.mjs +4 -3
- package/lib/components/VFileInput/VFileInput.mjs.map +1 -1
- package/lib/components/VFileInput/index.d.ts +3 -4
- package/lib/components/VImg/VImg.mjs +10 -2
- package/lib/components/VImg/VImg.mjs.map +1 -1
- package/lib/components/VList/VList.mjs +4 -2
- package/lib/components/VList/VList.mjs.map +1 -1
- package/lib/components/VList/VListGroup.mjs +2 -1
- package/lib/components/VList/VListGroup.mjs.map +1 -1
- package/lib/components/VList/VListItem.css +1 -0
- package/lib/components/VList/VListItem.sass +1 -0
- package/lib/components/VMenu/index.d.ts +21 -6
- package/lib/components/VOverlay/VOverlay.mjs +10 -3
- package/lib/components/VOverlay/VOverlay.mjs.map +1 -1
- package/lib/components/VOverlay/index.d.ts +8 -1
- package/lib/components/VPagination/index.d.ts +1 -1
- package/lib/components/VRadioGroup/VRadioGroup.css +4 -4
- package/lib/components/VRadioGroup/VRadioGroup.sass +4 -4
- package/lib/components/VRadioGroup/_variables.scss +2 -2
- package/lib/components/VSelect/VSelect.mjs +6 -2
- package/lib/components/VSelect/VSelect.mjs.map +1 -1
- package/lib/components/VSelect/index.d.ts +41 -24
- package/lib/components/VSlider/VSliderThumb.css +9 -0
- package/lib/components/VSlider/VSliderThumb.mjs +4 -6
- package/lib/components/VSlider/VSliderThumb.mjs.map +1 -1
- package/lib/components/VSlider/VSliderThumb.sass +8 -0
- package/lib/components/VSlider/VSliderTrack.css +4 -1
- package/lib/components/VSlider/VSliderTrack.sass +3 -1
- package/lib/components/VSlider/slider.mjs +2 -2
- package/lib/components/VSlider/slider.mjs.map +1 -1
- package/lib/components/VSnackbar/VSnackbar.mjs +6 -1
- package/lib/components/VSnackbar/VSnackbar.mjs.map +1 -1
- package/lib/components/VSnackbar/index.d.ts +25 -10
- package/lib/components/VTabs/VTab.css +1 -2
- package/lib/components/VTabs/VTab.sass +4 -3
- package/lib/components/VTextField/index.d.ts +20 -29
- package/lib/components/VTextarea/index.d.ts +2 -3
- package/lib/components/VToolbar/VToolbar.mjs +6 -0
- package/lib/components/VToolbar/VToolbar.mjs.map +1 -1
- package/lib/components/VTooltip/VTooltip.mjs +2 -1
- package/lib/components/VTooltip/VTooltip.mjs.map +1 -1
- package/lib/components/VTooltip/index.d.ts +21 -6
- package/lib/components/index.d.ts +266 -156
- package/lib/composables/display.mjs +5 -4
- package/lib/composables/display.mjs.map +1 -1
- package/lib/composables/hydration.mjs +13 -8
- package/lib/composables/hydration.mjs.map +1 -1
- package/lib/composables/loader.mjs +1 -1
- package/lib/composables/loader.mjs.map +1 -1
- package/lib/composables/stack.mjs +16 -9
- package/lib/composables/stack.mjs.map +1 -1
- package/lib/composables/validation.mjs +2 -2
- package/lib/composables/validation.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.ts +17 -17
- package/lib/services/goto/util.mjs +1 -1
- package/lib/services/goto/util.mjs.map +1 -1
- package/lib/util/console.mjs +3 -3
- package/lib/util/console.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -936,8 +936,8 @@ declare const VAlert: vue.DefineComponent<{
|
|
|
936
936
|
rounded: string | number | boolean;
|
|
937
937
|
prominent: boolean;
|
|
938
938
|
density: Density;
|
|
939
|
-
modelValue: boolean;
|
|
940
939
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
940
|
+
modelValue: boolean;
|
|
941
941
|
closable: boolean;
|
|
942
942
|
closeIcon: IconValue;
|
|
943
943
|
closeLabel: string;
|
|
@@ -1284,7 +1284,6 @@ declare const VField: {
|
|
|
1284
1284
|
reverse: boolean;
|
|
1285
1285
|
error: boolean;
|
|
1286
1286
|
active: boolean;
|
|
1287
|
-
loading: boolean;
|
|
1288
1287
|
disabled: boolean;
|
|
1289
1288
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo";
|
|
1290
1289
|
clearIcon: IconValue;
|
|
@@ -1294,7 +1293,7 @@ declare const VField: {
|
|
|
1294
1293
|
persistentClear: boolean;
|
|
1295
1294
|
singleLine: boolean;
|
|
1296
1295
|
}> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
|
|
1297
|
-
loading: BooleanConstructor;
|
|
1296
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
1298
1297
|
theme: StringConstructor;
|
|
1299
1298
|
appendInnerIcon: PropType<IconValue>;
|
|
1300
1299
|
bgColor: StringConstructor;
|
|
@@ -1326,7 +1325,7 @@ declare const VField: {
|
|
|
1326
1325
|
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">>> & {
|
|
1327
1326
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
1328
1327
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
1329
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "error" | "active" | "
|
|
1328
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "error" | "active" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
1330
1329
|
$attrs: {
|
|
1331
1330
|
[x: string]: unknown;
|
|
1332
1331
|
};
|
|
@@ -1341,7 +1340,7 @@ declare const VField: {
|
|
|
1341
1340
|
$emit: ((event: "click:control", e: MouseEvent) => void) & ((event: "update:focused", focused: boolean) => void);
|
|
1342
1341
|
$el: any;
|
|
1343
1342
|
$options: vue.ComponentOptionsBase<Readonly<vue.ExtractPropTypes<Omit<{
|
|
1344
|
-
loading: BooleanConstructor;
|
|
1343
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
1345
1344
|
theme: StringConstructor;
|
|
1346
1345
|
appendInnerIcon: PropType<IconValue>;
|
|
1347
1346
|
bgColor: StringConstructor;
|
|
@@ -1383,7 +1382,6 @@ declare const VField: {
|
|
|
1383
1382
|
reverse: boolean;
|
|
1384
1383
|
error: boolean;
|
|
1385
1384
|
active: boolean;
|
|
1386
|
-
loading: boolean;
|
|
1387
1385
|
disabled: boolean;
|
|
1388
1386
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo";
|
|
1389
1387
|
clearIcon: IconValue;
|
|
@@ -1413,7 +1411,7 @@ declare const VField: {
|
|
|
1413
1411
|
$nextTick: typeof vue.nextTick;
|
|
1414
1412
|
$watch(source: string | Function, cb: Function, options?: vue.WatchOptions<boolean> | undefined): vue.WatchStopHandle;
|
|
1415
1413
|
} & Readonly<vue.ExtractPropTypes<Omit<{
|
|
1416
|
-
loading: BooleanConstructor;
|
|
1414
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
1417
1415
|
theme: StringConstructor;
|
|
1418
1416
|
appendInnerIcon: PropType<IconValue>;
|
|
1419
1417
|
bgColor: StringConstructor;
|
|
@@ -1452,7 +1450,7 @@ declare const VField: {
|
|
|
1452
1450
|
__isTeleport?: undefined;
|
|
1453
1451
|
__isSuspense?: undefined;
|
|
1454
1452
|
} & vue.ComponentOptionsBase<Readonly<vue.ExtractPropTypes<Omit<{
|
|
1455
|
-
loading: BooleanConstructor;
|
|
1453
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
1456
1454
|
theme: StringConstructor;
|
|
1457
1455
|
appendInnerIcon: PropType<IconValue>;
|
|
1458
1456
|
bgColor: StringConstructor;
|
|
@@ -1494,7 +1492,6 @@ declare const VField: {
|
|
|
1494
1492
|
reverse: boolean;
|
|
1495
1493
|
error: boolean;
|
|
1496
1494
|
active: boolean;
|
|
1497
|
-
loading: boolean;
|
|
1498
1495
|
disabled: boolean;
|
|
1499
1496
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo";
|
|
1500
1497
|
clearIcon: IconValue;
|
|
@@ -1625,7 +1622,6 @@ declare const VAutocomplete: {
|
|
|
1625
1622
|
transition: string | boolean | (vue.TransitionProps & {
|
|
1626
1623
|
component?: vue.Component<any, any, any, vue.ComputedOptions, vue.MethodOptions> | undefined;
|
|
1627
1624
|
});
|
|
1628
|
-
loading: boolean;
|
|
1629
1625
|
menu: boolean;
|
|
1630
1626
|
autofocus: boolean;
|
|
1631
1627
|
eager: boolean;
|
|
@@ -1646,6 +1642,7 @@ declare const VAutocomplete: {
|
|
|
1646
1642
|
persistentHint: boolean;
|
|
1647
1643
|
persistentPlaceholder: boolean;
|
|
1648
1644
|
persistentCounter: boolean;
|
|
1645
|
+
valueComparator: typeof deepEqual;
|
|
1649
1646
|
itemTitle: SelectItemKey;
|
|
1650
1647
|
itemValue: SelectItemKey;
|
|
1651
1648
|
itemChildren: SelectItemKey;
|
|
@@ -1689,7 +1686,7 @@ declare const VAutocomplete: {
|
|
|
1689
1686
|
default: string;
|
|
1690
1687
|
validator: (v: any) => boolean;
|
|
1691
1688
|
};
|
|
1692
|
-
loading: BooleanConstructor;
|
|
1689
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
1693
1690
|
label: StringConstructor;
|
|
1694
1691
|
prefix: StringConstructor;
|
|
1695
1692
|
autofocus: BooleanConstructor;
|
|
@@ -1707,15 +1704,15 @@ declare const VAutocomplete: {
|
|
|
1707
1704
|
default: string;
|
|
1708
1705
|
validator: (v: any) => boolean;
|
|
1709
1706
|
};
|
|
1710
|
-
modelValue: {
|
|
1711
|
-
type: vue.PropType<any>;
|
|
1712
|
-
default: any;
|
|
1713
|
-
};
|
|
1714
1707
|
variant: {
|
|
1715
1708
|
type: vue.PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
1716
1709
|
default: string;
|
|
1717
1710
|
validator: (v: any) => boolean;
|
|
1718
1711
|
};
|
|
1712
|
+
modelValue: {
|
|
1713
|
+
type: vue.PropType<any>;
|
|
1714
|
+
default: any;
|
|
1715
|
+
};
|
|
1719
1716
|
bgColor: StringConstructor;
|
|
1720
1717
|
prependIcon: vue.PropType<IconValue>;
|
|
1721
1718
|
appendIcon: vue.PropType<IconValue>;
|
|
@@ -1973,6 +1970,10 @@ declare const VAutocomplete: {
|
|
|
1973
1970
|
default: string;
|
|
1974
1971
|
};
|
|
1975
1972
|
openOnClear: BooleanConstructor;
|
|
1973
|
+
valueComparator: {
|
|
1974
|
+
type: vue.PropType<typeof deepEqual>;
|
|
1975
|
+
default: typeof deepEqual;
|
|
1976
|
+
};
|
|
1976
1977
|
customFilter: vue.PropType<FilterFunction>;
|
|
1977
1978
|
customKeyFilter: vue.PropType<FilterKeyFunctions>;
|
|
1978
1979
|
filterKeys: {
|
|
@@ -1988,7 +1989,7 @@ declare const VAutocomplete: {
|
|
|
1988
1989
|
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "onUpdate:modelValue" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">>> & {
|
|
1989
1990
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
1990
1991
|
"onUpdate:search"?: ((val: any) => any) | undefined;
|
|
1991
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "type" | "error" | "active" | "direction" | "transition" | "
|
|
1992
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "type" | "error" | "active" | "direction" | "transition" | "menu" | "autofocus" | "eager" | "disabled" | "readonly" | "messages" | "noDataText" | "density" | "variant" | "clearIcon" | "focused" | "errorMessages" | "maxErrors" | "rules" | "clearable" | "persistentClear" | "singleLine" | "persistentHint" | "persistentPlaceholder" | "persistentCounter" | "valueComparator" | "itemTitle" | "itemValue" | "itemChildren" | "itemProps" | "chips" | "closableChips" | "hideNoData" | "hideSelected" | "menuIcon" | "openOnClear" | "filterMode" | "noFilter" | "filterKeys">;
|
|
1992
1993
|
$attrs: {
|
|
1993
1994
|
[x: string]: unknown;
|
|
1994
1995
|
};
|
|
@@ -2032,7 +2033,7 @@ declare const VAutocomplete: {
|
|
|
2032
2033
|
default: string;
|
|
2033
2034
|
validator: (v: any) => boolean;
|
|
2034
2035
|
};
|
|
2035
|
-
loading: BooleanConstructor;
|
|
2036
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
2036
2037
|
label: StringConstructor;
|
|
2037
2038
|
prefix: StringConstructor;
|
|
2038
2039
|
autofocus: BooleanConstructor;
|
|
@@ -2050,15 +2051,15 @@ declare const VAutocomplete: {
|
|
|
2050
2051
|
default: string;
|
|
2051
2052
|
validator: (v: any) => boolean;
|
|
2052
2053
|
};
|
|
2053
|
-
modelValue: {
|
|
2054
|
-
type: vue.PropType<any>;
|
|
2055
|
-
default: any;
|
|
2056
|
-
};
|
|
2057
2054
|
variant: {
|
|
2058
2055
|
type: vue.PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
2059
2056
|
default: string;
|
|
2060
2057
|
validator: (v: any) => boolean;
|
|
2061
2058
|
};
|
|
2059
|
+
modelValue: {
|
|
2060
|
+
type: vue.PropType<any>;
|
|
2061
|
+
default: any;
|
|
2062
|
+
};
|
|
2062
2063
|
bgColor: StringConstructor;
|
|
2063
2064
|
prependIcon: vue.PropType<IconValue>;
|
|
2064
2065
|
appendIcon: vue.PropType<IconValue>;
|
|
@@ -2316,6 +2317,10 @@ declare const VAutocomplete: {
|
|
|
2316
2317
|
default: string;
|
|
2317
2318
|
};
|
|
2318
2319
|
openOnClear: BooleanConstructor;
|
|
2320
|
+
valueComparator: {
|
|
2321
|
+
type: vue.PropType<typeof deepEqual>;
|
|
2322
|
+
default: typeof deepEqual;
|
|
2323
|
+
};
|
|
2319
2324
|
customFilter: vue.PropType<FilterFunction>;
|
|
2320
2325
|
customKeyFilter: vue.PropType<FilterKeyFunctions>;
|
|
2321
2326
|
filterKeys: {
|
|
@@ -2358,7 +2363,6 @@ declare const VAutocomplete: {
|
|
|
2358
2363
|
transition: string | boolean | (vue.TransitionProps & {
|
|
2359
2364
|
component?: vue.Component<any, any, any, vue.ComputedOptions, vue.MethodOptions> | undefined;
|
|
2360
2365
|
});
|
|
2361
|
-
loading: boolean;
|
|
2362
2366
|
menu: boolean;
|
|
2363
2367
|
autofocus: boolean;
|
|
2364
2368
|
eager: boolean;
|
|
@@ -2379,6 +2383,7 @@ declare const VAutocomplete: {
|
|
|
2379
2383
|
persistentHint: boolean;
|
|
2380
2384
|
persistentPlaceholder: boolean;
|
|
2381
2385
|
persistentCounter: boolean;
|
|
2386
|
+
valueComparator: typeof deepEqual;
|
|
2382
2387
|
itemTitle: SelectItemKey;
|
|
2383
2388
|
itemValue: SelectItemKey;
|
|
2384
2389
|
itemChildren: SelectItemKey;
|
|
@@ -2442,7 +2447,7 @@ declare const VAutocomplete: {
|
|
|
2442
2447
|
default: string;
|
|
2443
2448
|
validator: (v: any) => boolean;
|
|
2444
2449
|
};
|
|
2445
|
-
loading: BooleanConstructor;
|
|
2450
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
2446
2451
|
label: StringConstructor;
|
|
2447
2452
|
prefix: StringConstructor;
|
|
2448
2453
|
autofocus: BooleanConstructor;
|
|
@@ -2460,15 +2465,15 @@ declare const VAutocomplete: {
|
|
|
2460
2465
|
default: string;
|
|
2461
2466
|
validator: (v: any) => boolean;
|
|
2462
2467
|
};
|
|
2463
|
-
modelValue: {
|
|
2464
|
-
type: vue.PropType<any>;
|
|
2465
|
-
default: any;
|
|
2466
|
-
};
|
|
2467
2468
|
variant: {
|
|
2468
2469
|
type: vue.PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
2469
2470
|
default: string;
|
|
2470
2471
|
validator: (v: any) => boolean;
|
|
2471
2472
|
};
|
|
2473
|
+
modelValue: {
|
|
2474
|
+
type: vue.PropType<any>;
|
|
2475
|
+
default: any;
|
|
2476
|
+
};
|
|
2472
2477
|
bgColor: StringConstructor;
|
|
2473
2478
|
prependIcon: vue.PropType<IconValue>;
|
|
2474
2479
|
appendIcon: vue.PropType<IconValue>;
|
|
@@ -2726,6 +2731,10 @@ declare const VAutocomplete: {
|
|
|
2726
2731
|
default: string;
|
|
2727
2732
|
};
|
|
2728
2733
|
openOnClear: BooleanConstructor;
|
|
2734
|
+
valueComparator: {
|
|
2735
|
+
type: vue.PropType<typeof deepEqual>;
|
|
2736
|
+
default: typeof deepEqual;
|
|
2737
|
+
};
|
|
2729
2738
|
customFilter: vue.PropType<FilterFunction>;
|
|
2730
2739
|
customKeyFilter: vue.PropType<FilterKeyFunctions>;
|
|
2731
2740
|
filterKeys: {
|
|
@@ -2789,7 +2798,7 @@ declare const VAutocomplete: {
|
|
|
2789
2798
|
default: string;
|
|
2790
2799
|
validator: (v: any) => boolean;
|
|
2791
2800
|
};
|
|
2792
|
-
loading: BooleanConstructor;
|
|
2801
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
2793
2802
|
label: StringConstructor;
|
|
2794
2803
|
prefix: StringConstructor;
|
|
2795
2804
|
autofocus: BooleanConstructor;
|
|
@@ -2807,15 +2816,15 @@ declare const VAutocomplete: {
|
|
|
2807
2816
|
default: string;
|
|
2808
2817
|
validator: (v: any) => boolean;
|
|
2809
2818
|
};
|
|
2810
|
-
modelValue: {
|
|
2811
|
-
type: vue.PropType<any>;
|
|
2812
|
-
default: any;
|
|
2813
|
-
};
|
|
2814
2819
|
variant: {
|
|
2815
2820
|
type: vue.PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
2816
2821
|
default: string;
|
|
2817
2822
|
validator: (v: any) => boolean;
|
|
2818
2823
|
};
|
|
2824
|
+
modelValue: {
|
|
2825
|
+
type: vue.PropType<any>;
|
|
2826
|
+
default: any;
|
|
2827
|
+
};
|
|
2819
2828
|
bgColor: StringConstructor;
|
|
2820
2829
|
prependIcon: vue.PropType<IconValue>;
|
|
2821
2830
|
appendIcon: vue.PropType<IconValue>;
|
|
@@ -3073,6 +3082,10 @@ declare const VAutocomplete: {
|
|
|
3073
3082
|
default: string;
|
|
3074
3083
|
};
|
|
3075
3084
|
openOnClear: BooleanConstructor;
|
|
3085
|
+
valueComparator: {
|
|
3086
|
+
type: vue.PropType<typeof deepEqual>;
|
|
3087
|
+
default: typeof deepEqual;
|
|
3088
|
+
};
|
|
3076
3089
|
customFilter: vue.PropType<FilterFunction>;
|
|
3077
3090
|
customKeyFilter: vue.PropType<FilterKeyFunctions>;
|
|
3078
3091
|
filterKeys: {
|
|
@@ -3115,7 +3128,6 @@ declare const VAutocomplete: {
|
|
|
3115
3128
|
transition: string | boolean | (vue.TransitionProps & {
|
|
3116
3129
|
component?: vue.Component<any, any, any, vue.ComputedOptions, vue.MethodOptions> | undefined;
|
|
3117
3130
|
});
|
|
3118
|
-
loading: boolean;
|
|
3119
3131
|
menu: boolean;
|
|
3120
3132
|
autofocus: boolean;
|
|
3121
3133
|
eager: boolean;
|
|
@@ -3136,6 +3148,7 @@ declare const VAutocomplete: {
|
|
|
3136
3148
|
persistentHint: boolean;
|
|
3137
3149
|
persistentPlaceholder: boolean;
|
|
3138
3150
|
persistentCounter: boolean;
|
|
3151
|
+
valueComparator: typeof deepEqual;
|
|
3139
3152
|
itemTitle: SelectItemKey;
|
|
3140
3153
|
itemValue: SelectItemKey;
|
|
3141
3154
|
itemChildren: SelectItemKey;
|
|
@@ -3251,6 +3264,7 @@ declare const VAvatar: vue.DefineComponent<{
|
|
|
3251
3264
|
type: vue.PropType<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
3252
3265
|
default: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
3253
3266
|
};
|
|
3267
|
+
theme: StringConstructor;
|
|
3254
3268
|
tag: {
|
|
3255
3269
|
type: StringConstructor;
|
|
3256
3270
|
default: string;
|
|
@@ -3282,6 +3296,7 @@ declare const VAvatar: vue.DefineComponent<{
|
|
|
3282
3296
|
type: vue.PropType<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
3283
3297
|
default: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
3284
3298
|
};
|
|
3299
|
+
theme: StringConstructor;
|
|
3285
3300
|
tag: {
|
|
3286
3301
|
type: StringConstructor;
|
|
3287
3302
|
default: string;
|
|
@@ -3595,6 +3610,10 @@ declare const VBottomNavigation: vue.DefineComponent<{
|
|
|
3595
3610
|
type: (StringConstructor | NumberConstructor)[];
|
|
3596
3611
|
default: number;
|
|
3597
3612
|
};
|
|
3613
|
+
active: {
|
|
3614
|
+
type: BooleanConstructor;
|
|
3615
|
+
default: boolean;
|
|
3616
|
+
};
|
|
3598
3617
|
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
3599
3618
|
'update:modelValue': (value: any) => true;
|
|
3600
3619
|
}, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
|
|
@@ -3657,11 +3676,16 @@ declare const VBottomNavigation: vue.DefineComponent<{
|
|
|
3657
3676
|
type: (StringConstructor | NumberConstructor)[];
|
|
3658
3677
|
default: number;
|
|
3659
3678
|
};
|
|
3679
|
+
active: {
|
|
3680
|
+
type: BooleanConstructor;
|
|
3681
|
+
default: boolean;
|
|
3682
|
+
};
|
|
3660
3683
|
}>> & {
|
|
3661
3684
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
3662
3685
|
}, {
|
|
3663
3686
|
absolute: boolean;
|
|
3664
3687
|
height: string | number;
|
|
3688
|
+
active: boolean;
|
|
3665
3689
|
name: string;
|
|
3666
3690
|
order: string | number;
|
|
3667
3691
|
disabled: boolean;
|
|
@@ -4039,7 +4063,7 @@ declare const VBtn: vue.DefineComponent<{
|
|
|
4039
4063
|
validator: (v: any) => boolean;
|
|
4040
4064
|
};
|
|
4041
4065
|
location: PropType<Anchor>;
|
|
4042
|
-
loading: BooleanConstructor;
|
|
4066
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
4043
4067
|
value: null;
|
|
4044
4068
|
disabled: BooleanConstructor;
|
|
4045
4069
|
selectedClass: StringConstructor;
|
|
@@ -4116,7 +4140,7 @@ declare const VBtn: vue.DefineComponent<{
|
|
|
4116
4140
|
validator: (v: any) => boolean;
|
|
4117
4141
|
};
|
|
4118
4142
|
location: PropType<Anchor>;
|
|
4119
|
-
loading: BooleanConstructor;
|
|
4143
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
4120
4144
|
value: null;
|
|
4121
4145
|
disabled: BooleanConstructor;
|
|
4122
4146
|
selectedClass: StringConstructor;
|
|
@@ -4169,7 +4193,6 @@ declare const VBtn: vue.DefineComponent<{
|
|
|
4169
4193
|
exact: boolean;
|
|
4170
4194
|
active: boolean;
|
|
4171
4195
|
block: boolean;
|
|
4172
|
-
loading: boolean;
|
|
4173
4196
|
disabled: boolean;
|
|
4174
4197
|
size: string | number;
|
|
4175
4198
|
tag: string;
|
|
@@ -4399,7 +4422,7 @@ declare const VCard: vue.DefineComponent<{
|
|
|
4399
4422
|
validator: (v: any) => boolean;
|
|
4400
4423
|
};
|
|
4401
4424
|
location: vue.PropType<Anchor>;
|
|
4402
|
-
loading: BooleanConstructor;
|
|
4425
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
4403
4426
|
elevation: {
|
|
4404
4427
|
type: (StringConstructor | NumberConstructor)[];
|
|
4405
4428
|
validator(v: any): boolean;
|
|
@@ -4460,7 +4483,7 @@ declare const VCard: vue.DefineComponent<{
|
|
|
4460
4483
|
validator: (v: any) => boolean;
|
|
4461
4484
|
};
|
|
4462
4485
|
location: vue.PropType<Anchor>;
|
|
4463
|
-
loading: BooleanConstructor;
|
|
4486
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
4464
4487
|
elevation: {
|
|
4465
4488
|
type: (StringConstructor | NumberConstructor)[];
|
|
4466
4489
|
validator(v: any): boolean;
|
|
@@ -4499,7 +4522,6 @@ declare const VCard: vue.DefineComponent<{
|
|
|
4499
4522
|
link: boolean;
|
|
4500
4523
|
flat: boolean;
|
|
4501
4524
|
exact: boolean;
|
|
4502
|
-
loading: boolean;
|
|
4503
4525
|
disabled: boolean;
|
|
4504
4526
|
tag: string;
|
|
4505
4527
|
rounded: string | number | boolean;
|
|
@@ -5129,8 +5151,8 @@ declare const VChip: vue.DefineComponent<{
|
|
|
5129
5151
|
tag: string;
|
|
5130
5152
|
rounded: string | number | boolean;
|
|
5131
5153
|
density: Density;
|
|
5132
|
-
modelValue: boolean;
|
|
5133
5154
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
5155
|
+
modelValue: boolean;
|
|
5134
5156
|
ripple: boolean;
|
|
5135
5157
|
closable: boolean;
|
|
5136
5158
|
closeIcon: IconValue;
|
|
@@ -5216,8 +5238,8 @@ declare const VChipGroup: vue.DefineComponent<{
|
|
|
5216
5238
|
multiple: boolean;
|
|
5217
5239
|
tag: string;
|
|
5218
5240
|
column: boolean;
|
|
5219
|
-
modelValue: any;
|
|
5220
5241
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
5242
|
+
modelValue: any;
|
|
5221
5243
|
selectedClass: string;
|
|
5222
5244
|
valueComparator: typeof deepEqual;
|
|
5223
5245
|
}>;
|
|
@@ -5368,7 +5390,6 @@ declare const VCombobox: {
|
|
|
5368
5390
|
transition: string | boolean | (vue.TransitionProps & {
|
|
5369
5391
|
component?: vue.Component<any, any, any, vue.ComputedOptions, vue.MethodOptions> | undefined;
|
|
5370
5392
|
});
|
|
5371
|
-
loading: boolean;
|
|
5372
5393
|
menu: boolean;
|
|
5373
5394
|
autofocus: boolean;
|
|
5374
5395
|
eager: boolean;
|
|
@@ -5389,6 +5410,7 @@ declare const VCombobox: {
|
|
|
5389
5410
|
persistentHint: boolean;
|
|
5390
5411
|
persistentPlaceholder: boolean;
|
|
5391
5412
|
persistentCounter: boolean;
|
|
5413
|
+
valueComparator: typeof deepEqual;
|
|
5392
5414
|
itemTitle: SelectItemKey;
|
|
5393
5415
|
itemValue: SelectItemKey;
|
|
5394
5416
|
itemChildren: SelectItemKey;
|
|
@@ -5432,7 +5454,7 @@ declare const VCombobox: {
|
|
|
5432
5454
|
default: string;
|
|
5433
5455
|
validator: (v: any) => boolean;
|
|
5434
5456
|
};
|
|
5435
|
-
loading: BooleanConstructor;
|
|
5457
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
5436
5458
|
label: StringConstructor;
|
|
5437
5459
|
prefix: StringConstructor;
|
|
5438
5460
|
autofocus: BooleanConstructor;
|
|
@@ -5450,15 +5472,15 @@ declare const VCombobox: {
|
|
|
5450
5472
|
default: string;
|
|
5451
5473
|
validator: (v: any) => boolean;
|
|
5452
5474
|
};
|
|
5453
|
-
modelValue: {
|
|
5454
|
-
type: PropType<any>;
|
|
5455
|
-
default: any;
|
|
5456
|
-
};
|
|
5457
5475
|
variant: {
|
|
5458
5476
|
type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
5459
5477
|
default: string;
|
|
5460
5478
|
validator: (v: any) => boolean;
|
|
5461
5479
|
};
|
|
5480
|
+
modelValue: {
|
|
5481
|
+
type: PropType<any>;
|
|
5482
|
+
default: any;
|
|
5483
|
+
};
|
|
5462
5484
|
bgColor: StringConstructor;
|
|
5463
5485
|
prependIcon: PropType<IconValue>;
|
|
5464
5486
|
appendIcon: PropType<IconValue>;
|
|
@@ -5722,6 +5744,10 @@ declare const VCombobox: {
|
|
|
5722
5744
|
default: string;
|
|
5723
5745
|
};
|
|
5724
5746
|
openOnClear: BooleanConstructor;
|
|
5747
|
+
valueComparator: {
|
|
5748
|
+
type: PropType<typeof deepEqual>;
|
|
5749
|
+
default: typeof deepEqual;
|
|
5750
|
+
};
|
|
5725
5751
|
customFilter: PropType<FilterFunction>;
|
|
5726
5752
|
customKeyFilter: PropType<FilterKeyFunctions>;
|
|
5727
5753
|
filterKeys: {
|
|
@@ -5737,7 +5763,7 @@ declare const VCombobox: {
|
|
|
5737
5763
|
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "onUpdate:modelValue" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">>> & {
|
|
5738
5764
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
5739
5765
|
"onUpdate:search"?: ((val: string) => any) | undefined;
|
|
5740
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "type" | "error" | "active" | "direction" | "transition" | "
|
|
5766
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "type" | "error" | "active" | "direction" | "transition" | "menu" | "autofocus" | "eager" | "disabled" | "readonly" | "messages" | "noDataText" | "density" | "variant" | "clearIcon" | "focused" | "errorMessages" | "maxErrors" | "rules" | "clearable" | "persistentClear" | "singleLine" | "persistentHint" | "persistentPlaceholder" | "persistentCounter" | "valueComparator" | "itemTitle" | "itemValue" | "itemChildren" | "itemProps" | "chips" | "closableChips" | "hideNoData" | "hideSelected" | "menuIcon" | "openOnClear" | "filterMode" | "noFilter" | "filterKeys">;
|
|
5741
5767
|
$attrs: {
|
|
5742
5768
|
[x: string]: unknown;
|
|
5743
5769
|
};
|
|
@@ -5781,7 +5807,7 @@ declare const VCombobox: {
|
|
|
5781
5807
|
default: string;
|
|
5782
5808
|
validator: (v: any) => boolean;
|
|
5783
5809
|
};
|
|
5784
|
-
loading: BooleanConstructor;
|
|
5810
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
5785
5811
|
label: StringConstructor;
|
|
5786
5812
|
prefix: StringConstructor;
|
|
5787
5813
|
autofocus: BooleanConstructor;
|
|
@@ -5799,15 +5825,15 @@ declare const VCombobox: {
|
|
|
5799
5825
|
default: string;
|
|
5800
5826
|
validator: (v: any) => boolean;
|
|
5801
5827
|
};
|
|
5802
|
-
modelValue: {
|
|
5803
|
-
type: PropType<any>;
|
|
5804
|
-
default: any;
|
|
5805
|
-
};
|
|
5806
5828
|
variant: {
|
|
5807
5829
|
type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
5808
5830
|
default: string;
|
|
5809
5831
|
validator: (v: any) => boolean;
|
|
5810
5832
|
};
|
|
5833
|
+
modelValue: {
|
|
5834
|
+
type: PropType<any>;
|
|
5835
|
+
default: any;
|
|
5836
|
+
};
|
|
5811
5837
|
bgColor: StringConstructor;
|
|
5812
5838
|
prependIcon: PropType<IconValue>;
|
|
5813
5839
|
appendIcon: PropType<IconValue>;
|
|
@@ -6071,6 +6097,10 @@ declare const VCombobox: {
|
|
|
6071
6097
|
default: string;
|
|
6072
6098
|
};
|
|
6073
6099
|
openOnClear: BooleanConstructor;
|
|
6100
|
+
valueComparator: {
|
|
6101
|
+
type: PropType<typeof deepEqual>;
|
|
6102
|
+
default: typeof deepEqual;
|
|
6103
|
+
};
|
|
6074
6104
|
customFilter: PropType<FilterFunction>;
|
|
6075
6105
|
customKeyFilter: PropType<FilterKeyFunctions>;
|
|
6076
6106
|
filterKeys: {
|
|
@@ -6112,7 +6142,6 @@ declare const VCombobox: {
|
|
|
6112
6142
|
transition: string | boolean | (vue.TransitionProps & {
|
|
6113
6143
|
component?: vue.Component<any, any, any, vue.ComputedOptions, vue.MethodOptions> | undefined;
|
|
6114
6144
|
});
|
|
6115
|
-
loading: boolean;
|
|
6116
6145
|
menu: boolean;
|
|
6117
6146
|
autofocus: boolean;
|
|
6118
6147
|
eager: boolean;
|
|
@@ -6133,6 +6162,7 @@ declare const VCombobox: {
|
|
|
6133
6162
|
persistentHint: boolean;
|
|
6134
6163
|
persistentPlaceholder: boolean;
|
|
6135
6164
|
persistentCounter: boolean;
|
|
6165
|
+
valueComparator: typeof deepEqual;
|
|
6136
6166
|
itemTitle: SelectItemKey;
|
|
6137
6167
|
itemValue: SelectItemKey;
|
|
6138
6168
|
itemChildren: SelectItemKey;
|
|
@@ -6196,7 +6226,7 @@ declare const VCombobox: {
|
|
|
6196
6226
|
default: string;
|
|
6197
6227
|
validator: (v: any) => boolean;
|
|
6198
6228
|
};
|
|
6199
|
-
loading: BooleanConstructor;
|
|
6229
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
6200
6230
|
label: StringConstructor;
|
|
6201
6231
|
prefix: StringConstructor;
|
|
6202
6232
|
autofocus: BooleanConstructor;
|
|
@@ -6214,15 +6244,15 @@ declare const VCombobox: {
|
|
|
6214
6244
|
default: string;
|
|
6215
6245
|
validator: (v: any) => boolean;
|
|
6216
6246
|
};
|
|
6217
|
-
modelValue: {
|
|
6218
|
-
type: PropType<any>;
|
|
6219
|
-
default: any;
|
|
6220
|
-
};
|
|
6221
6247
|
variant: {
|
|
6222
6248
|
type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
6223
6249
|
default: string;
|
|
6224
6250
|
validator: (v: any) => boolean;
|
|
6225
6251
|
};
|
|
6252
|
+
modelValue: {
|
|
6253
|
+
type: PropType<any>;
|
|
6254
|
+
default: any;
|
|
6255
|
+
};
|
|
6226
6256
|
bgColor: StringConstructor;
|
|
6227
6257
|
prependIcon: PropType<IconValue>;
|
|
6228
6258
|
appendIcon: PropType<IconValue>;
|
|
@@ -6486,6 +6516,10 @@ declare const VCombobox: {
|
|
|
6486
6516
|
default: string;
|
|
6487
6517
|
};
|
|
6488
6518
|
openOnClear: BooleanConstructor;
|
|
6519
|
+
valueComparator: {
|
|
6520
|
+
type: PropType<typeof deepEqual>;
|
|
6521
|
+
default: typeof deepEqual;
|
|
6522
|
+
};
|
|
6489
6523
|
customFilter: PropType<FilterFunction>;
|
|
6490
6524
|
customKeyFilter: PropType<FilterKeyFunctions>;
|
|
6491
6525
|
filterKeys: {
|
|
@@ -6548,7 +6582,7 @@ declare const VCombobox: {
|
|
|
6548
6582
|
default: string;
|
|
6549
6583
|
validator: (v: any) => boolean;
|
|
6550
6584
|
};
|
|
6551
|
-
loading: BooleanConstructor;
|
|
6585
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
6552
6586
|
label: StringConstructor;
|
|
6553
6587
|
prefix: StringConstructor;
|
|
6554
6588
|
autofocus: BooleanConstructor;
|
|
@@ -6566,15 +6600,15 @@ declare const VCombobox: {
|
|
|
6566
6600
|
default: string;
|
|
6567
6601
|
validator: (v: any) => boolean;
|
|
6568
6602
|
};
|
|
6569
|
-
modelValue: {
|
|
6570
|
-
type: PropType<any>;
|
|
6571
|
-
default: any;
|
|
6572
|
-
};
|
|
6573
6603
|
variant: {
|
|
6574
6604
|
type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
6575
6605
|
default: string;
|
|
6576
6606
|
validator: (v: any) => boolean;
|
|
6577
6607
|
};
|
|
6608
|
+
modelValue: {
|
|
6609
|
+
type: PropType<any>;
|
|
6610
|
+
default: any;
|
|
6611
|
+
};
|
|
6578
6612
|
bgColor: StringConstructor;
|
|
6579
6613
|
prependIcon: PropType<IconValue>;
|
|
6580
6614
|
appendIcon: PropType<IconValue>;
|
|
@@ -6838,6 +6872,10 @@ declare const VCombobox: {
|
|
|
6838
6872
|
default: string;
|
|
6839
6873
|
};
|
|
6840
6874
|
openOnClear: BooleanConstructor;
|
|
6875
|
+
valueComparator: {
|
|
6876
|
+
type: PropType<typeof deepEqual>;
|
|
6877
|
+
default: typeof deepEqual;
|
|
6878
|
+
};
|
|
6841
6879
|
customFilter: PropType<FilterFunction>;
|
|
6842
6880
|
customKeyFilter: PropType<FilterKeyFunctions>;
|
|
6843
6881
|
filterKeys: {
|
|
@@ -6879,7 +6917,6 @@ declare const VCombobox: {
|
|
|
6879
6917
|
transition: string | boolean | (vue.TransitionProps & {
|
|
6880
6918
|
component?: vue.Component<any, any, any, vue.ComputedOptions, vue.MethodOptions> | undefined;
|
|
6881
6919
|
});
|
|
6882
|
-
loading: boolean;
|
|
6883
6920
|
menu: boolean;
|
|
6884
6921
|
autofocus: boolean;
|
|
6885
6922
|
eager: boolean;
|
|
@@ -6900,6 +6937,7 @@ declare const VCombobox: {
|
|
|
6900
6937
|
persistentHint: boolean;
|
|
6901
6938
|
persistentPlaceholder: boolean;
|
|
6902
6939
|
persistentCounter: boolean;
|
|
6940
|
+
valueComparator: typeof deepEqual;
|
|
6903
6941
|
itemTitle: SelectItemKey;
|
|
6904
6942
|
itemValue: SelectItemKey;
|
|
6905
6943
|
itemChildren: SelectItemKey;
|
|
@@ -7287,6 +7325,7 @@ declare const VOverlay: {
|
|
|
7287
7325
|
noClickAnimation: boolean;
|
|
7288
7326
|
persistent: boolean;
|
|
7289
7327
|
scrim: string | boolean;
|
|
7328
|
+
_disableGlobalStack: boolean;
|
|
7290
7329
|
}> & Omit<Readonly<ExtractPropTypes<Omit<{
|
|
7291
7330
|
transition: {
|
|
7292
7331
|
type: PropType<string | boolean | (vue.TransitionProps & {
|
|
@@ -7362,11 +7401,12 @@ declare const VOverlay: {
|
|
|
7362
7401
|
type: (StringConstructor | NumberConstructor)[];
|
|
7363
7402
|
default: number;
|
|
7364
7403
|
};
|
|
7404
|
+
_disableGlobalStack: BooleanConstructor;
|
|
7365
7405
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
7366
7406
|
onAfterLeave?: (() => any) | undefined;
|
|
7367
7407
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
7368
7408
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
7369
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">;
|
|
7409
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack">;
|
|
7370
7410
|
$attrs: {
|
|
7371
7411
|
[x: string]: unknown;
|
|
7372
7412
|
};
|
|
@@ -7455,6 +7495,7 @@ declare const VOverlay: {
|
|
|
7455
7495
|
type: (StringConstructor | NumberConstructor)[];
|
|
7456
7496
|
default: number;
|
|
7457
7497
|
};
|
|
7498
|
+
_disableGlobalStack: BooleanConstructor;
|
|
7458
7499
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
7459
7500
|
onAfterLeave?: (() => any) | undefined;
|
|
7460
7501
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -7495,6 +7536,7 @@ declare const VOverlay: {
|
|
|
7495
7536
|
noClickAnimation: boolean;
|
|
7496
7537
|
persistent: boolean;
|
|
7497
7538
|
scrim: string | boolean;
|
|
7539
|
+
_disableGlobalStack: boolean;
|
|
7498
7540
|
}> & {
|
|
7499
7541
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
7500
7542
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -7590,6 +7632,7 @@ declare const VOverlay: {
|
|
|
7590
7632
|
type: (StringConstructor | NumberConstructor)[];
|
|
7591
7633
|
default: number;
|
|
7592
7634
|
};
|
|
7635
|
+
_disableGlobalStack: BooleanConstructor;
|
|
7593
7636
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
7594
7637
|
onAfterLeave?: (() => any) | undefined;
|
|
7595
7638
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -7680,6 +7723,7 @@ declare const VOverlay: {
|
|
|
7680
7723
|
type: (StringConstructor | NumberConstructor)[];
|
|
7681
7724
|
default: number;
|
|
7682
7725
|
};
|
|
7726
|
+
_disableGlobalStack: BooleanConstructor;
|
|
7683
7727
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
7684
7728
|
onAfterLeave?: (() => any) | undefined;
|
|
7685
7729
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -7720,6 +7764,7 @@ declare const VOverlay: {
|
|
|
7720
7764
|
noClickAnimation: boolean;
|
|
7721
7765
|
persistent: boolean;
|
|
7722
7766
|
scrim: string | boolean;
|
|
7767
|
+
_disableGlobalStack: boolean;
|
|
7723
7768
|
}> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new () => {
|
|
7724
7769
|
$props: SlotsToProps<OverlaySlots>;
|
|
7725
7770
|
});
|
|
@@ -8027,6 +8072,7 @@ declare const VDialog: {
|
|
|
8027
8072
|
noClickAnimation: boolean;
|
|
8028
8073
|
persistent: boolean;
|
|
8029
8074
|
scrim: string | boolean;
|
|
8075
|
+
_disableGlobalStack: boolean;
|
|
8030
8076
|
}> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
|
|
8031
8077
|
transition: {
|
|
8032
8078
|
type: vue.PropType<string | boolean | (vue.TransitionProps & {
|
|
@@ -8102,11 +8148,12 @@ declare const VDialog: {
|
|
|
8102
8148
|
type: (StringConstructor | NumberConstructor)[];
|
|
8103
8149
|
default: number;
|
|
8104
8150
|
};
|
|
8151
|
+
_disableGlobalStack: BooleanConstructor;
|
|
8105
8152
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
8106
8153
|
onAfterLeave?: (() => any) | undefined;
|
|
8107
8154
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
8108
8155
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
8109
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">;
|
|
8156
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack">;
|
|
8110
8157
|
$attrs: {
|
|
8111
8158
|
[x: string]: unknown;
|
|
8112
8159
|
};
|
|
@@ -8195,6 +8242,7 @@ declare const VDialog: {
|
|
|
8195
8242
|
type: (StringConstructor | NumberConstructor)[];
|
|
8196
8243
|
default: number;
|
|
8197
8244
|
};
|
|
8245
|
+
_disableGlobalStack: BooleanConstructor;
|
|
8198
8246
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
8199
8247
|
onAfterLeave?: (() => any) | undefined;
|
|
8200
8248
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -8235,6 +8283,7 @@ declare const VDialog: {
|
|
|
8235
8283
|
noClickAnimation: boolean;
|
|
8236
8284
|
persistent: boolean;
|
|
8237
8285
|
scrim: string | boolean;
|
|
8286
|
+
_disableGlobalStack: boolean;
|
|
8238
8287
|
}> & {
|
|
8239
8288
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
8240
8289
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -8330,6 +8379,7 @@ declare const VDialog: {
|
|
|
8330
8379
|
type: (StringConstructor | NumberConstructor)[];
|
|
8331
8380
|
default: number;
|
|
8332
8381
|
};
|
|
8382
|
+
_disableGlobalStack: BooleanConstructor;
|
|
8333
8383
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
8334
8384
|
onAfterLeave?: (() => any) | undefined;
|
|
8335
8385
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -8370,7 +8420,7 @@ declare const VDialog: {
|
|
|
8370
8420
|
props: Record<string, any>;
|
|
8371
8421
|
}) => vue.VNodeChild) | undefined;
|
|
8372
8422
|
};
|
|
8373
|
-
}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
8423
|
+
}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
8374
8424
|
'update:modelValue': (value: boolean) => boolean;
|
|
8375
8425
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">, string, {
|
|
8376
8426
|
absolute: boolean;
|
|
@@ -8565,6 +8615,7 @@ declare const VDialog: {
|
|
|
8565
8615
|
noClickAnimation: boolean;
|
|
8566
8616
|
persistent: boolean;
|
|
8567
8617
|
scrim: string | boolean;
|
|
8618
|
+
_disableGlobalStack: boolean;
|
|
8568
8619
|
}> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
|
|
8569
8620
|
transition: {
|
|
8570
8621
|
type: vue.PropType<string | boolean | (vue.TransitionProps & {
|
|
@@ -8640,11 +8691,12 @@ declare const VDialog: {
|
|
|
8640
8691
|
type: (StringConstructor | NumberConstructor)[];
|
|
8641
8692
|
default: number;
|
|
8642
8693
|
};
|
|
8694
|
+
_disableGlobalStack: BooleanConstructor;
|
|
8643
8695
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
8644
8696
|
onAfterLeave?: (() => any) | undefined;
|
|
8645
8697
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
8646
8698
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
8647
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">;
|
|
8699
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack">;
|
|
8648
8700
|
$attrs: {
|
|
8649
8701
|
[x: string]: unknown;
|
|
8650
8702
|
};
|
|
@@ -8733,6 +8785,7 @@ declare const VDialog: {
|
|
|
8733
8785
|
type: (StringConstructor | NumberConstructor)[];
|
|
8734
8786
|
default: number;
|
|
8735
8787
|
};
|
|
8788
|
+
_disableGlobalStack: BooleanConstructor;
|
|
8736
8789
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
8737
8790
|
onAfterLeave?: (() => any) | undefined;
|
|
8738
8791
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -8773,6 +8826,7 @@ declare const VDialog: {
|
|
|
8773
8826
|
noClickAnimation: boolean;
|
|
8774
8827
|
persistent: boolean;
|
|
8775
8828
|
scrim: string | boolean;
|
|
8829
|
+
_disableGlobalStack: boolean;
|
|
8776
8830
|
}> & {
|
|
8777
8831
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
8778
8832
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -8868,6 +8922,7 @@ declare const VDialog: {
|
|
|
8868
8922
|
type: (StringConstructor | NumberConstructor)[];
|
|
8869
8923
|
default: number;
|
|
8870
8924
|
};
|
|
8925
|
+
_disableGlobalStack: BooleanConstructor;
|
|
8871
8926
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
8872
8927
|
onAfterLeave?: (() => any) | undefined;
|
|
8873
8928
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -8908,7 +8963,7 @@ declare const VDialog: {
|
|
|
8908
8963
|
props: Record<string, any>;
|
|
8909
8964
|
}) => vue.VNodeChild) | undefined;
|
|
8910
8965
|
};
|
|
8911
|
-
}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim")>, `$${any}`>> & {} & vue.ComponentCustomProperties;
|
|
8966
|
+
}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>> & {} & vue.ComponentCustomProperties;
|
|
8912
8967
|
__isFragment?: undefined;
|
|
8913
8968
|
__isTeleport?: undefined;
|
|
8914
8969
|
__isSuspense?: undefined;
|
|
@@ -9051,6 +9106,7 @@ declare const VDialog: {
|
|
|
9051
9106
|
noClickAnimation: boolean;
|
|
9052
9107
|
persistent: boolean;
|
|
9053
9108
|
scrim: string | boolean;
|
|
9109
|
+
_disableGlobalStack: boolean;
|
|
9054
9110
|
}> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
|
|
9055
9111
|
transition: {
|
|
9056
9112
|
type: vue.PropType<string | boolean | (vue.TransitionProps & {
|
|
@@ -9126,11 +9182,12 @@ declare const VDialog: {
|
|
|
9126
9182
|
type: (StringConstructor | NumberConstructor)[];
|
|
9127
9183
|
default: number;
|
|
9128
9184
|
};
|
|
9185
|
+
_disableGlobalStack: BooleanConstructor;
|
|
9129
9186
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
9130
9187
|
onAfterLeave?: (() => any) | undefined;
|
|
9131
9188
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
9132
9189
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
9133
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">;
|
|
9190
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack">;
|
|
9134
9191
|
$attrs: {
|
|
9135
9192
|
[x: string]: unknown;
|
|
9136
9193
|
};
|
|
@@ -9219,6 +9276,7 @@ declare const VDialog: {
|
|
|
9219
9276
|
type: (StringConstructor | NumberConstructor)[];
|
|
9220
9277
|
default: number;
|
|
9221
9278
|
};
|
|
9279
|
+
_disableGlobalStack: BooleanConstructor;
|
|
9222
9280
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
9223
9281
|
onAfterLeave?: (() => any) | undefined;
|
|
9224
9282
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -9259,6 +9317,7 @@ declare const VDialog: {
|
|
|
9259
9317
|
noClickAnimation: boolean;
|
|
9260
9318
|
persistent: boolean;
|
|
9261
9319
|
scrim: string | boolean;
|
|
9320
|
+
_disableGlobalStack: boolean;
|
|
9262
9321
|
}> & {
|
|
9263
9322
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
9264
9323
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -9354,6 +9413,7 @@ declare const VDialog: {
|
|
|
9354
9413
|
type: (StringConstructor | NumberConstructor)[];
|
|
9355
9414
|
default: number;
|
|
9356
9415
|
};
|
|
9416
|
+
_disableGlobalStack: BooleanConstructor;
|
|
9357
9417
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
9358
9418
|
onAfterLeave?: (() => any) | undefined;
|
|
9359
9419
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -9394,7 +9454,7 @@ declare const VDialog: {
|
|
|
9394
9454
|
props: Record<string, any>;
|
|
9395
9455
|
}) => vue.VNodeChild) | undefined;
|
|
9396
9456
|
};
|
|
9397
|
-
}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
9457
|
+
}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
9398
9458
|
'update:modelValue': (value: boolean) => boolean;
|
|
9399
9459
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">, string, {
|
|
9400
9460
|
absolute: boolean;
|
|
@@ -9508,8 +9568,8 @@ declare const VExpansionPanels: vue.DefineComponent<{
|
|
|
9508
9568
|
multiple: boolean;
|
|
9509
9569
|
readonly: boolean;
|
|
9510
9570
|
tag: string;
|
|
9511
|
-
modelValue: any;
|
|
9512
9571
|
variant: "default" | "inset" | "accordion" | "popout";
|
|
9572
|
+
modelValue: any;
|
|
9513
9573
|
}>;
|
|
9514
9574
|
declare type VExpansionPanels = InstanceType<typeof VExpansionPanels>;
|
|
9515
9575
|
|
|
@@ -9664,7 +9724,7 @@ declare const VFieldLabel: vue.DefineComponent<{
|
|
|
9664
9724
|
declare type VFieldLabel = InstanceType<typeof VFieldLabel>;
|
|
9665
9725
|
|
|
9666
9726
|
declare const VFileInput: vue.DefineComponent<{
|
|
9667
|
-
loading: BooleanConstructor;
|
|
9727
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
9668
9728
|
theme: StringConstructor;
|
|
9669
9729
|
appendInnerIcon: PropType<IconValue>;
|
|
9670
9730
|
bgColor: StringConstructor;
|
|
@@ -9983,7 +10043,7 @@ declare const VFileInput: vue.DefineComponent<{
|
|
|
9983
10043
|
'click:control': (e: MouseEvent) => true;
|
|
9984
10044
|
'update:modelValue': (files: File[]) => true;
|
|
9985
10045
|
}, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
|
|
9986
|
-
loading: BooleanConstructor;
|
|
10046
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
9987
10047
|
theme: StringConstructor;
|
|
9988
10048
|
appendInnerIcon: PropType<IconValue>;
|
|
9989
10049
|
bgColor: StringConstructor;
|
|
@@ -10085,15 +10145,14 @@ declare const VFileInput: vue.DefineComponent<{
|
|
|
10085
10145
|
error: boolean;
|
|
10086
10146
|
active: boolean;
|
|
10087
10147
|
direction: "horizontal" | "vertical";
|
|
10088
|
-
loading: boolean;
|
|
10089
10148
|
disabled: boolean;
|
|
10090
10149
|
multiple: boolean;
|
|
10091
10150
|
readonly: boolean;
|
|
10092
10151
|
messages: string | string[];
|
|
10093
10152
|
counter: boolean;
|
|
10094
10153
|
density: Density;
|
|
10095
|
-
modelValue: File[];
|
|
10096
10154
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo";
|
|
10155
|
+
modelValue: File[];
|
|
10097
10156
|
prependIcon: (string & {}) | IconValue;
|
|
10098
10157
|
clearIcon: IconValue;
|
|
10099
10158
|
focused: boolean;
|
|
@@ -12485,6 +12544,7 @@ declare const VMenu: {
|
|
|
12485
12544
|
noClickAnimation: boolean;
|
|
12486
12545
|
persistent: boolean;
|
|
12487
12546
|
scrim: string | boolean;
|
|
12547
|
+
_disableGlobalStack: boolean;
|
|
12488
12548
|
}> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
|
|
12489
12549
|
transition: {
|
|
12490
12550
|
type: vue.PropType<string | boolean | (vue.TransitionProps & {
|
|
@@ -12560,11 +12620,12 @@ declare const VMenu: {
|
|
|
12560
12620
|
type: (StringConstructor | NumberConstructor)[];
|
|
12561
12621
|
default: number;
|
|
12562
12622
|
};
|
|
12623
|
+
_disableGlobalStack: BooleanConstructor;
|
|
12563
12624
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
12564
12625
|
onAfterLeave?: (() => any) | undefined;
|
|
12565
12626
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
12566
12627
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
12567
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">;
|
|
12628
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack">;
|
|
12568
12629
|
$attrs: {
|
|
12569
12630
|
[x: string]: unknown;
|
|
12570
12631
|
};
|
|
@@ -12653,6 +12714,7 @@ declare const VMenu: {
|
|
|
12653
12714
|
type: (StringConstructor | NumberConstructor)[];
|
|
12654
12715
|
default: number;
|
|
12655
12716
|
};
|
|
12717
|
+
_disableGlobalStack: BooleanConstructor;
|
|
12656
12718
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
12657
12719
|
onAfterLeave?: (() => any) | undefined;
|
|
12658
12720
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -12693,6 +12755,7 @@ declare const VMenu: {
|
|
|
12693
12755
|
noClickAnimation: boolean;
|
|
12694
12756
|
persistent: boolean;
|
|
12695
12757
|
scrim: string | boolean;
|
|
12758
|
+
_disableGlobalStack: boolean;
|
|
12696
12759
|
}> & {
|
|
12697
12760
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
12698
12761
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -12788,6 +12851,7 @@ declare const VMenu: {
|
|
|
12788
12851
|
type: (StringConstructor | NumberConstructor)[];
|
|
12789
12852
|
default: number;
|
|
12790
12853
|
};
|
|
12854
|
+
_disableGlobalStack: BooleanConstructor;
|
|
12791
12855
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
12792
12856
|
onAfterLeave?: (() => any) | undefined;
|
|
12793
12857
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -12828,7 +12892,7 @@ declare const VMenu: {
|
|
|
12828
12892
|
props: Record<string, any>;
|
|
12829
12893
|
}) => vue.VNodeChild) | undefined;
|
|
12830
12894
|
};
|
|
12831
|
-
}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
12895
|
+
}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
12832
12896
|
'update:modelValue': (value: boolean) => boolean;
|
|
12833
12897
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">, string, {
|
|
12834
12898
|
location: Anchor;
|
|
@@ -13030,6 +13094,7 @@ declare const VMenu: {
|
|
|
13030
13094
|
noClickAnimation: boolean;
|
|
13031
13095
|
persistent: boolean;
|
|
13032
13096
|
scrim: string | boolean;
|
|
13097
|
+
_disableGlobalStack: boolean;
|
|
13033
13098
|
}> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
|
|
13034
13099
|
transition: {
|
|
13035
13100
|
type: vue.PropType<string | boolean | (vue.TransitionProps & {
|
|
@@ -13105,11 +13170,12 @@ declare const VMenu: {
|
|
|
13105
13170
|
type: (StringConstructor | NumberConstructor)[];
|
|
13106
13171
|
default: number;
|
|
13107
13172
|
};
|
|
13173
|
+
_disableGlobalStack: BooleanConstructor;
|
|
13108
13174
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
13109
13175
|
onAfterLeave?: (() => any) | undefined;
|
|
13110
13176
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
13111
13177
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
13112
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">;
|
|
13178
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack">;
|
|
13113
13179
|
$attrs: {
|
|
13114
13180
|
[x: string]: unknown;
|
|
13115
13181
|
};
|
|
@@ -13198,6 +13264,7 @@ declare const VMenu: {
|
|
|
13198
13264
|
type: (StringConstructor | NumberConstructor)[];
|
|
13199
13265
|
default: number;
|
|
13200
13266
|
};
|
|
13267
|
+
_disableGlobalStack: BooleanConstructor;
|
|
13201
13268
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
13202
13269
|
onAfterLeave?: (() => any) | undefined;
|
|
13203
13270
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -13238,6 +13305,7 @@ declare const VMenu: {
|
|
|
13238
13305
|
noClickAnimation: boolean;
|
|
13239
13306
|
persistent: boolean;
|
|
13240
13307
|
scrim: string | boolean;
|
|
13308
|
+
_disableGlobalStack: boolean;
|
|
13241
13309
|
}> & {
|
|
13242
13310
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
13243
13311
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -13333,6 +13401,7 @@ declare const VMenu: {
|
|
|
13333
13401
|
type: (StringConstructor | NumberConstructor)[];
|
|
13334
13402
|
default: number;
|
|
13335
13403
|
};
|
|
13404
|
+
_disableGlobalStack: BooleanConstructor;
|
|
13336
13405
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
13337
13406
|
onAfterLeave?: (() => any) | undefined;
|
|
13338
13407
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -13373,7 +13442,7 @@ declare const VMenu: {
|
|
|
13373
13442
|
props: Record<string, any>;
|
|
13374
13443
|
}) => vue.VNodeChild) | undefined;
|
|
13375
13444
|
};
|
|
13376
|
-
}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim")>, `$${any}`>> & {} & vue.ComponentCustomProperties;
|
|
13445
|
+
}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>> & {} & vue.ComponentCustomProperties;
|
|
13377
13446
|
__isFragment?: undefined;
|
|
13378
13447
|
__isTeleport?: undefined;
|
|
13379
13448
|
__isSuspense?: undefined;
|
|
@@ -13525,6 +13594,7 @@ declare const VMenu: {
|
|
|
13525
13594
|
noClickAnimation: boolean;
|
|
13526
13595
|
persistent: boolean;
|
|
13527
13596
|
scrim: string | boolean;
|
|
13597
|
+
_disableGlobalStack: boolean;
|
|
13528
13598
|
}> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
|
|
13529
13599
|
transition: {
|
|
13530
13600
|
type: vue.PropType<string | boolean | (vue.TransitionProps & {
|
|
@@ -13600,11 +13670,12 @@ declare const VMenu: {
|
|
|
13600
13670
|
type: (StringConstructor | NumberConstructor)[];
|
|
13601
13671
|
default: number;
|
|
13602
13672
|
};
|
|
13673
|
+
_disableGlobalStack: BooleanConstructor;
|
|
13603
13674
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
13604
13675
|
onAfterLeave?: (() => any) | undefined;
|
|
13605
13676
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
13606
13677
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
13607
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">;
|
|
13678
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack">;
|
|
13608
13679
|
$attrs: {
|
|
13609
13680
|
[x: string]: unknown;
|
|
13610
13681
|
};
|
|
@@ -13693,6 +13764,7 @@ declare const VMenu: {
|
|
|
13693
13764
|
type: (StringConstructor | NumberConstructor)[];
|
|
13694
13765
|
default: number;
|
|
13695
13766
|
};
|
|
13767
|
+
_disableGlobalStack: BooleanConstructor;
|
|
13696
13768
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
13697
13769
|
onAfterLeave?: (() => any) | undefined;
|
|
13698
13770
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -13733,6 +13805,7 @@ declare const VMenu: {
|
|
|
13733
13805
|
noClickAnimation: boolean;
|
|
13734
13806
|
persistent: boolean;
|
|
13735
13807
|
scrim: string | boolean;
|
|
13808
|
+
_disableGlobalStack: boolean;
|
|
13736
13809
|
}> & {
|
|
13737
13810
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
13738
13811
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -13828,6 +13901,7 @@ declare const VMenu: {
|
|
|
13828
13901
|
type: (StringConstructor | NumberConstructor)[];
|
|
13829
13902
|
default: number;
|
|
13830
13903
|
};
|
|
13904
|
+
_disableGlobalStack: BooleanConstructor;
|
|
13831
13905
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
13832
13906
|
onAfterLeave?: (() => any) | undefined;
|
|
13833
13907
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -13868,7 +13942,7 @@ declare const VMenu: {
|
|
|
13868
13942
|
props: Record<string, any>;
|
|
13869
13943
|
}) => vue.VNodeChild) | undefined;
|
|
13870
13944
|
};
|
|
13871
|
-
}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
13945
|
+
}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
13872
13946
|
'update:modelValue': (value: boolean) => boolean;
|
|
13873
13947
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">, string, {
|
|
13874
13948
|
location: Anchor;
|
|
@@ -14511,8 +14585,8 @@ declare const VPagination: vue.DefineComponent<{
|
|
|
14511
14585
|
ellipsis: string;
|
|
14512
14586
|
rounded: string | number | boolean;
|
|
14513
14587
|
density: Density;
|
|
14514
|
-
modelValue: number;
|
|
14515
14588
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
14589
|
+
modelValue: number;
|
|
14516
14590
|
nextIcon: IconValue;
|
|
14517
14591
|
prevIcon: IconValue;
|
|
14518
14592
|
firstIcon: IconValue;
|
|
@@ -15561,7 +15635,6 @@ declare const VSelect: {
|
|
|
15561
15635
|
target: PropType<HTMLElement>;
|
|
15562
15636
|
}>>, {}>;
|
|
15563
15637
|
};
|
|
15564
|
-
loading: boolean;
|
|
15565
15638
|
menu: boolean;
|
|
15566
15639
|
autofocus: boolean;
|
|
15567
15640
|
eager: boolean;
|
|
@@ -15582,6 +15655,7 @@ declare const VSelect: {
|
|
|
15582
15655
|
persistentHint: boolean;
|
|
15583
15656
|
persistentPlaceholder: boolean;
|
|
15584
15657
|
persistentCounter: boolean;
|
|
15658
|
+
valueComparator: typeof deepEqual;
|
|
15585
15659
|
itemTitle: SelectItemKey;
|
|
15586
15660
|
itemValue: SelectItemKey;
|
|
15587
15661
|
itemChildren: SelectItemKey;
|
|
@@ -15634,7 +15708,7 @@ declare const VSelect: {
|
|
|
15634
15708
|
default: string;
|
|
15635
15709
|
validator: (v: any) => boolean;
|
|
15636
15710
|
};
|
|
15637
|
-
loading: BooleanConstructor;
|
|
15711
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
15638
15712
|
label: StringConstructor;
|
|
15639
15713
|
prefix: StringConstructor;
|
|
15640
15714
|
autofocus: BooleanConstructor;
|
|
@@ -15652,15 +15726,15 @@ declare const VSelect: {
|
|
|
15652
15726
|
default: string;
|
|
15653
15727
|
validator: (v: any) => boolean;
|
|
15654
15728
|
};
|
|
15655
|
-
modelValue: {
|
|
15656
|
-
type: PropType<any>;
|
|
15657
|
-
default: any;
|
|
15658
|
-
};
|
|
15659
15729
|
variant: {
|
|
15660
15730
|
type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
15661
15731
|
default: string;
|
|
15662
15732
|
validator: (v: any) => boolean;
|
|
15663
15733
|
};
|
|
15734
|
+
modelValue: {
|
|
15735
|
+
type: PropType<any>;
|
|
15736
|
+
default: any;
|
|
15737
|
+
};
|
|
15664
15738
|
bgColor: StringConstructor;
|
|
15665
15739
|
prependIcon: PropType<IconValue>;
|
|
15666
15740
|
appendIcon: PropType<IconValue>;
|
|
@@ -15918,9 +15992,13 @@ declare const VSelect: {
|
|
|
15918
15992
|
default: string;
|
|
15919
15993
|
};
|
|
15920
15994
|
openOnClear: BooleanConstructor;
|
|
15995
|
+
valueComparator: {
|
|
15996
|
+
type: PropType<typeof deepEqual>;
|
|
15997
|
+
default: typeof deepEqual;
|
|
15998
|
+
};
|
|
15921
15999
|
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "onUpdate:modelValue" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">>> & {
|
|
15922
16000
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
15923
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "type" | "error" | "active" | "direction" | "transition" | "
|
|
16001
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "type" | "error" | "active" | "direction" | "transition" | "menu" | "autofocus" | "eager" | "disabled" | "readonly" | "messages" | "noDataText" | "density" | "variant" | "clearIcon" | "focused" | "errorMessages" | "maxErrors" | "rules" | "clearable" | "persistentClear" | "singleLine" | "persistentHint" | "persistentPlaceholder" | "persistentCounter" | "valueComparator" | "itemTitle" | "itemValue" | "itemChildren" | "itemProps" | "chips" | "closableChips" | "hideNoData" | "hideSelected" | "menuIcon" | "openOnClear">;
|
|
15924
16002
|
$attrs: {
|
|
15925
16003
|
[x: string]: unknown;
|
|
15926
16004
|
};
|
|
@@ -15976,7 +16054,7 @@ declare const VSelect: {
|
|
|
15976
16054
|
default: string;
|
|
15977
16055
|
validator: (v: any) => boolean;
|
|
15978
16056
|
};
|
|
15979
|
-
loading: BooleanConstructor;
|
|
16057
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
15980
16058
|
label: StringConstructor;
|
|
15981
16059
|
prefix: StringConstructor;
|
|
15982
16060
|
autofocus: BooleanConstructor;
|
|
@@ -15994,15 +16072,15 @@ declare const VSelect: {
|
|
|
15994
16072
|
default: string;
|
|
15995
16073
|
validator: (v: any) => boolean;
|
|
15996
16074
|
};
|
|
15997
|
-
modelValue: {
|
|
15998
|
-
type: PropType<any>;
|
|
15999
|
-
default: any;
|
|
16000
|
-
};
|
|
16001
16075
|
variant: {
|
|
16002
16076
|
type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
16003
16077
|
default: string;
|
|
16004
16078
|
validator: (v: any) => boolean;
|
|
16005
16079
|
};
|
|
16080
|
+
modelValue: {
|
|
16081
|
+
type: PropType<any>;
|
|
16082
|
+
default: any;
|
|
16083
|
+
};
|
|
16006
16084
|
bgColor: StringConstructor;
|
|
16007
16085
|
prependIcon: PropType<IconValue>;
|
|
16008
16086
|
appendIcon: PropType<IconValue>;
|
|
@@ -16260,6 +16338,10 @@ declare const VSelect: {
|
|
|
16260
16338
|
default: string;
|
|
16261
16339
|
};
|
|
16262
16340
|
openOnClear: BooleanConstructor;
|
|
16341
|
+
valueComparator: {
|
|
16342
|
+
type: PropType<typeof deepEqual>;
|
|
16343
|
+
default: typeof deepEqual;
|
|
16344
|
+
};
|
|
16263
16345
|
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "onUpdate:modelValue" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">>> & {
|
|
16264
16346
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
16265
16347
|
}, {
|
|
@@ -16285,7 +16367,6 @@ declare const VSelect: {
|
|
|
16285
16367
|
target: PropType<HTMLElement>;
|
|
16286
16368
|
}>>, {}>;
|
|
16287
16369
|
};
|
|
16288
|
-
loading: boolean;
|
|
16289
16370
|
menu: boolean;
|
|
16290
16371
|
autofocus: boolean;
|
|
16291
16372
|
eager: boolean;
|
|
@@ -16306,6 +16387,7 @@ declare const VSelect: {
|
|
|
16306
16387
|
persistentHint: boolean;
|
|
16307
16388
|
persistentPlaceholder: boolean;
|
|
16308
16389
|
persistentCounter: boolean;
|
|
16390
|
+
valueComparator: typeof deepEqual;
|
|
16309
16391
|
itemTitle: SelectItemKey;
|
|
16310
16392
|
itemValue: SelectItemKey;
|
|
16311
16393
|
itemChildren: SelectItemKey;
|
|
@@ -16378,7 +16460,7 @@ declare const VSelect: {
|
|
|
16378
16460
|
default: string;
|
|
16379
16461
|
validator: (v: any) => boolean;
|
|
16380
16462
|
};
|
|
16381
|
-
loading: BooleanConstructor;
|
|
16463
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
16382
16464
|
label: StringConstructor;
|
|
16383
16465
|
prefix: StringConstructor;
|
|
16384
16466
|
autofocus: BooleanConstructor;
|
|
@@ -16396,15 +16478,15 @@ declare const VSelect: {
|
|
|
16396
16478
|
default: string;
|
|
16397
16479
|
validator: (v: any) => boolean;
|
|
16398
16480
|
};
|
|
16399
|
-
modelValue: {
|
|
16400
|
-
type: PropType<any>;
|
|
16401
|
-
default: any;
|
|
16402
|
-
};
|
|
16403
16481
|
variant: {
|
|
16404
16482
|
type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
16405
16483
|
default: string;
|
|
16406
16484
|
validator: (v: any) => boolean;
|
|
16407
16485
|
};
|
|
16486
|
+
modelValue: {
|
|
16487
|
+
type: PropType<any>;
|
|
16488
|
+
default: any;
|
|
16489
|
+
};
|
|
16408
16490
|
bgColor: StringConstructor;
|
|
16409
16491
|
prependIcon: PropType<IconValue>;
|
|
16410
16492
|
appendIcon: PropType<IconValue>;
|
|
@@ -16662,6 +16744,10 @@ declare const VSelect: {
|
|
|
16662
16744
|
default: string;
|
|
16663
16745
|
};
|
|
16664
16746
|
openOnClear: BooleanConstructor;
|
|
16747
|
+
valueComparator: {
|
|
16748
|
+
type: PropType<typeof deepEqual>;
|
|
16749
|
+
default: typeof deepEqual;
|
|
16750
|
+
};
|
|
16665
16751
|
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "onUpdate:modelValue" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">>> & {
|
|
16666
16752
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
16667
16753
|
} & vue.ShallowUnwrapRef<{
|
|
@@ -16715,7 +16801,7 @@ declare const VSelect: {
|
|
|
16715
16801
|
default: string;
|
|
16716
16802
|
validator: (v: any) => boolean;
|
|
16717
16803
|
};
|
|
16718
|
-
loading: BooleanConstructor;
|
|
16804
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
16719
16805
|
label: StringConstructor;
|
|
16720
16806
|
prefix: StringConstructor;
|
|
16721
16807
|
autofocus: BooleanConstructor;
|
|
@@ -16733,15 +16819,15 @@ declare const VSelect: {
|
|
|
16733
16819
|
default: string;
|
|
16734
16820
|
validator: (v: any) => boolean;
|
|
16735
16821
|
};
|
|
16736
|
-
modelValue: {
|
|
16737
|
-
type: PropType<any>;
|
|
16738
|
-
default: any;
|
|
16739
|
-
};
|
|
16740
16822
|
variant: {
|
|
16741
16823
|
type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
16742
16824
|
default: string;
|
|
16743
16825
|
validator: (v: any) => boolean;
|
|
16744
16826
|
};
|
|
16827
|
+
modelValue: {
|
|
16828
|
+
type: PropType<any>;
|
|
16829
|
+
default: any;
|
|
16830
|
+
};
|
|
16745
16831
|
bgColor: StringConstructor;
|
|
16746
16832
|
prependIcon: PropType<IconValue>;
|
|
16747
16833
|
appendIcon: PropType<IconValue>;
|
|
@@ -16999,6 +17085,10 @@ declare const VSelect: {
|
|
|
16999
17085
|
default: string;
|
|
17000
17086
|
};
|
|
17001
17087
|
openOnClear: BooleanConstructor;
|
|
17088
|
+
valueComparator: {
|
|
17089
|
+
type: PropType<typeof deepEqual>;
|
|
17090
|
+
default: typeof deepEqual;
|
|
17091
|
+
};
|
|
17002
17092
|
}, "multiple" | "$children" | "items" | "v-slots" | "v-slot:prepend" | "v-slot:append" | "modelValue" | "onUpdate:modelValue" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "v-slot:item" | "returnObject" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">>> & {
|
|
17003
17093
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
17004
17094
|
}, {
|
|
@@ -17024,7 +17114,6 @@ declare const VSelect: {
|
|
|
17024
17114
|
target: PropType<HTMLElement>;
|
|
17025
17115
|
}>>, {}>;
|
|
17026
17116
|
};
|
|
17027
|
-
loading: boolean;
|
|
17028
17117
|
menu: boolean;
|
|
17029
17118
|
autofocus: boolean;
|
|
17030
17119
|
eager: boolean;
|
|
@@ -17045,6 +17134,7 @@ declare const VSelect: {
|
|
|
17045
17134
|
persistentHint: boolean;
|
|
17046
17135
|
persistentPlaceholder: boolean;
|
|
17047
17136
|
persistentCounter: boolean;
|
|
17137
|
+
valueComparator: typeof deepEqual;
|
|
17048
17138
|
itemTitle: SelectItemKey;
|
|
17049
17139
|
itemValue: SelectItemKey;
|
|
17050
17140
|
itemChildren: SelectItemKey;
|
|
@@ -18164,8 +18254,8 @@ declare const VSnackbar: {
|
|
|
18164
18254
|
timeout: string | number;
|
|
18165
18255
|
vertical: boolean;
|
|
18166
18256
|
rounded: string | number | boolean;
|
|
18167
|
-
modelValue: boolean;
|
|
18168
18257
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
18258
|
+
modelValue: boolean;
|
|
18169
18259
|
activatorProps: Record<string, any>;
|
|
18170
18260
|
openOnClick: boolean;
|
|
18171
18261
|
openOnHover: boolean;
|
|
@@ -18270,7 +18360,7 @@ declare const VSnackbar: {
|
|
|
18270
18360
|
vertical: BooleanConstructor;
|
|
18271
18361
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator" | "v-slot:actions">>> & {
|
|
18272
18362
|
"onUpdate:modelValue"?: ((v: boolean) => any) | undefined;
|
|
18273
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "timeout" | "vertical" | "rounded" | "
|
|
18363
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "timeout" | "vertical" | "rounded" | "variant" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "closeOnBack" | "contained" | "multiLine">;
|
|
18274
18364
|
$attrs: {
|
|
18275
18365
|
[x: string]: unknown;
|
|
18276
18366
|
};
|
|
@@ -18405,6 +18495,7 @@ declare const VSnackbar: {
|
|
|
18405
18495
|
noClickAnimation: boolean;
|
|
18406
18496
|
persistent: boolean;
|
|
18407
18497
|
scrim: string | boolean;
|
|
18498
|
+
_disableGlobalStack: boolean;
|
|
18408
18499
|
}> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
|
|
18409
18500
|
transition: {
|
|
18410
18501
|
type: vue.PropType<string | boolean | (vue.TransitionProps & {
|
|
@@ -18480,11 +18571,12 @@ declare const VSnackbar: {
|
|
|
18480
18571
|
type: (StringConstructor | NumberConstructor)[];
|
|
18481
18572
|
default: number;
|
|
18482
18573
|
};
|
|
18574
|
+
_disableGlobalStack: BooleanConstructor;
|
|
18483
18575
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
18484
18576
|
onAfterLeave?: (() => any) | undefined;
|
|
18485
18577
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
18486
18578
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
18487
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">;
|
|
18579
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack">;
|
|
18488
18580
|
$attrs: {
|
|
18489
18581
|
[x: string]: unknown;
|
|
18490
18582
|
};
|
|
@@ -18573,6 +18665,7 @@ declare const VSnackbar: {
|
|
|
18573
18665
|
type: (StringConstructor | NumberConstructor)[];
|
|
18574
18666
|
default: number;
|
|
18575
18667
|
};
|
|
18668
|
+
_disableGlobalStack: BooleanConstructor;
|
|
18576
18669
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
18577
18670
|
onAfterLeave?: (() => any) | undefined;
|
|
18578
18671
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -18613,6 +18706,7 @@ declare const VSnackbar: {
|
|
|
18613
18706
|
noClickAnimation: boolean;
|
|
18614
18707
|
persistent: boolean;
|
|
18615
18708
|
scrim: string | boolean;
|
|
18709
|
+
_disableGlobalStack: boolean;
|
|
18616
18710
|
}> & {
|
|
18617
18711
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
18618
18712
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -18708,6 +18802,7 @@ declare const VSnackbar: {
|
|
|
18708
18802
|
type: (StringConstructor | NumberConstructor)[];
|
|
18709
18803
|
default: number;
|
|
18710
18804
|
};
|
|
18805
|
+
_disableGlobalStack: BooleanConstructor;
|
|
18711
18806
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
18712
18807
|
onAfterLeave?: (() => any) | undefined;
|
|
18713
18808
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -18748,7 +18843,7 @@ declare const VSnackbar: {
|
|
|
18748
18843
|
props: Record<string, any>;
|
|
18749
18844
|
}) => vue.VNodeChild) | undefined;
|
|
18750
18845
|
};
|
|
18751
|
-
}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
18846
|
+
}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
18752
18847
|
'update:modelValue': (v: boolean) => boolean;
|
|
18753
18848
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator" | "v-slot:actions">, string, {
|
|
18754
18849
|
absolute: boolean;
|
|
@@ -18763,8 +18858,8 @@ declare const VSnackbar: {
|
|
|
18763
18858
|
timeout: string | number;
|
|
18764
18859
|
vertical: boolean;
|
|
18765
18860
|
rounded: string | number | boolean;
|
|
18766
|
-
modelValue: boolean;
|
|
18767
18861
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
18862
|
+
modelValue: boolean;
|
|
18768
18863
|
activatorProps: Record<string, any>;
|
|
18769
18864
|
openOnClick: boolean;
|
|
18770
18865
|
openOnHover: boolean;
|
|
@@ -18917,6 +19012,7 @@ declare const VSnackbar: {
|
|
|
18917
19012
|
noClickAnimation: boolean;
|
|
18918
19013
|
persistent: boolean;
|
|
18919
19014
|
scrim: string | boolean;
|
|
19015
|
+
_disableGlobalStack: boolean;
|
|
18920
19016
|
}> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
|
|
18921
19017
|
transition: {
|
|
18922
19018
|
type: vue.PropType<string | boolean | (vue.TransitionProps & {
|
|
@@ -18992,11 +19088,12 @@ declare const VSnackbar: {
|
|
|
18992
19088
|
type: (StringConstructor | NumberConstructor)[];
|
|
18993
19089
|
default: number;
|
|
18994
19090
|
};
|
|
19091
|
+
_disableGlobalStack: BooleanConstructor;
|
|
18995
19092
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
18996
19093
|
onAfterLeave?: (() => any) | undefined;
|
|
18997
19094
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
18998
19095
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
18999
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">;
|
|
19096
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack">;
|
|
19000
19097
|
$attrs: {
|
|
19001
19098
|
[x: string]: unknown;
|
|
19002
19099
|
};
|
|
@@ -19085,6 +19182,7 @@ declare const VSnackbar: {
|
|
|
19085
19182
|
type: (StringConstructor | NumberConstructor)[];
|
|
19086
19183
|
default: number;
|
|
19087
19184
|
};
|
|
19185
|
+
_disableGlobalStack: BooleanConstructor;
|
|
19088
19186
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
19089
19187
|
onAfterLeave?: (() => any) | undefined;
|
|
19090
19188
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -19125,6 +19223,7 @@ declare const VSnackbar: {
|
|
|
19125
19223
|
noClickAnimation: boolean;
|
|
19126
19224
|
persistent: boolean;
|
|
19127
19225
|
scrim: string | boolean;
|
|
19226
|
+
_disableGlobalStack: boolean;
|
|
19128
19227
|
}> & {
|
|
19129
19228
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
19130
19229
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -19220,6 +19319,7 @@ declare const VSnackbar: {
|
|
|
19220
19319
|
type: (StringConstructor | NumberConstructor)[];
|
|
19221
19320
|
default: number;
|
|
19222
19321
|
};
|
|
19322
|
+
_disableGlobalStack: BooleanConstructor;
|
|
19223
19323
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
19224
19324
|
onAfterLeave?: (() => any) | undefined;
|
|
19225
19325
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -19260,7 +19360,7 @@ declare const VSnackbar: {
|
|
|
19260
19360
|
props: Record<string, any>;
|
|
19261
19361
|
}) => vue.VNodeChild) | undefined;
|
|
19262
19362
|
};
|
|
19263
|
-
}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim")>, `$${any}`>> & {} & vue.ComponentCustomProperties;
|
|
19363
|
+
}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>> & {} & vue.ComponentCustomProperties;
|
|
19264
19364
|
__isFragment?: undefined;
|
|
19265
19365
|
__isTeleport?: undefined;
|
|
19266
19366
|
__isSuspense?: undefined;
|
|
@@ -19385,6 +19485,7 @@ declare const VSnackbar: {
|
|
|
19385
19485
|
noClickAnimation: boolean;
|
|
19386
19486
|
persistent: boolean;
|
|
19387
19487
|
scrim: string | boolean;
|
|
19488
|
+
_disableGlobalStack: boolean;
|
|
19388
19489
|
}> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
|
|
19389
19490
|
transition: {
|
|
19390
19491
|
type: vue.PropType<string | boolean | (vue.TransitionProps & {
|
|
@@ -19460,11 +19561,12 @@ declare const VSnackbar: {
|
|
|
19460
19561
|
type: (StringConstructor | NumberConstructor)[];
|
|
19461
19562
|
default: number;
|
|
19462
19563
|
};
|
|
19564
|
+
_disableGlobalStack: BooleanConstructor;
|
|
19463
19565
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
19464
19566
|
onAfterLeave?: (() => any) | undefined;
|
|
19465
19567
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
19466
19568
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
19467
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">;
|
|
19569
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack">;
|
|
19468
19570
|
$attrs: {
|
|
19469
19571
|
[x: string]: unknown;
|
|
19470
19572
|
};
|
|
@@ -19553,6 +19655,7 @@ declare const VSnackbar: {
|
|
|
19553
19655
|
type: (StringConstructor | NumberConstructor)[];
|
|
19554
19656
|
default: number;
|
|
19555
19657
|
};
|
|
19658
|
+
_disableGlobalStack: BooleanConstructor;
|
|
19556
19659
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
19557
19660
|
onAfterLeave?: (() => any) | undefined;
|
|
19558
19661
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -19593,6 +19696,7 @@ declare const VSnackbar: {
|
|
|
19593
19696
|
noClickAnimation: boolean;
|
|
19594
19697
|
persistent: boolean;
|
|
19595
19698
|
scrim: string | boolean;
|
|
19699
|
+
_disableGlobalStack: boolean;
|
|
19596
19700
|
}> & {
|
|
19597
19701
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
19598
19702
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -19688,6 +19792,7 @@ declare const VSnackbar: {
|
|
|
19688
19792
|
type: (StringConstructor | NumberConstructor)[];
|
|
19689
19793
|
default: number;
|
|
19690
19794
|
};
|
|
19795
|
+
_disableGlobalStack: BooleanConstructor;
|
|
19691
19796
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
19692
19797
|
onAfterLeave?: (() => any) | undefined;
|
|
19693
19798
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -19728,7 +19833,7 @@ declare const VSnackbar: {
|
|
|
19728
19833
|
props: Record<string, any>;
|
|
19729
19834
|
}) => vue.VNodeChild) | undefined;
|
|
19730
19835
|
};
|
|
19731
|
-
}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
19836
|
+
}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
19732
19837
|
'update:modelValue': (v: boolean) => boolean;
|
|
19733
19838
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator" | "v-slot:actions">, string, {
|
|
19734
19839
|
absolute: boolean;
|
|
@@ -19743,8 +19848,8 @@ declare const VSnackbar: {
|
|
|
19743
19848
|
timeout: string | number;
|
|
19744
19849
|
vertical: boolean;
|
|
19745
19850
|
rounded: string | number | boolean;
|
|
19746
|
-
modelValue: boolean;
|
|
19747
19851
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
19852
|
+
modelValue: boolean;
|
|
19748
19853
|
activatorProps: Record<string, any>;
|
|
19749
19854
|
openOnClick: boolean;
|
|
19750
19855
|
openOnHover: boolean;
|
|
@@ -20213,7 +20318,7 @@ declare const VTable: vue.DefineComponent<{
|
|
|
20213
20318
|
declare type VTable = InstanceType<typeof VTable>;
|
|
20214
20319
|
|
|
20215
20320
|
declare const VTextarea: vue.DefineComponent<{
|
|
20216
|
-
loading: BooleanConstructor;
|
|
20321
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
20217
20322
|
theme: StringConstructor;
|
|
20218
20323
|
appendInnerIcon: PropType<IconValue>;
|
|
20219
20324
|
bgColor: StringConstructor;
|
|
@@ -20525,7 +20630,7 @@ declare const VTextarea: vue.DefineComponent<{
|
|
|
20525
20630
|
'update:focused': (focused: boolean) => true;
|
|
20526
20631
|
'update:modelValue': (val: string) => true;
|
|
20527
20632
|
}, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
|
|
20528
|
-
loading: BooleanConstructor;
|
|
20633
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
20529
20634
|
theme: StringConstructor;
|
|
20530
20635
|
appendInnerIcon: PropType<IconValue>;
|
|
20531
20636
|
bgColor: StringConstructor;
|
|
@@ -20620,7 +20725,6 @@ declare const VTextarea: vue.DefineComponent<{
|
|
|
20620
20725
|
error: boolean;
|
|
20621
20726
|
active: boolean;
|
|
20622
20727
|
direction: "horizontal" | "vertical";
|
|
20623
|
-
loading: boolean;
|
|
20624
20728
|
autofocus: boolean;
|
|
20625
20729
|
disabled: boolean;
|
|
20626
20730
|
readonly: boolean;
|
|
@@ -20655,7 +20759,6 @@ declare const VTextField: {
|
|
|
20655
20759
|
error: boolean;
|
|
20656
20760
|
active: boolean;
|
|
20657
20761
|
direction: "horizontal" | "vertical";
|
|
20658
|
-
loading: boolean;
|
|
20659
20762
|
autofocus: boolean;
|
|
20660
20763
|
disabled: boolean;
|
|
20661
20764
|
readonly: boolean;
|
|
@@ -20675,7 +20778,7 @@ declare const VTextField: {
|
|
|
20675
20778
|
persistentPlaceholder: boolean;
|
|
20676
20779
|
persistentCounter: boolean;
|
|
20677
20780
|
}> & Omit<Readonly<ExtractPropTypes<Omit<{
|
|
20678
|
-
loading: BooleanConstructor;
|
|
20781
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
20679
20782
|
theme: StringConstructor;
|
|
20680
20783
|
appendInnerIcon: PropType<IconValue>;
|
|
20681
20784
|
bgColor: StringConstructor;
|
|
@@ -20759,7 +20862,7 @@ declare const VTextField: {
|
|
|
20759
20862
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
20760
20863
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
20761
20864
|
"onClick:input"?: ((e: MouseEvent) => any) | undefined;
|
|
20762
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "type" | "error" | "active" | "direction" | "
|
|
20865
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "type" | "error" | "active" | "direction" | "autofocus" | "disabled" | "readonly" | "messages" | "density" | "variant" | "clearIcon" | "focused" | "errorMessages" | "maxErrors" | "rules" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "persistentHint" | "persistentPlaceholder" | "persistentCounter">;
|
|
20763
20866
|
$attrs: {
|
|
20764
20867
|
[x: string]: unknown;
|
|
20765
20868
|
};
|
|
@@ -20774,7 +20877,7 @@ declare const VTextField: {
|
|
|
20774
20877
|
$emit: ((event: "update:modelValue", val: string) => void) & ((event: "click:control", e: MouseEvent) => void) & ((event: "update:focused", focused: boolean) => void) & ((event: "click:input", e: MouseEvent) => void);
|
|
20775
20878
|
$el: any;
|
|
20776
20879
|
$options: vue.ComponentOptionsBase<Readonly<ExtractPropTypes<Omit<{
|
|
20777
|
-
loading: BooleanConstructor;
|
|
20880
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
20778
20881
|
theme: StringConstructor;
|
|
20779
20882
|
appendInnerIcon: PropType<IconValue>;
|
|
20780
20883
|
bgColor: StringConstructor;
|
|
@@ -21086,7 +21189,6 @@ declare const VTextField: {
|
|
|
21086
21189
|
reverse: boolean;
|
|
21087
21190
|
error: boolean;
|
|
21088
21191
|
active: boolean;
|
|
21089
|
-
loading: boolean;
|
|
21090
21192
|
disabled: boolean;
|
|
21091
21193
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo";
|
|
21092
21194
|
clearIcon: IconValue;
|
|
@@ -21096,7 +21198,7 @@ declare const VTextField: {
|
|
|
21096
21198
|
persistentClear: boolean;
|
|
21097
21199
|
singleLine: boolean;
|
|
21098
21200
|
}> & Omit<Readonly<ExtractPropTypes<Omit<{
|
|
21099
|
-
loading: BooleanConstructor;
|
|
21201
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
21100
21202
|
theme: StringConstructor;
|
|
21101
21203
|
appendInnerIcon: PropType<IconValue>;
|
|
21102
21204
|
bgColor: StringConstructor;
|
|
@@ -21128,7 +21230,7 @@ declare const VTextField: {
|
|
|
21128
21230
|
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">>> & {
|
|
21129
21231
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
21130
21232
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
21131
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "error" | "active" | "
|
|
21233
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "error" | "active" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
21132
21234
|
$attrs: {
|
|
21133
21235
|
[x: string]: unknown;
|
|
21134
21236
|
};
|
|
@@ -21143,7 +21245,7 @@ declare const VTextField: {
|
|
|
21143
21245
|
$emit: ((event: "click:control", e: MouseEvent) => void) & ((event: "update:focused", focused: boolean) => void);
|
|
21144
21246
|
$el: any;
|
|
21145
21247
|
$options: vue.ComponentOptionsBase<Readonly<ExtractPropTypes<Omit<{
|
|
21146
|
-
loading: BooleanConstructor;
|
|
21248
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
21147
21249
|
theme: StringConstructor;
|
|
21148
21250
|
appendInnerIcon: PropType<IconValue>;
|
|
21149
21251
|
bgColor: StringConstructor;
|
|
@@ -21185,7 +21287,6 @@ declare const VTextField: {
|
|
|
21185
21287
|
reverse: boolean;
|
|
21186
21288
|
error: boolean;
|
|
21187
21289
|
active: boolean;
|
|
21188
|
-
loading: boolean;
|
|
21189
21290
|
disabled: boolean;
|
|
21190
21291
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo";
|
|
21191
21292
|
clearIcon: IconValue;
|
|
@@ -21215,7 +21316,7 @@ declare const VTextField: {
|
|
|
21215
21316
|
$nextTick: typeof nextTick;
|
|
21216
21317
|
$watch(source: string | Function, cb: Function, options?: vue.WatchOptions<boolean> | undefined): vue.WatchStopHandle;
|
|
21217
21318
|
} & Readonly<ExtractPropTypes<Omit<{
|
|
21218
|
-
loading: BooleanConstructor;
|
|
21319
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
21219
21320
|
theme: StringConstructor;
|
|
21220
21321
|
appendInnerIcon: PropType<IconValue>;
|
|
21221
21322
|
bgColor: StringConstructor;
|
|
@@ -21278,7 +21379,7 @@ declare const VTextField: {
|
|
|
21278
21379
|
"v-slot:loader"?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
21279
21380
|
"v-slot:default"?: false | ((args_0: VFieldSlot) => vue.VNodeChild) | undefined;
|
|
21280
21381
|
};
|
|
21281
|
-
}, "id" | "color" | "label" | "$children" | "theme" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "bgColor" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "onUpdate:focused" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "onClick:control" | ("reverse" | "error" | "active" | "
|
|
21382
|
+
}, "id" | "color" | "loading" | "label" | "$children" | "theme" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "bgColor" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "onUpdate:focused" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "onClick:control" | ("reverse" | "error" | "active" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
21282
21383
|
'click:control': (e: MouseEvent) => boolean;
|
|
21283
21384
|
'click:input': (e: MouseEvent) => boolean;
|
|
21284
21385
|
'update:focused': (focused: boolean) => boolean;
|
|
@@ -21289,7 +21390,6 @@ declare const VTextField: {
|
|
|
21289
21390
|
error: boolean;
|
|
21290
21391
|
active: boolean;
|
|
21291
21392
|
direction: "horizontal" | "vertical";
|
|
21292
|
-
loading: boolean;
|
|
21293
21393
|
autofocus: boolean;
|
|
21294
21394
|
disabled: boolean;
|
|
21295
21395
|
readonly: boolean;
|
|
@@ -21329,7 +21429,7 @@ declare const VTextField: {
|
|
|
21329
21429
|
$nextTick: typeof nextTick;
|
|
21330
21430
|
$watch(source: string | Function, cb: Function, options?: vue.WatchOptions<boolean> | undefined): vue.WatchStopHandle;
|
|
21331
21431
|
} & Readonly<ExtractPropTypes<Omit<{
|
|
21332
|
-
loading: BooleanConstructor;
|
|
21432
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
21333
21433
|
theme: StringConstructor;
|
|
21334
21434
|
appendInnerIcon: PropType<IconValue>;
|
|
21335
21435
|
bgColor: StringConstructor;
|
|
@@ -21641,7 +21741,6 @@ declare const VTextField: {
|
|
|
21641
21741
|
reverse: boolean;
|
|
21642
21742
|
error: boolean;
|
|
21643
21743
|
active: boolean;
|
|
21644
|
-
loading: boolean;
|
|
21645
21744
|
disabled: boolean;
|
|
21646
21745
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo";
|
|
21647
21746
|
clearIcon: IconValue;
|
|
@@ -21651,7 +21750,7 @@ declare const VTextField: {
|
|
|
21651
21750
|
persistentClear: boolean;
|
|
21652
21751
|
singleLine: boolean;
|
|
21653
21752
|
}> & Omit<Readonly<ExtractPropTypes<Omit<{
|
|
21654
|
-
loading: BooleanConstructor;
|
|
21753
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
21655
21754
|
theme: StringConstructor;
|
|
21656
21755
|
appendInnerIcon: PropType<IconValue>;
|
|
21657
21756
|
bgColor: StringConstructor;
|
|
@@ -21683,7 +21782,7 @@ declare const VTextField: {
|
|
|
21683
21782
|
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">>> & {
|
|
21684
21783
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
21685
21784
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
21686
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "error" | "active" | "
|
|
21785
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "error" | "active" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
21687
21786
|
$attrs: {
|
|
21688
21787
|
[x: string]: unknown;
|
|
21689
21788
|
};
|
|
@@ -21698,7 +21797,7 @@ declare const VTextField: {
|
|
|
21698
21797
|
$emit: ((event: "click:control", e: MouseEvent) => void) & ((event: "update:focused", focused: boolean) => void);
|
|
21699
21798
|
$el: any;
|
|
21700
21799
|
$options: vue.ComponentOptionsBase<Readonly<ExtractPropTypes<Omit<{
|
|
21701
|
-
loading: BooleanConstructor;
|
|
21800
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
21702
21801
|
theme: StringConstructor;
|
|
21703
21802
|
appendInnerIcon: PropType<IconValue>;
|
|
21704
21803
|
bgColor: StringConstructor;
|
|
@@ -21740,7 +21839,6 @@ declare const VTextField: {
|
|
|
21740
21839
|
reverse: boolean;
|
|
21741
21840
|
error: boolean;
|
|
21742
21841
|
active: boolean;
|
|
21743
|
-
loading: boolean;
|
|
21744
21842
|
disabled: boolean;
|
|
21745
21843
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo";
|
|
21746
21844
|
clearIcon: IconValue;
|
|
@@ -21770,7 +21868,7 @@ declare const VTextField: {
|
|
|
21770
21868
|
$nextTick: typeof nextTick;
|
|
21771
21869
|
$watch(source: string | Function, cb: Function, options?: vue.WatchOptions<boolean> | undefined): vue.WatchStopHandle;
|
|
21772
21870
|
} & Readonly<ExtractPropTypes<Omit<{
|
|
21773
|
-
loading: BooleanConstructor;
|
|
21871
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
21774
21872
|
theme: StringConstructor;
|
|
21775
21873
|
appendInnerIcon: PropType<IconValue>;
|
|
21776
21874
|
bgColor: StringConstructor;
|
|
@@ -21833,12 +21931,12 @@ declare const VTextField: {
|
|
|
21833
21931
|
"v-slot:loader"?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
21834
21932
|
"v-slot:default"?: false | ((args_0: VFieldSlot) => vue.VNodeChild) | undefined;
|
|
21835
21933
|
};
|
|
21836
|
-
}, "id" | "color" | "label" | "$children" | "theme" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "bgColor" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "onUpdate:focused" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "onClick:control" | ("reverse" | "error" | "active" | "
|
|
21934
|
+
}, "id" | "color" | "loading" | "label" | "$children" | "theme" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "bgColor" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "onUpdate:focused" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "onClick:control" | ("reverse" | "error" | "active" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`>> & {} & vue.ComponentCustomProperties;
|
|
21837
21935
|
__isFragment?: undefined;
|
|
21838
21936
|
__isTeleport?: undefined;
|
|
21839
21937
|
__isSuspense?: undefined;
|
|
21840
21938
|
} & vue.ComponentOptionsBase<Readonly<ExtractPropTypes<Omit<{
|
|
21841
|
-
loading: BooleanConstructor;
|
|
21939
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
21842
21940
|
theme: StringConstructor;
|
|
21843
21941
|
appendInnerIcon: PropType<IconValue>;
|
|
21844
21942
|
bgColor: StringConstructor;
|
|
@@ -22150,7 +22248,6 @@ declare const VTextField: {
|
|
|
22150
22248
|
reverse: boolean;
|
|
22151
22249
|
error: boolean;
|
|
22152
22250
|
active: boolean;
|
|
22153
|
-
loading: boolean;
|
|
22154
22251
|
disabled: boolean;
|
|
22155
22252
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo";
|
|
22156
22253
|
clearIcon: IconValue;
|
|
@@ -22160,7 +22257,7 @@ declare const VTextField: {
|
|
|
22160
22257
|
persistentClear: boolean;
|
|
22161
22258
|
singleLine: boolean;
|
|
22162
22259
|
}> & Omit<Readonly<ExtractPropTypes<Omit<{
|
|
22163
|
-
loading: BooleanConstructor;
|
|
22260
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
22164
22261
|
theme: StringConstructor;
|
|
22165
22262
|
appendInnerIcon: PropType<IconValue>;
|
|
22166
22263
|
bgColor: StringConstructor;
|
|
@@ -22192,7 +22289,7 @@ declare const VTextField: {
|
|
|
22192
22289
|
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader">>> & {
|
|
22193
22290
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
22194
22291
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
22195
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "error" | "active" | "
|
|
22292
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "error" | "active" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
22196
22293
|
$attrs: {
|
|
22197
22294
|
[x: string]: unknown;
|
|
22198
22295
|
};
|
|
@@ -22207,7 +22304,7 @@ declare const VTextField: {
|
|
|
22207
22304
|
$emit: ((event: "click:control", e: MouseEvent) => void) & ((event: "update:focused", focused: boolean) => void);
|
|
22208
22305
|
$el: any;
|
|
22209
22306
|
$options: vue.ComponentOptionsBase<Readonly<ExtractPropTypes<Omit<{
|
|
22210
|
-
loading: BooleanConstructor;
|
|
22307
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
22211
22308
|
theme: StringConstructor;
|
|
22212
22309
|
appendInnerIcon: PropType<IconValue>;
|
|
22213
22310
|
bgColor: StringConstructor;
|
|
@@ -22249,7 +22346,6 @@ declare const VTextField: {
|
|
|
22249
22346
|
reverse: boolean;
|
|
22250
22347
|
error: boolean;
|
|
22251
22348
|
active: boolean;
|
|
22252
|
-
loading: boolean;
|
|
22253
22349
|
disabled: boolean;
|
|
22254
22350
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo";
|
|
22255
22351
|
clearIcon: IconValue;
|
|
@@ -22279,7 +22375,7 @@ declare const VTextField: {
|
|
|
22279
22375
|
$nextTick: typeof nextTick;
|
|
22280
22376
|
$watch(source: string | Function, cb: Function, options?: vue.WatchOptions<boolean> | undefined): vue.WatchStopHandle;
|
|
22281
22377
|
} & Readonly<ExtractPropTypes<Omit<{
|
|
22282
|
-
loading: BooleanConstructor;
|
|
22378
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
22283
22379
|
theme: StringConstructor;
|
|
22284
22380
|
appendInnerIcon: PropType<IconValue>;
|
|
22285
22381
|
bgColor: StringConstructor;
|
|
@@ -22342,7 +22438,7 @@ declare const VTextField: {
|
|
|
22342
22438
|
"v-slot:loader"?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
22343
22439
|
"v-slot:default"?: false | ((args_0: VFieldSlot) => vue.VNodeChild) | undefined;
|
|
22344
22440
|
};
|
|
22345
|
-
}, "id" | "color" | "label" | "$children" | "theme" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "bgColor" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "onUpdate:focused" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "onClick:control" | ("reverse" | "error" | "active" | "
|
|
22441
|
+
}, "id" | "color" | "loading" | "label" | "$children" | "theme" | "v-slots" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "modelValue" | "onUpdate:modelValue" | "bgColor" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "onUpdate:focused" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:label" | "v-slot:loader" | "onClick:control" | ("reverse" | "error" | "active" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
22346
22442
|
'click:control': (e: MouseEvent) => boolean;
|
|
22347
22443
|
'click:input': (e: MouseEvent) => boolean;
|
|
22348
22444
|
'update:focused': (focused: boolean) => boolean;
|
|
@@ -22353,7 +22449,6 @@ declare const VTextField: {
|
|
|
22353
22449
|
error: boolean;
|
|
22354
22450
|
active: boolean;
|
|
22355
22451
|
direction: "horizontal" | "vertical";
|
|
22356
|
-
loading: boolean;
|
|
22357
22452
|
autofocus: boolean;
|
|
22358
22453
|
disabled: boolean;
|
|
22359
22454
|
readonly: boolean;
|
|
@@ -22959,6 +23054,7 @@ declare const VTooltip: {
|
|
|
22959
23054
|
noClickAnimation: boolean;
|
|
22960
23055
|
persistent: boolean;
|
|
22961
23056
|
scrim: string | boolean;
|
|
23057
|
+
_disableGlobalStack: boolean;
|
|
22962
23058
|
}> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
|
|
22963
23059
|
transition: {
|
|
22964
23060
|
type: vue.PropType<string | boolean | (vue.TransitionProps & {
|
|
@@ -23034,11 +23130,12 @@ declare const VTooltip: {
|
|
|
23034
23130
|
type: (StringConstructor | NumberConstructor)[];
|
|
23035
23131
|
default: number;
|
|
23036
23132
|
};
|
|
23133
|
+
_disableGlobalStack: BooleanConstructor;
|
|
23037
23134
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
23038
23135
|
onAfterLeave?: (() => any) | undefined;
|
|
23039
23136
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
23040
23137
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
23041
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">;
|
|
23138
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack">;
|
|
23042
23139
|
$attrs: {
|
|
23043
23140
|
[x: string]: unknown;
|
|
23044
23141
|
};
|
|
@@ -23127,6 +23224,7 @@ declare const VTooltip: {
|
|
|
23127
23224
|
type: (StringConstructor | NumberConstructor)[];
|
|
23128
23225
|
default: number;
|
|
23129
23226
|
};
|
|
23227
|
+
_disableGlobalStack: BooleanConstructor;
|
|
23130
23228
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
23131
23229
|
onAfterLeave?: (() => any) | undefined;
|
|
23132
23230
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -23167,6 +23265,7 @@ declare const VTooltip: {
|
|
|
23167
23265
|
noClickAnimation: boolean;
|
|
23168
23266
|
persistent: boolean;
|
|
23169
23267
|
scrim: string | boolean;
|
|
23268
|
+
_disableGlobalStack: boolean;
|
|
23170
23269
|
}> & {
|
|
23171
23270
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
23172
23271
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -23262,6 +23361,7 @@ declare const VTooltip: {
|
|
|
23262
23361
|
type: (StringConstructor | NumberConstructor)[];
|
|
23263
23362
|
default: number;
|
|
23264
23363
|
};
|
|
23364
|
+
_disableGlobalStack: BooleanConstructor;
|
|
23265
23365
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
23266
23366
|
onAfterLeave?: (() => any) | undefined;
|
|
23267
23367
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -23302,7 +23402,7 @@ declare const VTooltip: {
|
|
|
23302
23402
|
props: Record<string, any>;
|
|
23303
23403
|
}) => vue.VNodeChild) | undefined;
|
|
23304
23404
|
};
|
|
23305
|
-
}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
23405
|
+
}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
23306
23406
|
'update:modelValue': (value: boolean) => boolean;
|
|
23307
23407
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">, string, {
|
|
23308
23408
|
offset: string | number | ((string | number | number[] | undefined) & {});
|
|
@@ -23493,6 +23593,7 @@ declare const VTooltip: {
|
|
|
23493
23593
|
noClickAnimation: boolean;
|
|
23494
23594
|
persistent: boolean;
|
|
23495
23595
|
scrim: string | boolean;
|
|
23596
|
+
_disableGlobalStack: boolean;
|
|
23496
23597
|
}> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
|
|
23497
23598
|
transition: {
|
|
23498
23599
|
type: vue.PropType<string | boolean | (vue.TransitionProps & {
|
|
@@ -23568,11 +23669,12 @@ declare const VTooltip: {
|
|
|
23568
23669
|
type: (StringConstructor | NumberConstructor)[];
|
|
23569
23670
|
default: number;
|
|
23570
23671
|
};
|
|
23672
|
+
_disableGlobalStack: BooleanConstructor;
|
|
23571
23673
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
23572
23674
|
onAfterLeave?: (() => any) | undefined;
|
|
23573
23675
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
23574
23676
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
23575
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">;
|
|
23677
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack">;
|
|
23576
23678
|
$attrs: {
|
|
23577
23679
|
[x: string]: unknown;
|
|
23578
23680
|
};
|
|
@@ -23661,6 +23763,7 @@ declare const VTooltip: {
|
|
|
23661
23763
|
type: (StringConstructor | NumberConstructor)[];
|
|
23662
23764
|
default: number;
|
|
23663
23765
|
};
|
|
23766
|
+
_disableGlobalStack: BooleanConstructor;
|
|
23664
23767
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
23665
23768
|
onAfterLeave?: (() => any) | undefined;
|
|
23666
23769
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -23701,6 +23804,7 @@ declare const VTooltip: {
|
|
|
23701
23804
|
noClickAnimation: boolean;
|
|
23702
23805
|
persistent: boolean;
|
|
23703
23806
|
scrim: string | boolean;
|
|
23807
|
+
_disableGlobalStack: boolean;
|
|
23704
23808
|
}> & {
|
|
23705
23809
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
23706
23810
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -23796,6 +23900,7 @@ declare const VTooltip: {
|
|
|
23796
23900
|
type: (StringConstructor | NumberConstructor)[];
|
|
23797
23901
|
default: number;
|
|
23798
23902
|
};
|
|
23903
|
+
_disableGlobalStack: BooleanConstructor;
|
|
23799
23904
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
23800
23905
|
onAfterLeave?: (() => any) | undefined;
|
|
23801
23906
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -23836,7 +23941,7 @@ declare const VTooltip: {
|
|
|
23836
23941
|
props: Record<string, any>;
|
|
23837
23942
|
}) => vue.VNodeChild) | undefined;
|
|
23838
23943
|
};
|
|
23839
|
-
}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim")>, `$${any}`>> & {} & vue.ComponentCustomProperties;
|
|
23944
|
+
}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>> & {} & vue.ComponentCustomProperties;
|
|
23840
23945
|
__isFragment?: undefined;
|
|
23841
23946
|
__isTeleport?: undefined;
|
|
23842
23947
|
__isSuspense?: undefined;
|
|
@@ -23985,6 +24090,7 @@ declare const VTooltip: {
|
|
|
23985
24090
|
noClickAnimation: boolean;
|
|
23986
24091
|
persistent: boolean;
|
|
23987
24092
|
scrim: string | boolean;
|
|
24093
|
+
_disableGlobalStack: boolean;
|
|
23988
24094
|
}> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
|
|
23989
24095
|
transition: {
|
|
23990
24096
|
type: vue.PropType<string | boolean | (vue.TransitionProps & {
|
|
@@ -24060,11 +24166,12 @@ declare const VTooltip: {
|
|
|
24060
24166
|
type: (StringConstructor | NumberConstructor)[];
|
|
24061
24167
|
default: number;
|
|
24062
24168
|
};
|
|
24169
|
+
_disableGlobalStack: BooleanConstructor;
|
|
24063
24170
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
24064
24171
|
onAfterLeave?: (() => any) | undefined;
|
|
24065
24172
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
24066
24173
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
24067
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">;
|
|
24174
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack">;
|
|
24068
24175
|
$attrs: {
|
|
24069
24176
|
[x: string]: unknown;
|
|
24070
24177
|
};
|
|
@@ -24153,6 +24260,7 @@ declare const VTooltip: {
|
|
|
24153
24260
|
type: (StringConstructor | NumberConstructor)[];
|
|
24154
24261
|
default: number;
|
|
24155
24262
|
};
|
|
24263
|
+
_disableGlobalStack: BooleanConstructor;
|
|
24156
24264
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
24157
24265
|
onAfterLeave?: (() => any) | undefined;
|
|
24158
24266
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -24193,6 +24301,7 @@ declare const VTooltip: {
|
|
|
24193
24301
|
noClickAnimation: boolean;
|
|
24194
24302
|
persistent: boolean;
|
|
24195
24303
|
scrim: string | boolean;
|
|
24304
|
+
_disableGlobalStack: boolean;
|
|
24196
24305
|
}> & {
|
|
24197
24306
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
24198
24307
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -24288,6 +24397,7 @@ declare const VTooltip: {
|
|
|
24288
24397
|
type: (StringConstructor | NumberConstructor)[];
|
|
24289
24398
|
default: number;
|
|
24290
24399
|
};
|
|
24400
|
+
_disableGlobalStack: BooleanConstructor;
|
|
24291
24401
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
24292
24402
|
onAfterLeave?: (() => any) | undefined;
|
|
24293
24403
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -24328,7 +24438,7 @@ declare const VTooltip: {
|
|
|
24328
24438
|
props: Record<string, any>;
|
|
24329
24439
|
}) => vue.VNodeChild) | undefined;
|
|
24330
24440
|
};
|
|
24331
|
-
}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
24441
|
+
}, "offset" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "contentClass" | keyof vue.VNodeProps | keyof vue.AllowedComponentProps | "v-slot:default" | "onUpdate:modelValue" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "modelValue" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "locationStrategy" | "scrollStrategy" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
24332
24442
|
'update:modelValue': (value: boolean) => boolean;
|
|
24333
24443
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">, string, {
|
|
24334
24444
|
offset: string | number | ((string | number | number[] | undefined) & {});
|