@vuetify/nightly 3.7.0-beta.1-dev.2024-07-29 → 3.7.0-beta.1-dev.2024-07-30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/json/attributes.json +8 -0
- package/dist/json/importMap-labs.json +28 -28
- package/dist/json/importMap.json +118 -118
- package/dist/json/tags.json +2 -0
- package/dist/json/web-types.json +21 -2
- package/dist/vuetify-labs.css +3545 -3545
- package/dist/vuetify-labs.d.ts +190 -106
- package/dist/vuetify-labs.esm.js +30 -13
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +30 -13
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +2151 -2151
- package/dist/vuetify.d.ts +231 -147
- package/dist/vuetify.esm.js +30 -13
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +30 -13
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +43 -43
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/index.d.mts +42 -24
- package/lib/components/VCombobox/index.d.mts +42 -24
- package/lib/components/VDialog/index.d.mts +3 -3
- package/lib/components/VList/VListItem.mjs +1 -1
- package/lib/components/VList/VListItem.mjs.map +1 -1
- package/lib/components/VMenu/VMenu.mjs +19 -3
- package/lib/components/VMenu/VMenu.mjs.map +1 -1
- package/lib/components/VMenu/index.d.mts +27 -12
- package/lib/components/VOverlay/VOverlay.mjs +5 -4
- package/lib/components/VOverlay/VOverlay.mjs.map +1 -1
- package/lib/components/VOverlay/useActivator.mjs +3 -2
- package/lib/components/VOverlay/useActivator.mjs.map +1 -1
- package/lib/components/VSelect/index.d.mts +42 -24
- package/lib/components/VSnackbar/index.d.mts +3 -3
- package/lib/components/VSpeedDial/index.d.mts +28 -13
- package/lib/components/VTooltip/index.d.mts +3 -3
- package/lib/components/index.d.mts +190 -106
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +41 -41
- package/lib/labs/VSnackbarQueue/index.d.mts +3 -3
- package/lib/labs/components.d.mts +3 -3
- package/package.json +1 -1
package/dist/vuetify.d.ts
CHANGED
@@ -5202,7 +5202,7 @@ declare const VAutocomplete: {
|
|
5202
5202
|
}) => vue.VNodeChild) | undefined;
|
5203
5203
|
}) | undefined;
|
5204
5204
|
menuProps?: (Partial<{
|
5205
|
-
location: Anchor;
|
5205
|
+
location: NonNullable<Anchor> | undefined;
|
5206
5206
|
origin: "auto" | Anchor | "overlap";
|
5207
5207
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
5208
5208
|
component?: vue.Component | undefined;
|
@@ -5230,8 +5230,9 @@ declare const VAutocomplete: {
|
|
5230
5230
|
noClickAnimation: boolean;
|
5231
5231
|
persistent: boolean;
|
5232
5232
|
scrim: NonNullable<string | boolean>;
|
5233
|
+
submenu: boolean;
|
5233
5234
|
}> & Omit<{
|
5234
|
-
location: Anchor;
|
5235
|
+
location: NonNullable<Anchor> | undefined;
|
5235
5236
|
origin: "auto" | Anchor | "overlap";
|
5236
5237
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
5237
5238
|
component?: vue.Component | undefined;
|
@@ -5257,6 +5258,7 @@ declare const VAutocomplete: {
|
|
5257
5258
|
noClickAnimation: boolean;
|
5258
5259
|
persistent: boolean;
|
5259
5260
|
scrim: NonNullable<string | boolean>;
|
5261
|
+
submenu: boolean;
|
5260
5262
|
offset?: string | number | number[] | undefined;
|
5261
5263
|
id?: string | undefined;
|
5262
5264
|
height?: string | number | undefined;
|
@@ -5307,7 +5309,7 @@ declare const VAutocomplete: {
|
|
5307
5309
|
}) => vue.VNodeChild) | undefined;
|
5308
5310
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
5309
5311
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
5310
|
-
location: Anchor;
|
5312
|
+
location: NonNullable<Anchor> | undefined;
|
5311
5313
|
origin: "auto" | Anchor | "overlap";
|
5312
5314
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
5313
5315
|
component?: vue.Component | undefined;
|
@@ -5333,6 +5335,7 @@ declare const VAutocomplete: {
|
|
5333
5335
|
noClickAnimation: boolean;
|
5334
5336
|
persistent: boolean;
|
5335
5337
|
scrim: NonNullable<string | boolean>;
|
5338
|
+
submenu: boolean;
|
5336
5339
|
} & {
|
5337
5340
|
offset?: string | number | number[] | undefined;
|
5338
5341
|
id?: string | undefined;
|
@@ -5386,7 +5389,7 @@ declare const VAutocomplete: {
|
|
5386
5389
|
}) => vue.VNodeChild) | undefined;
|
5387
5390
|
} & {
|
5388
5391
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
5389
|
-
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">) | undefined;
|
5392
|
+
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "submenu">) | undefined;
|
5390
5393
|
itemColor?: string | undefined;
|
5391
5394
|
autoSelectFirst?: boolean | "exact" | undefined;
|
5392
5395
|
} & {
|
@@ -5742,7 +5745,7 @@ declare const VAutocomplete: {
|
|
5742
5745
|
}) => vue.VNodeChild) | undefined;
|
5743
5746
|
}) | undefined;
|
5744
5747
|
menuProps?: (Partial<{
|
5745
|
-
location: Anchor;
|
5748
|
+
location: NonNullable<Anchor> | undefined;
|
5746
5749
|
origin: "auto" | Anchor | "overlap";
|
5747
5750
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
5748
5751
|
component?: vue.Component | undefined;
|
@@ -5770,8 +5773,9 @@ declare const VAutocomplete: {
|
|
5770
5773
|
noClickAnimation: boolean;
|
5771
5774
|
persistent: boolean;
|
5772
5775
|
scrim: NonNullable<string | boolean>;
|
5776
|
+
submenu: boolean;
|
5773
5777
|
}> & Omit<{
|
5774
|
-
location: Anchor;
|
5778
|
+
location: NonNullable<Anchor> | undefined;
|
5775
5779
|
origin: "auto" | Anchor | "overlap";
|
5776
5780
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
5777
5781
|
component?: vue.Component | undefined;
|
@@ -5797,6 +5801,7 @@ declare const VAutocomplete: {
|
|
5797
5801
|
noClickAnimation: boolean;
|
5798
5802
|
persistent: boolean;
|
5799
5803
|
scrim: NonNullable<string | boolean>;
|
5804
|
+
submenu: boolean;
|
5800
5805
|
offset?: string | number | number[] | undefined;
|
5801
5806
|
id?: string | undefined;
|
5802
5807
|
height?: string | number | undefined;
|
@@ -5847,7 +5852,7 @@ declare const VAutocomplete: {
|
|
5847
5852
|
}) => vue.VNodeChild) | undefined;
|
5848
5853
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
5849
5854
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
5850
|
-
location: Anchor;
|
5855
|
+
location: NonNullable<Anchor> | undefined;
|
5851
5856
|
origin: "auto" | Anchor | "overlap";
|
5852
5857
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
5853
5858
|
component?: vue.Component | undefined;
|
@@ -5873,6 +5878,7 @@ declare const VAutocomplete: {
|
|
5873
5878
|
noClickAnimation: boolean;
|
5874
5879
|
persistent: boolean;
|
5875
5880
|
scrim: NonNullable<string | boolean>;
|
5881
|
+
submenu: boolean;
|
5876
5882
|
} & {
|
5877
5883
|
offset?: string | number | number[] | undefined;
|
5878
5884
|
id?: string | undefined;
|
@@ -5926,7 +5932,7 @@ declare const VAutocomplete: {
|
|
5926
5932
|
}) => vue.VNodeChild) | undefined;
|
5927
5933
|
} & {
|
5928
5934
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
5929
|
-
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">) | undefined;
|
5935
|
+
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "submenu">) | undefined;
|
5930
5936
|
itemColor?: string | undefined;
|
5931
5937
|
autoSelectFirst?: boolean | "exact" | undefined;
|
5932
5938
|
} & {
|
@@ -6396,7 +6402,7 @@ declare const VAutocomplete: {
|
|
6396
6402
|
}) => vue.VNodeChild) | undefined;
|
6397
6403
|
}) | undefined;
|
6398
6404
|
menuProps?: (Partial<{
|
6399
|
-
location: Anchor;
|
6405
|
+
location: NonNullable<Anchor> | undefined;
|
6400
6406
|
origin: "auto" | Anchor | "overlap";
|
6401
6407
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
6402
6408
|
component?: vue.Component | undefined;
|
@@ -6424,8 +6430,9 @@ declare const VAutocomplete: {
|
|
6424
6430
|
noClickAnimation: boolean;
|
6425
6431
|
persistent: boolean;
|
6426
6432
|
scrim: NonNullable<string | boolean>;
|
6433
|
+
submenu: boolean;
|
6427
6434
|
}> & Omit<{
|
6428
|
-
location: Anchor;
|
6435
|
+
location: NonNullable<Anchor> | undefined;
|
6429
6436
|
origin: "auto" | Anchor | "overlap";
|
6430
6437
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
6431
6438
|
component?: vue.Component | undefined;
|
@@ -6451,6 +6458,7 @@ declare const VAutocomplete: {
|
|
6451
6458
|
noClickAnimation: boolean;
|
6452
6459
|
persistent: boolean;
|
6453
6460
|
scrim: NonNullable<string | boolean>;
|
6461
|
+
submenu: boolean;
|
6454
6462
|
offset?: string | number | number[] | undefined;
|
6455
6463
|
id?: string | undefined;
|
6456
6464
|
height?: string | number | undefined;
|
@@ -6501,7 +6509,7 @@ declare const VAutocomplete: {
|
|
6501
6509
|
}) => vue.VNodeChild) | undefined;
|
6502
6510
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
6503
6511
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
6504
|
-
location: Anchor;
|
6512
|
+
location: NonNullable<Anchor> | undefined;
|
6505
6513
|
origin: "auto" | Anchor | "overlap";
|
6506
6514
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
6507
6515
|
component?: vue.Component | undefined;
|
@@ -6527,6 +6535,7 @@ declare const VAutocomplete: {
|
|
6527
6535
|
noClickAnimation: boolean;
|
6528
6536
|
persistent: boolean;
|
6529
6537
|
scrim: NonNullable<string | boolean>;
|
6538
|
+
submenu: boolean;
|
6530
6539
|
} & {
|
6531
6540
|
offset?: string | number | number[] | undefined;
|
6532
6541
|
id?: string | undefined;
|
@@ -6580,7 +6589,7 @@ declare const VAutocomplete: {
|
|
6580
6589
|
}) => vue.VNodeChild) | undefined;
|
6581
6590
|
} & {
|
6582
6591
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
6583
|
-
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">) | undefined;
|
6592
|
+
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "submenu">) | undefined;
|
6584
6593
|
itemColor?: string | undefined;
|
6585
6594
|
autoSelectFirst?: boolean | "exact" | undefined;
|
6586
6595
|
} & {
|
@@ -6985,7 +6994,7 @@ declare const VAutocomplete: {
|
|
6985
6994
|
}) => vue.VNodeChild) | undefined;
|
6986
6995
|
}) | undefined;
|
6987
6996
|
menuProps?: (Partial<{
|
6988
|
-
location: Anchor;
|
6997
|
+
location: NonNullable<Anchor> | undefined;
|
6989
6998
|
origin: "auto" | Anchor | "overlap";
|
6990
6999
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
6991
7000
|
component?: vue.Component | undefined;
|
@@ -7013,8 +7022,9 @@ declare const VAutocomplete: {
|
|
7013
7022
|
noClickAnimation: boolean;
|
7014
7023
|
persistent: boolean;
|
7015
7024
|
scrim: NonNullable<string | boolean>;
|
7025
|
+
submenu: boolean;
|
7016
7026
|
}> & Omit<{
|
7017
|
-
location: Anchor;
|
7027
|
+
location: NonNullable<Anchor> | undefined;
|
7018
7028
|
origin: "auto" | Anchor | "overlap";
|
7019
7029
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
7020
7030
|
component?: vue.Component | undefined;
|
@@ -7040,6 +7050,7 @@ declare const VAutocomplete: {
|
|
7040
7050
|
noClickAnimation: boolean;
|
7041
7051
|
persistent: boolean;
|
7042
7052
|
scrim: NonNullable<string | boolean>;
|
7053
|
+
submenu: boolean;
|
7043
7054
|
offset?: string | number | number[] | undefined;
|
7044
7055
|
id?: string | undefined;
|
7045
7056
|
height?: string | number | undefined;
|
@@ -7090,7 +7101,7 @@ declare const VAutocomplete: {
|
|
7090
7101
|
}) => vue.VNodeChild) | undefined;
|
7091
7102
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
7092
7103
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
7093
|
-
location: Anchor;
|
7104
|
+
location: NonNullable<Anchor> | undefined;
|
7094
7105
|
origin: "auto" | Anchor | "overlap";
|
7095
7106
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
7096
7107
|
component?: vue.Component | undefined;
|
@@ -7116,6 +7127,7 @@ declare const VAutocomplete: {
|
|
7116
7127
|
noClickAnimation: boolean;
|
7117
7128
|
persistent: boolean;
|
7118
7129
|
scrim: NonNullable<string | boolean>;
|
7130
|
+
submenu: boolean;
|
7119
7131
|
} & {
|
7120
7132
|
offset?: string | number | number[] | undefined;
|
7121
7133
|
id?: string | undefined;
|
@@ -7169,7 +7181,7 @@ declare const VAutocomplete: {
|
|
7169
7181
|
}) => vue.VNodeChild) | undefined;
|
7170
7182
|
} & {
|
7171
7183
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
7172
|
-
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">) | undefined;
|
7184
|
+
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "submenu">) | undefined;
|
7173
7185
|
itemColor?: string | undefined;
|
7174
7186
|
autoSelectFirst?: boolean | "exact" | undefined;
|
7175
7187
|
} & {
|
@@ -7782,7 +7794,7 @@ declare const VAutocomplete: {
|
|
7782
7794
|
};
|
7783
7795
|
menuProps: {
|
7784
7796
|
type: PropType<Partial<{
|
7785
|
-
location: Anchor;
|
7797
|
+
location: NonNullable<Anchor> | undefined;
|
7786
7798
|
origin: "auto" | Anchor | "overlap";
|
7787
7799
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
7788
7800
|
component?: vue.Component | undefined;
|
@@ -7810,8 +7822,9 @@ declare const VAutocomplete: {
|
|
7810
7822
|
noClickAnimation: boolean;
|
7811
7823
|
persistent: boolean;
|
7812
7824
|
scrim: NonNullable<string | boolean>;
|
7825
|
+
submenu: boolean;
|
7813
7826
|
}> & Omit<{
|
7814
|
-
location: Anchor;
|
7827
|
+
location: NonNullable<Anchor> | undefined;
|
7815
7828
|
origin: "auto" | Anchor | "overlap";
|
7816
7829
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
7817
7830
|
component?: vue.Component | undefined;
|
@@ -7837,6 +7850,7 @@ declare const VAutocomplete: {
|
|
7837
7850
|
noClickAnimation: boolean;
|
7838
7851
|
persistent: boolean;
|
7839
7852
|
scrim: NonNullable<string | boolean>;
|
7853
|
+
submenu: boolean;
|
7840
7854
|
offset?: string | number | number[] | undefined;
|
7841
7855
|
id?: string | undefined;
|
7842
7856
|
height?: string | number | undefined;
|
@@ -7887,7 +7901,7 @@ declare const VAutocomplete: {
|
|
7887
7901
|
}) => vue.VNodeChild) | undefined;
|
7888
7902
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
7889
7903
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
7890
|
-
location: Anchor;
|
7904
|
+
location: NonNullable<Anchor> | undefined;
|
7891
7905
|
origin: "auto" | Anchor | "overlap";
|
7892
7906
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
7893
7907
|
component?: vue.Component | undefined;
|
@@ -7913,6 +7927,7 @@ declare const VAutocomplete: {
|
|
7913
7927
|
noClickAnimation: boolean;
|
7914
7928
|
persistent: boolean;
|
7915
7929
|
scrim: NonNullable<string | boolean>;
|
7930
|
+
submenu: boolean;
|
7916
7931
|
} & {
|
7917
7932
|
offset?: string | number | number[] | undefined;
|
7918
7933
|
id?: string | undefined;
|
@@ -7966,7 +7981,7 @@ declare const VAutocomplete: {
|
|
7966
7981
|
}) => vue.VNodeChild) | undefined;
|
7967
7982
|
} & {
|
7968
7983
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
7969
|
-
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">>;
|
7984
|
+
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "submenu">>;
|
7970
7985
|
};
|
7971
7986
|
multiple: BooleanConstructor;
|
7972
7987
|
noDataText: {
|
@@ -8426,7 +8441,7 @@ declare const VAutocomplete: {
|
|
8426
8441
|
};
|
8427
8442
|
menuProps: {
|
8428
8443
|
type: PropType<Partial<{
|
8429
|
-
location: Anchor;
|
8444
|
+
location: NonNullable<Anchor> | undefined;
|
8430
8445
|
origin: "auto" | Anchor | "overlap";
|
8431
8446
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
8432
8447
|
component?: vue.Component | undefined;
|
@@ -8454,8 +8469,9 @@ declare const VAutocomplete: {
|
|
8454
8469
|
noClickAnimation: boolean;
|
8455
8470
|
persistent: boolean;
|
8456
8471
|
scrim: NonNullable<string | boolean>;
|
8472
|
+
submenu: boolean;
|
8457
8473
|
}> & Omit<{
|
8458
|
-
location: Anchor;
|
8474
|
+
location: NonNullable<Anchor> | undefined;
|
8459
8475
|
origin: "auto" | Anchor | "overlap";
|
8460
8476
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
8461
8477
|
component?: vue.Component | undefined;
|
@@ -8481,6 +8497,7 @@ declare const VAutocomplete: {
|
|
8481
8497
|
noClickAnimation: boolean;
|
8482
8498
|
persistent: boolean;
|
8483
8499
|
scrim: NonNullable<string | boolean>;
|
8500
|
+
submenu: boolean;
|
8484
8501
|
offset?: string | number | number[] | undefined;
|
8485
8502
|
id?: string | undefined;
|
8486
8503
|
height?: string | number | undefined;
|
@@ -8531,7 +8548,7 @@ declare const VAutocomplete: {
|
|
8531
8548
|
}) => vue.VNodeChild) | undefined;
|
8532
8549
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
8533
8550
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
8534
|
-
location: Anchor;
|
8551
|
+
location: NonNullable<Anchor> | undefined;
|
8535
8552
|
origin: "auto" | Anchor | "overlap";
|
8536
8553
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
8537
8554
|
component?: vue.Component | undefined;
|
@@ -8557,6 +8574,7 @@ declare const VAutocomplete: {
|
|
8557
8574
|
noClickAnimation: boolean;
|
8558
8575
|
persistent: boolean;
|
8559
8576
|
scrim: NonNullable<string | boolean>;
|
8577
|
+
submenu: boolean;
|
8560
8578
|
} & {
|
8561
8579
|
offset?: string | number | number[] | undefined;
|
8562
8580
|
id?: string | undefined;
|
@@ -8610,7 +8628,7 @@ declare const VAutocomplete: {
|
|
8610
8628
|
}) => vue.VNodeChild) | undefined;
|
8611
8629
|
} & {
|
8612
8630
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
8613
|
-
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">>;
|
8631
|
+
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "submenu">>;
|
8614
8632
|
};
|
8615
8633
|
multiple: BooleanConstructor;
|
8616
8634
|
noDataText: {
|
@@ -18844,7 +18862,7 @@ declare const VCombobox: {
|
|
18844
18862
|
}) => vue.VNodeChild) | undefined;
|
18845
18863
|
}) | undefined;
|
18846
18864
|
menuProps?: (Partial<{
|
18847
|
-
location: Anchor;
|
18865
|
+
location: NonNullable<Anchor> | undefined;
|
18848
18866
|
origin: "auto" | Anchor | "overlap";
|
18849
18867
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
18850
18868
|
component?: vue.Component | undefined;
|
@@ -18872,8 +18890,9 @@ declare const VCombobox: {
|
|
18872
18890
|
noClickAnimation: boolean;
|
18873
18891
|
persistent: boolean;
|
18874
18892
|
scrim: NonNullable<string | boolean>;
|
18893
|
+
submenu: boolean;
|
18875
18894
|
}> & Omit<{
|
18876
|
-
location: Anchor;
|
18895
|
+
location: NonNullable<Anchor> | undefined;
|
18877
18896
|
origin: "auto" | Anchor | "overlap";
|
18878
18897
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
18879
18898
|
component?: vue.Component | undefined;
|
@@ -18899,6 +18918,7 @@ declare const VCombobox: {
|
|
18899
18918
|
noClickAnimation: boolean;
|
18900
18919
|
persistent: boolean;
|
18901
18920
|
scrim: NonNullable<string | boolean>;
|
18921
|
+
submenu: boolean;
|
18902
18922
|
offset?: string | number | number[] | undefined;
|
18903
18923
|
id?: string | undefined;
|
18904
18924
|
height?: string | number | undefined;
|
@@ -18949,7 +18969,7 @@ declare const VCombobox: {
|
|
18949
18969
|
}) => vue.VNodeChild) | undefined;
|
18950
18970
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
18951
18971
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
18952
|
-
location: Anchor;
|
18972
|
+
location: NonNullable<Anchor> | undefined;
|
18953
18973
|
origin: "auto" | Anchor | "overlap";
|
18954
18974
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
18955
18975
|
component?: vue.Component | undefined;
|
@@ -18975,6 +18995,7 @@ declare const VCombobox: {
|
|
18975
18995
|
noClickAnimation: boolean;
|
18976
18996
|
persistent: boolean;
|
18977
18997
|
scrim: NonNullable<string | boolean>;
|
18998
|
+
submenu: boolean;
|
18978
18999
|
} & {
|
18979
19000
|
offset?: string | number | number[] | undefined;
|
18980
19001
|
id?: string | undefined;
|
@@ -19028,7 +19049,7 @@ declare const VCombobox: {
|
|
19028
19049
|
}) => vue.VNodeChild) | undefined;
|
19029
19050
|
} & {
|
19030
19051
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
19031
|
-
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">) | undefined;
|
19052
|
+
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "submenu">) | undefined;
|
19032
19053
|
itemColor?: string | undefined;
|
19033
19054
|
autoSelectFirst?: boolean | "exact" | undefined;
|
19034
19055
|
} & {
|
@@ -19384,7 +19405,7 @@ declare const VCombobox: {
|
|
19384
19405
|
}) => vue.VNodeChild) | undefined;
|
19385
19406
|
}) | undefined;
|
19386
19407
|
menuProps?: (Partial<{
|
19387
|
-
location: Anchor;
|
19408
|
+
location: NonNullable<Anchor> | undefined;
|
19388
19409
|
origin: "auto" | Anchor | "overlap";
|
19389
19410
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
19390
19411
|
component?: vue.Component | undefined;
|
@@ -19412,8 +19433,9 @@ declare const VCombobox: {
|
|
19412
19433
|
noClickAnimation: boolean;
|
19413
19434
|
persistent: boolean;
|
19414
19435
|
scrim: NonNullable<string | boolean>;
|
19436
|
+
submenu: boolean;
|
19415
19437
|
}> & Omit<{
|
19416
|
-
location: Anchor;
|
19438
|
+
location: NonNullable<Anchor> | undefined;
|
19417
19439
|
origin: "auto" | Anchor | "overlap";
|
19418
19440
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
19419
19441
|
component?: vue.Component | undefined;
|
@@ -19439,6 +19461,7 @@ declare const VCombobox: {
|
|
19439
19461
|
noClickAnimation: boolean;
|
19440
19462
|
persistent: boolean;
|
19441
19463
|
scrim: NonNullable<string | boolean>;
|
19464
|
+
submenu: boolean;
|
19442
19465
|
offset?: string | number | number[] | undefined;
|
19443
19466
|
id?: string | undefined;
|
19444
19467
|
height?: string | number | undefined;
|
@@ -19489,7 +19512,7 @@ declare const VCombobox: {
|
|
19489
19512
|
}) => vue.VNodeChild) | undefined;
|
19490
19513
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
19491
19514
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
19492
|
-
location: Anchor;
|
19515
|
+
location: NonNullable<Anchor> | undefined;
|
19493
19516
|
origin: "auto" | Anchor | "overlap";
|
19494
19517
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
19495
19518
|
component?: vue.Component | undefined;
|
@@ -19515,6 +19538,7 @@ declare const VCombobox: {
|
|
19515
19538
|
noClickAnimation: boolean;
|
19516
19539
|
persistent: boolean;
|
19517
19540
|
scrim: NonNullable<string | boolean>;
|
19541
|
+
submenu: boolean;
|
19518
19542
|
} & {
|
19519
19543
|
offset?: string | number | number[] | undefined;
|
19520
19544
|
id?: string | undefined;
|
@@ -19568,7 +19592,7 @@ declare const VCombobox: {
|
|
19568
19592
|
}) => vue.VNodeChild) | undefined;
|
19569
19593
|
} & {
|
19570
19594
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
19571
|
-
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">) | undefined;
|
19595
|
+
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "submenu">) | undefined;
|
19572
19596
|
itemColor?: string | undefined;
|
19573
19597
|
autoSelectFirst?: boolean | "exact" | undefined;
|
19574
19598
|
} & {
|
@@ -20038,7 +20062,7 @@ declare const VCombobox: {
|
|
20038
20062
|
}) => vue.VNodeChild) | undefined;
|
20039
20063
|
}) | undefined;
|
20040
20064
|
menuProps?: (Partial<{
|
20041
|
-
location: Anchor;
|
20065
|
+
location: NonNullable<Anchor> | undefined;
|
20042
20066
|
origin: "auto" | Anchor | "overlap";
|
20043
20067
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
20044
20068
|
component?: vue.Component | undefined;
|
@@ -20066,8 +20090,9 @@ declare const VCombobox: {
|
|
20066
20090
|
noClickAnimation: boolean;
|
20067
20091
|
persistent: boolean;
|
20068
20092
|
scrim: NonNullable<string | boolean>;
|
20093
|
+
submenu: boolean;
|
20069
20094
|
}> & Omit<{
|
20070
|
-
location: Anchor;
|
20095
|
+
location: NonNullable<Anchor> | undefined;
|
20071
20096
|
origin: "auto" | Anchor | "overlap";
|
20072
20097
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
20073
20098
|
component?: vue.Component | undefined;
|
@@ -20093,6 +20118,7 @@ declare const VCombobox: {
|
|
20093
20118
|
noClickAnimation: boolean;
|
20094
20119
|
persistent: boolean;
|
20095
20120
|
scrim: NonNullable<string | boolean>;
|
20121
|
+
submenu: boolean;
|
20096
20122
|
offset?: string | number | number[] | undefined;
|
20097
20123
|
id?: string | undefined;
|
20098
20124
|
height?: string | number | undefined;
|
@@ -20143,7 +20169,7 @@ declare const VCombobox: {
|
|
20143
20169
|
}) => vue.VNodeChild) | undefined;
|
20144
20170
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
20145
20171
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
20146
|
-
location: Anchor;
|
20172
|
+
location: NonNullable<Anchor> | undefined;
|
20147
20173
|
origin: "auto" | Anchor | "overlap";
|
20148
20174
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
20149
20175
|
component?: vue.Component | undefined;
|
@@ -20169,6 +20195,7 @@ declare const VCombobox: {
|
|
20169
20195
|
noClickAnimation: boolean;
|
20170
20196
|
persistent: boolean;
|
20171
20197
|
scrim: NonNullable<string | boolean>;
|
20198
|
+
submenu: boolean;
|
20172
20199
|
} & {
|
20173
20200
|
offset?: string | number | number[] | undefined;
|
20174
20201
|
id?: string | undefined;
|
@@ -20222,7 +20249,7 @@ declare const VCombobox: {
|
|
20222
20249
|
}) => vue.VNodeChild) | undefined;
|
20223
20250
|
} & {
|
20224
20251
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
20225
|
-
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">) | undefined;
|
20252
|
+
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "submenu">) | undefined;
|
20226
20253
|
itemColor?: string | undefined;
|
20227
20254
|
autoSelectFirst?: boolean | "exact" | undefined;
|
20228
20255
|
} & {
|
@@ -20627,7 +20654,7 @@ declare const VCombobox: {
|
|
20627
20654
|
}) => vue.VNodeChild) | undefined;
|
20628
20655
|
}) | undefined;
|
20629
20656
|
menuProps?: (Partial<{
|
20630
|
-
location: Anchor;
|
20657
|
+
location: NonNullable<Anchor> | undefined;
|
20631
20658
|
origin: "auto" | Anchor | "overlap";
|
20632
20659
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
20633
20660
|
component?: vue.Component | undefined;
|
@@ -20655,8 +20682,9 @@ declare const VCombobox: {
|
|
20655
20682
|
noClickAnimation: boolean;
|
20656
20683
|
persistent: boolean;
|
20657
20684
|
scrim: NonNullable<string | boolean>;
|
20685
|
+
submenu: boolean;
|
20658
20686
|
}> & Omit<{
|
20659
|
-
location: Anchor;
|
20687
|
+
location: NonNullable<Anchor> | undefined;
|
20660
20688
|
origin: "auto" | Anchor | "overlap";
|
20661
20689
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
20662
20690
|
component?: vue.Component | undefined;
|
@@ -20682,6 +20710,7 @@ declare const VCombobox: {
|
|
20682
20710
|
noClickAnimation: boolean;
|
20683
20711
|
persistent: boolean;
|
20684
20712
|
scrim: NonNullable<string | boolean>;
|
20713
|
+
submenu: boolean;
|
20685
20714
|
offset?: string | number | number[] | undefined;
|
20686
20715
|
id?: string | undefined;
|
20687
20716
|
height?: string | number | undefined;
|
@@ -20732,7 +20761,7 @@ declare const VCombobox: {
|
|
20732
20761
|
}) => vue.VNodeChild) | undefined;
|
20733
20762
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
20734
20763
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
20735
|
-
location: Anchor;
|
20764
|
+
location: NonNullable<Anchor> | undefined;
|
20736
20765
|
origin: "auto" | Anchor | "overlap";
|
20737
20766
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
20738
20767
|
component?: vue.Component | undefined;
|
@@ -20758,6 +20787,7 @@ declare const VCombobox: {
|
|
20758
20787
|
noClickAnimation: boolean;
|
20759
20788
|
persistent: boolean;
|
20760
20789
|
scrim: NonNullable<string | boolean>;
|
20790
|
+
submenu: boolean;
|
20761
20791
|
} & {
|
20762
20792
|
offset?: string | number | number[] | undefined;
|
20763
20793
|
id?: string | undefined;
|
@@ -20811,7 +20841,7 @@ declare const VCombobox: {
|
|
20811
20841
|
}) => vue.VNodeChild) | undefined;
|
20812
20842
|
} & {
|
20813
20843
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
20814
|
-
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">) | undefined;
|
20844
|
+
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "submenu">) | undefined;
|
20815
20845
|
itemColor?: string | undefined;
|
20816
20846
|
autoSelectFirst?: boolean | "exact" | undefined;
|
20817
20847
|
} & {
|
@@ -21430,7 +21460,7 @@ declare const VCombobox: {
|
|
21430
21460
|
};
|
21431
21461
|
menuProps: {
|
21432
21462
|
type: PropType<Partial<{
|
21433
|
-
location: Anchor;
|
21463
|
+
location: NonNullable<Anchor> | undefined;
|
21434
21464
|
origin: "auto" | Anchor | "overlap";
|
21435
21465
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
21436
21466
|
component?: vue.Component | undefined;
|
@@ -21458,8 +21488,9 @@ declare const VCombobox: {
|
|
21458
21488
|
noClickAnimation: boolean;
|
21459
21489
|
persistent: boolean;
|
21460
21490
|
scrim: NonNullable<string | boolean>;
|
21491
|
+
submenu: boolean;
|
21461
21492
|
}> & Omit<{
|
21462
|
-
location: Anchor;
|
21493
|
+
location: NonNullable<Anchor> | undefined;
|
21463
21494
|
origin: "auto" | Anchor | "overlap";
|
21464
21495
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
21465
21496
|
component?: vue.Component | undefined;
|
@@ -21485,6 +21516,7 @@ declare const VCombobox: {
|
|
21485
21516
|
noClickAnimation: boolean;
|
21486
21517
|
persistent: boolean;
|
21487
21518
|
scrim: NonNullable<string | boolean>;
|
21519
|
+
submenu: boolean;
|
21488
21520
|
offset?: string | number | number[] | undefined;
|
21489
21521
|
id?: string | undefined;
|
21490
21522
|
height?: string | number | undefined;
|
@@ -21535,7 +21567,7 @@ declare const VCombobox: {
|
|
21535
21567
|
}) => vue.VNodeChild) | undefined;
|
21536
21568
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
21537
21569
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
21538
|
-
location: Anchor;
|
21570
|
+
location: NonNullable<Anchor> | undefined;
|
21539
21571
|
origin: "auto" | Anchor | "overlap";
|
21540
21572
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
21541
21573
|
component?: vue.Component | undefined;
|
@@ -21561,6 +21593,7 @@ declare const VCombobox: {
|
|
21561
21593
|
noClickAnimation: boolean;
|
21562
21594
|
persistent: boolean;
|
21563
21595
|
scrim: NonNullable<string | boolean>;
|
21596
|
+
submenu: boolean;
|
21564
21597
|
} & {
|
21565
21598
|
offset?: string | number | number[] | undefined;
|
21566
21599
|
id?: string | undefined;
|
@@ -21614,7 +21647,7 @@ declare const VCombobox: {
|
|
21614
21647
|
}) => vue.VNodeChild) | undefined;
|
21615
21648
|
} & {
|
21616
21649
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
21617
|
-
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">>;
|
21650
|
+
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "submenu">>;
|
21618
21651
|
};
|
21619
21652
|
multiple: BooleanConstructor;
|
21620
21653
|
noDataText: {
|
@@ -22083,7 +22116,7 @@ declare const VCombobox: {
|
|
22083
22116
|
};
|
22084
22117
|
menuProps: {
|
22085
22118
|
type: PropType<Partial<{
|
22086
|
-
location: Anchor;
|
22119
|
+
location: NonNullable<Anchor> | undefined;
|
22087
22120
|
origin: "auto" | Anchor | "overlap";
|
22088
22121
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
22089
22122
|
component?: vue.Component | undefined;
|
@@ -22111,8 +22144,9 @@ declare const VCombobox: {
|
|
22111
22144
|
noClickAnimation: boolean;
|
22112
22145
|
persistent: boolean;
|
22113
22146
|
scrim: NonNullable<string | boolean>;
|
22147
|
+
submenu: boolean;
|
22114
22148
|
}> & Omit<{
|
22115
|
-
location: Anchor;
|
22149
|
+
location: NonNullable<Anchor> | undefined;
|
22116
22150
|
origin: "auto" | Anchor | "overlap";
|
22117
22151
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
22118
22152
|
component?: vue.Component | undefined;
|
@@ -22138,6 +22172,7 @@ declare const VCombobox: {
|
|
22138
22172
|
noClickAnimation: boolean;
|
22139
22173
|
persistent: boolean;
|
22140
22174
|
scrim: NonNullable<string | boolean>;
|
22175
|
+
submenu: boolean;
|
22141
22176
|
offset?: string | number | number[] | undefined;
|
22142
22177
|
id?: string | undefined;
|
22143
22178
|
height?: string | number | undefined;
|
@@ -22188,7 +22223,7 @@ declare const VCombobox: {
|
|
22188
22223
|
}) => vue.VNodeChild) | undefined;
|
22189
22224
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
22190
22225
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
22191
|
-
location: Anchor;
|
22226
|
+
location: NonNullable<Anchor> | undefined;
|
22192
22227
|
origin: "auto" | Anchor | "overlap";
|
22193
22228
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
22194
22229
|
component?: vue.Component | undefined;
|
@@ -22214,6 +22249,7 @@ declare const VCombobox: {
|
|
22214
22249
|
noClickAnimation: boolean;
|
22215
22250
|
persistent: boolean;
|
22216
22251
|
scrim: NonNullable<string | boolean>;
|
22252
|
+
submenu: boolean;
|
22217
22253
|
} & {
|
22218
22254
|
offset?: string | number | number[] | undefined;
|
22219
22255
|
id?: string | undefined;
|
@@ -22267,7 +22303,7 @@ declare const VCombobox: {
|
|
22267
22303
|
}) => vue.VNodeChild) | undefined;
|
22268
22304
|
} & {
|
22269
22305
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
22270
|
-
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">>;
|
22306
|
+
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "submenu">>;
|
22271
22307
|
};
|
22272
22308
|
multiple: BooleanConstructor;
|
22273
22309
|
noDataText: {
|
@@ -30178,7 +30214,7 @@ declare const VDialog: {
|
|
30178
30214
|
onAfterLeave?: (() => any) | undefined;
|
30179
30215
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
30180
30216
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
30181
|
-
}, "target" | "
|
30217
|
+
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
30182
30218
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
30183
30219
|
scrimEl: vue.Ref<HTMLElement | undefined>;
|
30184
30220
|
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
@@ -30862,7 +30898,7 @@ declare const VDialog: {
|
|
30862
30898
|
onAfterLeave?: (() => any) | undefined;
|
30863
30899
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
30864
30900
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
30865
|
-
}, "target" | "
|
30901
|
+
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
30866
30902
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
30867
30903
|
scrimEl: vue.Ref<HTMLElement | undefined>;
|
30868
30904
|
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
@@ -31443,7 +31479,7 @@ declare const VDialog: {
|
|
31443
31479
|
onAfterLeave?: (() => any) | undefined;
|
31444
31480
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
31445
31481
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
31446
|
-
}, "target" | "
|
31482
|
+
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
31447
31483
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
31448
31484
|
scrimEl: vue.Ref<HTMLElement | undefined>;
|
31449
31485
|
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
@@ -41604,7 +41640,7 @@ type VMain = InstanceType<typeof VMain>;
|
|
41604
41640
|
|
41605
41641
|
declare const VMenu: {
|
41606
41642
|
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
41607
|
-
location: Anchor;
|
41643
|
+
location: NonNullable<Anchor> | undefined;
|
41608
41644
|
origin: "auto" | Anchor | "overlap";
|
41609
41645
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
41610
41646
|
component?: Component | undefined;
|
@@ -41630,6 +41666,7 @@ declare const VMenu: {
|
|
41630
41666
|
noClickAnimation: boolean;
|
41631
41667
|
persistent: boolean;
|
41632
41668
|
scrim: NonNullable<string | boolean>;
|
41669
|
+
submenu: boolean;
|
41633
41670
|
} & {
|
41634
41671
|
offset?: string | number | number[] | undefined;
|
41635
41672
|
id?: string | undefined;
|
@@ -42139,7 +42176,7 @@ declare const VMenu: {
|
|
42139
42176
|
onAfterLeave?: (() => any) | undefined;
|
42140
42177
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
42141
42178
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
42142
|
-
}, "target" | "
|
42179
|
+
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
42143
42180
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
42144
42181
|
scrimEl: vue.Ref<HTMLElement | undefined>;
|
42145
42182
|
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
@@ -42151,7 +42188,7 @@ declare const VMenu: {
|
|
42151
42188
|
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "ref" | "onAfterEnter" | "onAfterLeave" | "$children" | "theme" | "v-slot:default" | "v-slots" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:modelValue" | "contentClass" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
42152
42189
|
'update:modelValue': (value: boolean) => boolean;
|
42153
42190
|
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
42154
|
-
location: Anchor;
|
42191
|
+
location: NonNullable<Anchor> | undefined;
|
42155
42192
|
origin: "auto" | Anchor | "overlap";
|
42156
42193
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
42157
42194
|
component?: Component | undefined;
|
@@ -42177,6 +42214,7 @@ declare const VMenu: {
|
|
42177
42214
|
noClickAnimation: boolean;
|
42178
42215
|
persistent: boolean;
|
42179
42216
|
scrim: NonNullable<string | boolean>;
|
42217
|
+
submenu: boolean;
|
42180
42218
|
} & {
|
42181
42219
|
offset?: string | number | number[] | undefined;
|
42182
42220
|
id?: string | undefined;
|
@@ -42231,7 +42269,7 @@ declare const VMenu: {
|
|
42231
42269
|
} & {
|
42232
42270
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
42233
42271
|
}, {
|
42234
|
-
location: Anchor;
|
42272
|
+
location: NonNullable<Anchor> | undefined;
|
42235
42273
|
origin: "auto" | Anchor | "overlap";
|
42236
42274
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
42237
42275
|
component?: Component | undefined;
|
@@ -42259,6 +42297,7 @@ declare const VMenu: {
|
|
42259
42297
|
noClickAnimation: boolean;
|
42260
42298
|
persistent: boolean;
|
42261
42299
|
scrim: NonNullable<string | boolean>;
|
42300
|
+
submenu: boolean;
|
42262
42301
|
}, true, {}, vue.SlotsType<Partial<{
|
42263
42302
|
default: (arg: {
|
42264
42303
|
isActive: vue.Ref<boolean>;
|
@@ -42280,7 +42319,7 @@ declare const VMenu: {
|
|
42280
42319
|
M: {};
|
42281
42320
|
Defaults: {};
|
42282
42321
|
}, {
|
42283
|
-
location: Anchor;
|
42322
|
+
location: NonNullable<Anchor> | undefined;
|
42284
42323
|
origin: "auto" | Anchor | "overlap";
|
42285
42324
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
42286
42325
|
component?: Component | undefined;
|
@@ -42306,6 +42345,7 @@ declare const VMenu: {
|
|
42306
42345
|
noClickAnimation: boolean;
|
42307
42346
|
persistent: boolean;
|
42308
42347
|
scrim: NonNullable<string | boolean>;
|
42348
|
+
submenu: boolean;
|
42309
42349
|
} & {
|
42310
42350
|
offset?: string | number | number[] | undefined;
|
42311
42351
|
id?: string | undefined;
|
@@ -42815,7 +42855,7 @@ declare const VMenu: {
|
|
42815
42855
|
onAfterLeave?: (() => any) | undefined;
|
42816
42856
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
42817
42857
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
42818
|
-
}, "target" | "
|
42858
|
+
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
42819
42859
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
42820
42860
|
scrimEl: vue.Ref<HTMLElement | undefined>;
|
42821
42861
|
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
@@ -42825,7 +42865,7 @@ declare const VMenu: {
|
|
42825
42865
|
localTop: vue.ComputedRef<boolean>;
|
42826
42866
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
42827
42867
|
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "ref" | "onAfterEnter" | "onAfterLeave" | "$children" | "theme" | "v-slot:default" | "v-slots" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:modelValue" | "contentClass" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>, {}, {}, {}, {
|
42828
|
-
location: Anchor;
|
42868
|
+
location: NonNullable<Anchor> | undefined;
|
42829
42869
|
origin: "auto" | Anchor | "overlap";
|
42830
42870
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
42831
42871
|
component?: Component | undefined;
|
@@ -42853,12 +42893,13 @@ declare const VMenu: {
|
|
42853
42893
|
noClickAnimation: boolean;
|
42854
42894
|
persistent: boolean;
|
42855
42895
|
scrim: NonNullable<string | boolean>;
|
42896
|
+
submenu: boolean;
|
42856
42897
|
}>;
|
42857
42898
|
__isFragment?: undefined;
|
42858
42899
|
__isTeleport?: undefined;
|
42859
42900
|
__isSuspense?: undefined;
|
42860
42901
|
} & vue.ComponentOptionsBase<{
|
42861
|
-
location: Anchor;
|
42902
|
+
location: NonNullable<Anchor> | undefined;
|
42862
42903
|
origin: "auto" | Anchor | "overlap";
|
42863
42904
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
42864
42905
|
component?: Component | undefined;
|
@@ -42884,6 +42925,7 @@ declare const VMenu: {
|
|
42884
42925
|
noClickAnimation: boolean;
|
42885
42926
|
persistent: boolean;
|
42886
42927
|
scrim: NonNullable<string | boolean>;
|
42928
|
+
submenu: boolean;
|
42887
42929
|
} & {
|
42888
42930
|
offset?: string | number | number[] | undefined;
|
42889
42931
|
id?: string | undefined;
|
@@ -43393,7 +43435,7 @@ declare const VMenu: {
|
|
43393
43435
|
onAfterLeave?: (() => any) | undefined;
|
43394
43436
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
43395
43437
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
43396
|
-
}, "target" | "
|
43438
|
+
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
43397
43439
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
43398
43440
|
scrimEl: vue.Ref<HTMLElement | undefined>;
|
43399
43441
|
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
@@ -43405,7 +43447,7 @@ declare const VMenu: {
|
|
43405
43447
|
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "ref" | "onAfterEnter" | "onAfterLeave" | "$children" | "theme" | "v-slot:default" | "v-slots" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:modelValue" | "contentClass" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
43406
43448
|
'update:modelValue': (value: boolean) => boolean;
|
43407
43449
|
}, string, {
|
43408
|
-
location: Anchor;
|
43450
|
+
location: NonNullable<Anchor> | undefined;
|
43409
43451
|
origin: "auto" | Anchor | "overlap";
|
43410
43452
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
43411
43453
|
component?: Component | undefined;
|
@@ -43433,6 +43475,7 @@ declare const VMenu: {
|
|
43433
43475
|
noClickAnimation: boolean;
|
43434
43476
|
persistent: boolean;
|
43435
43477
|
scrim: NonNullable<string | boolean>;
|
43478
|
+
submenu: boolean;
|
43436
43479
|
}, {}, string, vue.SlotsType<Partial<{
|
43437
43480
|
default: (arg: {
|
43438
43481
|
isActive: vue.Ref<boolean>;
|
@@ -43448,9 +43491,12 @@ declare const VMenu: {
|
|
43448
43491
|
}>[];
|
43449
43492
|
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
43450
43493
|
offset: vue.PropType<string | number | number[] | undefined>;
|
43451
|
-
location: {
|
43494
|
+
location: Omit<{
|
43452
43495
|
type: vue.PropType<Anchor>;
|
43453
43496
|
default: string;
|
43497
|
+
}, "type" | "default"> & {
|
43498
|
+
type: vue.PropType<NonNullable<Anchor> | undefined>;
|
43499
|
+
default: NonNullable<Anchor> | undefined;
|
43454
43500
|
};
|
43455
43501
|
origin: {
|
43456
43502
|
type: vue.PropType<"auto" | Anchor | "overlap">;
|
@@ -43561,11 +43607,15 @@ declare const VMenu: {
|
|
43561
43607
|
};
|
43562
43608
|
attach: vue.PropType<string | boolean | Element>;
|
43563
43609
|
id: StringConstructor;
|
43610
|
+
submenu: BooleanConstructor;
|
43564
43611
|
}, vue.ExtractPropTypes<{
|
43565
43612
|
offset: vue.PropType<string | number | number[] | undefined>;
|
43566
|
-
location: {
|
43613
|
+
location: Omit<{
|
43567
43614
|
type: vue.PropType<Anchor>;
|
43568
43615
|
default: string;
|
43616
|
+
}, "type" | "default"> & {
|
43617
|
+
type: vue.PropType<NonNullable<Anchor> | undefined>;
|
43618
|
+
default: NonNullable<Anchor> | undefined;
|
43569
43619
|
};
|
43570
43620
|
origin: {
|
43571
43621
|
type: vue.PropType<"auto" | Anchor | "overlap">;
|
@@ -43676,6 +43726,7 @@ declare const VMenu: {
|
|
43676
43726
|
};
|
43677
43727
|
attach: vue.PropType<string | boolean | Element>;
|
43678
43728
|
id: StringConstructor;
|
43729
|
+
submenu: BooleanConstructor;
|
43679
43730
|
}>>;
|
43680
43731
|
type VMenu = InstanceType<typeof VMenu>;
|
43681
43732
|
|
@@ -49304,7 +49355,7 @@ declare const VSelect: {
|
|
49304
49355
|
}) => vue.VNodeChild) | undefined;
|
49305
49356
|
}) | undefined;
|
49306
49357
|
menuProps?: (Partial<{
|
49307
|
-
location: Anchor;
|
49358
|
+
location: NonNullable<Anchor> | undefined;
|
49308
49359
|
origin: "auto" | Anchor | "overlap";
|
49309
49360
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
49310
49361
|
component?: Component | undefined;
|
@@ -49332,8 +49383,9 @@ declare const VSelect: {
|
|
49332
49383
|
noClickAnimation: boolean;
|
49333
49384
|
persistent: boolean;
|
49334
49385
|
scrim: NonNullable<string | boolean>;
|
49386
|
+
submenu: boolean;
|
49335
49387
|
}> & Omit<{
|
49336
|
-
location: Anchor;
|
49388
|
+
location: NonNullable<Anchor> | undefined;
|
49337
49389
|
origin: "auto" | Anchor | "overlap";
|
49338
49390
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
49339
49391
|
component?: Component | undefined;
|
@@ -49359,6 +49411,7 @@ declare const VSelect: {
|
|
49359
49411
|
noClickAnimation: boolean;
|
49360
49412
|
persistent: boolean;
|
49361
49413
|
scrim: NonNullable<string | boolean>;
|
49414
|
+
submenu: boolean;
|
49362
49415
|
offset?: string | number | number[] | undefined;
|
49363
49416
|
id?: string | undefined;
|
49364
49417
|
height?: string | number | undefined;
|
@@ -49409,7 +49462,7 @@ declare const VSelect: {
|
|
49409
49462
|
}) => vue.VNodeChild) | undefined;
|
49410
49463
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
49411
49464
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
49412
|
-
location: Anchor;
|
49465
|
+
location: NonNullable<Anchor> | undefined;
|
49413
49466
|
origin: "auto" | Anchor | "overlap";
|
49414
49467
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
49415
49468
|
component?: Component | undefined;
|
@@ -49435,6 +49488,7 @@ declare const VSelect: {
|
|
49435
49488
|
noClickAnimation: boolean;
|
49436
49489
|
persistent: boolean;
|
49437
49490
|
scrim: NonNullable<string | boolean>;
|
49491
|
+
submenu: boolean;
|
49438
49492
|
} & {
|
49439
49493
|
offset?: string | number | number[] | undefined;
|
49440
49494
|
id?: string | undefined;
|
@@ -49488,7 +49542,7 @@ declare const VSelect: {
|
|
49488
49542
|
}) => vue.VNodeChild) | undefined;
|
49489
49543
|
} & {
|
49490
49544
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
49491
|
-
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">) | undefined;
|
49545
|
+
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "submenu">) | undefined;
|
49492
49546
|
itemColor?: string | undefined;
|
49493
49547
|
} & {
|
49494
49548
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
@@ -49836,7 +49890,7 @@ declare const VSelect: {
|
|
49836
49890
|
}) => vue.VNodeChild) | undefined;
|
49837
49891
|
}) | undefined;
|
49838
49892
|
menuProps?: (Partial<{
|
49839
|
-
location: Anchor;
|
49893
|
+
location: NonNullable<Anchor> | undefined;
|
49840
49894
|
origin: "auto" | Anchor | "overlap";
|
49841
49895
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
49842
49896
|
component?: Component | undefined;
|
@@ -49864,8 +49918,9 @@ declare const VSelect: {
|
|
49864
49918
|
noClickAnimation: boolean;
|
49865
49919
|
persistent: boolean;
|
49866
49920
|
scrim: NonNullable<string | boolean>;
|
49921
|
+
submenu: boolean;
|
49867
49922
|
}> & Omit<{
|
49868
|
-
location: Anchor;
|
49923
|
+
location: NonNullable<Anchor> | undefined;
|
49869
49924
|
origin: "auto" | Anchor | "overlap";
|
49870
49925
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
49871
49926
|
component?: Component | undefined;
|
@@ -49891,6 +49946,7 @@ declare const VSelect: {
|
|
49891
49946
|
noClickAnimation: boolean;
|
49892
49947
|
persistent: boolean;
|
49893
49948
|
scrim: NonNullable<string | boolean>;
|
49949
|
+
submenu: boolean;
|
49894
49950
|
offset?: string | number | number[] | undefined;
|
49895
49951
|
id?: string | undefined;
|
49896
49952
|
height?: string | number | undefined;
|
@@ -49941,7 +49997,7 @@ declare const VSelect: {
|
|
49941
49997
|
}) => vue.VNodeChild) | undefined;
|
49942
49998
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
49943
49999
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
49944
|
-
location: Anchor;
|
50000
|
+
location: NonNullable<Anchor> | undefined;
|
49945
50001
|
origin: "auto" | Anchor | "overlap";
|
49946
50002
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
49947
50003
|
component?: Component | undefined;
|
@@ -49967,6 +50023,7 @@ declare const VSelect: {
|
|
49967
50023
|
noClickAnimation: boolean;
|
49968
50024
|
persistent: boolean;
|
49969
50025
|
scrim: NonNullable<string | boolean>;
|
50026
|
+
submenu: boolean;
|
49970
50027
|
} & {
|
49971
50028
|
offset?: string | number | number[] | undefined;
|
49972
50029
|
id?: string | undefined;
|
@@ -50020,7 +50077,7 @@ declare const VSelect: {
|
|
50020
50077
|
}) => vue.VNodeChild) | undefined;
|
50021
50078
|
} & {
|
50022
50079
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
50023
|
-
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">) | undefined;
|
50080
|
+
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "submenu">) | undefined;
|
50024
50081
|
itemColor?: string | undefined;
|
50025
50082
|
} & {
|
50026
50083
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
@@ -50481,7 +50538,7 @@ declare const VSelect: {
|
|
50481
50538
|
}) => vue.VNodeChild) | undefined;
|
50482
50539
|
}) | undefined;
|
50483
50540
|
menuProps?: (Partial<{
|
50484
|
-
location: Anchor;
|
50541
|
+
location: NonNullable<Anchor> | undefined;
|
50485
50542
|
origin: "auto" | Anchor | "overlap";
|
50486
50543
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
50487
50544
|
component?: Component | undefined;
|
@@ -50509,8 +50566,9 @@ declare const VSelect: {
|
|
50509
50566
|
noClickAnimation: boolean;
|
50510
50567
|
persistent: boolean;
|
50511
50568
|
scrim: NonNullable<string | boolean>;
|
50569
|
+
submenu: boolean;
|
50512
50570
|
}> & Omit<{
|
50513
|
-
location: Anchor;
|
50571
|
+
location: NonNullable<Anchor> | undefined;
|
50514
50572
|
origin: "auto" | Anchor | "overlap";
|
50515
50573
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
50516
50574
|
component?: Component | undefined;
|
@@ -50536,6 +50594,7 @@ declare const VSelect: {
|
|
50536
50594
|
noClickAnimation: boolean;
|
50537
50595
|
persistent: boolean;
|
50538
50596
|
scrim: NonNullable<string | boolean>;
|
50597
|
+
submenu: boolean;
|
50539
50598
|
offset?: string | number | number[] | undefined;
|
50540
50599
|
id?: string | undefined;
|
50541
50600
|
height?: string | number | undefined;
|
@@ -50586,7 +50645,7 @@ declare const VSelect: {
|
|
50586
50645
|
}) => vue.VNodeChild) | undefined;
|
50587
50646
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
50588
50647
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
50589
|
-
location: Anchor;
|
50648
|
+
location: NonNullable<Anchor> | undefined;
|
50590
50649
|
origin: "auto" | Anchor | "overlap";
|
50591
50650
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
50592
50651
|
component?: Component | undefined;
|
@@ -50612,6 +50671,7 @@ declare const VSelect: {
|
|
50612
50671
|
noClickAnimation: boolean;
|
50613
50672
|
persistent: boolean;
|
50614
50673
|
scrim: NonNullable<string | boolean>;
|
50674
|
+
submenu: boolean;
|
50615
50675
|
} & {
|
50616
50676
|
offset?: string | number | number[] | undefined;
|
50617
50677
|
id?: string | undefined;
|
@@ -50665,7 +50725,7 @@ declare const VSelect: {
|
|
50665
50725
|
}) => vue.VNodeChild) | undefined;
|
50666
50726
|
} & {
|
50667
50727
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
50668
|
-
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">) | undefined;
|
50728
|
+
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "submenu">) | undefined;
|
50669
50729
|
itemColor?: string | undefined;
|
50670
50730
|
} & {
|
50671
50731
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
@@ -51061,7 +51121,7 @@ declare const VSelect: {
|
|
51061
51121
|
}) => vue.VNodeChild) | undefined;
|
51062
51122
|
}) | undefined;
|
51063
51123
|
menuProps?: (Partial<{
|
51064
|
-
location: Anchor;
|
51124
|
+
location: NonNullable<Anchor> | undefined;
|
51065
51125
|
origin: "auto" | Anchor | "overlap";
|
51066
51126
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
51067
51127
|
component?: Component | undefined;
|
@@ -51089,8 +51149,9 @@ declare const VSelect: {
|
|
51089
51149
|
noClickAnimation: boolean;
|
51090
51150
|
persistent: boolean;
|
51091
51151
|
scrim: NonNullable<string | boolean>;
|
51152
|
+
submenu: boolean;
|
51092
51153
|
}> & Omit<{
|
51093
|
-
location: Anchor;
|
51154
|
+
location: NonNullable<Anchor> | undefined;
|
51094
51155
|
origin: "auto" | Anchor | "overlap";
|
51095
51156
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
51096
51157
|
component?: Component | undefined;
|
@@ -51116,6 +51177,7 @@ declare const VSelect: {
|
|
51116
51177
|
noClickAnimation: boolean;
|
51117
51178
|
persistent: boolean;
|
51118
51179
|
scrim: NonNullable<string | boolean>;
|
51180
|
+
submenu: boolean;
|
51119
51181
|
offset?: string | number | number[] | undefined;
|
51120
51182
|
id?: string | undefined;
|
51121
51183
|
height?: string | number | undefined;
|
@@ -51166,7 +51228,7 @@ declare const VSelect: {
|
|
51166
51228
|
}) => vue.VNodeChild) | undefined;
|
51167
51229
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
51168
51230
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
51169
|
-
location: Anchor;
|
51231
|
+
location: NonNullable<Anchor> | undefined;
|
51170
51232
|
origin: "auto" | Anchor | "overlap";
|
51171
51233
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
51172
51234
|
component?: Component | undefined;
|
@@ -51192,6 +51254,7 @@ declare const VSelect: {
|
|
51192
51254
|
noClickAnimation: boolean;
|
51193
51255
|
persistent: boolean;
|
51194
51256
|
scrim: NonNullable<string | boolean>;
|
51257
|
+
submenu: boolean;
|
51195
51258
|
} & {
|
51196
51259
|
offset?: string | number | number[] | undefined;
|
51197
51260
|
id?: string | undefined;
|
@@ -51245,7 +51308,7 @@ declare const VSelect: {
|
|
51245
51308
|
}) => vue.VNodeChild) | undefined;
|
51246
51309
|
} & {
|
51247
51310
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
51248
|
-
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">) | undefined;
|
51311
|
+
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "submenu">) | undefined;
|
51249
51312
|
itemColor?: string | undefined;
|
51250
51313
|
} & {
|
51251
51314
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
@@ -51857,7 +51920,7 @@ declare const VSelect: {
|
|
51857
51920
|
};
|
51858
51921
|
menuProps: {
|
51859
51922
|
type: PropType<Partial<{
|
51860
|
-
location: Anchor;
|
51923
|
+
location: NonNullable<Anchor> | undefined;
|
51861
51924
|
origin: "auto" | Anchor | "overlap";
|
51862
51925
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
51863
51926
|
component?: Component | undefined;
|
@@ -51885,8 +51948,9 @@ declare const VSelect: {
|
|
51885
51948
|
noClickAnimation: boolean;
|
51886
51949
|
persistent: boolean;
|
51887
51950
|
scrim: NonNullable<string | boolean>;
|
51951
|
+
submenu: boolean;
|
51888
51952
|
}> & Omit<{
|
51889
|
-
location: Anchor;
|
51953
|
+
location: NonNullable<Anchor> | undefined;
|
51890
51954
|
origin: "auto" | Anchor | "overlap";
|
51891
51955
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
51892
51956
|
component?: Component | undefined;
|
@@ -51912,6 +51976,7 @@ declare const VSelect: {
|
|
51912
51976
|
noClickAnimation: boolean;
|
51913
51977
|
persistent: boolean;
|
51914
51978
|
scrim: NonNullable<string | boolean>;
|
51979
|
+
submenu: boolean;
|
51915
51980
|
offset?: string | number | number[] | undefined;
|
51916
51981
|
id?: string | undefined;
|
51917
51982
|
height?: string | number | undefined;
|
@@ -51962,7 +52027,7 @@ declare const VSelect: {
|
|
51962
52027
|
}) => vue.VNodeChild) | undefined;
|
51963
52028
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
51964
52029
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
51965
|
-
location: Anchor;
|
52030
|
+
location: NonNullable<Anchor> | undefined;
|
51966
52031
|
origin: "auto" | Anchor | "overlap";
|
51967
52032
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
51968
52033
|
component?: Component | undefined;
|
@@ -51988,6 +52053,7 @@ declare const VSelect: {
|
|
51988
52053
|
noClickAnimation: boolean;
|
51989
52054
|
persistent: boolean;
|
51990
52055
|
scrim: NonNullable<string | boolean>;
|
52056
|
+
submenu: boolean;
|
51991
52057
|
} & {
|
51992
52058
|
offset?: string | number | number[] | undefined;
|
51993
52059
|
id?: string | undefined;
|
@@ -52041,7 +52107,7 @@ declare const VSelect: {
|
|
52041
52107
|
}) => vue.VNodeChild) | undefined;
|
52042
52108
|
} & {
|
52043
52109
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
52044
|
-
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">>;
|
52110
|
+
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "submenu">>;
|
52045
52111
|
};
|
52046
52112
|
multiple: BooleanConstructor;
|
52047
52113
|
noDataText: {
|
@@ -52489,7 +52555,7 @@ declare const VSelect: {
|
|
52489
52555
|
};
|
52490
52556
|
menuProps: {
|
52491
52557
|
type: PropType<Partial<{
|
52492
|
-
location: Anchor;
|
52558
|
+
location: NonNullable<Anchor> | undefined;
|
52493
52559
|
origin: "auto" | Anchor | "overlap";
|
52494
52560
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
52495
52561
|
component?: Component | undefined;
|
@@ -52517,8 +52583,9 @@ declare const VSelect: {
|
|
52517
52583
|
noClickAnimation: boolean;
|
52518
52584
|
persistent: boolean;
|
52519
52585
|
scrim: NonNullable<string | boolean>;
|
52586
|
+
submenu: boolean;
|
52520
52587
|
}> & Omit<{
|
52521
|
-
location: Anchor;
|
52588
|
+
location: NonNullable<Anchor> | undefined;
|
52522
52589
|
origin: "auto" | Anchor | "overlap";
|
52523
52590
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
52524
52591
|
component?: Component | undefined;
|
@@ -52544,6 +52611,7 @@ declare const VSelect: {
|
|
52544
52611
|
noClickAnimation: boolean;
|
52545
52612
|
persistent: boolean;
|
52546
52613
|
scrim: NonNullable<string | boolean>;
|
52614
|
+
submenu: boolean;
|
52547
52615
|
offset?: string | number | number[] | undefined;
|
52548
52616
|
id?: string | undefined;
|
52549
52617
|
height?: string | number | undefined;
|
@@ -52594,7 +52662,7 @@ declare const VSelect: {
|
|
52594
52662
|
}) => vue.VNodeChild) | undefined;
|
52595
52663
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
52596
52664
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
52597
|
-
location: Anchor;
|
52665
|
+
location: NonNullable<Anchor> | undefined;
|
52598
52666
|
origin: "auto" | Anchor | "overlap";
|
52599
52667
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
52600
52668
|
component?: Component | undefined;
|
@@ -52620,6 +52688,7 @@ declare const VSelect: {
|
|
52620
52688
|
noClickAnimation: boolean;
|
52621
52689
|
persistent: boolean;
|
52622
52690
|
scrim: NonNullable<string | boolean>;
|
52691
|
+
submenu: boolean;
|
52623
52692
|
} & {
|
52624
52693
|
offset?: string | number | number[] | undefined;
|
52625
52694
|
id?: string | undefined;
|
@@ -52673,7 +52742,7 @@ declare const VSelect: {
|
|
52673
52742
|
}) => vue.VNodeChild) | undefined;
|
52674
52743
|
} & {
|
52675
52744
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
52676
|
-
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">>;
|
52745
|
+
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "submenu">>;
|
52677
52746
|
};
|
52678
52747
|
multiple: BooleanConstructor;
|
52679
52748
|
noDataText: {
|
@@ -54952,7 +55021,7 @@ declare const VSnackbar: {
|
|
54952
55021
|
onAfterLeave?: (() => any) | undefined;
|
54953
55022
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
54954
55023
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
54955
|
-
}, "target" | "
|
55024
|
+
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
54956
55025
|
activatorEl: Ref<HTMLElement | undefined>;
|
54957
55026
|
scrimEl: Ref<HTMLElement | undefined>;
|
54958
55027
|
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
@@ -55639,7 +55708,7 @@ declare const VSnackbar: {
|
|
55639
55708
|
onAfterLeave?: (() => any) | undefined;
|
55640
55709
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
55641
55710
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
55642
|
-
}, "target" | "
|
55711
|
+
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
55643
55712
|
activatorEl: Ref<HTMLElement | undefined>;
|
55644
55713
|
scrimEl: Ref<HTMLElement | undefined>;
|
55645
55714
|
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
@@ -56218,7 +56287,7 @@ declare const VSnackbar: {
|
|
56218
56287
|
onAfterLeave?: (() => any) | undefined;
|
56219
56288
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
56220
56289
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
56221
|
-
}, "target" | "
|
56290
|
+
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
56222
56291
|
activatorEl: Ref<HTMLElement | undefined>;
|
56223
56292
|
scrimEl: Ref<HTMLElement | undefined>;
|
56224
56293
|
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
@@ -56876,7 +56945,7 @@ type VSparkline = InstanceType<typeof VSparkline>;
|
|
56876
56945
|
declare const VSpeedDial: {
|
56877
56946
|
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
56878
56947
|
offset: NonNullable<string | number | number[] | undefined>;
|
56879
|
-
location: NonNullable<Anchor>;
|
56948
|
+
location: NonNullable<NonNullable<Anchor> | undefined>;
|
56880
56949
|
origin: "auto" | Anchor | "overlap";
|
56881
56950
|
minWidth: NonNullable<string | number>;
|
56882
56951
|
transition: NonNullable<NonNullable<string | boolean | (vue.TransitionProps & {
|
@@ -56903,6 +56972,7 @@ declare const VSpeedDial: {
|
|
56903
56972
|
noClickAnimation: boolean;
|
56904
56973
|
persistent: boolean;
|
56905
56974
|
scrim: NonNullable<string | boolean>;
|
56975
|
+
submenu: boolean;
|
56906
56976
|
} & {
|
56907
56977
|
id?: string | undefined;
|
56908
56978
|
height?: string | number | undefined;
|
@@ -56958,7 +57028,7 @@ declare const VSpeedDial: {
|
|
56958
57028
|
'update:modelValue': (value: boolean) => boolean;
|
56959
57029
|
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
56960
57030
|
offset: NonNullable<string | number | number[] | undefined>;
|
56961
|
-
location: NonNullable<Anchor>;
|
57031
|
+
location: NonNullable<NonNullable<Anchor> | undefined>;
|
56962
57032
|
origin: "auto" | Anchor | "overlap";
|
56963
57033
|
minWidth: NonNullable<string | number>;
|
56964
57034
|
transition: NonNullable<NonNullable<string | boolean | (vue.TransitionProps & {
|
@@ -56985,6 +57055,7 @@ declare const VSpeedDial: {
|
|
56985
57055
|
noClickAnimation: boolean;
|
56986
57056
|
persistent: boolean;
|
56987
57057
|
scrim: NonNullable<string | boolean>;
|
57058
|
+
submenu: boolean;
|
56988
57059
|
} & {
|
56989
57060
|
id?: string | undefined;
|
56990
57061
|
height?: string | number | undefined;
|
@@ -57038,7 +57109,7 @@ declare const VSpeedDial: {
|
|
57038
57109
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
57039
57110
|
}, {
|
57040
57111
|
offset: NonNullable<string | number | number[] | undefined>;
|
57041
|
-
location: NonNullable<Anchor>;
|
57112
|
+
location: NonNullable<NonNullable<Anchor> | undefined>;
|
57042
57113
|
origin: "auto" | Anchor | "overlap";
|
57043
57114
|
minWidth: NonNullable<string | number>;
|
57044
57115
|
transition: NonNullable<NonNullable<string | boolean | (vue.TransitionProps & {
|
@@ -57067,6 +57138,7 @@ declare const VSpeedDial: {
|
|
57067
57138
|
noClickAnimation: boolean;
|
57068
57139
|
persistent: boolean;
|
57069
57140
|
scrim: NonNullable<string | boolean>;
|
57141
|
+
submenu: boolean;
|
57070
57142
|
}, true, {}, vue.SlotsType<Partial<{
|
57071
57143
|
default: (arg: {
|
57072
57144
|
isActive: vue.Ref<boolean>;
|
@@ -57089,7 +57161,7 @@ declare const VSpeedDial: {
|
|
57089
57161
|
Defaults: {};
|
57090
57162
|
}, {
|
57091
57163
|
offset: NonNullable<string | number | number[] | undefined>;
|
57092
|
-
location: NonNullable<Anchor>;
|
57164
|
+
location: NonNullable<NonNullable<Anchor> | undefined>;
|
57093
57165
|
origin: "auto" | Anchor | "overlap";
|
57094
57166
|
minWidth: NonNullable<string | number>;
|
57095
57167
|
transition: NonNullable<NonNullable<string | boolean | (vue.TransitionProps & {
|
@@ -57116,6 +57188,7 @@ declare const VSpeedDial: {
|
|
57116
57188
|
noClickAnimation: boolean;
|
57117
57189
|
persistent: boolean;
|
57118
57190
|
scrim: NonNullable<string | boolean>;
|
57191
|
+
submenu: boolean;
|
57119
57192
|
} & {
|
57120
57193
|
id?: string | undefined;
|
57121
57194
|
height?: string | number | undefined;
|
@@ -57169,7 +57242,7 @@ declare const VSpeedDial: {
|
|
57169
57242
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
57170
57243
|
}, {}, {}, {}, {}, {
|
57171
57244
|
offset: NonNullable<string | number | number[] | undefined>;
|
57172
|
-
location: NonNullable<Anchor>;
|
57245
|
+
location: NonNullable<NonNullable<Anchor> | undefined>;
|
57173
57246
|
origin: "auto" | Anchor | "overlap";
|
57174
57247
|
minWidth: NonNullable<string | number>;
|
57175
57248
|
transition: NonNullable<NonNullable<string | boolean | (vue.TransitionProps & {
|
@@ -57198,13 +57271,14 @@ declare const VSpeedDial: {
|
|
57198
57271
|
noClickAnimation: boolean;
|
57199
57272
|
persistent: boolean;
|
57200
57273
|
scrim: NonNullable<string | boolean>;
|
57274
|
+
submenu: boolean;
|
57201
57275
|
}>;
|
57202
57276
|
__isFragment?: undefined;
|
57203
57277
|
__isTeleport?: undefined;
|
57204
57278
|
__isSuspense?: undefined;
|
57205
57279
|
} & vue.ComponentOptionsBase<{
|
57206
57280
|
offset: NonNullable<string | number | number[] | undefined>;
|
57207
|
-
location: NonNullable<Anchor>;
|
57281
|
+
location: NonNullable<NonNullable<Anchor> | undefined>;
|
57208
57282
|
origin: "auto" | Anchor | "overlap";
|
57209
57283
|
minWidth: NonNullable<string | number>;
|
57210
57284
|
transition: NonNullable<NonNullable<string | boolean | (vue.TransitionProps & {
|
@@ -57231,6 +57305,7 @@ declare const VSpeedDial: {
|
|
57231
57305
|
noClickAnimation: boolean;
|
57232
57306
|
persistent: boolean;
|
57233
57307
|
scrim: NonNullable<string | boolean>;
|
57308
|
+
submenu: boolean;
|
57234
57309
|
} & {
|
57235
57310
|
id?: string | undefined;
|
57236
57311
|
height?: string | number | undefined;
|
@@ -57286,7 +57361,7 @@ declare const VSpeedDial: {
|
|
57286
57361
|
'update:modelValue': (value: boolean) => boolean;
|
57287
57362
|
}, string, {
|
57288
57363
|
offset: NonNullable<string | number | number[] | undefined>;
|
57289
|
-
location: NonNullable<Anchor>;
|
57364
|
+
location: NonNullable<NonNullable<Anchor> | undefined>;
|
57290
57365
|
origin: "auto" | Anchor | "overlap";
|
57291
57366
|
minWidth: NonNullable<string | number>;
|
57292
57367
|
transition: NonNullable<NonNullable<string | boolean | (vue.TransitionProps & {
|
@@ -57315,6 +57390,7 @@ declare const VSpeedDial: {
|
|
57315
57390
|
noClickAnimation: boolean;
|
57316
57391
|
persistent: boolean;
|
57317
57392
|
scrim: NonNullable<string | boolean>;
|
57393
|
+
submenu: boolean;
|
57318
57394
|
}, {}, string, vue.SlotsType<Partial<{
|
57319
57395
|
default: (arg: {
|
57320
57396
|
isActive: vue.Ref<boolean>;
|
@@ -57333,12 +57409,15 @@ declare const VSpeedDial: {
|
|
57333
57409
|
type: vue.PropType<NonNullable<string | number | number[] | undefined>>;
|
57334
57410
|
default: NonNullable<string | number | number[] | undefined>;
|
57335
57411
|
};
|
57336
|
-
location: Omit<{
|
57412
|
+
location: Omit<Omit<{
|
57337
57413
|
type: vue.PropType<Anchor>;
|
57338
57414
|
default: string;
|
57339
57415
|
}, "type" | "default"> & {
|
57340
|
-
type: vue.PropType<NonNullable<Anchor
|
57341
|
-
default: NonNullable<Anchor
|
57416
|
+
type: vue.PropType<NonNullable<Anchor> | undefined>;
|
57417
|
+
default: NonNullable<Anchor> | undefined;
|
57418
|
+
}, "type" | "default"> & {
|
57419
|
+
type: vue.PropType<NonNullable<NonNullable<Anchor> | undefined>>;
|
57420
|
+
default: NonNullable<NonNullable<Anchor> | undefined>;
|
57342
57421
|
};
|
57343
57422
|
origin: {
|
57344
57423
|
type: vue.PropType<"auto" | Anchor | "overlap">;
|
@@ -57469,17 +57548,21 @@ declare const VSpeedDial: {
|
|
57469
57548
|
};
|
57470
57549
|
attach: vue.PropType<string | boolean | Element>;
|
57471
57550
|
id: StringConstructor;
|
57551
|
+
submenu: BooleanConstructor;
|
57472
57552
|
}, vue.ExtractPropTypes<{
|
57473
57553
|
offset: {
|
57474
57554
|
type: vue.PropType<NonNullable<string | number | number[] | undefined>>;
|
57475
57555
|
default: NonNullable<string | number | number[] | undefined>;
|
57476
57556
|
};
|
57477
|
-
location: Omit<{
|
57557
|
+
location: Omit<Omit<{
|
57478
57558
|
type: vue.PropType<Anchor>;
|
57479
57559
|
default: string;
|
57480
57560
|
}, "type" | "default"> & {
|
57481
|
-
type: vue.PropType<NonNullable<Anchor
|
57482
|
-
default: NonNullable<Anchor
|
57561
|
+
type: vue.PropType<NonNullable<Anchor> | undefined>;
|
57562
|
+
default: NonNullable<Anchor> | undefined;
|
57563
|
+
}, "type" | "default"> & {
|
57564
|
+
type: vue.PropType<NonNullable<NonNullable<Anchor> | undefined>>;
|
57565
|
+
default: NonNullable<NonNullable<Anchor> | undefined>;
|
57483
57566
|
};
|
57484
57567
|
origin: {
|
57485
57568
|
type: vue.PropType<"auto" | Anchor | "overlap">;
|
@@ -57610,6 +57693,7 @@ declare const VSpeedDial: {
|
|
57610
57693
|
};
|
57611
57694
|
attach: vue.PropType<string | boolean | Element>;
|
57612
57695
|
id: StringConstructor;
|
57696
|
+
submenu: BooleanConstructor;
|
57613
57697
|
}>>;
|
57614
57698
|
type VSpeedDial = InstanceType<typeof VSpeedDial>;
|
57615
57699
|
|
@@ -68417,7 +68501,7 @@ declare const VTooltip: {
|
|
68417
68501
|
onAfterLeave?: (() => any) | undefined;
|
68418
68502
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
68419
68503
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
68420
|
-
}, "target" | "
|
68504
|
+
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
68421
68505
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
68422
68506
|
scrimEl: vue.Ref<HTMLElement | undefined>;
|
68423
68507
|
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
@@ -69083,7 +69167,7 @@ declare const VTooltip: {
|
|
69083
69167
|
onAfterLeave?: (() => any) | undefined;
|
69084
69168
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
69085
69169
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
69086
|
-
}, "target" | "
|
69170
|
+
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
69087
69171
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
69088
69172
|
scrimEl: vue.Ref<HTMLElement | undefined>;
|
69089
69173
|
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
@@ -69653,7 +69737,7 @@ declare const VTooltip: {
|
|
69653
69737
|
onAfterLeave?: (() => any) | undefined;
|
69654
69738
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
69655
69739
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
69656
|
-
}, "target" | "
|
69740
|
+
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
69657
69741
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
69658
69742
|
scrimEl: vue.Ref<HTMLElement | undefined>;
|
69659
69743
|
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
@@ -72997,38 +73081,37 @@ interface _GlobalComponents {
|
|
72997
73081
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
72998
73082
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
72999
73083
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
73084
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
73000
73085
|
VAlert: typeof import('vuetify/components')['VAlert']
|
73001
73086
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
73002
|
-
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
73003
|
-
VBadge: typeof import('vuetify/components')['VBadge']
|
73004
73087
|
VAvatar: typeof import('vuetify/components')['VAvatar']
|
73005
73088
|
VBanner: typeof import('vuetify/components')['VBanner']
|
73006
73089
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
73007
73090
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
73091
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
73092
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
73093
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
73094
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
73008
73095
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
73009
73096
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
73010
73097
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
73011
|
-
VBtn: typeof import('vuetify/components')['VBtn']
|
73012
|
-
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
73013
73098
|
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
73014
|
-
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
73015
|
-
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
73016
73099
|
VCarousel: typeof import('vuetify/components')['VCarousel']
|
73017
73100
|
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
73101
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
73102
|
+
VChip: typeof import('vuetify/components')['VChip']
|
73103
|
+
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
73104
|
+
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
73018
73105
|
VCard: typeof import('vuetify/components')['VCard']
|
73019
73106
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
73020
73107
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
73021
73108
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
73022
73109
|
VCardText: typeof import('vuetify/components')['VCardText']
|
73023
73110
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
73024
|
-
VChip: typeof import('vuetify/components')['VChip']
|
73025
|
-
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
73026
|
-
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
73027
|
-
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
73028
73111
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
73029
|
-
VCounter: typeof import('vuetify/components')['VCounter']
|
73030
|
-
VCode: typeof import('vuetify/components')['VCode']
|
73031
73112
|
VCombobox: typeof import('vuetify/components')['VCombobox']
|
73113
|
+
VCode: typeof import('vuetify/components')['VCode']
|
73114
|
+
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
73032
73115
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
73033
73116
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
73034
73117
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
@@ -73036,6 +73119,8 @@ interface _GlobalComponents {
|
|
73036
73119
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
73037
73120
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
73038
73121
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
73122
|
+
VCounter: typeof import('vuetify/components')['VCounter']
|
73123
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
73039
73124
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
73040
73125
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
73041
73126
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
@@ -73044,7 +73129,6 @@ interface _GlobalComponents {
|
|
73044
73129
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
73045
73130
|
VDialog: typeof import('vuetify/components')['VDialog']
|
73046
73131
|
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
73047
|
-
VDivider: typeof import('vuetify/components')['VDivider']
|
73048
73132
|
VFab: typeof import('vuetify/components')['VFab']
|
73049
73133
|
VFileInput: typeof import('vuetify/components')['VFileInput']
|
73050
73134
|
VField: typeof import('vuetify/components')['VField']
|
@@ -73059,13 +73143,13 @@ interface _GlobalComponents {
|
|
73059
73143
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
73060
73144
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
73061
73145
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
73062
|
-
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
73063
73146
|
VImg: typeof import('vuetify/components')['VImg']
|
73147
|
+
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
73148
|
+
VInput: typeof import('vuetify/components')['VInput']
|
73064
73149
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
73065
73150
|
VItem: typeof import('vuetify/components')['VItem']
|
73066
|
-
VKbd: typeof import('vuetify/components')['VKbd']
|
73067
|
-
VInput: typeof import('vuetify/components')['VInput']
|
73068
73151
|
VLabel: typeof import('vuetify/components')['VLabel']
|
73152
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
73069
73153
|
VList: typeof import('vuetify/components')['VList']
|
73070
73154
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
73071
73155
|
VListImg: typeof import('vuetify/components')['VListImg']
|
@@ -73075,71 +73159,71 @@ interface _GlobalComponents {
|
|
73075
73159
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
73076
73160
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
73077
73161
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
73162
|
+
VMain: typeof import('vuetify/components')['VMain']
|
73078
73163
|
VMessages: typeof import('vuetify/components')['VMessages']
|
73079
|
-
VMenu: typeof import('vuetify/components')['VMenu']
|
73080
73164
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
73081
|
-
|
73165
|
+
VMenu: typeof import('vuetify/components')['VMenu']
|
73082
73166
|
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
73083
|
-
VOverlay: typeof import('vuetify/components')['VOverlay']
|
73084
73167
|
VPagination: typeof import('vuetify/components')['VPagination']
|
73085
73168
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
73086
73169
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
73170
|
+
VOverlay: typeof import('vuetify/components')['VOverlay']
|
73087
73171
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
73088
73172
|
VRating: typeof import('vuetify/components')['VRating']
|
73089
|
-
VSelect: typeof import('vuetify/components')['VSelect']
|
73090
73173
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
73091
|
-
|
73174
|
+
VSelect: typeof import('vuetify/components')['VSelect']
|
73092
73175
|
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
73093
|
-
|
73176
|
+
VSheet: typeof import('vuetify/components')['VSheet']
|
73094
73177
|
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
73178
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
73179
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
73180
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
73095
73181
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
73096
73182
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
73183
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
73097
73184
|
VStepper: typeof import('vuetify/components')['VStepper']
|
73098
73185
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
73099
73186
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
73100
73187
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
73101
73188
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
73102
73189
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
73103
|
-
VSheet: typeof import('vuetify/components')['VSheet']
|
73104
|
-
VSwitch: typeof import('vuetify/components')['VSwitch']
|
73105
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
73106
73190
|
VTab: typeof import('vuetify/components')['VTab']
|
73107
73191
|
VTabs: typeof import('vuetify/components')['VTabs']
|
73108
73192
|
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
73109
73193
|
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
73110
|
-
VTable: typeof import('vuetify/components')['VTable']
|
73111
73194
|
VTextarea: typeof import('vuetify/components')['VTextarea']
|
73112
73195
|
VTextField: typeof import('vuetify/components')['VTextField']
|
73113
|
-
|
73114
|
-
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
73196
|
+
VTable: typeof import('vuetify/components')['VTable']
|
73115
73197
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
73116
73198
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
73117
73199
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
73200
|
+
VTimeline: typeof import('vuetify/components')['VTimeline']
|
73201
|
+
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
73202
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
73118
73203
|
VWindow: typeof import('vuetify/components')['VWindow']
|
73119
73204
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
73120
|
-
VTooltip: typeof import('vuetify/components')['VTooltip']
|
73121
73205
|
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
73122
73206
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
73123
73207
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
73124
73208
|
VForm: typeof import('vuetify/components')['VForm']
|
73125
|
-
VHover: typeof import('vuetify/components')['VHover']
|
73126
73209
|
VContainer: typeof import('vuetify/components')['VContainer']
|
73127
73210
|
VCol: typeof import('vuetify/components')['VCol']
|
73128
73211
|
VRow: typeof import('vuetify/components')['VRow']
|
73129
73212
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
73213
|
+
VHover: typeof import('vuetify/components')['VHover']
|
73214
|
+
VLazy: typeof import('vuetify/components')['VLazy']
|
73130
73215
|
VLayout: typeof import('vuetify/components')['VLayout']
|
73131
73216
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
73132
|
-
VLazy: typeof import('vuetify/components')['VLazy']
|
73133
73217
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
73134
|
-
VParallax: typeof import('vuetify/components')['VParallax']
|
73135
73218
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
73136
73219
|
VRadio: typeof import('vuetify/components')['VRadio']
|
73220
|
+
VParallax: typeof import('vuetify/components')['VParallax']
|
73137
73221
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
73138
73222
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
73139
|
-
VSparkline: typeof import('vuetify/components')['VSparkline']
|
73140
73223
|
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
73141
|
-
|
73224
|
+
VSparkline: typeof import('vuetify/components')['VSparkline']
|
73142
73225
|
VValidation: typeof import('vuetify/components')['VValidation']
|
73226
|
+
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
73143
73227
|
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
73144
73228
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
73145
73229
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
@@ -73157,27 +73241,27 @@ interface _GlobalComponents {
|
|
73157
73241
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
73158
73242
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
73159
73243
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
73160
|
-
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
73161
|
-
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
73162
73244
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
73163
73245
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
73164
73246
|
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
73165
73247
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
73166
73248
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
73167
73249
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
73168
|
-
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
73169
|
-
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
73170
|
-
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
73171
|
-
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
73172
73250
|
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
73173
73251
|
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
73174
73252
|
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
73253
|
+
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
73254
|
+
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
73255
|
+
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
73175
73256
|
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
73176
73257
|
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
73177
73258
|
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
73259
|
+
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
73260
|
+
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
73261
|
+
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
73178
73262
|
VDateInput: typeof import('vuetify/labs/components')['VDateInput']
|
73179
|
-
VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
|
73180
73263
|
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
73264
|
+
VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
|
73181
73265
|
}
|
73182
73266
|
declare module 'vue' {
|
73183
73267
|
export type JSXComponent<Props = any> = { new (): ComponentPublicInstance<Props> } | FunctionalComponent<Props>
|