vuetify 3.5.7 → 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 +568 -8
- package/dist/json/importMap-labs.json +20 -4
- package/dist/json/importMap.json +156 -156
- package/dist/json/tags.json +160 -0
- package/dist/json/web-types.json +1695 -9
- package/dist/vuetify-labs.css +1849 -1820
- package/dist/vuetify-labs.d.ts +3601 -694
- package/dist/vuetify-labs.esm.js +891 -237
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +891 -237
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +911 -906
- package/dist/vuetify.d.ts +576 -72
- package/dist/vuetify.esm.js +273 -35
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +273 -35
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +541 -510
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.css +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.mjs +5 -3
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.sass +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.css +1 -1
- package/lib/components/VCombobox/VCombobox.mjs +28 -10
- package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
- package/lib/components/VCombobox/VCombobox.sass +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/VDatePicker/VDatePickerMonth.mjs +1 -1
- package/lib/components/VDatePicker/VDatePickerMonth.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/VSwitch/VSwitch.css +9 -5
- package/lib/components/VSwitch/VSwitch.mjs +2 -0
- package/lib/components/VSwitch/VSwitch.mjs.map +1 -1
- package/lib/components/VSwitch/VSwitch.sass +10 -7
- package/lib/components/VSwitch/_variables.scss +2 -0
- package/lib/components/index.d.mts +522 -24
- package/lib/composables/date/adapters/vuetify.mjs +21 -3
- package/lib/composables/date/adapters/vuetify.mjs.map +1 -1
- 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/composables/transition.mjs +7 -5
- package/lib/composables/transition.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 +54 -48
- package/lib/labs/VCalendar/VCalendarInterval.css +1 -0
- package/lib/labs/VCalendar/VCalendarInterval.sass +1 -0
- package/lib/labs/VCalendar/VCalendarIntervalEvent.css +6 -0
- package/lib/labs/VCalendar/VCalendarIntervalEvent.mjs +5 -2
- package/lib/labs/VCalendar/VCalendarIntervalEvent.mjs.map +1 -1
- package/lib/labs/VCalendar/VCalendarIntervalEvent.sass +6 -0
- package/lib/labs/VFab/VFab.css +1 -1
- package/lib/labs/VFab/VFab.sass +1 -1
- package/lib/labs/VSparkline/VBarline.mjs +4 -3
- package/lib/labs/VSparkline/VBarline.mjs.map +1 -1
- package/lib/labs/VSparkline/VTrendline.mjs +9 -5
- package/lib/labs/VSparkline/VTrendline.mjs.map +1 -1
- package/lib/labs/VSparkline/index.d.mts +15 -0
- package/lib/labs/VSparkline/util/line.mjs +4 -0
- package/lib/labs/VSparkline/util/line.mjs.map +1 -1
- package/lib/labs/VSpeedDial/VSpeedDial.css +3 -0
- package/lib/labs/VSpeedDial/VSpeedDial.mjs +56 -0
- package/lib/labs/VSpeedDial/VSpeedDial.mjs.map +1 -0
- package/lib/labs/VSpeedDial/VSpeedDial.sass +2 -0
- package/lib/labs/VSpeedDial/index.d.mts +649 -0
- package/lib/labs/VSpeedDial/index.mjs +2 -0
- package/lib/labs/VSpeedDial/index.mjs.map +1 -0
- 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 +3877 -1292
- package/lib/labs/components.mjs +4 -2
- package/lib/labs/components.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -3902,7 +3902,15 @@ declare const VListItem: {
|
|
|
3902
3902
|
"v-slot:subtitle"?: false | ((arg: ListItemSubtitleSlot) => vue.VNodeChild) | undefined;
|
|
3903
3903
|
} & {
|
|
3904
3904
|
onClick?: ((e: MouseEvent | KeyboardEvent) => any) | undefined;
|
|
3905
|
-
}, {
|
|
3905
|
+
}, {
|
|
3906
|
+
isGroupActivator: boolean | undefined;
|
|
3907
|
+
isSelected: vue.ComputedRef<boolean>;
|
|
3908
|
+
list: {
|
|
3909
|
+
hasPrepend: vue.Ref<boolean>;
|
|
3910
|
+
updateHasPrepend: (value: boolean) => void;
|
|
3911
|
+
} | null;
|
|
3912
|
+
select: (selected: boolean, e?: Event | undefined) => void;
|
|
3913
|
+
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
3906
3914
|
click: (e: MouseEvent | KeyboardEvent) => true;
|
|
3907
3915
|
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
3908
3916
|
replace: boolean;
|
|
@@ -4078,7 +4086,15 @@ declare const VListItem: {
|
|
|
4078
4086
|
"v-slot:subtitle"?: false | ((arg: ListItemSubtitleSlot) => vue.VNodeChild) | undefined;
|
|
4079
4087
|
} & {
|
|
4080
4088
|
onClick?: ((e: MouseEvent | KeyboardEvent) => any) | undefined;
|
|
4081
|
-
}, {
|
|
4089
|
+
}, {
|
|
4090
|
+
isGroupActivator: boolean | undefined;
|
|
4091
|
+
isSelected: vue.ComputedRef<boolean>;
|
|
4092
|
+
list: {
|
|
4093
|
+
hasPrepend: vue.Ref<boolean>;
|
|
4094
|
+
updateHasPrepend: (value: boolean) => void;
|
|
4095
|
+
} | null;
|
|
4096
|
+
select: (selected: boolean, e?: Event | undefined) => void;
|
|
4097
|
+
}, {}, {}, {}, {
|
|
4082
4098
|
replace: boolean;
|
|
4083
4099
|
link: boolean;
|
|
4084
4100
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
@@ -4166,7 +4182,15 @@ declare const VListItem: {
|
|
|
4166
4182
|
"v-slot:subtitle"?: false | ((arg: ListItemSubtitleSlot) => vue.VNodeChild) | undefined;
|
|
4167
4183
|
} & {
|
|
4168
4184
|
onClick?: ((e: MouseEvent | KeyboardEvent) => any) | undefined;
|
|
4169
|
-
}, {
|
|
4185
|
+
}, {
|
|
4186
|
+
isGroupActivator: boolean | undefined;
|
|
4187
|
+
isSelected: vue.ComputedRef<boolean>;
|
|
4188
|
+
list: {
|
|
4189
|
+
hasPrepend: vue.Ref<boolean>;
|
|
4190
|
+
updateHasPrepend: (value: boolean) => void;
|
|
4191
|
+
} | null;
|
|
4192
|
+
select: (selected: boolean, e?: Event | undefined) => void;
|
|
4193
|
+
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
4170
4194
|
click: (e: MouseEvent | KeyboardEvent) => true;
|
|
4171
4195
|
}, string, {
|
|
4172
4196
|
replace: boolean;
|
|
@@ -4496,6 +4520,8 @@ declare const VAutocomplete: {
|
|
|
4496
4520
|
density: Density;
|
|
4497
4521
|
slim: boolean;
|
|
4498
4522
|
valueComparator: typeof deepEqual;
|
|
4523
|
+
activatable: boolean;
|
|
4524
|
+
selectable: boolean;
|
|
4499
4525
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
4500
4526
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
4501
4527
|
lines: false | "one" | "two" | "three";
|
|
@@ -4512,6 +4538,8 @@ declare const VAutocomplete: {
|
|
|
4512
4538
|
density: Density;
|
|
4513
4539
|
slim: boolean;
|
|
4514
4540
|
valueComparator: typeof deepEqual;
|
|
4541
|
+
activatable: boolean;
|
|
4542
|
+
selectable: boolean;
|
|
4515
4543
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
4516
4544
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
4517
4545
|
lines: false | "one" | "two" | "three";
|
|
@@ -4525,6 +4553,7 @@ declare const VAutocomplete: {
|
|
|
4525
4553
|
maxWidth?: string | number | undefined;
|
|
4526
4554
|
minHeight?: string | number | undefined;
|
|
4527
4555
|
minWidth?: string | number | undefined;
|
|
4556
|
+
activated?: readonly unknown[] | undefined;
|
|
4528
4557
|
class?: any;
|
|
4529
4558
|
elevation?: string | number | undefined;
|
|
4530
4559
|
theme?: string | undefined;
|
|
@@ -4532,9 +4561,11 @@ declare const VAutocomplete: {
|
|
|
4532
4561
|
bgColor?: string | undefined;
|
|
4533
4562
|
baseColor?: string | undefined;
|
|
4534
4563
|
activeClass?: string | undefined;
|
|
4564
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
4535
4565
|
activeColor?: string | undefined;
|
|
4536
4566
|
collapseIcon?: string | undefined;
|
|
4537
4567
|
expandIcon?: string | undefined;
|
|
4568
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
4538
4569
|
"onClick:open"?: ((value: {
|
|
4539
4570
|
id: unknown;
|
|
4540
4571
|
value: boolean;
|
|
@@ -4545,6 +4576,11 @@ declare const VAutocomplete: {
|
|
|
4545
4576
|
value: boolean;
|
|
4546
4577
|
path: unknown[];
|
|
4547
4578
|
}) => any) | undefined;
|
|
4579
|
+
"onClick:activate"?: ((value: {
|
|
4580
|
+
id: unknown;
|
|
4581
|
+
value: boolean;
|
|
4582
|
+
path: unknown[];
|
|
4583
|
+
}) => any) | undefined;
|
|
4548
4584
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
4549
4585
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
4550
4586
|
nav: boolean;
|
|
@@ -4556,6 +4592,8 @@ declare const VAutocomplete: {
|
|
|
4556
4592
|
density: Density;
|
|
4557
4593
|
slim: boolean;
|
|
4558
4594
|
valueComparator: typeof deepEqual;
|
|
4595
|
+
activatable: boolean;
|
|
4596
|
+
selectable: boolean;
|
|
4559
4597
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
4560
4598
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
4561
4599
|
lines: false | "one" | "two" | "three";
|
|
@@ -4570,6 +4608,7 @@ declare const VAutocomplete: {
|
|
|
4570
4608
|
maxWidth?: string | number | undefined;
|
|
4571
4609
|
minHeight?: string | number | undefined;
|
|
4572
4610
|
minWidth?: string | number | undefined;
|
|
4611
|
+
activated?: readonly unknown[] | undefined;
|
|
4573
4612
|
class?: any;
|
|
4574
4613
|
elevation?: string | number | undefined;
|
|
4575
4614
|
theme?: string | undefined;
|
|
@@ -4577,10 +4616,12 @@ declare const VAutocomplete: {
|
|
|
4577
4616
|
bgColor?: string | undefined;
|
|
4578
4617
|
baseColor?: string | undefined;
|
|
4579
4618
|
activeClass?: string | undefined;
|
|
4619
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
4580
4620
|
activeColor?: string | undefined;
|
|
4581
4621
|
collapseIcon?: string | undefined;
|
|
4582
4622
|
expandIcon?: string | undefined;
|
|
4583
4623
|
} & {
|
|
4624
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
4584
4625
|
"onClick:open"?: ((value: {
|
|
4585
4626
|
id: unknown;
|
|
4586
4627
|
value: boolean;
|
|
@@ -4591,7 +4632,12 @@ declare const VAutocomplete: {
|
|
|
4591
4632
|
value: boolean;
|
|
4592
4633
|
path: unknown[];
|
|
4593
4634
|
}) => any) | undefined;
|
|
4594
|
-
|
|
4635
|
+
"onClick:activate"?: ((value: {
|
|
4636
|
+
id: unknown;
|
|
4637
|
+
value: boolean;
|
|
4638
|
+
path: unknown[];
|
|
4639
|
+
}) => any) | undefined;
|
|
4640
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "activatable" | "selectable" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
4595
4641
|
items?: readonly any[] | undefined;
|
|
4596
4642
|
itemTitle?: SelectItemKey<any>;
|
|
4597
4643
|
itemValue?: SelectItemKey<any>;
|
|
@@ -5045,6 +5091,8 @@ declare const VAutocomplete: {
|
|
|
5045
5091
|
density: Density;
|
|
5046
5092
|
slim: boolean;
|
|
5047
5093
|
valueComparator: typeof deepEqual;
|
|
5094
|
+
activatable: boolean;
|
|
5095
|
+
selectable: boolean;
|
|
5048
5096
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
5049
5097
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
5050
5098
|
lines: false | "one" | "two" | "three";
|
|
@@ -5061,6 +5109,8 @@ declare const VAutocomplete: {
|
|
|
5061
5109
|
density: Density;
|
|
5062
5110
|
slim: boolean;
|
|
5063
5111
|
valueComparator: typeof deepEqual;
|
|
5112
|
+
activatable: boolean;
|
|
5113
|
+
selectable: boolean;
|
|
5064
5114
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
5065
5115
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
5066
5116
|
lines: false | "one" | "two" | "three";
|
|
@@ -5074,6 +5124,7 @@ declare const VAutocomplete: {
|
|
|
5074
5124
|
maxWidth?: string | number | undefined;
|
|
5075
5125
|
minHeight?: string | number | undefined;
|
|
5076
5126
|
minWidth?: string | number | undefined;
|
|
5127
|
+
activated?: readonly unknown[] | undefined;
|
|
5077
5128
|
class?: any;
|
|
5078
5129
|
elevation?: string | number | undefined;
|
|
5079
5130
|
theme?: string | undefined;
|
|
@@ -5081,9 +5132,11 @@ declare const VAutocomplete: {
|
|
|
5081
5132
|
bgColor?: string | undefined;
|
|
5082
5133
|
baseColor?: string | undefined;
|
|
5083
5134
|
activeClass?: string | undefined;
|
|
5135
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
5084
5136
|
activeColor?: string | undefined;
|
|
5085
5137
|
collapseIcon?: string | undefined;
|
|
5086
5138
|
expandIcon?: string | undefined;
|
|
5139
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
5087
5140
|
"onClick:open"?: ((value: {
|
|
5088
5141
|
id: unknown;
|
|
5089
5142
|
value: boolean;
|
|
@@ -5094,6 +5147,11 @@ declare const VAutocomplete: {
|
|
|
5094
5147
|
value: boolean;
|
|
5095
5148
|
path: unknown[];
|
|
5096
5149
|
}) => any) | undefined;
|
|
5150
|
+
"onClick:activate"?: ((value: {
|
|
5151
|
+
id: unknown;
|
|
5152
|
+
value: boolean;
|
|
5153
|
+
path: unknown[];
|
|
5154
|
+
}) => any) | undefined;
|
|
5097
5155
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
5098
5156
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
5099
5157
|
nav: boolean;
|
|
@@ -5105,6 +5163,8 @@ declare const VAutocomplete: {
|
|
|
5105
5163
|
density: Density;
|
|
5106
5164
|
slim: boolean;
|
|
5107
5165
|
valueComparator: typeof deepEqual;
|
|
5166
|
+
activatable: boolean;
|
|
5167
|
+
selectable: boolean;
|
|
5108
5168
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
5109
5169
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
5110
5170
|
lines: false | "one" | "two" | "three";
|
|
@@ -5119,6 +5179,7 @@ declare const VAutocomplete: {
|
|
|
5119
5179
|
maxWidth?: string | number | undefined;
|
|
5120
5180
|
minHeight?: string | number | undefined;
|
|
5121
5181
|
minWidth?: string | number | undefined;
|
|
5182
|
+
activated?: readonly unknown[] | undefined;
|
|
5122
5183
|
class?: any;
|
|
5123
5184
|
elevation?: string | number | undefined;
|
|
5124
5185
|
theme?: string | undefined;
|
|
@@ -5126,10 +5187,12 @@ declare const VAutocomplete: {
|
|
|
5126
5187
|
bgColor?: string | undefined;
|
|
5127
5188
|
baseColor?: string | undefined;
|
|
5128
5189
|
activeClass?: string | undefined;
|
|
5190
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
5129
5191
|
activeColor?: string | undefined;
|
|
5130
5192
|
collapseIcon?: string | undefined;
|
|
5131
5193
|
expandIcon?: string | undefined;
|
|
5132
5194
|
} & {
|
|
5195
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
5133
5196
|
"onClick:open"?: ((value: {
|
|
5134
5197
|
id: unknown;
|
|
5135
5198
|
value: boolean;
|
|
@@ -5140,7 +5203,12 @@ declare const VAutocomplete: {
|
|
|
5140
5203
|
value: boolean;
|
|
5141
5204
|
path: unknown[];
|
|
5142
5205
|
}) => any) | undefined;
|
|
5143
|
-
|
|
5206
|
+
"onClick:activate"?: ((value: {
|
|
5207
|
+
id: unknown;
|
|
5208
|
+
value: boolean;
|
|
5209
|
+
path: unknown[];
|
|
5210
|
+
}) => any) | undefined;
|
|
5211
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "activatable" | "selectable" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
5144
5212
|
items?: readonly any[] | undefined;
|
|
5145
5213
|
itemTitle?: SelectItemKey<any>;
|
|
5146
5214
|
itemValue?: SelectItemKey<any>;
|
|
@@ -5706,6 +5774,8 @@ declare const VAutocomplete: {
|
|
|
5706
5774
|
density: Density;
|
|
5707
5775
|
slim: boolean;
|
|
5708
5776
|
valueComparator: typeof deepEqual;
|
|
5777
|
+
activatable: boolean;
|
|
5778
|
+
selectable: boolean;
|
|
5709
5779
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
5710
5780
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
5711
5781
|
lines: false | "one" | "two" | "three";
|
|
@@ -5722,6 +5792,8 @@ declare const VAutocomplete: {
|
|
|
5722
5792
|
density: Density;
|
|
5723
5793
|
slim: boolean;
|
|
5724
5794
|
valueComparator: typeof deepEqual;
|
|
5795
|
+
activatable: boolean;
|
|
5796
|
+
selectable: boolean;
|
|
5725
5797
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
5726
5798
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
5727
5799
|
lines: false | "one" | "two" | "three";
|
|
@@ -5735,6 +5807,7 @@ declare const VAutocomplete: {
|
|
|
5735
5807
|
maxWidth?: string | number | undefined;
|
|
5736
5808
|
minHeight?: string | number | undefined;
|
|
5737
5809
|
minWidth?: string | number | undefined;
|
|
5810
|
+
activated?: readonly unknown[] | undefined;
|
|
5738
5811
|
class?: any;
|
|
5739
5812
|
elevation?: string | number | undefined;
|
|
5740
5813
|
theme?: string | undefined;
|
|
@@ -5742,9 +5815,11 @@ declare const VAutocomplete: {
|
|
|
5742
5815
|
bgColor?: string | undefined;
|
|
5743
5816
|
baseColor?: string | undefined;
|
|
5744
5817
|
activeClass?: string | undefined;
|
|
5818
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
5745
5819
|
activeColor?: string | undefined;
|
|
5746
5820
|
collapseIcon?: string | undefined;
|
|
5747
5821
|
expandIcon?: string | undefined;
|
|
5822
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
5748
5823
|
"onClick:open"?: ((value: {
|
|
5749
5824
|
id: unknown;
|
|
5750
5825
|
value: boolean;
|
|
@@ -5755,6 +5830,11 @@ declare const VAutocomplete: {
|
|
|
5755
5830
|
value: boolean;
|
|
5756
5831
|
path: unknown[];
|
|
5757
5832
|
}) => any) | undefined;
|
|
5833
|
+
"onClick:activate"?: ((value: {
|
|
5834
|
+
id: unknown;
|
|
5835
|
+
value: boolean;
|
|
5836
|
+
path: unknown[];
|
|
5837
|
+
}) => any) | undefined;
|
|
5758
5838
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
5759
5839
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
5760
5840
|
nav: boolean;
|
|
@@ -5766,6 +5846,8 @@ declare const VAutocomplete: {
|
|
|
5766
5846
|
density: Density;
|
|
5767
5847
|
slim: boolean;
|
|
5768
5848
|
valueComparator: typeof deepEqual;
|
|
5849
|
+
activatable: boolean;
|
|
5850
|
+
selectable: boolean;
|
|
5769
5851
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
5770
5852
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
5771
5853
|
lines: false | "one" | "two" | "three";
|
|
@@ -5780,6 +5862,7 @@ declare const VAutocomplete: {
|
|
|
5780
5862
|
maxWidth?: string | number | undefined;
|
|
5781
5863
|
minHeight?: string | number | undefined;
|
|
5782
5864
|
minWidth?: string | number | undefined;
|
|
5865
|
+
activated?: readonly unknown[] | undefined;
|
|
5783
5866
|
class?: any;
|
|
5784
5867
|
elevation?: string | number | undefined;
|
|
5785
5868
|
theme?: string | undefined;
|
|
@@ -5787,10 +5870,12 @@ declare const VAutocomplete: {
|
|
|
5787
5870
|
bgColor?: string | undefined;
|
|
5788
5871
|
baseColor?: string | undefined;
|
|
5789
5872
|
activeClass?: string | undefined;
|
|
5873
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
5790
5874
|
activeColor?: string | undefined;
|
|
5791
5875
|
collapseIcon?: string | undefined;
|
|
5792
5876
|
expandIcon?: string | undefined;
|
|
5793
5877
|
} & {
|
|
5878
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
5794
5879
|
"onClick:open"?: ((value: {
|
|
5795
5880
|
id: unknown;
|
|
5796
5881
|
value: boolean;
|
|
@@ -5801,7 +5886,12 @@ declare const VAutocomplete: {
|
|
|
5801
5886
|
value: boolean;
|
|
5802
5887
|
path: unknown[];
|
|
5803
5888
|
}) => any) | undefined;
|
|
5804
|
-
|
|
5889
|
+
"onClick:activate"?: ((value: {
|
|
5890
|
+
id: unknown;
|
|
5891
|
+
value: boolean;
|
|
5892
|
+
path: unknown[];
|
|
5893
|
+
}) => any) | undefined;
|
|
5894
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "activatable" | "selectable" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
5805
5895
|
items?: readonly any[] | undefined;
|
|
5806
5896
|
itemTitle?: SelectItemKey<any>;
|
|
5807
5897
|
itemValue?: SelectItemKey<any>;
|
|
@@ -6304,6 +6394,8 @@ declare const VAutocomplete: {
|
|
|
6304
6394
|
density: Density;
|
|
6305
6395
|
slim: boolean;
|
|
6306
6396
|
valueComparator: typeof deepEqual;
|
|
6397
|
+
activatable: boolean;
|
|
6398
|
+
selectable: boolean;
|
|
6307
6399
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
6308
6400
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
6309
6401
|
lines: false | "one" | "two" | "three";
|
|
@@ -6320,6 +6412,8 @@ declare const VAutocomplete: {
|
|
|
6320
6412
|
density: Density;
|
|
6321
6413
|
slim: boolean;
|
|
6322
6414
|
valueComparator: typeof deepEqual;
|
|
6415
|
+
activatable: boolean;
|
|
6416
|
+
selectable: boolean;
|
|
6323
6417
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
6324
6418
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
6325
6419
|
lines: false | "one" | "two" | "three";
|
|
@@ -6333,6 +6427,7 @@ declare const VAutocomplete: {
|
|
|
6333
6427
|
maxWidth?: string | number | undefined;
|
|
6334
6428
|
minHeight?: string | number | undefined;
|
|
6335
6429
|
minWidth?: string | number | undefined;
|
|
6430
|
+
activated?: readonly unknown[] | undefined;
|
|
6336
6431
|
class?: any;
|
|
6337
6432
|
elevation?: string | number | undefined;
|
|
6338
6433
|
theme?: string | undefined;
|
|
@@ -6340,9 +6435,11 @@ declare const VAutocomplete: {
|
|
|
6340
6435
|
bgColor?: string | undefined;
|
|
6341
6436
|
baseColor?: string | undefined;
|
|
6342
6437
|
activeClass?: string | undefined;
|
|
6438
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
6343
6439
|
activeColor?: string | undefined;
|
|
6344
6440
|
collapseIcon?: string | undefined;
|
|
6345
6441
|
expandIcon?: string | undefined;
|
|
6442
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
6346
6443
|
"onClick:open"?: ((value: {
|
|
6347
6444
|
id: unknown;
|
|
6348
6445
|
value: boolean;
|
|
@@ -6353,6 +6450,11 @@ declare const VAutocomplete: {
|
|
|
6353
6450
|
value: boolean;
|
|
6354
6451
|
path: unknown[];
|
|
6355
6452
|
}) => any) | undefined;
|
|
6453
|
+
"onClick:activate"?: ((value: {
|
|
6454
|
+
id: unknown;
|
|
6455
|
+
value: boolean;
|
|
6456
|
+
path: unknown[];
|
|
6457
|
+
}) => any) | undefined;
|
|
6356
6458
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
6357
6459
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
6358
6460
|
nav: boolean;
|
|
@@ -6364,6 +6466,8 @@ declare const VAutocomplete: {
|
|
|
6364
6466
|
density: Density;
|
|
6365
6467
|
slim: boolean;
|
|
6366
6468
|
valueComparator: typeof deepEqual;
|
|
6469
|
+
activatable: boolean;
|
|
6470
|
+
selectable: boolean;
|
|
6367
6471
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
6368
6472
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
6369
6473
|
lines: false | "one" | "two" | "three";
|
|
@@ -6378,6 +6482,7 @@ declare const VAutocomplete: {
|
|
|
6378
6482
|
maxWidth?: string | number | undefined;
|
|
6379
6483
|
minHeight?: string | number | undefined;
|
|
6380
6484
|
minWidth?: string | number | undefined;
|
|
6485
|
+
activated?: readonly unknown[] | undefined;
|
|
6381
6486
|
class?: any;
|
|
6382
6487
|
elevation?: string | number | undefined;
|
|
6383
6488
|
theme?: string | undefined;
|
|
@@ -6385,10 +6490,12 @@ declare const VAutocomplete: {
|
|
|
6385
6490
|
bgColor?: string | undefined;
|
|
6386
6491
|
baseColor?: string | undefined;
|
|
6387
6492
|
activeClass?: string | undefined;
|
|
6493
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
6388
6494
|
activeColor?: string | undefined;
|
|
6389
6495
|
collapseIcon?: string | undefined;
|
|
6390
6496
|
expandIcon?: string | undefined;
|
|
6391
6497
|
} & {
|
|
6498
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
6392
6499
|
"onClick:open"?: ((value: {
|
|
6393
6500
|
id: unknown;
|
|
6394
6501
|
value: boolean;
|
|
@@ -6399,7 +6506,12 @@ declare const VAutocomplete: {
|
|
|
6399
6506
|
value: boolean;
|
|
6400
6507
|
path: unknown[];
|
|
6401
6508
|
}) => any) | undefined;
|
|
6402
|
-
|
|
6509
|
+
"onClick:activate"?: ((value: {
|
|
6510
|
+
id: unknown;
|
|
6511
|
+
value: boolean;
|
|
6512
|
+
path: unknown[];
|
|
6513
|
+
}) => any) | undefined;
|
|
6514
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "activatable" | "selectable" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
6403
6515
|
items?: readonly any[] | undefined;
|
|
6404
6516
|
itemTitle?: SelectItemKey<any>;
|
|
6405
6517
|
itemValue?: SelectItemKey<any>;
|
|
@@ -7101,6 +7213,8 @@ declare const VAutocomplete: {
|
|
|
7101
7213
|
density: Density;
|
|
7102
7214
|
slim: boolean;
|
|
7103
7215
|
valueComparator: typeof deepEqual;
|
|
7216
|
+
activatable: boolean;
|
|
7217
|
+
selectable: boolean;
|
|
7104
7218
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
7105
7219
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
7106
7220
|
lines: false | "one" | "two" | "three";
|
|
@@ -7117,6 +7231,8 @@ declare const VAutocomplete: {
|
|
|
7117
7231
|
density: Density;
|
|
7118
7232
|
slim: boolean;
|
|
7119
7233
|
valueComparator: typeof deepEqual;
|
|
7234
|
+
activatable: boolean;
|
|
7235
|
+
selectable: boolean;
|
|
7120
7236
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
7121
7237
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
7122
7238
|
lines: false | "one" | "two" | "three";
|
|
@@ -7130,6 +7246,7 @@ declare const VAutocomplete: {
|
|
|
7130
7246
|
maxWidth?: string | number | undefined;
|
|
7131
7247
|
minHeight?: string | number | undefined;
|
|
7132
7248
|
minWidth?: string | number | undefined;
|
|
7249
|
+
activated?: readonly unknown[] | undefined;
|
|
7133
7250
|
class?: any;
|
|
7134
7251
|
elevation?: string | number | undefined;
|
|
7135
7252
|
theme?: string | undefined;
|
|
@@ -7137,9 +7254,11 @@ declare const VAutocomplete: {
|
|
|
7137
7254
|
bgColor?: string | undefined;
|
|
7138
7255
|
baseColor?: string | undefined;
|
|
7139
7256
|
activeClass?: string | undefined;
|
|
7257
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
7140
7258
|
activeColor?: string | undefined;
|
|
7141
7259
|
collapseIcon?: string | undefined;
|
|
7142
7260
|
expandIcon?: string | undefined;
|
|
7261
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
7143
7262
|
"onClick:open"?: ((value: {
|
|
7144
7263
|
id: unknown;
|
|
7145
7264
|
value: boolean;
|
|
@@ -7150,6 +7269,11 @@ declare const VAutocomplete: {
|
|
|
7150
7269
|
value: boolean;
|
|
7151
7270
|
path: unknown[];
|
|
7152
7271
|
}) => any) | undefined;
|
|
7272
|
+
"onClick:activate"?: ((value: {
|
|
7273
|
+
id: unknown;
|
|
7274
|
+
value: boolean;
|
|
7275
|
+
path: unknown[];
|
|
7276
|
+
}) => any) | undefined;
|
|
7153
7277
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
7154
7278
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
7155
7279
|
nav: boolean;
|
|
@@ -7161,6 +7285,8 @@ declare const VAutocomplete: {
|
|
|
7161
7285
|
density: Density;
|
|
7162
7286
|
slim: boolean;
|
|
7163
7287
|
valueComparator: typeof deepEqual;
|
|
7288
|
+
activatable: boolean;
|
|
7289
|
+
selectable: boolean;
|
|
7164
7290
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
7165
7291
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
7166
7292
|
lines: false | "one" | "two" | "three";
|
|
@@ -7175,6 +7301,7 @@ declare const VAutocomplete: {
|
|
|
7175
7301
|
maxWidth?: string | number | undefined;
|
|
7176
7302
|
minHeight?: string | number | undefined;
|
|
7177
7303
|
minWidth?: string | number | undefined;
|
|
7304
|
+
activated?: readonly unknown[] | undefined;
|
|
7178
7305
|
class?: any;
|
|
7179
7306
|
elevation?: string | number | undefined;
|
|
7180
7307
|
theme?: string | undefined;
|
|
@@ -7182,10 +7309,12 @@ declare const VAutocomplete: {
|
|
|
7182
7309
|
bgColor?: string | undefined;
|
|
7183
7310
|
baseColor?: string | undefined;
|
|
7184
7311
|
activeClass?: string | undefined;
|
|
7312
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
7185
7313
|
activeColor?: string | undefined;
|
|
7186
7314
|
collapseIcon?: string | undefined;
|
|
7187
7315
|
expandIcon?: string | undefined;
|
|
7188
7316
|
} & {
|
|
7317
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
7189
7318
|
"onClick:open"?: ((value: {
|
|
7190
7319
|
id: unknown;
|
|
7191
7320
|
value: boolean;
|
|
@@ -7196,7 +7325,12 @@ declare const VAutocomplete: {
|
|
|
7196
7325
|
value: boolean;
|
|
7197
7326
|
path: unknown[];
|
|
7198
7327
|
}) => any) | undefined;
|
|
7199
|
-
|
|
7328
|
+
"onClick:activate"?: ((value: {
|
|
7329
|
+
id: unknown;
|
|
7330
|
+
value: boolean;
|
|
7331
|
+
path: unknown[];
|
|
7332
|
+
}) => any) | undefined;
|
|
7333
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "activatable" | "selectable" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
7200
7334
|
items?: readonly any[] | undefined;
|
|
7201
7335
|
itemTitle?: SelectItemKey<any>;
|
|
7202
7336
|
itemValue?: SelectItemKey<any>;
|
|
@@ -7754,6 +7888,8 @@ declare const VAutocomplete: {
|
|
|
7754
7888
|
density: Density;
|
|
7755
7889
|
slim: boolean;
|
|
7756
7890
|
valueComparator: typeof deepEqual;
|
|
7891
|
+
activatable: boolean;
|
|
7892
|
+
selectable: boolean;
|
|
7757
7893
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
7758
7894
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
7759
7895
|
lines: false | "one" | "two" | "three";
|
|
@@ -7770,6 +7906,8 @@ declare const VAutocomplete: {
|
|
|
7770
7906
|
density: Density;
|
|
7771
7907
|
slim: boolean;
|
|
7772
7908
|
valueComparator: typeof deepEqual;
|
|
7909
|
+
activatable: boolean;
|
|
7910
|
+
selectable: boolean;
|
|
7773
7911
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
7774
7912
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
7775
7913
|
lines: false | "one" | "two" | "three";
|
|
@@ -7783,6 +7921,7 @@ declare const VAutocomplete: {
|
|
|
7783
7921
|
maxWidth?: string | number | undefined;
|
|
7784
7922
|
minHeight?: string | number | undefined;
|
|
7785
7923
|
minWidth?: string | number | undefined;
|
|
7924
|
+
activated?: readonly unknown[] | undefined;
|
|
7786
7925
|
class?: any;
|
|
7787
7926
|
elevation?: string | number | undefined;
|
|
7788
7927
|
theme?: string | undefined;
|
|
@@ -7790,9 +7929,11 @@ declare const VAutocomplete: {
|
|
|
7790
7929
|
bgColor?: string | undefined;
|
|
7791
7930
|
baseColor?: string | undefined;
|
|
7792
7931
|
activeClass?: string | undefined;
|
|
7932
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
7793
7933
|
activeColor?: string | undefined;
|
|
7794
7934
|
collapseIcon?: string | undefined;
|
|
7795
7935
|
expandIcon?: string | undefined;
|
|
7936
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
7796
7937
|
"onClick:open"?: ((value: {
|
|
7797
7938
|
id: unknown;
|
|
7798
7939
|
value: boolean;
|
|
@@ -7803,6 +7944,11 @@ declare const VAutocomplete: {
|
|
|
7803
7944
|
value: boolean;
|
|
7804
7945
|
path: unknown[];
|
|
7805
7946
|
}) => any) | undefined;
|
|
7947
|
+
"onClick:activate"?: ((value: {
|
|
7948
|
+
id: unknown;
|
|
7949
|
+
value: boolean;
|
|
7950
|
+
path: unknown[];
|
|
7951
|
+
}) => any) | undefined;
|
|
7806
7952
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
7807
7953
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
7808
7954
|
nav: boolean;
|
|
@@ -7814,6 +7960,8 @@ declare const VAutocomplete: {
|
|
|
7814
7960
|
density: Density;
|
|
7815
7961
|
slim: boolean;
|
|
7816
7962
|
valueComparator: typeof deepEqual;
|
|
7963
|
+
activatable: boolean;
|
|
7964
|
+
selectable: boolean;
|
|
7817
7965
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
7818
7966
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
7819
7967
|
lines: false | "one" | "two" | "three";
|
|
@@ -7828,6 +7976,7 @@ declare const VAutocomplete: {
|
|
|
7828
7976
|
maxWidth?: string | number | undefined;
|
|
7829
7977
|
minHeight?: string | number | undefined;
|
|
7830
7978
|
minWidth?: string | number | undefined;
|
|
7979
|
+
activated?: readonly unknown[] | undefined;
|
|
7831
7980
|
class?: any;
|
|
7832
7981
|
elevation?: string | number | undefined;
|
|
7833
7982
|
theme?: string | undefined;
|
|
@@ -7835,10 +7984,12 @@ declare const VAutocomplete: {
|
|
|
7835
7984
|
bgColor?: string | undefined;
|
|
7836
7985
|
baseColor?: string | undefined;
|
|
7837
7986
|
activeClass?: string | undefined;
|
|
7987
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
7838
7988
|
activeColor?: string | undefined;
|
|
7839
7989
|
collapseIcon?: string | undefined;
|
|
7840
7990
|
expandIcon?: string | undefined;
|
|
7841
7991
|
} & {
|
|
7992
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
7842
7993
|
"onClick:open"?: ((value: {
|
|
7843
7994
|
id: unknown;
|
|
7844
7995
|
value: boolean;
|
|
@@ -7849,7 +8000,12 @@ declare const VAutocomplete: {
|
|
|
7849
8000
|
value: boolean;
|
|
7850
8001
|
path: unknown[];
|
|
7851
8002
|
}) => any) | undefined;
|
|
7852
|
-
|
|
8003
|
+
"onClick:activate"?: ((value: {
|
|
8004
|
+
id: unknown;
|
|
8005
|
+
value: boolean;
|
|
8006
|
+
path: unknown[];
|
|
8007
|
+
}) => any) | undefined;
|
|
8008
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "activatable" | "selectable" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
7853
8009
|
items?: readonly any[] | undefined;
|
|
7854
8010
|
itemTitle?: SelectItemKey<any>;
|
|
7855
8011
|
itemValue?: SelectItemKey<any>;
|
|
@@ -17982,6 +18138,8 @@ declare const VCombobox: {
|
|
|
17982
18138
|
density: Density;
|
|
17983
18139
|
slim: boolean;
|
|
17984
18140
|
valueComparator: typeof deepEqual;
|
|
18141
|
+
activatable: boolean;
|
|
18142
|
+
selectable: boolean;
|
|
17985
18143
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
17986
18144
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
17987
18145
|
lines: false | "one" | "two" | "three";
|
|
@@ -17998,6 +18156,8 @@ declare const VCombobox: {
|
|
|
17998
18156
|
density: Density;
|
|
17999
18157
|
slim: boolean;
|
|
18000
18158
|
valueComparator: typeof deepEqual;
|
|
18159
|
+
activatable: boolean;
|
|
18160
|
+
selectable: boolean;
|
|
18001
18161
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
18002
18162
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
18003
18163
|
lines: false | "one" | "two" | "three";
|
|
@@ -18011,6 +18171,7 @@ declare const VCombobox: {
|
|
|
18011
18171
|
maxWidth?: string | number | undefined;
|
|
18012
18172
|
minHeight?: string | number | undefined;
|
|
18013
18173
|
minWidth?: string | number | undefined;
|
|
18174
|
+
activated?: readonly unknown[] | undefined;
|
|
18014
18175
|
class?: any;
|
|
18015
18176
|
elevation?: string | number | undefined;
|
|
18016
18177
|
theme?: string | undefined;
|
|
@@ -18018,9 +18179,11 @@ declare const VCombobox: {
|
|
|
18018
18179
|
bgColor?: string | undefined;
|
|
18019
18180
|
baseColor?: string | undefined;
|
|
18020
18181
|
activeClass?: string | undefined;
|
|
18182
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
18021
18183
|
activeColor?: string | undefined;
|
|
18022
18184
|
collapseIcon?: string | undefined;
|
|
18023
18185
|
expandIcon?: string | undefined;
|
|
18186
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
18024
18187
|
"onClick:open"?: ((value: {
|
|
18025
18188
|
id: unknown;
|
|
18026
18189
|
value: boolean;
|
|
@@ -18031,6 +18194,11 @@ declare const VCombobox: {
|
|
|
18031
18194
|
value: boolean;
|
|
18032
18195
|
path: unknown[];
|
|
18033
18196
|
}) => any) | undefined;
|
|
18197
|
+
"onClick:activate"?: ((value: {
|
|
18198
|
+
id: unknown;
|
|
18199
|
+
value: boolean;
|
|
18200
|
+
path: unknown[];
|
|
18201
|
+
}) => any) | undefined;
|
|
18034
18202
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
18035
18203
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
18036
18204
|
nav: boolean;
|
|
@@ -18042,6 +18210,8 @@ declare const VCombobox: {
|
|
|
18042
18210
|
density: Density;
|
|
18043
18211
|
slim: boolean;
|
|
18044
18212
|
valueComparator: typeof deepEqual;
|
|
18213
|
+
activatable: boolean;
|
|
18214
|
+
selectable: boolean;
|
|
18045
18215
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
18046
18216
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
18047
18217
|
lines: false | "one" | "two" | "three";
|
|
@@ -18056,6 +18226,7 @@ declare const VCombobox: {
|
|
|
18056
18226
|
maxWidth?: string | number | undefined;
|
|
18057
18227
|
minHeight?: string | number | undefined;
|
|
18058
18228
|
minWidth?: string | number | undefined;
|
|
18229
|
+
activated?: readonly unknown[] | undefined;
|
|
18059
18230
|
class?: any;
|
|
18060
18231
|
elevation?: string | number | undefined;
|
|
18061
18232
|
theme?: string | undefined;
|
|
@@ -18063,10 +18234,12 @@ declare const VCombobox: {
|
|
|
18063
18234
|
bgColor?: string | undefined;
|
|
18064
18235
|
baseColor?: string | undefined;
|
|
18065
18236
|
activeClass?: string | undefined;
|
|
18237
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
18066
18238
|
activeColor?: string | undefined;
|
|
18067
18239
|
collapseIcon?: string | undefined;
|
|
18068
18240
|
expandIcon?: string | undefined;
|
|
18069
18241
|
} & {
|
|
18242
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
18070
18243
|
"onClick:open"?: ((value: {
|
|
18071
18244
|
id: unknown;
|
|
18072
18245
|
value: boolean;
|
|
@@ -18077,7 +18250,12 @@ declare const VCombobox: {
|
|
|
18077
18250
|
value: boolean;
|
|
18078
18251
|
path: unknown[];
|
|
18079
18252
|
}) => any) | undefined;
|
|
18080
|
-
|
|
18253
|
+
"onClick:activate"?: ((value: {
|
|
18254
|
+
id: unknown;
|
|
18255
|
+
value: boolean;
|
|
18256
|
+
path: unknown[];
|
|
18257
|
+
}) => any) | undefined;
|
|
18258
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "activatable" | "selectable" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
18081
18259
|
items?: readonly any[] | undefined;
|
|
18082
18260
|
itemTitle?: SelectItemKey<any>;
|
|
18083
18261
|
itemValue?: SelectItemKey<any>;
|
|
@@ -18531,6 +18709,8 @@ declare const VCombobox: {
|
|
|
18531
18709
|
density: Density;
|
|
18532
18710
|
slim: boolean;
|
|
18533
18711
|
valueComparator: typeof deepEqual;
|
|
18712
|
+
activatable: boolean;
|
|
18713
|
+
selectable: boolean;
|
|
18534
18714
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
18535
18715
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
18536
18716
|
lines: false | "one" | "two" | "three";
|
|
@@ -18547,6 +18727,8 @@ declare const VCombobox: {
|
|
|
18547
18727
|
density: Density;
|
|
18548
18728
|
slim: boolean;
|
|
18549
18729
|
valueComparator: typeof deepEqual;
|
|
18730
|
+
activatable: boolean;
|
|
18731
|
+
selectable: boolean;
|
|
18550
18732
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
18551
18733
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
18552
18734
|
lines: false | "one" | "two" | "three";
|
|
@@ -18560,6 +18742,7 @@ declare const VCombobox: {
|
|
|
18560
18742
|
maxWidth?: string | number | undefined;
|
|
18561
18743
|
minHeight?: string | number | undefined;
|
|
18562
18744
|
minWidth?: string | number | undefined;
|
|
18745
|
+
activated?: readonly unknown[] | undefined;
|
|
18563
18746
|
class?: any;
|
|
18564
18747
|
elevation?: string | number | undefined;
|
|
18565
18748
|
theme?: string | undefined;
|
|
@@ -18567,9 +18750,11 @@ declare const VCombobox: {
|
|
|
18567
18750
|
bgColor?: string | undefined;
|
|
18568
18751
|
baseColor?: string | undefined;
|
|
18569
18752
|
activeClass?: string | undefined;
|
|
18753
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
18570
18754
|
activeColor?: string | undefined;
|
|
18571
18755
|
collapseIcon?: string | undefined;
|
|
18572
18756
|
expandIcon?: string | undefined;
|
|
18757
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
18573
18758
|
"onClick:open"?: ((value: {
|
|
18574
18759
|
id: unknown;
|
|
18575
18760
|
value: boolean;
|
|
@@ -18580,6 +18765,11 @@ declare const VCombobox: {
|
|
|
18580
18765
|
value: boolean;
|
|
18581
18766
|
path: unknown[];
|
|
18582
18767
|
}) => any) | undefined;
|
|
18768
|
+
"onClick:activate"?: ((value: {
|
|
18769
|
+
id: unknown;
|
|
18770
|
+
value: boolean;
|
|
18771
|
+
path: unknown[];
|
|
18772
|
+
}) => any) | undefined;
|
|
18583
18773
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
18584
18774
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
18585
18775
|
nav: boolean;
|
|
@@ -18591,6 +18781,8 @@ declare const VCombobox: {
|
|
|
18591
18781
|
density: Density;
|
|
18592
18782
|
slim: boolean;
|
|
18593
18783
|
valueComparator: typeof deepEqual;
|
|
18784
|
+
activatable: boolean;
|
|
18785
|
+
selectable: boolean;
|
|
18594
18786
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
18595
18787
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
18596
18788
|
lines: false | "one" | "two" | "three";
|
|
@@ -18605,6 +18797,7 @@ declare const VCombobox: {
|
|
|
18605
18797
|
maxWidth?: string | number | undefined;
|
|
18606
18798
|
minHeight?: string | number | undefined;
|
|
18607
18799
|
minWidth?: string | number | undefined;
|
|
18800
|
+
activated?: readonly unknown[] | undefined;
|
|
18608
18801
|
class?: any;
|
|
18609
18802
|
elevation?: string | number | undefined;
|
|
18610
18803
|
theme?: string | undefined;
|
|
@@ -18612,10 +18805,12 @@ declare const VCombobox: {
|
|
|
18612
18805
|
bgColor?: string | undefined;
|
|
18613
18806
|
baseColor?: string | undefined;
|
|
18614
18807
|
activeClass?: string | undefined;
|
|
18808
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
18615
18809
|
activeColor?: string | undefined;
|
|
18616
18810
|
collapseIcon?: string | undefined;
|
|
18617
18811
|
expandIcon?: string | undefined;
|
|
18618
18812
|
} & {
|
|
18813
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
18619
18814
|
"onClick:open"?: ((value: {
|
|
18620
18815
|
id: unknown;
|
|
18621
18816
|
value: boolean;
|
|
@@ -18626,7 +18821,12 @@ declare const VCombobox: {
|
|
|
18626
18821
|
value: boolean;
|
|
18627
18822
|
path: unknown[];
|
|
18628
18823
|
}) => any) | undefined;
|
|
18629
|
-
|
|
18824
|
+
"onClick:activate"?: ((value: {
|
|
18825
|
+
id: unknown;
|
|
18826
|
+
value: boolean;
|
|
18827
|
+
path: unknown[];
|
|
18828
|
+
}) => any) | undefined;
|
|
18829
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "activatable" | "selectable" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
18630
18830
|
items?: readonly any[] | undefined;
|
|
18631
18831
|
itemTitle?: SelectItemKey<any>;
|
|
18632
18832
|
itemValue?: SelectItemKey<any>;
|
|
@@ -19192,6 +19392,8 @@ declare const VCombobox: {
|
|
|
19192
19392
|
density: Density;
|
|
19193
19393
|
slim: boolean;
|
|
19194
19394
|
valueComparator: typeof deepEqual;
|
|
19395
|
+
activatable: boolean;
|
|
19396
|
+
selectable: boolean;
|
|
19195
19397
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
19196
19398
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
19197
19399
|
lines: false | "one" | "two" | "three";
|
|
@@ -19208,6 +19410,8 @@ declare const VCombobox: {
|
|
|
19208
19410
|
density: Density;
|
|
19209
19411
|
slim: boolean;
|
|
19210
19412
|
valueComparator: typeof deepEqual;
|
|
19413
|
+
activatable: boolean;
|
|
19414
|
+
selectable: boolean;
|
|
19211
19415
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
19212
19416
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
19213
19417
|
lines: false | "one" | "two" | "three";
|
|
@@ -19221,6 +19425,7 @@ declare const VCombobox: {
|
|
|
19221
19425
|
maxWidth?: string | number | undefined;
|
|
19222
19426
|
minHeight?: string | number | undefined;
|
|
19223
19427
|
minWidth?: string | number | undefined;
|
|
19428
|
+
activated?: readonly unknown[] | undefined;
|
|
19224
19429
|
class?: any;
|
|
19225
19430
|
elevation?: string | number | undefined;
|
|
19226
19431
|
theme?: string | undefined;
|
|
@@ -19228,9 +19433,11 @@ declare const VCombobox: {
|
|
|
19228
19433
|
bgColor?: string | undefined;
|
|
19229
19434
|
baseColor?: string | undefined;
|
|
19230
19435
|
activeClass?: string | undefined;
|
|
19436
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
19231
19437
|
activeColor?: string | undefined;
|
|
19232
19438
|
collapseIcon?: string | undefined;
|
|
19233
19439
|
expandIcon?: string | undefined;
|
|
19440
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
19234
19441
|
"onClick:open"?: ((value: {
|
|
19235
19442
|
id: unknown;
|
|
19236
19443
|
value: boolean;
|
|
@@ -19241,6 +19448,11 @@ declare const VCombobox: {
|
|
|
19241
19448
|
value: boolean;
|
|
19242
19449
|
path: unknown[];
|
|
19243
19450
|
}) => any) | undefined;
|
|
19451
|
+
"onClick:activate"?: ((value: {
|
|
19452
|
+
id: unknown;
|
|
19453
|
+
value: boolean;
|
|
19454
|
+
path: unknown[];
|
|
19455
|
+
}) => any) | undefined;
|
|
19244
19456
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
19245
19457
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
19246
19458
|
nav: boolean;
|
|
@@ -19252,6 +19464,8 @@ declare const VCombobox: {
|
|
|
19252
19464
|
density: Density;
|
|
19253
19465
|
slim: boolean;
|
|
19254
19466
|
valueComparator: typeof deepEqual;
|
|
19467
|
+
activatable: boolean;
|
|
19468
|
+
selectable: boolean;
|
|
19255
19469
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
19256
19470
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
19257
19471
|
lines: false | "one" | "two" | "three";
|
|
@@ -19266,6 +19480,7 @@ declare const VCombobox: {
|
|
|
19266
19480
|
maxWidth?: string | number | undefined;
|
|
19267
19481
|
minHeight?: string | number | undefined;
|
|
19268
19482
|
minWidth?: string | number | undefined;
|
|
19483
|
+
activated?: readonly unknown[] | undefined;
|
|
19269
19484
|
class?: any;
|
|
19270
19485
|
elevation?: string | number | undefined;
|
|
19271
19486
|
theme?: string | undefined;
|
|
@@ -19273,10 +19488,12 @@ declare const VCombobox: {
|
|
|
19273
19488
|
bgColor?: string | undefined;
|
|
19274
19489
|
baseColor?: string | undefined;
|
|
19275
19490
|
activeClass?: string | undefined;
|
|
19491
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
19276
19492
|
activeColor?: string | undefined;
|
|
19277
19493
|
collapseIcon?: string | undefined;
|
|
19278
19494
|
expandIcon?: string | undefined;
|
|
19279
19495
|
} & {
|
|
19496
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
19280
19497
|
"onClick:open"?: ((value: {
|
|
19281
19498
|
id: unknown;
|
|
19282
19499
|
value: boolean;
|
|
@@ -19287,7 +19504,12 @@ declare const VCombobox: {
|
|
|
19287
19504
|
value: boolean;
|
|
19288
19505
|
path: unknown[];
|
|
19289
19506
|
}) => any) | undefined;
|
|
19290
|
-
|
|
19507
|
+
"onClick:activate"?: ((value: {
|
|
19508
|
+
id: unknown;
|
|
19509
|
+
value: boolean;
|
|
19510
|
+
path: unknown[];
|
|
19511
|
+
}) => any) | undefined;
|
|
19512
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "activatable" | "selectable" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
19291
19513
|
items?: readonly any[] | undefined;
|
|
19292
19514
|
itemTitle?: SelectItemKey<any>;
|
|
19293
19515
|
itemValue?: SelectItemKey<any>;
|
|
@@ -19790,6 +20012,8 @@ declare const VCombobox: {
|
|
|
19790
20012
|
density: Density;
|
|
19791
20013
|
slim: boolean;
|
|
19792
20014
|
valueComparator: typeof deepEqual;
|
|
20015
|
+
activatable: boolean;
|
|
20016
|
+
selectable: boolean;
|
|
19793
20017
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
19794
20018
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
19795
20019
|
lines: false | "one" | "two" | "three";
|
|
@@ -19806,6 +20030,8 @@ declare const VCombobox: {
|
|
|
19806
20030
|
density: Density;
|
|
19807
20031
|
slim: boolean;
|
|
19808
20032
|
valueComparator: typeof deepEqual;
|
|
20033
|
+
activatable: boolean;
|
|
20034
|
+
selectable: boolean;
|
|
19809
20035
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
19810
20036
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
19811
20037
|
lines: false | "one" | "two" | "three";
|
|
@@ -19819,6 +20045,7 @@ declare const VCombobox: {
|
|
|
19819
20045
|
maxWidth?: string | number | undefined;
|
|
19820
20046
|
minHeight?: string | number | undefined;
|
|
19821
20047
|
minWidth?: string | number | undefined;
|
|
20048
|
+
activated?: readonly unknown[] | undefined;
|
|
19822
20049
|
class?: any;
|
|
19823
20050
|
elevation?: string | number | undefined;
|
|
19824
20051
|
theme?: string | undefined;
|
|
@@ -19826,9 +20053,11 @@ declare const VCombobox: {
|
|
|
19826
20053
|
bgColor?: string | undefined;
|
|
19827
20054
|
baseColor?: string | undefined;
|
|
19828
20055
|
activeClass?: string | undefined;
|
|
20056
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
19829
20057
|
activeColor?: string | undefined;
|
|
19830
20058
|
collapseIcon?: string | undefined;
|
|
19831
20059
|
expandIcon?: string | undefined;
|
|
20060
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
19832
20061
|
"onClick:open"?: ((value: {
|
|
19833
20062
|
id: unknown;
|
|
19834
20063
|
value: boolean;
|
|
@@ -19839,6 +20068,11 @@ declare const VCombobox: {
|
|
|
19839
20068
|
value: boolean;
|
|
19840
20069
|
path: unknown[];
|
|
19841
20070
|
}) => any) | undefined;
|
|
20071
|
+
"onClick:activate"?: ((value: {
|
|
20072
|
+
id: unknown;
|
|
20073
|
+
value: boolean;
|
|
20074
|
+
path: unknown[];
|
|
20075
|
+
}) => any) | undefined;
|
|
19842
20076
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
19843
20077
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
19844
20078
|
nav: boolean;
|
|
@@ -19850,6 +20084,8 @@ declare const VCombobox: {
|
|
|
19850
20084
|
density: Density;
|
|
19851
20085
|
slim: boolean;
|
|
19852
20086
|
valueComparator: typeof deepEqual;
|
|
20087
|
+
activatable: boolean;
|
|
20088
|
+
selectable: boolean;
|
|
19853
20089
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
19854
20090
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
19855
20091
|
lines: false | "one" | "two" | "three";
|
|
@@ -19864,6 +20100,7 @@ declare const VCombobox: {
|
|
|
19864
20100
|
maxWidth?: string | number | undefined;
|
|
19865
20101
|
minHeight?: string | number | undefined;
|
|
19866
20102
|
minWidth?: string | number | undefined;
|
|
20103
|
+
activated?: readonly unknown[] | undefined;
|
|
19867
20104
|
class?: any;
|
|
19868
20105
|
elevation?: string | number | undefined;
|
|
19869
20106
|
theme?: string | undefined;
|
|
@@ -19871,10 +20108,12 @@ declare const VCombobox: {
|
|
|
19871
20108
|
bgColor?: string | undefined;
|
|
19872
20109
|
baseColor?: string | undefined;
|
|
19873
20110
|
activeClass?: string | undefined;
|
|
20111
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
19874
20112
|
activeColor?: string | undefined;
|
|
19875
20113
|
collapseIcon?: string | undefined;
|
|
19876
20114
|
expandIcon?: string | undefined;
|
|
19877
20115
|
} & {
|
|
20116
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
19878
20117
|
"onClick:open"?: ((value: {
|
|
19879
20118
|
id: unknown;
|
|
19880
20119
|
value: boolean;
|
|
@@ -19885,7 +20124,12 @@ declare const VCombobox: {
|
|
|
19885
20124
|
value: boolean;
|
|
19886
20125
|
path: unknown[];
|
|
19887
20126
|
}) => any) | undefined;
|
|
19888
|
-
|
|
20127
|
+
"onClick:activate"?: ((value: {
|
|
20128
|
+
id: unknown;
|
|
20129
|
+
value: boolean;
|
|
20130
|
+
path: unknown[];
|
|
20131
|
+
}) => any) | undefined;
|
|
20132
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "activatable" | "selectable" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
19889
20133
|
items?: readonly any[] | undefined;
|
|
19890
20134
|
itemTitle?: SelectItemKey<any>;
|
|
19891
20135
|
itemValue?: SelectItemKey<any>;
|
|
@@ -20593,6 +20837,8 @@ declare const VCombobox: {
|
|
|
20593
20837
|
density: Density;
|
|
20594
20838
|
slim: boolean;
|
|
20595
20839
|
valueComparator: typeof deepEqual;
|
|
20840
|
+
activatable: boolean;
|
|
20841
|
+
selectable: boolean;
|
|
20596
20842
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
20597
20843
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
20598
20844
|
lines: false | "one" | "two" | "three";
|
|
@@ -20609,6 +20855,8 @@ declare const VCombobox: {
|
|
|
20609
20855
|
density: Density;
|
|
20610
20856
|
slim: boolean;
|
|
20611
20857
|
valueComparator: typeof deepEqual;
|
|
20858
|
+
activatable: boolean;
|
|
20859
|
+
selectable: boolean;
|
|
20612
20860
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
20613
20861
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
20614
20862
|
lines: false | "one" | "two" | "three";
|
|
@@ -20622,6 +20870,7 @@ declare const VCombobox: {
|
|
|
20622
20870
|
maxWidth?: string | number | undefined;
|
|
20623
20871
|
minHeight?: string | number | undefined;
|
|
20624
20872
|
minWidth?: string | number | undefined;
|
|
20873
|
+
activated?: readonly unknown[] | undefined;
|
|
20625
20874
|
class?: any;
|
|
20626
20875
|
elevation?: string | number | undefined;
|
|
20627
20876
|
theme?: string | undefined;
|
|
@@ -20629,9 +20878,11 @@ declare const VCombobox: {
|
|
|
20629
20878
|
bgColor?: string | undefined;
|
|
20630
20879
|
baseColor?: string | undefined;
|
|
20631
20880
|
activeClass?: string | undefined;
|
|
20881
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
20632
20882
|
activeColor?: string | undefined;
|
|
20633
20883
|
collapseIcon?: string | undefined;
|
|
20634
20884
|
expandIcon?: string | undefined;
|
|
20885
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
20635
20886
|
"onClick:open"?: ((value: {
|
|
20636
20887
|
id: unknown;
|
|
20637
20888
|
value: boolean;
|
|
@@ -20642,6 +20893,11 @@ declare const VCombobox: {
|
|
|
20642
20893
|
value: boolean;
|
|
20643
20894
|
path: unknown[];
|
|
20644
20895
|
}) => any) | undefined;
|
|
20896
|
+
"onClick:activate"?: ((value: {
|
|
20897
|
+
id: unknown;
|
|
20898
|
+
value: boolean;
|
|
20899
|
+
path: unknown[];
|
|
20900
|
+
}) => any) | undefined;
|
|
20645
20901
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
20646
20902
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
20647
20903
|
nav: boolean;
|
|
@@ -20653,6 +20909,8 @@ declare const VCombobox: {
|
|
|
20653
20909
|
density: Density;
|
|
20654
20910
|
slim: boolean;
|
|
20655
20911
|
valueComparator: typeof deepEqual;
|
|
20912
|
+
activatable: boolean;
|
|
20913
|
+
selectable: boolean;
|
|
20656
20914
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
20657
20915
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
20658
20916
|
lines: false | "one" | "two" | "three";
|
|
@@ -20667,6 +20925,7 @@ declare const VCombobox: {
|
|
|
20667
20925
|
maxWidth?: string | number | undefined;
|
|
20668
20926
|
minHeight?: string | number | undefined;
|
|
20669
20927
|
minWidth?: string | number | undefined;
|
|
20928
|
+
activated?: readonly unknown[] | undefined;
|
|
20670
20929
|
class?: any;
|
|
20671
20930
|
elevation?: string | number | undefined;
|
|
20672
20931
|
theme?: string | undefined;
|
|
@@ -20674,10 +20933,12 @@ declare const VCombobox: {
|
|
|
20674
20933
|
bgColor?: string | undefined;
|
|
20675
20934
|
baseColor?: string | undefined;
|
|
20676
20935
|
activeClass?: string | undefined;
|
|
20936
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
20677
20937
|
activeColor?: string | undefined;
|
|
20678
20938
|
collapseIcon?: string | undefined;
|
|
20679
20939
|
expandIcon?: string | undefined;
|
|
20680
20940
|
} & {
|
|
20941
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
20681
20942
|
"onClick:open"?: ((value: {
|
|
20682
20943
|
id: unknown;
|
|
20683
20944
|
value: boolean;
|
|
@@ -20688,7 +20949,12 @@ declare const VCombobox: {
|
|
|
20688
20949
|
value: boolean;
|
|
20689
20950
|
path: unknown[];
|
|
20690
20951
|
}) => any) | undefined;
|
|
20691
|
-
|
|
20952
|
+
"onClick:activate"?: ((value: {
|
|
20953
|
+
id: unknown;
|
|
20954
|
+
value: boolean;
|
|
20955
|
+
path: unknown[];
|
|
20956
|
+
}) => any) | undefined;
|
|
20957
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "activatable" | "selectable" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
20692
20958
|
items?: readonly any[] | undefined;
|
|
20693
20959
|
itemTitle?: SelectItemKey<any>;
|
|
20694
20960
|
itemValue?: SelectItemKey<any>;
|
|
@@ -21255,6 +21521,8 @@ declare const VCombobox: {
|
|
|
21255
21521
|
density: Density;
|
|
21256
21522
|
slim: boolean;
|
|
21257
21523
|
valueComparator: typeof deepEqual;
|
|
21524
|
+
activatable: boolean;
|
|
21525
|
+
selectable: boolean;
|
|
21258
21526
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
21259
21527
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
21260
21528
|
lines: false | "one" | "two" | "three";
|
|
@@ -21271,6 +21539,8 @@ declare const VCombobox: {
|
|
|
21271
21539
|
density: Density;
|
|
21272
21540
|
slim: boolean;
|
|
21273
21541
|
valueComparator: typeof deepEqual;
|
|
21542
|
+
activatable: boolean;
|
|
21543
|
+
selectable: boolean;
|
|
21274
21544
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
21275
21545
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
21276
21546
|
lines: false | "one" | "two" | "three";
|
|
@@ -21284,6 +21554,7 @@ declare const VCombobox: {
|
|
|
21284
21554
|
maxWidth?: string | number | undefined;
|
|
21285
21555
|
minHeight?: string | number | undefined;
|
|
21286
21556
|
minWidth?: string | number | undefined;
|
|
21557
|
+
activated?: readonly unknown[] | undefined;
|
|
21287
21558
|
class?: any;
|
|
21288
21559
|
elevation?: string | number | undefined;
|
|
21289
21560
|
theme?: string | undefined;
|
|
@@ -21291,9 +21562,11 @@ declare const VCombobox: {
|
|
|
21291
21562
|
bgColor?: string | undefined;
|
|
21292
21563
|
baseColor?: string | undefined;
|
|
21293
21564
|
activeClass?: string | undefined;
|
|
21565
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
21294
21566
|
activeColor?: string | undefined;
|
|
21295
21567
|
collapseIcon?: string | undefined;
|
|
21296
21568
|
expandIcon?: string | undefined;
|
|
21569
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
21297
21570
|
"onClick:open"?: ((value: {
|
|
21298
21571
|
id: unknown;
|
|
21299
21572
|
value: boolean;
|
|
@@ -21304,6 +21577,11 @@ declare const VCombobox: {
|
|
|
21304
21577
|
value: boolean;
|
|
21305
21578
|
path: unknown[];
|
|
21306
21579
|
}) => any) | undefined;
|
|
21580
|
+
"onClick:activate"?: ((value: {
|
|
21581
|
+
id: unknown;
|
|
21582
|
+
value: boolean;
|
|
21583
|
+
path: unknown[];
|
|
21584
|
+
}) => any) | undefined;
|
|
21307
21585
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
21308
21586
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
21309
21587
|
nav: boolean;
|
|
@@ -21315,6 +21593,8 @@ declare const VCombobox: {
|
|
|
21315
21593
|
density: Density;
|
|
21316
21594
|
slim: boolean;
|
|
21317
21595
|
valueComparator: typeof deepEqual;
|
|
21596
|
+
activatable: boolean;
|
|
21597
|
+
selectable: boolean;
|
|
21318
21598
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
21319
21599
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
21320
21600
|
lines: false | "one" | "two" | "three";
|
|
@@ -21329,6 +21609,7 @@ declare const VCombobox: {
|
|
|
21329
21609
|
maxWidth?: string | number | undefined;
|
|
21330
21610
|
minHeight?: string | number | undefined;
|
|
21331
21611
|
minWidth?: string | number | undefined;
|
|
21612
|
+
activated?: readonly unknown[] | undefined;
|
|
21332
21613
|
class?: any;
|
|
21333
21614
|
elevation?: string | number | undefined;
|
|
21334
21615
|
theme?: string | undefined;
|
|
@@ -21336,10 +21617,12 @@ declare const VCombobox: {
|
|
|
21336
21617
|
bgColor?: string | undefined;
|
|
21337
21618
|
baseColor?: string | undefined;
|
|
21338
21619
|
activeClass?: string | undefined;
|
|
21620
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
21339
21621
|
activeColor?: string | undefined;
|
|
21340
21622
|
collapseIcon?: string | undefined;
|
|
21341
21623
|
expandIcon?: string | undefined;
|
|
21342
21624
|
} & {
|
|
21625
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
21343
21626
|
"onClick:open"?: ((value: {
|
|
21344
21627
|
id: unknown;
|
|
21345
21628
|
value: boolean;
|
|
@@ -21350,7 +21633,12 @@ declare const VCombobox: {
|
|
|
21350
21633
|
value: boolean;
|
|
21351
21634
|
path: unknown[];
|
|
21352
21635
|
}) => any) | undefined;
|
|
21353
|
-
|
|
21636
|
+
"onClick:activate"?: ((value: {
|
|
21637
|
+
id: unknown;
|
|
21638
|
+
value: boolean;
|
|
21639
|
+
path: unknown[];
|
|
21640
|
+
}) => any) | undefined;
|
|
21641
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "activatable" | "selectable" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
21354
21642
|
items?: readonly any[] | undefined;
|
|
21355
21643
|
itemTitle?: SelectItemKey<any>;
|
|
21356
21644
|
itemValue?: SelectItemKey<any>;
|
|
@@ -36990,6 +37278,8 @@ declare const VList: {
|
|
|
36990
37278
|
density: Density;
|
|
36991
37279
|
slim: boolean;
|
|
36992
37280
|
valueComparator: typeof deepEqual;
|
|
37281
|
+
activatable: boolean;
|
|
37282
|
+
selectable: boolean;
|
|
36993
37283
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
36994
37284
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
36995
37285
|
lines: false | "one" | "two" | "three";
|
|
@@ -37004,6 +37294,7 @@ declare const VList: {
|
|
|
37004
37294
|
maxWidth?: string | number | undefined;
|
|
37005
37295
|
minHeight?: string | number | undefined;
|
|
37006
37296
|
minWidth?: string | number | undefined;
|
|
37297
|
+
activated?: readonly unknown[] | undefined;
|
|
37007
37298
|
class?: any;
|
|
37008
37299
|
elevation?: string | number | undefined;
|
|
37009
37300
|
theme?: string | undefined;
|
|
@@ -37011,10 +37302,12 @@ declare const VList: {
|
|
|
37011
37302
|
bgColor?: string | undefined;
|
|
37012
37303
|
baseColor?: string | undefined;
|
|
37013
37304
|
activeClass?: string | undefined;
|
|
37305
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
37014
37306
|
activeColor?: string | undefined;
|
|
37015
37307
|
collapseIcon?: string | undefined;
|
|
37016
37308
|
expandIcon?: string | undefined;
|
|
37017
37309
|
} & {
|
|
37310
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
37018
37311
|
"onClick:open"?: ((value: {
|
|
37019
37312
|
id: unknown;
|
|
37020
37313
|
value: boolean;
|
|
@@ -37025,18 +37318,31 @@ declare const VList: {
|
|
|
37025
37318
|
value: boolean;
|
|
37026
37319
|
path: unknown[];
|
|
37027
37320
|
}) => any) | undefined;
|
|
37321
|
+
"onClick:activate"?: ((value: {
|
|
37322
|
+
id: unknown;
|
|
37323
|
+
value: boolean;
|
|
37324
|
+
path: unknown[];
|
|
37325
|
+
}) => any) | undefined;
|
|
37028
37326
|
}, {
|
|
37029
37327
|
open: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
37030
37328
|
select: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
37031
37329
|
focus: (location?: 'next' | 'prev' | 'first' | 'last') => void;
|
|
37330
|
+
children: vue.Ref<Map<unknown, unknown[]>>;
|
|
37331
|
+
parents: vue.Ref<Map<unknown, unknown>>;
|
|
37032
37332
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
37033
37333
|
'update:selected': (value: unknown[]) => boolean;
|
|
37334
|
+
'update:activated': (value: unknown[]) => boolean;
|
|
37034
37335
|
'update:opened': (value: unknown[]) => boolean;
|
|
37035
37336
|
'click:open': (value: {
|
|
37036
37337
|
id: unknown;
|
|
37037
37338
|
value: boolean;
|
|
37038
37339
|
path: unknown[];
|
|
37039
37340
|
}) => boolean;
|
|
37341
|
+
'click:activate': (value: {
|
|
37342
|
+
id: unknown;
|
|
37343
|
+
value: boolean;
|
|
37344
|
+
path: unknown[];
|
|
37345
|
+
}) => boolean;
|
|
37040
37346
|
'click:select': (value: {
|
|
37041
37347
|
id: unknown;
|
|
37042
37348
|
value: boolean;
|
|
@@ -37053,6 +37359,8 @@ declare const VList: {
|
|
|
37053
37359
|
density: Density;
|
|
37054
37360
|
slim: boolean;
|
|
37055
37361
|
valueComparator: typeof deepEqual;
|
|
37362
|
+
activatable: boolean;
|
|
37363
|
+
selectable: boolean;
|
|
37056
37364
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
37057
37365
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
37058
37366
|
lines: false | "one" | "two" | "three";
|
|
@@ -37067,6 +37375,7 @@ declare const VList: {
|
|
|
37067
37375
|
maxWidth?: string | number | undefined;
|
|
37068
37376
|
minHeight?: string | number | undefined;
|
|
37069
37377
|
minWidth?: string | number | undefined;
|
|
37378
|
+
activated?: readonly unknown[] | undefined;
|
|
37070
37379
|
class?: any;
|
|
37071
37380
|
elevation?: string | number | undefined;
|
|
37072
37381
|
theme?: string | undefined;
|
|
@@ -37074,10 +37383,12 @@ declare const VList: {
|
|
|
37074
37383
|
bgColor?: string | undefined;
|
|
37075
37384
|
baseColor?: string | undefined;
|
|
37076
37385
|
activeClass?: string | undefined;
|
|
37386
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
37077
37387
|
activeColor?: string | undefined;
|
|
37078
37388
|
collapseIcon?: string | undefined;
|
|
37079
37389
|
expandIcon?: string | undefined;
|
|
37080
37390
|
} & {
|
|
37391
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
37081
37392
|
"onClick:open"?: ((value: {
|
|
37082
37393
|
id: unknown;
|
|
37083
37394
|
value: boolean;
|
|
@@ -37088,6 +37399,11 @@ declare const VList: {
|
|
|
37088
37399
|
value: boolean;
|
|
37089
37400
|
path: unknown[];
|
|
37090
37401
|
}) => any) | undefined;
|
|
37402
|
+
"onClick:activate"?: ((value: {
|
|
37403
|
+
id: unknown;
|
|
37404
|
+
value: boolean;
|
|
37405
|
+
path: unknown[];
|
|
37406
|
+
}) => any) | undefined;
|
|
37091
37407
|
}, {
|
|
37092
37408
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
37093
37409
|
nav: boolean;
|
|
@@ -37100,6 +37416,8 @@ declare const VList: {
|
|
|
37100
37416
|
density: Density;
|
|
37101
37417
|
slim: boolean;
|
|
37102
37418
|
valueComparator: typeof deepEqual;
|
|
37419
|
+
activatable: boolean;
|
|
37420
|
+
selectable: boolean;
|
|
37103
37421
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
37104
37422
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
37105
37423
|
lines: false | "one" | "two" | "three";
|
|
@@ -37193,6 +37511,8 @@ declare const VList: {
|
|
|
37193
37511
|
density: Density;
|
|
37194
37512
|
slim: boolean;
|
|
37195
37513
|
valueComparator: typeof deepEqual;
|
|
37514
|
+
activatable: boolean;
|
|
37515
|
+
selectable: boolean;
|
|
37196
37516
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
37197
37517
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
37198
37518
|
lines: false | "one" | "two" | "three";
|
|
@@ -37207,6 +37527,7 @@ declare const VList: {
|
|
|
37207
37527
|
maxWidth?: string | number | undefined;
|
|
37208
37528
|
minHeight?: string | number | undefined;
|
|
37209
37529
|
minWidth?: string | number | undefined;
|
|
37530
|
+
activated?: readonly unknown[] | undefined;
|
|
37210
37531
|
class?: any;
|
|
37211
37532
|
elevation?: string | number | undefined;
|
|
37212
37533
|
theme?: string | undefined;
|
|
@@ -37214,10 +37535,12 @@ declare const VList: {
|
|
|
37214
37535
|
bgColor?: string | undefined;
|
|
37215
37536
|
baseColor?: string | undefined;
|
|
37216
37537
|
activeClass?: string | undefined;
|
|
37538
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
37217
37539
|
activeColor?: string | undefined;
|
|
37218
37540
|
collapseIcon?: string | undefined;
|
|
37219
37541
|
expandIcon?: string | undefined;
|
|
37220
37542
|
} & {
|
|
37543
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
37221
37544
|
"onClick:open"?: ((value: {
|
|
37222
37545
|
id: unknown;
|
|
37223
37546
|
value: boolean;
|
|
@@ -37228,10 +37551,17 @@ declare const VList: {
|
|
|
37228
37551
|
value: boolean;
|
|
37229
37552
|
path: unknown[];
|
|
37230
37553
|
}) => any) | undefined;
|
|
37554
|
+
"onClick:activate"?: ((value: {
|
|
37555
|
+
id: unknown;
|
|
37556
|
+
value: boolean;
|
|
37557
|
+
path: unknown[];
|
|
37558
|
+
}) => any) | undefined;
|
|
37231
37559
|
}, {
|
|
37232
37560
|
open: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
37233
37561
|
select: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
37234
37562
|
focus: (location?: 'next' | 'prev' | 'first' | 'last') => void;
|
|
37563
|
+
children: vue.Ref<Map<unknown, unknown[]>>;
|
|
37564
|
+
parents: vue.Ref<Map<unknown, unknown>>;
|
|
37235
37565
|
}, {}, {}, {}, {
|
|
37236
37566
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
37237
37567
|
nav: boolean;
|
|
@@ -37244,6 +37574,8 @@ declare const VList: {
|
|
|
37244
37574
|
density: Density;
|
|
37245
37575
|
slim: boolean;
|
|
37246
37576
|
valueComparator: typeof deepEqual;
|
|
37577
|
+
activatable: boolean;
|
|
37578
|
+
selectable: boolean;
|
|
37247
37579
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
37248
37580
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
37249
37581
|
lines: false | "one" | "two" | "three";
|
|
@@ -37264,6 +37596,8 @@ declare const VList: {
|
|
|
37264
37596
|
density: Density;
|
|
37265
37597
|
slim: boolean;
|
|
37266
37598
|
valueComparator: typeof deepEqual;
|
|
37599
|
+
activatable: boolean;
|
|
37600
|
+
selectable: boolean;
|
|
37267
37601
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
37268
37602
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
37269
37603
|
lines: false | "one" | "two" | "three";
|
|
@@ -37278,6 +37612,7 @@ declare const VList: {
|
|
|
37278
37612
|
maxWidth?: string | number | undefined;
|
|
37279
37613
|
minHeight?: string | number | undefined;
|
|
37280
37614
|
minWidth?: string | number | undefined;
|
|
37615
|
+
activated?: readonly unknown[] | undefined;
|
|
37281
37616
|
class?: any;
|
|
37282
37617
|
elevation?: string | number | undefined;
|
|
37283
37618
|
theme?: string | undefined;
|
|
@@ -37285,10 +37620,12 @@ declare const VList: {
|
|
|
37285
37620
|
bgColor?: string | undefined;
|
|
37286
37621
|
baseColor?: string | undefined;
|
|
37287
37622
|
activeClass?: string | undefined;
|
|
37623
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
37288
37624
|
activeColor?: string | undefined;
|
|
37289
37625
|
collapseIcon?: string | undefined;
|
|
37290
37626
|
expandIcon?: string | undefined;
|
|
37291
37627
|
} & {
|
|
37628
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
37292
37629
|
"onClick:open"?: ((value: {
|
|
37293
37630
|
id: unknown;
|
|
37294
37631
|
value: boolean;
|
|
@@ -37299,18 +37636,31 @@ declare const VList: {
|
|
|
37299
37636
|
value: boolean;
|
|
37300
37637
|
path: unknown[];
|
|
37301
37638
|
}) => any) | undefined;
|
|
37639
|
+
"onClick:activate"?: ((value: {
|
|
37640
|
+
id: unknown;
|
|
37641
|
+
value: boolean;
|
|
37642
|
+
path: unknown[];
|
|
37643
|
+
}) => any) | undefined;
|
|
37302
37644
|
}, {
|
|
37303
37645
|
open: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
37304
37646
|
select: (id: unknown, value: boolean, event?: Event | undefined) => void;
|
|
37305
37647
|
focus: (location?: 'next' | 'prev' | 'first' | 'last') => void;
|
|
37648
|
+
children: vue.Ref<Map<unknown, unknown[]>>;
|
|
37649
|
+
parents: vue.Ref<Map<unknown, unknown>>;
|
|
37306
37650
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
37307
37651
|
'update:selected': (value: unknown[]) => boolean;
|
|
37652
|
+
'update:activated': (value: unknown[]) => boolean;
|
|
37308
37653
|
'update:opened': (value: unknown[]) => boolean;
|
|
37309
37654
|
'click:open': (value: {
|
|
37310
37655
|
id: unknown;
|
|
37311
37656
|
value: boolean;
|
|
37312
37657
|
path: unknown[];
|
|
37313
37658
|
}) => boolean;
|
|
37659
|
+
'click:activate': (value: {
|
|
37660
|
+
id: unknown;
|
|
37661
|
+
value: boolean;
|
|
37662
|
+
path: unknown[];
|
|
37663
|
+
}) => boolean;
|
|
37314
37664
|
'click:select': (value: {
|
|
37315
37665
|
id: unknown;
|
|
37316
37666
|
value: boolean;
|
|
@@ -37328,6 +37678,8 @@ declare const VList: {
|
|
|
37328
37678
|
density: Density;
|
|
37329
37679
|
slim: boolean;
|
|
37330
37680
|
valueComparator: typeof deepEqual;
|
|
37681
|
+
activatable: boolean;
|
|
37682
|
+
selectable: boolean;
|
|
37331
37683
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
37332
37684
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
37333
37685
|
lines: false | "one" | "two" | "three";
|
|
@@ -37493,6 +37845,9 @@ declare const VList: {
|
|
|
37493
37845
|
default: null;
|
|
37494
37846
|
};
|
|
37495
37847
|
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
37848
|
+
activatable: BooleanConstructor;
|
|
37849
|
+
selectable: BooleanConstructor;
|
|
37850
|
+
activeStrategy: PropType<SelectStrategy>;
|
|
37496
37851
|
selectStrategy: {
|
|
37497
37852
|
type: PropType<NonNullable<SelectStrategy>>;
|
|
37498
37853
|
default: NonNullable<SelectStrategy>;
|
|
@@ -37502,6 +37857,7 @@ declare const VList: {
|
|
|
37502
37857
|
default: NonNullable<OpenStrategyProp>;
|
|
37503
37858
|
};
|
|
37504
37859
|
opened: PropType<readonly unknown[]>;
|
|
37860
|
+
activated: PropType<readonly unknown[]>;
|
|
37505
37861
|
selected: PropType<readonly unknown[]>;
|
|
37506
37862
|
mandatory: BooleanConstructor;
|
|
37507
37863
|
baseColor: StringConstructor;
|
|
@@ -37587,6 +37943,9 @@ declare const VList: {
|
|
|
37587
37943
|
default: null;
|
|
37588
37944
|
};
|
|
37589
37945
|
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
37946
|
+
activatable: BooleanConstructor;
|
|
37947
|
+
selectable: BooleanConstructor;
|
|
37948
|
+
activeStrategy: PropType<SelectStrategy>;
|
|
37590
37949
|
selectStrategy: {
|
|
37591
37950
|
type: PropType<NonNullable<SelectStrategy>>;
|
|
37592
37951
|
default: NonNullable<SelectStrategy>;
|
|
@@ -37596,6 +37955,7 @@ declare const VList: {
|
|
|
37596
37955
|
default: NonNullable<OpenStrategyProp>;
|
|
37597
37956
|
};
|
|
37598
37957
|
opened: PropType<readonly unknown[]>;
|
|
37958
|
+
activated: PropType<readonly unknown[]>;
|
|
37599
37959
|
selected: PropType<readonly unknown[]>;
|
|
37600
37960
|
mandatory: BooleanConstructor;
|
|
37601
37961
|
baseColor: StringConstructor;
|
|
@@ -37652,7 +38012,9 @@ declare const VListGroup: {
|
|
|
37652
38012
|
isOpen: boolean;
|
|
37653
38013
|
props: Record<string, unknown>;
|
|
37654
38014
|
}) => vue.VNodeChild) | undefined;
|
|
37655
|
-
}, {
|
|
38015
|
+
}, {
|
|
38016
|
+
isOpen: vue.ComputedRef<boolean>;
|
|
38017
|
+
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
37656
38018
|
style: vue.StyleValue;
|
|
37657
38019
|
tag: string;
|
|
37658
38020
|
subgroup: boolean;
|
|
@@ -37750,7 +38112,9 @@ declare const VListGroup: {
|
|
|
37750
38112
|
isOpen: boolean;
|
|
37751
38113
|
props: Record<string, unknown>;
|
|
37752
38114
|
}) => vue.VNodeChild) | undefined;
|
|
37753
|
-
}, {
|
|
38115
|
+
}, {
|
|
38116
|
+
isOpen: vue.ComputedRef<boolean>;
|
|
38117
|
+
}, {}, {}, {}, {
|
|
37754
38118
|
style: vue.StyleValue;
|
|
37755
38119
|
tag: string;
|
|
37756
38120
|
subgroup: boolean;
|
|
@@ -37798,7 +38162,9 @@ declare const VListGroup: {
|
|
|
37798
38162
|
isOpen: boolean;
|
|
37799
38163
|
props: Record<string, unknown>;
|
|
37800
38164
|
}) => vue.VNodeChild) | undefined;
|
|
37801
|
-
}, {
|
|
38165
|
+
}, {
|
|
38166
|
+
isOpen: vue.ComputedRef<boolean>;
|
|
38167
|
+
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
|
|
37802
38168
|
style: vue.StyleValue;
|
|
37803
38169
|
tag: string;
|
|
37804
38170
|
subgroup: boolean;
|
|
@@ -46066,6 +46432,8 @@ declare const VSelect: {
|
|
|
46066
46432
|
density: Density;
|
|
46067
46433
|
slim: boolean;
|
|
46068
46434
|
valueComparator: typeof deepEqual;
|
|
46435
|
+
activatable: boolean;
|
|
46436
|
+
selectable: boolean;
|
|
46069
46437
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
46070
46438
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
46071
46439
|
lines: false | "one" | "two" | "three";
|
|
@@ -46082,6 +46450,8 @@ declare const VSelect: {
|
|
|
46082
46450
|
density: Density;
|
|
46083
46451
|
slim: boolean;
|
|
46084
46452
|
valueComparator: typeof deepEqual;
|
|
46453
|
+
activatable: boolean;
|
|
46454
|
+
selectable: boolean;
|
|
46085
46455
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
46086
46456
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
46087
46457
|
lines: false | "one" | "two" | "three";
|
|
@@ -46095,6 +46465,7 @@ declare const VSelect: {
|
|
|
46095
46465
|
maxWidth?: string | number | undefined;
|
|
46096
46466
|
minHeight?: string | number | undefined;
|
|
46097
46467
|
minWidth?: string | number | undefined;
|
|
46468
|
+
activated?: readonly unknown[] | undefined;
|
|
46098
46469
|
class?: any;
|
|
46099
46470
|
elevation?: string | number | undefined;
|
|
46100
46471
|
theme?: string | undefined;
|
|
@@ -46102,9 +46473,11 @@ declare const VSelect: {
|
|
|
46102
46473
|
bgColor?: string | undefined;
|
|
46103
46474
|
baseColor?: string | undefined;
|
|
46104
46475
|
activeClass?: string | undefined;
|
|
46476
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
46105
46477
|
activeColor?: string | undefined;
|
|
46106
46478
|
collapseIcon?: string | undefined;
|
|
46107
46479
|
expandIcon?: string | undefined;
|
|
46480
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
46108
46481
|
"onClick:open"?: ((value: {
|
|
46109
46482
|
id: unknown;
|
|
46110
46483
|
value: boolean;
|
|
@@ -46115,6 +46488,11 @@ declare const VSelect: {
|
|
|
46115
46488
|
value: boolean;
|
|
46116
46489
|
path: unknown[];
|
|
46117
46490
|
}) => any) | undefined;
|
|
46491
|
+
"onClick:activate"?: ((value: {
|
|
46492
|
+
id: unknown;
|
|
46493
|
+
value: boolean;
|
|
46494
|
+
path: unknown[];
|
|
46495
|
+
}) => any) | undefined;
|
|
46118
46496
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
46119
46497
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
46120
46498
|
nav: boolean;
|
|
@@ -46126,6 +46504,8 @@ declare const VSelect: {
|
|
|
46126
46504
|
density: Density;
|
|
46127
46505
|
slim: boolean;
|
|
46128
46506
|
valueComparator: typeof deepEqual;
|
|
46507
|
+
activatable: boolean;
|
|
46508
|
+
selectable: boolean;
|
|
46129
46509
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
46130
46510
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
46131
46511
|
lines: false | "one" | "two" | "three";
|
|
@@ -46140,6 +46520,7 @@ declare const VSelect: {
|
|
|
46140
46520
|
maxWidth?: string | number | undefined;
|
|
46141
46521
|
minHeight?: string | number | undefined;
|
|
46142
46522
|
minWidth?: string | number | undefined;
|
|
46523
|
+
activated?: readonly unknown[] | undefined;
|
|
46143
46524
|
class?: any;
|
|
46144
46525
|
elevation?: string | number | undefined;
|
|
46145
46526
|
theme?: string | undefined;
|
|
@@ -46147,10 +46528,12 @@ declare const VSelect: {
|
|
|
46147
46528
|
bgColor?: string | undefined;
|
|
46148
46529
|
baseColor?: string | undefined;
|
|
46149
46530
|
activeClass?: string | undefined;
|
|
46531
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
46150
46532
|
activeColor?: string | undefined;
|
|
46151
46533
|
collapseIcon?: string | undefined;
|
|
46152
46534
|
expandIcon?: string | undefined;
|
|
46153
46535
|
} & {
|
|
46536
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
46154
46537
|
"onClick:open"?: ((value: {
|
|
46155
46538
|
id: unknown;
|
|
46156
46539
|
value: boolean;
|
|
@@ -46161,7 +46544,12 @@ declare const VSelect: {
|
|
|
46161
46544
|
value: boolean;
|
|
46162
46545
|
path: unknown[];
|
|
46163
46546
|
}) => any) | undefined;
|
|
46164
|
-
|
|
46547
|
+
"onClick:activate"?: ((value: {
|
|
46548
|
+
id: unknown;
|
|
46549
|
+
value: boolean;
|
|
46550
|
+
path: unknown[];
|
|
46551
|
+
}) => any) | undefined;
|
|
46552
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "activatable" | "selectable" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
46165
46553
|
items?: readonly any[] | undefined;
|
|
46166
46554
|
itemTitle?: SelectItemKey<any>;
|
|
46167
46555
|
itemValue?: SelectItemKey<any>;
|
|
@@ -46607,6 +46995,8 @@ declare const VSelect: {
|
|
|
46607
46995
|
density: Density;
|
|
46608
46996
|
slim: boolean;
|
|
46609
46997
|
valueComparator: typeof deepEqual;
|
|
46998
|
+
activatable: boolean;
|
|
46999
|
+
selectable: boolean;
|
|
46610
47000
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
46611
47001
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
46612
47002
|
lines: false | "one" | "two" | "three";
|
|
@@ -46623,6 +47013,8 @@ declare const VSelect: {
|
|
|
46623
47013
|
density: Density;
|
|
46624
47014
|
slim: boolean;
|
|
46625
47015
|
valueComparator: typeof deepEqual;
|
|
47016
|
+
activatable: boolean;
|
|
47017
|
+
selectable: boolean;
|
|
46626
47018
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
46627
47019
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
46628
47020
|
lines: false | "one" | "two" | "three";
|
|
@@ -46636,6 +47028,7 @@ declare const VSelect: {
|
|
|
46636
47028
|
maxWidth?: string | number | undefined;
|
|
46637
47029
|
minHeight?: string | number | undefined;
|
|
46638
47030
|
minWidth?: string | number | undefined;
|
|
47031
|
+
activated?: readonly unknown[] | undefined;
|
|
46639
47032
|
class?: any;
|
|
46640
47033
|
elevation?: string | number | undefined;
|
|
46641
47034
|
theme?: string | undefined;
|
|
@@ -46643,9 +47036,11 @@ declare const VSelect: {
|
|
|
46643
47036
|
bgColor?: string | undefined;
|
|
46644
47037
|
baseColor?: string | undefined;
|
|
46645
47038
|
activeClass?: string | undefined;
|
|
47039
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
46646
47040
|
activeColor?: string | undefined;
|
|
46647
47041
|
collapseIcon?: string | undefined;
|
|
46648
47042
|
expandIcon?: string | undefined;
|
|
47043
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
46649
47044
|
"onClick:open"?: ((value: {
|
|
46650
47045
|
id: unknown;
|
|
46651
47046
|
value: boolean;
|
|
@@ -46656,6 +47051,11 @@ declare const VSelect: {
|
|
|
46656
47051
|
value: boolean;
|
|
46657
47052
|
path: unknown[];
|
|
46658
47053
|
}) => any) | undefined;
|
|
47054
|
+
"onClick:activate"?: ((value: {
|
|
47055
|
+
id: unknown;
|
|
47056
|
+
value: boolean;
|
|
47057
|
+
path: unknown[];
|
|
47058
|
+
}) => any) | undefined;
|
|
46659
47059
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
46660
47060
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
46661
47061
|
nav: boolean;
|
|
@@ -46667,6 +47067,8 @@ declare const VSelect: {
|
|
|
46667
47067
|
density: Density;
|
|
46668
47068
|
slim: boolean;
|
|
46669
47069
|
valueComparator: typeof deepEqual;
|
|
47070
|
+
activatable: boolean;
|
|
47071
|
+
selectable: boolean;
|
|
46670
47072
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
46671
47073
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
46672
47074
|
lines: false | "one" | "two" | "three";
|
|
@@ -46681,6 +47083,7 @@ declare const VSelect: {
|
|
|
46681
47083
|
maxWidth?: string | number | undefined;
|
|
46682
47084
|
minHeight?: string | number | undefined;
|
|
46683
47085
|
minWidth?: string | number | undefined;
|
|
47086
|
+
activated?: readonly unknown[] | undefined;
|
|
46684
47087
|
class?: any;
|
|
46685
47088
|
elevation?: string | number | undefined;
|
|
46686
47089
|
theme?: string | undefined;
|
|
@@ -46688,10 +47091,12 @@ declare const VSelect: {
|
|
|
46688
47091
|
bgColor?: string | undefined;
|
|
46689
47092
|
baseColor?: string | undefined;
|
|
46690
47093
|
activeClass?: string | undefined;
|
|
47094
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
46691
47095
|
activeColor?: string | undefined;
|
|
46692
47096
|
collapseIcon?: string | undefined;
|
|
46693
47097
|
expandIcon?: string | undefined;
|
|
46694
47098
|
} & {
|
|
47099
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
46695
47100
|
"onClick:open"?: ((value: {
|
|
46696
47101
|
id: unknown;
|
|
46697
47102
|
value: boolean;
|
|
@@ -46702,7 +47107,12 @@ declare const VSelect: {
|
|
|
46702
47107
|
value: boolean;
|
|
46703
47108
|
path: unknown[];
|
|
46704
47109
|
}) => any) | undefined;
|
|
46705
|
-
|
|
47110
|
+
"onClick:activate"?: ((value: {
|
|
47111
|
+
id: unknown;
|
|
47112
|
+
value: boolean;
|
|
47113
|
+
path: unknown[];
|
|
47114
|
+
}) => any) | undefined;
|
|
47115
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "activatable" | "selectable" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
46706
47116
|
items?: readonly any[] | undefined;
|
|
46707
47117
|
itemTitle?: SelectItemKey<any>;
|
|
46708
47118
|
itemValue?: SelectItemKey<any>;
|
|
@@ -47259,6 +47669,8 @@ declare const VSelect: {
|
|
|
47259
47669
|
density: Density;
|
|
47260
47670
|
slim: boolean;
|
|
47261
47671
|
valueComparator: typeof deepEqual;
|
|
47672
|
+
activatable: boolean;
|
|
47673
|
+
selectable: boolean;
|
|
47262
47674
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
47263
47675
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
47264
47676
|
lines: false | "one" | "two" | "three";
|
|
@@ -47275,6 +47687,8 @@ declare const VSelect: {
|
|
|
47275
47687
|
density: Density;
|
|
47276
47688
|
slim: boolean;
|
|
47277
47689
|
valueComparator: typeof deepEqual;
|
|
47690
|
+
activatable: boolean;
|
|
47691
|
+
selectable: boolean;
|
|
47278
47692
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
47279
47693
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
47280
47694
|
lines: false | "one" | "two" | "three";
|
|
@@ -47288,6 +47702,7 @@ declare const VSelect: {
|
|
|
47288
47702
|
maxWidth?: string | number | undefined;
|
|
47289
47703
|
minHeight?: string | number | undefined;
|
|
47290
47704
|
minWidth?: string | number | undefined;
|
|
47705
|
+
activated?: readonly unknown[] | undefined;
|
|
47291
47706
|
class?: any;
|
|
47292
47707
|
elevation?: string | number | undefined;
|
|
47293
47708
|
theme?: string | undefined;
|
|
@@ -47295,9 +47710,11 @@ declare const VSelect: {
|
|
|
47295
47710
|
bgColor?: string | undefined;
|
|
47296
47711
|
baseColor?: string | undefined;
|
|
47297
47712
|
activeClass?: string | undefined;
|
|
47713
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
47298
47714
|
activeColor?: string | undefined;
|
|
47299
47715
|
collapseIcon?: string | undefined;
|
|
47300
47716
|
expandIcon?: string | undefined;
|
|
47717
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
47301
47718
|
"onClick:open"?: ((value: {
|
|
47302
47719
|
id: unknown;
|
|
47303
47720
|
value: boolean;
|
|
@@ -47308,6 +47725,11 @@ declare const VSelect: {
|
|
|
47308
47725
|
value: boolean;
|
|
47309
47726
|
path: unknown[];
|
|
47310
47727
|
}) => any) | undefined;
|
|
47728
|
+
"onClick:activate"?: ((value: {
|
|
47729
|
+
id: unknown;
|
|
47730
|
+
value: boolean;
|
|
47731
|
+
path: unknown[];
|
|
47732
|
+
}) => any) | undefined;
|
|
47311
47733
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
47312
47734
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
47313
47735
|
nav: boolean;
|
|
@@ -47319,6 +47741,8 @@ declare const VSelect: {
|
|
|
47319
47741
|
density: Density;
|
|
47320
47742
|
slim: boolean;
|
|
47321
47743
|
valueComparator: typeof deepEqual;
|
|
47744
|
+
activatable: boolean;
|
|
47745
|
+
selectable: boolean;
|
|
47322
47746
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
47323
47747
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
47324
47748
|
lines: false | "one" | "two" | "three";
|
|
@@ -47333,6 +47757,7 @@ declare const VSelect: {
|
|
|
47333
47757
|
maxWidth?: string | number | undefined;
|
|
47334
47758
|
minHeight?: string | number | undefined;
|
|
47335
47759
|
minWidth?: string | number | undefined;
|
|
47760
|
+
activated?: readonly unknown[] | undefined;
|
|
47336
47761
|
class?: any;
|
|
47337
47762
|
elevation?: string | number | undefined;
|
|
47338
47763
|
theme?: string | undefined;
|
|
@@ -47340,10 +47765,12 @@ declare const VSelect: {
|
|
|
47340
47765
|
bgColor?: string | undefined;
|
|
47341
47766
|
baseColor?: string | undefined;
|
|
47342
47767
|
activeClass?: string | undefined;
|
|
47768
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
47343
47769
|
activeColor?: string | undefined;
|
|
47344
47770
|
collapseIcon?: string | undefined;
|
|
47345
47771
|
expandIcon?: string | undefined;
|
|
47346
47772
|
} & {
|
|
47773
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
47347
47774
|
"onClick:open"?: ((value: {
|
|
47348
47775
|
id: unknown;
|
|
47349
47776
|
value: boolean;
|
|
@@ -47354,7 +47781,12 @@ declare const VSelect: {
|
|
|
47354
47781
|
value: boolean;
|
|
47355
47782
|
path: unknown[];
|
|
47356
47783
|
}) => any) | undefined;
|
|
47357
|
-
|
|
47784
|
+
"onClick:activate"?: ((value: {
|
|
47785
|
+
id: unknown;
|
|
47786
|
+
value: boolean;
|
|
47787
|
+
path: unknown[];
|
|
47788
|
+
}) => any) | undefined;
|
|
47789
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "activatable" | "selectable" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
47358
47790
|
items?: readonly any[] | undefined;
|
|
47359
47791
|
itemTitle?: SelectItemKey<any>;
|
|
47360
47792
|
itemValue?: SelectItemKey<any>;
|
|
@@ -47848,6 +48280,8 @@ declare const VSelect: {
|
|
|
47848
48280
|
density: Density;
|
|
47849
48281
|
slim: boolean;
|
|
47850
48282
|
valueComparator: typeof deepEqual;
|
|
48283
|
+
activatable: boolean;
|
|
48284
|
+
selectable: boolean;
|
|
47851
48285
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
47852
48286
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
47853
48287
|
lines: false | "one" | "two" | "three";
|
|
@@ -47864,6 +48298,8 @@ declare const VSelect: {
|
|
|
47864
48298
|
density: Density;
|
|
47865
48299
|
slim: boolean;
|
|
47866
48300
|
valueComparator: typeof deepEqual;
|
|
48301
|
+
activatable: boolean;
|
|
48302
|
+
selectable: boolean;
|
|
47867
48303
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
47868
48304
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
47869
48305
|
lines: false | "one" | "two" | "three";
|
|
@@ -47877,6 +48313,7 @@ declare const VSelect: {
|
|
|
47877
48313
|
maxWidth?: string | number | undefined;
|
|
47878
48314
|
minHeight?: string | number | undefined;
|
|
47879
48315
|
minWidth?: string | number | undefined;
|
|
48316
|
+
activated?: readonly unknown[] | undefined;
|
|
47880
48317
|
class?: any;
|
|
47881
48318
|
elevation?: string | number | undefined;
|
|
47882
48319
|
theme?: string | undefined;
|
|
@@ -47884,9 +48321,11 @@ declare const VSelect: {
|
|
|
47884
48321
|
bgColor?: string | undefined;
|
|
47885
48322
|
baseColor?: string | undefined;
|
|
47886
48323
|
activeClass?: string | undefined;
|
|
48324
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
47887
48325
|
activeColor?: string | undefined;
|
|
47888
48326
|
collapseIcon?: string | undefined;
|
|
47889
48327
|
expandIcon?: string | undefined;
|
|
48328
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
47890
48329
|
"onClick:open"?: ((value: {
|
|
47891
48330
|
id: unknown;
|
|
47892
48331
|
value: boolean;
|
|
@@ -47897,6 +48336,11 @@ declare const VSelect: {
|
|
|
47897
48336
|
value: boolean;
|
|
47898
48337
|
path: unknown[];
|
|
47899
48338
|
}) => any) | undefined;
|
|
48339
|
+
"onClick:activate"?: ((value: {
|
|
48340
|
+
id: unknown;
|
|
48341
|
+
value: boolean;
|
|
48342
|
+
path: unknown[];
|
|
48343
|
+
}) => any) | undefined;
|
|
47900
48344
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
47901
48345
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
47902
48346
|
nav: boolean;
|
|
@@ -47908,6 +48352,8 @@ declare const VSelect: {
|
|
|
47908
48352
|
density: Density;
|
|
47909
48353
|
slim: boolean;
|
|
47910
48354
|
valueComparator: typeof deepEqual;
|
|
48355
|
+
activatable: boolean;
|
|
48356
|
+
selectable: boolean;
|
|
47911
48357
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
47912
48358
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
47913
48359
|
lines: false | "one" | "two" | "three";
|
|
@@ -47922,6 +48368,7 @@ declare const VSelect: {
|
|
|
47922
48368
|
maxWidth?: string | number | undefined;
|
|
47923
48369
|
minHeight?: string | number | undefined;
|
|
47924
48370
|
minWidth?: string | number | undefined;
|
|
48371
|
+
activated?: readonly unknown[] | undefined;
|
|
47925
48372
|
class?: any;
|
|
47926
48373
|
elevation?: string | number | undefined;
|
|
47927
48374
|
theme?: string | undefined;
|
|
@@ -47929,10 +48376,12 @@ declare const VSelect: {
|
|
|
47929
48376
|
bgColor?: string | undefined;
|
|
47930
48377
|
baseColor?: string | undefined;
|
|
47931
48378
|
activeClass?: string | undefined;
|
|
48379
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
47932
48380
|
activeColor?: string | undefined;
|
|
47933
48381
|
collapseIcon?: string | undefined;
|
|
47934
48382
|
expandIcon?: string | undefined;
|
|
47935
48383
|
} & {
|
|
48384
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
47936
48385
|
"onClick:open"?: ((value: {
|
|
47937
48386
|
id: unknown;
|
|
47938
48387
|
value: boolean;
|
|
@@ -47943,7 +48392,12 @@ declare const VSelect: {
|
|
|
47943
48392
|
value: boolean;
|
|
47944
48393
|
path: unknown[];
|
|
47945
48394
|
}) => any) | undefined;
|
|
47946
|
-
|
|
48395
|
+
"onClick:activate"?: ((value: {
|
|
48396
|
+
id: unknown;
|
|
48397
|
+
value: boolean;
|
|
48398
|
+
path: unknown[];
|
|
48399
|
+
}) => any) | undefined;
|
|
48400
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "activatable" | "selectable" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
47947
48401
|
items?: readonly any[] | undefined;
|
|
47948
48402
|
itemTitle?: SelectItemKey<any>;
|
|
47949
48403
|
itemValue?: SelectItemKey<any>;
|
|
@@ -48644,6 +49098,8 @@ declare const VSelect: {
|
|
|
48644
49098
|
density: Density;
|
|
48645
49099
|
slim: boolean;
|
|
48646
49100
|
valueComparator: typeof deepEqual;
|
|
49101
|
+
activatable: boolean;
|
|
49102
|
+
selectable: boolean;
|
|
48647
49103
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
48648
49104
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
48649
49105
|
lines: false | "one" | "two" | "three";
|
|
@@ -48660,6 +49116,8 @@ declare const VSelect: {
|
|
|
48660
49116
|
density: Density;
|
|
48661
49117
|
slim: boolean;
|
|
48662
49118
|
valueComparator: typeof deepEqual;
|
|
49119
|
+
activatable: boolean;
|
|
49120
|
+
selectable: boolean;
|
|
48663
49121
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
48664
49122
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
48665
49123
|
lines: false | "one" | "two" | "three";
|
|
@@ -48673,6 +49131,7 @@ declare const VSelect: {
|
|
|
48673
49131
|
maxWidth?: string | number | undefined;
|
|
48674
49132
|
minHeight?: string | number | undefined;
|
|
48675
49133
|
minWidth?: string | number | undefined;
|
|
49134
|
+
activated?: readonly unknown[] | undefined;
|
|
48676
49135
|
class?: any;
|
|
48677
49136
|
elevation?: string | number | undefined;
|
|
48678
49137
|
theme?: string | undefined;
|
|
@@ -48680,9 +49139,11 @@ declare const VSelect: {
|
|
|
48680
49139
|
bgColor?: string | undefined;
|
|
48681
49140
|
baseColor?: string | undefined;
|
|
48682
49141
|
activeClass?: string | undefined;
|
|
49142
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
48683
49143
|
activeColor?: string | undefined;
|
|
48684
49144
|
collapseIcon?: string | undefined;
|
|
48685
49145
|
expandIcon?: string | undefined;
|
|
49146
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
48686
49147
|
"onClick:open"?: ((value: {
|
|
48687
49148
|
id: unknown;
|
|
48688
49149
|
value: boolean;
|
|
@@ -48693,6 +49154,11 @@ declare const VSelect: {
|
|
|
48693
49154
|
value: boolean;
|
|
48694
49155
|
path: unknown[];
|
|
48695
49156
|
}) => any) | undefined;
|
|
49157
|
+
"onClick:activate"?: ((value: {
|
|
49158
|
+
id: unknown;
|
|
49159
|
+
value: boolean;
|
|
49160
|
+
path: unknown[];
|
|
49161
|
+
}) => any) | undefined;
|
|
48696
49162
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
48697
49163
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
48698
49164
|
nav: boolean;
|
|
@@ -48704,6 +49170,8 @@ declare const VSelect: {
|
|
|
48704
49170
|
density: Density;
|
|
48705
49171
|
slim: boolean;
|
|
48706
49172
|
valueComparator: typeof deepEqual;
|
|
49173
|
+
activatable: boolean;
|
|
49174
|
+
selectable: boolean;
|
|
48707
49175
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
48708
49176
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
48709
49177
|
lines: false | "one" | "two" | "three";
|
|
@@ -48718,6 +49186,7 @@ declare const VSelect: {
|
|
|
48718
49186
|
maxWidth?: string | number | undefined;
|
|
48719
49187
|
minHeight?: string | number | undefined;
|
|
48720
49188
|
minWidth?: string | number | undefined;
|
|
49189
|
+
activated?: readonly unknown[] | undefined;
|
|
48721
49190
|
class?: any;
|
|
48722
49191
|
elevation?: string | number | undefined;
|
|
48723
49192
|
theme?: string | undefined;
|
|
@@ -48725,10 +49194,12 @@ declare const VSelect: {
|
|
|
48725
49194
|
bgColor?: string | undefined;
|
|
48726
49195
|
baseColor?: string | undefined;
|
|
48727
49196
|
activeClass?: string | undefined;
|
|
49197
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
48728
49198
|
activeColor?: string | undefined;
|
|
48729
49199
|
collapseIcon?: string | undefined;
|
|
48730
49200
|
expandIcon?: string | undefined;
|
|
48731
49201
|
} & {
|
|
49202
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
48732
49203
|
"onClick:open"?: ((value: {
|
|
48733
49204
|
id: unknown;
|
|
48734
49205
|
value: boolean;
|
|
@@ -48739,7 +49210,12 @@ declare const VSelect: {
|
|
|
48739
49210
|
value: boolean;
|
|
48740
49211
|
path: unknown[];
|
|
48741
49212
|
}) => any) | undefined;
|
|
48742
|
-
|
|
49213
|
+
"onClick:activate"?: ((value: {
|
|
49214
|
+
id: unknown;
|
|
49215
|
+
value: boolean;
|
|
49216
|
+
path: unknown[];
|
|
49217
|
+
}) => any) | undefined;
|
|
49218
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "activatable" | "selectable" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
48743
49219
|
items?: readonly any[] | undefined;
|
|
48744
49220
|
itemTitle?: SelectItemKey<any>;
|
|
48745
49221
|
itemValue?: SelectItemKey<any>;
|
|
@@ -49285,6 +49761,8 @@ declare const VSelect: {
|
|
|
49285
49761
|
density: Density;
|
|
49286
49762
|
slim: boolean;
|
|
49287
49763
|
valueComparator: typeof deepEqual;
|
|
49764
|
+
activatable: boolean;
|
|
49765
|
+
selectable: boolean;
|
|
49288
49766
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
49289
49767
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
49290
49768
|
lines: false | "one" | "two" | "three";
|
|
@@ -49301,6 +49779,8 @@ declare const VSelect: {
|
|
|
49301
49779
|
density: Density;
|
|
49302
49780
|
slim: boolean;
|
|
49303
49781
|
valueComparator: typeof deepEqual;
|
|
49782
|
+
activatable: boolean;
|
|
49783
|
+
selectable: boolean;
|
|
49304
49784
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
49305
49785
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
49306
49786
|
lines: false | "one" | "two" | "three";
|
|
@@ -49314,6 +49794,7 @@ declare const VSelect: {
|
|
|
49314
49794
|
maxWidth?: string | number | undefined;
|
|
49315
49795
|
minHeight?: string | number | undefined;
|
|
49316
49796
|
minWidth?: string | number | undefined;
|
|
49797
|
+
activated?: readonly unknown[] | undefined;
|
|
49317
49798
|
class?: any;
|
|
49318
49799
|
elevation?: string | number | undefined;
|
|
49319
49800
|
theme?: string | undefined;
|
|
@@ -49321,9 +49802,11 @@ declare const VSelect: {
|
|
|
49321
49802
|
bgColor?: string | undefined;
|
|
49322
49803
|
baseColor?: string | undefined;
|
|
49323
49804
|
activeClass?: string | undefined;
|
|
49805
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
49324
49806
|
activeColor?: string | undefined;
|
|
49325
49807
|
collapseIcon?: string | undefined;
|
|
49326
49808
|
expandIcon?: string | undefined;
|
|
49809
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
49327
49810
|
"onClick:open"?: ((value: {
|
|
49328
49811
|
id: unknown;
|
|
49329
49812
|
value: boolean;
|
|
@@ -49334,6 +49817,11 @@ declare const VSelect: {
|
|
|
49334
49817
|
value: boolean;
|
|
49335
49818
|
path: unknown[];
|
|
49336
49819
|
}) => any) | undefined;
|
|
49820
|
+
"onClick:activate"?: ((value: {
|
|
49821
|
+
id: unknown;
|
|
49822
|
+
value: boolean;
|
|
49823
|
+
path: unknown[];
|
|
49824
|
+
}) => any) | undefined;
|
|
49337
49825
|
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
49338
49826
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
49339
49827
|
nav: boolean;
|
|
@@ -49345,6 +49833,8 @@ declare const VSelect: {
|
|
|
49345
49833
|
density: Density;
|
|
49346
49834
|
slim: boolean;
|
|
49347
49835
|
valueComparator: typeof deepEqual;
|
|
49836
|
+
activatable: boolean;
|
|
49837
|
+
selectable: boolean;
|
|
49348
49838
|
selectStrategy: NonNullable<SelectStrategy>;
|
|
49349
49839
|
openStrategy: NonNullable<OpenStrategyProp>;
|
|
49350
49840
|
lines: false | "one" | "two" | "three";
|
|
@@ -49359,6 +49849,7 @@ declare const VSelect: {
|
|
|
49359
49849
|
maxWidth?: string | number | undefined;
|
|
49360
49850
|
minHeight?: string | number | undefined;
|
|
49361
49851
|
minWidth?: string | number | undefined;
|
|
49852
|
+
activated?: readonly unknown[] | undefined;
|
|
49362
49853
|
class?: any;
|
|
49363
49854
|
elevation?: string | number | undefined;
|
|
49364
49855
|
theme?: string | undefined;
|
|
@@ -49366,10 +49857,12 @@ declare const VSelect: {
|
|
|
49366
49857
|
bgColor?: string | undefined;
|
|
49367
49858
|
baseColor?: string | undefined;
|
|
49368
49859
|
activeClass?: string | undefined;
|
|
49860
|
+
activeStrategy?: SelectStrategy | undefined;
|
|
49369
49861
|
activeColor?: string | undefined;
|
|
49370
49862
|
collapseIcon?: string | undefined;
|
|
49371
49863
|
expandIcon?: string | undefined;
|
|
49372
49864
|
} & {
|
|
49865
|
+
"onUpdate:activated"?: ((value: unknown[]) => any) | undefined;
|
|
49373
49866
|
"onClick:open"?: ((value: {
|
|
49374
49867
|
id: unknown;
|
|
49375
49868
|
value: boolean;
|
|
@@ -49380,7 +49873,12 @@ declare const VSelect: {
|
|
|
49380
49873
|
value: boolean;
|
|
49381
49874
|
path: unknown[];
|
|
49382
49875
|
}) => any) | undefined;
|
|
49383
|
-
|
|
49876
|
+
"onClick:activate"?: ((value: {
|
|
49877
|
+
id: unknown;
|
|
49878
|
+
value: boolean;
|
|
49879
|
+
path: unknown[];
|
|
49880
|
+
}) => any) | undefined;
|
|
49881
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "valueComparator" | "activatable" | "selectable" | "selectStrategy" | "openStrategy" | "lines" | "returnObject" | "itemType"> & {
|
|
49384
49882
|
items?: readonly any[] | undefined;
|
|
49385
49883
|
itemTitle?: SelectItemKey<any>;
|
|
49386
49884
|
itemValue?: SelectItemKey<any>;
|