@vuetify/nightly 3.6.1-master.2024-05-01 → 3.6.3-dev.2024-05-06
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 +8 -3
- package/dist/json/attributes.json +95 -91
- package/dist/json/importMap-labs.json +22 -22
- package/dist/json/importMap.json +120 -120
- package/dist/json/tags.json +1 -0
- package/dist/json/web-types.json +202 -191
- package/dist/vuetify-labs.css +2399 -2378
- package/dist/vuetify-labs.d.ts +281 -233
- package/dist/vuetify-labs.esm.js +22 -14
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +22 -14
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +1041 -1020
- package/dist/vuetify.d.ts +325 -277
- package/dist/vuetify.esm.js +22 -14
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +22 -14
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +21 -22
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAlert/VAlert.css +3 -1
- package/lib/components/VAutocomplete/index.d.mts +18 -18
- package/lib/components/VAvatar/VAvatar.css +10 -1
- package/lib/components/VAvatar/VAvatar.mjs +6 -1
- package/lib/components/VAvatar/VAvatar.mjs.map +1 -1
- package/lib/components/VAvatar/VAvatar.sass +1 -0
- package/lib/components/VAvatar/_variables.scss +13 -0
- package/lib/components/VAvatar/index.d.mts +6 -0
- package/lib/components/VBottomSheet/index.d.mts +15 -9
- package/lib/components/VBtn/VBtn.css +3 -1
- package/lib/components/VCard/VCard.css +3 -1
- package/lib/components/VChip/VChip.css +3 -1
- package/lib/components/VCombobox/index.d.mts +18 -18
- package/lib/components/VDataTable/VDataTableHeaders.mjs +2 -0
- package/lib/components/VDataTable/VDataTableHeaders.mjs.map +1 -1
- package/lib/components/VDataTable/composables/select.mjs +7 -8
- package/lib/components/VDataTable/composables/select.mjs.map +1 -1
- package/lib/components/VDialog/index.d.mts +33 -27
- package/lib/components/VFileInput/VFileInput.mjs.map +1 -1
- package/lib/components/VFileInput/index.d.mts +6 -6
- package/lib/components/VHover/VHover.mjs +1 -1
- package/lib/components/VHover/VHover.mjs.map +1 -1
- package/lib/components/VHover/index.d.mts +24 -24
- package/lib/components/VList/VListItem.css +3 -1
- package/lib/components/VMenu/index.d.mts +33 -27
- package/lib/components/VOverlay/VOverlay.mjs +5 -2
- package/lib/components/VOverlay/VOverlay.mjs.map +1 -1
- package/lib/components/VOverlay/index.d.mts +15 -9
- package/lib/components/VSelect/index.d.mts +18 -18
- package/lib/components/VSnackbar/VSnackbar.css +3 -1
- package/lib/components/VSnackbar/VSnackbar.mjs.map +1 -1
- package/lib/components/VSnackbar/index.d.mts +47 -41
- package/lib/components/VSpeedDial/index.d.mts +15 -9
- package/lib/components/VTooltip/index.d.mts +33 -27
- package/lib/components/index.d.mts +281 -233
- 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.mts +44 -44
- package/lib/labs/VSnackbarQueue/index.d.mts +47 -41
- package/lib/labs/components.d.mts +47 -41
- package/lib/styles/tools/_variant.sass +3 -1
- package/package.json +1 -1
package/dist/vuetify.d.ts
CHANGED
@@ -5203,7 +5203,7 @@ declare const VAutocomplete: {
|
|
5203
5203
|
component: vue.Component;
|
5204
5204
|
};
|
5205
5205
|
zIndex: string | number;
|
5206
|
-
modelValue: boolean;
|
5206
|
+
modelValue: boolean | null;
|
5207
5207
|
origin: Anchor | "auto" | "overlap";
|
5208
5208
|
eager: boolean;
|
5209
5209
|
location: Anchor;
|
@@ -5232,7 +5232,7 @@ declare const VAutocomplete: {
|
|
5232
5232
|
component: vue.Component;
|
5233
5233
|
};
|
5234
5234
|
zIndex: string | number;
|
5235
|
-
modelValue: boolean;
|
5235
|
+
modelValue: boolean | null;
|
5236
5236
|
origin: Anchor | "auto" | "overlap";
|
5237
5237
|
eager: boolean;
|
5238
5238
|
location: Anchor;
|
@@ -5308,7 +5308,7 @@ declare const VAutocomplete: {
|
|
5308
5308
|
component: vue.Component;
|
5309
5309
|
};
|
5310
5310
|
zIndex: string | number;
|
5311
|
-
modelValue: boolean;
|
5311
|
+
modelValue: boolean | null;
|
5312
5312
|
origin: Anchor | "auto" | "overlap";
|
5313
5313
|
eager: boolean;
|
5314
5314
|
location: Anchor;
|
@@ -5783,7 +5783,7 @@ declare const VAutocomplete: {
|
|
5783
5783
|
component: vue.Component;
|
5784
5784
|
};
|
5785
5785
|
zIndex: string | number;
|
5786
|
-
modelValue: boolean;
|
5786
|
+
modelValue: boolean | null;
|
5787
5787
|
origin: Anchor | "auto" | "overlap";
|
5788
5788
|
eager: boolean;
|
5789
5789
|
location: Anchor;
|
@@ -5812,7 +5812,7 @@ declare const VAutocomplete: {
|
|
5812
5812
|
component: vue.Component;
|
5813
5813
|
};
|
5814
5814
|
zIndex: string | number;
|
5815
|
-
modelValue: boolean;
|
5815
|
+
modelValue: boolean | null;
|
5816
5816
|
origin: Anchor | "auto" | "overlap";
|
5817
5817
|
eager: boolean;
|
5818
5818
|
location: Anchor;
|
@@ -5888,7 +5888,7 @@ declare const VAutocomplete: {
|
|
5888
5888
|
component: vue.Component;
|
5889
5889
|
};
|
5890
5890
|
zIndex: string | number;
|
5891
|
-
modelValue: boolean;
|
5891
|
+
modelValue: boolean | null;
|
5892
5892
|
origin: Anchor | "auto" | "overlap";
|
5893
5893
|
eager: boolean;
|
5894
5894
|
location: Anchor;
|
@@ -6477,7 +6477,7 @@ declare const VAutocomplete: {
|
|
6477
6477
|
component: vue.Component;
|
6478
6478
|
};
|
6479
6479
|
zIndex: string | number;
|
6480
|
-
modelValue: boolean;
|
6480
|
+
modelValue: boolean | null;
|
6481
6481
|
origin: Anchor | "auto" | "overlap";
|
6482
6482
|
eager: boolean;
|
6483
6483
|
location: Anchor;
|
@@ -6506,7 +6506,7 @@ declare const VAutocomplete: {
|
|
6506
6506
|
component: vue.Component;
|
6507
6507
|
};
|
6508
6508
|
zIndex: string | number;
|
6509
|
-
modelValue: boolean;
|
6509
|
+
modelValue: boolean | null;
|
6510
6510
|
origin: Anchor | "auto" | "overlap";
|
6511
6511
|
eager: boolean;
|
6512
6512
|
location: Anchor;
|
@@ -6582,7 +6582,7 @@ declare const VAutocomplete: {
|
|
6582
6582
|
component: vue.Component;
|
6583
6583
|
};
|
6584
6584
|
zIndex: string | number;
|
6585
|
-
modelValue: boolean;
|
6585
|
+
modelValue: boolean | null;
|
6586
6586
|
origin: Anchor | "auto" | "overlap";
|
6587
6587
|
eager: boolean;
|
6588
6588
|
location: Anchor;
|
@@ -7106,7 +7106,7 @@ declare const VAutocomplete: {
|
|
7106
7106
|
component: vue.Component;
|
7107
7107
|
};
|
7108
7108
|
zIndex: string | number;
|
7109
|
-
modelValue: boolean;
|
7109
|
+
modelValue: boolean | null;
|
7110
7110
|
origin: Anchor | "auto" | "overlap";
|
7111
7111
|
eager: boolean;
|
7112
7112
|
location: Anchor;
|
@@ -7135,7 +7135,7 @@ declare const VAutocomplete: {
|
|
7135
7135
|
component: vue.Component;
|
7136
7136
|
};
|
7137
7137
|
zIndex: string | number;
|
7138
|
-
modelValue: boolean;
|
7138
|
+
modelValue: boolean | null;
|
7139
7139
|
origin: Anchor | "auto" | "overlap";
|
7140
7140
|
eager: boolean;
|
7141
7141
|
location: Anchor;
|
@@ -7211,7 +7211,7 @@ declare const VAutocomplete: {
|
|
7211
7211
|
component: vue.Component;
|
7212
7212
|
};
|
7213
7213
|
zIndex: string | number;
|
7214
|
-
modelValue: boolean;
|
7214
|
+
modelValue: boolean | null;
|
7215
7215
|
origin: Anchor | "auto" | "overlap";
|
7216
7216
|
eager: boolean;
|
7217
7217
|
location: Anchor;
|
@@ -7943,7 +7943,7 @@ declare const VAutocomplete: {
|
|
7943
7943
|
component: vue.Component;
|
7944
7944
|
};
|
7945
7945
|
zIndex: string | number;
|
7946
|
-
modelValue: boolean;
|
7946
|
+
modelValue: boolean | null;
|
7947
7947
|
origin: Anchor | "auto" | "overlap";
|
7948
7948
|
eager: boolean;
|
7949
7949
|
location: Anchor;
|
@@ -7972,7 +7972,7 @@ declare const VAutocomplete: {
|
|
7972
7972
|
component: vue.Component;
|
7973
7973
|
};
|
7974
7974
|
zIndex: string | number;
|
7975
|
-
modelValue: boolean;
|
7975
|
+
modelValue: boolean | null;
|
7976
7976
|
origin: Anchor | "auto" | "overlap";
|
7977
7977
|
eager: boolean;
|
7978
7978
|
location: Anchor;
|
@@ -8048,7 +8048,7 @@ declare const VAutocomplete: {
|
|
8048
8048
|
component: vue.Component;
|
8049
8049
|
};
|
8050
8050
|
zIndex: string | number;
|
8051
|
-
modelValue: boolean;
|
8051
|
+
modelValue: boolean | null;
|
8052
8052
|
origin: Anchor | "auto" | "overlap";
|
8053
8053
|
eager: boolean;
|
8054
8054
|
location: Anchor;
|
@@ -8627,7 +8627,7 @@ declare const VAutocomplete: {
|
|
8627
8627
|
component: vue.Component;
|
8628
8628
|
};
|
8629
8629
|
zIndex: string | number;
|
8630
|
-
modelValue: boolean;
|
8630
|
+
modelValue: boolean | null;
|
8631
8631
|
origin: Anchor | "auto" | "overlap";
|
8632
8632
|
eager: boolean;
|
8633
8633
|
location: Anchor;
|
@@ -8656,7 +8656,7 @@ declare const VAutocomplete: {
|
|
8656
8656
|
component: vue.Component;
|
8657
8657
|
};
|
8658
8658
|
zIndex: string | number;
|
8659
|
-
modelValue: boolean;
|
8659
|
+
modelValue: boolean | null;
|
8660
8660
|
origin: Anchor | "auto" | "overlap";
|
8661
8661
|
eager: boolean;
|
8662
8662
|
location: Anchor;
|
@@ -8732,7 +8732,7 @@ declare const VAutocomplete: {
|
|
8732
8732
|
component: vue.Component;
|
8733
8733
|
};
|
8734
8734
|
zIndex: string | number;
|
8735
|
-
modelValue: boolean;
|
8735
|
+
modelValue: boolean | null;
|
8736
8736
|
origin: Anchor | "auto" | "overlap";
|
8737
8737
|
eager: boolean;
|
8738
8738
|
location: Anchor;
|
@@ -8848,6 +8848,7 @@ declare const VAvatar: {
|
|
8848
8848
|
theme?: string | undefined;
|
8849
8849
|
color?: string | undefined;
|
8850
8850
|
icon?: IconValue | undefined;
|
8851
|
+
border?: string | number | boolean | undefined;
|
8851
8852
|
rounded?: string | number | boolean | undefined;
|
8852
8853
|
} & {
|
8853
8854
|
$children?: vue.VNodeChild | {
|
@@ -8874,6 +8875,7 @@ declare const VAvatar: {
|
|
8874
8875
|
theme?: string | undefined;
|
8875
8876
|
color?: string | undefined;
|
8876
8877
|
icon?: IconValue | undefined;
|
8878
|
+
border?: string | number | boolean | undefined;
|
8877
8879
|
rounded?: string | number | boolean | undefined;
|
8878
8880
|
} & {
|
8879
8881
|
$children?: vue.VNodeChild | {
|
@@ -8921,6 +8923,7 @@ declare const VAvatar: {
|
|
8921
8923
|
theme?: string | undefined;
|
8922
8924
|
color?: string | undefined;
|
8923
8925
|
icon?: IconValue | undefined;
|
8926
|
+
border?: string | number | boolean | undefined;
|
8924
8927
|
rounded?: string | number | boolean | undefined;
|
8925
8928
|
} & {
|
8926
8929
|
$children?: vue.VNodeChild | {
|
@@ -8961,6 +8964,7 @@ declare const VAvatar: {
|
|
8961
8964
|
theme?: string | undefined;
|
8962
8965
|
color?: string | undefined;
|
8963
8966
|
icon?: IconValue | undefined;
|
8967
|
+
border?: string | number | boolean | undefined;
|
8964
8968
|
rounded?: string | number | boolean | undefined;
|
8965
8969
|
} & {
|
8966
8970
|
$children?: vue.VNodeChild | {
|
@@ -9019,6 +9023,7 @@ declare const VAvatar: {
|
|
9019
9023
|
type: vue.PropType<vue.StyleValue>;
|
9020
9024
|
default: null;
|
9021
9025
|
};
|
9026
|
+
border: (StringConstructor | NumberConstructor | BooleanConstructor)[];
|
9022
9027
|
start: BooleanConstructor;
|
9023
9028
|
end: BooleanConstructor;
|
9024
9029
|
icon: vue.PropType<IconValue>;
|
@@ -9058,6 +9063,7 @@ declare const VAvatar: {
|
|
9058
9063
|
type: vue.PropType<vue.StyleValue>;
|
9059
9064
|
default: null;
|
9060
9065
|
};
|
9066
|
+
border: (StringConstructor | NumberConstructor | BooleanConstructor)[];
|
9061
9067
|
start: BooleanConstructor;
|
9062
9068
|
end: BooleanConstructor;
|
9063
9069
|
icon: vue.PropType<IconValue>;
|
@@ -10312,7 +10318,7 @@ declare const VBottomSheet: {
|
|
10312
10318
|
component: vue.Component;
|
10313
10319
|
}>;
|
10314
10320
|
zIndex: NonNullable<string | number>;
|
10315
|
-
modelValue: boolean;
|
10321
|
+
modelValue: boolean | null;
|
10316
10322
|
inset: boolean;
|
10317
10323
|
origin: NonNullable<Anchor | "auto" | "overlap">;
|
10318
10324
|
eager: boolean;
|
@@ -10398,7 +10404,7 @@ declare const VBottomSheet: {
|
|
10398
10404
|
component: vue.Component;
|
10399
10405
|
}>;
|
10400
10406
|
zIndex: NonNullable<string | number>;
|
10401
|
-
modelValue: boolean;
|
10407
|
+
modelValue: boolean | null;
|
10402
10408
|
inset: boolean;
|
10403
10409
|
origin: NonNullable<Anchor | "auto" | "overlap">;
|
10404
10410
|
eager: boolean;
|
@@ -10482,7 +10488,7 @@ declare const VBottomSheet: {
|
|
10482
10488
|
component: vue.Component;
|
10483
10489
|
}>;
|
10484
10490
|
zIndex: NonNullable<string | number>;
|
10485
|
-
modelValue: boolean;
|
10491
|
+
modelValue: boolean | null;
|
10486
10492
|
inset: boolean;
|
10487
10493
|
origin: NonNullable<Anchor | "auto" | "overlap">;
|
10488
10494
|
eager: boolean;
|
@@ -10534,7 +10540,7 @@ declare const VBottomSheet: {
|
|
10534
10540
|
component: vue.Component;
|
10535
10541
|
}>;
|
10536
10542
|
zIndex: NonNullable<string | number>;
|
10537
|
-
modelValue: boolean;
|
10543
|
+
modelValue: boolean | null;
|
10538
10544
|
inset: boolean;
|
10539
10545
|
origin: NonNullable<Anchor | "auto" | "overlap">;
|
10540
10546
|
eager: boolean;
|
@@ -10618,7 +10624,7 @@ declare const VBottomSheet: {
|
|
10618
10624
|
component: vue.Component;
|
10619
10625
|
}>;
|
10620
10626
|
zIndex: NonNullable<string | number>;
|
10621
|
-
modelValue: boolean;
|
10627
|
+
modelValue: boolean | null;
|
10622
10628
|
inset: boolean;
|
10623
10629
|
origin: NonNullable<Anchor | "auto" | "overlap">;
|
10624
10630
|
eager: boolean;
|
@@ -10654,7 +10660,7 @@ declare const VBottomSheet: {
|
|
10654
10660
|
component: vue.Component;
|
10655
10661
|
}>;
|
10656
10662
|
zIndex: NonNullable<string | number>;
|
10657
|
-
modelValue: boolean;
|
10663
|
+
modelValue: boolean | null;
|
10658
10664
|
inset: boolean;
|
10659
10665
|
origin: NonNullable<Anchor | "auto" | "overlap">;
|
10660
10666
|
eager: boolean;
|
@@ -10740,7 +10746,7 @@ declare const VBottomSheet: {
|
|
10740
10746
|
component: vue.Component;
|
10741
10747
|
}>;
|
10742
10748
|
zIndex: NonNullable<string | number>;
|
10743
|
-
modelValue: boolean;
|
10749
|
+
modelValue: boolean | null;
|
10744
10750
|
inset: boolean;
|
10745
10751
|
origin: NonNullable<Anchor | "auto" | "overlap">;
|
10746
10752
|
eager: boolean;
|
@@ -10875,7 +10881,10 @@ declare const VBottomSheet: {
|
|
10875
10881
|
disabled: BooleanConstructor;
|
10876
10882
|
opacity: (StringConstructor | NumberConstructor)[];
|
10877
10883
|
noClickAnimation: BooleanConstructor;
|
10878
|
-
modelValue:
|
10884
|
+
modelValue: {
|
10885
|
+
type: vue.PropType<boolean | null>;
|
10886
|
+
default: null;
|
10887
|
+
};
|
10879
10888
|
persistent: BooleanConstructor;
|
10880
10889
|
scrim: {
|
10881
10890
|
type: (StringConstructor | BooleanConstructor)[];
|
@@ -10995,7 +11004,10 @@ declare const VBottomSheet: {
|
|
10995
11004
|
disabled: BooleanConstructor;
|
10996
11005
|
opacity: (StringConstructor | NumberConstructor)[];
|
10997
11006
|
noClickAnimation: BooleanConstructor;
|
10998
|
-
modelValue:
|
11007
|
+
modelValue: {
|
11008
|
+
type: vue.PropType<boolean | null>;
|
11009
|
+
default: null;
|
11010
|
+
};
|
10999
11011
|
persistent: BooleanConstructor;
|
11000
11012
|
scrim: {
|
11001
11013
|
type: (StringConstructor | BooleanConstructor)[];
|
@@ -19043,7 +19055,7 @@ declare const VCombobox: {
|
|
19043
19055
|
component: vue.Component;
|
19044
19056
|
};
|
19045
19057
|
zIndex: string | number;
|
19046
|
-
modelValue: boolean;
|
19058
|
+
modelValue: boolean | null;
|
19047
19059
|
origin: Anchor | "auto" | "overlap";
|
19048
19060
|
eager: boolean;
|
19049
19061
|
location: Anchor;
|
@@ -19072,7 +19084,7 @@ declare const VCombobox: {
|
|
19072
19084
|
component: vue.Component;
|
19073
19085
|
};
|
19074
19086
|
zIndex: string | number;
|
19075
|
-
modelValue: boolean;
|
19087
|
+
modelValue: boolean | null;
|
19076
19088
|
origin: Anchor | "auto" | "overlap";
|
19077
19089
|
eager: boolean;
|
19078
19090
|
location: Anchor;
|
@@ -19148,7 +19160,7 @@ declare const VCombobox: {
|
|
19148
19160
|
component: vue.Component;
|
19149
19161
|
};
|
19150
19162
|
zIndex: string | number;
|
19151
|
-
modelValue: boolean;
|
19163
|
+
modelValue: boolean | null;
|
19152
19164
|
origin: Anchor | "auto" | "overlap";
|
19153
19165
|
eager: boolean;
|
19154
19166
|
location: Anchor;
|
@@ -19623,7 +19635,7 @@ declare const VCombobox: {
|
|
19623
19635
|
component: vue.Component;
|
19624
19636
|
};
|
19625
19637
|
zIndex: string | number;
|
19626
|
-
modelValue: boolean;
|
19638
|
+
modelValue: boolean | null;
|
19627
19639
|
origin: Anchor | "auto" | "overlap";
|
19628
19640
|
eager: boolean;
|
19629
19641
|
location: Anchor;
|
@@ -19652,7 +19664,7 @@ declare const VCombobox: {
|
|
19652
19664
|
component: vue.Component;
|
19653
19665
|
};
|
19654
19666
|
zIndex: string | number;
|
19655
|
-
modelValue: boolean;
|
19667
|
+
modelValue: boolean | null;
|
19656
19668
|
origin: Anchor | "auto" | "overlap";
|
19657
19669
|
eager: boolean;
|
19658
19670
|
location: Anchor;
|
@@ -19728,7 +19740,7 @@ declare const VCombobox: {
|
|
19728
19740
|
component: vue.Component;
|
19729
19741
|
};
|
19730
19742
|
zIndex: string | number;
|
19731
|
-
modelValue: boolean;
|
19743
|
+
modelValue: boolean | null;
|
19732
19744
|
origin: Anchor | "auto" | "overlap";
|
19733
19745
|
eager: boolean;
|
19734
19746
|
location: Anchor;
|
@@ -20317,7 +20329,7 @@ declare const VCombobox: {
|
|
20317
20329
|
component: vue.Component;
|
20318
20330
|
};
|
20319
20331
|
zIndex: string | number;
|
20320
|
-
modelValue: boolean;
|
20332
|
+
modelValue: boolean | null;
|
20321
20333
|
origin: Anchor | "auto" | "overlap";
|
20322
20334
|
eager: boolean;
|
20323
20335
|
location: Anchor;
|
@@ -20346,7 +20358,7 @@ declare const VCombobox: {
|
|
20346
20358
|
component: vue.Component;
|
20347
20359
|
};
|
20348
20360
|
zIndex: string | number;
|
20349
|
-
modelValue: boolean;
|
20361
|
+
modelValue: boolean | null;
|
20350
20362
|
origin: Anchor | "auto" | "overlap";
|
20351
20363
|
eager: boolean;
|
20352
20364
|
location: Anchor;
|
@@ -20422,7 +20434,7 @@ declare const VCombobox: {
|
|
20422
20434
|
component: vue.Component;
|
20423
20435
|
};
|
20424
20436
|
zIndex: string | number;
|
20425
|
-
modelValue: boolean;
|
20437
|
+
modelValue: boolean | null;
|
20426
20438
|
origin: Anchor | "auto" | "overlap";
|
20427
20439
|
eager: boolean;
|
20428
20440
|
location: Anchor;
|
@@ -20946,7 +20958,7 @@ declare const VCombobox: {
|
|
20946
20958
|
component: vue.Component;
|
20947
20959
|
};
|
20948
20960
|
zIndex: string | number;
|
20949
|
-
modelValue: boolean;
|
20961
|
+
modelValue: boolean | null;
|
20950
20962
|
origin: Anchor | "auto" | "overlap";
|
20951
20963
|
eager: boolean;
|
20952
20964
|
location: Anchor;
|
@@ -20975,7 +20987,7 @@ declare const VCombobox: {
|
|
20975
20987
|
component: vue.Component;
|
20976
20988
|
};
|
20977
20989
|
zIndex: string | number;
|
20978
|
-
modelValue: boolean;
|
20990
|
+
modelValue: boolean | null;
|
20979
20991
|
origin: Anchor | "auto" | "overlap";
|
20980
20992
|
eager: boolean;
|
20981
20993
|
location: Anchor;
|
@@ -21051,7 +21063,7 @@ declare const VCombobox: {
|
|
21051
21063
|
component: vue.Component;
|
21052
21064
|
};
|
21053
21065
|
zIndex: string | number;
|
21054
|
-
modelValue: boolean;
|
21066
|
+
modelValue: boolean | null;
|
21055
21067
|
origin: Anchor | "auto" | "overlap";
|
21056
21068
|
eager: boolean;
|
21057
21069
|
location: Anchor;
|
@@ -21789,7 +21801,7 @@ declare const VCombobox: {
|
|
21789
21801
|
component: vue.Component;
|
21790
21802
|
};
|
21791
21803
|
zIndex: string | number;
|
21792
|
-
modelValue: boolean;
|
21804
|
+
modelValue: boolean | null;
|
21793
21805
|
origin: Anchor | "auto" | "overlap";
|
21794
21806
|
eager: boolean;
|
21795
21807
|
location: Anchor;
|
@@ -21818,7 +21830,7 @@ declare const VCombobox: {
|
|
21818
21830
|
component: vue.Component;
|
21819
21831
|
};
|
21820
21832
|
zIndex: string | number;
|
21821
|
-
modelValue: boolean;
|
21833
|
+
modelValue: boolean | null;
|
21822
21834
|
origin: Anchor | "auto" | "overlap";
|
21823
21835
|
eager: boolean;
|
21824
21836
|
location: Anchor;
|
@@ -21894,7 +21906,7 @@ declare const VCombobox: {
|
|
21894
21906
|
component: vue.Component;
|
21895
21907
|
};
|
21896
21908
|
zIndex: string | number;
|
21897
|
-
modelValue: boolean;
|
21909
|
+
modelValue: boolean | null;
|
21898
21910
|
origin: Anchor | "auto" | "overlap";
|
21899
21911
|
eager: boolean;
|
21900
21912
|
location: Anchor;
|
@@ -22482,7 +22494,7 @@ declare const VCombobox: {
|
|
22482
22494
|
component: vue.Component;
|
22483
22495
|
};
|
22484
22496
|
zIndex: string | number;
|
22485
|
-
modelValue: boolean;
|
22497
|
+
modelValue: boolean | null;
|
22486
22498
|
origin: Anchor | "auto" | "overlap";
|
22487
22499
|
eager: boolean;
|
22488
22500
|
location: Anchor;
|
@@ -22511,7 +22523,7 @@ declare const VCombobox: {
|
|
22511
22523
|
component: vue.Component;
|
22512
22524
|
};
|
22513
22525
|
zIndex: string | number;
|
22514
|
-
modelValue: boolean;
|
22526
|
+
modelValue: boolean | null;
|
22515
22527
|
origin: Anchor | "auto" | "overlap";
|
22516
22528
|
eager: boolean;
|
22517
22529
|
location: Anchor;
|
@@ -22587,7 +22599,7 @@ declare const VCombobox: {
|
|
22587
22599
|
component: vue.Component;
|
22588
22600
|
};
|
22589
22601
|
zIndex: string | number;
|
22590
|
-
modelValue: boolean;
|
22602
|
+
modelValue: boolean | null;
|
22591
22603
|
origin: Anchor | "auto" | "overlap";
|
22592
22604
|
eager: boolean;
|
22593
22605
|
location: Anchor;
|
@@ -29873,7 +29885,7 @@ declare const VDialog: {
|
|
29873
29885
|
component: Component;
|
29874
29886
|
};
|
29875
29887
|
zIndex: NonNullable<string | number>;
|
29876
|
-
modelValue: boolean;
|
29888
|
+
modelValue: boolean | null;
|
29877
29889
|
origin: NonNullable<Anchor | "auto" | "overlap">;
|
29878
29890
|
eager: boolean;
|
29879
29891
|
location: Anchor;
|
@@ -29958,7 +29970,7 @@ declare const VDialog: {
|
|
29958
29970
|
component?: Component | undefined;
|
29959
29971
|
});
|
29960
29972
|
zIndex: string | number;
|
29961
|
-
modelValue: boolean;
|
29973
|
+
modelValue: boolean | null;
|
29962
29974
|
origin: Anchor | "auto" | "overlap";
|
29963
29975
|
eager: boolean;
|
29964
29976
|
location: Anchor;
|
@@ -29985,7 +29997,7 @@ declare const VDialog: {
|
|
29985
29997
|
component?: Component | undefined;
|
29986
29998
|
});
|
29987
29999
|
zIndex: string | number;
|
29988
|
-
modelValue: boolean;
|
30000
|
+
modelValue: boolean | null;
|
29989
30001
|
origin: Anchor | "auto" | "overlap";
|
29990
30002
|
eager: boolean;
|
29991
30003
|
location: Anchor;
|
@@ -30063,7 +30075,7 @@ declare const VDialog: {
|
|
30063
30075
|
component?: Component | undefined;
|
30064
30076
|
});
|
30065
30077
|
zIndex: string | number;
|
30066
|
-
modelValue: boolean;
|
30078
|
+
modelValue: boolean | null;
|
30067
30079
|
origin: Anchor | "auto" | "overlap";
|
30068
30080
|
eager: boolean;
|
30069
30081
|
location: Anchor;
|
@@ -30170,7 +30182,7 @@ declare const VDialog: {
|
|
30170
30182
|
component?: Component | undefined;
|
30171
30183
|
});
|
30172
30184
|
zIndex: string | number;
|
30173
|
-
modelValue: boolean;
|
30185
|
+
modelValue: boolean | null;
|
30174
30186
|
origin: Anchor | "auto" | "overlap";
|
30175
30187
|
eager: boolean;
|
30176
30188
|
location: Anchor;
|
@@ -30266,7 +30278,7 @@ declare const VDialog: {
|
|
30266
30278
|
component?: Component | undefined;
|
30267
30279
|
});
|
30268
30280
|
zIndex: string | number;
|
30269
|
-
modelValue: boolean;
|
30281
|
+
modelValue: boolean | null;
|
30270
30282
|
origin: Anchor | "auto" | "overlap";
|
30271
30283
|
eager: boolean;
|
30272
30284
|
location: Anchor;
|
@@ -30326,7 +30338,7 @@ declare const VDialog: {
|
|
30326
30338
|
component?: Component | undefined;
|
30327
30339
|
});
|
30328
30340
|
zIndex: string | number;
|
30329
|
-
modelValue: boolean;
|
30341
|
+
modelValue: boolean | null;
|
30330
30342
|
origin: Anchor | "auto" | "overlap";
|
30331
30343
|
eager: boolean;
|
30332
30344
|
location: Anchor;
|
@@ -30422,7 +30434,7 @@ declare const VDialog: {
|
|
30422
30434
|
component: Component;
|
30423
30435
|
};
|
30424
30436
|
zIndex: NonNullable<string | number>;
|
30425
|
-
modelValue: boolean;
|
30437
|
+
modelValue: boolean | null;
|
30426
30438
|
origin: NonNullable<Anchor | "auto" | "overlap">;
|
30427
30439
|
eager: boolean;
|
30428
30440
|
location: Anchor;
|
@@ -30506,7 +30518,7 @@ declare const VDialog: {
|
|
30506
30518
|
component: Component;
|
30507
30519
|
};
|
30508
30520
|
zIndex: NonNullable<string | number>;
|
30509
|
-
modelValue: boolean;
|
30521
|
+
modelValue: boolean | null;
|
30510
30522
|
origin: NonNullable<Anchor | "auto" | "overlap">;
|
30511
30523
|
eager: boolean;
|
30512
30524
|
location: Anchor;
|
@@ -30557,7 +30569,7 @@ declare const VDialog: {
|
|
30557
30569
|
component: Component;
|
30558
30570
|
};
|
30559
30571
|
zIndex: NonNullable<string | number>;
|
30560
|
-
modelValue: boolean;
|
30572
|
+
modelValue: boolean | null;
|
30561
30573
|
origin: NonNullable<Anchor | "auto" | "overlap">;
|
30562
30574
|
eager: boolean;
|
30563
30575
|
location: Anchor;
|
@@ -30642,7 +30654,7 @@ declare const VDialog: {
|
|
30642
30654
|
component?: Component | undefined;
|
30643
30655
|
});
|
30644
30656
|
zIndex: string | number;
|
30645
|
-
modelValue: boolean;
|
30657
|
+
modelValue: boolean | null;
|
30646
30658
|
origin: Anchor | "auto" | "overlap";
|
30647
30659
|
eager: boolean;
|
30648
30660
|
location: Anchor;
|
@@ -30669,7 +30681,7 @@ declare const VDialog: {
|
|
30669
30681
|
component?: Component | undefined;
|
30670
30682
|
});
|
30671
30683
|
zIndex: string | number;
|
30672
|
-
modelValue: boolean;
|
30684
|
+
modelValue: boolean | null;
|
30673
30685
|
origin: Anchor | "auto" | "overlap";
|
30674
30686
|
eager: boolean;
|
30675
30687
|
location: Anchor;
|
@@ -30747,7 +30759,7 @@ declare const VDialog: {
|
|
30747
30759
|
component?: Component | undefined;
|
30748
30760
|
});
|
30749
30761
|
zIndex: string | number;
|
30750
|
-
modelValue: boolean;
|
30762
|
+
modelValue: boolean | null;
|
30751
30763
|
origin: Anchor | "auto" | "overlap";
|
30752
30764
|
eager: boolean;
|
30753
30765
|
location: Anchor;
|
@@ -30854,7 +30866,7 @@ declare const VDialog: {
|
|
30854
30866
|
component?: Component | undefined;
|
30855
30867
|
});
|
30856
30868
|
zIndex: string | number;
|
30857
|
-
modelValue: boolean;
|
30869
|
+
modelValue: boolean | null;
|
30858
30870
|
origin: Anchor | "auto" | "overlap";
|
30859
30871
|
eager: boolean;
|
30860
30872
|
location: Anchor;
|
@@ -30950,7 +30962,7 @@ declare const VDialog: {
|
|
30950
30962
|
component?: Component | undefined;
|
30951
30963
|
});
|
30952
30964
|
zIndex: string | number;
|
30953
|
-
modelValue: boolean;
|
30965
|
+
modelValue: boolean | null;
|
30954
30966
|
origin: Anchor | "auto" | "overlap";
|
30955
30967
|
eager: boolean;
|
30956
30968
|
location: Anchor;
|
@@ -31010,7 +31022,7 @@ declare const VDialog: {
|
|
31010
31022
|
component?: Component | undefined;
|
31011
31023
|
});
|
31012
31024
|
zIndex: string | number;
|
31013
|
-
modelValue: boolean;
|
31025
|
+
modelValue: boolean | null;
|
31014
31026
|
origin: Anchor | "auto" | "overlap";
|
31015
31027
|
eager: boolean;
|
31016
31028
|
location: Anchor;
|
@@ -31103,7 +31115,7 @@ declare const VDialog: {
|
|
31103
31115
|
component: Component;
|
31104
31116
|
};
|
31105
31117
|
zIndex: NonNullable<string | number>;
|
31106
|
-
modelValue: boolean;
|
31118
|
+
modelValue: boolean | null;
|
31107
31119
|
origin: NonNullable<Anchor | "auto" | "overlap">;
|
31108
31120
|
eager: boolean;
|
31109
31121
|
location: Anchor;
|
@@ -31138,7 +31150,7 @@ declare const VDialog: {
|
|
31138
31150
|
component: Component;
|
31139
31151
|
};
|
31140
31152
|
zIndex: NonNullable<string | number>;
|
31141
|
-
modelValue: boolean;
|
31153
|
+
modelValue: boolean | null;
|
31142
31154
|
origin: NonNullable<Anchor | "auto" | "overlap">;
|
31143
31155
|
eager: boolean;
|
31144
31156
|
location: Anchor;
|
@@ -31223,7 +31235,7 @@ declare const VDialog: {
|
|
31223
31235
|
component?: Component | undefined;
|
31224
31236
|
});
|
31225
31237
|
zIndex: string | number;
|
31226
|
-
modelValue: boolean;
|
31238
|
+
modelValue: boolean | null;
|
31227
31239
|
origin: Anchor | "auto" | "overlap";
|
31228
31240
|
eager: boolean;
|
31229
31241
|
location: Anchor;
|
@@ -31250,7 +31262,7 @@ declare const VDialog: {
|
|
31250
31262
|
component?: Component | undefined;
|
31251
31263
|
});
|
31252
31264
|
zIndex: string | number;
|
31253
|
-
modelValue: boolean;
|
31265
|
+
modelValue: boolean | null;
|
31254
31266
|
origin: Anchor | "auto" | "overlap";
|
31255
31267
|
eager: boolean;
|
31256
31268
|
location: Anchor;
|
@@ -31328,7 +31340,7 @@ declare const VDialog: {
|
|
31328
31340
|
component?: Component | undefined;
|
31329
31341
|
});
|
31330
31342
|
zIndex: string | number;
|
31331
|
-
modelValue: boolean;
|
31343
|
+
modelValue: boolean | null;
|
31332
31344
|
origin: Anchor | "auto" | "overlap";
|
31333
31345
|
eager: boolean;
|
31334
31346
|
location: Anchor;
|
@@ -31435,7 +31447,7 @@ declare const VDialog: {
|
|
31435
31447
|
component?: Component | undefined;
|
31436
31448
|
});
|
31437
31449
|
zIndex: string | number;
|
31438
|
-
modelValue: boolean;
|
31450
|
+
modelValue: boolean | null;
|
31439
31451
|
origin: Anchor | "auto" | "overlap";
|
31440
31452
|
eager: boolean;
|
31441
31453
|
location: Anchor;
|
@@ -31531,7 +31543,7 @@ declare const VDialog: {
|
|
31531
31543
|
component?: Component | undefined;
|
31532
31544
|
});
|
31533
31545
|
zIndex: string | number;
|
31534
|
-
modelValue: boolean;
|
31546
|
+
modelValue: boolean | null;
|
31535
31547
|
origin: Anchor | "auto" | "overlap";
|
31536
31548
|
eager: boolean;
|
31537
31549
|
location: Anchor;
|
@@ -31591,7 +31603,7 @@ declare const VDialog: {
|
|
31591
31603
|
component?: Component | undefined;
|
31592
31604
|
});
|
31593
31605
|
zIndex: string | number;
|
31594
|
-
modelValue: boolean;
|
31606
|
+
modelValue: boolean | null;
|
31595
31607
|
origin: Anchor | "auto" | "overlap";
|
31596
31608
|
eager: boolean;
|
31597
31609
|
location: Anchor;
|
@@ -31687,7 +31699,7 @@ declare const VDialog: {
|
|
31687
31699
|
component: Component;
|
31688
31700
|
};
|
31689
31701
|
zIndex: NonNullable<string | number>;
|
31690
|
-
modelValue: boolean;
|
31702
|
+
modelValue: boolean | null;
|
31691
31703
|
origin: NonNullable<Anchor | "auto" | "overlap">;
|
31692
31704
|
eager: boolean;
|
31693
31705
|
location: Anchor;
|
@@ -31810,7 +31822,10 @@ declare const VDialog: {
|
|
31810
31822
|
disabled: BooleanConstructor;
|
31811
31823
|
opacity: (StringConstructor | NumberConstructor)[];
|
31812
31824
|
noClickAnimation: BooleanConstructor;
|
31813
|
-
modelValue:
|
31825
|
+
modelValue: {
|
31826
|
+
type: vue.PropType<boolean | null>;
|
31827
|
+
default: null;
|
31828
|
+
};
|
31814
31829
|
persistent: BooleanConstructor;
|
31815
31830
|
scrim: {
|
31816
31831
|
type: (StringConstructor | BooleanConstructor)[];
|
@@ -31918,7 +31933,10 @@ declare const VDialog: {
|
|
31918
31933
|
disabled: BooleanConstructor;
|
31919
31934
|
opacity: (StringConstructor | NumberConstructor)[];
|
31920
31935
|
noClickAnimation: BooleanConstructor;
|
31921
|
-
modelValue:
|
31936
|
+
modelValue: {
|
31937
|
+
type: vue.PropType<boolean | null>;
|
31938
|
+
default: null;
|
31939
|
+
};
|
31922
31940
|
persistent: BooleanConstructor;
|
31923
31941
|
scrim: {
|
31924
31942
|
type: (StringConstructor | BooleanConstructor)[];
|
@@ -34421,7 +34439,7 @@ declare const VFileInput: {
|
|
34421
34439
|
}) => vue.VNodeChild) | undefined;
|
34422
34440
|
} & {
|
34423
34441
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
34424
|
-
"onUpdate:modelValue"?: ((files: File[]) => any) | undefined;
|
34442
|
+
"onUpdate:modelValue"?: ((files: File | File[]) => any) | undefined;
|
34425
34443
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
34426
34444
|
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
34427
34445
|
}, HTMLInputElement & Omit<Omit<{
|
@@ -34673,7 +34691,7 @@ declare const VFileInput: {
|
|
34673
34691
|
'click:control': (e: MouseEvent) => true;
|
34674
34692
|
'mousedown:control': (e: MouseEvent) => true;
|
34675
34693
|
'update:focused': (focused: boolean) => true;
|
34676
|
-
'update:modelValue': (files: File[]) => true;
|
34694
|
+
'update:modelValue': (files: File | File[]) => true;
|
34677
34695
|
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
34678
34696
|
reverse: boolean;
|
34679
34697
|
flat: boolean;
|
@@ -34806,7 +34824,7 @@ declare const VFileInput: {
|
|
34806
34824
|
}) => vue.VNodeChild) | undefined;
|
34807
34825
|
} & {
|
34808
34826
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
34809
|
-
"onUpdate:modelValue"?: ((files: File[]) => any) | undefined;
|
34827
|
+
"onUpdate:modelValue"?: ((files: File | File[]) => any) | undefined;
|
34810
34828
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
34811
34829
|
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
34812
34830
|
}, {
|
@@ -35029,7 +35047,7 @@ declare const VFileInput: {
|
|
35029
35047
|
}) => vue.VNodeChild) | undefined;
|
35030
35048
|
} & {
|
35031
35049
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
35032
|
-
"onUpdate:modelValue"?: ((files: File[]) => any) | undefined;
|
35050
|
+
"onUpdate:modelValue"?: ((files: File | File[]) => any) | undefined;
|
35033
35051
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
35034
35052
|
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
35035
35053
|
}, HTMLInputElement & Omit<Omit<{
|
@@ -35448,7 +35466,7 @@ declare const VFileInput: {
|
|
35448
35466
|
}) => vue.VNodeChild) | undefined;
|
35449
35467
|
} & {
|
35450
35468
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
35451
|
-
"onUpdate:modelValue"?: ((files: File[]) => any) | undefined;
|
35469
|
+
"onUpdate:modelValue"?: ((files: File | File[]) => any) | undefined;
|
35452
35470
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
35453
35471
|
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
35454
35472
|
}, HTMLInputElement & Omit<Omit<{
|
@@ -35700,7 +35718,7 @@ declare const VFileInput: {
|
|
35700
35718
|
'click:control': (e: MouseEvent) => true;
|
35701
35719
|
'mousedown:control': (e: MouseEvent) => true;
|
35702
35720
|
'update:focused': (focused: boolean) => true;
|
35703
|
-
'update:modelValue': (files: File[]) => true;
|
35721
|
+
'update:modelValue': (files: File | File[]) => true;
|
35704
35722
|
}, string, {
|
35705
35723
|
reverse: boolean;
|
35706
35724
|
flat: boolean;
|
@@ -37811,29 +37829,29 @@ type VSpacer = InstanceType<typeof VSpacer>;
|
|
37811
37829
|
declare const VHover: {
|
37812
37830
|
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
37813
37831
|
disabled: boolean;
|
37832
|
+
modelValue: boolean;
|
37814
37833
|
} & {
|
37815
|
-
modelValue?: boolean | undefined;
|
37816
37834
|
closeDelay?: string | number | undefined;
|
37817
37835
|
openDelay?: string | number | undefined;
|
37818
37836
|
} & {
|
37819
37837
|
$children?: vue.VNodeChild | {
|
37820
37838
|
default?: ((arg: {
|
37821
|
-
isHovering: boolean |
|
37839
|
+
isHovering: boolean | null;
|
37822
37840
|
props: Record<string, unknown>;
|
37823
37841
|
}) => vue.VNodeChild) | undefined;
|
37824
37842
|
} | ((arg: {
|
37825
|
-
isHovering: boolean |
|
37843
|
+
isHovering: boolean | null;
|
37826
37844
|
props: Record<string, unknown>;
|
37827
37845
|
}) => vue.VNodeChild);
|
37828
37846
|
'v-slots'?: {
|
37829
37847
|
default?: false | ((arg: {
|
37830
|
-
isHovering: boolean |
|
37848
|
+
isHovering: boolean | null;
|
37831
37849
|
props: Record<string, unknown>;
|
37832
37850
|
}) => vue.VNodeChild) | undefined;
|
37833
37851
|
} | undefined;
|
37834
37852
|
} & {
|
37835
37853
|
"v-slot:default"?: false | ((arg: {
|
37836
|
-
isHovering: boolean |
|
37854
|
+
isHovering: boolean | null;
|
37837
37855
|
props: Record<string, unknown>;
|
37838
37856
|
}) => vue.VNodeChild) | undefined;
|
37839
37857
|
} & {
|
@@ -37844,29 +37862,29 @@ declare const VHover: {
|
|
37844
37862
|
'update:modelValue': (value: boolean) => true;
|
37845
37863
|
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
37846
37864
|
disabled: boolean;
|
37865
|
+
modelValue: boolean;
|
37847
37866
|
} & {
|
37848
|
-
modelValue?: boolean | undefined;
|
37849
37867
|
closeDelay?: string | number | undefined;
|
37850
37868
|
openDelay?: string | number | undefined;
|
37851
37869
|
} & {
|
37852
37870
|
$children?: vue.VNodeChild | {
|
37853
37871
|
default?: ((arg: {
|
37854
|
-
isHovering: boolean |
|
37872
|
+
isHovering: boolean | null;
|
37855
37873
|
props: Record<string, unknown>;
|
37856
37874
|
}) => vue.VNodeChild) | undefined;
|
37857
37875
|
} | ((arg: {
|
37858
|
-
isHovering: boolean |
|
37876
|
+
isHovering: boolean | null;
|
37859
37877
|
props: Record<string, unknown>;
|
37860
37878
|
}) => vue.VNodeChild);
|
37861
37879
|
'v-slots'?: {
|
37862
37880
|
default?: false | ((arg: {
|
37863
|
-
isHovering: boolean |
|
37881
|
+
isHovering: boolean | null;
|
37864
37882
|
props: Record<string, unknown>;
|
37865
37883
|
}) => vue.VNodeChild) | undefined;
|
37866
37884
|
} | undefined;
|
37867
37885
|
} & {
|
37868
37886
|
"v-slot:default"?: false | ((arg: {
|
37869
|
-
isHovering: boolean |
|
37887
|
+
isHovering: boolean | null;
|
37870
37888
|
props: Record<string, unknown>;
|
37871
37889
|
}) => vue.VNodeChild) | undefined;
|
37872
37890
|
} & {
|
@@ -37876,7 +37894,7 @@ declare const VHover: {
|
|
37876
37894
|
modelValue: boolean;
|
37877
37895
|
}, true, {}, vue.SlotsType<Partial<{
|
37878
37896
|
default: (arg: {
|
37879
|
-
isHovering: boolean |
|
37897
|
+
isHovering: boolean | null;
|
37880
37898
|
props: Record<string, unknown>;
|
37881
37899
|
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
37882
37900
|
[key: string]: any;
|
@@ -37890,29 +37908,29 @@ declare const VHover: {
|
|
37890
37908
|
Defaults: {};
|
37891
37909
|
}, {
|
37892
37910
|
disabled: boolean;
|
37911
|
+
modelValue: boolean;
|
37893
37912
|
} & {
|
37894
|
-
modelValue?: boolean | undefined;
|
37895
37913
|
closeDelay?: string | number | undefined;
|
37896
37914
|
openDelay?: string | number | undefined;
|
37897
37915
|
} & {
|
37898
37916
|
$children?: vue.VNodeChild | {
|
37899
37917
|
default?: ((arg: {
|
37900
|
-
isHovering: boolean |
|
37918
|
+
isHovering: boolean | null;
|
37901
37919
|
props: Record<string, unknown>;
|
37902
37920
|
}) => vue.VNodeChild) | undefined;
|
37903
37921
|
} | ((arg: {
|
37904
|
-
isHovering: boolean |
|
37922
|
+
isHovering: boolean | null;
|
37905
37923
|
props: Record<string, unknown>;
|
37906
37924
|
}) => vue.VNodeChild);
|
37907
37925
|
'v-slots'?: {
|
37908
37926
|
default?: false | ((arg: {
|
37909
|
-
isHovering: boolean |
|
37927
|
+
isHovering: boolean | null;
|
37910
37928
|
props: Record<string, unknown>;
|
37911
37929
|
}) => vue.VNodeChild) | undefined;
|
37912
37930
|
} | undefined;
|
37913
37931
|
} & {
|
37914
37932
|
"v-slot:default"?: false | ((arg: {
|
37915
|
-
isHovering: boolean |
|
37933
|
+
isHovering: boolean | null;
|
37916
37934
|
props: Record<string, unknown>;
|
37917
37935
|
}) => vue.VNodeChild) | undefined;
|
37918
37936
|
} & {
|
@@ -37928,29 +37946,29 @@ declare const VHover: {
|
|
37928
37946
|
__isSuspense?: undefined;
|
37929
37947
|
} & vue.ComponentOptionsBase<{
|
37930
37948
|
disabled: boolean;
|
37949
|
+
modelValue: boolean;
|
37931
37950
|
} & {
|
37932
|
-
modelValue?: boolean | undefined;
|
37933
37951
|
closeDelay?: string | number | undefined;
|
37934
37952
|
openDelay?: string | number | undefined;
|
37935
37953
|
} & {
|
37936
37954
|
$children?: vue.VNodeChild | {
|
37937
37955
|
default?: ((arg: {
|
37938
|
-
isHovering: boolean |
|
37956
|
+
isHovering: boolean | null;
|
37939
37957
|
props: Record<string, unknown>;
|
37940
37958
|
}) => vue.VNodeChild) | undefined;
|
37941
37959
|
} | ((arg: {
|
37942
|
-
isHovering: boolean |
|
37960
|
+
isHovering: boolean | null;
|
37943
37961
|
props: Record<string, unknown>;
|
37944
37962
|
}) => vue.VNodeChild);
|
37945
37963
|
'v-slots'?: {
|
37946
37964
|
default?: false | ((arg: {
|
37947
|
-
isHovering: boolean |
|
37965
|
+
isHovering: boolean | null;
|
37948
37966
|
props: Record<string, unknown>;
|
37949
37967
|
}) => vue.VNodeChild) | undefined;
|
37950
37968
|
} | undefined;
|
37951
37969
|
} & {
|
37952
37970
|
"v-slot:default"?: false | ((arg: {
|
37953
|
-
isHovering: boolean |
|
37971
|
+
isHovering: boolean | null;
|
37954
37972
|
props: Record<string, unknown>;
|
37955
37973
|
}) => vue.VNodeChild) | undefined;
|
37956
37974
|
} & {
|
@@ -37964,7 +37982,7 @@ declare const VHover: {
|
|
37964
37982
|
modelValue: boolean;
|
37965
37983
|
}, {}, string, vue.SlotsType<Partial<{
|
37966
37984
|
default: (arg: {
|
37967
|
-
isHovering: boolean |
|
37985
|
+
isHovering: boolean | null;
|
37968
37986
|
props: Record<string, unknown>;
|
37969
37987
|
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
37970
37988
|
[key: string]: any;
|
@@ -37975,7 +37993,7 @@ declare const VHover: {
|
|
37975
37993
|
disabled: BooleanConstructor;
|
37976
37994
|
modelValue: {
|
37977
37995
|
type: BooleanConstructor;
|
37978
|
-
default:
|
37996
|
+
default: null;
|
37979
37997
|
};
|
37980
37998
|
}, vue.ExtractPropTypes<{
|
37981
37999
|
closeDelay: (StringConstructor | NumberConstructor)[];
|
@@ -37983,7 +38001,7 @@ declare const VHover: {
|
|
37983
38001
|
disabled: BooleanConstructor;
|
37984
38002
|
modelValue: {
|
37985
38003
|
type: BooleanConstructor;
|
37986
|
-
default:
|
38004
|
+
default: null;
|
37987
38005
|
};
|
37988
38006
|
}>>;
|
37989
38007
|
type VHover = InstanceType<typeof VHover>;
|
@@ -41746,7 +41764,7 @@ declare const VMenu: {
|
|
41746
41764
|
component: Component;
|
41747
41765
|
};
|
41748
41766
|
zIndex: string | number;
|
41749
|
-
modelValue: boolean;
|
41767
|
+
modelValue: boolean | null;
|
41750
41768
|
origin: Anchor | "auto" | "overlap";
|
41751
41769
|
eager: boolean;
|
41752
41770
|
location: Anchor;
|
@@ -41831,7 +41849,7 @@ declare const VMenu: {
|
|
41831
41849
|
component?: Component | undefined;
|
41832
41850
|
});
|
41833
41851
|
zIndex: string | number;
|
41834
|
-
modelValue: boolean;
|
41852
|
+
modelValue: boolean | null;
|
41835
41853
|
origin: Anchor | "auto" | "overlap";
|
41836
41854
|
eager: boolean;
|
41837
41855
|
location: Anchor;
|
@@ -41858,7 +41876,7 @@ declare const VMenu: {
|
|
41858
41876
|
component?: Component | undefined;
|
41859
41877
|
});
|
41860
41878
|
zIndex: string | number;
|
41861
|
-
modelValue: boolean;
|
41879
|
+
modelValue: boolean | null;
|
41862
41880
|
origin: Anchor | "auto" | "overlap";
|
41863
41881
|
eager: boolean;
|
41864
41882
|
location: Anchor;
|
@@ -41936,7 +41954,7 @@ declare const VMenu: {
|
|
41936
41954
|
component?: Component | undefined;
|
41937
41955
|
});
|
41938
41956
|
zIndex: string | number;
|
41939
|
-
modelValue: boolean;
|
41957
|
+
modelValue: boolean | null;
|
41940
41958
|
origin: Anchor | "auto" | "overlap";
|
41941
41959
|
eager: boolean;
|
41942
41960
|
location: Anchor;
|
@@ -42043,7 +42061,7 @@ declare const VMenu: {
|
|
42043
42061
|
component?: Component | undefined;
|
42044
42062
|
});
|
42045
42063
|
zIndex: string | number;
|
42046
|
-
modelValue: boolean;
|
42064
|
+
modelValue: boolean | null;
|
42047
42065
|
origin: Anchor | "auto" | "overlap";
|
42048
42066
|
eager: boolean;
|
42049
42067
|
location: Anchor;
|
@@ -42139,7 +42157,7 @@ declare const VMenu: {
|
|
42139
42157
|
component?: Component | undefined;
|
42140
42158
|
});
|
42141
42159
|
zIndex: string | number;
|
42142
|
-
modelValue: boolean;
|
42160
|
+
modelValue: boolean | null;
|
42143
42161
|
origin: Anchor | "auto" | "overlap";
|
42144
42162
|
eager: boolean;
|
42145
42163
|
location: Anchor;
|
@@ -42199,7 +42217,7 @@ declare const VMenu: {
|
|
42199
42217
|
component?: Component | undefined;
|
42200
42218
|
});
|
42201
42219
|
zIndex: string | number;
|
42202
|
-
modelValue: boolean;
|
42220
|
+
modelValue: boolean | null;
|
42203
42221
|
origin: Anchor | "auto" | "overlap";
|
42204
42222
|
eager: boolean;
|
42205
42223
|
location: Anchor;
|
@@ -42293,7 +42311,7 @@ declare const VMenu: {
|
|
42293
42311
|
component: Component;
|
42294
42312
|
};
|
42295
42313
|
zIndex: string | number;
|
42296
|
-
modelValue: boolean;
|
42314
|
+
modelValue: boolean | null;
|
42297
42315
|
origin: Anchor | "auto" | "overlap";
|
42298
42316
|
eager: boolean;
|
42299
42317
|
location: Anchor;
|
@@ -42373,7 +42391,7 @@ declare const VMenu: {
|
|
42373
42391
|
component: Component;
|
42374
42392
|
};
|
42375
42393
|
zIndex: string | number;
|
42376
|
-
modelValue: boolean;
|
42394
|
+
modelValue: boolean | null;
|
42377
42395
|
origin: Anchor | "auto" | "overlap";
|
42378
42396
|
eager: boolean;
|
42379
42397
|
location: Anchor;
|
@@ -42422,7 +42440,7 @@ declare const VMenu: {
|
|
42422
42440
|
component: Component;
|
42423
42441
|
};
|
42424
42442
|
zIndex: string | number;
|
42425
|
-
modelValue: boolean;
|
42443
|
+
modelValue: boolean | null;
|
42426
42444
|
origin: Anchor | "auto" | "overlap";
|
42427
42445
|
eager: boolean;
|
42428
42446
|
location: Anchor;
|
@@ -42507,7 +42525,7 @@ declare const VMenu: {
|
|
42507
42525
|
component?: Component | undefined;
|
42508
42526
|
});
|
42509
42527
|
zIndex: string | number;
|
42510
|
-
modelValue: boolean;
|
42528
|
+
modelValue: boolean | null;
|
42511
42529
|
origin: Anchor | "auto" | "overlap";
|
42512
42530
|
eager: boolean;
|
42513
42531
|
location: Anchor;
|
@@ -42534,7 +42552,7 @@ declare const VMenu: {
|
|
42534
42552
|
component?: Component | undefined;
|
42535
42553
|
});
|
42536
42554
|
zIndex: string | number;
|
42537
|
-
modelValue: boolean;
|
42555
|
+
modelValue: boolean | null;
|
42538
42556
|
origin: Anchor | "auto" | "overlap";
|
42539
42557
|
eager: boolean;
|
42540
42558
|
location: Anchor;
|
@@ -42612,7 +42630,7 @@ declare const VMenu: {
|
|
42612
42630
|
component?: Component | undefined;
|
42613
42631
|
});
|
42614
42632
|
zIndex: string | number;
|
42615
|
-
modelValue: boolean;
|
42633
|
+
modelValue: boolean | null;
|
42616
42634
|
origin: Anchor | "auto" | "overlap";
|
42617
42635
|
eager: boolean;
|
42618
42636
|
location: Anchor;
|
@@ -42719,7 +42737,7 @@ declare const VMenu: {
|
|
42719
42737
|
component?: Component | undefined;
|
42720
42738
|
});
|
42721
42739
|
zIndex: string | number;
|
42722
|
-
modelValue: boolean;
|
42740
|
+
modelValue: boolean | null;
|
42723
42741
|
origin: Anchor | "auto" | "overlap";
|
42724
42742
|
eager: boolean;
|
42725
42743
|
location: Anchor;
|
@@ -42815,7 +42833,7 @@ declare const VMenu: {
|
|
42815
42833
|
component?: Component | undefined;
|
42816
42834
|
});
|
42817
42835
|
zIndex: string | number;
|
42818
|
-
modelValue: boolean;
|
42836
|
+
modelValue: boolean | null;
|
42819
42837
|
origin: Anchor | "auto" | "overlap";
|
42820
42838
|
eager: boolean;
|
42821
42839
|
location: Anchor;
|
@@ -42875,7 +42893,7 @@ declare const VMenu: {
|
|
42875
42893
|
component?: Component | undefined;
|
42876
42894
|
});
|
42877
42895
|
zIndex: string | number;
|
42878
|
-
modelValue: boolean;
|
42896
|
+
modelValue: boolean | null;
|
42879
42897
|
origin: Anchor | "auto" | "overlap";
|
42880
42898
|
eager: boolean;
|
42881
42899
|
location: Anchor;
|
@@ -42967,7 +42985,7 @@ declare const VMenu: {
|
|
42967
42985
|
component: Component;
|
42968
42986
|
};
|
42969
42987
|
zIndex: string | number;
|
42970
|
-
modelValue: boolean;
|
42988
|
+
modelValue: boolean | null;
|
42971
42989
|
origin: Anchor | "auto" | "overlap";
|
42972
42990
|
eager: boolean;
|
42973
42991
|
location: Anchor;
|
@@ -43000,7 +43018,7 @@ declare const VMenu: {
|
|
43000
43018
|
component: Component;
|
43001
43019
|
};
|
43002
43020
|
zIndex: string | number;
|
43003
|
-
modelValue: boolean;
|
43021
|
+
modelValue: boolean | null;
|
43004
43022
|
origin: Anchor | "auto" | "overlap";
|
43005
43023
|
eager: boolean;
|
43006
43024
|
location: Anchor;
|
@@ -43085,7 +43103,7 @@ declare const VMenu: {
|
|
43085
43103
|
component?: Component | undefined;
|
43086
43104
|
});
|
43087
43105
|
zIndex: string | number;
|
43088
|
-
modelValue: boolean;
|
43106
|
+
modelValue: boolean | null;
|
43089
43107
|
origin: Anchor | "auto" | "overlap";
|
43090
43108
|
eager: boolean;
|
43091
43109
|
location: Anchor;
|
@@ -43112,7 +43130,7 @@ declare const VMenu: {
|
|
43112
43130
|
component?: Component | undefined;
|
43113
43131
|
});
|
43114
43132
|
zIndex: string | number;
|
43115
|
-
modelValue: boolean;
|
43133
|
+
modelValue: boolean | null;
|
43116
43134
|
origin: Anchor | "auto" | "overlap";
|
43117
43135
|
eager: boolean;
|
43118
43136
|
location: Anchor;
|
@@ -43190,7 +43208,7 @@ declare const VMenu: {
|
|
43190
43208
|
component?: Component | undefined;
|
43191
43209
|
});
|
43192
43210
|
zIndex: string | number;
|
43193
|
-
modelValue: boolean;
|
43211
|
+
modelValue: boolean | null;
|
43194
43212
|
origin: Anchor | "auto" | "overlap";
|
43195
43213
|
eager: boolean;
|
43196
43214
|
location: Anchor;
|
@@ -43297,7 +43315,7 @@ declare const VMenu: {
|
|
43297
43315
|
component?: Component | undefined;
|
43298
43316
|
});
|
43299
43317
|
zIndex: string | number;
|
43300
|
-
modelValue: boolean;
|
43318
|
+
modelValue: boolean | null;
|
43301
43319
|
origin: Anchor | "auto" | "overlap";
|
43302
43320
|
eager: boolean;
|
43303
43321
|
location: Anchor;
|
@@ -43393,7 +43411,7 @@ declare const VMenu: {
|
|
43393
43411
|
component?: Component | undefined;
|
43394
43412
|
});
|
43395
43413
|
zIndex: string | number;
|
43396
|
-
modelValue: boolean;
|
43414
|
+
modelValue: boolean | null;
|
43397
43415
|
origin: Anchor | "auto" | "overlap";
|
43398
43416
|
eager: boolean;
|
43399
43417
|
location: Anchor;
|
@@ -43453,7 +43471,7 @@ declare const VMenu: {
|
|
43453
43471
|
component?: Component | undefined;
|
43454
43472
|
});
|
43455
43473
|
zIndex: string | number;
|
43456
|
-
modelValue: boolean;
|
43474
|
+
modelValue: boolean | null;
|
43457
43475
|
origin: Anchor | "auto" | "overlap";
|
43458
43476
|
eager: boolean;
|
43459
43477
|
location: Anchor;
|
@@ -43547,7 +43565,7 @@ declare const VMenu: {
|
|
43547
43565
|
component: Component;
|
43548
43566
|
};
|
43549
43567
|
zIndex: string | number;
|
43550
|
-
modelValue: boolean;
|
43568
|
+
modelValue: boolean | null;
|
43551
43569
|
origin: Anchor | "auto" | "overlap";
|
43552
43570
|
eager: boolean;
|
43553
43571
|
location: Anchor;
|
@@ -43614,7 +43632,10 @@ declare const VMenu: {
|
|
43614
43632
|
type: (StringConstructor | NumberConstructor)[];
|
43615
43633
|
default: number;
|
43616
43634
|
};
|
43617
|
-
modelValue:
|
43635
|
+
modelValue: {
|
43636
|
+
type: vue.PropType<boolean | null>;
|
43637
|
+
default: null;
|
43638
|
+
};
|
43618
43639
|
contentClass: null;
|
43619
43640
|
origin: {
|
43620
43641
|
type: vue.PropType<Anchor | "auto" | "overlap">;
|
@@ -43729,7 +43750,10 @@ declare const VMenu: {
|
|
43729
43750
|
type: (StringConstructor | NumberConstructor)[];
|
43730
43751
|
default: number;
|
43731
43752
|
};
|
43732
|
-
modelValue:
|
43753
|
+
modelValue: {
|
43754
|
+
type: vue.PropType<boolean | null>;
|
43755
|
+
default: null;
|
43756
|
+
};
|
43733
43757
|
contentClass: null;
|
43734
43758
|
origin: {
|
43735
43759
|
type: vue.PropType<Anchor | "auto" | "overlap">;
|
@@ -44711,7 +44735,7 @@ declare const VOverlay: {
|
|
44711
44735
|
component?: vue.Component | undefined;
|
44712
44736
|
});
|
44713
44737
|
zIndex: string | number;
|
44714
|
-
modelValue: boolean;
|
44738
|
+
modelValue: boolean | null;
|
44715
44739
|
origin: Anchor | "auto" | "overlap";
|
44716
44740
|
eager: boolean;
|
44717
44741
|
location: Anchor;
|
@@ -44807,7 +44831,7 @@ declare const VOverlay: {
|
|
44807
44831
|
component?: vue.Component | undefined;
|
44808
44832
|
});
|
44809
44833
|
zIndex: string | number;
|
44810
|
-
modelValue: boolean;
|
44834
|
+
modelValue: boolean | null;
|
44811
44835
|
origin: Anchor | "auto" | "overlap";
|
44812
44836
|
eager: boolean;
|
44813
44837
|
location: Anchor;
|
@@ -44889,7 +44913,7 @@ declare const VOverlay: {
|
|
44889
44913
|
component?: vue.Component | undefined;
|
44890
44914
|
});
|
44891
44915
|
zIndex: string | number;
|
44892
|
-
modelValue: boolean;
|
44916
|
+
modelValue: boolean | null;
|
44893
44917
|
origin: Anchor | "auto" | "overlap";
|
44894
44918
|
eager: boolean;
|
44895
44919
|
location: Anchor;
|
@@ -44936,7 +44960,7 @@ declare const VOverlay: {
|
|
44936
44960
|
component?: vue.Component | undefined;
|
44937
44961
|
});
|
44938
44962
|
zIndex: string | number;
|
44939
|
-
modelValue: boolean;
|
44963
|
+
modelValue: boolean | null;
|
44940
44964
|
origin: Anchor | "auto" | "overlap";
|
44941
44965
|
eager: boolean;
|
44942
44966
|
location: Anchor;
|
@@ -45027,7 +45051,7 @@ declare const VOverlay: {
|
|
45027
45051
|
component?: vue.Component | undefined;
|
45028
45052
|
});
|
45029
45053
|
zIndex: string | number;
|
45030
|
-
modelValue: boolean;
|
45054
|
+
modelValue: boolean | null;
|
45031
45055
|
origin: Anchor | "auto" | "overlap";
|
45032
45056
|
eager: boolean;
|
45033
45057
|
location: Anchor;
|
@@ -45058,7 +45082,7 @@ declare const VOverlay: {
|
|
45058
45082
|
component?: vue.Component | undefined;
|
45059
45083
|
});
|
45060
45084
|
zIndex: string | number;
|
45061
|
-
modelValue: boolean;
|
45085
|
+
modelValue: boolean | null;
|
45062
45086
|
origin: Anchor | "auto" | "overlap";
|
45063
45087
|
eager: boolean;
|
45064
45088
|
location: Anchor;
|
@@ -45154,7 +45178,7 @@ declare const VOverlay: {
|
|
45154
45178
|
component?: vue.Component | undefined;
|
45155
45179
|
});
|
45156
45180
|
zIndex: string | number;
|
45157
|
-
modelValue: boolean;
|
45181
|
+
modelValue: boolean | null;
|
45158
45182
|
origin: Anchor | "auto" | "overlap";
|
45159
45183
|
eager: boolean;
|
45160
45184
|
location: Anchor;
|
@@ -45258,7 +45282,10 @@ declare const VOverlay: {
|
|
45258
45282
|
disabled: BooleanConstructor;
|
45259
45283
|
opacity: (StringConstructor | NumberConstructor)[];
|
45260
45284
|
noClickAnimation: BooleanConstructor;
|
45261
|
-
modelValue:
|
45285
|
+
modelValue: {
|
45286
|
+
type: PropType<boolean | null>;
|
45287
|
+
default: null;
|
45288
|
+
};
|
45262
45289
|
persistent: BooleanConstructor;
|
45263
45290
|
scrim: {
|
45264
45291
|
type: (StringConstructor | BooleanConstructor)[];
|
@@ -45341,7 +45368,10 @@ declare const VOverlay: {
|
|
45341
45368
|
disabled: BooleanConstructor;
|
45342
45369
|
opacity: (StringConstructor | NumberConstructor)[];
|
45343
45370
|
noClickAnimation: BooleanConstructor;
|
45344
|
-
modelValue:
|
45371
|
+
modelValue: {
|
45372
|
+
type: PropType<boolean | null>;
|
45373
|
+
default: null;
|
45374
|
+
};
|
45345
45375
|
persistent: BooleanConstructor;
|
45346
45376
|
scrim: {
|
45347
45377
|
type: (StringConstructor | BooleanConstructor)[];
|
@@ -49480,7 +49510,7 @@ declare const VSelect: {
|
|
49480
49510
|
component: Component;
|
49481
49511
|
};
|
49482
49512
|
zIndex: string | number;
|
49483
|
-
modelValue: boolean;
|
49513
|
+
modelValue: boolean | null;
|
49484
49514
|
origin: Anchor | "auto" | "overlap";
|
49485
49515
|
eager: boolean;
|
49486
49516
|
location: Anchor;
|
@@ -49509,7 +49539,7 @@ declare const VSelect: {
|
|
49509
49539
|
component: Component;
|
49510
49540
|
};
|
49511
49541
|
zIndex: string | number;
|
49512
|
-
modelValue: boolean;
|
49542
|
+
modelValue: boolean | null;
|
49513
49543
|
origin: Anchor | "auto" | "overlap";
|
49514
49544
|
eager: boolean;
|
49515
49545
|
location: Anchor;
|
@@ -49585,7 +49615,7 @@ declare const VSelect: {
|
|
49585
49615
|
component: Component;
|
49586
49616
|
};
|
49587
49617
|
zIndex: string | number;
|
49588
|
-
modelValue: boolean;
|
49618
|
+
modelValue: boolean | null;
|
49589
49619
|
origin: Anchor | "auto" | "overlap";
|
49590
49620
|
eager: boolean;
|
49591
49621
|
location: Anchor;
|
@@ -50052,7 +50082,7 @@ declare const VSelect: {
|
|
50052
50082
|
component: Component;
|
50053
50083
|
};
|
50054
50084
|
zIndex: string | number;
|
50055
|
-
modelValue: boolean;
|
50085
|
+
modelValue: boolean | null;
|
50056
50086
|
origin: Anchor | "auto" | "overlap";
|
50057
50087
|
eager: boolean;
|
50058
50088
|
location: Anchor;
|
@@ -50081,7 +50111,7 @@ declare const VSelect: {
|
|
50081
50111
|
component: Component;
|
50082
50112
|
};
|
50083
50113
|
zIndex: string | number;
|
50084
|
-
modelValue: boolean;
|
50114
|
+
modelValue: boolean | null;
|
50085
50115
|
origin: Anchor | "auto" | "overlap";
|
50086
50116
|
eager: boolean;
|
50087
50117
|
location: Anchor;
|
@@ -50157,7 +50187,7 @@ declare const VSelect: {
|
|
50157
50187
|
component: Component;
|
50158
50188
|
};
|
50159
50189
|
zIndex: string | number;
|
50160
|
-
modelValue: boolean;
|
50190
|
+
modelValue: boolean | null;
|
50161
50191
|
origin: Anchor | "auto" | "overlap";
|
50162
50192
|
eager: boolean;
|
50163
50193
|
location: Anchor;
|
@@ -50737,7 +50767,7 @@ declare const VSelect: {
|
|
50737
50767
|
component: Component;
|
50738
50768
|
};
|
50739
50769
|
zIndex: string | number;
|
50740
|
-
modelValue: boolean;
|
50770
|
+
modelValue: boolean | null;
|
50741
50771
|
origin: Anchor | "auto" | "overlap";
|
50742
50772
|
eager: boolean;
|
50743
50773
|
location: Anchor;
|
@@ -50766,7 +50796,7 @@ declare const VSelect: {
|
|
50766
50796
|
component: Component;
|
50767
50797
|
};
|
50768
50798
|
zIndex: string | number;
|
50769
|
-
modelValue: boolean;
|
50799
|
+
modelValue: boolean | null;
|
50770
50800
|
origin: Anchor | "auto" | "overlap";
|
50771
50801
|
eager: boolean;
|
50772
50802
|
location: Anchor;
|
@@ -50842,7 +50872,7 @@ declare const VSelect: {
|
|
50842
50872
|
component: Component;
|
50843
50873
|
};
|
50844
50874
|
zIndex: string | number;
|
50845
|
-
modelValue: boolean;
|
50875
|
+
modelValue: boolean | null;
|
50846
50876
|
origin: Anchor | "auto" | "overlap";
|
50847
50877
|
eager: boolean;
|
50848
50878
|
location: Anchor;
|
@@ -51357,7 +51387,7 @@ declare const VSelect: {
|
|
51357
51387
|
component: Component;
|
51358
51388
|
};
|
51359
51389
|
zIndex: string | number;
|
51360
|
-
modelValue: boolean;
|
51390
|
+
modelValue: boolean | null;
|
51361
51391
|
origin: Anchor | "auto" | "overlap";
|
51362
51392
|
eager: boolean;
|
51363
51393
|
location: Anchor;
|
@@ -51386,7 +51416,7 @@ declare const VSelect: {
|
|
51386
51416
|
component: Component;
|
51387
51417
|
};
|
51388
51418
|
zIndex: string | number;
|
51389
|
-
modelValue: boolean;
|
51419
|
+
modelValue: boolean | null;
|
51390
51420
|
origin: Anchor | "auto" | "overlap";
|
51391
51421
|
eager: boolean;
|
51392
51422
|
location: Anchor;
|
@@ -51462,7 +51492,7 @@ declare const VSelect: {
|
|
51462
51492
|
component: Component;
|
51463
51493
|
};
|
51464
51494
|
zIndex: string | number;
|
51465
|
-
modelValue: boolean;
|
51495
|
+
modelValue: boolean | null;
|
51466
51496
|
origin: Anchor | "auto" | "overlap";
|
51467
51497
|
eager: boolean;
|
51468
51498
|
location: Anchor;
|
@@ -52193,7 +52223,7 @@ declare const VSelect: {
|
|
52193
52223
|
component: Component;
|
52194
52224
|
};
|
52195
52225
|
zIndex: string | number;
|
52196
|
-
modelValue: boolean;
|
52226
|
+
modelValue: boolean | null;
|
52197
52227
|
origin: Anchor | "auto" | "overlap";
|
52198
52228
|
eager: boolean;
|
52199
52229
|
location: Anchor;
|
@@ -52222,7 +52252,7 @@ declare const VSelect: {
|
|
52222
52252
|
component: Component;
|
52223
52253
|
};
|
52224
52254
|
zIndex: string | number;
|
52225
|
-
modelValue: boolean;
|
52255
|
+
modelValue: boolean | null;
|
52226
52256
|
origin: Anchor | "auto" | "overlap";
|
52227
52257
|
eager: boolean;
|
52228
52258
|
location: Anchor;
|
@@ -52298,7 +52328,7 @@ declare const VSelect: {
|
|
52298
52328
|
component: Component;
|
52299
52329
|
};
|
52300
52330
|
zIndex: string | number;
|
52301
|
-
modelValue: boolean;
|
52331
|
+
modelValue: boolean | null;
|
52302
52332
|
origin: Anchor | "auto" | "overlap";
|
52303
52333
|
eager: boolean;
|
52304
52334
|
location: Anchor;
|
@@ -52865,7 +52895,7 @@ declare const VSelect: {
|
|
52865
52895
|
component: Component;
|
52866
52896
|
};
|
52867
52897
|
zIndex: string | number;
|
52868
|
-
modelValue: boolean;
|
52898
|
+
modelValue: boolean | null;
|
52869
52899
|
origin: Anchor | "auto" | "overlap";
|
52870
52900
|
eager: boolean;
|
52871
52901
|
location: Anchor;
|
@@ -52894,7 +52924,7 @@ declare const VSelect: {
|
|
52894
52924
|
component: Component;
|
52895
52925
|
};
|
52896
52926
|
zIndex: string | number;
|
52897
|
-
modelValue: boolean;
|
52927
|
+
modelValue: boolean | null;
|
52898
52928
|
origin: Anchor | "auto" | "overlap";
|
52899
52929
|
eager: boolean;
|
52900
52930
|
location: Anchor;
|
@@ -52970,7 +53000,7 @@ declare const VSelect: {
|
|
52970
53000
|
component: Component;
|
52971
53001
|
};
|
52972
53002
|
zIndex: string | number;
|
52973
|
-
modelValue: boolean;
|
53003
|
+
modelValue: boolean | null;
|
52974
53004
|
origin: Anchor | "auto" | "overlap";
|
52975
53005
|
eager: boolean;
|
52976
53006
|
location: Anchor;
|
@@ -54778,7 +54808,7 @@ declare const VSnackbar: {
|
|
54778
54808
|
component?: vue.Component | undefined;
|
54779
54809
|
})>;
|
54780
54810
|
zIndex: string | number;
|
54781
|
-
modelValue: boolean;
|
54811
|
+
modelValue: boolean | null;
|
54782
54812
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
54783
54813
|
origin: Anchor | "auto" | "overlap";
|
54784
54814
|
vertical: boolean;
|
@@ -54828,7 +54858,7 @@ declare const VSnackbar: {
|
|
54828
54858
|
}) => vue.VNodeChild) | undefined;
|
54829
54859
|
default?: (() => vue.VNodeChild) | undefined;
|
54830
54860
|
actions?: ((arg: {
|
54831
|
-
isActive: Ref<boolean>;
|
54861
|
+
isActive: Ref<boolean | null>;
|
54832
54862
|
}) => vue.VNodeChild) | undefined;
|
54833
54863
|
text?: (() => vue.VNodeChild) | undefined;
|
54834
54864
|
};
|
@@ -54839,7 +54869,7 @@ declare const VSnackbar: {
|
|
54839
54869
|
}) => vue.VNodeChild) | undefined;
|
54840
54870
|
default?: false | (() => vue.VNodeChild) | undefined;
|
54841
54871
|
actions?: false | ((arg: {
|
54842
|
-
isActive: Ref<boolean>;
|
54872
|
+
isActive: Ref<boolean | null>;
|
54843
54873
|
}) => vue.VNodeChild) | undefined;
|
54844
54874
|
text?: false | (() => vue.VNodeChild) | undefined;
|
54845
54875
|
} | undefined;
|
@@ -54850,7 +54880,7 @@ declare const VSnackbar: {
|
|
54850
54880
|
}) => vue.VNodeChild) | undefined;
|
54851
54881
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
54852
54882
|
"v-slot:actions"?: false | ((arg: {
|
54853
|
-
isActive: Ref<boolean>;
|
54883
|
+
isActive: Ref<boolean | null>;
|
54854
54884
|
}) => vue.VNodeChild) | undefined;
|
54855
54885
|
"v-slot:text"?: false | (() => vue.VNodeChild) | undefined;
|
54856
54886
|
} & {
|
@@ -54866,7 +54896,7 @@ declare const VSnackbar: {
|
|
54866
54896
|
component?: vue.Component | undefined;
|
54867
54897
|
});
|
54868
54898
|
zIndex: string | number;
|
54869
|
-
modelValue: boolean;
|
54899
|
+
modelValue: boolean | null;
|
54870
54900
|
origin: Anchor | "auto" | "overlap";
|
54871
54901
|
eager: boolean;
|
54872
54902
|
location: Anchor;
|
@@ -54893,7 +54923,7 @@ declare const VSnackbar: {
|
|
54893
54923
|
component?: vue.Component | undefined;
|
54894
54924
|
});
|
54895
54925
|
zIndex: string | number;
|
54896
|
-
modelValue: boolean;
|
54926
|
+
modelValue: boolean | null;
|
54897
54927
|
origin: Anchor | "auto" | "overlap";
|
54898
54928
|
eager: boolean;
|
54899
54929
|
location: Anchor;
|
@@ -54971,7 +55001,7 @@ declare const VSnackbar: {
|
|
54971
55001
|
component?: vue.Component | undefined;
|
54972
55002
|
});
|
54973
55003
|
zIndex: string | number;
|
54974
|
-
modelValue: boolean;
|
55004
|
+
modelValue: boolean | null;
|
54975
55005
|
origin: Anchor | "auto" | "overlap";
|
54976
55006
|
eager: boolean;
|
54977
55007
|
location: Anchor;
|
@@ -55078,7 +55108,7 @@ declare const VSnackbar: {
|
|
55078
55108
|
component?: vue.Component | undefined;
|
55079
55109
|
});
|
55080
55110
|
zIndex: string | number;
|
55081
|
-
modelValue: boolean;
|
55111
|
+
modelValue: boolean | null;
|
55082
55112
|
origin: Anchor | "auto" | "overlap";
|
55083
55113
|
eager: boolean;
|
55084
55114
|
location: Anchor;
|
@@ -55174,7 +55204,7 @@ declare const VSnackbar: {
|
|
55174
55204
|
component?: vue.Component | undefined;
|
55175
55205
|
});
|
55176
55206
|
zIndex: string | number;
|
55177
|
-
modelValue: boolean;
|
55207
|
+
modelValue: boolean | null;
|
55178
55208
|
origin: Anchor | "auto" | "overlap";
|
55179
55209
|
eager: boolean;
|
55180
55210
|
location: Anchor;
|
@@ -55234,7 +55264,7 @@ declare const VSnackbar: {
|
|
55234
55264
|
component?: vue.Component | undefined;
|
55235
55265
|
});
|
55236
55266
|
zIndex: string | number;
|
55237
|
-
modelValue: boolean;
|
55267
|
+
modelValue: boolean | null;
|
55238
55268
|
origin: Anchor | "auto" | "overlap";
|
55239
55269
|
eager: boolean;
|
55240
55270
|
location: Anchor;
|
@@ -55327,7 +55357,7 @@ declare const VSnackbar: {
|
|
55327
55357
|
component?: vue.Component | undefined;
|
55328
55358
|
})>;
|
55329
55359
|
zIndex: string | number;
|
55330
|
-
modelValue: boolean;
|
55360
|
+
modelValue: boolean | null;
|
55331
55361
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
55332
55362
|
origin: Anchor | "auto" | "overlap";
|
55333
55363
|
vertical: boolean;
|
@@ -55377,7 +55407,7 @@ declare const VSnackbar: {
|
|
55377
55407
|
}) => vue.VNodeChild) | undefined;
|
55378
55408
|
default?: (() => vue.VNodeChild) | undefined;
|
55379
55409
|
actions?: ((arg: {
|
55380
|
-
isActive: Ref<boolean>;
|
55410
|
+
isActive: Ref<boolean | null>;
|
55381
55411
|
}) => vue.VNodeChild) | undefined;
|
55382
55412
|
text?: (() => vue.VNodeChild) | undefined;
|
55383
55413
|
};
|
@@ -55388,7 +55418,7 @@ declare const VSnackbar: {
|
|
55388
55418
|
}) => vue.VNodeChild) | undefined;
|
55389
55419
|
default?: false | (() => vue.VNodeChild) | undefined;
|
55390
55420
|
actions?: false | ((arg: {
|
55391
|
-
isActive: Ref<boolean>;
|
55421
|
+
isActive: Ref<boolean | null>;
|
55392
55422
|
}) => vue.VNodeChild) | undefined;
|
55393
55423
|
text?: false | (() => vue.VNodeChild) | undefined;
|
55394
55424
|
} | undefined;
|
@@ -55399,7 +55429,7 @@ declare const VSnackbar: {
|
|
55399
55429
|
}) => vue.VNodeChild) | undefined;
|
55400
55430
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
55401
55431
|
"v-slot:actions"?: false | ((arg: {
|
55402
|
-
isActive: Ref<boolean>;
|
55432
|
+
isActive: Ref<boolean | null>;
|
55403
55433
|
}) => vue.VNodeChild) | undefined;
|
55404
55434
|
"v-slot:text"?: false | (() => vue.VNodeChild) | undefined;
|
55405
55435
|
} & {
|
@@ -55412,7 +55442,7 @@ declare const VSnackbar: {
|
|
55412
55442
|
component?: vue.Component | undefined;
|
55413
55443
|
})>;
|
55414
55444
|
zIndex: string | number;
|
55415
|
-
modelValue: boolean;
|
55445
|
+
modelValue: boolean | null;
|
55416
55446
|
rounded: string | number | boolean;
|
55417
55447
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
55418
55448
|
origin: Anchor | "auto" | "overlap";
|
@@ -55443,7 +55473,7 @@ declare const VSnackbar: {
|
|
55443
55473
|
[key: string]: any;
|
55444
55474
|
}>[];
|
55445
55475
|
actions: (arg: {
|
55446
|
-
isActive: Ref<boolean>;
|
55476
|
+
isActive: Ref<boolean | null>;
|
55447
55477
|
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
55448
55478
|
[key: string]: any;
|
55449
55479
|
}>[];
|
@@ -55465,7 +55495,7 @@ declare const VSnackbar: {
|
|
55465
55495
|
component?: vue.Component | undefined;
|
55466
55496
|
})>;
|
55467
55497
|
zIndex: string | number;
|
55468
|
-
modelValue: boolean;
|
55498
|
+
modelValue: boolean | null;
|
55469
55499
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
55470
55500
|
origin: Anchor | "auto" | "overlap";
|
55471
55501
|
vertical: boolean;
|
@@ -55515,7 +55545,7 @@ declare const VSnackbar: {
|
|
55515
55545
|
}) => vue.VNodeChild) | undefined;
|
55516
55546
|
default?: (() => vue.VNodeChild) | undefined;
|
55517
55547
|
actions?: ((arg: {
|
55518
|
-
isActive: Ref<boolean>;
|
55548
|
+
isActive: Ref<boolean | null>;
|
55519
55549
|
}) => vue.VNodeChild) | undefined;
|
55520
55550
|
text?: (() => vue.VNodeChild) | undefined;
|
55521
55551
|
};
|
@@ -55526,7 +55556,7 @@ declare const VSnackbar: {
|
|
55526
55556
|
}) => vue.VNodeChild) | undefined;
|
55527
55557
|
default?: false | (() => vue.VNodeChild) | undefined;
|
55528
55558
|
actions?: false | ((arg: {
|
55529
|
-
isActive: Ref<boolean>;
|
55559
|
+
isActive: Ref<boolean | null>;
|
55530
55560
|
}) => vue.VNodeChild) | undefined;
|
55531
55561
|
text?: false | (() => vue.VNodeChild) | undefined;
|
55532
55562
|
} | undefined;
|
@@ -55537,7 +55567,7 @@ declare const VSnackbar: {
|
|
55537
55567
|
}) => vue.VNodeChild) | undefined;
|
55538
55568
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
55539
55569
|
"v-slot:actions"?: false | ((arg: {
|
55540
|
-
isActive: Ref<boolean>;
|
55570
|
+
isActive: Ref<boolean | null>;
|
55541
55571
|
}) => vue.VNodeChild) | undefined;
|
55542
55572
|
"v-slot:text"?: false | (() => vue.VNodeChild) | undefined;
|
55543
55573
|
} & {
|
@@ -55553,7 +55583,7 @@ declare const VSnackbar: {
|
|
55553
55583
|
component?: vue.Component | undefined;
|
55554
55584
|
});
|
55555
55585
|
zIndex: string | number;
|
55556
|
-
modelValue: boolean;
|
55586
|
+
modelValue: boolean | null;
|
55557
55587
|
origin: Anchor | "auto" | "overlap";
|
55558
55588
|
eager: boolean;
|
55559
55589
|
location: Anchor;
|
@@ -55580,7 +55610,7 @@ declare const VSnackbar: {
|
|
55580
55610
|
component?: vue.Component | undefined;
|
55581
55611
|
});
|
55582
55612
|
zIndex: string | number;
|
55583
|
-
modelValue: boolean;
|
55613
|
+
modelValue: boolean | null;
|
55584
55614
|
origin: Anchor | "auto" | "overlap";
|
55585
55615
|
eager: boolean;
|
55586
55616
|
location: Anchor;
|
@@ -55658,7 +55688,7 @@ declare const VSnackbar: {
|
|
55658
55688
|
component?: vue.Component | undefined;
|
55659
55689
|
});
|
55660
55690
|
zIndex: string | number;
|
55661
|
-
modelValue: boolean;
|
55691
|
+
modelValue: boolean | null;
|
55662
55692
|
origin: Anchor | "auto" | "overlap";
|
55663
55693
|
eager: boolean;
|
55664
55694
|
location: Anchor;
|
@@ -55765,7 +55795,7 @@ declare const VSnackbar: {
|
|
55765
55795
|
component?: vue.Component | undefined;
|
55766
55796
|
});
|
55767
55797
|
zIndex: string | number;
|
55768
|
-
modelValue: boolean;
|
55798
|
+
modelValue: boolean | null;
|
55769
55799
|
origin: Anchor | "auto" | "overlap";
|
55770
55800
|
eager: boolean;
|
55771
55801
|
location: Anchor;
|
@@ -55861,7 +55891,7 @@ declare const VSnackbar: {
|
|
55861
55891
|
component?: vue.Component | undefined;
|
55862
55892
|
});
|
55863
55893
|
zIndex: string | number;
|
55864
|
-
modelValue: boolean;
|
55894
|
+
modelValue: boolean | null;
|
55865
55895
|
origin: Anchor | "auto" | "overlap";
|
55866
55896
|
eager: boolean;
|
55867
55897
|
location: Anchor;
|
@@ -55921,7 +55951,7 @@ declare const VSnackbar: {
|
|
55921
55951
|
component?: vue.Component | undefined;
|
55922
55952
|
});
|
55923
55953
|
zIndex: string | number;
|
55924
|
-
modelValue: boolean;
|
55954
|
+
modelValue: boolean | null;
|
55925
55955
|
origin: Anchor | "auto" | "overlap";
|
55926
55956
|
eager: boolean;
|
55927
55957
|
location: Anchor;
|
@@ -56012,7 +56042,7 @@ declare const VSnackbar: {
|
|
56012
56042
|
component?: vue.Component | undefined;
|
56013
56043
|
})>;
|
56014
56044
|
zIndex: string | number;
|
56015
|
-
modelValue: boolean;
|
56045
|
+
modelValue: boolean | null;
|
56016
56046
|
rounded: string | number | boolean;
|
56017
56047
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
56018
56048
|
origin: Anchor | "auto" | "overlap";
|
@@ -56044,7 +56074,7 @@ declare const VSnackbar: {
|
|
56044
56074
|
component?: vue.Component | undefined;
|
56045
56075
|
})>;
|
56046
56076
|
zIndex: string | number;
|
56047
|
-
modelValue: boolean;
|
56077
|
+
modelValue: boolean | null;
|
56048
56078
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
56049
56079
|
origin: Anchor | "auto" | "overlap";
|
56050
56080
|
vertical: boolean;
|
@@ -56094,7 +56124,7 @@ declare const VSnackbar: {
|
|
56094
56124
|
}) => vue.VNodeChild) | undefined;
|
56095
56125
|
default?: (() => vue.VNodeChild) | undefined;
|
56096
56126
|
actions?: ((arg: {
|
56097
|
-
isActive: Ref<boolean>;
|
56127
|
+
isActive: Ref<boolean | null>;
|
56098
56128
|
}) => vue.VNodeChild) | undefined;
|
56099
56129
|
text?: (() => vue.VNodeChild) | undefined;
|
56100
56130
|
};
|
@@ -56105,7 +56135,7 @@ declare const VSnackbar: {
|
|
56105
56135
|
}) => vue.VNodeChild) | undefined;
|
56106
56136
|
default?: false | (() => vue.VNodeChild) | undefined;
|
56107
56137
|
actions?: false | ((arg: {
|
56108
|
-
isActive: Ref<boolean>;
|
56138
|
+
isActive: Ref<boolean | null>;
|
56109
56139
|
}) => vue.VNodeChild) | undefined;
|
56110
56140
|
text?: false | (() => vue.VNodeChild) | undefined;
|
56111
56141
|
} | undefined;
|
@@ -56116,7 +56146,7 @@ declare const VSnackbar: {
|
|
56116
56146
|
}) => vue.VNodeChild) | undefined;
|
56117
56147
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
56118
56148
|
"v-slot:actions"?: false | ((arg: {
|
56119
|
-
isActive: Ref<boolean>;
|
56149
|
+
isActive: Ref<boolean | null>;
|
56120
56150
|
}) => vue.VNodeChild) | undefined;
|
56121
56151
|
"v-slot:text"?: false | (() => vue.VNodeChild) | undefined;
|
56122
56152
|
} & {
|
@@ -56132,7 +56162,7 @@ declare const VSnackbar: {
|
|
56132
56162
|
component?: vue.Component | undefined;
|
56133
56163
|
});
|
56134
56164
|
zIndex: string | number;
|
56135
|
-
modelValue: boolean;
|
56165
|
+
modelValue: boolean | null;
|
56136
56166
|
origin: Anchor | "auto" | "overlap";
|
56137
56167
|
eager: boolean;
|
56138
56168
|
location: Anchor;
|
@@ -56159,7 +56189,7 @@ declare const VSnackbar: {
|
|
56159
56189
|
component?: vue.Component | undefined;
|
56160
56190
|
});
|
56161
56191
|
zIndex: string | number;
|
56162
|
-
modelValue: boolean;
|
56192
|
+
modelValue: boolean | null;
|
56163
56193
|
origin: Anchor | "auto" | "overlap";
|
56164
56194
|
eager: boolean;
|
56165
56195
|
location: Anchor;
|
@@ -56237,7 +56267,7 @@ declare const VSnackbar: {
|
|
56237
56267
|
component?: vue.Component | undefined;
|
56238
56268
|
});
|
56239
56269
|
zIndex: string | number;
|
56240
|
-
modelValue: boolean;
|
56270
|
+
modelValue: boolean | null;
|
56241
56271
|
origin: Anchor | "auto" | "overlap";
|
56242
56272
|
eager: boolean;
|
56243
56273
|
location: Anchor;
|
@@ -56344,7 +56374,7 @@ declare const VSnackbar: {
|
|
56344
56374
|
component?: vue.Component | undefined;
|
56345
56375
|
});
|
56346
56376
|
zIndex: string | number;
|
56347
|
-
modelValue: boolean;
|
56377
|
+
modelValue: boolean | null;
|
56348
56378
|
origin: Anchor | "auto" | "overlap";
|
56349
56379
|
eager: boolean;
|
56350
56380
|
location: Anchor;
|
@@ -56440,7 +56470,7 @@ declare const VSnackbar: {
|
|
56440
56470
|
component?: vue.Component | undefined;
|
56441
56471
|
});
|
56442
56472
|
zIndex: string | number;
|
56443
|
-
modelValue: boolean;
|
56473
|
+
modelValue: boolean | null;
|
56444
56474
|
origin: Anchor | "auto" | "overlap";
|
56445
56475
|
eager: boolean;
|
56446
56476
|
location: Anchor;
|
@@ -56500,7 +56530,7 @@ declare const VSnackbar: {
|
|
56500
56530
|
component?: vue.Component | undefined;
|
56501
56531
|
});
|
56502
56532
|
zIndex: string | number;
|
56503
|
-
modelValue: boolean;
|
56533
|
+
modelValue: boolean | null;
|
56504
56534
|
origin: Anchor | "auto" | "overlap";
|
56505
56535
|
eager: boolean;
|
56506
56536
|
location: Anchor;
|
@@ -56593,7 +56623,7 @@ declare const VSnackbar: {
|
|
56593
56623
|
component?: vue.Component | undefined;
|
56594
56624
|
})>;
|
56595
56625
|
zIndex: string | number;
|
56596
|
-
modelValue: boolean;
|
56626
|
+
modelValue: boolean | null;
|
56597
56627
|
rounded: string | number | boolean;
|
56598
56628
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
56599
56629
|
origin: Anchor | "auto" | "overlap";
|
@@ -56624,7 +56654,7 @@ declare const VSnackbar: {
|
|
56624
56654
|
[key: string]: any;
|
56625
56655
|
}>[];
|
56626
56656
|
actions: (arg: {
|
56627
|
-
isActive: Ref<boolean>;
|
56657
|
+
isActive: Ref<boolean | null>;
|
56628
56658
|
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
56629
56659
|
[key: string]: any;
|
56630
56660
|
}>[];
|
@@ -56662,7 +56692,10 @@ declare const VSnackbar: {
|
|
56662
56692
|
type: (StringConstructor | NumberConstructor)[];
|
56663
56693
|
default: number;
|
56664
56694
|
};
|
56665
|
-
modelValue:
|
56695
|
+
modelValue: {
|
56696
|
+
type: vue.PropType<boolean | null>;
|
56697
|
+
default: null;
|
56698
|
+
};
|
56666
56699
|
contentClass: null;
|
56667
56700
|
origin: {
|
56668
56701
|
type: vue.PropType<Anchor | "auto" | "overlap">;
|
@@ -56763,7 +56796,10 @@ declare const VSnackbar: {
|
|
56763
56796
|
type: (StringConstructor | NumberConstructor)[];
|
56764
56797
|
default: number;
|
56765
56798
|
};
|
56766
|
-
modelValue:
|
56799
|
+
modelValue: {
|
56800
|
+
type: vue.PropType<boolean | null>;
|
56801
|
+
default: null;
|
56802
|
+
};
|
56767
56803
|
contentClass: null;
|
56768
56804
|
origin: {
|
56769
56805
|
type: vue.PropType<Anchor | "auto" | "overlap">;
|
@@ -57240,7 +57276,7 @@ declare const VSpeedDial: {
|
|
57240
57276
|
component: vue.Component;
|
57241
57277
|
}>;
|
57242
57278
|
zIndex: string | number;
|
57243
|
-
modelValue: boolean;
|
57279
|
+
modelValue: boolean | null;
|
57244
57280
|
origin: Anchor | "auto" | "overlap";
|
57245
57281
|
minWidth: NonNullable<string | number>;
|
57246
57282
|
eager: boolean;
|
@@ -57322,7 +57358,7 @@ declare const VSpeedDial: {
|
|
57322
57358
|
component: vue.Component;
|
57323
57359
|
}>;
|
57324
57360
|
zIndex: string | number;
|
57325
|
-
modelValue: boolean;
|
57361
|
+
modelValue: boolean | null;
|
57326
57362
|
origin: Anchor | "auto" | "overlap";
|
57327
57363
|
minWidth: NonNullable<string | number>;
|
57328
57364
|
eager: boolean;
|
@@ -57402,7 +57438,7 @@ declare const VSpeedDial: {
|
|
57402
57438
|
component: vue.Component;
|
57403
57439
|
}>;
|
57404
57440
|
zIndex: string | number;
|
57405
|
-
modelValue: boolean;
|
57441
|
+
modelValue: boolean | null;
|
57406
57442
|
origin: Anchor | "auto" | "overlap";
|
57407
57443
|
minWidth: NonNullable<string | number>;
|
57408
57444
|
eager: boolean;
|
@@ -57453,7 +57489,7 @@ declare const VSpeedDial: {
|
|
57453
57489
|
component: vue.Component;
|
57454
57490
|
}>;
|
57455
57491
|
zIndex: string | number;
|
57456
|
-
modelValue: boolean;
|
57492
|
+
modelValue: boolean | null;
|
57457
57493
|
origin: Anchor | "auto" | "overlap";
|
57458
57494
|
minWidth: NonNullable<string | number>;
|
57459
57495
|
eager: boolean;
|
@@ -57533,7 +57569,7 @@ declare const VSpeedDial: {
|
|
57533
57569
|
component: vue.Component;
|
57534
57570
|
}>;
|
57535
57571
|
zIndex: string | number;
|
57536
|
-
modelValue: boolean;
|
57572
|
+
modelValue: boolean | null;
|
57537
57573
|
origin: Anchor | "auto" | "overlap";
|
57538
57574
|
minWidth: NonNullable<string | number>;
|
57539
57575
|
eager: boolean;
|
@@ -57568,7 +57604,7 @@ declare const VSpeedDial: {
|
|
57568
57604
|
component: vue.Component;
|
57569
57605
|
}>;
|
57570
57606
|
zIndex: string | number;
|
57571
|
-
modelValue: boolean;
|
57607
|
+
modelValue: boolean | null;
|
57572
57608
|
origin: Anchor | "auto" | "overlap";
|
57573
57609
|
minWidth: NonNullable<string | number>;
|
57574
57610
|
eager: boolean;
|
@@ -57650,7 +57686,7 @@ declare const VSpeedDial: {
|
|
57650
57686
|
component: vue.Component;
|
57651
57687
|
}>;
|
57652
57688
|
zIndex: string | number;
|
57653
|
-
modelValue: boolean;
|
57689
|
+
modelValue: boolean | null;
|
57654
57690
|
origin: Anchor | "auto" | "overlap";
|
57655
57691
|
minWidth: NonNullable<string | number>;
|
57656
57692
|
eager: boolean;
|
@@ -57732,7 +57768,10 @@ declare const VSpeedDial: {
|
|
57732
57768
|
type: (StringConstructor | NumberConstructor)[];
|
57733
57769
|
default: number;
|
57734
57770
|
};
|
57735
|
-
modelValue:
|
57771
|
+
modelValue: {
|
57772
|
+
type: vue.PropType<boolean | null>;
|
57773
|
+
default: null;
|
57774
|
+
};
|
57736
57775
|
contentClass: null;
|
57737
57776
|
origin: {
|
57738
57777
|
type: vue.PropType<Anchor | "auto" | "overlap">;
|
@@ -57873,7 +57912,10 @@ declare const VSpeedDial: {
|
|
57873
57912
|
type: (StringConstructor | NumberConstructor)[];
|
57874
57913
|
default: number;
|
57875
57914
|
};
|
57876
|
-
modelValue:
|
57915
|
+
modelValue: {
|
57916
|
+
type: vue.PropType<boolean | null>;
|
57917
|
+
default: null;
|
57918
|
+
};
|
57877
57919
|
contentClass: null;
|
57878
57920
|
origin: {
|
57879
57921
|
type: vue.PropType<Anchor | "auto" | "overlap">;
|
@@ -68196,7 +68238,7 @@ declare const VTooltip: {
|
|
68196
68238
|
component?: vue.Component | undefined;
|
68197
68239
|
})>;
|
68198
68240
|
zIndex: string | number;
|
68199
|
-
modelValue: boolean;
|
68241
|
+
modelValue: boolean | null;
|
68200
68242
|
origin: NonNullable<Anchor | "auto" | "overlap">;
|
68201
68243
|
minWidth: NonNullable<string | number>;
|
68202
68244
|
eager: boolean;
|
@@ -68277,7 +68319,7 @@ declare const VTooltip: {
|
|
68277
68319
|
component?: vue.Component | undefined;
|
68278
68320
|
});
|
68279
68321
|
zIndex: string | number;
|
68280
|
-
modelValue: boolean;
|
68322
|
+
modelValue: boolean | null;
|
68281
68323
|
origin: Anchor | "auto" | "overlap";
|
68282
68324
|
eager: boolean;
|
68283
68325
|
location: Anchor;
|
@@ -68304,7 +68346,7 @@ declare const VTooltip: {
|
|
68304
68346
|
component?: vue.Component | undefined;
|
68305
68347
|
});
|
68306
68348
|
zIndex: string | number;
|
68307
|
-
modelValue: boolean;
|
68349
|
+
modelValue: boolean | null;
|
68308
68350
|
origin: Anchor | "auto" | "overlap";
|
68309
68351
|
eager: boolean;
|
68310
68352
|
location: Anchor;
|
@@ -68382,7 +68424,7 @@ declare const VTooltip: {
|
|
68382
68424
|
component?: vue.Component | undefined;
|
68383
68425
|
});
|
68384
68426
|
zIndex: string | number;
|
68385
|
-
modelValue: boolean;
|
68427
|
+
modelValue: boolean | null;
|
68386
68428
|
origin: Anchor | "auto" | "overlap";
|
68387
68429
|
eager: boolean;
|
68388
68430
|
location: Anchor;
|
@@ -68489,7 +68531,7 @@ declare const VTooltip: {
|
|
68489
68531
|
component?: vue.Component | undefined;
|
68490
68532
|
});
|
68491
68533
|
zIndex: string | number;
|
68492
|
-
modelValue: boolean;
|
68534
|
+
modelValue: boolean | null;
|
68493
68535
|
origin: Anchor | "auto" | "overlap";
|
68494
68536
|
eager: boolean;
|
68495
68537
|
location: Anchor;
|
@@ -68585,7 +68627,7 @@ declare const VTooltip: {
|
|
68585
68627
|
component?: vue.Component | undefined;
|
68586
68628
|
});
|
68587
68629
|
zIndex: string | number;
|
68588
|
-
modelValue: boolean;
|
68630
|
+
modelValue: boolean | null;
|
68589
68631
|
origin: Anchor | "auto" | "overlap";
|
68590
68632
|
eager: boolean;
|
68591
68633
|
location: Anchor;
|
@@ -68645,7 +68687,7 @@ declare const VTooltip: {
|
|
68645
68687
|
component?: vue.Component | undefined;
|
68646
68688
|
});
|
68647
68689
|
zIndex: string | number;
|
68648
|
-
modelValue: boolean;
|
68690
|
+
modelValue: boolean | null;
|
68649
68691
|
origin: Anchor | "auto" | "overlap";
|
68650
68692
|
eager: boolean;
|
68651
68693
|
location: Anchor;
|
@@ -68738,7 +68780,7 @@ declare const VTooltip: {
|
|
68738
68780
|
component?: vue.Component | undefined;
|
68739
68781
|
})>;
|
68740
68782
|
zIndex: string | number;
|
68741
|
-
modelValue: boolean;
|
68783
|
+
modelValue: boolean | null;
|
68742
68784
|
origin: NonNullable<Anchor | "auto" | "overlap">;
|
68743
68785
|
minWidth: NonNullable<string | number>;
|
68744
68786
|
eager: boolean;
|
@@ -68816,7 +68858,7 @@ declare const VTooltip: {
|
|
68816
68858
|
component?: vue.Component | undefined;
|
68817
68859
|
})>;
|
68818
68860
|
zIndex: string | number;
|
68819
|
-
modelValue: boolean;
|
68861
|
+
modelValue: boolean | null;
|
68820
68862
|
origin: NonNullable<Anchor | "auto" | "overlap">;
|
68821
68863
|
minWidth: NonNullable<string | number>;
|
68822
68864
|
eager: boolean;
|
@@ -68862,7 +68904,7 @@ declare const VTooltip: {
|
|
68862
68904
|
component?: vue.Component | undefined;
|
68863
68905
|
})>;
|
68864
68906
|
zIndex: string | number;
|
68865
|
-
modelValue: boolean;
|
68907
|
+
modelValue: boolean | null;
|
68866
68908
|
origin: NonNullable<Anchor | "auto" | "overlap">;
|
68867
68909
|
minWidth: NonNullable<string | number>;
|
68868
68910
|
eager: boolean;
|
@@ -68943,7 +68985,7 @@ declare const VTooltip: {
|
|
68943
68985
|
component?: vue.Component | undefined;
|
68944
68986
|
});
|
68945
68987
|
zIndex: string | number;
|
68946
|
-
modelValue: boolean;
|
68988
|
+
modelValue: boolean | null;
|
68947
68989
|
origin: Anchor | "auto" | "overlap";
|
68948
68990
|
eager: boolean;
|
68949
68991
|
location: Anchor;
|
@@ -68970,7 +69012,7 @@ declare const VTooltip: {
|
|
68970
69012
|
component?: vue.Component | undefined;
|
68971
69013
|
});
|
68972
69014
|
zIndex: string | number;
|
68973
|
-
modelValue: boolean;
|
69015
|
+
modelValue: boolean | null;
|
68974
69016
|
origin: Anchor | "auto" | "overlap";
|
68975
69017
|
eager: boolean;
|
68976
69018
|
location: Anchor;
|
@@ -69048,7 +69090,7 @@ declare const VTooltip: {
|
|
69048
69090
|
component?: vue.Component | undefined;
|
69049
69091
|
});
|
69050
69092
|
zIndex: string | number;
|
69051
|
-
modelValue: boolean;
|
69093
|
+
modelValue: boolean | null;
|
69052
69094
|
origin: Anchor | "auto" | "overlap";
|
69053
69095
|
eager: boolean;
|
69054
69096
|
location: Anchor;
|
@@ -69155,7 +69197,7 @@ declare const VTooltip: {
|
|
69155
69197
|
component?: vue.Component | undefined;
|
69156
69198
|
});
|
69157
69199
|
zIndex: string | number;
|
69158
|
-
modelValue: boolean;
|
69200
|
+
modelValue: boolean | null;
|
69159
69201
|
origin: Anchor | "auto" | "overlap";
|
69160
69202
|
eager: boolean;
|
69161
69203
|
location: Anchor;
|
@@ -69251,7 +69293,7 @@ declare const VTooltip: {
|
|
69251
69293
|
component?: vue.Component | undefined;
|
69252
69294
|
});
|
69253
69295
|
zIndex: string | number;
|
69254
|
-
modelValue: boolean;
|
69296
|
+
modelValue: boolean | null;
|
69255
69297
|
origin: Anchor | "auto" | "overlap";
|
69256
69298
|
eager: boolean;
|
69257
69299
|
location: Anchor;
|
@@ -69311,7 +69353,7 @@ declare const VTooltip: {
|
|
69311
69353
|
component?: vue.Component | undefined;
|
69312
69354
|
});
|
69313
69355
|
zIndex: string | number;
|
69314
|
-
modelValue: boolean;
|
69356
|
+
modelValue: boolean | null;
|
69315
69357
|
origin: Anchor | "auto" | "overlap";
|
69316
69358
|
eager: boolean;
|
69317
69359
|
location: Anchor;
|
@@ -69402,7 +69444,7 @@ declare const VTooltip: {
|
|
69402
69444
|
component?: vue.Component | undefined;
|
69403
69445
|
})>;
|
69404
69446
|
zIndex: string | number;
|
69405
|
-
modelValue: boolean;
|
69447
|
+
modelValue: boolean | null;
|
69406
69448
|
origin: NonNullable<Anchor | "auto" | "overlap">;
|
69407
69449
|
minWidth: NonNullable<string | number>;
|
69408
69450
|
eager: boolean;
|
@@ -69432,7 +69474,7 @@ declare const VTooltip: {
|
|
69432
69474
|
component?: vue.Component | undefined;
|
69433
69475
|
})>;
|
69434
69476
|
zIndex: string | number;
|
69435
|
-
modelValue: boolean;
|
69477
|
+
modelValue: boolean | null;
|
69436
69478
|
origin: NonNullable<Anchor | "auto" | "overlap">;
|
69437
69479
|
minWidth: NonNullable<string | number>;
|
69438
69480
|
eager: boolean;
|
@@ -69513,7 +69555,7 @@ declare const VTooltip: {
|
|
69513
69555
|
component?: vue.Component | undefined;
|
69514
69556
|
});
|
69515
69557
|
zIndex: string | number;
|
69516
|
-
modelValue: boolean;
|
69558
|
+
modelValue: boolean | null;
|
69517
69559
|
origin: Anchor | "auto" | "overlap";
|
69518
69560
|
eager: boolean;
|
69519
69561
|
location: Anchor;
|
@@ -69540,7 +69582,7 @@ declare const VTooltip: {
|
|
69540
69582
|
component?: vue.Component | undefined;
|
69541
69583
|
});
|
69542
69584
|
zIndex: string | number;
|
69543
|
-
modelValue: boolean;
|
69585
|
+
modelValue: boolean | null;
|
69544
69586
|
origin: Anchor | "auto" | "overlap";
|
69545
69587
|
eager: boolean;
|
69546
69588
|
location: Anchor;
|
@@ -69618,7 +69660,7 @@ declare const VTooltip: {
|
|
69618
69660
|
component?: vue.Component | undefined;
|
69619
69661
|
});
|
69620
69662
|
zIndex: string | number;
|
69621
|
-
modelValue: boolean;
|
69663
|
+
modelValue: boolean | null;
|
69622
69664
|
origin: Anchor | "auto" | "overlap";
|
69623
69665
|
eager: boolean;
|
69624
69666
|
location: Anchor;
|
@@ -69725,7 +69767,7 @@ declare const VTooltip: {
|
|
69725
69767
|
component?: vue.Component | undefined;
|
69726
69768
|
});
|
69727
69769
|
zIndex: string | number;
|
69728
|
-
modelValue: boolean;
|
69770
|
+
modelValue: boolean | null;
|
69729
69771
|
origin: Anchor | "auto" | "overlap";
|
69730
69772
|
eager: boolean;
|
69731
69773
|
location: Anchor;
|
@@ -69821,7 +69863,7 @@ declare const VTooltip: {
|
|
69821
69863
|
component?: vue.Component | undefined;
|
69822
69864
|
});
|
69823
69865
|
zIndex: string | number;
|
69824
|
-
modelValue: boolean;
|
69866
|
+
modelValue: boolean | null;
|
69825
69867
|
origin: Anchor | "auto" | "overlap";
|
69826
69868
|
eager: boolean;
|
69827
69869
|
location: Anchor;
|
@@ -69881,7 +69923,7 @@ declare const VTooltip: {
|
|
69881
69923
|
component?: vue.Component | undefined;
|
69882
69924
|
});
|
69883
69925
|
zIndex: string | number;
|
69884
|
-
modelValue: boolean;
|
69926
|
+
modelValue: boolean | null;
|
69885
69927
|
origin: Anchor | "auto" | "overlap";
|
69886
69928
|
eager: boolean;
|
69887
69929
|
location: Anchor;
|
@@ -69974,7 +70016,7 @@ declare const VTooltip: {
|
|
69974
70016
|
component?: vue.Component | undefined;
|
69975
70017
|
})>;
|
69976
70018
|
zIndex: string | number;
|
69977
|
-
modelValue: boolean;
|
70019
|
+
modelValue: boolean | null;
|
69978
70020
|
origin: NonNullable<Anchor | "auto" | "overlap">;
|
69979
70021
|
minWidth: NonNullable<string | number>;
|
69980
70022
|
eager: boolean;
|
@@ -70038,7 +70080,10 @@ declare const VTooltip: {
|
|
70038
70080
|
type: (StringConstructor | NumberConstructor)[];
|
70039
70081
|
default: number;
|
70040
70082
|
};
|
70041
|
-
modelValue:
|
70083
|
+
modelValue: {
|
70084
|
+
type: vue.PropType<boolean | null>;
|
70085
|
+
default: null;
|
70086
|
+
};
|
70042
70087
|
contentClass: null;
|
70043
70088
|
origin: Omit<{
|
70044
70089
|
type: vue.PropType<Anchor | "auto" | "overlap">;
|
@@ -70164,7 +70209,10 @@ declare const VTooltip: {
|
|
70164
70209
|
type: (StringConstructor | NumberConstructor)[];
|
70165
70210
|
default: number;
|
70166
70211
|
};
|
70167
|
-
modelValue:
|
70212
|
+
modelValue: {
|
70213
|
+
type: vue.PropType<boolean | null>;
|
70214
|
+
default: null;
|
70215
|
+
};
|
70168
70216
|
contentClass: null;
|
70169
70217
|
origin: Omit<{
|
70170
70218
|
type: vue.PropType<Anchor | "auto" | "overlap">;
|
@@ -73324,23 +73372,22 @@ declare module '@vue/runtime-core' {
|
|
73324
73372
|
|
73325
73373
|
export interface GlobalComponents {
|
73326
73374
|
VApp: typeof import('vuetify/components')['VApp']
|
73375
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
73327
73376
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
73328
73377
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
73329
73378
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
73330
73379
|
VAlert: typeof import('vuetify/components')['VAlert']
|
73331
73380
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
73332
|
-
|
73333
|
-
|
73334
|
-
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
73335
|
-
VBannerText: typeof import('vuetify/components')['VBannerText']
|
73381
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
73382
|
+
VAvatar: typeof import('vuetify/components')['VAvatar']
|
73336
73383
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
73337
73384
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
73338
73385
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
73339
|
-
VBadge: typeof import('vuetify/components')['VBadge']
|
73340
|
-
VAvatar: typeof import('vuetify/components')['VAvatar']
|
73341
|
-
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
73342
73386
|
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
73343
73387
|
VBtn: typeof import('vuetify/components')['VBtn']
|
73388
|
+
VBanner: typeof import('vuetify/components')['VBanner']
|
73389
|
+
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
73390
|
+
VBannerText: typeof import('vuetify/components')['VBannerText']
|
73344
73391
|
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
73345
73392
|
VCard: typeof import('vuetify/components')['VCard']
|
73346
73393
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
@@ -73349,17 +73396,23 @@ declare module '@vue/runtime-core' {
|
|
73349
73396
|
VCardText: typeof import('vuetify/components')['VCardText']
|
73350
73397
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
73351
73398
|
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
73399
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
73352
73400
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
73353
73401
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
73354
|
-
VChip: typeof import('vuetify/components')['VChip']
|
73355
|
-
VCode: typeof import('vuetify/components')['VCode']
|
73356
|
-
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
73357
73402
|
VCarousel: typeof import('vuetify/components')['VCarousel']
|
73358
73403
|
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
73359
73404
|
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
73405
|
+
VCode: typeof import('vuetify/components')['VCode']
|
73406
|
+
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
73407
|
+
VChip: typeof import('vuetify/components')['VChip']
|
73360
73408
|
VCombobox: typeof import('vuetify/components')['VCombobox']
|
73361
73409
|
VCounter: typeof import('vuetify/components')['VCounter']
|
73362
|
-
|
73410
|
+
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
73411
|
+
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
73412
|
+
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
73413
|
+
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
73414
|
+
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
73415
|
+
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
73363
73416
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
73364
73417
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
73365
73418
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
@@ -73367,18 +73420,14 @@ declare module '@vue/runtime-core' {
|
|
73367
73420
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
73368
73421
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
73369
73422
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
73370
|
-
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
73371
|
-
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
73372
|
-
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
73373
|
-
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
73374
|
-
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
73375
|
-
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
73376
|
-
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
73377
|
-
VDivider: typeof import('vuetify/components')['VDivider']
|
73378
73423
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
73379
73424
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
73380
73425
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
73381
73426
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
73427
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
73428
|
+
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
73429
|
+
VDialog: typeof import('vuetify/components')['VDialog']
|
73430
|
+
VFab: typeof import('vuetify/components')['VFab']
|
73382
73431
|
VField: typeof import('vuetify/components')['VField']
|
73383
73432
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
73384
73433
|
VFileInput: typeof import('vuetify/components')['VFileInput']
|
@@ -73388,14 +73437,14 @@ declare module '@vue/runtime-core' {
|
|
73388
73437
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
73389
73438
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
73390
73439
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
73391
|
-
VImg: typeof import('vuetify/components')['VImg']
|
73392
|
-
VFab: typeof import('vuetify/components')['VFab']
|
73393
73440
|
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
73441
|
+
VInput: typeof import('vuetify/components')['VInput']
|
73394
73442
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
73395
73443
|
VItem: typeof import('vuetify/components')['VItem']
|
73396
|
-
|
73397
|
-
VLabel: typeof import('vuetify/components')['VLabel']
|
73444
|
+
VImg: typeof import('vuetify/components')['VImg']
|
73398
73445
|
VKbd: typeof import('vuetify/components')['VKbd']
|
73446
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
73447
|
+
VMain: typeof import('vuetify/components')['VMain']
|
73399
73448
|
VList: typeof import('vuetify/components')['VList']
|
73400
73449
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
73401
73450
|
VListImg: typeof import('vuetify/components')['VListImg']
|
@@ -73405,27 +73454,25 @@ declare module '@vue/runtime-core' {
|
|
73405
73454
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
73406
73455
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
73407
73456
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
73408
|
-
VMain: typeof import('vuetify/components')['VMain']
|
73409
|
-
VMessages: typeof import('vuetify/components')['VMessages']
|
73410
73457
|
VMenu: typeof import('vuetify/components')['VMenu']
|
73411
|
-
|
73458
|
+
VMessages: typeof import('vuetify/components')['VMessages']
|
73412
73459
|
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
73413
|
-
|
73414
|
-
VPagination: typeof import('vuetify/components')['VPagination']
|
73460
|
+
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
73415
73461
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
73416
|
-
VSelect: typeof import('vuetify/components')['VSelect']
|
73417
73462
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
73418
|
-
|
73463
|
+
VPagination: typeof import('vuetify/components')['VPagination']
|
73464
|
+
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
73419
73465
|
VRating: typeof import('vuetify/components')['VRating']
|
73466
|
+
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
73467
|
+
VSelect: typeof import('vuetify/components')['VSelect']
|
73468
|
+
VSheet: typeof import('vuetify/components')['VSheet']
|
73420
73469
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
73421
|
-
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
73422
|
-
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
73423
73470
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
73424
73471
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
73425
|
-
|
73426
|
-
VSlider: typeof import('vuetify/components')['VSlider']
|
73472
|
+
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
73427
73473
|
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
73428
|
-
|
73474
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
73475
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
73429
73476
|
VStepper: typeof import('vuetify/components')['VStepper']
|
73430
73477
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
73431
73478
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
@@ -73437,11 +73484,12 @@ declare module '@vue/runtime-core' {
|
|
73437
73484
|
VTabs: typeof import('vuetify/components')['VTabs']
|
73438
73485
|
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
73439
73486
|
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
73487
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
73440
73488
|
VTable: typeof import('vuetify/components')['VTable']
|
73441
73489
|
VTextField: typeof import('vuetify/components')['VTextField']
|
73442
|
-
VTextarea: typeof import('vuetify/components')['VTextarea']
|
73443
73490
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
73444
73491
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
73492
|
+
VTextarea: typeof import('vuetify/components')['VTextarea']
|
73445
73493
|
VTooltip: typeof import('vuetify/components')['VTooltip']
|
73446
73494
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
73447
73495
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
@@ -73463,8 +73511,8 @@ declare module '@vue/runtime-core' {
|
|
73463
73511
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
73464
73512
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
73465
73513
|
VParallax: typeof import('vuetify/components')['VParallax']
|
73466
|
-
VRadio: typeof import('vuetify/components')['VRadio']
|
73467
73514
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
73515
|
+
VRadio: typeof import('vuetify/components')['VRadio']
|
73468
73516
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
73469
73517
|
VSparkline: typeof import('vuetify/components')['VSparkline']
|
73470
73518
|
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
@@ -73487,23 +73535,23 @@ declare module '@vue/runtime-core' {
|
|
73487
73535
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
73488
73536
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
73489
73537
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
73490
|
-
|
73538
|
+
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
73539
|
+
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
73491
73540
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
73492
73541
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
73493
73542
|
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
73494
73543
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
73495
73544
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
73496
73545
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
73497
|
-
|
73498
|
-
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
73499
|
-
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
73500
|
-
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
73501
|
-
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
73546
|
+
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
73502
73547
|
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
73503
73548
|
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
73504
73549
|
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
73505
|
-
|
73550
|
+
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
73551
|
+
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
73552
|
+
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
73506
73553
|
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
73507
73554
|
VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
|
73555
|
+
VDateInput: typeof import('vuetify/labs/components')['VDateInput']
|
73508
73556
|
}
|
73509
73557
|
}
|