vuetify 3.5.8 → 3.5.9
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 +419 -7
- package/dist/json/importMap-labs.json +20 -8
- package/dist/json/importMap.json +150 -150
- package/dist/json/tags.json +118 -0
- package/dist/json/web-types.json +1315 -8
- package/dist/vuetify-labs.css +1437 -1420
- package/dist/vuetify-labs.d.ts +3021 -692
- package/dist/vuetify-labs.esm.js +790 -230
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +790 -230
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +592 -591
- package/dist/vuetify.d.ts +569 -68
- package/dist/vuetify.esm.js +220 -20
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +220 -20
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +486 -466
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.mjs +5 -3
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/components/VAutocomplete/index.d.mts +138 -6
- package/lib/components/VColorPicker/VColorPickerPreview.css +1 -0
- package/lib/components/VColorPicker/VColorPickerPreview.sass +1 -0
- package/lib/components/VColorPicker/_variables.scss +1 -0
- package/lib/components/VCombobox/VCombobox.mjs +5 -3
- package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
- package/lib/components/VCombobox/index.d.mts +138 -6
- package/lib/components/VDatePicker/VDatePickerControls.mjs +1 -0
- package/lib/components/VDatePicker/VDatePickerControls.mjs.map +1 -1
- package/lib/components/VList/VList.mjs +8 -2
- package/lib/components/VList/VList.mjs.map +1 -1
- package/lib/components/VList/VListGroup.mjs +3 -1
- package/lib/components/VList/VListGroup.mjs.map +1 -1
- package/lib/components/VList/VListItem.mjs +17 -4
- package/lib/components/VList/VListItem.mjs.map +1 -1
- package/lib/components/VList/index.d.mts +108 -6
- package/lib/components/VSelect/VSelect.mjs +5 -3
- package/lib/components/VSelect/VSelect.mjs.map +1 -1
- package/lib/components/VSelect/index.d.mts +138 -6
- package/lib/components/index.d.mts +522 -24
- package/lib/composables/nested/activeStrategies.mjs +121 -0
- package/lib/composables/nested/activeStrategies.mjs.map +1 -0
- package/lib/composables/nested/nested.mjs +50 -1
- package/lib/composables/nested/nested.mjs.map +1 -1
- package/lib/composables/nested/selectStrategies.mjs +4 -2
- package/lib/composables/nested/selectStrategies.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/iconsets/fa.mjs +2 -0
- package/lib/iconsets/fa.mjs.map +1 -1
- package/lib/iconsets/fa4.mjs +2 -0
- package/lib/iconsets/fa4.mjs.map +1 -1
- package/lib/iconsets/md.mjs +2 -0
- package/lib/iconsets/md.mjs.map +1 -1
- package/lib/iconsets/mdi-svg.mjs +2 -0
- package/lib/iconsets/mdi-svg.mjs.map +1 -1
- package/lib/iconsets/mdi.mjs +2 -0
- package/lib/iconsets/mdi.mjs.map +1 -1
- package/lib/index.d.mts +47 -44
- package/lib/labs/VTreeview/VTreeview.mjs +154 -0
- package/lib/labs/VTreeview/VTreeview.mjs.map +1 -0
- package/lib/labs/VTreeview/VTreeviewChildren.mjs +98 -0
- package/lib/labs/VTreeview/VTreeviewChildren.mjs.map +1 -0
- package/lib/labs/VTreeview/VTreeviewGroup.mjs +48 -0
- package/lib/labs/VTreeview/VTreeviewGroup.mjs.map +1 -0
- package/lib/labs/VTreeview/VTreeviewItem.css +17 -0
- package/lib/labs/VTreeview/VTreeviewItem.mjs +86 -0
- package/lib/labs/VTreeview/VTreeviewItem.mjs.map +1 -0
- package/lib/labs/VTreeview/VTreeviewItem.sass +19 -0
- package/lib/labs/VTreeview/index.d.mts +1975 -0
- package/lib/labs/VTreeview/index.mjs +4 -0
- package/lib/labs/VTreeview/index.mjs.map +1 -0
- package/lib/labs/VTreeview/shared.mjs +4 -0
- package/lib/labs/VTreeview/shared.mjs.map +1 -0
- package/lib/labs/VTreeview/variables.scss +8 -0
- package/lib/labs/components.d.mts +3708 -1773
- package/lib/labs/components.mjs +3 -2
- package/lib/labs/components.mjs.map +1 -1
- package/package.json +2 -2
package/dist/vuetify.d.ts
CHANGED
|
@@ -4254,7 +4254,15 @@ declare const VListItem: {
|
|
|
4254
4254
|
"v-slot:subtitle"?: false | ((arg: ListItemSubtitleSlot) => vue.VNodeChild) | undefined;
|
|
4255
4255
|
} & {
|
|
4256
4256
|
onClick?: ((e: MouseEvent | KeyboardEvent) => any) | undefined;
|
|
4257
|
-
}, {
|
|
4257
|
+
}, {
|
|
4258
|
+
isGroupActivator: boolean | undefined;
|
|
4259
|
+
isSelected: vue.ComputedRef<boolean>;
|
|
4260
|
+
list: {
|
|
4261
|
+
hasPrepend: vue.Ref<boolean>;
|
|
4262
|
+
updateHasPrepend: (value: boolean) => void;
|
|
4263
|
+
} | null;
|
|
4264
|
+
select: (selected: boolean, e?: Event | undefined) => void;
|
|
4265
|
+
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
4258
4266
|
click: (e: MouseEvent | KeyboardEvent) => true;
|
|
4259
4267
|
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
4260
4268
|
replace: boolean;
|
|
@@ -4430,7 +4438,15 @@ declare const VListItem: {
|
|
|
4430
4438
|
"v-slot:subtitle"?: false | ((arg: ListItemSubtitleSlot) => vue.VNodeChild) | undefined;
|
|
4431
4439
|
} & {
|
|
4432
4440
|
onClick?: ((e: MouseEvent | KeyboardEvent) => any) | undefined;
|
|
4433
|
-
}, {
|
|
4441
|
+
}, {
|
|
4442
|
+
isGroupActivator: boolean | undefined;
|
|
4443
|
+
isSelected: vue.ComputedRef<boolean>;
|
|
4444
|
+
list: {
|
|
4445
|
+
hasPrepend: vue.Ref<boolean>;
|
|
4446
|
+
updateHasPrepend: (value: boolean) => void;
|
|
4447
|
+
} | null;
|
|
4448
|
+
select: (selected: boolean, e?: Event | undefined) => void;
|
|
4449
|
+
}, {}, {}, {}, {
|
|
4434
4450
|
replace: boolean;
|
|
4435
4451
|
link: boolean;
|
|
4436
4452
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
@@ -4518,7 +4534,15 @@ declare const VListItem: {
|
|
|
4518
4534
|
"v-slot:subtitle"?: false | ((arg: ListItemSubtitleSlot) => vue.VNodeChild) | undefined;
|
|
4519
4535
|
} & {
|
|
4520
4536
|
onClick?: ((e: MouseEvent | KeyboardEvent) => any) | undefined;
|
|
4521
|
-
}, {
|
|
4537
|
+
}, {
|
|
4538
|
+
isGroupActivator: boolean | undefined;
|
|
4539
|
+
isSelected: vue.ComputedRef<boolean>;
|
|
4540
|
+
list: {
|
|
4541
|
+
hasPrepend: vue.Ref<boolean>;
|
|
4542
|
+
updateHasPrepend: (value: boolean) => void;
|
|
4543
|
+
} | null;
|
|
4544
|
+
select: (selected: boolean, e?: Event | undefined) => void;
|
|
4545
|
+
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
4522
4546
|
click: (e: MouseEvent | KeyboardEvent) => true;
|
|
4523
4547
|
}, string, {
|
|
4524
4548
|
replace: boolean;
|
|
@@ -4848,6 +4872,8 @@ declare const VAutocomplete: {
|
|
|
4848
4872
|
density: Density;
|
|
4849
4873
|
slim: boolean;
|
|
4850
4874
|
valueComparator: typeof deepEqual;
|
|
4875
|
+
activatable: boolean;
|
|
4876
|
+
selectable: boolean;
|
|
4851
4877
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
4852
4878
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
4853
4879
|
lines: false | "one" | "two" | "three";
|
|
@@ -4864,6 +4890,8 @@ declare const VAutocomplete: {
|
|
|
4864
4890
|
density: Density;
|
|
4865
4891
|
slim: boolean;
|
|
4866
4892
|
valueComparator: typeof deepEqual;
|
|
4893
|
+
activatable: boolean;
|
|
4894
|
+
selectable: boolean;
|
|
4867
4895
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
4868
4896
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
4869
4897
|
lines: false | "one" | "two" | "three";
|
|
@@ -4877,6 +4905,7 @@ declare const VAutocomplete: {
|
|
|
4877
4905
|
maxWidth?: string | number | undefined;
|
|
4878
4906
|
minHeight?: string | number | undefined;
|
|
4879
4907
|
minWidth?: string | number | undefined;
|
|
4908
|
+
activated?: readonly unknown[] | undefined;
|
|
4880
4909
|
class?: any;
|
|
4881
4910
|
elevation?: string | number | undefined;
|
|
4882
4911
|
theme?: string | undefined;
|
|
@@ -4884,9 +4913,11 @@ declare const VAutocomplete: {
|
|
|
4884
4913
|
bgColor?: string | undefined;
|
|
4885
4914
|
baseColor?: string | undefined;
|
|
4886
4915
|
activeClass?: string | undefined;
|
|
4916
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
4887
4917
|
activeColor?: string | undefined;
|
|
4888
4918
|
collapseIcon?: string | undefined;
|
|
4889
4919
|
expandIcon?: string | undefined;
|
|
4920
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
4890
4921
|
"onClick:open"?: ((value: {
|
|
4891
4922
|
id: unknown;
|
|
4892
4923
|
value: boolean;
|
|
@@ -4897,6 +4928,11 @@ declare const VAutocomplete: {
|
|
|
4897
4928
|
value: boolean;
|
|
4898
4929
|
path: unknown[];
|
|
4899
4930
|
}) => any) | undefined;
|
|
4931
|
+
"onClick:activate"?: ((value: {
|
|
4932
|
+
id: unknown;
|
|
4933
|
+
value: boolean;
|
|
4934
|
+
path: unknown[];
|
|
4935
|
+
}) => any) | undefined;
|
|
4900
4936
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
4901
4937
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
4902
4938
|
nav: boolean;
|
|
@@ -4908,6 +4944,8 @@ declare const VAutocomplete: {
|
|
|
4908
4944
|
density: Density;
|
|
4909
4945
|
slim: boolean;
|
|
4910
4946
|
valueComparator: typeof deepEqual;
|
|
4947
|
+
activatable: boolean;
|
|
4948
|
+
selectable: boolean;
|
|
4911
4949
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
4912
4950
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
4913
4951
|
lines: false | "one" | "two" | "three";
|
|
@@ -4922,6 +4960,7 @@ declare const VAutocomplete: {
|
|
|
4922
4960
|
maxWidth?: string | number | undefined;
|
|
4923
4961
|
minHeight?: string | number | undefined;
|
|
4924
4962
|
minWidth?: string | number | undefined;
|
|
4963
|
+
activated?: readonly unknown[] | undefined;
|
|
4925
4964
|
class?: any;
|
|
4926
4965
|
elevation?: string | number | undefined;
|
|
4927
4966
|
theme?: string | undefined;
|
|
@@ -4929,10 +4968,12 @@ declare const VAutocomplete: {
|
|
|
4929
4968
|
bgColor?: string | undefined;
|
|
4930
4969
|
baseColor?: string | undefined;
|
|
4931
4970
|
activeClass?: string | undefined;
|
|
4971
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
4932
4972
|
activeColor?: string | undefined;
|
|
4933
4973
|
collapseIcon?: string | undefined;
|
|
4934
4974
|
expandIcon?: string | undefined;
|
|
4935
4975
|
} & {
|
|
4976
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
4936
4977
|
"onClick:open"?: ((value: {
|
|
4937
4978
|
id: unknown;
|
|
4938
4979
|
value: boolean;
|
|
@@ -4943,7 +4984,12 @@ declare const VAutocomplete: {
|
|
|
4943
4984
|
value: boolean;
|
|
4944
4985
|
path: unknown[];
|
|
4945
4986
|
}) => any) | undefined;
|
|
4946
|
-
|
|
4987
|
+
"onClick:activate"?: ((value: {
|
|
4988
|
+
id: unknown;
|
|
4989
|
+
value: boolean;
|
|
4990
|
+
path: unknown[];
|
|
4991
|
+
}) => any) | undefined;
|
|
4992
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "activatable" | "selectable" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
4947
4993
|
items?: readonly any[] | undefined;
|
|
4948
4994
|
itemTitle?: SelectItemKey<any>;
|
|
4949
4995
|
itemValue?: SelectItemKey<any>;
|
|
@@ -5397,6 +5443,8 @@ declare const VAutocomplete: {
|
|
|
5397
5443
|
density: Density;
|
|
5398
5444
|
slim: boolean;
|
|
5399
5445
|
valueComparator: typeof deepEqual;
|
|
5446
|
+
activatable: boolean;
|
|
5447
|
+
selectable: boolean;
|
|
5400
5448
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
5401
5449
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
5402
5450
|
lines: false | "one" | "two" | "three";
|
|
@@ -5413,6 +5461,8 @@ declare const VAutocomplete: {
|
|
|
5413
5461
|
density: Density;
|
|
5414
5462
|
slim: boolean;
|
|
5415
5463
|
valueComparator: typeof deepEqual;
|
|
5464
|
+
activatable: boolean;
|
|
5465
|
+
selectable: boolean;
|
|
5416
5466
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
5417
5467
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
5418
5468
|
lines: false | "one" | "two" | "three";
|
|
@@ -5426,6 +5476,7 @@ declare const VAutocomplete: {
|
|
|
5426
5476
|
maxWidth?: string | number | undefined;
|
|
5427
5477
|
minHeight?: string | number | undefined;
|
|
5428
5478
|
minWidth?: string | number | undefined;
|
|
5479
|
+
activated?: readonly unknown[] | undefined;
|
|
5429
5480
|
class?: any;
|
|
5430
5481
|
elevation?: string | number | undefined;
|
|
5431
5482
|
theme?: string | undefined;
|
|
@@ -5433,9 +5484,11 @@ declare const VAutocomplete: {
|
|
|
5433
5484
|
bgColor?: string | undefined;
|
|
5434
5485
|
baseColor?: string | undefined;
|
|
5435
5486
|
activeClass?: string | undefined;
|
|
5487
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
5436
5488
|
activeColor?: string | undefined;
|
|
5437
5489
|
collapseIcon?: string | undefined;
|
|
5438
5490
|
expandIcon?: string | undefined;
|
|
5491
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
5439
5492
|
"onClick:open"?: ((value: {
|
|
5440
5493
|
id: unknown;
|
|
5441
5494
|
value: boolean;
|
|
@@ -5446,6 +5499,11 @@ declare const VAutocomplete: {
|
|
|
5446
5499
|
value: boolean;
|
|
5447
5500
|
path: unknown[];
|
|
5448
5501
|
}) => any) | undefined;
|
|
5502
|
+
"onClick:activate"?: ((value: {
|
|
5503
|
+
id: unknown;
|
|
5504
|
+
value: boolean;
|
|
5505
|
+
path: unknown[];
|
|
5506
|
+
}) => any) | undefined;
|
|
5449
5507
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
5450
5508
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
5451
5509
|
nav: boolean;
|
|
@@ -5457,6 +5515,8 @@ declare const VAutocomplete: {
|
|
|
5457
5515
|
density: Density;
|
|
5458
5516
|
slim: boolean;
|
|
5459
5517
|
valueComparator: typeof deepEqual;
|
|
5518
|
+
activatable: boolean;
|
|
5519
|
+
selectable: boolean;
|
|
5460
5520
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
5461
5521
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
5462
5522
|
lines: false | "one" | "two" | "three";
|
|
@@ -5471,6 +5531,7 @@ declare const VAutocomplete: {
|
|
|
5471
5531
|
maxWidth?: string | number | undefined;
|
|
5472
5532
|
minHeight?: string | number | undefined;
|
|
5473
5533
|
minWidth?: string | number | undefined;
|
|
5534
|
+
activated?: readonly unknown[] | undefined;
|
|
5474
5535
|
class?: any;
|
|
5475
5536
|
elevation?: string | number | undefined;
|
|
5476
5537
|
theme?: string | undefined;
|
|
@@ -5478,10 +5539,12 @@ declare const VAutocomplete: {
|
|
|
5478
5539
|
bgColor?: string | undefined;
|
|
5479
5540
|
baseColor?: string | undefined;
|
|
5480
5541
|
activeClass?: string | undefined;
|
|
5542
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
5481
5543
|
activeColor?: string | undefined;
|
|
5482
5544
|
collapseIcon?: string | undefined;
|
|
5483
5545
|
expandIcon?: string | undefined;
|
|
5484
5546
|
} & {
|
|
5547
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
5485
5548
|
"onClick:open"?: ((value: {
|
|
5486
5549
|
id: unknown;
|
|
5487
5550
|
value: boolean;
|
|
@@ -5492,7 +5555,12 @@ declare const VAutocomplete: {
|
|
|
5492
5555
|
value: boolean;
|
|
5493
5556
|
path: unknown[];
|
|
5494
5557
|
}) => any) | undefined;
|
|
5495
|
-
|
|
5558
|
+
"onClick:activate"?: ((value: {
|
|
5559
|
+
id: unknown;
|
|
5560
|
+
value: boolean;
|
|
5561
|
+
path: unknown[];
|
|
5562
|
+
}) => any) | undefined;
|
|
5563
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "activatable" | "selectable" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
5496
5564
|
items?: readonly any[] | undefined;
|
|
5497
5565
|
itemTitle?: SelectItemKey<any>;
|
|
5498
5566
|
itemValue?: SelectItemKey<any>;
|
|
@@ -6058,6 +6126,8 @@ declare const VAutocomplete: {
|
|
|
6058
6126
|
density: Density;
|
|
6059
6127
|
slim: boolean;
|
|
6060
6128
|
valueComparator: typeof deepEqual;
|
|
6129
|
+
activatable: boolean;
|
|
6130
|
+
selectable: boolean;
|
|
6061
6131
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
6062
6132
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
6063
6133
|
lines: false | "one" | "two" | "three";
|
|
@@ -6074,6 +6144,8 @@ declare const VAutocomplete: {
|
|
|
6074
6144
|
density: Density;
|
|
6075
6145
|
slim: boolean;
|
|
6076
6146
|
valueComparator: typeof deepEqual;
|
|
6147
|
+
activatable: boolean;
|
|
6148
|
+
selectable: boolean;
|
|
6077
6149
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
6078
6150
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
6079
6151
|
lines: false | "one" | "two" | "three";
|
|
@@ -6087,6 +6159,7 @@ declare const VAutocomplete: {
|
|
|
6087
6159
|
maxWidth?: string | number | undefined;
|
|
6088
6160
|
minHeight?: string | number | undefined;
|
|
6089
6161
|
minWidth?: string | number | undefined;
|
|
6162
|
+
activated?: readonly unknown[] | undefined;
|
|
6090
6163
|
class?: any;
|
|
6091
6164
|
elevation?: string | number | undefined;
|
|
6092
6165
|
theme?: string | undefined;
|
|
@@ -6094,9 +6167,11 @@ declare const VAutocomplete: {
|
|
|
6094
6167
|
bgColor?: string | undefined;
|
|
6095
6168
|
baseColor?: string | undefined;
|
|
6096
6169
|
activeClass?: string | undefined;
|
|
6170
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
6097
6171
|
activeColor?: string | undefined;
|
|
6098
6172
|
collapseIcon?: string | undefined;
|
|
6099
6173
|
expandIcon?: string | undefined;
|
|
6174
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
6100
6175
|
"onClick:open"?: ((value: {
|
|
6101
6176
|
id: unknown;
|
|
6102
6177
|
value: boolean;
|
|
@@ -6107,6 +6182,11 @@ declare const VAutocomplete: {
|
|
|
6107
6182
|
value: boolean;
|
|
6108
6183
|
path: unknown[];
|
|
6109
6184
|
}) => any) | undefined;
|
|
6185
|
+
"onClick:activate"?: ((value: {
|
|
6186
|
+
id: unknown;
|
|
6187
|
+
value: boolean;
|
|
6188
|
+
path: unknown[];
|
|
6189
|
+
}) => any) | undefined;
|
|
6110
6190
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
6111
6191
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
6112
6192
|
nav: boolean;
|
|
@@ -6118,6 +6198,8 @@ declare const VAutocomplete: {
|
|
|
6118
6198
|
density: Density;
|
|
6119
6199
|
slim: boolean;
|
|
6120
6200
|
valueComparator: typeof deepEqual;
|
|
6201
|
+
activatable: boolean;
|
|
6202
|
+
selectable: boolean;
|
|
6121
6203
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
6122
6204
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
6123
6205
|
lines: false | "one" | "two" | "three";
|
|
@@ -6132,6 +6214,7 @@ declare const VAutocomplete: {
|
|
|
6132
6214
|
maxWidth?: string | number | undefined;
|
|
6133
6215
|
minHeight?: string | number | undefined;
|
|
6134
6216
|
minWidth?: string | number | undefined;
|
|
6217
|
+
activated?: readonly unknown[] | undefined;
|
|
6135
6218
|
class?: any;
|
|
6136
6219
|
elevation?: string | number | undefined;
|
|
6137
6220
|
theme?: string | undefined;
|
|
@@ -6139,10 +6222,12 @@ declare const VAutocomplete: {
|
|
|
6139
6222
|
bgColor?: string | undefined;
|
|
6140
6223
|
baseColor?: string | undefined;
|
|
6141
6224
|
activeClass?: string | undefined;
|
|
6225
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
6142
6226
|
activeColor?: string | undefined;
|
|
6143
6227
|
collapseIcon?: string | undefined;
|
|
6144
6228
|
expandIcon?: string | undefined;
|
|
6145
6229
|
} & {
|
|
6230
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
6146
6231
|
"onClick:open"?: ((value: {
|
|
6147
6232
|
id: unknown;
|
|
6148
6233
|
value: boolean;
|
|
@@ -6153,7 +6238,12 @@ declare const VAutocomplete: {
|
|
|
6153
6238
|
value: boolean;
|
|
6154
6239
|
path: unknown[];
|
|
6155
6240
|
}) => any) | undefined;
|
|
6156
|
-
|
|
6241
|
+
"onClick:activate"?: ((value: {
|
|
6242
|
+
id: unknown;
|
|
6243
|
+
value: boolean;
|
|
6244
|
+
path: unknown[];
|
|
6245
|
+
}) => any) | undefined;
|
|
6246
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "activatable" | "selectable" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
6157
6247
|
items?: readonly any[] | undefined;
|
|
6158
6248
|
itemTitle?: SelectItemKey<any>;
|
|
6159
6249
|
itemValue?: SelectItemKey<any>;
|
|
@@ -6656,6 +6746,8 @@ declare const VAutocomplete: {
|
|
|
6656
6746
|
density: Density;
|
|
6657
6747
|
slim: boolean;
|
|
6658
6748
|
valueComparator: typeof deepEqual;
|
|
6749
|
+
activatable: boolean;
|
|
6750
|
+
selectable: boolean;
|
|
6659
6751
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
6660
6752
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
6661
6753
|
lines: false | "one" | "two" | "three";
|
|
@@ -6672,6 +6764,8 @@ declare const VAutocomplete: {
|
|
|
6672
6764
|
density: Density;
|
|
6673
6765
|
slim: boolean;
|
|
6674
6766
|
valueComparator: typeof deepEqual;
|
|
6767
|
+
activatable: boolean;
|
|
6768
|
+
selectable: boolean;
|
|
6675
6769
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
6676
6770
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
6677
6771
|
lines: false | "one" | "two" | "three";
|
|
@@ -6685,6 +6779,7 @@ declare const VAutocomplete: {
|
|
|
6685
6779
|
maxWidth?: string | number | undefined;
|
|
6686
6780
|
minHeight?: string | number | undefined;
|
|
6687
6781
|
minWidth?: string | number | undefined;
|
|
6782
|
+
activated?: readonly unknown[] | undefined;
|
|
6688
6783
|
class?: any;
|
|
6689
6784
|
elevation?: string | number | undefined;
|
|
6690
6785
|
theme?: string | undefined;
|
|
@@ -6692,9 +6787,11 @@ declare const VAutocomplete: {
|
|
|
6692
6787
|
bgColor?: string | undefined;
|
|
6693
6788
|
baseColor?: string | undefined;
|
|
6694
6789
|
activeClass?: string | undefined;
|
|
6790
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
6695
6791
|
activeColor?: string | undefined;
|
|
6696
6792
|
collapseIcon?: string | undefined;
|
|
6697
6793
|
expandIcon?: string | undefined;
|
|
6794
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
6698
6795
|
"onClick:open"?: ((value: {
|
|
6699
6796
|
id: unknown;
|
|
6700
6797
|
value: boolean;
|
|
@@ -6705,6 +6802,11 @@ declare const VAutocomplete: {
|
|
|
6705
6802
|
value: boolean;
|
|
6706
6803
|
path: unknown[];
|
|
6707
6804
|
}) => any) | undefined;
|
|
6805
|
+
"onClick:activate"?: ((value: {
|
|
6806
|
+
id: unknown;
|
|
6807
|
+
value: boolean;
|
|
6808
|
+
path: unknown[];
|
|
6809
|
+
}) => any) | undefined;
|
|
6708
6810
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
6709
6811
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
6710
6812
|
nav: boolean;
|
|
@@ -6716,6 +6818,8 @@ declare const VAutocomplete: {
|
|
|
6716
6818
|
density: Density;
|
|
6717
6819
|
slim: boolean;
|
|
6718
6820
|
valueComparator: typeof deepEqual;
|
|
6821
|
+
activatable: boolean;
|
|
6822
|
+
selectable: boolean;
|
|
6719
6823
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
6720
6824
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
6721
6825
|
lines: false | "one" | "two" | "three";
|
|
@@ -6730,6 +6834,7 @@ declare const VAutocomplete: {
|
|
|
6730
6834
|
maxWidth?: string | number | undefined;
|
|
6731
6835
|
minHeight?: string | number | undefined;
|
|
6732
6836
|
minWidth?: string | number | undefined;
|
|
6837
|
+
activated?: readonly unknown[] | undefined;
|
|
6733
6838
|
class?: any;
|
|
6734
6839
|
elevation?: string | number | undefined;
|
|
6735
6840
|
theme?: string | undefined;
|
|
@@ -6737,10 +6842,12 @@ declare const VAutocomplete: {
|
|
|
6737
6842
|
bgColor?: string | undefined;
|
|
6738
6843
|
baseColor?: string | undefined;
|
|
6739
6844
|
activeClass?: string | undefined;
|
|
6845
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
6740
6846
|
activeColor?: string | undefined;
|
|
6741
6847
|
collapseIcon?: string | undefined;
|
|
6742
6848
|
expandIcon?: string | undefined;
|
|
6743
6849
|
} & {
|
|
6850
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
6744
6851
|
"onClick:open"?: ((value: {
|
|
6745
6852
|
id: unknown;
|
|
6746
6853
|
value: boolean;
|
|
@@ -6751,7 +6858,12 @@ declare const VAutocomplete: {
|
|
|
6751
6858
|
value: boolean;
|
|
6752
6859
|
path: unknown[];
|
|
6753
6860
|
}) => any) | undefined;
|
|
6754
|
-
|
|
6861
|
+
"onClick:activate"?: ((value: {
|
|
6862
|
+
id: unknown;
|
|
6863
|
+
value: boolean;
|
|
6864
|
+
path: unknown[];
|
|
6865
|
+
}) => any) | undefined;
|
|
6866
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "activatable" | "selectable" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
6755
6867
|
items?: readonly any[] | undefined;
|
|
6756
6868
|
itemTitle?: SelectItemKey<any>;
|
|
6757
6869
|
itemValue?: SelectItemKey<any>;
|
|
@@ -7453,6 +7565,8 @@ declare const VAutocomplete: {
|
|
|
7453
7565
|
density: Density;
|
|
7454
7566
|
slim: boolean;
|
|
7455
7567
|
valueComparator: typeof deepEqual;
|
|
7568
|
+
activatable: boolean;
|
|
7569
|
+
selectable: boolean;
|
|
7456
7570
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
7457
7571
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
7458
7572
|
lines: false | "one" | "two" | "three";
|
|
@@ -7469,6 +7583,8 @@ declare const VAutocomplete: {
|
|
|
7469
7583
|
density: Density;
|
|
7470
7584
|
slim: boolean;
|
|
7471
7585
|
valueComparator: typeof deepEqual;
|
|
7586
|
+
activatable: boolean;
|
|
7587
|
+
selectable: boolean;
|
|
7472
7588
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
7473
7589
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
7474
7590
|
lines: false | "one" | "two" | "three";
|
|
@@ -7482,6 +7598,7 @@ declare const VAutocomplete: {
|
|
|
7482
7598
|
maxWidth?: string | number | undefined;
|
|
7483
7599
|
minHeight?: string | number | undefined;
|
|
7484
7600
|
minWidth?: string | number | undefined;
|
|
7601
|
+
activated?: readonly unknown[] | undefined;
|
|
7485
7602
|
class?: any;
|
|
7486
7603
|
elevation?: string | number | undefined;
|
|
7487
7604
|
theme?: string | undefined;
|
|
@@ -7489,9 +7606,11 @@ declare const VAutocomplete: {
|
|
|
7489
7606
|
bgColor?: string | undefined;
|
|
7490
7607
|
baseColor?: string | undefined;
|
|
7491
7608
|
activeClass?: string | undefined;
|
|
7609
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
7492
7610
|
activeColor?: string | undefined;
|
|
7493
7611
|
collapseIcon?: string | undefined;
|
|
7494
7612
|
expandIcon?: string | undefined;
|
|
7613
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
7495
7614
|
"onClick:open"?: ((value: {
|
|
7496
7615
|
id: unknown;
|
|
7497
7616
|
value: boolean;
|
|
@@ -7502,6 +7621,11 @@ declare const VAutocomplete: {
|
|
|
7502
7621
|
value: boolean;
|
|
7503
7622
|
path: unknown[];
|
|
7504
7623
|
}) => any) | undefined;
|
|
7624
|
+
"onClick:activate"?: ((value: {
|
|
7625
|
+
id: unknown;
|
|
7626
|
+
value: boolean;
|
|
7627
|
+
path: unknown[];
|
|
7628
|
+
}) => any) | undefined;
|
|
7505
7629
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
7506
7630
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
7507
7631
|
nav: boolean;
|
|
@@ -7513,6 +7637,8 @@ declare const VAutocomplete: {
|
|
|
7513
7637
|
density: Density;
|
|
7514
7638
|
slim: boolean;
|
|
7515
7639
|
valueComparator: typeof deepEqual;
|
|
7640
|
+
activatable: boolean;
|
|
7641
|
+
selectable: boolean;
|
|
7516
7642
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
7517
7643
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
7518
7644
|
lines: false | "one" | "two" | "three";
|
|
@@ -7527,6 +7653,7 @@ declare const VAutocomplete: {
|
|
|
7527
7653
|
maxWidth?: string | number | undefined;
|
|
7528
7654
|
minHeight?: string | number | undefined;
|
|
7529
7655
|
minWidth?: string | number | undefined;
|
|
7656
|
+
activated?: readonly unknown[] | undefined;
|
|
7530
7657
|
class?: any;
|
|
7531
7658
|
elevation?: string | number | undefined;
|
|
7532
7659
|
theme?: string | undefined;
|
|
@@ -7534,10 +7661,12 @@ declare const VAutocomplete: {
|
|
|
7534
7661
|
bgColor?: string | undefined;
|
|
7535
7662
|
baseColor?: string | undefined;
|
|
7536
7663
|
activeClass?: string | undefined;
|
|
7664
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
7537
7665
|
activeColor?: string | undefined;
|
|
7538
7666
|
collapseIcon?: string | undefined;
|
|
7539
7667
|
expandIcon?: string | undefined;
|
|
7540
7668
|
} & {
|
|
7669
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
7541
7670
|
"onClick:open"?: ((value: {
|
|
7542
7671
|
id: unknown;
|
|
7543
7672
|
value: boolean;
|
|
@@ -7548,7 +7677,12 @@ declare const VAutocomplete: {
|
|
|
7548
7677
|
value: boolean;
|
|
7549
7678
|
path: unknown[];
|
|
7550
7679
|
}) => any) | undefined;
|
|
7551
|
-
|
|
7680
|
+
"onClick:activate"?: ((value: {
|
|
7681
|
+
id: unknown;
|
|
7682
|
+
value: boolean;
|
|
7683
|
+
path: unknown[];
|
|
7684
|
+
}) => any) | undefined;
|
|
7685
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "activatable" | "selectable" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
7552
7686
|
items?: readonly any[] | undefined;
|
|
7553
7687
|
itemTitle?: SelectItemKey<any>;
|
|
7554
7688
|
itemValue?: SelectItemKey<any>;
|
|
@@ -8106,6 +8240,8 @@ declare const VAutocomplete: {
|
|
|
8106
8240
|
density: Density;
|
|
8107
8241
|
slim: boolean;
|
|
8108
8242
|
valueComparator: typeof deepEqual;
|
|
8243
|
+
activatable: boolean;
|
|
8244
|
+
selectable: boolean;
|
|
8109
8245
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
8110
8246
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
8111
8247
|
lines: false | "one" | "two" | "three";
|
|
@@ -8122,6 +8258,8 @@ declare const VAutocomplete: {
|
|
|
8122
8258
|
density: Density;
|
|
8123
8259
|
slim: boolean;
|
|
8124
8260
|
valueComparator: typeof deepEqual;
|
|
8261
|
+
activatable: boolean;
|
|
8262
|
+
selectable: boolean;
|
|
8125
8263
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
8126
8264
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
8127
8265
|
lines: false | "one" | "two" | "three";
|
|
@@ -8135,6 +8273,7 @@ declare const VAutocomplete: {
|
|
|
8135
8273
|
maxWidth?: string | number | undefined;
|
|
8136
8274
|
minHeight?: string | number | undefined;
|
|
8137
8275
|
minWidth?: string | number | undefined;
|
|
8276
|
+
activated?: readonly unknown[] | undefined;
|
|
8138
8277
|
class?: any;
|
|
8139
8278
|
elevation?: string | number | undefined;
|
|
8140
8279
|
theme?: string | undefined;
|
|
@@ -8142,9 +8281,11 @@ declare const VAutocomplete: {
|
|
|
8142
8281
|
bgColor?: string | undefined;
|
|
8143
8282
|
baseColor?: string | undefined;
|
|
8144
8283
|
activeClass?: string | undefined;
|
|
8284
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
8145
8285
|
activeColor?: string | undefined;
|
|
8146
8286
|
collapseIcon?: string | undefined;
|
|
8147
8287
|
expandIcon?: string | undefined;
|
|
8288
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
8148
8289
|
"onClick:open"?: ((value: {
|
|
8149
8290
|
id: unknown;
|
|
8150
8291
|
value: boolean;
|
|
@@ -8155,6 +8296,11 @@ declare const VAutocomplete: {
|
|
|
8155
8296
|
value: boolean;
|
|
8156
8297
|
path: unknown[];
|
|
8157
8298
|
}) => any) | undefined;
|
|
8299
|
+
"onClick:activate"?: ((value: {
|
|
8300
|
+
id: unknown;
|
|
8301
|
+
value: boolean;
|
|
8302
|
+
path: unknown[];
|
|
8303
|
+
}) => any) | undefined;
|
|
8158
8304
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
8159
8305
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
8160
8306
|
nav: boolean;
|
|
@@ -8166,6 +8312,8 @@ declare const VAutocomplete: {
|
|
|
8166
8312
|
density: Density;
|
|
8167
8313
|
slim: boolean;
|
|
8168
8314
|
valueComparator: typeof deepEqual;
|
|
8315
|
+
activatable: boolean;
|
|
8316
|
+
selectable: boolean;
|
|
8169
8317
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
8170
8318
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
8171
8319
|
lines: false | "one" | "two" | "three";
|
|
@@ -8180,6 +8328,7 @@ declare const VAutocomplete: {
|
|
|
8180
8328
|
maxWidth?: string | number | undefined;
|
|
8181
8329
|
minHeight?: string | number | undefined;
|
|
8182
8330
|
minWidth?: string | number | undefined;
|
|
8331
|
+
activated?: readonly unknown[] | undefined;
|
|
8183
8332
|
class?: any;
|
|
8184
8333
|
elevation?: string | number | undefined;
|
|
8185
8334
|
theme?: string | undefined;
|
|
@@ -8187,10 +8336,12 @@ declare const VAutocomplete: {
|
|
|
8187
8336
|
bgColor?: string | undefined;
|
|
8188
8337
|
baseColor?: string | undefined;
|
|
8189
8338
|
activeClass?: string | undefined;
|
|
8339
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
8190
8340
|
activeColor?: string | undefined;
|
|
8191
8341
|
collapseIcon?: string | undefined;
|
|
8192
8342
|
expandIcon?: string | undefined;
|
|
8193
8343
|
} & {
|
|
8344
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
8194
8345
|
"onClick:open"?: ((value: {
|
|
8195
8346
|
id: unknown;
|
|
8196
8347
|
value: boolean;
|
|
@@ -8201,7 +8352,12 @@ declare const VAutocomplete: {
|
|
|
8201
8352
|
value: boolean;
|
|
8202
8353
|
path: unknown[];
|
|
8203
8354
|
}) => any) | undefined;
|
|
8204
|
-
|
|
8355
|
+
"onClick:activate"?: ((value: {
|
|
8356
|
+
id: unknown;
|
|
8357
|
+
value: boolean;
|
|
8358
|
+
path: unknown[];
|
|
8359
|
+
}) => any) | undefined;
|
|
8360
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "activatable" | "selectable" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
8205
8361
|
items?: readonly any[] | undefined;
|
|
8206
8362
|
itemTitle?: SelectItemKey<any>;
|
|
8207
8363
|
itemValue?: SelectItemKey<any>;
|
|
@@ -18326,6 +18482,8 @@ declare const VCombobox: {
|
|
|
18326
18482
|
density: Density;
|
|
18327
18483
|
slim: boolean;
|
|
18328
18484
|
valueComparator: typeof deepEqual;
|
|
18485
|
+
activatable: boolean;
|
|
18486
|
+
selectable: boolean;
|
|
18329
18487
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
18330
18488
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
18331
18489
|
lines: false | "one" | "two" | "three";
|
|
@@ -18342,6 +18500,8 @@ declare const VCombobox: {
|
|
|
18342
18500
|
density: Density;
|
|
18343
18501
|
slim: boolean;
|
|
18344
18502
|
valueComparator: typeof deepEqual;
|
|
18503
|
+
activatable: boolean;
|
|
18504
|
+
selectable: boolean;
|
|
18345
18505
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
18346
18506
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
18347
18507
|
lines: false | "one" | "two" | "three";
|
|
@@ -18355,6 +18515,7 @@ declare const VCombobox: {
|
|
|
18355
18515
|
maxWidth?: string | number | undefined;
|
|
18356
18516
|
minHeight?: string | number | undefined;
|
|
18357
18517
|
minWidth?: string | number | undefined;
|
|
18518
|
+
activated?: readonly unknown[] | undefined;
|
|
18358
18519
|
class?: any;
|
|
18359
18520
|
elevation?: string | number | undefined;
|
|
18360
18521
|
theme?: string | undefined;
|
|
@@ -18362,9 +18523,11 @@ declare const VCombobox: {
|
|
|
18362
18523
|
bgColor?: string | undefined;
|
|
18363
18524
|
baseColor?: string | undefined;
|
|
18364
18525
|
activeClass?: string | undefined;
|
|
18526
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
18365
18527
|
activeColor?: string | undefined;
|
|
18366
18528
|
collapseIcon?: string | undefined;
|
|
18367
18529
|
expandIcon?: string | undefined;
|
|
18530
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
18368
18531
|
"onClick:open"?: ((value: {
|
|
18369
18532
|
id: unknown;
|
|
18370
18533
|
value: boolean;
|
|
@@ -18375,6 +18538,11 @@ declare const VCombobox: {
|
|
|
18375
18538
|
value: boolean;
|
|
18376
18539
|
path: unknown[];
|
|
18377
18540
|
}) => any) | undefined;
|
|
18541
|
+
"onClick:activate"?: ((value: {
|
|
18542
|
+
id: unknown;
|
|
18543
|
+
value: boolean;
|
|
18544
|
+
path: unknown[];
|
|
18545
|
+
}) => any) | undefined;
|
|
18378
18546
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
18379
18547
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
18380
18548
|
nav: boolean;
|
|
@@ -18386,6 +18554,8 @@ declare const VCombobox: {
|
|
|
18386
18554
|
density: Density;
|
|
18387
18555
|
slim: boolean;
|
|
18388
18556
|
valueComparator: typeof deepEqual;
|
|
18557
|
+
activatable: boolean;
|
|
18558
|
+
selectable: boolean;
|
|
18389
18559
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
18390
18560
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
18391
18561
|
lines: false | "one" | "two" | "three";
|
|
@@ -18400,6 +18570,7 @@ declare const VCombobox: {
|
|
|
18400
18570
|
maxWidth?: string | number | undefined;
|
|
18401
18571
|
minHeight?: string | number | undefined;
|
|
18402
18572
|
minWidth?: string | number | undefined;
|
|
18573
|
+
activated?: readonly unknown[] | undefined;
|
|
18403
18574
|
class?: any;
|
|
18404
18575
|
elevation?: string | number | undefined;
|
|
18405
18576
|
theme?: string | undefined;
|
|
@@ -18407,10 +18578,12 @@ declare const VCombobox: {
|
|
|
18407
18578
|
bgColor?: string | undefined;
|
|
18408
18579
|
baseColor?: string | undefined;
|
|
18409
18580
|
activeClass?: string | undefined;
|
|
18581
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
18410
18582
|
activeColor?: string | undefined;
|
|
18411
18583
|
collapseIcon?: string | undefined;
|
|
18412
18584
|
expandIcon?: string | undefined;
|
|
18413
18585
|
} & {
|
|
18586
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
18414
18587
|
"onClick:open"?: ((value: {
|
|
18415
18588
|
id: unknown;
|
|
18416
18589
|
value: boolean;
|
|
@@ -18421,7 +18594,12 @@ declare const VCombobox: {
|
|
|
18421
18594
|
value: boolean;
|
|
18422
18595
|
path: unknown[];
|
|
18423
18596
|
}) => any) | undefined;
|
|
18424
|
-
|
|
18597
|
+
"onClick:activate"?: ((value: {
|
|
18598
|
+
id: unknown;
|
|
18599
|
+
value: boolean;
|
|
18600
|
+
path: unknown[];
|
|
18601
|
+
}) => any) | undefined;
|
|
18602
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "activatable" | "selectable" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
18425
18603
|
items?: readonly any[] | undefined;
|
|
18426
18604
|
itemTitle?: SelectItemKey<any>;
|
|
18427
18605
|
itemValue?: SelectItemKey<any>;
|
|
@@ -18875,6 +19053,8 @@ declare const VCombobox: {
|
|
|
18875
19053
|
density: Density;
|
|
18876
19054
|
slim: boolean;
|
|
18877
19055
|
valueComparator: typeof deepEqual;
|
|
19056
|
+
activatable: boolean;
|
|
19057
|
+
selectable: boolean;
|
|
18878
19058
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
18879
19059
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
18880
19060
|
lines: false | "one" | "two" | "three";
|
|
@@ -18891,6 +19071,8 @@ declare const VCombobox: {
|
|
|
18891
19071
|
density: Density;
|
|
18892
19072
|
slim: boolean;
|
|
18893
19073
|
valueComparator: typeof deepEqual;
|
|
19074
|
+
activatable: boolean;
|
|
19075
|
+
selectable: boolean;
|
|
18894
19076
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
18895
19077
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
18896
19078
|
lines: false | "one" | "two" | "three";
|
|
@@ -18904,6 +19086,7 @@ declare const VCombobox: {
|
|
|
18904
19086
|
maxWidth?: string | number | undefined;
|
|
18905
19087
|
minHeight?: string | number | undefined;
|
|
18906
19088
|
minWidth?: string | number | undefined;
|
|
19089
|
+
activated?: readonly unknown[] | undefined;
|
|
18907
19090
|
class?: any;
|
|
18908
19091
|
elevation?: string | number | undefined;
|
|
18909
19092
|
theme?: string | undefined;
|
|
@@ -18911,9 +19094,11 @@ declare const VCombobox: {
|
|
|
18911
19094
|
bgColor?: string | undefined;
|
|
18912
19095
|
baseColor?: string | undefined;
|
|
18913
19096
|
activeClass?: string | undefined;
|
|
19097
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
18914
19098
|
activeColor?: string | undefined;
|
|
18915
19099
|
collapseIcon?: string | undefined;
|
|
18916
19100
|
expandIcon?: string | undefined;
|
|
19101
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
18917
19102
|
"onClick:open"?: ((value: {
|
|
18918
19103
|
id: unknown;
|
|
18919
19104
|
value: boolean;
|
|
@@ -18924,6 +19109,11 @@ declare const VCombobox: {
|
|
|
18924
19109
|
value: boolean;
|
|
18925
19110
|
path: unknown[];
|
|
18926
19111
|
}) => any) | undefined;
|
|
19112
|
+
"onClick:activate"?: ((value: {
|
|
19113
|
+
id: unknown;
|
|
19114
|
+
value: boolean;
|
|
19115
|
+
path: unknown[];
|
|
19116
|
+
}) => any) | undefined;
|
|
18927
19117
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
18928
19118
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
18929
19119
|
nav: boolean;
|
|
@@ -18935,6 +19125,8 @@ declare const VCombobox: {
|
|
|
18935
19125
|
density: Density;
|
|
18936
19126
|
slim: boolean;
|
|
18937
19127
|
valueComparator: typeof deepEqual;
|
|
19128
|
+
activatable: boolean;
|
|
19129
|
+
selectable: boolean;
|
|
18938
19130
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
18939
19131
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
18940
19132
|
lines: false | "one" | "two" | "three";
|
|
@@ -18949,6 +19141,7 @@ declare const VCombobox: {
|
|
|
18949
19141
|
maxWidth?: string | number | undefined;
|
|
18950
19142
|
minHeight?: string | number | undefined;
|
|
18951
19143
|
minWidth?: string | number | undefined;
|
|
19144
|
+
activated?: readonly unknown[] | undefined;
|
|
18952
19145
|
class?: any;
|
|
18953
19146
|
elevation?: string | number | undefined;
|
|
18954
19147
|
theme?: string | undefined;
|
|
@@ -18956,10 +19149,12 @@ declare const VCombobox: {
|
|
|
18956
19149
|
bgColor?: string | undefined;
|
|
18957
19150
|
baseColor?: string | undefined;
|
|
18958
19151
|
activeClass?: string | undefined;
|
|
19152
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
18959
19153
|
activeColor?: string | undefined;
|
|
18960
19154
|
collapseIcon?: string | undefined;
|
|
18961
19155
|
expandIcon?: string | undefined;
|
|
18962
19156
|
} & {
|
|
19157
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
18963
19158
|
"onClick:open"?: ((value: {
|
|
18964
19159
|
id: unknown;
|
|
18965
19160
|
value: boolean;
|
|
@@ -18970,7 +19165,12 @@ declare const VCombobox: {
|
|
|
18970
19165
|
value: boolean;
|
|
18971
19166
|
path: unknown[];
|
|
18972
19167
|
}) => any) | undefined;
|
|
18973
|
-
|
|
19168
|
+
"onClick:activate"?: ((value: {
|
|
19169
|
+
id: unknown;
|
|
19170
|
+
value: boolean;
|
|
19171
|
+
path: unknown[];
|
|
19172
|
+
}) => any) | undefined;
|
|
19173
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "activatable" | "selectable" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
18974
19174
|
items?: readonly any[] | undefined;
|
|
18975
19175
|
itemTitle?: SelectItemKey<any>;
|
|
18976
19176
|
itemValue?: SelectItemKey<any>;
|
|
@@ -19536,6 +19736,8 @@ declare const VCombobox: {
|
|
|
19536
19736
|
density: Density;
|
|
19537
19737
|
slim: boolean;
|
|
19538
19738
|
valueComparator: typeof deepEqual;
|
|
19739
|
+
activatable: boolean;
|
|
19740
|
+
selectable: boolean;
|
|
19539
19741
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
19540
19742
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
19541
19743
|
lines: false | "one" | "two" | "three";
|
|
@@ -19552,6 +19754,8 @@ declare const VCombobox: {
|
|
|
19552
19754
|
density: Density;
|
|
19553
19755
|
slim: boolean;
|
|
19554
19756
|
valueComparator: typeof deepEqual;
|
|
19757
|
+
activatable: boolean;
|
|
19758
|
+
selectable: boolean;
|
|
19555
19759
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
19556
19760
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
19557
19761
|
lines: false | "one" | "two" | "three";
|
|
@@ -19565,6 +19769,7 @@ declare const VCombobox: {
|
|
|
19565
19769
|
maxWidth?: string | number | undefined;
|
|
19566
19770
|
minHeight?: string | number | undefined;
|
|
19567
19771
|
minWidth?: string | number | undefined;
|
|
19772
|
+
activated?: readonly unknown[] | undefined;
|
|
19568
19773
|
class?: any;
|
|
19569
19774
|
elevation?: string | number | undefined;
|
|
19570
19775
|
theme?: string | undefined;
|
|
@@ -19572,9 +19777,11 @@ declare const VCombobox: {
|
|
|
19572
19777
|
bgColor?: string | undefined;
|
|
19573
19778
|
baseColor?: string | undefined;
|
|
19574
19779
|
activeClass?: string | undefined;
|
|
19780
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
19575
19781
|
activeColor?: string | undefined;
|
|
19576
19782
|
collapseIcon?: string | undefined;
|
|
19577
19783
|
expandIcon?: string | undefined;
|
|
19784
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
19578
19785
|
"onClick:open"?: ((value: {
|
|
19579
19786
|
id: unknown;
|
|
19580
19787
|
value: boolean;
|
|
@@ -19585,6 +19792,11 @@ declare const VCombobox: {
|
|
|
19585
19792
|
value: boolean;
|
|
19586
19793
|
path: unknown[];
|
|
19587
19794
|
}) => any) | undefined;
|
|
19795
|
+
"onClick:activate"?: ((value: {
|
|
19796
|
+
id: unknown;
|
|
19797
|
+
value: boolean;
|
|
19798
|
+
path: unknown[];
|
|
19799
|
+
}) => any) | undefined;
|
|
19588
19800
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
19589
19801
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
19590
19802
|
nav: boolean;
|
|
@@ -19596,6 +19808,8 @@ declare const VCombobox: {
|
|
|
19596
19808
|
density: Density;
|
|
19597
19809
|
slim: boolean;
|
|
19598
19810
|
valueComparator: typeof deepEqual;
|
|
19811
|
+
activatable: boolean;
|
|
19812
|
+
selectable: boolean;
|
|
19599
19813
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
19600
19814
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
19601
19815
|
lines: false | "one" | "two" | "three";
|
|
@@ -19610,6 +19824,7 @@ declare const VCombobox: {
|
|
|
19610
19824
|
maxWidth?: string | number | undefined;
|
|
19611
19825
|
minHeight?: string | number | undefined;
|
|
19612
19826
|
minWidth?: string | number | undefined;
|
|
19827
|
+
activated?: readonly unknown[] | undefined;
|
|
19613
19828
|
class?: any;
|
|
19614
19829
|
elevation?: string | number | undefined;
|
|
19615
19830
|
theme?: string | undefined;
|
|
@@ -19617,10 +19832,12 @@ declare const VCombobox: {
|
|
|
19617
19832
|
bgColor?: string | undefined;
|
|
19618
19833
|
baseColor?: string | undefined;
|
|
19619
19834
|
activeClass?: string | undefined;
|
|
19835
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
19620
19836
|
activeColor?: string | undefined;
|
|
19621
19837
|
collapseIcon?: string | undefined;
|
|
19622
19838
|
expandIcon?: string | undefined;
|
|
19623
19839
|
} & {
|
|
19840
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
19624
19841
|
"onClick:open"?: ((value: {
|
|
19625
19842
|
id: unknown;
|
|
19626
19843
|
value: boolean;
|
|
@@ -19631,7 +19848,12 @@ declare const VCombobox: {
|
|
|
19631
19848
|
value: boolean;
|
|
19632
19849
|
path: unknown[];
|
|
19633
19850
|
}) => any) | undefined;
|
|
19634
|
-
|
|
19851
|
+
"onClick:activate"?: ((value: {
|
|
19852
|
+
id: unknown;
|
|
19853
|
+
value: boolean;
|
|
19854
|
+
path: unknown[];
|
|
19855
|
+
}) => any) | undefined;
|
|
19856
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "activatable" | "selectable" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
19635
19857
|
items?: readonly any[] | undefined;
|
|
19636
19858
|
itemTitle?: SelectItemKey<any>;
|
|
19637
19859
|
itemValue?: SelectItemKey<any>;
|
|
@@ -20134,6 +20356,8 @@ declare const VCombobox: {
|
|
|
20134
20356
|
density: Density;
|
|
20135
20357
|
slim: boolean;
|
|
20136
20358
|
valueComparator: typeof deepEqual;
|
|
20359
|
+
activatable: boolean;
|
|
20360
|
+
selectable: boolean;
|
|
20137
20361
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
20138
20362
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
20139
20363
|
lines: false | "one" | "two" | "three";
|
|
@@ -20150,6 +20374,8 @@ declare const VCombobox: {
|
|
|
20150
20374
|
density: Density;
|
|
20151
20375
|
slim: boolean;
|
|
20152
20376
|
valueComparator: typeof deepEqual;
|
|
20377
|
+
activatable: boolean;
|
|
20378
|
+
selectable: boolean;
|
|
20153
20379
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
20154
20380
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
20155
20381
|
lines: false | "one" | "two" | "three";
|
|
@@ -20163,6 +20389,7 @@ declare const VCombobox: {
|
|
|
20163
20389
|
maxWidth?: string | number | undefined;
|
|
20164
20390
|
minHeight?: string | number | undefined;
|
|
20165
20391
|
minWidth?: string | number | undefined;
|
|
20392
|
+
activated?: readonly unknown[] | undefined;
|
|
20166
20393
|
class?: any;
|
|
20167
20394
|
elevation?: string | number | undefined;
|
|
20168
20395
|
theme?: string | undefined;
|
|
@@ -20170,9 +20397,11 @@ declare const VCombobox: {
|
|
|
20170
20397
|
bgColor?: string | undefined;
|
|
20171
20398
|
baseColor?: string | undefined;
|
|
20172
20399
|
activeClass?: string | undefined;
|
|
20400
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
20173
20401
|
activeColor?: string | undefined;
|
|
20174
20402
|
collapseIcon?: string | undefined;
|
|
20175
20403
|
expandIcon?: string | undefined;
|
|
20404
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
20176
20405
|
"onClick:open"?: ((value: {
|
|
20177
20406
|
id: unknown;
|
|
20178
20407
|
value: boolean;
|
|
@@ -20183,6 +20412,11 @@ declare const VCombobox: {
|
|
|
20183
20412
|
value: boolean;
|
|
20184
20413
|
path: unknown[];
|
|
20185
20414
|
}) => any) | undefined;
|
|
20415
|
+
"onClick:activate"?: ((value: {
|
|
20416
|
+
id: unknown;
|
|
20417
|
+
value: boolean;
|
|
20418
|
+
path: unknown[];
|
|
20419
|
+
}) => any) | undefined;
|
|
20186
20420
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
20187
20421
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
20188
20422
|
nav: boolean;
|
|
@@ -20194,6 +20428,8 @@ declare const VCombobox: {
|
|
|
20194
20428
|
density: Density;
|
|
20195
20429
|
slim: boolean;
|
|
20196
20430
|
valueComparator: typeof deepEqual;
|
|
20431
|
+
activatable: boolean;
|
|
20432
|
+
selectable: boolean;
|
|
20197
20433
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
20198
20434
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
20199
20435
|
lines: false | "one" | "two" | "three";
|
|
@@ -20208,6 +20444,7 @@ declare const VCombobox: {
|
|
|
20208
20444
|
maxWidth?: string | number | undefined;
|
|
20209
20445
|
minHeight?: string | number | undefined;
|
|
20210
20446
|
minWidth?: string | number | undefined;
|
|
20447
|
+
activated?: readonly unknown[] | undefined;
|
|
20211
20448
|
class?: any;
|
|
20212
20449
|
elevation?: string | number | undefined;
|
|
20213
20450
|
theme?: string | undefined;
|
|
@@ -20215,10 +20452,12 @@ declare const VCombobox: {
|
|
|
20215
20452
|
bgColor?: string | undefined;
|
|
20216
20453
|
baseColor?: string | undefined;
|
|
20217
20454
|
activeClass?: string | undefined;
|
|
20455
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
20218
20456
|
activeColor?: string | undefined;
|
|
20219
20457
|
collapseIcon?: string | undefined;
|
|
20220
20458
|
expandIcon?: string | undefined;
|
|
20221
20459
|
} & {
|
|
20460
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
20222
20461
|
"onClick:open"?: ((value: {
|
|
20223
20462
|
id: unknown;
|
|
20224
20463
|
value: boolean;
|
|
@@ -20229,7 +20468,12 @@ declare const VCombobox: {
|
|
|
20229
20468
|
value: boolean;
|
|
20230
20469
|
path: unknown[];
|
|
20231
20470
|
}) => any) | undefined;
|
|
20232
|
-
|
|
20471
|
+
"onClick:activate"?: ((value: {
|
|
20472
|
+
id: unknown;
|
|
20473
|
+
value: boolean;
|
|
20474
|
+
path: unknown[];
|
|
20475
|
+
}) => any) | undefined;
|
|
20476
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "activatable" | "selectable" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
20233
20477
|
items?: readonly any[] | undefined;
|
|
20234
20478
|
itemTitle?: SelectItemKey<any>;
|
|
20235
20479
|
itemValue?: SelectItemKey<any>;
|
|
@@ -20937,6 +21181,8 @@ declare const VCombobox: {
|
|
|
20937
21181
|
density: Density;
|
|
20938
21182
|
slim: boolean;
|
|
20939
21183
|
valueComparator: typeof deepEqual;
|
|
21184
|
+
activatable: boolean;
|
|
21185
|
+
selectable: boolean;
|
|
20940
21186
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
20941
21187
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
20942
21188
|
lines: false | "one" | "two" | "three";
|
|
@@ -20953,6 +21199,8 @@ declare const VCombobox: {
|
|
|
20953
21199
|
density: Density;
|
|
20954
21200
|
slim: boolean;
|
|
20955
21201
|
valueComparator: typeof deepEqual;
|
|
21202
|
+
activatable: boolean;
|
|
21203
|
+
selectable: boolean;
|
|
20956
21204
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
20957
21205
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
20958
21206
|
lines: false | "one" | "two" | "three";
|
|
@@ -20966,6 +21214,7 @@ declare const VCombobox: {
|
|
|
20966
21214
|
maxWidth?: string | number | undefined;
|
|
20967
21215
|
minHeight?: string | number | undefined;
|
|
20968
21216
|
minWidth?: string | number | undefined;
|
|
21217
|
+
activated?: readonly unknown[] | undefined;
|
|
20969
21218
|
class?: any;
|
|
20970
21219
|
elevation?: string | number | undefined;
|
|
20971
21220
|
theme?: string | undefined;
|
|
@@ -20973,9 +21222,11 @@ declare const VCombobox: {
|
|
|
20973
21222
|
bgColor?: string | undefined;
|
|
20974
21223
|
baseColor?: string | undefined;
|
|
20975
21224
|
activeClass?: string | undefined;
|
|
21225
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
20976
21226
|
activeColor?: string | undefined;
|
|
20977
21227
|
collapseIcon?: string | undefined;
|
|
20978
21228
|
expandIcon?: string | undefined;
|
|
21229
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
20979
21230
|
"onClick:open"?: ((value: {
|
|
20980
21231
|
id: unknown;
|
|
20981
21232
|
value: boolean;
|
|
@@ -20986,6 +21237,11 @@ declare const VCombobox: {
|
|
|
20986
21237
|
value: boolean;
|
|
20987
21238
|
path: unknown[];
|
|
20988
21239
|
}) => any) | undefined;
|
|
21240
|
+
"onClick:activate"?: ((value: {
|
|
21241
|
+
id: unknown;
|
|
21242
|
+
value: boolean;
|
|
21243
|
+
path: unknown[];
|
|
21244
|
+
}) => any) | undefined;
|
|
20989
21245
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
20990
21246
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
20991
21247
|
nav: boolean;
|
|
@@ -20997,6 +21253,8 @@ declare const VCombobox: {
|
|
|
20997
21253
|
density: Density;
|
|
20998
21254
|
slim: boolean;
|
|
20999
21255
|
valueComparator: typeof deepEqual;
|
|
21256
|
+
activatable: boolean;
|
|
21257
|
+
selectable: boolean;
|
|
21000
21258
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
21001
21259
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
21002
21260
|
lines: false | "one" | "two" | "three";
|
|
@@ -21011,6 +21269,7 @@ declare const VCombobox: {
|
|
|
21011
21269
|
maxWidth?: string | number | undefined;
|
|
21012
21270
|
minHeight?: string | number | undefined;
|
|
21013
21271
|
minWidth?: string | number | undefined;
|
|
21272
|
+
activated?: readonly unknown[] | undefined;
|
|
21014
21273
|
class?: any;
|
|
21015
21274
|
elevation?: string | number | undefined;
|
|
21016
21275
|
theme?: string | undefined;
|
|
@@ -21018,10 +21277,12 @@ declare const VCombobox: {
|
|
|
21018
21277
|
bgColor?: string | undefined;
|
|
21019
21278
|
baseColor?: string | undefined;
|
|
21020
21279
|
activeClass?: string | undefined;
|
|
21280
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
21021
21281
|
activeColor?: string | undefined;
|
|
21022
21282
|
collapseIcon?: string | undefined;
|
|
21023
21283
|
expandIcon?: string | undefined;
|
|
21024
21284
|
} & {
|
|
21285
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
21025
21286
|
"onClick:open"?: ((value: {
|
|
21026
21287
|
id: unknown;
|
|
21027
21288
|
value: boolean;
|
|
@@ -21032,7 +21293,12 @@ declare const VCombobox: {
|
|
|
21032
21293
|
value: boolean;
|
|
21033
21294
|
path: unknown[];
|
|
21034
21295
|
}) => any) | undefined;
|
|
21035
|
-
|
|
21296
|
+
"onClick:activate"?: ((value: {
|
|
21297
|
+
id: unknown;
|
|
21298
|
+
value: boolean;
|
|
21299
|
+
path: unknown[];
|
|
21300
|
+
}) => any) | undefined;
|
|
21301
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "activatable" | "selectable" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
21036
21302
|
items?: readonly any[] | undefined;
|
|
21037
21303
|
itemTitle?: SelectItemKey<any>;
|
|
21038
21304
|
itemValue?: SelectItemKey<any>;
|
|
@@ -21599,6 +21865,8 @@ declare const VCombobox: {
|
|
|
21599
21865
|
density: Density;
|
|
21600
21866
|
slim: boolean;
|
|
21601
21867
|
valueComparator: typeof deepEqual;
|
|
21868
|
+
activatable: boolean;
|
|
21869
|
+
selectable: boolean;
|
|
21602
21870
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
21603
21871
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
21604
21872
|
lines: false | "one" | "two" | "three";
|
|
@@ -21615,6 +21883,8 @@ declare const VCombobox: {
|
|
|
21615
21883
|
density: Density;
|
|
21616
21884
|
slim: boolean;
|
|
21617
21885
|
valueComparator: typeof deepEqual;
|
|
21886
|
+
activatable: boolean;
|
|
21887
|
+
selectable: boolean;
|
|
21618
21888
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
21619
21889
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
21620
21890
|
lines: false | "one" | "two" | "three";
|
|
@@ -21628,6 +21898,7 @@ declare const VCombobox: {
|
|
|
21628
21898
|
maxWidth?: string | number | undefined;
|
|
21629
21899
|
minHeight?: string | number | undefined;
|
|
21630
21900
|
minWidth?: string | number | undefined;
|
|
21901
|
+
activated?: readonly unknown[] | undefined;
|
|
21631
21902
|
class?: any;
|
|
21632
21903
|
elevation?: string | number | undefined;
|
|
21633
21904
|
theme?: string | undefined;
|
|
@@ -21635,9 +21906,11 @@ declare const VCombobox: {
|
|
|
21635
21906
|
bgColor?: string | undefined;
|
|
21636
21907
|
baseColor?: string | undefined;
|
|
21637
21908
|
activeClass?: string | undefined;
|
|
21909
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
21638
21910
|
activeColor?: string | undefined;
|
|
21639
21911
|
collapseIcon?: string | undefined;
|
|
21640
21912
|
expandIcon?: string | undefined;
|
|
21913
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
21641
21914
|
"onClick:open"?: ((value: {
|
|
21642
21915
|
id: unknown;
|
|
21643
21916
|
value: boolean;
|
|
@@ -21648,6 +21921,11 @@ declare const VCombobox: {
|
|
|
21648
21921
|
value: boolean;
|
|
21649
21922
|
path: unknown[];
|
|
21650
21923
|
}) => any) | undefined;
|
|
21924
|
+
"onClick:activate"?: ((value: {
|
|
21925
|
+
id: unknown;
|
|
21926
|
+
value: boolean;
|
|
21927
|
+
path: unknown[];
|
|
21928
|
+
}) => any) | undefined;
|
|
21651
21929
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
21652
21930
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
21653
21931
|
nav: boolean;
|
|
@@ -21659,6 +21937,8 @@ declare const VCombobox: {
|
|
|
21659
21937
|
density: Density;
|
|
21660
21938
|
slim: boolean;
|
|
21661
21939
|
valueComparator: typeof deepEqual;
|
|
21940
|
+
activatable: boolean;
|
|
21941
|
+
selectable: boolean;
|
|
21662
21942
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
21663
21943
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
21664
21944
|
lines: false | "one" | "two" | "three";
|
|
@@ -21673,6 +21953,7 @@ declare const VCombobox: {
|
|
|
21673
21953
|
maxWidth?: string | number | undefined;
|
|
21674
21954
|
minHeight?: string | number | undefined;
|
|
21675
21955
|
minWidth?: string | number | undefined;
|
|
21956
|
+
activated?: readonly unknown[] | undefined;
|
|
21676
21957
|
class?: any;
|
|
21677
21958
|
elevation?: string | number | undefined;
|
|
21678
21959
|
theme?: string | undefined;
|
|
@@ -21680,10 +21961,12 @@ declare const VCombobox: {
|
|
|
21680
21961
|
bgColor?: string | undefined;
|
|
21681
21962
|
baseColor?: string | undefined;
|
|
21682
21963
|
activeClass?: string | undefined;
|
|
21964
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
21683
21965
|
activeColor?: string | undefined;
|
|
21684
21966
|
collapseIcon?: string | undefined;
|
|
21685
21967
|
expandIcon?: string | undefined;
|
|
21686
21968
|
} & {
|
|
21969
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
21687
21970
|
"onClick:open"?: ((value: {
|
|
21688
21971
|
id: unknown;
|
|
21689
21972
|
value: boolean;
|
|
@@ -21694,7 +21977,12 @@ declare const VCombobox: {
|
|
|
21694
21977
|
value: boolean;
|
|
21695
21978
|
path: unknown[];
|
|
21696
21979
|
}) => any) | undefined;
|
|
21697
|
-
|
|
21980
|
+
"onClick:activate"?: ((value: {
|
|
21981
|
+
id: unknown;
|
|
21982
|
+
value: boolean;
|
|
21983
|
+
path: unknown[];
|
|
21984
|
+
}) => any) | undefined;
|
|
21985
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "activatable" | "selectable" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
21698
21986
|
items?: readonly any[] | undefined;
|
|
21699
21987
|
itemTitle?: SelectItemKey<any>;
|
|
21700
21988
|
itemValue?: SelectItemKey<any>;
|
|
@@ -37334,6 +37622,8 @@ declare const VList: {
|
|
|
37334
37622
|
density: Density;
|
|
37335
37623
|
slim: boolean;
|
|
37336
37624
|
valueComparator: typeof deepEqual;
|
|
37625
|
+
activatable: boolean;
|
|
37626
|
+
selectable: boolean;
|
|
37337
37627
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
37338
37628
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
37339
37629
|
lines: false | "one" | "two" | "three";
|
|
@@ -37348,6 +37638,7 @@ declare const VList: {
|
|
|
37348
37638
|
maxWidth?: string | number | undefined;
|
|
37349
37639
|
minHeight?: string | number | undefined;
|
|
37350
37640
|
minWidth?: string | number | undefined;
|
|
37641
|
+
activated?: readonly unknown[] | undefined;
|
|
37351
37642
|
class?: any;
|
|
37352
37643
|
elevation?: string | number | undefined;
|
|
37353
37644
|
theme?: string | undefined;
|
|
@@ -37355,10 +37646,12 @@ declare const VList: {
|
|
|
37355
37646
|
bgColor?: string | undefined;
|
|
37356
37647
|
baseColor?: string | undefined;
|
|
37357
37648
|
activeClass?: string | undefined;
|
|
37649
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
37358
37650
|
activeColor?: string | undefined;
|
|
37359
37651
|
collapseIcon?: string | undefined;
|
|
37360
37652
|
expandIcon?: string | undefined;
|
|
37361
37653
|
} & {
|
|
37654
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
37362
37655
|
"onClick:open"?: ((value: {
|
|
37363
37656
|
id: unknown;
|
|
37364
37657
|
value: boolean;
|
|
@@ -37369,18 +37662,31 @@ declare const VList: {
|
|
|
37369
37662
|
value: boolean;
|
|
37370
37663
|
path: unknown[];
|
|
37371
37664
|
}) => any) | undefined;
|
|
37665
|
+
"onClick:activate"?: ((value: {
|
|
37666
|
+
id: unknown;
|
|
37667
|
+
value: boolean;
|
|
37668
|
+
path: unknown[];
|
|
37669
|
+
}) => any) | undefined;
|
|
37372
37670
|
}, {
|
|
37373
37671
|
open: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
37374
37672
|
select: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
37375
37673
|
focus: (location?: 'next' | 'prev' | 'first' | 'last') => void;
|
|
37674
|
+
children: vue.Ref<Map<unknown, unknown[]>>;
|
|
37675
|
+
parents: vue.Ref<Map<unknown, unknown>>;
|
|
37376
37676
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
37377
37677
|
'update:selected': (value: unknown[]) => boolean;
|
|
37678
|
+
'update:activated': (value: unknown[]) => boolean;
|
|
37378
37679
|
'update:opened': (value: unknown[]) => boolean;
|
|
37379
37680
|
'click:open': (value: {
|
|
37380
37681
|
id: unknown;
|
|
37381
37682
|
value: boolean;
|
|
37382
37683
|
path: unknown[];
|
|
37383
37684
|
}) => boolean;
|
|
37685
|
+
'click:activate': (value: {
|
|
37686
|
+
id: unknown;
|
|
37687
|
+
value: boolean;
|
|
37688
|
+
path: unknown[];
|
|
37689
|
+
}) => boolean;
|
|
37384
37690
|
'click:select': (value: {
|
|
37385
37691
|
id: unknown;
|
|
37386
37692
|
value: boolean;
|
|
@@ -37397,6 +37703,8 @@ declare const VList: {
|
|
|
37397
37703
|
density: Density;
|
|
37398
37704
|
slim: boolean;
|
|
37399
37705
|
valueComparator: typeof deepEqual;
|
|
37706
|
+
activatable: boolean;
|
|
37707
|
+
selectable: boolean;
|
|
37400
37708
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
37401
37709
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
37402
37710
|
lines: false | "one" | "two" | "three";
|
|
@@ -37411,6 +37719,7 @@ declare const VList: {
|
|
|
37411
37719
|
maxWidth?: string | number | undefined;
|
|
37412
37720
|
minHeight?: string | number | undefined;
|
|
37413
37721
|
minWidth?: string | number | undefined;
|
|
37722
|
+
activated?: readonly unknown[] | undefined;
|
|
37414
37723
|
class?: any;
|
|
37415
37724
|
elevation?: string | number | undefined;
|
|
37416
37725
|
theme?: string | undefined;
|
|
@@ -37418,10 +37727,12 @@ declare const VList: {
|
|
|
37418
37727
|
bgColor?: string | undefined;
|
|
37419
37728
|
baseColor?: string | undefined;
|
|
37420
37729
|
activeClass?: string | undefined;
|
|
37730
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
37421
37731
|
activeColor?: string | undefined;
|
|
37422
37732
|
collapseIcon?: string | undefined;
|
|
37423
37733
|
expandIcon?: string | undefined;
|
|
37424
37734
|
} & {
|
|
37735
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
37425
37736
|
"onClick:open"?: ((value: {
|
|
37426
37737
|
id: unknown;
|
|
37427
37738
|
value: boolean;
|
|
@@ -37432,6 +37743,11 @@ declare const VList: {
|
|
|
37432
37743
|
value: boolean;
|
|
37433
37744
|
path: unknown[];
|
|
37434
37745
|
}) => any) | undefined;
|
|
37746
|
+
"onClick:activate"?: ((value: {
|
|
37747
|
+
id: unknown;
|
|
37748
|
+
value: boolean;
|
|
37749
|
+
path: unknown[];
|
|
37750
|
+
}) => any) | undefined;
|
|
37435
37751
|
}, {
|
|
37436
37752
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
37437
37753
|
nav: boolean;
|
|
@@ -37444,6 +37760,8 @@ declare const VList: {
|
|
|
37444
37760
|
density: Density;
|
|
37445
37761
|
slim: boolean;
|
|
37446
37762
|
valueComparator: typeof deepEqual;
|
|
37763
|
+
activatable: boolean;
|
|
37764
|
+
selectable: boolean;
|
|
37447
37765
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
37448
37766
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
37449
37767
|
lines: false | "one" | "two" | "three";
|
|
@@ -37537,6 +37855,8 @@ declare const VList: {
|
|
|
37537
37855
|
density: Density;
|
|
37538
37856
|
slim: boolean;
|
|
37539
37857
|
valueComparator: typeof deepEqual;
|
|
37858
|
+
activatable: boolean;
|
|
37859
|
+
selectable: boolean;
|
|
37540
37860
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
37541
37861
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
37542
37862
|
lines: false | "one" | "two" | "three";
|
|
@@ -37551,6 +37871,7 @@ declare const VList: {
|
|
|
37551
37871
|
maxWidth?: string | number | undefined;
|
|
37552
37872
|
minHeight?: string | number | undefined;
|
|
37553
37873
|
minWidth?: string | number | undefined;
|
|
37874
|
+
activated?: readonly unknown[] | undefined;
|
|
37554
37875
|
class?: any;
|
|
37555
37876
|
elevation?: string | number | undefined;
|
|
37556
37877
|
theme?: string | undefined;
|
|
@@ -37558,10 +37879,12 @@ declare const VList: {
|
|
|
37558
37879
|
bgColor?: string | undefined;
|
|
37559
37880
|
baseColor?: string | undefined;
|
|
37560
37881
|
activeClass?: string | undefined;
|
|
37882
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
37561
37883
|
activeColor?: string | undefined;
|
|
37562
37884
|
collapseIcon?: string | undefined;
|
|
37563
37885
|
expandIcon?: string | undefined;
|
|
37564
37886
|
} & {
|
|
37887
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
37565
37888
|
"onClick:open"?: ((value: {
|
|
37566
37889
|
id: unknown;
|
|
37567
37890
|
value: boolean;
|
|
@@ -37572,10 +37895,17 @@ declare const VList: {
|
|
|
37572
37895
|
value: boolean;
|
|
37573
37896
|
path: unknown[];
|
|
37574
37897
|
}) => any) | undefined;
|
|
37898
|
+
"onClick:activate"?: ((value: {
|
|
37899
|
+
id: unknown;
|
|
37900
|
+
value: boolean;
|
|
37901
|
+
path: unknown[];
|
|
37902
|
+
}) => any) | undefined;
|
|
37575
37903
|
}, {
|
|
37576
37904
|
open: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
37577
37905
|
select: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
37578
37906
|
focus: (location?: 'next' | 'prev' | 'first' | 'last') => void;
|
|
37907
|
+
children: vue.Ref<Map<unknown, unknown[]>>;
|
|
37908
|
+
parents: vue.Ref<Map<unknown, unknown>>;
|
|
37579
37909
|
}, {}, {}, {}, {
|
|
37580
37910
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
37581
37911
|
nav: boolean;
|
|
@@ -37588,6 +37918,8 @@ declare const VList: {
|
|
|
37588
37918
|
density: Density;
|
|
37589
37919
|
slim: boolean;
|
|
37590
37920
|
valueComparator: typeof deepEqual;
|
|
37921
|
+
activatable: boolean;
|
|
37922
|
+
selectable: boolean;
|
|
37591
37923
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
37592
37924
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
37593
37925
|
lines: false | "one" | "two" | "three";
|
|
@@ -37608,6 +37940,8 @@ declare const VList: {
|
|
|
37608
37940
|
density: Density;
|
|
37609
37941
|
slim: boolean;
|
|
37610
37942
|
valueComparator: typeof deepEqual;
|
|
37943
|
+
activatable: boolean;
|
|
37944
|
+
selectable: boolean;
|
|
37611
37945
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
37612
37946
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
37613
37947
|
lines: false | "one" | "two" | "three";
|
|
@@ -37622,6 +37956,7 @@ declare const VList: {
|
|
|
37622
37956
|
maxWidth?: string | number | undefined;
|
|
37623
37957
|
minHeight?: string | number | undefined;
|
|
37624
37958
|
minWidth?: string | number | undefined;
|
|
37959
|
+
activated?: readonly unknown[] | undefined;
|
|
37625
37960
|
class?: any;
|
|
37626
37961
|
elevation?: string | number | undefined;
|
|
37627
37962
|
theme?: string | undefined;
|
|
@@ -37629,10 +37964,12 @@ declare const VList: {
|
|
|
37629
37964
|
bgColor?: string | undefined;
|
|
37630
37965
|
baseColor?: string | undefined;
|
|
37631
37966
|
activeClass?: string | undefined;
|
|
37967
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
37632
37968
|
activeColor?: string | undefined;
|
|
37633
37969
|
collapseIcon?: string | undefined;
|
|
37634
37970
|
expandIcon?: string | undefined;
|
|
37635
37971
|
} & {
|
|
37972
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
37636
37973
|
"onClick:open"?: ((value: {
|
|
37637
37974
|
id: unknown;
|
|
37638
37975
|
value: boolean;
|
|
@@ -37643,18 +37980,31 @@ declare const VList: {
|
|
|
37643
37980
|
value: boolean;
|
|
37644
37981
|
path: unknown[];
|
|
37645
37982
|
}) => any) | undefined;
|
|
37983
|
+
"onClick:activate"?: ((value: {
|
|
37984
|
+
id: unknown;
|
|
37985
|
+
value: boolean;
|
|
37986
|
+
path: unknown[];
|
|
37987
|
+
}) => any) | undefined;
|
|
37646
37988
|
}, {
|
|
37647
37989
|
open: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
37648
37990
|
select: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
37649
37991
|
focus: (location?: 'next' | 'prev' | 'first' | 'last') => void;
|
|
37992
|
+
children: vue.Ref<Map<unknown, unknown[]>>;
|
|
37993
|
+
parents: vue.Ref<Map<unknown, unknown>>;
|
|
37650
37994
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
37651
37995
|
'update:selected': (value: unknown[]) => boolean;
|
|
37996
|
+
'update:activated': (value: unknown[]) => boolean;
|
|
37652
37997
|
'update:opened': (value: unknown[]) => boolean;
|
|
37653
37998
|
'click:open': (value: {
|
|
37654
37999
|
id: unknown;
|
|
37655
38000
|
value: boolean;
|
|
37656
38001
|
path: unknown[];
|
|
37657
38002
|
}) => boolean;
|
|
38003
|
+
'click:activate': (value: {
|
|
38004
|
+
id: unknown;
|
|
38005
|
+
value: boolean;
|
|
38006
|
+
path: unknown[];
|
|
38007
|
+
}) => boolean;
|
|
37658
38008
|
'click:select': (value: {
|
|
37659
38009
|
id: unknown;
|
|
37660
38010
|
value: boolean;
|
|
@@ -37672,6 +38022,8 @@ declare const VList: {
|
|
|
37672
38022
|
density: Density;
|
|
37673
38023
|
slim: boolean;
|
|
37674
38024
|
valueComparator: typeof deepEqual;
|
|
38025
|
+
activatable: boolean;
|
|
38026
|
+
selectable: boolean;
|
|
37675
38027
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
37676
38028
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
37677
38029
|
lines: false | "one" | "two" | "three";
|
|
@@ -37837,6 +38189,9 @@ declare const VList: {
|
|
|
37837
38189
|
default: null;
|
|
37838
38190
|
};
|
|
37839
38191
|
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
38192
|
+
activatable: BooleanConstructor;
|
|
38193
|
+
selectable: BooleanConstructor;
|
|
38194
|
+
activeStrategy: PropType<SelectStrategy>;
|
|
37840
38195
|
selectStrategy: {
|
|
37841
38196
|
type: PropType<NonNullable<SelectStrategy>>;
|
|
37842
38197
|
default: NonNullable<SelectStrategy>;
|
|
@@ -37846,6 +38201,7 @@ declare const VList: {
|
|
|
37846
38201
|
default: NonNullable<OpenStrategyProp>;
|
|
37847
38202
|
};
|
|
37848
38203
|
opened: PropType<readonly unknown[]>;
|
|
38204
|
+
activated: PropType<readonly unknown[]>;
|
|
37849
38205
|
selected: PropType<readonly unknown[]>;
|
|
37850
38206
|
mandatory: BooleanConstructor;
|
|
37851
38207
|
baseColor: StringConstructor;
|
|
@@ -37931,6 +38287,9 @@ declare const VList: {
|
|
|
37931
38287
|
default: null;
|
|
37932
38288
|
};
|
|
37933
38289
|
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
38290
|
+
activatable: BooleanConstructor;
|
|
38291
|
+
selectable: BooleanConstructor;
|
|
38292
|
+
activeStrategy: PropType<SelectStrategy>;
|
|
37934
38293
|
selectStrategy: {
|
|
37935
38294
|
type: PropType<NonNullable<SelectStrategy>>;
|
|
37936
38295
|
default: NonNullable<SelectStrategy>;
|
|
@@ -37940,6 +38299,7 @@ declare const VList: {
|
|
|
37940
38299
|
default: NonNullable<OpenStrategyProp>;
|
|
37941
38300
|
};
|
|
37942
38301
|
opened: PropType<readonly unknown[]>;
|
|
38302
|
+
activated: PropType<readonly unknown[]>;
|
|
37943
38303
|
selected: PropType<readonly unknown[]>;
|
|
37944
38304
|
mandatory: BooleanConstructor;
|
|
37945
38305
|
baseColor: StringConstructor;
|
|
@@ -37996,7 +38356,9 @@ declare const VListGroup: {
|
|
|
37996
38356
|
isOpen: boolean;
|
|
37997
38357
|
props: Record<string, unknown>;
|
|
37998
38358
|
}) => vue.VNodeChild) | undefined;
|
|
37999
|
-
}, {
|
|
38359
|
+
}, {
|
|
38360
|
+
isOpen: vue.ComputedRef<boolean>;
|
|
38361
|
+
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
38000
38362
|
style: vue.StyleValue;
|
|
38001
38363
|
tag: string;
|
|
38002
38364
|
subgroup: boolean;
|
|
@@ -38094,7 +38456,9 @@ declare const VListGroup: {
|
|
|
38094
38456
|
isOpen: boolean;
|
|
38095
38457
|
props: Record<string, unknown>;
|
|
38096
38458
|
}) => vue.VNodeChild) | undefined;
|
|
38097
|
-
}, {
|
|
38459
|
+
}, {
|
|
38460
|
+
isOpen: vue.ComputedRef<boolean>;
|
|
38461
|
+
}, {}, {}, {}, {
|
|
38098
38462
|
style: vue.StyleValue;
|
|
38099
38463
|
tag: string;
|
|
38100
38464
|
subgroup: boolean;
|
|
@@ -38142,7 +38506,9 @@ declare const VListGroup: {
|
|
|
38142
38506
|
isOpen: boolean;
|
|
38143
38507
|
props: Record<string, unknown>;
|
|
38144
38508
|
}) => vue.VNodeChild) | undefined;
|
|
38145
|
-
}, {
|
|
38509
|
+
}, {
|
|
38510
|
+
isOpen: vue.ComputedRef<boolean>;
|
|
38511
|
+
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
|
|
38146
38512
|
style: vue.StyleValue;
|
|
38147
38513
|
tag: string;
|
|
38148
38514
|
subgroup: boolean;
|
|
@@ -46410,6 +46776,8 @@ declare const VSelect: {
|
|
|
46410
46776
|
density: Density;
|
|
46411
46777
|
slim: boolean;
|
|
46412
46778
|
valueComparator: typeof deepEqual;
|
|
46779
|
+
activatable: boolean;
|
|
46780
|
+
selectable: boolean;
|
|
46413
46781
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
46414
46782
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
46415
46783
|
lines: false | "one" | "two" | "three";
|
|
@@ -46426,6 +46794,8 @@ declare const VSelect: {
|
|
|
46426
46794
|
density: Density;
|
|
46427
46795
|
slim: boolean;
|
|
46428
46796
|
valueComparator: typeof deepEqual;
|
|
46797
|
+
activatable: boolean;
|
|
46798
|
+
selectable: boolean;
|
|
46429
46799
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
46430
46800
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
46431
46801
|
lines: false | "one" | "two" | "three";
|
|
@@ -46439,6 +46809,7 @@ declare const VSelect: {
|
|
|
46439
46809
|
maxWidth?: string | number | undefined;
|
|
46440
46810
|
minHeight?: string | number | undefined;
|
|
46441
46811
|
minWidth?: string | number | undefined;
|
|
46812
|
+
activated?: readonly unknown[] | undefined;
|
|
46442
46813
|
class?: any;
|
|
46443
46814
|
elevation?: string | number | undefined;
|
|
46444
46815
|
theme?: string | undefined;
|
|
@@ -46446,9 +46817,11 @@ declare const VSelect: {
|
|
|
46446
46817
|
bgColor?: string | undefined;
|
|
46447
46818
|
baseColor?: string | undefined;
|
|
46448
46819
|
activeClass?: string | undefined;
|
|
46820
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
46449
46821
|
activeColor?: string | undefined;
|
|
46450
46822
|
collapseIcon?: string | undefined;
|
|
46451
46823
|
expandIcon?: string | undefined;
|
|
46824
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
46452
46825
|
"onClick:open"?: ((value: {
|
|
46453
46826
|
id: unknown;
|
|
46454
46827
|
value: boolean;
|
|
@@ -46459,6 +46832,11 @@ declare const VSelect: {
|
|
|
46459
46832
|
value: boolean;
|
|
46460
46833
|
path: unknown[];
|
|
46461
46834
|
}) => any) | undefined;
|
|
46835
|
+
"onClick:activate"?: ((value: {
|
|
46836
|
+
id: unknown;
|
|
46837
|
+
value: boolean;
|
|
46838
|
+
path: unknown[];
|
|
46839
|
+
}) => any) | undefined;
|
|
46462
46840
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
46463
46841
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
46464
46842
|
nav: boolean;
|
|
@@ -46470,6 +46848,8 @@ declare const VSelect: {
|
|
|
46470
46848
|
density: Density;
|
|
46471
46849
|
slim: boolean;
|
|
46472
46850
|
valueComparator: typeof deepEqual;
|
|
46851
|
+
activatable: boolean;
|
|
46852
|
+
selectable: boolean;
|
|
46473
46853
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
46474
46854
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
46475
46855
|
lines: false | "one" | "two" | "three";
|
|
@@ -46484,6 +46864,7 @@ declare const VSelect: {
|
|
|
46484
46864
|
maxWidth?: string | number | undefined;
|
|
46485
46865
|
minHeight?: string | number | undefined;
|
|
46486
46866
|
minWidth?: string | number | undefined;
|
|
46867
|
+
activated?: readonly unknown[] | undefined;
|
|
46487
46868
|
class?: any;
|
|
46488
46869
|
elevation?: string | number | undefined;
|
|
46489
46870
|
theme?: string | undefined;
|
|
@@ -46491,10 +46872,12 @@ declare const VSelect: {
|
|
|
46491
46872
|
bgColor?: string | undefined;
|
|
46492
46873
|
baseColor?: string | undefined;
|
|
46493
46874
|
activeClass?: string | undefined;
|
|
46875
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
46494
46876
|
activeColor?: string | undefined;
|
|
46495
46877
|
collapseIcon?: string | undefined;
|
|
46496
46878
|
expandIcon?: string | undefined;
|
|
46497
46879
|
} & {
|
|
46880
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
46498
46881
|
"onClick:open"?: ((value: {
|
|
46499
46882
|
id: unknown;
|
|
46500
46883
|
value: boolean;
|
|
@@ -46505,7 +46888,12 @@ declare const VSelect: {
|
|
|
46505
46888
|
value: boolean;
|
|
46506
46889
|
path: unknown[];
|
|
46507
46890
|
}) => any) | undefined;
|
|
46508
|
-
|
|
46891
|
+
"onClick:activate"?: ((value: {
|
|
46892
|
+
id: unknown;
|
|
46893
|
+
value: boolean;
|
|
46894
|
+
path: unknown[];
|
|
46895
|
+
}) => any) | undefined;
|
|
46896
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "activatable" | "selectable" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
46509
46897
|
items?: readonly any[] | undefined;
|
|
46510
46898
|
itemTitle?: SelectItemKey<any>;
|
|
46511
46899
|
itemValue?: SelectItemKey<any>;
|
|
@@ -46951,6 +47339,8 @@ declare const VSelect: {
|
|
|
46951
47339
|
density: Density;
|
|
46952
47340
|
slim: boolean;
|
|
46953
47341
|
valueComparator: typeof deepEqual;
|
|
47342
|
+
activatable: boolean;
|
|
47343
|
+
selectable: boolean;
|
|
46954
47344
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
46955
47345
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
46956
47346
|
lines: false | "one" | "two" | "three";
|
|
@@ -46967,6 +47357,8 @@ declare const VSelect: {
|
|
|
46967
47357
|
density: Density;
|
|
46968
47358
|
slim: boolean;
|
|
46969
47359
|
valueComparator: typeof deepEqual;
|
|
47360
|
+
activatable: boolean;
|
|
47361
|
+
selectable: boolean;
|
|
46970
47362
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
46971
47363
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
46972
47364
|
lines: false | "one" | "two" | "three";
|
|
@@ -46980,6 +47372,7 @@ declare const VSelect: {
|
|
|
46980
47372
|
maxWidth?: string | number | undefined;
|
|
46981
47373
|
minHeight?: string | number | undefined;
|
|
46982
47374
|
minWidth?: string | number | undefined;
|
|
47375
|
+
activated?: readonly unknown[] | undefined;
|
|
46983
47376
|
class?: any;
|
|
46984
47377
|
elevation?: string | number | undefined;
|
|
46985
47378
|
theme?: string | undefined;
|
|
@@ -46987,9 +47380,11 @@ declare const VSelect: {
|
|
|
46987
47380
|
bgColor?: string | undefined;
|
|
46988
47381
|
baseColor?: string | undefined;
|
|
46989
47382
|
activeClass?: string | undefined;
|
|
47383
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
46990
47384
|
activeColor?: string | undefined;
|
|
46991
47385
|
collapseIcon?: string | undefined;
|
|
46992
47386
|
expandIcon?: string | undefined;
|
|
47387
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
46993
47388
|
"onClick:open"?: ((value: {
|
|
46994
47389
|
id: unknown;
|
|
46995
47390
|
value: boolean;
|
|
@@ -47000,6 +47395,11 @@ declare const VSelect: {
|
|
|
47000
47395
|
value: boolean;
|
|
47001
47396
|
path: unknown[];
|
|
47002
47397
|
}) => any) | undefined;
|
|
47398
|
+
"onClick:activate"?: ((value: {
|
|
47399
|
+
id: unknown;
|
|
47400
|
+
value: boolean;
|
|
47401
|
+
path: unknown[];
|
|
47402
|
+
}) => any) | undefined;
|
|
47003
47403
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
47004
47404
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
47005
47405
|
nav: boolean;
|
|
@@ -47011,6 +47411,8 @@ declare const VSelect: {
|
|
|
47011
47411
|
density: Density;
|
|
47012
47412
|
slim: boolean;
|
|
47013
47413
|
valueComparator: typeof deepEqual;
|
|
47414
|
+
activatable: boolean;
|
|
47415
|
+
selectable: boolean;
|
|
47014
47416
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
47015
47417
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
47016
47418
|
lines: false | "one" | "two" | "three";
|
|
@@ -47025,6 +47427,7 @@ declare const VSelect: {
|
|
|
47025
47427
|
maxWidth?: string | number | undefined;
|
|
47026
47428
|
minHeight?: string | number | undefined;
|
|
47027
47429
|
minWidth?: string | number | undefined;
|
|
47430
|
+
activated?: readonly unknown[] | undefined;
|
|
47028
47431
|
class?: any;
|
|
47029
47432
|
elevation?: string | number | undefined;
|
|
47030
47433
|
theme?: string | undefined;
|
|
@@ -47032,10 +47435,12 @@ declare const VSelect: {
|
|
|
47032
47435
|
bgColor?: string | undefined;
|
|
47033
47436
|
baseColor?: string | undefined;
|
|
47034
47437
|
activeClass?: string | undefined;
|
|
47438
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
47035
47439
|
activeColor?: string | undefined;
|
|
47036
47440
|
collapseIcon?: string | undefined;
|
|
47037
47441
|
expandIcon?: string | undefined;
|
|
47038
47442
|
} & {
|
|
47443
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
47039
47444
|
"onClick:open"?: ((value: {
|
|
47040
47445
|
id: unknown;
|
|
47041
47446
|
value: boolean;
|
|
@@ -47046,7 +47451,12 @@ declare const VSelect: {
|
|
|
47046
47451
|
value: boolean;
|
|
47047
47452
|
path: unknown[];
|
|
47048
47453
|
}) => any) | undefined;
|
|
47049
|
-
|
|
47454
|
+
"onClick:activate"?: ((value: {
|
|
47455
|
+
id: unknown;
|
|
47456
|
+
value: boolean;
|
|
47457
|
+
path: unknown[];
|
|
47458
|
+
}) => any) | undefined;
|
|
47459
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "activatable" | "selectable" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
47050
47460
|
items?: readonly any[] | undefined;
|
|
47051
47461
|
itemTitle?: SelectItemKey<any>;
|
|
47052
47462
|
itemValue?: SelectItemKey<any>;
|
|
@@ -47603,6 +48013,8 @@ declare const VSelect: {
|
|
|
47603
48013
|
density: Density;
|
|
47604
48014
|
slim: boolean;
|
|
47605
48015
|
valueComparator: typeof deepEqual;
|
|
48016
|
+
activatable: boolean;
|
|
48017
|
+
selectable: boolean;
|
|
47606
48018
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
47607
48019
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
47608
48020
|
lines: false | "one" | "two" | "three";
|
|
@@ -47619,6 +48031,8 @@ declare const VSelect: {
|
|
|
47619
48031
|
density: Density;
|
|
47620
48032
|
slim: boolean;
|
|
47621
48033
|
valueComparator: typeof deepEqual;
|
|
48034
|
+
activatable: boolean;
|
|
48035
|
+
selectable: boolean;
|
|
47622
48036
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
47623
48037
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
47624
48038
|
lines: false | "one" | "two" | "three";
|
|
@@ -47632,6 +48046,7 @@ declare const VSelect: {
|
|
|
47632
48046
|
maxWidth?: string | number | undefined;
|
|
47633
48047
|
minHeight?: string | number | undefined;
|
|
47634
48048
|
minWidth?: string | number | undefined;
|
|
48049
|
+
activated?: readonly unknown[] | undefined;
|
|
47635
48050
|
class?: any;
|
|
47636
48051
|
elevation?: string | number | undefined;
|
|
47637
48052
|
theme?: string | undefined;
|
|
@@ -47639,9 +48054,11 @@ declare const VSelect: {
|
|
|
47639
48054
|
bgColor?: string | undefined;
|
|
47640
48055
|
baseColor?: string | undefined;
|
|
47641
48056
|
activeClass?: string | undefined;
|
|
48057
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
47642
48058
|
activeColor?: string | undefined;
|
|
47643
48059
|
collapseIcon?: string | undefined;
|
|
47644
48060
|
expandIcon?: string | undefined;
|
|
48061
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
47645
48062
|
"onClick:open"?: ((value: {
|
|
47646
48063
|
id: unknown;
|
|
47647
48064
|
value: boolean;
|
|
@@ -47652,6 +48069,11 @@ declare const VSelect: {
|
|
|
47652
48069
|
value: boolean;
|
|
47653
48070
|
path: unknown[];
|
|
47654
48071
|
}) => any) | undefined;
|
|
48072
|
+
"onClick:activate"?: ((value: {
|
|
48073
|
+
id: unknown;
|
|
48074
|
+
value: boolean;
|
|
48075
|
+
path: unknown[];
|
|
48076
|
+
}) => any) | undefined;
|
|
47655
48077
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
47656
48078
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
47657
48079
|
nav: boolean;
|
|
@@ -47663,6 +48085,8 @@ declare const VSelect: {
|
|
|
47663
48085
|
density: Density;
|
|
47664
48086
|
slim: boolean;
|
|
47665
48087
|
valueComparator: typeof deepEqual;
|
|
48088
|
+
activatable: boolean;
|
|
48089
|
+
selectable: boolean;
|
|
47666
48090
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
47667
48091
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
47668
48092
|
lines: false | "one" | "two" | "three";
|
|
@@ -47677,6 +48101,7 @@ declare const VSelect: {
|
|
|
47677
48101
|
maxWidth?: string | number | undefined;
|
|
47678
48102
|
minHeight?: string | number | undefined;
|
|
47679
48103
|
minWidth?: string | number | undefined;
|
|
48104
|
+
activated?: readonly unknown[] | undefined;
|
|
47680
48105
|
class?: any;
|
|
47681
48106
|
elevation?: string | number | undefined;
|
|
47682
48107
|
theme?: string | undefined;
|
|
@@ -47684,10 +48109,12 @@ declare const VSelect: {
|
|
|
47684
48109
|
bgColor?: string | undefined;
|
|
47685
48110
|
baseColor?: string | undefined;
|
|
47686
48111
|
activeClass?: string | undefined;
|
|
48112
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
47687
48113
|
activeColor?: string | undefined;
|
|
47688
48114
|
collapseIcon?: string | undefined;
|
|
47689
48115
|
expandIcon?: string | undefined;
|
|
47690
48116
|
} & {
|
|
48117
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
47691
48118
|
"onClick:open"?: ((value: {
|
|
47692
48119
|
id: unknown;
|
|
47693
48120
|
value: boolean;
|
|
@@ -47698,7 +48125,12 @@ declare const VSelect: {
|
|
|
47698
48125
|
value: boolean;
|
|
47699
48126
|
path: unknown[];
|
|
47700
48127
|
}) => any) | undefined;
|
|
47701
|
-
|
|
48128
|
+
"onClick:activate"?: ((value: {
|
|
48129
|
+
id: unknown;
|
|
48130
|
+
value: boolean;
|
|
48131
|
+
path: unknown[];
|
|
48132
|
+
}) => any) | undefined;
|
|
48133
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "activatable" | "selectable" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
47702
48134
|
items?: readonly any[] | undefined;
|
|
47703
48135
|
itemTitle?: SelectItemKey<any>;
|
|
47704
48136
|
itemValue?: SelectItemKey<any>;
|
|
@@ -48192,6 +48624,8 @@ declare const VSelect: {
|
|
|
48192
48624
|
density: Density;
|
|
48193
48625
|
slim: boolean;
|
|
48194
48626
|
valueComparator: typeof deepEqual;
|
|
48627
|
+
activatable: boolean;
|
|
48628
|
+
selectable: boolean;
|
|
48195
48629
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
48196
48630
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
48197
48631
|
lines: false | "one" | "two" | "three";
|
|
@@ -48208,6 +48642,8 @@ declare const VSelect: {
|
|
|
48208
48642
|
density: Density;
|
|
48209
48643
|
slim: boolean;
|
|
48210
48644
|
valueComparator: typeof deepEqual;
|
|
48645
|
+
activatable: boolean;
|
|
48646
|
+
selectable: boolean;
|
|
48211
48647
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
48212
48648
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
48213
48649
|
lines: false | "one" | "two" | "three";
|
|
@@ -48221,6 +48657,7 @@ declare const VSelect: {
|
|
|
48221
48657
|
maxWidth?: string | number | undefined;
|
|
48222
48658
|
minHeight?: string | number | undefined;
|
|
48223
48659
|
minWidth?: string | number | undefined;
|
|
48660
|
+
activated?: readonly unknown[] | undefined;
|
|
48224
48661
|
class?: any;
|
|
48225
48662
|
elevation?: string | number | undefined;
|
|
48226
48663
|
theme?: string | undefined;
|
|
@@ -48228,9 +48665,11 @@ declare const VSelect: {
|
|
|
48228
48665
|
bgColor?: string | undefined;
|
|
48229
48666
|
baseColor?: string | undefined;
|
|
48230
48667
|
activeClass?: string | undefined;
|
|
48668
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
48231
48669
|
activeColor?: string | undefined;
|
|
48232
48670
|
collapseIcon?: string | undefined;
|
|
48233
48671
|
expandIcon?: string | undefined;
|
|
48672
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
48234
48673
|
"onClick:open"?: ((value: {
|
|
48235
48674
|
id: unknown;
|
|
48236
48675
|
value: boolean;
|
|
@@ -48241,6 +48680,11 @@ declare const VSelect: {
|
|
|
48241
48680
|
value: boolean;
|
|
48242
48681
|
path: unknown[];
|
|
48243
48682
|
}) => any) | undefined;
|
|
48683
|
+
"onClick:activate"?: ((value: {
|
|
48684
|
+
id: unknown;
|
|
48685
|
+
value: boolean;
|
|
48686
|
+
path: unknown[];
|
|
48687
|
+
}) => any) | undefined;
|
|
48244
48688
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
48245
48689
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
48246
48690
|
nav: boolean;
|
|
@@ -48252,6 +48696,8 @@ declare const VSelect: {
|
|
|
48252
48696
|
density: Density;
|
|
48253
48697
|
slim: boolean;
|
|
48254
48698
|
valueComparator: typeof deepEqual;
|
|
48699
|
+
activatable: boolean;
|
|
48700
|
+
selectable: boolean;
|
|
48255
48701
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
48256
48702
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
48257
48703
|
lines: false | "one" | "two" | "three";
|
|
@@ -48266,6 +48712,7 @@ declare const VSelect: {
|
|
|
48266
48712
|
maxWidth?: string | number | undefined;
|
|
48267
48713
|
minHeight?: string | number | undefined;
|
|
48268
48714
|
minWidth?: string | number | undefined;
|
|
48715
|
+
activated?: readonly unknown[] | undefined;
|
|
48269
48716
|
class?: any;
|
|
48270
48717
|
elevation?: string | number | undefined;
|
|
48271
48718
|
theme?: string | undefined;
|
|
@@ -48273,10 +48720,12 @@ declare const VSelect: {
|
|
|
48273
48720
|
bgColor?: string | undefined;
|
|
48274
48721
|
baseColor?: string | undefined;
|
|
48275
48722
|
activeClass?: string | undefined;
|
|
48723
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
48276
48724
|
activeColor?: string | undefined;
|
|
48277
48725
|
collapseIcon?: string | undefined;
|
|
48278
48726
|
expandIcon?: string | undefined;
|
|
48279
48727
|
} & {
|
|
48728
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
48280
48729
|
"onClick:open"?: ((value: {
|
|
48281
48730
|
id: unknown;
|
|
48282
48731
|
value: boolean;
|
|
@@ -48287,7 +48736,12 @@ declare const VSelect: {
|
|
|
48287
48736
|
value: boolean;
|
|
48288
48737
|
path: unknown[];
|
|
48289
48738
|
}) => any) | undefined;
|
|
48290
|
-
|
|
48739
|
+
"onClick:activate"?: ((value: {
|
|
48740
|
+
id: unknown;
|
|
48741
|
+
value: boolean;
|
|
48742
|
+
path: unknown[];
|
|
48743
|
+
}) => any) | undefined;
|
|
48744
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "activatable" | "selectable" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
48291
48745
|
items?: readonly any[] | undefined;
|
|
48292
48746
|
itemTitle?: SelectItemKey<any>;
|
|
48293
48747
|
itemValue?: SelectItemKey<any>;
|
|
@@ -48988,6 +49442,8 @@ declare const VSelect: {
|
|
|
48988
49442
|
density: Density;
|
|
48989
49443
|
slim: boolean;
|
|
48990
49444
|
valueComparator: typeof deepEqual;
|
|
49445
|
+
activatable: boolean;
|
|
49446
|
+
selectable: boolean;
|
|
48991
49447
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
48992
49448
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
48993
49449
|
lines: false | "one" | "two" | "three";
|
|
@@ -49004,6 +49460,8 @@ declare const VSelect: {
|
|
|
49004
49460
|
density: Density;
|
|
49005
49461
|
slim: boolean;
|
|
49006
49462
|
valueComparator: typeof deepEqual;
|
|
49463
|
+
activatable: boolean;
|
|
49464
|
+
selectable: boolean;
|
|
49007
49465
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
49008
49466
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
49009
49467
|
lines: false | "one" | "two" | "three";
|
|
@@ -49017,6 +49475,7 @@ declare const VSelect: {
|
|
|
49017
49475
|
maxWidth?: string | number | undefined;
|
|
49018
49476
|
minHeight?: string | number | undefined;
|
|
49019
49477
|
minWidth?: string | number | undefined;
|
|
49478
|
+
activated?: readonly unknown[] | undefined;
|
|
49020
49479
|
class?: any;
|
|
49021
49480
|
elevation?: string | number | undefined;
|
|
49022
49481
|
theme?: string | undefined;
|
|
@@ -49024,9 +49483,11 @@ declare const VSelect: {
|
|
|
49024
49483
|
bgColor?: string | undefined;
|
|
49025
49484
|
baseColor?: string | undefined;
|
|
49026
49485
|
activeClass?: string | undefined;
|
|
49486
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
49027
49487
|
activeColor?: string | undefined;
|
|
49028
49488
|
collapseIcon?: string | undefined;
|
|
49029
49489
|
expandIcon?: string | undefined;
|
|
49490
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
49030
49491
|
"onClick:open"?: ((value: {
|
|
49031
49492
|
id: unknown;
|
|
49032
49493
|
value: boolean;
|
|
@@ -49037,6 +49498,11 @@ declare const VSelect: {
|
|
|
49037
49498
|
value: boolean;
|
|
49038
49499
|
path: unknown[];
|
|
49039
49500
|
}) => any) | undefined;
|
|
49501
|
+
"onClick:activate"?: ((value: {
|
|
49502
|
+
id: unknown;
|
|
49503
|
+
value: boolean;
|
|
49504
|
+
path: unknown[];
|
|
49505
|
+
}) => any) | undefined;
|
|
49040
49506
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
49041
49507
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
49042
49508
|
nav: boolean;
|
|
@@ -49048,6 +49514,8 @@ declare const VSelect: {
|
|
|
49048
49514
|
density: Density;
|
|
49049
49515
|
slim: boolean;
|
|
49050
49516
|
valueComparator: typeof deepEqual;
|
|
49517
|
+
activatable: boolean;
|
|
49518
|
+
selectable: boolean;
|
|
49051
49519
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
49052
49520
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
49053
49521
|
lines: false | "one" | "two" | "three";
|
|
@@ -49062,6 +49530,7 @@ declare const VSelect: {
|
|
|
49062
49530
|
maxWidth?: string | number | undefined;
|
|
49063
49531
|
minHeight?: string | number | undefined;
|
|
49064
49532
|
minWidth?: string | number | undefined;
|
|
49533
|
+
activated?: readonly unknown[] | undefined;
|
|
49065
49534
|
class?: any;
|
|
49066
49535
|
elevation?: string | number | undefined;
|
|
49067
49536
|
theme?: string | undefined;
|
|
@@ -49069,10 +49538,12 @@ declare const VSelect: {
|
|
|
49069
49538
|
bgColor?: string | undefined;
|
|
49070
49539
|
baseColor?: string | undefined;
|
|
49071
49540
|
activeClass?: string | undefined;
|
|
49541
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
49072
49542
|
activeColor?: string | undefined;
|
|
49073
49543
|
collapseIcon?: string | undefined;
|
|
49074
49544
|
expandIcon?: string | undefined;
|
|
49075
49545
|
} & {
|
|
49546
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
49076
49547
|
"onClick:open"?: ((value: {
|
|
49077
49548
|
id: unknown;
|
|
49078
49549
|
value: boolean;
|
|
@@ -49083,7 +49554,12 @@ declare const VSelect: {
|
|
|
49083
49554
|
value: boolean;
|
|
49084
49555
|
path: unknown[];
|
|
49085
49556
|
}) => any) | undefined;
|
|
49086
|
-
|
|
49557
|
+
"onClick:activate"?: ((value: {
|
|
49558
|
+
id: unknown;
|
|
49559
|
+
value: boolean;
|
|
49560
|
+
path: unknown[];
|
|
49561
|
+
}) => any) | undefined;
|
|
49562
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "activatable" | "selectable" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
49087
49563
|
items?: readonly any[] | undefined;
|
|
49088
49564
|
itemTitle?: SelectItemKey<any>;
|
|
49089
49565
|
itemValue?: SelectItemKey<any>;
|
|
@@ -49629,6 +50105,8 @@ declare const VSelect: {
|
|
|
49629
50105
|
density: Density;
|
|
49630
50106
|
slim: boolean;
|
|
49631
50107
|
valueComparator: typeof deepEqual;
|
|
50108
|
+
activatable: boolean;
|
|
50109
|
+
selectable: boolean;
|
|
49632
50110
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
49633
50111
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
49634
50112
|
lines: false | "one" | "two" | "three";
|
|
@@ -49645,6 +50123,8 @@ declare const VSelect: {
|
|
|
49645
50123
|
density: Density;
|
|
49646
50124
|
slim: boolean;
|
|
49647
50125
|
valueComparator: typeof deepEqual;
|
|
50126
|
+
activatable: boolean;
|
|
50127
|
+
selectable: boolean;
|
|
49648
50128
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
49649
50129
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
49650
50130
|
lines: false | "one" | "two" | "three";
|
|
@@ -49658,6 +50138,7 @@ declare const VSelect: {
|
|
|
49658
50138
|
maxWidth?: string | number | undefined;
|
|
49659
50139
|
minHeight?: string | number | undefined;
|
|
49660
50140
|
minWidth?: string | number | undefined;
|
|
50141
|
+
activated?: readonly unknown[] | undefined;
|
|
49661
50142
|
class?: any;
|
|
49662
50143
|
elevation?: string | number | undefined;
|
|
49663
50144
|
theme?: string | undefined;
|
|
@@ -49665,9 +50146,11 @@ declare const VSelect: {
|
|
|
49665
50146
|
bgColor?: string | undefined;
|
|
49666
50147
|
baseColor?: string | undefined;
|
|
49667
50148
|
activeClass?: string | undefined;
|
|
50149
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
49668
50150
|
activeColor?: string | undefined;
|
|
49669
50151
|
collapseIcon?: string | undefined;
|
|
49670
50152
|
expandIcon?: string | undefined;
|
|
50153
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
49671
50154
|
"onClick:open"?: ((value: {
|
|
49672
50155
|
id: unknown;
|
|
49673
50156
|
value: boolean;
|
|
@@ -49678,6 +50161,11 @@ declare const VSelect: {
|
|
|
49678
50161
|
value: boolean;
|
|
49679
50162
|
path: unknown[];
|
|
49680
50163
|
}) => any) | undefined;
|
|
50164
|
+
"onClick:activate"?: ((value: {
|
|
50165
|
+
id: unknown;
|
|
50166
|
+
value: boolean;
|
|
50167
|
+
path: unknown[];
|
|
50168
|
+
}) => any) | undefined;
|
|
49681
50169
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
49682
50170
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
49683
50171
|
nav: boolean;
|
|
@@ -49689,6 +50177,8 @@ declare const VSelect: {
|
|
|
49689
50177
|
density: Density;
|
|
49690
50178
|
slim: boolean;
|
|
49691
50179
|
valueComparator: typeof deepEqual;
|
|
50180
|
+
activatable: boolean;
|
|
50181
|
+
selectable: boolean;
|
|
49692
50182
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
49693
50183
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
49694
50184
|
lines: false | "one" | "two" | "three";
|
|
@@ -49703,6 +50193,7 @@ declare const VSelect: {
|
|
|
49703
50193
|
maxWidth?: string | number | undefined;
|
|
49704
50194
|
minHeight?: string | number | undefined;
|
|
49705
50195
|
minWidth?: string | number | undefined;
|
|
50196
|
+
activated?: readonly unknown[] | undefined;
|
|
49706
50197
|
class?: any;
|
|
49707
50198
|
elevation?: string | number | undefined;
|
|
49708
50199
|
theme?: string | undefined;
|
|
@@ -49710,10 +50201,12 @@ declare const VSelect: {
|
|
|
49710
50201
|
bgColor?: string | undefined;
|
|
49711
50202
|
baseColor?: string | undefined;
|
|
49712
50203
|
activeClass?: string | undefined;
|
|
50204
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
49713
50205
|
activeColor?: string | undefined;
|
|
49714
50206
|
collapseIcon?: string | undefined;
|
|
49715
50207
|
expandIcon?: string | undefined;
|
|
49716
50208
|
} & {
|
|
50209
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
49717
50210
|
"onClick:open"?: ((value: {
|
|
49718
50211
|
id: unknown;
|
|
49719
50212
|
value: boolean;
|
|
@@ -49724,7 +50217,12 @@ declare const VSelect: {
|
|
|
49724
50217
|
value: boolean;
|
|
49725
50218
|
path: unknown[];
|
|
49726
50219
|
}) => any) | undefined;
|
|
49727
|
-
|
|
50220
|
+
"onClick:activate"?: ((value: {
|
|
50221
|
+
id: unknown;
|
|
50222
|
+
value: boolean;
|
|
50223
|
+
path: unknown[];
|
|
50224
|
+
}) => any) | undefined;
|
|
50225
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "activatable" | "selectable" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
49728
50226
|
items?: readonly any[] | undefined;
|
|
49729
50227
|
itemTitle?: SelectItemKey<any>;
|
|
49730
50228
|
itemValue?: SelectItemKey<any>;
|
|
@@ -68191,41 +68689,48 @@ declare module '@vue/runtime-core' {
|
|
|
68191
68689
|
}
|
|
68192
68690
|
|
|
68193
68691
|
export interface GlobalComponents {
|
|
68194
|
-
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
68195
68692
|
VApp: typeof import('vuetify/components')['VApp']
|
|
68196
68693
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
|
68197
68694
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
|
68198
68695
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
|
68199
68696
|
VAlert: typeof import('vuetify/components')['VAlert']
|
|
68200
68697
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
68698
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
68699
|
+
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
68700
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
68201
68701
|
VBadge: typeof import('vuetify/components')['VBadge']
|
|
68702
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
|
68202
68703
|
VBanner: typeof import('vuetify/components')['VBanner']
|
|
68203
68704
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
|
68204
68705
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
|
68205
|
-
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
68206
|
-
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
68207
|
-
VBtn: typeof import('vuetify/components')['VBtn']
|
|
68208
68706
|
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
|
68209
|
-
|
|
68210
|
-
|
|
68211
|
-
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
|
68707
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
68708
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
68212
68709
|
VCard: typeof import('vuetify/components')['VCard']
|
|
68213
68710
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
|
68214
68711
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
|
68215
68712
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
|
68216
68713
|
VCardText: typeof import('vuetify/components')['VCardText']
|
|
68217
68714
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
|
68218
|
-
|
|
68219
|
-
|
|
68715
|
+
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
|
68716
|
+
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
|
68717
|
+
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
|
68220
68718
|
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
68221
68719
|
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
68720
|
+
VChip: typeof import('vuetify/components')['VChip']
|
|
68222
68721
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
68223
68722
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
68224
68723
|
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
68225
|
-
|
|
68724
|
+
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
68226
68725
|
VCode: typeof import('vuetify/components')['VCode']
|
|
68726
|
+
VDataTable: typeof import('vuetify/components')['VDataTable']
|
|
68727
|
+
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
|
68728
|
+
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
|
68729
|
+
VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
|
|
68730
|
+
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
|
68731
|
+
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
|
68732
|
+
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
|
68227
68733
|
VCounter: typeof import('vuetify/components')['VCounter']
|
|
68228
|
-
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
68229
68734
|
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
68230
68735
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
|
68231
68736
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
|
@@ -68233,34 +68738,30 @@ declare module '@vue/runtime-core' {
|
|
|
68233
68738
|
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
|
68234
68739
|
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
|
68235
68740
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
|
68236
|
-
VDataTable: typeof import('vuetify/components')['VDataTable']
|
|
68237
|
-
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
|
68238
|
-
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
|
68239
|
-
VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
|
|
68240
|
-
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
|
68241
|
-
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
|
68242
|
-
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
|
68243
68741
|
VDialog: typeof import('vuetify/components')['VDialog']
|
|
68244
68742
|
VDivider: typeof import('vuetify/components')['VDivider']
|
|
68245
68743
|
VField: typeof import('vuetify/components')['VField']
|
|
68246
68744
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
|
68247
|
-
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
68248
|
-
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
|
68249
|
-
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
|
68250
|
-
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
|
68251
|
-
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
|
68252
68745
|
VFooter: typeof import('vuetify/components')['VFooter']
|
|
68253
68746
|
VIcon: typeof import('vuetify/components')['VIcon']
|
|
68254
68747
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
|
68255
68748
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
|
68256
68749
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
|
68257
68750
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
|
68751
|
+
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
|
68752
|
+
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
|
68753
|
+
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
|
68754
|
+
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
|
68755
|
+
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
68258
68756
|
VImg: typeof import('vuetify/components')['VImg']
|
|
68259
68757
|
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
|
68758
|
+
VInput: typeof import('vuetify/components')['VInput']
|
|
68260
68759
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
|
68261
68760
|
VItem: typeof import('vuetify/components')['VItem']
|
|
68262
|
-
VInput: typeof import('vuetify/components')['VInput']
|
|
68263
68761
|
VLabel: typeof import('vuetify/components')['VLabel']
|
|
68762
|
+
VMain: typeof import('vuetify/components')['VMain']
|
|
68763
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
|
68764
|
+
VMessages: typeof import('vuetify/components')['VMessages']
|
|
68264
68765
|
VList: typeof import('vuetify/components')['VList']
|
|
68265
68766
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
|
68266
68767
|
VListImg: typeof import('vuetify/components')['VListImg']
|
|
@@ -68270,51 +68771,47 @@ declare module '@vue/runtime-core' {
|
|
|
68270
68771
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
|
68271
68772
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
|
68272
68773
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
|
68273
|
-
VKbd: typeof import('vuetify/components')['VKbd']
|
|
68274
|
-
VMain: typeof import('vuetify/components')['VMain']
|
|
68275
68774
|
VMenu: typeof import('vuetify/components')['VMenu']
|
|
68276
|
-
VMessages: typeof import('vuetify/components')['VMessages']
|
|
68277
68775
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
|
68278
68776
|
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
|
68279
68777
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
|
68280
|
-
VPagination: typeof import('vuetify/components')['VPagination']
|
|
68281
68778
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
|
68779
|
+
VPagination: typeof import('vuetify/components')['VPagination']
|
|
68282
68780
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
|
68283
|
-
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
|
68284
|
-
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
|
68285
68781
|
VRating: typeof import('vuetify/components')['VRating']
|
|
68782
|
+
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
|
68286
68783
|
VSelect: typeof import('vuetify/components')['VSelect']
|
|
68784
|
+
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
|
68287
68785
|
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
|
68288
|
-
VSheet: typeof import('vuetify/components')['VSheet']
|
|
68289
68786
|
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
|
68290
68787
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
|
68291
68788
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
|
68789
|
+
VSheet: typeof import('vuetify/components')['VSheet']
|
|
68292
68790
|
VSlider: typeof import('vuetify/components')['VSlider']
|
|
68293
|
-
|
|
68791
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
68792
|
+
VTable: typeof import('vuetify/components')['VTable']
|
|
68793
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
68294
68794
|
VStepper: typeof import('vuetify/components')['VStepper']
|
|
68295
68795
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
|
68296
68796
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
|
68297
68797
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
|
68298
68798
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
|
68299
68799
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
|
68300
|
-
|
|
68800
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
68301
68801
|
VTabs: typeof import('vuetify/components')['VTabs']
|
|
68302
68802
|
VTab: typeof import('vuetify/components')['VTab']
|
|
68303
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
68304
|
-
VTextField: typeof import('vuetify/components')['VTextField']
|
|
68305
68803
|
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
68306
|
-
|
|
68307
|
-
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
68308
|
-
VWindow: typeof import('vuetify/components')['VWindow']
|
|
68309
|
-
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
|
68804
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
|
68310
68805
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
68311
68806
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
68312
68807
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
|
68313
68808
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
|
68314
68809
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
|
68810
|
+
VWindow: typeof import('vuetify/components')['VWindow']
|
|
68811
|
+
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
|
68812
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
68315
68813
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
|
68316
68814
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
|
68317
|
-
VForm: typeof import('vuetify/components')['VForm']
|
|
68318
68815
|
VContainer: typeof import('vuetify/components')['VContainer']
|
|
68319
68816
|
VCol: typeof import('vuetify/components')['VCol']
|
|
68320
68817
|
VRow: typeof import('vuetify/components')['VRow']
|
|
@@ -68325,12 +68822,14 @@ declare module '@vue/runtime-core' {
|
|
|
68325
68822
|
VLazy: typeof import('vuetify/components')['VLazy']
|
|
68326
68823
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
|
68327
68824
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
|
68328
|
-
|
|
68825
|
+
VForm: typeof import('vuetify/components')['VForm']
|
|
68329
68826
|
VParallax: typeof import('vuetify/components')['VParallax']
|
|
68827
|
+
VRadio: typeof import('vuetify/components')['VRadio']
|
|
68330
68828
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
|
68331
68829
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
|
68332
68830
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
|
68333
68831
|
VValidation: typeof import('vuetify/components')['VValidation']
|
|
68832
|
+
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
|
68334
68833
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
|
68335
68834
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
|
68336
68835
|
VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
|
|
@@ -68347,9 +68846,6 @@ declare module '@vue/runtime-core' {
|
|
|
68347
68846
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
|
68348
68847
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
|
68349
68848
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
|
68350
|
-
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
|
68351
|
-
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
|
68352
|
-
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
|
68353
68849
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
|
68354
68850
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
|
68355
68851
|
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
|
@@ -68358,8 +68854,13 @@ declare module '@vue/runtime-core' {
|
|
|
68358
68854
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
|
68359
68855
|
VEmptyState: typeof import('vuetify/labs/components')['VEmptyState']
|
|
68360
68856
|
VFab: typeof import('vuetify/labs/components')['VFab']
|
|
68857
|
+
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
|
68858
|
+
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
|
68361
68859
|
VConfirmEdit: typeof import('vuetify/labs/components')['VConfirmEdit']
|
|
68362
68860
|
VSparkline: typeof import('vuetify/labs/components')['VSparkline']
|
|
68363
68861
|
VSpeedDial: typeof import('vuetify/labs/components')['VSpeedDial']
|
|
68862
|
+
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
|
68863
|
+
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
|
68864
|
+
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
|
68364
68865
|
}
|
|
68365
68866
|
}
|