@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
@@ -4862,7 +4862,7 @@ declare const VAutocomplete: {
|
|
4862
4862
|
}) => vue.VNodeChild) | undefined;
|
4863
4863
|
}) | undefined;
|
4864
4864
|
menuProps?: (Partial<{
|
4865
|
-
location: Anchor;
|
4865
|
+
location: NonNullable<Anchor> | undefined;
|
4866
4866
|
origin: "auto" | Anchor | "overlap";
|
4867
4867
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
4868
4868
|
component?: vue.Component | undefined;
|
@@ -4890,8 +4890,9 @@ declare const VAutocomplete: {
|
|
4890
4890
|
noClickAnimation: boolean;
|
4891
4891
|
persistent: boolean;
|
4892
4892
|
scrim: NonNullable<string | boolean>;
|
4893
|
+
submenu: boolean;
|
4893
4894
|
}> & Omit<{
|
4894
|
-
location: Anchor;
|
4895
|
+
location: NonNullable<Anchor> | undefined;
|
4895
4896
|
origin: "auto" | Anchor | "overlap";
|
4896
4897
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
4897
4898
|
component?: vue.Component | undefined;
|
@@ -4917,6 +4918,7 @@ declare const VAutocomplete: {
|
|
4917
4918
|
noClickAnimation: boolean;
|
4918
4919
|
persistent: boolean;
|
4919
4920
|
scrim: NonNullable<string | boolean>;
|
4921
|
+
submenu: boolean;
|
4920
4922
|
offset?: string | number | number[] | undefined;
|
4921
4923
|
id?: string | undefined;
|
4922
4924
|
height?: string | number | undefined;
|
@@ -4967,7 +4969,7 @@ declare const VAutocomplete: {
|
|
4967
4969
|
}) => vue.VNodeChild) | undefined;
|
4968
4970
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
4969
4971
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
4970
|
-
location: Anchor;
|
4972
|
+
location: NonNullable<Anchor> | undefined;
|
4971
4973
|
origin: "auto" | Anchor | "overlap";
|
4972
4974
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
4973
4975
|
component?: vue.Component | undefined;
|
@@ -4993,6 +4995,7 @@ declare const VAutocomplete: {
|
|
4993
4995
|
noClickAnimation: boolean;
|
4994
4996
|
persistent: boolean;
|
4995
4997
|
scrim: NonNullable<string | boolean>;
|
4998
|
+
submenu: boolean;
|
4996
4999
|
} & {
|
4997
5000
|
offset?: string | number | number[] | undefined;
|
4998
5001
|
id?: string | undefined;
|
@@ -5046,7 +5049,7 @@ declare const VAutocomplete: {
|
|
5046
5049
|
}) => vue.VNodeChild) | undefined;
|
5047
5050
|
} & {
|
5048
5051
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
5049
|
-
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">) | undefined;
|
5052
|
+
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "submenu">) | undefined;
|
5050
5053
|
itemColor?: string | undefined;
|
5051
5054
|
autoSelectFirst?: boolean | "exact" | undefined;
|
5052
5055
|
} & {
|
@@ -5402,7 +5405,7 @@ declare const VAutocomplete: {
|
|
5402
5405
|
}) => vue.VNodeChild) | undefined;
|
5403
5406
|
}) | undefined;
|
5404
5407
|
menuProps?: (Partial<{
|
5405
|
-
location: Anchor;
|
5408
|
+
location: NonNullable<Anchor> | undefined;
|
5406
5409
|
origin: "auto" | Anchor | "overlap";
|
5407
5410
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
5408
5411
|
component?: vue.Component | undefined;
|
@@ -5430,8 +5433,9 @@ declare const VAutocomplete: {
|
|
5430
5433
|
noClickAnimation: boolean;
|
5431
5434
|
persistent: boolean;
|
5432
5435
|
scrim: NonNullable<string | boolean>;
|
5436
|
+
submenu: boolean;
|
5433
5437
|
}> & Omit<{
|
5434
|
-
location: Anchor;
|
5438
|
+
location: NonNullable<Anchor> | undefined;
|
5435
5439
|
origin: "auto" | Anchor | "overlap";
|
5436
5440
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
5437
5441
|
component?: vue.Component | undefined;
|
@@ -5457,6 +5461,7 @@ declare const VAutocomplete: {
|
|
5457
5461
|
noClickAnimation: boolean;
|
5458
5462
|
persistent: boolean;
|
5459
5463
|
scrim: NonNullable<string | boolean>;
|
5464
|
+
submenu: boolean;
|
5460
5465
|
offset?: string | number | number[] | undefined;
|
5461
5466
|
id?: string | undefined;
|
5462
5467
|
height?: string | number | undefined;
|
@@ -5507,7 +5512,7 @@ declare const VAutocomplete: {
|
|
5507
5512
|
}) => vue.VNodeChild) | undefined;
|
5508
5513
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
5509
5514
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
5510
|
-
location: Anchor;
|
5515
|
+
location: NonNullable<Anchor> | undefined;
|
5511
5516
|
origin: "auto" | Anchor | "overlap";
|
5512
5517
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
5513
5518
|
component?: vue.Component | undefined;
|
@@ -5533,6 +5538,7 @@ declare const VAutocomplete: {
|
|
5533
5538
|
noClickAnimation: boolean;
|
5534
5539
|
persistent: boolean;
|
5535
5540
|
scrim: NonNullable<string | boolean>;
|
5541
|
+
submenu: boolean;
|
5536
5542
|
} & {
|
5537
5543
|
offset?: string | number | number[] | undefined;
|
5538
5544
|
id?: string | undefined;
|
@@ -5586,7 +5592,7 @@ declare const VAutocomplete: {
|
|
5586
5592
|
}) => vue.VNodeChild) | undefined;
|
5587
5593
|
} & {
|
5588
5594
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
5589
|
-
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">) | undefined;
|
5595
|
+
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "submenu">) | undefined;
|
5590
5596
|
itemColor?: string | undefined;
|
5591
5597
|
autoSelectFirst?: boolean | "exact" | undefined;
|
5592
5598
|
} & {
|
@@ -6056,7 +6062,7 @@ declare const VAutocomplete: {
|
|
6056
6062
|
}) => vue.VNodeChild) | undefined;
|
6057
6063
|
}) | undefined;
|
6058
6064
|
menuProps?: (Partial<{
|
6059
|
-
location: Anchor;
|
6065
|
+
location: NonNullable<Anchor> | undefined;
|
6060
6066
|
origin: "auto" | Anchor | "overlap";
|
6061
6067
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
6062
6068
|
component?: vue.Component | undefined;
|
@@ -6084,8 +6090,9 @@ declare const VAutocomplete: {
|
|
6084
6090
|
noClickAnimation: boolean;
|
6085
6091
|
persistent: boolean;
|
6086
6092
|
scrim: NonNullable<string | boolean>;
|
6093
|
+
submenu: boolean;
|
6087
6094
|
}> & Omit<{
|
6088
|
-
location: Anchor;
|
6095
|
+
location: NonNullable<Anchor> | undefined;
|
6089
6096
|
origin: "auto" | Anchor | "overlap";
|
6090
6097
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
6091
6098
|
component?: vue.Component | undefined;
|
@@ -6111,6 +6118,7 @@ declare const VAutocomplete: {
|
|
6111
6118
|
noClickAnimation: boolean;
|
6112
6119
|
persistent: boolean;
|
6113
6120
|
scrim: NonNullable<string | boolean>;
|
6121
|
+
submenu: boolean;
|
6114
6122
|
offset?: string | number | number[] | undefined;
|
6115
6123
|
id?: string | undefined;
|
6116
6124
|
height?: string | number | undefined;
|
@@ -6161,7 +6169,7 @@ declare const VAutocomplete: {
|
|
6161
6169
|
}) => vue.VNodeChild) | undefined;
|
6162
6170
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
6163
6171
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
6164
|
-
location: Anchor;
|
6172
|
+
location: NonNullable<Anchor> | undefined;
|
6165
6173
|
origin: "auto" | Anchor | "overlap";
|
6166
6174
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
6167
6175
|
component?: vue.Component | undefined;
|
@@ -6187,6 +6195,7 @@ declare const VAutocomplete: {
|
|
6187
6195
|
noClickAnimation: boolean;
|
6188
6196
|
persistent: boolean;
|
6189
6197
|
scrim: NonNullable<string | boolean>;
|
6198
|
+
submenu: boolean;
|
6190
6199
|
} & {
|
6191
6200
|
offset?: string | number | number[] | undefined;
|
6192
6201
|
id?: string | undefined;
|
@@ -6240,7 +6249,7 @@ declare const VAutocomplete: {
|
|
6240
6249
|
}) => vue.VNodeChild) | undefined;
|
6241
6250
|
} & {
|
6242
6251
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
6243
|
-
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">) | undefined;
|
6252
|
+
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "submenu">) | undefined;
|
6244
6253
|
itemColor?: string | undefined;
|
6245
6254
|
autoSelectFirst?: boolean | "exact" | undefined;
|
6246
6255
|
} & {
|
@@ -6645,7 +6654,7 @@ declare const VAutocomplete: {
|
|
6645
6654
|
}) => vue.VNodeChild) | undefined;
|
6646
6655
|
}) | undefined;
|
6647
6656
|
menuProps?: (Partial<{
|
6648
|
-
location: Anchor;
|
6657
|
+
location: NonNullable<Anchor> | undefined;
|
6649
6658
|
origin: "auto" | Anchor | "overlap";
|
6650
6659
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
6651
6660
|
component?: vue.Component | undefined;
|
@@ -6673,8 +6682,9 @@ declare const VAutocomplete: {
|
|
6673
6682
|
noClickAnimation: boolean;
|
6674
6683
|
persistent: boolean;
|
6675
6684
|
scrim: NonNullable<string | boolean>;
|
6685
|
+
submenu: boolean;
|
6676
6686
|
}> & Omit<{
|
6677
|
-
location: Anchor;
|
6687
|
+
location: NonNullable<Anchor> | undefined;
|
6678
6688
|
origin: "auto" | Anchor | "overlap";
|
6679
6689
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
6680
6690
|
component?: vue.Component | undefined;
|
@@ -6700,6 +6710,7 @@ declare const VAutocomplete: {
|
|
6700
6710
|
noClickAnimation: boolean;
|
6701
6711
|
persistent: boolean;
|
6702
6712
|
scrim: NonNullable<string | boolean>;
|
6713
|
+
submenu: boolean;
|
6703
6714
|
offset?: string | number | number[] | undefined;
|
6704
6715
|
id?: string | undefined;
|
6705
6716
|
height?: string | number | undefined;
|
@@ -6750,7 +6761,7 @@ declare const VAutocomplete: {
|
|
6750
6761
|
}) => vue.VNodeChild) | undefined;
|
6751
6762
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
6752
6763
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
6753
|
-
location: Anchor;
|
6764
|
+
location: NonNullable<Anchor> | undefined;
|
6754
6765
|
origin: "auto" | Anchor | "overlap";
|
6755
6766
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
6756
6767
|
component?: vue.Component | undefined;
|
@@ -6776,6 +6787,7 @@ declare const VAutocomplete: {
|
|
6776
6787
|
noClickAnimation: boolean;
|
6777
6788
|
persistent: boolean;
|
6778
6789
|
scrim: NonNullable<string | boolean>;
|
6790
|
+
submenu: boolean;
|
6779
6791
|
} & {
|
6780
6792
|
offset?: string | number | number[] | undefined;
|
6781
6793
|
id?: string | undefined;
|
@@ -6829,7 +6841,7 @@ declare const VAutocomplete: {
|
|
6829
6841
|
}) => vue.VNodeChild) | undefined;
|
6830
6842
|
} & {
|
6831
6843
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
6832
|
-
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">) | undefined;
|
6844
|
+
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "submenu">) | undefined;
|
6833
6845
|
itemColor?: string | undefined;
|
6834
6846
|
autoSelectFirst?: boolean | "exact" | undefined;
|
6835
6847
|
} & {
|
@@ -7442,7 +7454,7 @@ declare const VAutocomplete: {
|
|
7442
7454
|
};
|
7443
7455
|
menuProps: {
|
7444
7456
|
type: PropType<Partial<{
|
7445
|
-
location: Anchor;
|
7457
|
+
location: NonNullable<Anchor> | undefined;
|
7446
7458
|
origin: "auto" | Anchor | "overlap";
|
7447
7459
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
7448
7460
|
component?: vue.Component | undefined;
|
@@ -7470,8 +7482,9 @@ declare const VAutocomplete: {
|
|
7470
7482
|
noClickAnimation: boolean;
|
7471
7483
|
persistent: boolean;
|
7472
7484
|
scrim: NonNullable<string | boolean>;
|
7485
|
+
submenu: boolean;
|
7473
7486
|
}> & Omit<{
|
7474
|
-
location: Anchor;
|
7487
|
+
location: NonNullable<Anchor> | undefined;
|
7475
7488
|
origin: "auto" | Anchor | "overlap";
|
7476
7489
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
7477
7490
|
component?: vue.Component | undefined;
|
@@ -7497,6 +7510,7 @@ declare const VAutocomplete: {
|
|
7497
7510
|
noClickAnimation: boolean;
|
7498
7511
|
persistent: boolean;
|
7499
7512
|
scrim: NonNullable<string | boolean>;
|
7513
|
+
submenu: boolean;
|
7500
7514
|
offset?: string | number | number[] | undefined;
|
7501
7515
|
id?: string | undefined;
|
7502
7516
|
height?: string | number | undefined;
|
@@ -7547,7 +7561,7 @@ declare const VAutocomplete: {
|
|
7547
7561
|
}) => vue.VNodeChild) | undefined;
|
7548
7562
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
7549
7563
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
7550
|
-
location: Anchor;
|
7564
|
+
location: NonNullable<Anchor> | undefined;
|
7551
7565
|
origin: "auto" | Anchor | "overlap";
|
7552
7566
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
7553
7567
|
component?: vue.Component | undefined;
|
@@ -7573,6 +7587,7 @@ declare const VAutocomplete: {
|
|
7573
7587
|
noClickAnimation: boolean;
|
7574
7588
|
persistent: boolean;
|
7575
7589
|
scrim: NonNullable<string | boolean>;
|
7590
|
+
submenu: boolean;
|
7576
7591
|
} & {
|
7577
7592
|
offset?: string | number | number[] | undefined;
|
7578
7593
|
id?: string | undefined;
|
@@ -7626,7 +7641,7 @@ declare const VAutocomplete: {
|
|
7626
7641
|
}) => vue.VNodeChild) | undefined;
|
7627
7642
|
} & {
|
7628
7643
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
7629
|
-
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">>;
|
7644
|
+
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "submenu">>;
|
7630
7645
|
};
|
7631
7646
|
multiple: BooleanConstructor;
|
7632
7647
|
noDataText: {
|
@@ -8086,7 +8101,7 @@ declare const VAutocomplete: {
|
|
8086
8101
|
};
|
8087
8102
|
menuProps: {
|
8088
8103
|
type: PropType<Partial<{
|
8089
|
-
location: Anchor;
|
8104
|
+
location: NonNullable<Anchor> | undefined;
|
8090
8105
|
origin: "auto" | Anchor | "overlap";
|
8091
8106
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
8092
8107
|
component?: vue.Component | undefined;
|
@@ -8114,8 +8129,9 @@ declare const VAutocomplete: {
|
|
8114
8129
|
noClickAnimation: boolean;
|
8115
8130
|
persistent: boolean;
|
8116
8131
|
scrim: NonNullable<string | boolean>;
|
8132
|
+
submenu: boolean;
|
8117
8133
|
}> & Omit<{
|
8118
|
-
location: Anchor;
|
8134
|
+
location: NonNullable<Anchor> | undefined;
|
8119
8135
|
origin: "auto" | Anchor | "overlap";
|
8120
8136
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
8121
8137
|
component?: vue.Component | undefined;
|
@@ -8141,6 +8157,7 @@ declare const VAutocomplete: {
|
|
8141
8157
|
noClickAnimation: boolean;
|
8142
8158
|
persistent: boolean;
|
8143
8159
|
scrim: NonNullable<string | boolean>;
|
8160
|
+
submenu: boolean;
|
8144
8161
|
offset?: string | number | number[] | undefined;
|
8145
8162
|
id?: string | undefined;
|
8146
8163
|
height?: string | number | undefined;
|
@@ -8191,7 +8208,7 @@ declare const VAutocomplete: {
|
|
8191
8208
|
}) => vue.VNodeChild) | undefined;
|
8192
8209
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
8193
8210
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
8194
|
-
location: Anchor;
|
8211
|
+
location: NonNullable<Anchor> | undefined;
|
8195
8212
|
origin: "auto" | Anchor | "overlap";
|
8196
8213
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
8197
8214
|
component?: vue.Component | undefined;
|
@@ -8217,6 +8234,7 @@ declare const VAutocomplete: {
|
|
8217
8234
|
noClickAnimation: boolean;
|
8218
8235
|
persistent: boolean;
|
8219
8236
|
scrim: NonNullable<string | boolean>;
|
8237
|
+
submenu: boolean;
|
8220
8238
|
} & {
|
8221
8239
|
offset?: string | number | number[] | undefined;
|
8222
8240
|
id?: string | undefined;
|
@@ -8270,7 +8288,7 @@ declare const VAutocomplete: {
|
|
8270
8288
|
}) => vue.VNodeChild) | undefined;
|
8271
8289
|
} & {
|
8272
8290
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
8273
|
-
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">>;
|
8291
|
+
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "submenu">>;
|
8274
8292
|
};
|
8275
8293
|
multiple: BooleanConstructor;
|
8276
8294
|
noDataText: {
|
@@ -18512,7 +18530,7 @@ declare const VCombobox: {
|
|
18512
18530
|
}) => vue.VNodeChild) | undefined;
|
18513
18531
|
}) | undefined;
|
18514
18532
|
menuProps?: (Partial<{
|
18515
|
-
location: Anchor;
|
18533
|
+
location: NonNullable<Anchor> | undefined;
|
18516
18534
|
origin: "auto" | Anchor | "overlap";
|
18517
18535
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
18518
18536
|
component?: vue.Component | undefined;
|
@@ -18540,8 +18558,9 @@ declare const VCombobox: {
|
|
18540
18558
|
noClickAnimation: boolean;
|
18541
18559
|
persistent: boolean;
|
18542
18560
|
scrim: NonNullable<string | boolean>;
|
18561
|
+
submenu: boolean;
|
18543
18562
|
}> & Omit<{
|
18544
|
-
location: Anchor;
|
18563
|
+
location: NonNullable<Anchor> | undefined;
|
18545
18564
|
origin: "auto" | Anchor | "overlap";
|
18546
18565
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
18547
18566
|
component?: vue.Component | undefined;
|
@@ -18567,6 +18586,7 @@ declare const VCombobox: {
|
|
18567
18586
|
noClickAnimation: boolean;
|
18568
18587
|
persistent: boolean;
|
18569
18588
|
scrim: NonNullable<string | boolean>;
|
18589
|
+
submenu: boolean;
|
18570
18590
|
offset?: string | number | number[] | undefined;
|
18571
18591
|
id?: string | undefined;
|
18572
18592
|
height?: string | number | undefined;
|
@@ -18617,7 +18637,7 @@ declare const VCombobox: {
|
|
18617
18637
|
}) => vue.VNodeChild) | undefined;
|
18618
18638
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
18619
18639
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
18620
|
-
location: Anchor;
|
18640
|
+
location: NonNullable<Anchor> | undefined;
|
18621
18641
|
origin: "auto" | Anchor | "overlap";
|
18622
18642
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
18623
18643
|
component?: vue.Component | undefined;
|
@@ -18643,6 +18663,7 @@ declare const VCombobox: {
|
|
18643
18663
|
noClickAnimation: boolean;
|
18644
18664
|
persistent: boolean;
|
18645
18665
|
scrim: NonNullable<string | boolean>;
|
18666
|
+
submenu: boolean;
|
18646
18667
|
} & {
|
18647
18668
|
offset?: string | number | number[] | undefined;
|
18648
18669
|
id?: string | undefined;
|
@@ -18696,7 +18717,7 @@ declare const VCombobox: {
|
|
18696
18717
|
}) => vue.VNodeChild) | undefined;
|
18697
18718
|
} & {
|
18698
18719
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
18699
|
-
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">) | undefined;
|
18720
|
+
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "submenu">) | undefined;
|
18700
18721
|
itemColor?: string | undefined;
|
18701
18722
|
autoSelectFirst?: boolean | "exact" | undefined;
|
18702
18723
|
} & {
|
@@ -19052,7 +19073,7 @@ declare const VCombobox: {
|
|
19052
19073
|
}) => vue.VNodeChild) | undefined;
|
19053
19074
|
}) | undefined;
|
19054
19075
|
menuProps?: (Partial<{
|
19055
|
-
location: Anchor;
|
19076
|
+
location: NonNullable<Anchor> | undefined;
|
19056
19077
|
origin: "auto" | Anchor | "overlap";
|
19057
19078
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
19058
19079
|
component?: vue.Component | undefined;
|
@@ -19080,8 +19101,9 @@ declare const VCombobox: {
|
|
19080
19101
|
noClickAnimation: boolean;
|
19081
19102
|
persistent: boolean;
|
19082
19103
|
scrim: NonNullable<string | boolean>;
|
19104
|
+
submenu: boolean;
|
19083
19105
|
}> & Omit<{
|
19084
|
-
location: Anchor;
|
19106
|
+
location: NonNullable<Anchor> | undefined;
|
19085
19107
|
origin: "auto" | Anchor | "overlap";
|
19086
19108
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
19087
19109
|
component?: vue.Component | undefined;
|
@@ -19107,6 +19129,7 @@ declare const VCombobox: {
|
|
19107
19129
|
noClickAnimation: boolean;
|
19108
19130
|
persistent: boolean;
|
19109
19131
|
scrim: NonNullable<string | boolean>;
|
19132
|
+
submenu: boolean;
|
19110
19133
|
offset?: string | number | number[] | undefined;
|
19111
19134
|
id?: string | undefined;
|
19112
19135
|
height?: string | number | undefined;
|
@@ -19157,7 +19180,7 @@ declare const VCombobox: {
|
|
19157
19180
|
}) => vue.VNodeChild) | undefined;
|
19158
19181
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
19159
19182
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
19160
|
-
location: Anchor;
|
19183
|
+
location: NonNullable<Anchor> | undefined;
|
19161
19184
|
origin: "auto" | Anchor | "overlap";
|
19162
19185
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
19163
19186
|
component?: vue.Component | undefined;
|
@@ -19183,6 +19206,7 @@ declare const VCombobox: {
|
|
19183
19206
|
noClickAnimation: boolean;
|
19184
19207
|
persistent: boolean;
|
19185
19208
|
scrim: NonNullable<string | boolean>;
|
19209
|
+
submenu: boolean;
|
19186
19210
|
} & {
|
19187
19211
|
offset?: string | number | number[] | undefined;
|
19188
19212
|
id?: string | undefined;
|
@@ -19236,7 +19260,7 @@ declare const VCombobox: {
|
|
19236
19260
|
}) => vue.VNodeChild) | undefined;
|
19237
19261
|
} & {
|
19238
19262
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
19239
|
-
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">) | undefined;
|
19263
|
+
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "submenu">) | undefined;
|
19240
19264
|
itemColor?: string | undefined;
|
19241
19265
|
autoSelectFirst?: boolean | "exact" | undefined;
|
19242
19266
|
} & {
|
@@ -19706,7 +19730,7 @@ declare const VCombobox: {
|
|
19706
19730
|
}) => vue.VNodeChild) | undefined;
|
19707
19731
|
}) | undefined;
|
19708
19732
|
menuProps?: (Partial<{
|
19709
|
-
location: Anchor;
|
19733
|
+
location: NonNullable<Anchor> | undefined;
|
19710
19734
|
origin: "auto" | Anchor | "overlap";
|
19711
19735
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
19712
19736
|
component?: vue.Component | undefined;
|
@@ -19734,8 +19758,9 @@ declare const VCombobox: {
|
|
19734
19758
|
noClickAnimation: boolean;
|
19735
19759
|
persistent: boolean;
|
19736
19760
|
scrim: NonNullable<string | boolean>;
|
19761
|
+
submenu: boolean;
|
19737
19762
|
}> & Omit<{
|
19738
|
-
location: Anchor;
|
19763
|
+
location: NonNullable<Anchor> | undefined;
|
19739
19764
|
origin: "auto" | Anchor | "overlap";
|
19740
19765
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
19741
19766
|
component?: vue.Component | undefined;
|
@@ -19761,6 +19786,7 @@ declare const VCombobox: {
|
|
19761
19786
|
noClickAnimation: boolean;
|
19762
19787
|
persistent: boolean;
|
19763
19788
|
scrim: NonNullable<string | boolean>;
|
19789
|
+
submenu: boolean;
|
19764
19790
|
offset?: string | number | number[] | undefined;
|
19765
19791
|
id?: string | undefined;
|
19766
19792
|
height?: string | number | undefined;
|
@@ -19811,7 +19837,7 @@ declare const VCombobox: {
|
|
19811
19837
|
}) => vue.VNodeChild) | undefined;
|
19812
19838
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
19813
19839
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
19814
|
-
location: Anchor;
|
19840
|
+
location: NonNullable<Anchor> | undefined;
|
19815
19841
|
origin: "auto" | Anchor | "overlap";
|
19816
19842
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
19817
19843
|
component?: vue.Component | undefined;
|
@@ -19837,6 +19863,7 @@ declare const VCombobox: {
|
|
19837
19863
|
noClickAnimation: boolean;
|
19838
19864
|
persistent: boolean;
|
19839
19865
|
scrim: NonNullable<string | boolean>;
|
19866
|
+
submenu: boolean;
|
19840
19867
|
} & {
|
19841
19868
|
offset?: string | number | number[] | undefined;
|
19842
19869
|
id?: string | undefined;
|
@@ -19890,7 +19917,7 @@ declare const VCombobox: {
|
|
19890
19917
|
}) => vue.VNodeChild) | undefined;
|
19891
19918
|
} & {
|
19892
19919
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
19893
|
-
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">) | undefined;
|
19920
|
+
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "submenu">) | undefined;
|
19894
19921
|
itemColor?: string | undefined;
|
19895
19922
|
autoSelectFirst?: boolean | "exact" | undefined;
|
19896
19923
|
} & {
|
@@ -20295,7 +20322,7 @@ declare const VCombobox: {
|
|
20295
20322
|
}) => vue.VNodeChild) | undefined;
|
20296
20323
|
}) | undefined;
|
20297
20324
|
menuProps?: (Partial<{
|
20298
|
-
location: Anchor;
|
20325
|
+
location: NonNullable<Anchor> | undefined;
|
20299
20326
|
origin: "auto" | Anchor | "overlap";
|
20300
20327
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
20301
20328
|
component?: vue.Component | undefined;
|
@@ -20323,8 +20350,9 @@ declare const VCombobox: {
|
|
20323
20350
|
noClickAnimation: boolean;
|
20324
20351
|
persistent: boolean;
|
20325
20352
|
scrim: NonNullable<string | boolean>;
|
20353
|
+
submenu: boolean;
|
20326
20354
|
}> & Omit<{
|
20327
|
-
location: Anchor;
|
20355
|
+
location: NonNullable<Anchor> | undefined;
|
20328
20356
|
origin: "auto" | Anchor | "overlap";
|
20329
20357
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
20330
20358
|
component?: vue.Component | undefined;
|
@@ -20350,6 +20378,7 @@ declare const VCombobox: {
|
|
20350
20378
|
noClickAnimation: boolean;
|
20351
20379
|
persistent: boolean;
|
20352
20380
|
scrim: NonNullable<string | boolean>;
|
20381
|
+
submenu: boolean;
|
20353
20382
|
offset?: string | number | number[] | undefined;
|
20354
20383
|
id?: string | undefined;
|
20355
20384
|
height?: string | number | undefined;
|
@@ -20400,7 +20429,7 @@ declare const VCombobox: {
|
|
20400
20429
|
}) => vue.VNodeChild) | undefined;
|
20401
20430
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
20402
20431
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
20403
|
-
location: Anchor;
|
20432
|
+
location: NonNullable<Anchor> | undefined;
|
20404
20433
|
origin: "auto" | Anchor | "overlap";
|
20405
20434
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
20406
20435
|
component?: vue.Component | undefined;
|
@@ -20426,6 +20455,7 @@ declare const VCombobox: {
|
|
20426
20455
|
noClickAnimation: boolean;
|
20427
20456
|
persistent: boolean;
|
20428
20457
|
scrim: NonNullable<string | boolean>;
|
20458
|
+
submenu: boolean;
|
20429
20459
|
} & {
|
20430
20460
|
offset?: string | number | number[] | undefined;
|
20431
20461
|
id?: string | undefined;
|
@@ -20479,7 +20509,7 @@ declare const VCombobox: {
|
|
20479
20509
|
}) => vue.VNodeChild) | undefined;
|
20480
20510
|
} & {
|
20481
20511
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
20482
|
-
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">) | undefined;
|
20512
|
+
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "submenu">) | undefined;
|
20483
20513
|
itemColor?: string | undefined;
|
20484
20514
|
autoSelectFirst?: boolean | "exact" | undefined;
|
20485
20515
|
} & {
|
@@ -21098,7 +21128,7 @@ declare const VCombobox: {
|
|
21098
21128
|
};
|
21099
21129
|
menuProps: {
|
21100
21130
|
type: PropType<Partial<{
|
21101
|
-
location: Anchor;
|
21131
|
+
location: NonNullable<Anchor> | undefined;
|
21102
21132
|
origin: "auto" | Anchor | "overlap";
|
21103
21133
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
21104
21134
|
component?: vue.Component | undefined;
|
@@ -21126,8 +21156,9 @@ declare const VCombobox: {
|
|
21126
21156
|
noClickAnimation: boolean;
|
21127
21157
|
persistent: boolean;
|
21128
21158
|
scrim: NonNullable<string | boolean>;
|
21159
|
+
submenu: boolean;
|
21129
21160
|
}> & Omit<{
|
21130
|
-
location: Anchor;
|
21161
|
+
location: NonNullable<Anchor> | undefined;
|
21131
21162
|
origin: "auto" | Anchor | "overlap";
|
21132
21163
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
21133
21164
|
component?: vue.Component | undefined;
|
@@ -21153,6 +21184,7 @@ declare const VCombobox: {
|
|
21153
21184
|
noClickAnimation: boolean;
|
21154
21185
|
persistent: boolean;
|
21155
21186
|
scrim: NonNullable<string | boolean>;
|
21187
|
+
submenu: boolean;
|
21156
21188
|
offset?: string | number | number[] | undefined;
|
21157
21189
|
id?: string | undefined;
|
21158
21190
|
height?: string | number | undefined;
|
@@ -21203,7 +21235,7 @@ declare const VCombobox: {
|
|
21203
21235
|
}) => vue.VNodeChild) | undefined;
|
21204
21236
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
21205
21237
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
21206
|
-
location: Anchor;
|
21238
|
+
location: NonNullable<Anchor> | undefined;
|
21207
21239
|
origin: "auto" | Anchor | "overlap";
|
21208
21240
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
21209
21241
|
component?: vue.Component | undefined;
|
@@ -21229,6 +21261,7 @@ declare const VCombobox: {
|
|
21229
21261
|
noClickAnimation: boolean;
|
21230
21262
|
persistent: boolean;
|
21231
21263
|
scrim: NonNullable<string | boolean>;
|
21264
|
+
submenu: boolean;
|
21232
21265
|
} & {
|
21233
21266
|
offset?: string | number | number[] | undefined;
|
21234
21267
|
id?: string | undefined;
|
@@ -21282,7 +21315,7 @@ declare const VCombobox: {
|
|
21282
21315
|
}) => vue.VNodeChild) | undefined;
|
21283
21316
|
} & {
|
21284
21317
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
21285
|
-
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">>;
|
21318
|
+
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "submenu">>;
|
21286
21319
|
};
|
21287
21320
|
multiple: BooleanConstructor;
|
21288
21321
|
noDataText: {
|
@@ -21751,7 +21784,7 @@ declare const VCombobox: {
|
|
21751
21784
|
};
|
21752
21785
|
menuProps: {
|
21753
21786
|
type: PropType<Partial<{
|
21754
|
-
location: Anchor;
|
21787
|
+
location: NonNullable<Anchor> | undefined;
|
21755
21788
|
origin: "auto" | Anchor | "overlap";
|
21756
21789
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
21757
21790
|
component?: vue.Component | undefined;
|
@@ -21779,8 +21812,9 @@ declare const VCombobox: {
|
|
21779
21812
|
noClickAnimation: boolean;
|
21780
21813
|
persistent: boolean;
|
21781
21814
|
scrim: NonNullable<string | boolean>;
|
21815
|
+
submenu: boolean;
|
21782
21816
|
}> & Omit<{
|
21783
|
-
location: Anchor;
|
21817
|
+
location: NonNullable<Anchor> | undefined;
|
21784
21818
|
origin: "auto" | Anchor | "overlap";
|
21785
21819
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
21786
21820
|
component?: vue.Component | undefined;
|
@@ -21806,6 +21840,7 @@ declare const VCombobox: {
|
|
21806
21840
|
noClickAnimation: boolean;
|
21807
21841
|
persistent: boolean;
|
21808
21842
|
scrim: NonNullable<string | boolean>;
|
21843
|
+
submenu: boolean;
|
21809
21844
|
offset?: string | number | number[] | undefined;
|
21810
21845
|
id?: string | undefined;
|
21811
21846
|
height?: string | number | undefined;
|
@@ -21856,7 +21891,7 @@ declare const VCombobox: {
|
|
21856
21891
|
}) => vue.VNodeChild) | undefined;
|
21857
21892
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
21858
21893
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
21859
|
-
location: Anchor;
|
21894
|
+
location: NonNullable<Anchor> | undefined;
|
21860
21895
|
origin: "auto" | Anchor | "overlap";
|
21861
21896
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
21862
21897
|
component?: vue.Component | undefined;
|
@@ -21882,6 +21917,7 @@ declare const VCombobox: {
|
|
21882
21917
|
noClickAnimation: boolean;
|
21883
21918
|
persistent: boolean;
|
21884
21919
|
scrim: NonNullable<string | boolean>;
|
21920
|
+
submenu: boolean;
|
21885
21921
|
} & {
|
21886
21922
|
offset?: string | number | number[] | undefined;
|
21887
21923
|
id?: string | undefined;
|
@@ -21935,7 +21971,7 @@ declare const VCombobox: {
|
|
21935
21971
|
}) => vue.VNodeChild) | undefined;
|
21936
21972
|
} & {
|
21937
21973
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
21938
|
-
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">>;
|
21974
|
+
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "submenu">>;
|
21939
21975
|
};
|
21940
21976
|
multiple: BooleanConstructor;
|
21941
21977
|
noDataText: {
|
@@ -29846,7 +29882,7 @@ declare const VDialog: {
|
|
29846
29882
|
onAfterLeave?: (() => any) | undefined;
|
29847
29883
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
29848
29884
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
29849
|
-
}, "target" | "
|
29885
|
+
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
29850
29886
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
29851
29887
|
scrimEl: vue.Ref<HTMLElement | undefined>;
|
29852
29888
|
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
@@ -30530,7 +30566,7 @@ declare const VDialog: {
|
|
30530
30566
|
onAfterLeave?: (() => any) | undefined;
|
30531
30567
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
30532
30568
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
30533
|
-
}, "target" | "
|
30569
|
+
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
30534
30570
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
30535
30571
|
scrimEl: vue.Ref<HTMLElement | undefined>;
|
30536
30572
|
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
@@ -31111,7 +31147,7 @@ declare const VDialog: {
|
|
31111
31147
|
onAfterLeave?: (() => any) | undefined;
|
31112
31148
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
31113
31149
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
31114
|
-
}, "target" | "
|
31150
|
+
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
31115
31151
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
31116
31152
|
scrimEl: vue.Ref<HTMLElement | undefined>;
|
31117
31153
|
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
@@ -41272,7 +41308,7 @@ type VMain = InstanceType<typeof VMain>;
|
|
41272
41308
|
|
41273
41309
|
declare const VMenu: {
|
41274
41310
|
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
41275
|
-
location: Anchor;
|
41311
|
+
location: NonNullable<Anchor> | undefined;
|
41276
41312
|
origin: "auto" | Anchor | "overlap";
|
41277
41313
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
41278
41314
|
component?: Component | undefined;
|
@@ -41298,6 +41334,7 @@ declare const VMenu: {
|
|
41298
41334
|
noClickAnimation: boolean;
|
41299
41335
|
persistent: boolean;
|
41300
41336
|
scrim: NonNullable<string | boolean>;
|
41337
|
+
submenu: boolean;
|
41301
41338
|
} & {
|
41302
41339
|
offset?: string | number | number[] | undefined;
|
41303
41340
|
id?: string | undefined;
|
@@ -41807,7 +41844,7 @@ declare const VMenu: {
|
|
41807
41844
|
onAfterLeave?: (() => any) | undefined;
|
41808
41845
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
41809
41846
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
41810
|
-
}, "target" | "
|
41847
|
+
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
41811
41848
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
41812
41849
|
scrimEl: vue.Ref<HTMLElement | undefined>;
|
41813
41850
|
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
@@ -41819,7 +41856,7 @@ declare const VMenu: {
|
|
41819
41856
|
}> & {} & 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, {
|
41820
41857
|
'update:modelValue': (value: boolean) => boolean;
|
41821
41858
|
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
41822
|
-
location: Anchor;
|
41859
|
+
location: NonNullable<Anchor> | undefined;
|
41823
41860
|
origin: "auto" | Anchor | "overlap";
|
41824
41861
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
41825
41862
|
component?: Component | undefined;
|
@@ -41845,6 +41882,7 @@ declare const VMenu: {
|
|
41845
41882
|
noClickAnimation: boolean;
|
41846
41883
|
persistent: boolean;
|
41847
41884
|
scrim: NonNullable<string | boolean>;
|
41885
|
+
submenu: boolean;
|
41848
41886
|
} & {
|
41849
41887
|
offset?: string | number | number[] | undefined;
|
41850
41888
|
id?: string | undefined;
|
@@ -41899,7 +41937,7 @@ declare const VMenu: {
|
|
41899
41937
|
} & {
|
41900
41938
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
41901
41939
|
}, {
|
41902
|
-
location: Anchor;
|
41940
|
+
location: NonNullable<Anchor> | undefined;
|
41903
41941
|
origin: "auto" | Anchor | "overlap";
|
41904
41942
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
41905
41943
|
component?: Component | undefined;
|
@@ -41927,6 +41965,7 @@ declare const VMenu: {
|
|
41927
41965
|
noClickAnimation: boolean;
|
41928
41966
|
persistent: boolean;
|
41929
41967
|
scrim: NonNullable<string | boolean>;
|
41968
|
+
submenu: boolean;
|
41930
41969
|
}, true, {}, vue.SlotsType<Partial<{
|
41931
41970
|
default: (arg: {
|
41932
41971
|
isActive: vue.Ref<boolean>;
|
@@ -41948,7 +41987,7 @@ declare const VMenu: {
|
|
41948
41987
|
M: {};
|
41949
41988
|
Defaults: {};
|
41950
41989
|
}, {
|
41951
|
-
location: Anchor;
|
41990
|
+
location: NonNullable<Anchor> | undefined;
|
41952
41991
|
origin: "auto" | Anchor | "overlap";
|
41953
41992
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
41954
41993
|
component?: Component | undefined;
|
@@ -41974,6 +42013,7 @@ declare const VMenu: {
|
|
41974
42013
|
noClickAnimation: boolean;
|
41975
42014
|
persistent: boolean;
|
41976
42015
|
scrim: NonNullable<string | boolean>;
|
42016
|
+
submenu: boolean;
|
41977
42017
|
} & {
|
41978
42018
|
offset?: string | number | number[] | undefined;
|
41979
42019
|
id?: string | undefined;
|
@@ -42483,7 +42523,7 @@ declare const VMenu: {
|
|
42483
42523
|
onAfterLeave?: (() => any) | undefined;
|
42484
42524
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
42485
42525
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
42486
|
-
}, "target" | "
|
42526
|
+
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
42487
42527
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
42488
42528
|
scrimEl: vue.Ref<HTMLElement | undefined>;
|
42489
42529
|
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
@@ -42493,7 +42533,7 @@ declare const VMenu: {
|
|
42493
42533
|
localTop: vue.ComputedRef<boolean>;
|
42494
42534
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
42495
42535
|
}> & {} & 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}`>, {}, {}, {}, {
|
42496
|
-
location: Anchor;
|
42536
|
+
location: NonNullable<Anchor> | undefined;
|
42497
42537
|
origin: "auto" | Anchor | "overlap";
|
42498
42538
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
42499
42539
|
component?: Component | undefined;
|
@@ -42521,12 +42561,13 @@ declare const VMenu: {
|
|
42521
42561
|
noClickAnimation: boolean;
|
42522
42562
|
persistent: boolean;
|
42523
42563
|
scrim: NonNullable<string | boolean>;
|
42564
|
+
submenu: boolean;
|
42524
42565
|
}>;
|
42525
42566
|
__isFragment?: undefined;
|
42526
42567
|
__isTeleport?: undefined;
|
42527
42568
|
__isSuspense?: undefined;
|
42528
42569
|
} & vue.ComponentOptionsBase<{
|
42529
|
-
location: Anchor;
|
42570
|
+
location: NonNullable<Anchor> | undefined;
|
42530
42571
|
origin: "auto" | Anchor | "overlap";
|
42531
42572
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
42532
42573
|
component?: Component | undefined;
|
@@ -42552,6 +42593,7 @@ declare const VMenu: {
|
|
42552
42593
|
noClickAnimation: boolean;
|
42553
42594
|
persistent: boolean;
|
42554
42595
|
scrim: NonNullable<string | boolean>;
|
42596
|
+
submenu: boolean;
|
42555
42597
|
} & {
|
42556
42598
|
offset?: string | number | number[] | undefined;
|
42557
42599
|
id?: string | undefined;
|
@@ -43061,7 +43103,7 @@ declare const VMenu: {
|
|
43061
43103
|
onAfterLeave?: (() => any) | undefined;
|
43062
43104
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
43063
43105
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
43064
|
-
}, "target" | "
|
43106
|
+
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
43065
43107
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
43066
43108
|
scrimEl: vue.Ref<HTMLElement | undefined>;
|
43067
43109
|
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
@@ -43073,7 +43115,7 @@ declare const VMenu: {
|
|
43073
43115
|
}> & {} & 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, {
|
43074
43116
|
'update:modelValue': (value: boolean) => boolean;
|
43075
43117
|
}, string, {
|
43076
|
-
location: Anchor;
|
43118
|
+
location: NonNullable<Anchor> | undefined;
|
43077
43119
|
origin: "auto" | Anchor | "overlap";
|
43078
43120
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
43079
43121
|
component?: Component | undefined;
|
@@ -43101,6 +43143,7 @@ declare const VMenu: {
|
|
43101
43143
|
noClickAnimation: boolean;
|
43102
43144
|
persistent: boolean;
|
43103
43145
|
scrim: NonNullable<string | boolean>;
|
43146
|
+
submenu: boolean;
|
43104
43147
|
}, {}, string, vue.SlotsType<Partial<{
|
43105
43148
|
default: (arg: {
|
43106
43149
|
isActive: vue.Ref<boolean>;
|
@@ -43116,9 +43159,12 @@ declare const VMenu: {
|
|
43116
43159
|
}>[];
|
43117
43160
|
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
43118
43161
|
offset: vue.PropType<string | number | number[] | undefined>;
|
43119
|
-
location: {
|
43162
|
+
location: Omit<{
|
43120
43163
|
type: vue.PropType<Anchor>;
|
43121
43164
|
default: string;
|
43165
|
+
}, "type" | "default"> & {
|
43166
|
+
type: vue.PropType<NonNullable<Anchor> | undefined>;
|
43167
|
+
default: NonNullable<Anchor> | undefined;
|
43122
43168
|
};
|
43123
43169
|
origin: {
|
43124
43170
|
type: vue.PropType<"auto" | Anchor | "overlap">;
|
@@ -43229,11 +43275,15 @@ declare const VMenu: {
|
|
43229
43275
|
};
|
43230
43276
|
attach: vue.PropType<string | boolean | Element>;
|
43231
43277
|
id: StringConstructor;
|
43278
|
+
submenu: BooleanConstructor;
|
43232
43279
|
}, vue.ExtractPropTypes<{
|
43233
43280
|
offset: vue.PropType<string | number | number[] | undefined>;
|
43234
|
-
location: {
|
43281
|
+
location: Omit<{
|
43235
43282
|
type: vue.PropType<Anchor>;
|
43236
43283
|
default: string;
|
43284
|
+
}, "type" | "default"> & {
|
43285
|
+
type: vue.PropType<NonNullable<Anchor> | undefined>;
|
43286
|
+
default: NonNullable<Anchor> | undefined;
|
43237
43287
|
};
|
43238
43288
|
origin: {
|
43239
43289
|
type: vue.PropType<"auto" | Anchor | "overlap">;
|
@@ -43344,6 +43394,7 @@ declare const VMenu: {
|
|
43344
43394
|
};
|
43345
43395
|
attach: vue.PropType<string | boolean | Element>;
|
43346
43396
|
id: StringConstructor;
|
43397
|
+
submenu: BooleanConstructor;
|
43347
43398
|
}>>;
|
43348
43399
|
type VMenu = InstanceType<typeof VMenu>;
|
43349
43400
|
|
@@ -48972,7 +49023,7 @@ declare const VSelect: {
|
|
48972
49023
|
}) => vue.VNodeChild) | undefined;
|
48973
49024
|
}) | undefined;
|
48974
49025
|
menuProps?: (Partial<{
|
48975
|
-
location: Anchor;
|
49026
|
+
location: NonNullable<Anchor> | undefined;
|
48976
49027
|
origin: "auto" | Anchor | "overlap";
|
48977
49028
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
48978
49029
|
component?: Component | undefined;
|
@@ -49000,8 +49051,9 @@ declare const VSelect: {
|
|
49000
49051
|
noClickAnimation: boolean;
|
49001
49052
|
persistent: boolean;
|
49002
49053
|
scrim: NonNullable<string | boolean>;
|
49054
|
+
submenu: boolean;
|
49003
49055
|
}> & Omit<{
|
49004
|
-
location: Anchor;
|
49056
|
+
location: NonNullable<Anchor> | undefined;
|
49005
49057
|
origin: "auto" | Anchor | "overlap";
|
49006
49058
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
49007
49059
|
component?: Component | undefined;
|
@@ -49027,6 +49079,7 @@ declare const VSelect: {
|
|
49027
49079
|
noClickAnimation: boolean;
|
49028
49080
|
persistent: boolean;
|
49029
49081
|
scrim: NonNullable<string | boolean>;
|
49082
|
+
submenu: boolean;
|
49030
49083
|
offset?: string | number | number[] | undefined;
|
49031
49084
|
id?: string | undefined;
|
49032
49085
|
height?: string | number | undefined;
|
@@ -49077,7 +49130,7 @@ declare const VSelect: {
|
|
49077
49130
|
}) => vue.VNodeChild) | undefined;
|
49078
49131
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
49079
49132
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
49080
|
-
location: Anchor;
|
49133
|
+
location: NonNullable<Anchor> | undefined;
|
49081
49134
|
origin: "auto" | Anchor | "overlap";
|
49082
49135
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
49083
49136
|
component?: Component | undefined;
|
@@ -49103,6 +49156,7 @@ declare const VSelect: {
|
|
49103
49156
|
noClickAnimation: boolean;
|
49104
49157
|
persistent: boolean;
|
49105
49158
|
scrim: NonNullable<string | boolean>;
|
49159
|
+
submenu: boolean;
|
49106
49160
|
} & {
|
49107
49161
|
offset?: string | number | number[] | undefined;
|
49108
49162
|
id?: string | undefined;
|
@@ -49156,7 +49210,7 @@ declare const VSelect: {
|
|
49156
49210
|
}) => vue.VNodeChild) | undefined;
|
49157
49211
|
} & {
|
49158
49212
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
49159
|
-
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">) | undefined;
|
49213
|
+
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "submenu">) | undefined;
|
49160
49214
|
itemColor?: string | undefined;
|
49161
49215
|
} & {
|
49162
49216
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
@@ -49504,7 +49558,7 @@ declare const VSelect: {
|
|
49504
49558
|
}) => vue.VNodeChild) | undefined;
|
49505
49559
|
}) | undefined;
|
49506
49560
|
menuProps?: (Partial<{
|
49507
|
-
location: Anchor;
|
49561
|
+
location: NonNullable<Anchor> | undefined;
|
49508
49562
|
origin: "auto" | Anchor | "overlap";
|
49509
49563
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
49510
49564
|
component?: Component | undefined;
|
@@ -49532,8 +49586,9 @@ declare const VSelect: {
|
|
49532
49586
|
noClickAnimation: boolean;
|
49533
49587
|
persistent: boolean;
|
49534
49588
|
scrim: NonNullable<string | boolean>;
|
49589
|
+
submenu: boolean;
|
49535
49590
|
}> & Omit<{
|
49536
|
-
location: Anchor;
|
49591
|
+
location: NonNullable<Anchor> | undefined;
|
49537
49592
|
origin: "auto" | Anchor | "overlap";
|
49538
49593
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
49539
49594
|
component?: Component | undefined;
|
@@ -49559,6 +49614,7 @@ declare const VSelect: {
|
|
49559
49614
|
noClickAnimation: boolean;
|
49560
49615
|
persistent: boolean;
|
49561
49616
|
scrim: NonNullable<string | boolean>;
|
49617
|
+
submenu: boolean;
|
49562
49618
|
offset?: string | number | number[] | undefined;
|
49563
49619
|
id?: string | undefined;
|
49564
49620
|
height?: string | number | undefined;
|
@@ -49609,7 +49665,7 @@ declare const VSelect: {
|
|
49609
49665
|
}) => vue.VNodeChild) | undefined;
|
49610
49666
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
49611
49667
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
49612
|
-
location: Anchor;
|
49668
|
+
location: NonNullable<Anchor> | undefined;
|
49613
49669
|
origin: "auto" | Anchor | "overlap";
|
49614
49670
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
49615
49671
|
component?: Component | undefined;
|
@@ -49635,6 +49691,7 @@ declare const VSelect: {
|
|
49635
49691
|
noClickAnimation: boolean;
|
49636
49692
|
persistent: boolean;
|
49637
49693
|
scrim: NonNullable<string | boolean>;
|
49694
|
+
submenu: boolean;
|
49638
49695
|
} & {
|
49639
49696
|
offset?: string | number | number[] | undefined;
|
49640
49697
|
id?: string | undefined;
|
@@ -49688,7 +49745,7 @@ declare const VSelect: {
|
|
49688
49745
|
}) => vue.VNodeChild) | undefined;
|
49689
49746
|
} & {
|
49690
49747
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
49691
|
-
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">) | undefined;
|
49748
|
+
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "submenu">) | undefined;
|
49692
49749
|
itemColor?: string | undefined;
|
49693
49750
|
} & {
|
49694
49751
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
@@ -50149,7 +50206,7 @@ declare const VSelect: {
|
|
50149
50206
|
}) => vue.VNodeChild) | undefined;
|
50150
50207
|
}) | undefined;
|
50151
50208
|
menuProps?: (Partial<{
|
50152
|
-
location: Anchor;
|
50209
|
+
location: NonNullable<Anchor> | undefined;
|
50153
50210
|
origin: "auto" | Anchor | "overlap";
|
50154
50211
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
50155
50212
|
component?: Component | undefined;
|
@@ -50177,8 +50234,9 @@ declare const VSelect: {
|
|
50177
50234
|
noClickAnimation: boolean;
|
50178
50235
|
persistent: boolean;
|
50179
50236
|
scrim: NonNullable<string | boolean>;
|
50237
|
+
submenu: boolean;
|
50180
50238
|
}> & Omit<{
|
50181
|
-
location: Anchor;
|
50239
|
+
location: NonNullable<Anchor> | undefined;
|
50182
50240
|
origin: "auto" | Anchor | "overlap";
|
50183
50241
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
50184
50242
|
component?: Component | undefined;
|
@@ -50204,6 +50262,7 @@ declare const VSelect: {
|
|
50204
50262
|
noClickAnimation: boolean;
|
50205
50263
|
persistent: boolean;
|
50206
50264
|
scrim: NonNullable<string | boolean>;
|
50265
|
+
submenu: boolean;
|
50207
50266
|
offset?: string | number | number[] | undefined;
|
50208
50267
|
id?: string | undefined;
|
50209
50268
|
height?: string | number | undefined;
|
@@ -50254,7 +50313,7 @@ declare const VSelect: {
|
|
50254
50313
|
}) => vue.VNodeChild) | undefined;
|
50255
50314
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
50256
50315
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
50257
|
-
location: Anchor;
|
50316
|
+
location: NonNullable<Anchor> | undefined;
|
50258
50317
|
origin: "auto" | Anchor | "overlap";
|
50259
50318
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
50260
50319
|
component?: Component | undefined;
|
@@ -50280,6 +50339,7 @@ declare const VSelect: {
|
|
50280
50339
|
noClickAnimation: boolean;
|
50281
50340
|
persistent: boolean;
|
50282
50341
|
scrim: NonNullable<string | boolean>;
|
50342
|
+
submenu: boolean;
|
50283
50343
|
} & {
|
50284
50344
|
offset?: string | number | number[] | undefined;
|
50285
50345
|
id?: string | undefined;
|
@@ -50333,7 +50393,7 @@ declare const VSelect: {
|
|
50333
50393
|
}) => vue.VNodeChild) | undefined;
|
50334
50394
|
} & {
|
50335
50395
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
50336
|
-
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">) | undefined;
|
50396
|
+
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "submenu">) | undefined;
|
50337
50397
|
itemColor?: string | undefined;
|
50338
50398
|
} & {
|
50339
50399
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
@@ -50729,7 +50789,7 @@ declare const VSelect: {
|
|
50729
50789
|
}) => vue.VNodeChild) | undefined;
|
50730
50790
|
}) | undefined;
|
50731
50791
|
menuProps?: (Partial<{
|
50732
|
-
location: Anchor;
|
50792
|
+
location: NonNullable<Anchor> | undefined;
|
50733
50793
|
origin: "auto" | Anchor | "overlap";
|
50734
50794
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
50735
50795
|
component?: Component | undefined;
|
@@ -50757,8 +50817,9 @@ declare const VSelect: {
|
|
50757
50817
|
noClickAnimation: boolean;
|
50758
50818
|
persistent: boolean;
|
50759
50819
|
scrim: NonNullable<string | boolean>;
|
50820
|
+
submenu: boolean;
|
50760
50821
|
}> & Omit<{
|
50761
|
-
location: Anchor;
|
50822
|
+
location: NonNullable<Anchor> | undefined;
|
50762
50823
|
origin: "auto" | Anchor | "overlap";
|
50763
50824
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
50764
50825
|
component?: Component | undefined;
|
@@ -50784,6 +50845,7 @@ declare const VSelect: {
|
|
50784
50845
|
noClickAnimation: boolean;
|
50785
50846
|
persistent: boolean;
|
50786
50847
|
scrim: NonNullable<string | boolean>;
|
50848
|
+
submenu: boolean;
|
50787
50849
|
offset?: string | number | number[] | undefined;
|
50788
50850
|
id?: string | undefined;
|
50789
50851
|
height?: string | number | undefined;
|
@@ -50834,7 +50896,7 @@ declare const VSelect: {
|
|
50834
50896
|
}) => vue.VNodeChild) | undefined;
|
50835
50897
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
50836
50898
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
50837
|
-
location: Anchor;
|
50899
|
+
location: NonNullable<Anchor> | undefined;
|
50838
50900
|
origin: "auto" | Anchor | "overlap";
|
50839
50901
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
50840
50902
|
component?: Component | undefined;
|
@@ -50860,6 +50922,7 @@ declare const VSelect: {
|
|
50860
50922
|
noClickAnimation: boolean;
|
50861
50923
|
persistent: boolean;
|
50862
50924
|
scrim: NonNullable<string | boolean>;
|
50925
|
+
submenu: boolean;
|
50863
50926
|
} & {
|
50864
50927
|
offset?: string | number | number[] | undefined;
|
50865
50928
|
id?: string | undefined;
|
@@ -50913,7 +50976,7 @@ declare const VSelect: {
|
|
50913
50976
|
}) => vue.VNodeChild) | undefined;
|
50914
50977
|
} & {
|
50915
50978
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
50916
|
-
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">) | undefined;
|
50979
|
+
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "submenu">) | undefined;
|
50917
50980
|
itemColor?: string | undefined;
|
50918
50981
|
} & {
|
50919
50982
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
@@ -51525,7 +51588,7 @@ declare const VSelect: {
|
|
51525
51588
|
};
|
51526
51589
|
menuProps: {
|
51527
51590
|
type: PropType<Partial<{
|
51528
|
-
location: Anchor;
|
51591
|
+
location: NonNullable<Anchor> | undefined;
|
51529
51592
|
origin: "auto" | Anchor | "overlap";
|
51530
51593
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
51531
51594
|
component?: Component | undefined;
|
@@ -51553,8 +51616,9 @@ declare const VSelect: {
|
|
51553
51616
|
noClickAnimation: boolean;
|
51554
51617
|
persistent: boolean;
|
51555
51618
|
scrim: NonNullable<string | boolean>;
|
51619
|
+
submenu: boolean;
|
51556
51620
|
}> & Omit<{
|
51557
|
-
location: Anchor;
|
51621
|
+
location: NonNullable<Anchor> | undefined;
|
51558
51622
|
origin: "auto" | Anchor | "overlap";
|
51559
51623
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
51560
51624
|
component?: Component | undefined;
|
@@ -51580,6 +51644,7 @@ declare const VSelect: {
|
|
51580
51644
|
noClickAnimation: boolean;
|
51581
51645
|
persistent: boolean;
|
51582
51646
|
scrim: NonNullable<string | boolean>;
|
51647
|
+
submenu: boolean;
|
51583
51648
|
offset?: string | number | number[] | undefined;
|
51584
51649
|
id?: string | undefined;
|
51585
51650
|
height?: string | number | undefined;
|
@@ -51630,7 +51695,7 @@ declare const VSelect: {
|
|
51630
51695
|
}) => vue.VNodeChild) | undefined;
|
51631
51696
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
51632
51697
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
51633
|
-
location: Anchor;
|
51698
|
+
location: NonNullable<Anchor> | undefined;
|
51634
51699
|
origin: "auto" | Anchor | "overlap";
|
51635
51700
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
51636
51701
|
component?: Component | undefined;
|
@@ -51656,6 +51721,7 @@ declare const VSelect: {
|
|
51656
51721
|
noClickAnimation: boolean;
|
51657
51722
|
persistent: boolean;
|
51658
51723
|
scrim: NonNullable<string | boolean>;
|
51724
|
+
submenu: boolean;
|
51659
51725
|
} & {
|
51660
51726
|
offset?: string | number | number[] | undefined;
|
51661
51727
|
id?: string | undefined;
|
@@ -51709,7 +51775,7 @@ declare const VSelect: {
|
|
51709
51775
|
}) => vue.VNodeChild) | undefined;
|
51710
51776
|
} & {
|
51711
51777
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
51712
|
-
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">>;
|
51778
|
+
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "submenu">>;
|
51713
51779
|
};
|
51714
51780
|
multiple: BooleanConstructor;
|
51715
51781
|
noDataText: {
|
@@ -52157,7 +52223,7 @@ declare const VSelect: {
|
|
52157
52223
|
};
|
52158
52224
|
menuProps: {
|
52159
52225
|
type: PropType<Partial<{
|
52160
|
-
location: Anchor;
|
52226
|
+
location: NonNullable<Anchor> | undefined;
|
52161
52227
|
origin: "auto" | Anchor | "overlap";
|
52162
52228
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
52163
52229
|
component?: Component | undefined;
|
@@ -52185,8 +52251,9 @@ declare const VSelect: {
|
|
52185
52251
|
noClickAnimation: boolean;
|
52186
52252
|
persistent: boolean;
|
52187
52253
|
scrim: NonNullable<string | boolean>;
|
52254
|
+
submenu: boolean;
|
52188
52255
|
}> & Omit<{
|
52189
|
-
location: Anchor;
|
52256
|
+
location: NonNullable<Anchor> | undefined;
|
52190
52257
|
origin: "auto" | Anchor | "overlap";
|
52191
52258
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
52192
52259
|
component?: Component | undefined;
|
@@ -52212,6 +52279,7 @@ declare const VSelect: {
|
|
52212
52279
|
noClickAnimation: boolean;
|
52213
52280
|
persistent: boolean;
|
52214
52281
|
scrim: NonNullable<string | boolean>;
|
52282
|
+
submenu: boolean;
|
52215
52283
|
offset?: string | number | number[] | undefined;
|
52216
52284
|
id?: string | undefined;
|
52217
52285
|
height?: string | number | undefined;
|
@@ -52262,7 +52330,7 @@ declare const VSelect: {
|
|
52262
52330
|
}) => vue.VNodeChild) | undefined;
|
52263
52331
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
52264
52332
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
52265
|
-
location: Anchor;
|
52333
|
+
location: NonNullable<Anchor> | undefined;
|
52266
52334
|
origin: "auto" | Anchor | "overlap";
|
52267
52335
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
52268
52336
|
component?: Component | undefined;
|
@@ -52288,6 +52356,7 @@ declare const VSelect: {
|
|
52288
52356
|
noClickAnimation: boolean;
|
52289
52357
|
persistent: boolean;
|
52290
52358
|
scrim: NonNullable<string | boolean>;
|
52359
|
+
submenu: boolean;
|
52291
52360
|
} & {
|
52292
52361
|
offset?: string | number | number[] | undefined;
|
52293
52362
|
id?: string | undefined;
|
@@ -52341,7 +52410,7 @@ declare const VSelect: {
|
|
52341
52410
|
}) => vue.VNodeChild) | undefined;
|
52342
52411
|
} & {
|
52343
52412
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
52344
|
-
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim">>;
|
52413
|
+
}, "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "closeDelay" | "openDelay" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "submenu">>;
|
52345
52414
|
};
|
52346
52415
|
multiple: BooleanConstructor;
|
52347
52416
|
noDataText: {
|
@@ -54620,7 +54689,7 @@ declare const VSnackbar: {
|
|
54620
54689
|
onAfterLeave?: (() => any) | undefined;
|
54621
54690
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
54622
54691
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
54623
|
-
}, "target" | "
|
54692
|
+
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
54624
54693
|
activatorEl: Ref<HTMLElement | undefined>;
|
54625
54694
|
scrimEl: Ref<HTMLElement | undefined>;
|
54626
54695
|
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
@@ -55307,7 +55376,7 @@ declare const VSnackbar: {
|
|
55307
55376
|
onAfterLeave?: (() => any) | undefined;
|
55308
55377
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
55309
55378
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
55310
|
-
}, "target" | "
|
55379
|
+
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
55311
55380
|
activatorEl: Ref<HTMLElement | undefined>;
|
55312
55381
|
scrimEl: Ref<HTMLElement | undefined>;
|
55313
55382
|
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
@@ -55886,7 +55955,7 @@ declare const VSnackbar: {
|
|
55886
55955
|
onAfterLeave?: (() => any) | undefined;
|
55887
55956
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
55888
55957
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
55889
|
-
}, "target" | "
|
55958
|
+
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
55890
55959
|
activatorEl: Ref<HTMLElement | undefined>;
|
55891
55960
|
scrimEl: Ref<HTMLElement | undefined>;
|
55892
55961
|
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
@@ -56544,7 +56613,7 @@ type VSparkline = InstanceType<typeof VSparkline>;
|
|
56544
56613
|
declare const VSpeedDial: {
|
56545
56614
|
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
56546
56615
|
offset: NonNullable<string | number | number[] | undefined>;
|
56547
|
-
location: NonNullable<Anchor>;
|
56616
|
+
location: NonNullable<NonNullable<Anchor> | undefined>;
|
56548
56617
|
origin: "auto" | Anchor | "overlap";
|
56549
56618
|
minWidth: NonNullable<string | number>;
|
56550
56619
|
transition: NonNullable<NonNullable<string | boolean | (vue.TransitionProps & {
|
@@ -56571,6 +56640,7 @@ declare const VSpeedDial: {
|
|
56571
56640
|
noClickAnimation: boolean;
|
56572
56641
|
persistent: boolean;
|
56573
56642
|
scrim: NonNullable<string | boolean>;
|
56643
|
+
submenu: boolean;
|
56574
56644
|
} & {
|
56575
56645
|
id?: string | undefined;
|
56576
56646
|
height?: string | number | undefined;
|
@@ -56626,7 +56696,7 @@ declare const VSpeedDial: {
|
|
56626
56696
|
'update:modelValue': (value: boolean) => boolean;
|
56627
56697
|
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
56628
56698
|
offset: NonNullable<string | number | number[] | undefined>;
|
56629
|
-
location: NonNullable<Anchor>;
|
56699
|
+
location: NonNullable<NonNullable<Anchor> | undefined>;
|
56630
56700
|
origin: "auto" | Anchor | "overlap";
|
56631
56701
|
minWidth: NonNullable<string | number>;
|
56632
56702
|
transition: NonNullable<NonNullable<string | boolean | (vue.TransitionProps & {
|
@@ -56653,6 +56723,7 @@ declare const VSpeedDial: {
|
|
56653
56723
|
noClickAnimation: boolean;
|
56654
56724
|
persistent: boolean;
|
56655
56725
|
scrim: NonNullable<string | boolean>;
|
56726
|
+
submenu: boolean;
|
56656
56727
|
} & {
|
56657
56728
|
id?: string | undefined;
|
56658
56729
|
height?: string | number | undefined;
|
@@ -56706,7 +56777,7 @@ declare const VSpeedDial: {
|
|
56706
56777
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
56707
56778
|
}, {
|
56708
56779
|
offset: NonNullable<string | number | number[] | undefined>;
|
56709
|
-
location: NonNullable<Anchor>;
|
56780
|
+
location: NonNullable<NonNullable<Anchor> | undefined>;
|
56710
56781
|
origin: "auto" | Anchor | "overlap";
|
56711
56782
|
minWidth: NonNullable<string | number>;
|
56712
56783
|
transition: NonNullable<NonNullable<string | boolean | (vue.TransitionProps & {
|
@@ -56735,6 +56806,7 @@ declare const VSpeedDial: {
|
|
56735
56806
|
noClickAnimation: boolean;
|
56736
56807
|
persistent: boolean;
|
56737
56808
|
scrim: NonNullable<string | boolean>;
|
56809
|
+
submenu: boolean;
|
56738
56810
|
}, true, {}, vue.SlotsType<Partial<{
|
56739
56811
|
default: (arg: {
|
56740
56812
|
isActive: vue.Ref<boolean>;
|
@@ -56757,7 +56829,7 @@ declare const VSpeedDial: {
|
|
56757
56829
|
Defaults: {};
|
56758
56830
|
}, {
|
56759
56831
|
offset: NonNullable<string | number | number[] | undefined>;
|
56760
|
-
location: NonNullable<Anchor>;
|
56832
|
+
location: NonNullable<NonNullable<Anchor> | undefined>;
|
56761
56833
|
origin: "auto" | Anchor | "overlap";
|
56762
56834
|
minWidth: NonNullable<string | number>;
|
56763
56835
|
transition: NonNullable<NonNullable<string | boolean | (vue.TransitionProps & {
|
@@ -56784,6 +56856,7 @@ declare const VSpeedDial: {
|
|
56784
56856
|
noClickAnimation: boolean;
|
56785
56857
|
persistent: boolean;
|
56786
56858
|
scrim: NonNullable<string | boolean>;
|
56859
|
+
submenu: boolean;
|
56787
56860
|
} & {
|
56788
56861
|
id?: string | undefined;
|
56789
56862
|
height?: string | number | undefined;
|
@@ -56837,7 +56910,7 @@ declare const VSpeedDial: {
|
|
56837
56910
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
56838
56911
|
}, {}, {}, {}, {}, {
|
56839
56912
|
offset: NonNullable<string | number | number[] | undefined>;
|
56840
|
-
location: NonNullable<Anchor>;
|
56913
|
+
location: NonNullable<NonNullable<Anchor> | undefined>;
|
56841
56914
|
origin: "auto" | Anchor | "overlap";
|
56842
56915
|
minWidth: NonNullable<string | number>;
|
56843
56916
|
transition: NonNullable<NonNullable<string | boolean | (vue.TransitionProps & {
|
@@ -56866,13 +56939,14 @@ declare const VSpeedDial: {
|
|
56866
56939
|
noClickAnimation: boolean;
|
56867
56940
|
persistent: boolean;
|
56868
56941
|
scrim: NonNullable<string | boolean>;
|
56942
|
+
submenu: boolean;
|
56869
56943
|
}>;
|
56870
56944
|
__isFragment?: undefined;
|
56871
56945
|
__isTeleport?: undefined;
|
56872
56946
|
__isSuspense?: undefined;
|
56873
56947
|
} & vue.ComponentOptionsBase<{
|
56874
56948
|
offset: NonNullable<string | number | number[] | undefined>;
|
56875
|
-
location: NonNullable<Anchor>;
|
56949
|
+
location: NonNullable<NonNullable<Anchor> | undefined>;
|
56876
56950
|
origin: "auto" | Anchor | "overlap";
|
56877
56951
|
minWidth: NonNullable<string | number>;
|
56878
56952
|
transition: NonNullable<NonNullable<string | boolean | (vue.TransitionProps & {
|
@@ -56899,6 +56973,7 @@ declare const VSpeedDial: {
|
|
56899
56973
|
noClickAnimation: boolean;
|
56900
56974
|
persistent: boolean;
|
56901
56975
|
scrim: NonNullable<string | boolean>;
|
56976
|
+
submenu: boolean;
|
56902
56977
|
} & {
|
56903
56978
|
id?: string | undefined;
|
56904
56979
|
height?: string | number | undefined;
|
@@ -56954,7 +57029,7 @@ declare const VSpeedDial: {
|
|
56954
57029
|
'update:modelValue': (value: boolean) => boolean;
|
56955
57030
|
}, string, {
|
56956
57031
|
offset: NonNullable<string | number | number[] | undefined>;
|
56957
|
-
location: NonNullable<Anchor>;
|
57032
|
+
location: NonNullable<NonNullable<Anchor> | undefined>;
|
56958
57033
|
origin: "auto" | Anchor | "overlap";
|
56959
57034
|
minWidth: NonNullable<string | number>;
|
56960
57035
|
transition: NonNullable<NonNullable<string | boolean | (vue.TransitionProps & {
|
@@ -56983,6 +57058,7 @@ declare const VSpeedDial: {
|
|
56983
57058
|
noClickAnimation: boolean;
|
56984
57059
|
persistent: boolean;
|
56985
57060
|
scrim: NonNullable<string | boolean>;
|
57061
|
+
submenu: boolean;
|
56986
57062
|
}, {}, string, vue.SlotsType<Partial<{
|
56987
57063
|
default: (arg: {
|
56988
57064
|
isActive: vue.Ref<boolean>;
|
@@ -57001,12 +57077,15 @@ declare const VSpeedDial: {
|
|
57001
57077
|
type: vue.PropType<NonNullable<string | number | number[] | undefined>>;
|
57002
57078
|
default: NonNullable<string | number | number[] | undefined>;
|
57003
57079
|
};
|
57004
|
-
location: Omit<{
|
57080
|
+
location: Omit<Omit<{
|
57005
57081
|
type: vue.PropType<Anchor>;
|
57006
57082
|
default: string;
|
57007
57083
|
}, "type" | "default"> & {
|
57008
|
-
type: vue.PropType<NonNullable<Anchor
|
57009
|
-
default: NonNullable<Anchor
|
57084
|
+
type: vue.PropType<NonNullable<Anchor> | undefined>;
|
57085
|
+
default: NonNullable<Anchor> | undefined;
|
57086
|
+
}, "type" | "default"> & {
|
57087
|
+
type: vue.PropType<NonNullable<NonNullable<Anchor> | undefined>>;
|
57088
|
+
default: NonNullable<NonNullable<Anchor> | undefined>;
|
57010
57089
|
};
|
57011
57090
|
origin: {
|
57012
57091
|
type: vue.PropType<"auto" | Anchor | "overlap">;
|
@@ -57137,17 +57216,21 @@ declare const VSpeedDial: {
|
|
57137
57216
|
};
|
57138
57217
|
attach: vue.PropType<string | boolean | Element>;
|
57139
57218
|
id: StringConstructor;
|
57219
|
+
submenu: BooleanConstructor;
|
57140
57220
|
}, vue.ExtractPropTypes<{
|
57141
57221
|
offset: {
|
57142
57222
|
type: vue.PropType<NonNullable<string | number | number[] | undefined>>;
|
57143
57223
|
default: NonNullable<string | number | number[] | undefined>;
|
57144
57224
|
};
|
57145
|
-
location: Omit<{
|
57225
|
+
location: Omit<Omit<{
|
57146
57226
|
type: vue.PropType<Anchor>;
|
57147
57227
|
default: string;
|
57148
57228
|
}, "type" | "default"> & {
|
57149
|
-
type: vue.PropType<NonNullable<Anchor
|
57150
|
-
default: NonNullable<Anchor
|
57229
|
+
type: vue.PropType<NonNullable<Anchor> | undefined>;
|
57230
|
+
default: NonNullable<Anchor> | undefined;
|
57231
|
+
}, "type" | "default"> & {
|
57232
|
+
type: vue.PropType<NonNullable<NonNullable<Anchor> | undefined>>;
|
57233
|
+
default: NonNullable<NonNullable<Anchor> | undefined>;
|
57151
57234
|
};
|
57152
57235
|
origin: {
|
57153
57236
|
type: vue.PropType<"auto" | Anchor | "overlap">;
|
@@ -57278,6 +57361,7 @@ declare const VSpeedDial: {
|
|
57278
57361
|
};
|
57279
57362
|
attach: vue.PropType<string | boolean | Element>;
|
57280
57363
|
id: StringConstructor;
|
57364
|
+
submenu: BooleanConstructor;
|
57281
57365
|
}>>;
|
57282
57366
|
type VSpeedDial = InstanceType<typeof VSpeedDial>;
|
57283
57367
|
|
@@ -68085,7 +68169,7 @@ declare const VTooltip: {
|
|
68085
68169
|
onAfterLeave?: (() => any) | undefined;
|
68086
68170
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
68087
68171
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
68088
|
-
}, "target" | "
|
68172
|
+
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
68089
68173
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
68090
68174
|
scrimEl: vue.Ref<HTMLElement | undefined>;
|
68091
68175
|
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
@@ -68751,7 +68835,7 @@ declare const VTooltip: {
|
|
68751
68835
|
onAfterLeave?: (() => any) | undefined;
|
68752
68836
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
68753
68837
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
68754
|
-
}, "target" | "
|
68838
|
+
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
68755
68839
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
68756
68840
|
scrimEl: vue.Ref<HTMLElement | undefined>;
|
68757
68841
|
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|
@@ -69321,7 +69405,7 @@ declare const VTooltip: {
|
|
69321
69405
|
onAfterLeave?: (() => any) | undefined;
|
69322
69406
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
69323
69407
|
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
69324
|
-
}, "target" | "
|
69408
|
+
}, "target" | "contentEl" | "activatorEl" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & vue.ShallowUnwrapRef<{
|
69325
69409
|
activatorEl: vue.Ref<HTMLElement | undefined>;
|
69326
69410
|
scrimEl: vue.Ref<HTMLElement | undefined>;
|
69327
69411
|
target: vue.ComputedRef<HTMLElement | [x: number, y: number] | undefined>;
|