@vuetify/nightly 3.0.4 → 3.0.5-dev-20221212.0
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/CHANGELOG.md +13 -2
- package/dist/json/importMap.json +12 -12
- package/dist/vuetify.css +65 -66
- package/dist/vuetify.d.ts +201 -159
- package/dist/vuetify.esm.js +39 -23
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +39 -23
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +26 -26
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAlert/index.d.ts +1 -1
- package/lib/components/VAutocomplete/index.d.ts +21 -24
- 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/index.d.ts +21 -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/index.d.ts +3 -4
- package/lib/components/VMenu/index.d.ts +21 -6
- package/lib/components/VOverlay/VOverlay.mjs +5 -2
- 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/VSelect/index.d.ts +21 -24
- 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 +198 -156
- 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/entry-bundler.mjs.map +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/framework.mjs.map +1 -1
- package/lib/index.d.ts +3 -3
- 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 +1 -1
|
@@ -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;
|
|
@@ -1689,7 +1685,7 @@ declare const VAutocomplete: {
|
|
|
1689
1685
|
default: string;
|
|
1690
1686
|
validator: (v: any) => boolean;
|
|
1691
1687
|
};
|
|
1692
|
-
loading: BooleanConstructor;
|
|
1688
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
1693
1689
|
label: StringConstructor;
|
|
1694
1690
|
prefix: StringConstructor;
|
|
1695
1691
|
autofocus: BooleanConstructor;
|
|
@@ -1707,15 +1703,15 @@ declare const VAutocomplete: {
|
|
|
1707
1703
|
default: string;
|
|
1708
1704
|
validator: (v: any) => boolean;
|
|
1709
1705
|
};
|
|
1710
|
-
modelValue: {
|
|
1711
|
-
type: vue.PropType<any>;
|
|
1712
|
-
default: any;
|
|
1713
|
-
};
|
|
1714
1706
|
variant: {
|
|
1715
1707
|
type: vue.PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
1716
1708
|
default: string;
|
|
1717
1709
|
validator: (v: any) => boolean;
|
|
1718
1710
|
};
|
|
1711
|
+
modelValue: {
|
|
1712
|
+
type: vue.PropType<any>;
|
|
1713
|
+
default: any;
|
|
1714
|
+
};
|
|
1719
1715
|
bgColor: StringConstructor;
|
|
1720
1716
|
prependIcon: vue.PropType<IconValue>;
|
|
1721
1717
|
appendIcon: vue.PropType<IconValue>;
|
|
@@ -1988,7 +1984,7 @@ declare const VAutocomplete: {
|
|
|
1988
1984
|
}, "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
1985
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
1990
1986
|
"onUpdate:search"?: ((val: any) => any) | undefined;
|
|
1991
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "type" | "error" | "active" | "direction" | "transition" | "
|
|
1987
|
+
} & 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" | "itemTitle" | "itemValue" | "itemChildren" | "itemProps" | "chips" | "closableChips" | "hideNoData" | "hideSelected" | "menuIcon" | "openOnClear" | "filterMode" | "noFilter" | "filterKeys">;
|
|
1992
1988
|
$attrs: {
|
|
1993
1989
|
[x: string]: unknown;
|
|
1994
1990
|
};
|
|
@@ -2032,7 +2028,7 @@ declare const VAutocomplete: {
|
|
|
2032
2028
|
default: string;
|
|
2033
2029
|
validator: (v: any) => boolean;
|
|
2034
2030
|
};
|
|
2035
|
-
loading: BooleanConstructor;
|
|
2031
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
2036
2032
|
label: StringConstructor;
|
|
2037
2033
|
prefix: StringConstructor;
|
|
2038
2034
|
autofocus: BooleanConstructor;
|
|
@@ -2050,15 +2046,15 @@ declare const VAutocomplete: {
|
|
|
2050
2046
|
default: string;
|
|
2051
2047
|
validator: (v: any) => boolean;
|
|
2052
2048
|
};
|
|
2053
|
-
modelValue: {
|
|
2054
|
-
type: vue.PropType<any>;
|
|
2055
|
-
default: any;
|
|
2056
|
-
};
|
|
2057
2049
|
variant: {
|
|
2058
2050
|
type: vue.PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
2059
2051
|
default: string;
|
|
2060
2052
|
validator: (v: any) => boolean;
|
|
2061
2053
|
};
|
|
2054
|
+
modelValue: {
|
|
2055
|
+
type: vue.PropType<any>;
|
|
2056
|
+
default: any;
|
|
2057
|
+
};
|
|
2062
2058
|
bgColor: StringConstructor;
|
|
2063
2059
|
prependIcon: vue.PropType<IconValue>;
|
|
2064
2060
|
appendIcon: vue.PropType<IconValue>;
|
|
@@ -2358,7 +2354,6 @@ declare const VAutocomplete: {
|
|
|
2358
2354
|
transition: string | boolean | (vue.TransitionProps & {
|
|
2359
2355
|
component?: vue.Component<any, any, any, vue.ComputedOptions, vue.MethodOptions> | undefined;
|
|
2360
2356
|
});
|
|
2361
|
-
loading: boolean;
|
|
2362
2357
|
menu: boolean;
|
|
2363
2358
|
autofocus: boolean;
|
|
2364
2359
|
eager: boolean;
|
|
@@ -2442,7 +2437,7 @@ declare const VAutocomplete: {
|
|
|
2442
2437
|
default: string;
|
|
2443
2438
|
validator: (v: any) => boolean;
|
|
2444
2439
|
};
|
|
2445
|
-
loading: BooleanConstructor;
|
|
2440
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
2446
2441
|
label: StringConstructor;
|
|
2447
2442
|
prefix: StringConstructor;
|
|
2448
2443
|
autofocus: BooleanConstructor;
|
|
@@ -2460,15 +2455,15 @@ declare const VAutocomplete: {
|
|
|
2460
2455
|
default: string;
|
|
2461
2456
|
validator: (v: any) => boolean;
|
|
2462
2457
|
};
|
|
2463
|
-
modelValue: {
|
|
2464
|
-
type: vue.PropType<any>;
|
|
2465
|
-
default: any;
|
|
2466
|
-
};
|
|
2467
2458
|
variant: {
|
|
2468
2459
|
type: vue.PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
2469
2460
|
default: string;
|
|
2470
2461
|
validator: (v: any) => boolean;
|
|
2471
2462
|
};
|
|
2463
|
+
modelValue: {
|
|
2464
|
+
type: vue.PropType<any>;
|
|
2465
|
+
default: any;
|
|
2466
|
+
};
|
|
2472
2467
|
bgColor: StringConstructor;
|
|
2473
2468
|
prependIcon: vue.PropType<IconValue>;
|
|
2474
2469
|
appendIcon: vue.PropType<IconValue>;
|
|
@@ -2789,7 +2784,7 @@ declare const VAutocomplete: {
|
|
|
2789
2784
|
default: string;
|
|
2790
2785
|
validator: (v: any) => boolean;
|
|
2791
2786
|
};
|
|
2792
|
-
loading: BooleanConstructor;
|
|
2787
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
2793
2788
|
label: StringConstructor;
|
|
2794
2789
|
prefix: StringConstructor;
|
|
2795
2790
|
autofocus: BooleanConstructor;
|
|
@@ -2807,15 +2802,15 @@ declare const VAutocomplete: {
|
|
|
2807
2802
|
default: string;
|
|
2808
2803
|
validator: (v: any) => boolean;
|
|
2809
2804
|
};
|
|
2810
|
-
modelValue: {
|
|
2811
|
-
type: vue.PropType<any>;
|
|
2812
|
-
default: any;
|
|
2813
|
-
};
|
|
2814
2805
|
variant: {
|
|
2815
2806
|
type: vue.PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
2816
2807
|
default: string;
|
|
2817
2808
|
validator: (v: any) => boolean;
|
|
2818
2809
|
};
|
|
2810
|
+
modelValue: {
|
|
2811
|
+
type: vue.PropType<any>;
|
|
2812
|
+
default: any;
|
|
2813
|
+
};
|
|
2819
2814
|
bgColor: StringConstructor;
|
|
2820
2815
|
prependIcon: vue.PropType<IconValue>;
|
|
2821
2816
|
appendIcon: vue.PropType<IconValue>;
|
|
@@ -3115,7 +3110,6 @@ declare const VAutocomplete: {
|
|
|
3115
3110
|
transition: string | boolean | (vue.TransitionProps & {
|
|
3116
3111
|
component?: vue.Component<any, any, any, vue.ComputedOptions, vue.MethodOptions> | undefined;
|
|
3117
3112
|
});
|
|
3118
|
-
loading: boolean;
|
|
3119
3113
|
menu: boolean;
|
|
3120
3114
|
autofocus: boolean;
|
|
3121
3115
|
eager: boolean;
|
|
@@ -4039,7 +4033,7 @@ declare const VBtn: vue.DefineComponent<{
|
|
|
4039
4033
|
validator: (v: any) => boolean;
|
|
4040
4034
|
};
|
|
4041
4035
|
location: PropType<Anchor>;
|
|
4042
|
-
loading: BooleanConstructor;
|
|
4036
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
4043
4037
|
value: null;
|
|
4044
4038
|
disabled: BooleanConstructor;
|
|
4045
4039
|
selectedClass: StringConstructor;
|
|
@@ -4116,7 +4110,7 @@ declare const VBtn: vue.DefineComponent<{
|
|
|
4116
4110
|
validator: (v: any) => boolean;
|
|
4117
4111
|
};
|
|
4118
4112
|
location: PropType<Anchor>;
|
|
4119
|
-
loading: BooleanConstructor;
|
|
4113
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
4120
4114
|
value: null;
|
|
4121
4115
|
disabled: BooleanConstructor;
|
|
4122
4116
|
selectedClass: StringConstructor;
|
|
@@ -4169,7 +4163,6 @@ declare const VBtn: vue.DefineComponent<{
|
|
|
4169
4163
|
exact: boolean;
|
|
4170
4164
|
active: boolean;
|
|
4171
4165
|
block: boolean;
|
|
4172
|
-
loading: boolean;
|
|
4173
4166
|
disabled: boolean;
|
|
4174
4167
|
size: string | number;
|
|
4175
4168
|
tag: string;
|
|
@@ -4399,7 +4392,7 @@ declare const VCard: vue.DefineComponent<{
|
|
|
4399
4392
|
validator: (v: any) => boolean;
|
|
4400
4393
|
};
|
|
4401
4394
|
location: vue.PropType<Anchor>;
|
|
4402
|
-
loading: BooleanConstructor;
|
|
4395
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
4403
4396
|
elevation: {
|
|
4404
4397
|
type: (StringConstructor | NumberConstructor)[];
|
|
4405
4398
|
validator(v: any): boolean;
|
|
@@ -4460,7 +4453,7 @@ declare const VCard: vue.DefineComponent<{
|
|
|
4460
4453
|
validator: (v: any) => boolean;
|
|
4461
4454
|
};
|
|
4462
4455
|
location: vue.PropType<Anchor>;
|
|
4463
|
-
loading: BooleanConstructor;
|
|
4456
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
4464
4457
|
elevation: {
|
|
4465
4458
|
type: (StringConstructor | NumberConstructor)[];
|
|
4466
4459
|
validator(v: any): boolean;
|
|
@@ -4499,7 +4492,6 @@ declare const VCard: vue.DefineComponent<{
|
|
|
4499
4492
|
link: boolean;
|
|
4500
4493
|
flat: boolean;
|
|
4501
4494
|
exact: boolean;
|
|
4502
|
-
loading: boolean;
|
|
4503
4495
|
disabled: boolean;
|
|
4504
4496
|
tag: string;
|
|
4505
4497
|
rounded: string | number | boolean;
|
|
@@ -5129,8 +5121,8 @@ declare const VChip: vue.DefineComponent<{
|
|
|
5129
5121
|
tag: string;
|
|
5130
5122
|
rounded: string | number | boolean;
|
|
5131
5123
|
density: Density;
|
|
5132
|
-
modelValue: boolean;
|
|
5133
5124
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
5125
|
+
modelValue: boolean;
|
|
5134
5126
|
ripple: boolean;
|
|
5135
5127
|
closable: boolean;
|
|
5136
5128
|
closeIcon: IconValue;
|
|
@@ -5216,8 +5208,8 @@ declare const VChipGroup: vue.DefineComponent<{
|
|
|
5216
5208
|
multiple: boolean;
|
|
5217
5209
|
tag: string;
|
|
5218
5210
|
column: boolean;
|
|
5219
|
-
modelValue: any;
|
|
5220
5211
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
5212
|
+
modelValue: any;
|
|
5221
5213
|
selectedClass: string;
|
|
5222
5214
|
valueComparator: typeof deepEqual;
|
|
5223
5215
|
}>;
|
|
@@ -5368,7 +5360,6 @@ declare const VCombobox: {
|
|
|
5368
5360
|
transition: string | boolean | (vue.TransitionProps & {
|
|
5369
5361
|
component?: vue.Component<any, any, any, vue.ComputedOptions, vue.MethodOptions> | undefined;
|
|
5370
5362
|
});
|
|
5371
|
-
loading: boolean;
|
|
5372
5363
|
menu: boolean;
|
|
5373
5364
|
autofocus: boolean;
|
|
5374
5365
|
eager: boolean;
|
|
@@ -5432,7 +5423,7 @@ declare const VCombobox: {
|
|
|
5432
5423
|
default: string;
|
|
5433
5424
|
validator: (v: any) => boolean;
|
|
5434
5425
|
};
|
|
5435
|
-
loading: BooleanConstructor;
|
|
5426
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
5436
5427
|
label: StringConstructor;
|
|
5437
5428
|
prefix: StringConstructor;
|
|
5438
5429
|
autofocus: BooleanConstructor;
|
|
@@ -5450,15 +5441,15 @@ declare const VCombobox: {
|
|
|
5450
5441
|
default: string;
|
|
5451
5442
|
validator: (v: any) => boolean;
|
|
5452
5443
|
};
|
|
5453
|
-
modelValue: {
|
|
5454
|
-
type: PropType<any>;
|
|
5455
|
-
default: any;
|
|
5456
|
-
};
|
|
5457
5444
|
variant: {
|
|
5458
5445
|
type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
5459
5446
|
default: string;
|
|
5460
5447
|
validator: (v: any) => boolean;
|
|
5461
5448
|
};
|
|
5449
|
+
modelValue: {
|
|
5450
|
+
type: PropType<any>;
|
|
5451
|
+
default: any;
|
|
5452
|
+
};
|
|
5462
5453
|
bgColor: StringConstructor;
|
|
5463
5454
|
prependIcon: PropType<IconValue>;
|
|
5464
5455
|
appendIcon: PropType<IconValue>;
|
|
@@ -5737,7 +5728,7 @@ declare const VCombobox: {
|
|
|
5737
5728
|
}, "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
5729
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
5739
5730
|
"onUpdate:search"?: ((val: string) => any) | undefined;
|
|
5740
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "type" | "error" | "active" | "direction" | "transition" | "
|
|
5731
|
+
} & 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" | "itemTitle" | "itemValue" | "itemChildren" | "itemProps" | "chips" | "closableChips" | "hideNoData" | "hideSelected" | "menuIcon" | "openOnClear" | "filterMode" | "noFilter" | "filterKeys">;
|
|
5741
5732
|
$attrs: {
|
|
5742
5733
|
[x: string]: unknown;
|
|
5743
5734
|
};
|
|
@@ -5781,7 +5772,7 @@ declare const VCombobox: {
|
|
|
5781
5772
|
default: string;
|
|
5782
5773
|
validator: (v: any) => boolean;
|
|
5783
5774
|
};
|
|
5784
|
-
loading: BooleanConstructor;
|
|
5775
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
5785
5776
|
label: StringConstructor;
|
|
5786
5777
|
prefix: StringConstructor;
|
|
5787
5778
|
autofocus: BooleanConstructor;
|
|
@@ -5799,15 +5790,15 @@ declare const VCombobox: {
|
|
|
5799
5790
|
default: string;
|
|
5800
5791
|
validator: (v: any) => boolean;
|
|
5801
5792
|
};
|
|
5802
|
-
modelValue: {
|
|
5803
|
-
type: PropType<any>;
|
|
5804
|
-
default: any;
|
|
5805
|
-
};
|
|
5806
5793
|
variant: {
|
|
5807
5794
|
type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
5808
5795
|
default: string;
|
|
5809
5796
|
validator: (v: any) => boolean;
|
|
5810
5797
|
};
|
|
5798
|
+
modelValue: {
|
|
5799
|
+
type: PropType<any>;
|
|
5800
|
+
default: any;
|
|
5801
|
+
};
|
|
5811
5802
|
bgColor: StringConstructor;
|
|
5812
5803
|
prependIcon: PropType<IconValue>;
|
|
5813
5804
|
appendIcon: PropType<IconValue>;
|
|
@@ -6112,7 +6103,6 @@ declare const VCombobox: {
|
|
|
6112
6103
|
transition: string | boolean | (vue.TransitionProps & {
|
|
6113
6104
|
component?: vue.Component<any, any, any, vue.ComputedOptions, vue.MethodOptions> | undefined;
|
|
6114
6105
|
});
|
|
6115
|
-
loading: boolean;
|
|
6116
6106
|
menu: boolean;
|
|
6117
6107
|
autofocus: boolean;
|
|
6118
6108
|
eager: boolean;
|
|
@@ -6196,7 +6186,7 @@ declare const VCombobox: {
|
|
|
6196
6186
|
default: string;
|
|
6197
6187
|
validator: (v: any) => boolean;
|
|
6198
6188
|
};
|
|
6199
|
-
loading: BooleanConstructor;
|
|
6189
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
6200
6190
|
label: StringConstructor;
|
|
6201
6191
|
prefix: StringConstructor;
|
|
6202
6192
|
autofocus: BooleanConstructor;
|
|
@@ -6214,15 +6204,15 @@ declare const VCombobox: {
|
|
|
6214
6204
|
default: string;
|
|
6215
6205
|
validator: (v: any) => boolean;
|
|
6216
6206
|
};
|
|
6217
|
-
modelValue: {
|
|
6218
|
-
type: PropType<any>;
|
|
6219
|
-
default: any;
|
|
6220
|
-
};
|
|
6221
6207
|
variant: {
|
|
6222
6208
|
type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
6223
6209
|
default: string;
|
|
6224
6210
|
validator: (v: any) => boolean;
|
|
6225
6211
|
};
|
|
6212
|
+
modelValue: {
|
|
6213
|
+
type: PropType<any>;
|
|
6214
|
+
default: any;
|
|
6215
|
+
};
|
|
6226
6216
|
bgColor: StringConstructor;
|
|
6227
6217
|
prependIcon: PropType<IconValue>;
|
|
6228
6218
|
appendIcon: PropType<IconValue>;
|
|
@@ -6548,7 +6538,7 @@ declare const VCombobox: {
|
|
|
6548
6538
|
default: string;
|
|
6549
6539
|
validator: (v: any) => boolean;
|
|
6550
6540
|
};
|
|
6551
|
-
loading: BooleanConstructor;
|
|
6541
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
6552
6542
|
label: StringConstructor;
|
|
6553
6543
|
prefix: StringConstructor;
|
|
6554
6544
|
autofocus: BooleanConstructor;
|
|
@@ -6566,15 +6556,15 @@ declare const VCombobox: {
|
|
|
6566
6556
|
default: string;
|
|
6567
6557
|
validator: (v: any) => boolean;
|
|
6568
6558
|
};
|
|
6569
|
-
modelValue: {
|
|
6570
|
-
type: PropType<any>;
|
|
6571
|
-
default: any;
|
|
6572
|
-
};
|
|
6573
6559
|
variant: {
|
|
6574
6560
|
type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
6575
6561
|
default: string;
|
|
6576
6562
|
validator: (v: any) => boolean;
|
|
6577
6563
|
};
|
|
6564
|
+
modelValue: {
|
|
6565
|
+
type: PropType<any>;
|
|
6566
|
+
default: any;
|
|
6567
|
+
};
|
|
6578
6568
|
bgColor: StringConstructor;
|
|
6579
6569
|
prependIcon: PropType<IconValue>;
|
|
6580
6570
|
appendIcon: PropType<IconValue>;
|
|
@@ -6879,7 +6869,6 @@ declare const VCombobox: {
|
|
|
6879
6869
|
transition: string | boolean | (vue.TransitionProps & {
|
|
6880
6870
|
component?: vue.Component<any, any, any, vue.ComputedOptions, vue.MethodOptions> | undefined;
|
|
6881
6871
|
});
|
|
6882
|
-
loading: boolean;
|
|
6883
6872
|
menu: boolean;
|
|
6884
6873
|
autofocus: boolean;
|
|
6885
6874
|
eager: boolean;
|
|
@@ -7287,6 +7276,7 @@ declare const VOverlay: {
|
|
|
7287
7276
|
noClickAnimation: boolean;
|
|
7288
7277
|
persistent: boolean;
|
|
7289
7278
|
scrim: string | boolean;
|
|
7279
|
+
_disableGlobalStack: boolean;
|
|
7290
7280
|
}> & Omit<Readonly<ExtractPropTypes<Omit<{
|
|
7291
7281
|
transition: {
|
|
7292
7282
|
type: PropType<string | boolean | (vue.TransitionProps & {
|
|
@@ -7362,11 +7352,12 @@ declare const VOverlay: {
|
|
|
7362
7352
|
type: (StringConstructor | NumberConstructor)[];
|
|
7363
7353
|
default: number;
|
|
7364
7354
|
};
|
|
7355
|
+
_disableGlobalStack: BooleanConstructor;
|
|
7365
7356
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
7366
7357
|
onAfterLeave?: (() => any) | undefined;
|
|
7367
7358
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
7368
7359
|
"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">;
|
|
7360
|
+
} & 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
7361
|
$attrs: {
|
|
7371
7362
|
[x: string]: unknown;
|
|
7372
7363
|
};
|
|
@@ -7455,6 +7446,7 @@ declare const VOverlay: {
|
|
|
7455
7446
|
type: (StringConstructor | NumberConstructor)[];
|
|
7456
7447
|
default: number;
|
|
7457
7448
|
};
|
|
7449
|
+
_disableGlobalStack: BooleanConstructor;
|
|
7458
7450
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
7459
7451
|
onAfterLeave?: (() => any) | undefined;
|
|
7460
7452
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -7495,6 +7487,7 @@ declare const VOverlay: {
|
|
|
7495
7487
|
noClickAnimation: boolean;
|
|
7496
7488
|
persistent: boolean;
|
|
7497
7489
|
scrim: string | boolean;
|
|
7490
|
+
_disableGlobalStack: boolean;
|
|
7498
7491
|
}> & {
|
|
7499
7492
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
7500
7493
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -7590,6 +7583,7 @@ declare const VOverlay: {
|
|
|
7590
7583
|
type: (StringConstructor | NumberConstructor)[];
|
|
7591
7584
|
default: number;
|
|
7592
7585
|
};
|
|
7586
|
+
_disableGlobalStack: BooleanConstructor;
|
|
7593
7587
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
7594
7588
|
onAfterLeave?: (() => any) | undefined;
|
|
7595
7589
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -7680,6 +7674,7 @@ declare const VOverlay: {
|
|
|
7680
7674
|
type: (StringConstructor | NumberConstructor)[];
|
|
7681
7675
|
default: number;
|
|
7682
7676
|
};
|
|
7677
|
+
_disableGlobalStack: BooleanConstructor;
|
|
7683
7678
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
7684
7679
|
onAfterLeave?: (() => any) | undefined;
|
|
7685
7680
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -7720,6 +7715,7 @@ declare const VOverlay: {
|
|
|
7720
7715
|
noClickAnimation: boolean;
|
|
7721
7716
|
persistent: boolean;
|
|
7722
7717
|
scrim: string | boolean;
|
|
7718
|
+
_disableGlobalStack: boolean;
|
|
7723
7719
|
}> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new () => {
|
|
7724
7720
|
$props: SlotsToProps<OverlaySlots>;
|
|
7725
7721
|
});
|
|
@@ -8027,6 +8023,7 @@ declare const VDialog: {
|
|
|
8027
8023
|
noClickAnimation: boolean;
|
|
8028
8024
|
persistent: boolean;
|
|
8029
8025
|
scrim: string | boolean;
|
|
8026
|
+
_disableGlobalStack: boolean;
|
|
8030
8027
|
}> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
|
|
8031
8028
|
transition: {
|
|
8032
8029
|
type: vue.PropType<string | boolean | (vue.TransitionProps & {
|
|
@@ -8102,11 +8099,12 @@ declare const VDialog: {
|
|
|
8102
8099
|
type: (StringConstructor | NumberConstructor)[];
|
|
8103
8100
|
default: number;
|
|
8104
8101
|
};
|
|
8102
|
+
_disableGlobalStack: BooleanConstructor;
|
|
8105
8103
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
8106
8104
|
onAfterLeave?: (() => any) | undefined;
|
|
8107
8105
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
8108
8106
|
"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">;
|
|
8107
|
+
} & 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
8108
|
$attrs: {
|
|
8111
8109
|
[x: string]: unknown;
|
|
8112
8110
|
};
|
|
@@ -8195,6 +8193,7 @@ declare const VDialog: {
|
|
|
8195
8193
|
type: (StringConstructor | NumberConstructor)[];
|
|
8196
8194
|
default: number;
|
|
8197
8195
|
};
|
|
8196
|
+
_disableGlobalStack: BooleanConstructor;
|
|
8198
8197
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
8199
8198
|
onAfterLeave?: (() => any) | undefined;
|
|
8200
8199
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -8235,6 +8234,7 @@ declare const VDialog: {
|
|
|
8235
8234
|
noClickAnimation: boolean;
|
|
8236
8235
|
persistent: boolean;
|
|
8237
8236
|
scrim: string | boolean;
|
|
8237
|
+
_disableGlobalStack: boolean;
|
|
8238
8238
|
}> & {
|
|
8239
8239
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
8240
8240
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -8330,6 +8330,7 @@ declare const VDialog: {
|
|
|
8330
8330
|
type: (StringConstructor | NumberConstructor)[];
|
|
8331
8331
|
default: number;
|
|
8332
8332
|
};
|
|
8333
|
+
_disableGlobalStack: BooleanConstructor;
|
|
8333
8334
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
8334
8335
|
onAfterLeave?: (() => any) | undefined;
|
|
8335
8336
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -8370,7 +8371,7 @@ declare const VDialog: {
|
|
|
8370
8371
|
props: Record<string, any>;
|
|
8371
8372
|
}) => vue.VNodeChild) | undefined;
|
|
8372
8373
|
};
|
|
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<{
|
|
8374
|
+
}, "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
8375
|
'update:modelValue': (value: boolean) => boolean;
|
|
8375
8376
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">, string, {
|
|
8376
8377
|
absolute: boolean;
|
|
@@ -8565,6 +8566,7 @@ declare const VDialog: {
|
|
|
8565
8566
|
noClickAnimation: boolean;
|
|
8566
8567
|
persistent: boolean;
|
|
8567
8568
|
scrim: string | boolean;
|
|
8569
|
+
_disableGlobalStack: boolean;
|
|
8568
8570
|
}> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
|
|
8569
8571
|
transition: {
|
|
8570
8572
|
type: vue.PropType<string | boolean | (vue.TransitionProps & {
|
|
@@ -8640,11 +8642,12 @@ declare const VDialog: {
|
|
|
8640
8642
|
type: (StringConstructor | NumberConstructor)[];
|
|
8641
8643
|
default: number;
|
|
8642
8644
|
};
|
|
8645
|
+
_disableGlobalStack: BooleanConstructor;
|
|
8643
8646
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
8644
8647
|
onAfterLeave?: (() => any) | undefined;
|
|
8645
8648
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
8646
8649
|
"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">;
|
|
8650
|
+
} & 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
8651
|
$attrs: {
|
|
8649
8652
|
[x: string]: unknown;
|
|
8650
8653
|
};
|
|
@@ -8733,6 +8736,7 @@ declare const VDialog: {
|
|
|
8733
8736
|
type: (StringConstructor | NumberConstructor)[];
|
|
8734
8737
|
default: number;
|
|
8735
8738
|
};
|
|
8739
|
+
_disableGlobalStack: BooleanConstructor;
|
|
8736
8740
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
8737
8741
|
onAfterLeave?: (() => any) | undefined;
|
|
8738
8742
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -8773,6 +8777,7 @@ declare const VDialog: {
|
|
|
8773
8777
|
noClickAnimation: boolean;
|
|
8774
8778
|
persistent: boolean;
|
|
8775
8779
|
scrim: string | boolean;
|
|
8780
|
+
_disableGlobalStack: boolean;
|
|
8776
8781
|
}> & {
|
|
8777
8782
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
8778
8783
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -8868,6 +8873,7 @@ declare const VDialog: {
|
|
|
8868
8873
|
type: (StringConstructor | NumberConstructor)[];
|
|
8869
8874
|
default: number;
|
|
8870
8875
|
};
|
|
8876
|
+
_disableGlobalStack: BooleanConstructor;
|
|
8871
8877
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
8872
8878
|
onAfterLeave?: (() => any) | undefined;
|
|
8873
8879
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -8908,7 +8914,7 @@ declare const VDialog: {
|
|
|
8908
8914
|
props: Record<string, any>;
|
|
8909
8915
|
}) => vue.VNodeChild) | undefined;
|
|
8910
8916
|
};
|
|
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;
|
|
8917
|
+
}, "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
8918
|
__isFragment?: undefined;
|
|
8913
8919
|
__isTeleport?: undefined;
|
|
8914
8920
|
__isSuspense?: undefined;
|
|
@@ -9051,6 +9057,7 @@ declare const VDialog: {
|
|
|
9051
9057
|
noClickAnimation: boolean;
|
|
9052
9058
|
persistent: boolean;
|
|
9053
9059
|
scrim: string | boolean;
|
|
9060
|
+
_disableGlobalStack: boolean;
|
|
9054
9061
|
}> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
|
|
9055
9062
|
transition: {
|
|
9056
9063
|
type: vue.PropType<string | boolean | (vue.TransitionProps & {
|
|
@@ -9126,11 +9133,12 @@ declare const VDialog: {
|
|
|
9126
9133
|
type: (StringConstructor | NumberConstructor)[];
|
|
9127
9134
|
default: number;
|
|
9128
9135
|
};
|
|
9136
|
+
_disableGlobalStack: BooleanConstructor;
|
|
9129
9137
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
9130
9138
|
onAfterLeave?: (() => any) | undefined;
|
|
9131
9139
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
9132
9140
|
"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">;
|
|
9141
|
+
} & 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
9142
|
$attrs: {
|
|
9135
9143
|
[x: string]: unknown;
|
|
9136
9144
|
};
|
|
@@ -9219,6 +9227,7 @@ declare const VDialog: {
|
|
|
9219
9227
|
type: (StringConstructor | NumberConstructor)[];
|
|
9220
9228
|
default: number;
|
|
9221
9229
|
};
|
|
9230
|
+
_disableGlobalStack: BooleanConstructor;
|
|
9222
9231
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
9223
9232
|
onAfterLeave?: (() => any) | undefined;
|
|
9224
9233
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -9259,6 +9268,7 @@ declare const VDialog: {
|
|
|
9259
9268
|
noClickAnimation: boolean;
|
|
9260
9269
|
persistent: boolean;
|
|
9261
9270
|
scrim: string | boolean;
|
|
9271
|
+
_disableGlobalStack: boolean;
|
|
9262
9272
|
}> & {
|
|
9263
9273
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
9264
9274
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -9354,6 +9364,7 @@ declare const VDialog: {
|
|
|
9354
9364
|
type: (StringConstructor | NumberConstructor)[];
|
|
9355
9365
|
default: number;
|
|
9356
9366
|
};
|
|
9367
|
+
_disableGlobalStack: BooleanConstructor;
|
|
9357
9368
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
9358
9369
|
onAfterLeave?: (() => any) | undefined;
|
|
9359
9370
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -9394,7 +9405,7 @@ declare const VDialog: {
|
|
|
9394
9405
|
props: Record<string, any>;
|
|
9395
9406
|
}) => vue.VNodeChild) | undefined;
|
|
9396
9407
|
};
|
|
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<{
|
|
9408
|
+
}, "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
9409
|
'update:modelValue': (value: boolean) => boolean;
|
|
9399
9410
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">, string, {
|
|
9400
9411
|
absolute: boolean;
|
|
@@ -9508,8 +9519,8 @@ declare const VExpansionPanels: vue.DefineComponent<{
|
|
|
9508
9519
|
multiple: boolean;
|
|
9509
9520
|
readonly: boolean;
|
|
9510
9521
|
tag: string;
|
|
9511
|
-
modelValue: any;
|
|
9512
9522
|
variant: "default" | "inset" | "accordion" | "popout";
|
|
9523
|
+
modelValue: any;
|
|
9513
9524
|
}>;
|
|
9514
9525
|
declare type VExpansionPanels = InstanceType<typeof VExpansionPanels>;
|
|
9515
9526
|
|
|
@@ -9664,7 +9675,7 @@ declare const VFieldLabel: vue.DefineComponent<{
|
|
|
9664
9675
|
declare type VFieldLabel = InstanceType<typeof VFieldLabel>;
|
|
9665
9676
|
|
|
9666
9677
|
declare const VFileInput: vue.DefineComponent<{
|
|
9667
|
-
loading: BooleanConstructor;
|
|
9678
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
9668
9679
|
theme: StringConstructor;
|
|
9669
9680
|
appendInnerIcon: PropType<IconValue>;
|
|
9670
9681
|
bgColor: StringConstructor;
|
|
@@ -9983,7 +9994,7 @@ declare const VFileInput: vue.DefineComponent<{
|
|
|
9983
9994
|
'click:control': (e: MouseEvent) => true;
|
|
9984
9995
|
'update:modelValue': (files: File[]) => true;
|
|
9985
9996
|
}, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
|
|
9986
|
-
loading: BooleanConstructor;
|
|
9997
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
9987
9998
|
theme: StringConstructor;
|
|
9988
9999
|
appendInnerIcon: PropType<IconValue>;
|
|
9989
10000
|
bgColor: StringConstructor;
|
|
@@ -10085,15 +10096,14 @@ declare const VFileInput: vue.DefineComponent<{
|
|
|
10085
10096
|
error: boolean;
|
|
10086
10097
|
active: boolean;
|
|
10087
10098
|
direction: "horizontal" | "vertical";
|
|
10088
|
-
loading: boolean;
|
|
10089
10099
|
disabled: boolean;
|
|
10090
10100
|
multiple: boolean;
|
|
10091
10101
|
readonly: boolean;
|
|
10092
10102
|
messages: string | string[];
|
|
10093
10103
|
counter: boolean;
|
|
10094
10104
|
density: Density;
|
|
10095
|
-
modelValue: File[];
|
|
10096
10105
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo";
|
|
10106
|
+
modelValue: File[];
|
|
10097
10107
|
prependIcon: (string & {}) | IconValue;
|
|
10098
10108
|
clearIcon: IconValue;
|
|
10099
10109
|
focused: boolean;
|
|
@@ -12485,6 +12495,7 @@ declare const VMenu: {
|
|
|
12485
12495
|
noClickAnimation: boolean;
|
|
12486
12496
|
persistent: boolean;
|
|
12487
12497
|
scrim: string | boolean;
|
|
12498
|
+
_disableGlobalStack: boolean;
|
|
12488
12499
|
}> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
|
|
12489
12500
|
transition: {
|
|
12490
12501
|
type: vue.PropType<string | boolean | (vue.TransitionProps & {
|
|
@@ -12560,11 +12571,12 @@ declare const VMenu: {
|
|
|
12560
12571
|
type: (StringConstructor | NumberConstructor)[];
|
|
12561
12572
|
default: number;
|
|
12562
12573
|
};
|
|
12574
|
+
_disableGlobalStack: BooleanConstructor;
|
|
12563
12575
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
12564
12576
|
onAfterLeave?: (() => any) | undefined;
|
|
12565
12577
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
12566
12578
|
"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">;
|
|
12579
|
+
} & 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
12580
|
$attrs: {
|
|
12569
12581
|
[x: string]: unknown;
|
|
12570
12582
|
};
|
|
@@ -12653,6 +12665,7 @@ declare const VMenu: {
|
|
|
12653
12665
|
type: (StringConstructor | NumberConstructor)[];
|
|
12654
12666
|
default: number;
|
|
12655
12667
|
};
|
|
12668
|
+
_disableGlobalStack: BooleanConstructor;
|
|
12656
12669
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
12657
12670
|
onAfterLeave?: (() => any) | undefined;
|
|
12658
12671
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -12693,6 +12706,7 @@ declare const VMenu: {
|
|
|
12693
12706
|
noClickAnimation: boolean;
|
|
12694
12707
|
persistent: boolean;
|
|
12695
12708
|
scrim: string | boolean;
|
|
12709
|
+
_disableGlobalStack: boolean;
|
|
12696
12710
|
}> & {
|
|
12697
12711
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
12698
12712
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -12788,6 +12802,7 @@ declare const VMenu: {
|
|
|
12788
12802
|
type: (StringConstructor | NumberConstructor)[];
|
|
12789
12803
|
default: number;
|
|
12790
12804
|
};
|
|
12805
|
+
_disableGlobalStack: BooleanConstructor;
|
|
12791
12806
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
12792
12807
|
onAfterLeave?: (() => any) | undefined;
|
|
12793
12808
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -12828,7 +12843,7 @@ declare const VMenu: {
|
|
|
12828
12843
|
props: Record<string, any>;
|
|
12829
12844
|
}) => vue.VNodeChild) | undefined;
|
|
12830
12845
|
};
|
|
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<{
|
|
12846
|
+
}, "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
12847
|
'update:modelValue': (value: boolean) => boolean;
|
|
12833
12848
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">, string, {
|
|
12834
12849
|
location: Anchor;
|
|
@@ -13030,6 +13045,7 @@ declare const VMenu: {
|
|
|
13030
13045
|
noClickAnimation: boolean;
|
|
13031
13046
|
persistent: boolean;
|
|
13032
13047
|
scrim: string | boolean;
|
|
13048
|
+
_disableGlobalStack: boolean;
|
|
13033
13049
|
}> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
|
|
13034
13050
|
transition: {
|
|
13035
13051
|
type: vue.PropType<string | boolean | (vue.TransitionProps & {
|
|
@@ -13105,11 +13121,12 @@ declare const VMenu: {
|
|
|
13105
13121
|
type: (StringConstructor | NumberConstructor)[];
|
|
13106
13122
|
default: number;
|
|
13107
13123
|
};
|
|
13124
|
+
_disableGlobalStack: BooleanConstructor;
|
|
13108
13125
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
13109
13126
|
onAfterLeave?: (() => any) | undefined;
|
|
13110
13127
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
13111
13128
|
"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">;
|
|
13129
|
+
} & 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
13130
|
$attrs: {
|
|
13114
13131
|
[x: string]: unknown;
|
|
13115
13132
|
};
|
|
@@ -13198,6 +13215,7 @@ declare const VMenu: {
|
|
|
13198
13215
|
type: (StringConstructor | NumberConstructor)[];
|
|
13199
13216
|
default: number;
|
|
13200
13217
|
};
|
|
13218
|
+
_disableGlobalStack: BooleanConstructor;
|
|
13201
13219
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
13202
13220
|
onAfterLeave?: (() => any) | undefined;
|
|
13203
13221
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -13238,6 +13256,7 @@ declare const VMenu: {
|
|
|
13238
13256
|
noClickAnimation: boolean;
|
|
13239
13257
|
persistent: boolean;
|
|
13240
13258
|
scrim: string | boolean;
|
|
13259
|
+
_disableGlobalStack: boolean;
|
|
13241
13260
|
}> & {
|
|
13242
13261
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
13243
13262
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -13333,6 +13352,7 @@ declare const VMenu: {
|
|
|
13333
13352
|
type: (StringConstructor | NumberConstructor)[];
|
|
13334
13353
|
default: number;
|
|
13335
13354
|
};
|
|
13355
|
+
_disableGlobalStack: BooleanConstructor;
|
|
13336
13356
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
13337
13357
|
onAfterLeave?: (() => any) | undefined;
|
|
13338
13358
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -13373,7 +13393,7 @@ declare const VMenu: {
|
|
|
13373
13393
|
props: Record<string, any>;
|
|
13374
13394
|
}) => vue.VNodeChild) | undefined;
|
|
13375
13395
|
};
|
|
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;
|
|
13396
|
+
}, "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
13397
|
__isFragment?: undefined;
|
|
13378
13398
|
__isTeleport?: undefined;
|
|
13379
13399
|
__isSuspense?: undefined;
|
|
@@ -13525,6 +13545,7 @@ declare const VMenu: {
|
|
|
13525
13545
|
noClickAnimation: boolean;
|
|
13526
13546
|
persistent: boolean;
|
|
13527
13547
|
scrim: string | boolean;
|
|
13548
|
+
_disableGlobalStack: boolean;
|
|
13528
13549
|
}> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
|
|
13529
13550
|
transition: {
|
|
13530
13551
|
type: vue.PropType<string | boolean | (vue.TransitionProps & {
|
|
@@ -13600,11 +13621,12 @@ declare const VMenu: {
|
|
|
13600
13621
|
type: (StringConstructor | NumberConstructor)[];
|
|
13601
13622
|
default: number;
|
|
13602
13623
|
};
|
|
13624
|
+
_disableGlobalStack: BooleanConstructor;
|
|
13603
13625
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
13604
13626
|
onAfterLeave?: (() => any) | undefined;
|
|
13605
13627
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
13606
13628
|
"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">;
|
|
13629
|
+
} & 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
13630
|
$attrs: {
|
|
13609
13631
|
[x: string]: unknown;
|
|
13610
13632
|
};
|
|
@@ -13693,6 +13715,7 @@ declare const VMenu: {
|
|
|
13693
13715
|
type: (StringConstructor | NumberConstructor)[];
|
|
13694
13716
|
default: number;
|
|
13695
13717
|
};
|
|
13718
|
+
_disableGlobalStack: BooleanConstructor;
|
|
13696
13719
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
13697
13720
|
onAfterLeave?: (() => any) | undefined;
|
|
13698
13721
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -13733,6 +13756,7 @@ declare const VMenu: {
|
|
|
13733
13756
|
noClickAnimation: boolean;
|
|
13734
13757
|
persistent: boolean;
|
|
13735
13758
|
scrim: string | boolean;
|
|
13759
|
+
_disableGlobalStack: boolean;
|
|
13736
13760
|
}> & {
|
|
13737
13761
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
13738
13762
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -13828,6 +13852,7 @@ declare const VMenu: {
|
|
|
13828
13852
|
type: (StringConstructor | NumberConstructor)[];
|
|
13829
13853
|
default: number;
|
|
13830
13854
|
};
|
|
13855
|
+
_disableGlobalStack: BooleanConstructor;
|
|
13831
13856
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
13832
13857
|
onAfterLeave?: (() => any) | undefined;
|
|
13833
13858
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -13868,7 +13893,7 @@ declare const VMenu: {
|
|
|
13868
13893
|
props: Record<string, any>;
|
|
13869
13894
|
}) => vue.VNodeChild) | undefined;
|
|
13870
13895
|
};
|
|
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<{
|
|
13896
|
+
}, "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
13897
|
'update:modelValue': (value: boolean) => boolean;
|
|
13873
13898
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">, string, {
|
|
13874
13899
|
location: Anchor;
|
|
@@ -14511,8 +14536,8 @@ declare const VPagination: vue.DefineComponent<{
|
|
|
14511
14536
|
ellipsis: string;
|
|
14512
14537
|
rounded: string | number | boolean;
|
|
14513
14538
|
density: Density;
|
|
14514
|
-
modelValue: number;
|
|
14515
14539
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
14540
|
+
modelValue: number;
|
|
14516
14541
|
nextIcon: IconValue;
|
|
14517
14542
|
prevIcon: IconValue;
|
|
14518
14543
|
firstIcon: IconValue;
|
|
@@ -15561,7 +15586,6 @@ declare const VSelect: {
|
|
|
15561
15586
|
target: PropType<HTMLElement>;
|
|
15562
15587
|
}>>, {}>;
|
|
15563
15588
|
};
|
|
15564
|
-
loading: boolean;
|
|
15565
15589
|
menu: boolean;
|
|
15566
15590
|
autofocus: boolean;
|
|
15567
15591
|
eager: boolean;
|
|
@@ -15634,7 +15658,7 @@ declare const VSelect: {
|
|
|
15634
15658
|
default: string;
|
|
15635
15659
|
validator: (v: any) => boolean;
|
|
15636
15660
|
};
|
|
15637
|
-
loading: BooleanConstructor;
|
|
15661
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
15638
15662
|
label: StringConstructor;
|
|
15639
15663
|
prefix: StringConstructor;
|
|
15640
15664
|
autofocus: BooleanConstructor;
|
|
@@ -15652,15 +15676,15 @@ declare const VSelect: {
|
|
|
15652
15676
|
default: string;
|
|
15653
15677
|
validator: (v: any) => boolean;
|
|
15654
15678
|
};
|
|
15655
|
-
modelValue: {
|
|
15656
|
-
type: PropType<any>;
|
|
15657
|
-
default: any;
|
|
15658
|
-
};
|
|
15659
15679
|
variant: {
|
|
15660
15680
|
type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
15661
15681
|
default: string;
|
|
15662
15682
|
validator: (v: any) => boolean;
|
|
15663
15683
|
};
|
|
15684
|
+
modelValue: {
|
|
15685
|
+
type: PropType<any>;
|
|
15686
|
+
default: any;
|
|
15687
|
+
};
|
|
15664
15688
|
bgColor: StringConstructor;
|
|
15665
15689
|
prependIcon: PropType<IconValue>;
|
|
15666
15690
|
appendIcon: PropType<IconValue>;
|
|
@@ -15920,7 +15944,7 @@ declare const VSelect: {
|
|
|
15920
15944
|
openOnClear: BooleanConstructor;
|
|
15921
15945
|
}, "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
15946
|
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
15923
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "type" | "error" | "active" | "direction" | "transition" | "
|
|
15947
|
+
} & 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" | "itemTitle" | "itemValue" | "itemChildren" | "itemProps" | "chips" | "closableChips" | "hideNoData" | "hideSelected" | "menuIcon" | "openOnClear">;
|
|
15924
15948
|
$attrs: {
|
|
15925
15949
|
[x: string]: unknown;
|
|
15926
15950
|
};
|
|
@@ -15976,7 +16000,7 @@ declare const VSelect: {
|
|
|
15976
16000
|
default: string;
|
|
15977
16001
|
validator: (v: any) => boolean;
|
|
15978
16002
|
};
|
|
15979
|
-
loading: BooleanConstructor;
|
|
16003
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
15980
16004
|
label: StringConstructor;
|
|
15981
16005
|
prefix: StringConstructor;
|
|
15982
16006
|
autofocus: BooleanConstructor;
|
|
@@ -15994,15 +16018,15 @@ declare const VSelect: {
|
|
|
15994
16018
|
default: string;
|
|
15995
16019
|
validator: (v: any) => boolean;
|
|
15996
16020
|
};
|
|
15997
|
-
modelValue: {
|
|
15998
|
-
type: PropType<any>;
|
|
15999
|
-
default: any;
|
|
16000
|
-
};
|
|
16001
16021
|
variant: {
|
|
16002
16022
|
type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
16003
16023
|
default: string;
|
|
16004
16024
|
validator: (v: any) => boolean;
|
|
16005
16025
|
};
|
|
16026
|
+
modelValue: {
|
|
16027
|
+
type: PropType<any>;
|
|
16028
|
+
default: any;
|
|
16029
|
+
};
|
|
16006
16030
|
bgColor: StringConstructor;
|
|
16007
16031
|
prependIcon: PropType<IconValue>;
|
|
16008
16032
|
appendIcon: PropType<IconValue>;
|
|
@@ -16285,7 +16309,6 @@ declare const VSelect: {
|
|
|
16285
16309
|
target: PropType<HTMLElement>;
|
|
16286
16310
|
}>>, {}>;
|
|
16287
16311
|
};
|
|
16288
|
-
loading: boolean;
|
|
16289
16312
|
menu: boolean;
|
|
16290
16313
|
autofocus: boolean;
|
|
16291
16314
|
eager: boolean;
|
|
@@ -16378,7 +16401,7 @@ declare const VSelect: {
|
|
|
16378
16401
|
default: string;
|
|
16379
16402
|
validator: (v: any) => boolean;
|
|
16380
16403
|
};
|
|
16381
|
-
loading: BooleanConstructor;
|
|
16404
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
16382
16405
|
label: StringConstructor;
|
|
16383
16406
|
prefix: StringConstructor;
|
|
16384
16407
|
autofocus: BooleanConstructor;
|
|
@@ -16396,15 +16419,15 @@ declare const VSelect: {
|
|
|
16396
16419
|
default: string;
|
|
16397
16420
|
validator: (v: any) => boolean;
|
|
16398
16421
|
};
|
|
16399
|
-
modelValue: {
|
|
16400
|
-
type: PropType<any>;
|
|
16401
|
-
default: any;
|
|
16402
|
-
};
|
|
16403
16422
|
variant: {
|
|
16404
16423
|
type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
16405
16424
|
default: string;
|
|
16406
16425
|
validator: (v: any) => boolean;
|
|
16407
16426
|
};
|
|
16427
|
+
modelValue: {
|
|
16428
|
+
type: PropType<any>;
|
|
16429
|
+
default: any;
|
|
16430
|
+
};
|
|
16408
16431
|
bgColor: StringConstructor;
|
|
16409
16432
|
prependIcon: PropType<IconValue>;
|
|
16410
16433
|
appendIcon: PropType<IconValue>;
|
|
@@ -16715,7 +16738,7 @@ declare const VSelect: {
|
|
|
16715
16738
|
default: string;
|
|
16716
16739
|
validator: (v: any) => boolean;
|
|
16717
16740
|
};
|
|
16718
|
-
loading: BooleanConstructor;
|
|
16741
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
16719
16742
|
label: StringConstructor;
|
|
16720
16743
|
prefix: StringConstructor;
|
|
16721
16744
|
autofocus: BooleanConstructor;
|
|
@@ -16733,15 +16756,15 @@ declare const VSelect: {
|
|
|
16733
16756
|
default: string;
|
|
16734
16757
|
validator: (v: any) => boolean;
|
|
16735
16758
|
};
|
|
16736
|
-
modelValue: {
|
|
16737
|
-
type: PropType<any>;
|
|
16738
|
-
default: any;
|
|
16739
|
-
};
|
|
16740
16759
|
variant: {
|
|
16741
16760
|
type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo">;
|
|
16742
16761
|
default: string;
|
|
16743
16762
|
validator: (v: any) => boolean;
|
|
16744
16763
|
};
|
|
16764
|
+
modelValue: {
|
|
16765
|
+
type: PropType<any>;
|
|
16766
|
+
default: any;
|
|
16767
|
+
};
|
|
16745
16768
|
bgColor: StringConstructor;
|
|
16746
16769
|
prependIcon: PropType<IconValue>;
|
|
16747
16770
|
appendIcon: PropType<IconValue>;
|
|
@@ -17024,7 +17047,6 @@ declare const VSelect: {
|
|
|
17024
17047
|
target: PropType<HTMLElement>;
|
|
17025
17048
|
}>>, {}>;
|
|
17026
17049
|
};
|
|
17027
|
-
loading: boolean;
|
|
17028
17050
|
menu: boolean;
|
|
17029
17051
|
autofocus: boolean;
|
|
17030
17052
|
eager: boolean;
|
|
@@ -18164,8 +18186,8 @@ declare const VSnackbar: {
|
|
|
18164
18186
|
timeout: string | number;
|
|
18165
18187
|
vertical: boolean;
|
|
18166
18188
|
rounded: string | number | boolean;
|
|
18167
|
-
modelValue: boolean;
|
|
18168
18189
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
18190
|
+
modelValue: boolean;
|
|
18169
18191
|
activatorProps: Record<string, any>;
|
|
18170
18192
|
openOnClick: boolean;
|
|
18171
18193
|
openOnHover: boolean;
|
|
@@ -18270,7 +18292,7 @@ declare const VSnackbar: {
|
|
|
18270
18292
|
vertical: BooleanConstructor;
|
|
18271
18293
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator" | "v-slot:actions">>> & {
|
|
18272
18294
|
"onUpdate:modelValue"?: ((v: boolean) => any) | undefined;
|
|
18273
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "absolute" | "location" | "origin" | "transition" | "zIndex" | "eager" | "disabled" | "timeout" | "vertical" | "rounded" | "
|
|
18295
|
+
} & 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
18296
|
$attrs: {
|
|
18275
18297
|
[x: string]: unknown;
|
|
18276
18298
|
};
|
|
@@ -18405,6 +18427,7 @@ declare const VSnackbar: {
|
|
|
18405
18427
|
noClickAnimation: boolean;
|
|
18406
18428
|
persistent: boolean;
|
|
18407
18429
|
scrim: string | boolean;
|
|
18430
|
+
_disableGlobalStack: boolean;
|
|
18408
18431
|
}> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
|
|
18409
18432
|
transition: {
|
|
18410
18433
|
type: vue.PropType<string | boolean | (vue.TransitionProps & {
|
|
@@ -18480,11 +18503,12 @@ declare const VSnackbar: {
|
|
|
18480
18503
|
type: (StringConstructor | NumberConstructor)[];
|
|
18481
18504
|
default: number;
|
|
18482
18505
|
};
|
|
18506
|
+
_disableGlobalStack: BooleanConstructor;
|
|
18483
18507
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
18484
18508
|
onAfterLeave?: (() => any) | undefined;
|
|
18485
18509
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
18486
18510
|
"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">;
|
|
18511
|
+
} & 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
18512
|
$attrs: {
|
|
18489
18513
|
[x: string]: unknown;
|
|
18490
18514
|
};
|
|
@@ -18573,6 +18597,7 @@ declare const VSnackbar: {
|
|
|
18573
18597
|
type: (StringConstructor | NumberConstructor)[];
|
|
18574
18598
|
default: number;
|
|
18575
18599
|
};
|
|
18600
|
+
_disableGlobalStack: BooleanConstructor;
|
|
18576
18601
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
18577
18602
|
onAfterLeave?: (() => any) | undefined;
|
|
18578
18603
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -18613,6 +18638,7 @@ declare const VSnackbar: {
|
|
|
18613
18638
|
noClickAnimation: boolean;
|
|
18614
18639
|
persistent: boolean;
|
|
18615
18640
|
scrim: string | boolean;
|
|
18641
|
+
_disableGlobalStack: boolean;
|
|
18616
18642
|
}> & {
|
|
18617
18643
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
18618
18644
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -18708,6 +18734,7 @@ declare const VSnackbar: {
|
|
|
18708
18734
|
type: (StringConstructor | NumberConstructor)[];
|
|
18709
18735
|
default: number;
|
|
18710
18736
|
};
|
|
18737
|
+
_disableGlobalStack: BooleanConstructor;
|
|
18711
18738
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
18712
18739
|
onAfterLeave?: (() => any) | undefined;
|
|
18713
18740
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -18748,7 +18775,7 @@ declare const VSnackbar: {
|
|
|
18748
18775
|
props: Record<string, any>;
|
|
18749
18776
|
}) => vue.VNodeChild) | undefined;
|
|
18750
18777
|
};
|
|
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<{
|
|
18778
|
+
}, "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
18779
|
'update:modelValue': (v: boolean) => boolean;
|
|
18753
18780
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator" | "v-slot:actions">, string, {
|
|
18754
18781
|
absolute: boolean;
|
|
@@ -18763,8 +18790,8 @@ declare const VSnackbar: {
|
|
|
18763
18790
|
timeout: string | number;
|
|
18764
18791
|
vertical: boolean;
|
|
18765
18792
|
rounded: string | number | boolean;
|
|
18766
|
-
modelValue: boolean;
|
|
18767
18793
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
18794
|
+
modelValue: boolean;
|
|
18768
18795
|
activatorProps: Record<string, any>;
|
|
18769
18796
|
openOnClick: boolean;
|
|
18770
18797
|
openOnHover: boolean;
|
|
@@ -18917,6 +18944,7 @@ declare const VSnackbar: {
|
|
|
18917
18944
|
noClickAnimation: boolean;
|
|
18918
18945
|
persistent: boolean;
|
|
18919
18946
|
scrim: string | boolean;
|
|
18947
|
+
_disableGlobalStack: boolean;
|
|
18920
18948
|
}> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
|
|
18921
18949
|
transition: {
|
|
18922
18950
|
type: vue.PropType<string | boolean | (vue.TransitionProps & {
|
|
@@ -18992,11 +19020,12 @@ declare const VSnackbar: {
|
|
|
18992
19020
|
type: (StringConstructor | NumberConstructor)[];
|
|
18993
19021
|
default: number;
|
|
18994
19022
|
};
|
|
19023
|
+
_disableGlobalStack: BooleanConstructor;
|
|
18995
19024
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
18996
19025
|
onAfterLeave?: (() => any) | undefined;
|
|
18997
19026
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
18998
19027
|
"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">;
|
|
19028
|
+
} & 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
19029
|
$attrs: {
|
|
19001
19030
|
[x: string]: unknown;
|
|
19002
19031
|
};
|
|
@@ -19085,6 +19114,7 @@ declare const VSnackbar: {
|
|
|
19085
19114
|
type: (StringConstructor | NumberConstructor)[];
|
|
19086
19115
|
default: number;
|
|
19087
19116
|
};
|
|
19117
|
+
_disableGlobalStack: BooleanConstructor;
|
|
19088
19118
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
19089
19119
|
onAfterLeave?: (() => any) | undefined;
|
|
19090
19120
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -19125,6 +19155,7 @@ declare const VSnackbar: {
|
|
|
19125
19155
|
noClickAnimation: boolean;
|
|
19126
19156
|
persistent: boolean;
|
|
19127
19157
|
scrim: string | boolean;
|
|
19158
|
+
_disableGlobalStack: boolean;
|
|
19128
19159
|
}> & {
|
|
19129
19160
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
19130
19161
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -19220,6 +19251,7 @@ declare const VSnackbar: {
|
|
|
19220
19251
|
type: (StringConstructor | NumberConstructor)[];
|
|
19221
19252
|
default: number;
|
|
19222
19253
|
};
|
|
19254
|
+
_disableGlobalStack: BooleanConstructor;
|
|
19223
19255
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
19224
19256
|
onAfterLeave?: (() => any) | undefined;
|
|
19225
19257
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -19260,7 +19292,7 @@ declare const VSnackbar: {
|
|
|
19260
19292
|
props: Record<string, any>;
|
|
19261
19293
|
}) => vue.VNodeChild) | undefined;
|
|
19262
19294
|
};
|
|
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;
|
|
19295
|
+
}, "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
19296
|
__isFragment?: undefined;
|
|
19265
19297
|
__isTeleport?: undefined;
|
|
19266
19298
|
__isSuspense?: undefined;
|
|
@@ -19385,6 +19417,7 @@ declare const VSnackbar: {
|
|
|
19385
19417
|
noClickAnimation: boolean;
|
|
19386
19418
|
persistent: boolean;
|
|
19387
19419
|
scrim: string | boolean;
|
|
19420
|
+
_disableGlobalStack: boolean;
|
|
19388
19421
|
}> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
|
|
19389
19422
|
transition: {
|
|
19390
19423
|
type: vue.PropType<string | boolean | (vue.TransitionProps & {
|
|
@@ -19460,11 +19493,12 @@ declare const VSnackbar: {
|
|
|
19460
19493
|
type: (StringConstructor | NumberConstructor)[];
|
|
19461
19494
|
default: number;
|
|
19462
19495
|
};
|
|
19496
|
+
_disableGlobalStack: BooleanConstructor;
|
|
19463
19497
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
19464
19498
|
onAfterLeave?: (() => any) | undefined;
|
|
19465
19499
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
19466
19500
|
"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">;
|
|
19501
|
+
} & 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
19502
|
$attrs: {
|
|
19469
19503
|
[x: string]: unknown;
|
|
19470
19504
|
};
|
|
@@ -19553,6 +19587,7 @@ declare const VSnackbar: {
|
|
|
19553
19587
|
type: (StringConstructor | NumberConstructor)[];
|
|
19554
19588
|
default: number;
|
|
19555
19589
|
};
|
|
19590
|
+
_disableGlobalStack: BooleanConstructor;
|
|
19556
19591
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
19557
19592
|
onAfterLeave?: (() => any) | undefined;
|
|
19558
19593
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -19593,6 +19628,7 @@ declare const VSnackbar: {
|
|
|
19593
19628
|
noClickAnimation: boolean;
|
|
19594
19629
|
persistent: boolean;
|
|
19595
19630
|
scrim: string | boolean;
|
|
19631
|
+
_disableGlobalStack: boolean;
|
|
19596
19632
|
}> & {
|
|
19597
19633
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
19598
19634
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -19688,6 +19724,7 @@ declare const VSnackbar: {
|
|
|
19688
19724
|
type: (StringConstructor | NumberConstructor)[];
|
|
19689
19725
|
default: number;
|
|
19690
19726
|
};
|
|
19727
|
+
_disableGlobalStack: BooleanConstructor;
|
|
19691
19728
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
19692
19729
|
onAfterLeave?: (() => any) | undefined;
|
|
19693
19730
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -19728,7 +19765,7 @@ declare const VSnackbar: {
|
|
|
19728
19765
|
props: Record<string, any>;
|
|
19729
19766
|
}) => vue.VNodeChild) | undefined;
|
|
19730
19767
|
};
|
|
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<{
|
|
19768
|
+
}, "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
19769
|
'update:modelValue': (v: boolean) => boolean;
|
|
19733
19770
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator" | "v-slot:actions">, string, {
|
|
19734
19771
|
absolute: boolean;
|
|
@@ -19743,8 +19780,8 @@ declare const VSnackbar: {
|
|
|
19743
19780
|
timeout: string | number;
|
|
19744
19781
|
vertical: boolean;
|
|
19745
19782
|
rounded: string | number | boolean;
|
|
19746
|
-
modelValue: boolean;
|
|
19747
19783
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
19784
|
+
modelValue: boolean;
|
|
19748
19785
|
activatorProps: Record<string, any>;
|
|
19749
19786
|
openOnClick: boolean;
|
|
19750
19787
|
openOnHover: boolean;
|
|
@@ -20213,7 +20250,7 @@ declare const VTable: vue.DefineComponent<{
|
|
|
20213
20250
|
declare type VTable = InstanceType<typeof VTable>;
|
|
20214
20251
|
|
|
20215
20252
|
declare const VTextarea: vue.DefineComponent<{
|
|
20216
|
-
loading: BooleanConstructor;
|
|
20253
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
20217
20254
|
theme: StringConstructor;
|
|
20218
20255
|
appendInnerIcon: PropType<IconValue>;
|
|
20219
20256
|
bgColor: StringConstructor;
|
|
@@ -20525,7 +20562,7 @@ declare const VTextarea: vue.DefineComponent<{
|
|
|
20525
20562
|
'update:focused': (focused: boolean) => true;
|
|
20526
20563
|
'update:modelValue': (val: string) => true;
|
|
20527
20564
|
}, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
|
|
20528
|
-
loading: BooleanConstructor;
|
|
20565
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
20529
20566
|
theme: StringConstructor;
|
|
20530
20567
|
appendInnerIcon: PropType<IconValue>;
|
|
20531
20568
|
bgColor: StringConstructor;
|
|
@@ -20620,7 +20657,6 @@ declare const VTextarea: vue.DefineComponent<{
|
|
|
20620
20657
|
error: boolean;
|
|
20621
20658
|
active: boolean;
|
|
20622
20659
|
direction: "horizontal" | "vertical";
|
|
20623
|
-
loading: boolean;
|
|
20624
20660
|
autofocus: boolean;
|
|
20625
20661
|
disabled: boolean;
|
|
20626
20662
|
readonly: boolean;
|
|
@@ -20655,7 +20691,6 @@ declare const VTextField: {
|
|
|
20655
20691
|
error: boolean;
|
|
20656
20692
|
active: boolean;
|
|
20657
20693
|
direction: "horizontal" | "vertical";
|
|
20658
|
-
loading: boolean;
|
|
20659
20694
|
autofocus: boolean;
|
|
20660
20695
|
disabled: boolean;
|
|
20661
20696
|
readonly: boolean;
|
|
@@ -20675,7 +20710,7 @@ declare const VTextField: {
|
|
|
20675
20710
|
persistentPlaceholder: boolean;
|
|
20676
20711
|
persistentCounter: boolean;
|
|
20677
20712
|
}> & Omit<Readonly<ExtractPropTypes<Omit<{
|
|
20678
|
-
loading: BooleanConstructor;
|
|
20713
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
20679
20714
|
theme: StringConstructor;
|
|
20680
20715
|
appendInnerIcon: PropType<IconValue>;
|
|
20681
20716
|
bgColor: StringConstructor;
|
|
@@ -20759,7 +20794,7 @@ declare const VTextField: {
|
|
|
20759
20794
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
20760
20795
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
20761
20796
|
"onClick:input"?: ((e: MouseEvent) => any) | undefined;
|
|
20762
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "type" | "error" | "active" | "direction" | "
|
|
20797
|
+
} & 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
20798
|
$attrs: {
|
|
20764
20799
|
[x: string]: unknown;
|
|
20765
20800
|
};
|
|
@@ -20774,7 +20809,7 @@ declare const VTextField: {
|
|
|
20774
20809
|
$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
20810
|
$el: any;
|
|
20776
20811
|
$options: vue.ComponentOptionsBase<Readonly<ExtractPropTypes<Omit<{
|
|
20777
|
-
loading: BooleanConstructor;
|
|
20812
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
20778
20813
|
theme: StringConstructor;
|
|
20779
20814
|
appendInnerIcon: PropType<IconValue>;
|
|
20780
20815
|
bgColor: StringConstructor;
|
|
@@ -21086,7 +21121,6 @@ declare const VTextField: {
|
|
|
21086
21121
|
reverse: boolean;
|
|
21087
21122
|
error: boolean;
|
|
21088
21123
|
active: boolean;
|
|
21089
|
-
loading: boolean;
|
|
21090
21124
|
disabled: boolean;
|
|
21091
21125
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo";
|
|
21092
21126
|
clearIcon: IconValue;
|
|
@@ -21096,7 +21130,7 @@ declare const VTextField: {
|
|
|
21096
21130
|
persistentClear: boolean;
|
|
21097
21131
|
singleLine: boolean;
|
|
21098
21132
|
}> & Omit<Readonly<ExtractPropTypes<Omit<{
|
|
21099
|
-
loading: BooleanConstructor;
|
|
21133
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
21100
21134
|
theme: StringConstructor;
|
|
21101
21135
|
appendInnerIcon: PropType<IconValue>;
|
|
21102
21136
|
bgColor: StringConstructor;
|
|
@@ -21128,7 +21162,7 @@ declare const VTextField: {
|
|
|
21128
21162
|
}, "$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
21163
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
21130
21164
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
21131
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "error" | "active" | "
|
|
21165
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "error" | "active" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
21132
21166
|
$attrs: {
|
|
21133
21167
|
[x: string]: unknown;
|
|
21134
21168
|
};
|
|
@@ -21143,7 +21177,7 @@ declare const VTextField: {
|
|
|
21143
21177
|
$emit: ((event: "click:control", e: MouseEvent) => void) & ((event: "update:focused", focused: boolean) => void);
|
|
21144
21178
|
$el: any;
|
|
21145
21179
|
$options: vue.ComponentOptionsBase<Readonly<ExtractPropTypes<Omit<{
|
|
21146
|
-
loading: BooleanConstructor;
|
|
21180
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
21147
21181
|
theme: StringConstructor;
|
|
21148
21182
|
appendInnerIcon: PropType<IconValue>;
|
|
21149
21183
|
bgColor: StringConstructor;
|
|
@@ -21185,7 +21219,6 @@ declare const VTextField: {
|
|
|
21185
21219
|
reverse: boolean;
|
|
21186
21220
|
error: boolean;
|
|
21187
21221
|
active: boolean;
|
|
21188
|
-
loading: boolean;
|
|
21189
21222
|
disabled: boolean;
|
|
21190
21223
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo";
|
|
21191
21224
|
clearIcon: IconValue;
|
|
@@ -21215,7 +21248,7 @@ declare const VTextField: {
|
|
|
21215
21248
|
$nextTick: typeof nextTick;
|
|
21216
21249
|
$watch(source: string | Function, cb: Function, options?: vue.WatchOptions<boolean> | undefined): vue.WatchStopHandle;
|
|
21217
21250
|
} & Readonly<ExtractPropTypes<Omit<{
|
|
21218
|
-
loading: BooleanConstructor;
|
|
21251
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
21219
21252
|
theme: StringConstructor;
|
|
21220
21253
|
appendInnerIcon: PropType<IconValue>;
|
|
21221
21254
|
bgColor: StringConstructor;
|
|
@@ -21278,7 +21311,7 @@ declare const VTextField: {
|
|
|
21278
21311
|
"v-slot:loader"?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
21279
21312
|
"v-slot:default"?: false | ((args_0: VFieldSlot) => vue.VNodeChild) | undefined;
|
|
21280
21313
|
};
|
|
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" | "
|
|
21314
|
+
}, "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
21315
|
'click:control': (e: MouseEvent) => boolean;
|
|
21283
21316
|
'click:input': (e: MouseEvent) => boolean;
|
|
21284
21317
|
'update:focused': (focused: boolean) => boolean;
|
|
@@ -21289,7 +21322,6 @@ declare const VTextField: {
|
|
|
21289
21322
|
error: boolean;
|
|
21290
21323
|
active: boolean;
|
|
21291
21324
|
direction: "horizontal" | "vertical";
|
|
21292
|
-
loading: boolean;
|
|
21293
21325
|
autofocus: boolean;
|
|
21294
21326
|
disabled: boolean;
|
|
21295
21327
|
readonly: boolean;
|
|
@@ -21329,7 +21361,7 @@ declare const VTextField: {
|
|
|
21329
21361
|
$nextTick: typeof nextTick;
|
|
21330
21362
|
$watch(source: string | Function, cb: Function, options?: vue.WatchOptions<boolean> | undefined): vue.WatchStopHandle;
|
|
21331
21363
|
} & Readonly<ExtractPropTypes<Omit<{
|
|
21332
|
-
loading: BooleanConstructor;
|
|
21364
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
21333
21365
|
theme: StringConstructor;
|
|
21334
21366
|
appendInnerIcon: PropType<IconValue>;
|
|
21335
21367
|
bgColor: StringConstructor;
|
|
@@ -21641,7 +21673,6 @@ declare const VTextField: {
|
|
|
21641
21673
|
reverse: boolean;
|
|
21642
21674
|
error: boolean;
|
|
21643
21675
|
active: boolean;
|
|
21644
|
-
loading: boolean;
|
|
21645
21676
|
disabled: boolean;
|
|
21646
21677
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo";
|
|
21647
21678
|
clearIcon: IconValue;
|
|
@@ -21651,7 +21682,7 @@ declare const VTextField: {
|
|
|
21651
21682
|
persistentClear: boolean;
|
|
21652
21683
|
singleLine: boolean;
|
|
21653
21684
|
}> & Omit<Readonly<ExtractPropTypes<Omit<{
|
|
21654
|
-
loading: BooleanConstructor;
|
|
21685
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
21655
21686
|
theme: StringConstructor;
|
|
21656
21687
|
appendInnerIcon: PropType<IconValue>;
|
|
21657
21688
|
bgColor: StringConstructor;
|
|
@@ -21683,7 +21714,7 @@ declare const VTextField: {
|
|
|
21683
21714
|
}, "$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
21715
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
21685
21716
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
21686
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "error" | "active" | "
|
|
21717
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "error" | "active" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
21687
21718
|
$attrs: {
|
|
21688
21719
|
[x: string]: unknown;
|
|
21689
21720
|
};
|
|
@@ -21698,7 +21729,7 @@ declare const VTextField: {
|
|
|
21698
21729
|
$emit: ((event: "click:control", e: MouseEvent) => void) & ((event: "update:focused", focused: boolean) => void);
|
|
21699
21730
|
$el: any;
|
|
21700
21731
|
$options: vue.ComponentOptionsBase<Readonly<ExtractPropTypes<Omit<{
|
|
21701
|
-
loading: BooleanConstructor;
|
|
21732
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
21702
21733
|
theme: StringConstructor;
|
|
21703
21734
|
appendInnerIcon: PropType<IconValue>;
|
|
21704
21735
|
bgColor: StringConstructor;
|
|
@@ -21740,7 +21771,6 @@ declare const VTextField: {
|
|
|
21740
21771
|
reverse: boolean;
|
|
21741
21772
|
error: boolean;
|
|
21742
21773
|
active: boolean;
|
|
21743
|
-
loading: boolean;
|
|
21744
21774
|
disabled: boolean;
|
|
21745
21775
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo";
|
|
21746
21776
|
clearIcon: IconValue;
|
|
@@ -21770,7 +21800,7 @@ declare const VTextField: {
|
|
|
21770
21800
|
$nextTick: typeof nextTick;
|
|
21771
21801
|
$watch(source: string | Function, cb: Function, options?: vue.WatchOptions<boolean> | undefined): vue.WatchStopHandle;
|
|
21772
21802
|
} & Readonly<ExtractPropTypes<Omit<{
|
|
21773
|
-
loading: BooleanConstructor;
|
|
21803
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
21774
21804
|
theme: StringConstructor;
|
|
21775
21805
|
appendInnerIcon: PropType<IconValue>;
|
|
21776
21806
|
bgColor: StringConstructor;
|
|
@@ -21833,12 +21863,12 @@ declare const VTextField: {
|
|
|
21833
21863
|
"v-slot:loader"?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
21834
21864
|
"v-slot:default"?: false | ((args_0: VFieldSlot) => vue.VNodeChild) | undefined;
|
|
21835
21865
|
};
|
|
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" | "
|
|
21866
|
+
}, "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
21867
|
__isFragment?: undefined;
|
|
21838
21868
|
__isTeleport?: undefined;
|
|
21839
21869
|
__isSuspense?: undefined;
|
|
21840
21870
|
} & vue.ComponentOptionsBase<Readonly<ExtractPropTypes<Omit<{
|
|
21841
|
-
loading: BooleanConstructor;
|
|
21871
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
21842
21872
|
theme: StringConstructor;
|
|
21843
21873
|
appendInnerIcon: PropType<IconValue>;
|
|
21844
21874
|
bgColor: StringConstructor;
|
|
@@ -22150,7 +22180,6 @@ declare const VTextField: {
|
|
|
22150
22180
|
reverse: boolean;
|
|
22151
22181
|
error: boolean;
|
|
22152
22182
|
active: boolean;
|
|
22153
|
-
loading: boolean;
|
|
22154
22183
|
disabled: boolean;
|
|
22155
22184
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo";
|
|
22156
22185
|
clearIcon: IconValue;
|
|
@@ -22160,7 +22189,7 @@ declare const VTextField: {
|
|
|
22160
22189
|
persistentClear: boolean;
|
|
22161
22190
|
singleLine: boolean;
|
|
22162
22191
|
}> & Omit<Readonly<ExtractPropTypes<Omit<{
|
|
22163
|
-
loading: BooleanConstructor;
|
|
22192
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
22164
22193
|
theme: StringConstructor;
|
|
22165
22194
|
appendInnerIcon: PropType<IconValue>;
|
|
22166
22195
|
bgColor: StringConstructor;
|
|
@@ -22192,7 +22221,7 @@ declare const VTextField: {
|
|
|
22192
22221
|
}, "$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
22222
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
22194
22223
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
22195
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "error" | "active" | "
|
|
22224
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "reverse" | "error" | "active" | "disabled" | "variant" | "clearIcon" | "focused" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
|
22196
22225
|
$attrs: {
|
|
22197
22226
|
[x: string]: unknown;
|
|
22198
22227
|
};
|
|
@@ -22207,7 +22236,7 @@ declare const VTextField: {
|
|
|
22207
22236
|
$emit: ((event: "click:control", e: MouseEvent) => void) & ((event: "update:focused", focused: boolean) => void);
|
|
22208
22237
|
$el: any;
|
|
22209
22238
|
$options: vue.ComponentOptionsBase<Readonly<ExtractPropTypes<Omit<{
|
|
22210
|
-
loading: BooleanConstructor;
|
|
22239
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
22211
22240
|
theme: StringConstructor;
|
|
22212
22241
|
appendInnerIcon: PropType<IconValue>;
|
|
22213
22242
|
bgColor: StringConstructor;
|
|
@@ -22249,7 +22278,6 @@ declare const VTextField: {
|
|
|
22249
22278
|
reverse: boolean;
|
|
22250
22279
|
error: boolean;
|
|
22251
22280
|
active: boolean;
|
|
22252
|
-
loading: boolean;
|
|
22253
22281
|
disabled: boolean;
|
|
22254
22282
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo";
|
|
22255
22283
|
clearIcon: IconValue;
|
|
@@ -22279,7 +22307,7 @@ declare const VTextField: {
|
|
|
22279
22307
|
$nextTick: typeof nextTick;
|
|
22280
22308
|
$watch(source: string | Function, cb: Function, options?: vue.WatchOptions<boolean> | undefined): vue.WatchStopHandle;
|
|
22281
22309
|
} & Readonly<ExtractPropTypes<Omit<{
|
|
22282
|
-
loading: BooleanConstructor;
|
|
22310
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
22283
22311
|
theme: StringConstructor;
|
|
22284
22312
|
appendInnerIcon: PropType<IconValue>;
|
|
22285
22313
|
bgColor: StringConstructor;
|
|
@@ -22342,7 +22370,7 @@ declare const VTextField: {
|
|
|
22342
22370
|
"v-slot:loader"?: false | ((args_0: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
22343
22371
|
"v-slot:default"?: false | ((args_0: VFieldSlot) => vue.VNodeChild) | undefined;
|
|
22344
22372
|
};
|
|
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" | "
|
|
22373
|
+
}, "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
22374
|
'click:control': (e: MouseEvent) => boolean;
|
|
22347
22375
|
'click:input': (e: MouseEvent) => boolean;
|
|
22348
22376
|
'update:focused': (focused: boolean) => boolean;
|
|
@@ -22353,7 +22381,6 @@ declare const VTextField: {
|
|
|
22353
22381
|
error: boolean;
|
|
22354
22382
|
active: boolean;
|
|
22355
22383
|
direction: "horizontal" | "vertical";
|
|
22356
|
-
loading: boolean;
|
|
22357
22384
|
autofocus: boolean;
|
|
22358
22385
|
disabled: boolean;
|
|
22359
22386
|
readonly: boolean;
|
|
@@ -22959,6 +22986,7 @@ declare const VTooltip: {
|
|
|
22959
22986
|
noClickAnimation: boolean;
|
|
22960
22987
|
persistent: boolean;
|
|
22961
22988
|
scrim: string | boolean;
|
|
22989
|
+
_disableGlobalStack: boolean;
|
|
22962
22990
|
}> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
|
|
22963
22991
|
transition: {
|
|
22964
22992
|
type: vue.PropType<string | boolean | (vue.TransitionProps & {
|
|
@@ -23034,11 +23062,12 @@ declare const VTooltip: {
|
|
|
23034
23062
|
type: (StringConstructor | NumberConstructor)[];
|
|
23035
23063
|
default: number;
|
|
23036
23064
|
};
|
|
23065
|
+
_disableGlobalStack: BooleanConstructor;
|
|
23037
23066
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
23038
23067
|
onAfterLeave?: (() => any) | undefined;
|
|
23039
23068
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
23040
23069
|
"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">;
|
|
23070
|
+
} & 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
23071
|
$attrs: {
|
|
23043
23072
|
[x: string]: unknown;
|
|
23044
23073
|
};
|
|
@@ -23127,6 +23156,7 @@ declare const VTooltip: {
|
|
|
23127
23156
|
type: (StringConstructor | NumberConstructor)[];
|
|
23128
23157
|
default: number;
|
|
23129
23158
|
};
|
|
23159
|
+
_disableGlobalStack: BooleanConstructor;
|
|
23130
23160
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
23131
23161
|
onAfterLeave?: (() => any) | undefined;
|
|
23132
23162
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -23167,6 +23197,7 @@ declare const VTooltip: {
|
|
|
23167
23197
|
noClickAnimation: boolean;
|
|
23168
23198
|
persistent: boolean;
|
|
23169
23199
|
scrim: string | boolean;
|
|
23200
|
+
_disableGlobalStack: boolean;
|
|
23170
23201
|
}> & {
|
|
23171
23202
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
23172
23203
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -23262,6 +23293,7 @@ declare const VTooltip: {
|
|
|
23262
23293
|
type: (StringConstructor | NumberConstructor)[];
|
|
23263
23294
|
default: number;
|
|
23264
23295
|
};
|
|
23296
|
+
_disableGlobalStack: BooleanConstructor;
|
|
23265
23297
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
23266
23298
|
onAfterLeave?: (() => any) | undefined;
|
|
23267
23299
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -23302,7 +23334,7 @@ declare const VTooltip: {
|
|
|
23302
23334
|
props: Record<string, any>;
|
|
23303
23335
|
}) => vue.VNodeChild) | undefined;
|
|
23304
23336
|
};
|
|
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<{
|
|
23337
|
+
}, "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
23338
|
'update:modelValue': (value: boolean) => boolean;
|
|
23307
23339
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">, string, {
|
|
23308
23340
|
offset: string | number | ((string | number | number[] | undefined) & {});
|
|
@@ -23493,6 +23525,7 @@ declare const VTooltip: {
|
|
|
23493
23525
|
noClickAnimation: boolean;
|
|
23494
23526
|
persistent: boolean;
|
|
23495
23527
|
scrim: string | boolean;
|
|
23528
|
+
_disableGlobalStack: boolean;
|
|
23496
23529
|
}> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
|
|
23497
23530
|
transition: {
|
|
23498
23531
|
type: vue.PropType<string | boolean | (vue.TransitionProps & {
|
|
@@ -23568,11 +23601,12 @@ declare const VTooltip: {
|
|
|
23568
23601
|
type: (StringConstructor | NumberConstructor)[];
|
|
23569
23602
|
default: number;
|
|
23570
23603
|
};
|
|
23604
|
+
_disableGlobalStack: BooleanConstructor;
|
|
23571
23605
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
23572
23606
|
onAfterLeave?: (() => any) | undefined;
|
|
23573
23607
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
23574
23608
|
"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">;
|
|
23609
|
+
} & 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
23610
|
$attrs: {
|
|
23577
23611
|
[x: string]: unknown;
|
|
23578
23612
|
};
|
|
@@ -23661,6 +23695,7 @@ declare const VTooltip: {
|
|
|
23661
23695
|
type: (StringConstructor | NumberConstructor)[];
|
|
23662
23696
|
default: number;
|
|
23663
23697
|
};
|
|
23698
|
+
_disableGlobalStack: BooleanConstructor;
|
|
23664
23699
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
23665
23700
|
onAfterLeave?: (() => any) | undefined;
|
|
23666
23701
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -23701,6 +23736,7 @@ declare const VTooltip: {
|
|
|
23701
23736
|
noClickAnimation: boolean;
|
|
23702
23737
|
persistent: boolean;
|
|
23703
23738
|
scrim: string | boolean;
|
|
23739
|
+
_disableGlobalStack: boolean;
|
|
23704
23740
|
}> & {
|
|
23705
23741
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
23706
23742
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -23796,6 +23832,7 @@ declare const VTooltip: {
|
|
|
23796
23832
|
type: (StringConstructor | NumberConstructor)[];
|
|
23797
23833
|
default: number;
|
|
23798
23834
|
};
|
|
23835
|
+
_disableGlobalStack: BooleanConstructor;
|
|
23799
23836
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
23800
23837
|
onAfterLeave?: (() => any) | undefined;
|
|
23801
23838
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -23836,7 +23873,7 @@ declare const VTooltip: {
|
|
|
23836
23873
|
props: Record<string, any>;
|
|
23837
23874
|
}) => vue.VNodeChild) | undefined;
|
|
23838
23875
|
};
|
|
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;
|
|
23876
|
+
}, "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
23877
|
__isFragment?: undefined;
|
|
23841
23878
|
__isTeleport?: undefined;
|
|
23842
23879
|
__isSuspense?: undefined;
|
|
@@ -23985,6 +24022,7 @@ declare const VTooltip: {
|
|
|
23985
24022
|
noClickAnimation: boolean;
|
|
23986
24023
|
persistent: boolean;
|
|
23987
24024
|
scrim: string | boolean;
|
|
24025
|
+
_disableGlobalStack: boolean;
|
|
23988
24026
|
}> & Omit<Readonly<vue.ExtractPropTypes<Omit<{
|
|
23989
24027
|
transition: {
|
|
23990
24028
|
type: vue.PropType<string | boolean | (vue.TransitionProps & {
|
|
@@ -24060,11 +24098,12 @@ declare const VTooltip: {
|
|
|
24060
24098
|
type: (StringConstructor | NumberConstructor)[];
|
|
24061
24099
|
default: number;
|
|
24062
24100
|
};
|
|
24101
|
+
_disableGlobalStack: BooleanConstructor;
|
|
24063
24102
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
24064
24103
|
onAfterLeave?: (() => any) | undefined;
|
|
24065
24104
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
24066
24105
|
"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">;
|
|
24106
|
+
} & 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
24107
|
$attrs: {
|
|
24069
24108
|
[x: string]: unknown;
|
|
24070
24109
|
};
|
|
@@ -24153,6 +24192,7 @@ declare const VTooltip: {
|
|
|
24153
24192
|
type: (StringConstructor | NumberConstructor)[];
|
|
24154
24193
|
default: number;
|
|
24155
24194
|
};
|
|
24195
|
+
_disableGlobalStack: BooleanConstructor;
|
|
24156
24196
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
24157
24197
|
onAfterLeave?: (() => any) | undefined;
|
|
24158
24198
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -24193,6 +24233,7 @@ declare const VTooltip: {
|
|
|
24193
24233
|
noClickAnimation: boolean;
|
|
24194
24234
|
persistent: boolean;
|
|
24195
24235
|
scrim: string | boolean;
|
|
24236
|
+
_disableGlobalStack: boolean;
|
|
24196
24237
|
}> & {
|
|
24197
24238
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
24198
24239
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -24288,6 +24329,7 @@ declare const VTooltip: {
|
|
|
24288
24329
|
type: (StringConstructor | NumberConstructor)[];
|
|
24289
24330
|
default: number;
|
|
24290
24331
|
};
|
|
24332
|
+
_disableGlobalStack: BooleanConstructor;
|
|
24291
24333
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">>> & {
|
|
24292
24334
|
onAfterLeave?: (() => any) | undefined;
|
|
24293
24335
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -24328,7 +24370,7 @@ declare const VTooltip: {
|
|
|
24328
24370
|
props: Record<string, any>;
|
|
24329
24371
|
}) => vue.VNodeChild) | undefined;
|
|
24330
24372
|
};
|
|
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<{
|
|
24373
|
+
}, "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
24374
|
'update:modelValue': (value: boolean) => boolean;
|
|
24333
24375
|
}, "$children" | "v-slots" | "v-slot:default" | "v-slot:activator">, string, {
|
|
24334
24376
|
offset: string | number | ((string | number | number[] | undefined) & {});
|