@vuetify/nightly 3.8.8-master.2025-06-08 → 3.8.9-dev.2025-06-11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +39 -16
- package/dist/json/attributes.json +3215 -3091
- package/dist/json/importMap-labs.json +44 -44
- package/dist/json/importMap.json +166 -166
- package/dist/json/tags.json +32 -1
- package/dist/json/web-types.json +6040 -5654
- package/dist/vuetify-labs.cjs +397 -154
- package/dist/vuetify-labs.css +4053 -4019
- package/dist/vuetify-labs.d.ts +2604 -2064
- package/dist/vuetify-labs.esm.js +398 -155
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +397 -154
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +391 -143
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +3715 -3681
- package/dist/vuetify.d.ts +1600 -1100
- package/dist/vuetify.esm.js +392 -144
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +391 -143
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +1198 -1183
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAlert/VAlert.css +6 -1
- package/lib/components/VAlert/VAlert.d.ts +35 -0
- package/lib/components/VAlert/VAlert.js +15 -10
- package/lib/components/VAlert/VAlert.js.map +1 -1
- package/lib/components/VAlert/VAlert.sass +7 -1
- package/lib/components/VAppBar/VAppBar.d.ts +15 -3
- package/lib/components/VAppBar/VAppBarNavIcon.d.ts +20 -10
- package/lib/components/VAutocomplete/VAutocomplete.d.ts +154 -103
- package/lib/components/VAutocomplete/VAutocomplete.js +21 -3
- package/lib/components/VAutocomplete/VAutocomplete.js.map +1 -1
- package/lib/components/VBadge/VBadge.d.ts +60 -0
- package/lib/components/VBadge/VBadge.js +7 -2
- package/lib/components/VBadge/VBadge.js.map +1 -1
- package/lib/components/VBtn/VBtn.d.ts +20 -10
- package/lib/components/VBtnGroup/VBtnGroup.css +30 -7
- package/lib/components/VBtnGroup/VBtnGroup.d.ts +58 -32
- package/lib/components/VBtnGroup/VBtnGroup.js +7 -3
- package/lib/components/VBtnGroup/VBtnGroup.js.map +1 -1
- package/lib/components/VBtnGroup/VBtnGroup.sass +44 -17
- package/lib/components/VBtnToggle/VBtnToggle.d.ts +25 -0
- package/lib/components/VCard/VCard.d.ts +20 -10
- package/lib/components/VCheckbox/VCheckbox.d.ts +23 -13
- package/lib/components/VCheckbox/VCheckboxBtn.d.ts +20 -10
- package/lib/components/VChip/VChip.d.ts +20 -10
- package/lib/components/VChipGroup/VChipGroup.d.ts +10 -0
- package/lib/components/VCombobox/VCombobox.d.ts +154 -103
- package/lib/components/VCombobox/VCombobox.js +22 -3
- package/lib/components/VCombobox/VCombobox.js.map +1 -1
- package/lib/components/VDataTable/VDataTable.d.ts +60 -0
- package/lib/components/VDataTable/VDataTableHeaders.d.ts +13 -0
- package/lib/components/VDataTable/VDataTableHeaders.js +4 -2
- package/lib/components/VDataTable/VDataTableHeaders.js.map +1 -1
- package/lib/components/VDataTable/VDataTableServer.d.ts +42 -0
- package/lib/components/VDataTable/VDataTableVirtual.d.ts +42 -0
- package/lib/components/VDatePicker/VDatePicker.d.ts +10 -0
- package/lib/components/VDatePicker/VDatePickerMonth.d.ts +10 -0
- package/lib/components/VDatePicker/VDatePickerMonth.js +1 -1
- package/lib/components/VDatePicker/VDatePickerMonth.js.map +1 -1
- package/lib/components/VExpansionPanel/VExpansionPanel.d.ts +20 -10
- package/lib/components/VExpansionPanel/VExpansionPanelTitle.d.ts +20 -10
- package/lib/components/VExpansionPanel/VExpansionPanels.d.ts +20 -10
- package/lib/components/VFab/VFab.d.ts +20 -10
- package/lib/components/VField/VField.d.ts +3 -3
- package/lib/components/VFileInput/VFileInput.d.ts +15 -15
- package/lib/components/VInfiniteScroll/VInfiniteScroll.d.ts +9 -3
- package/lib/components/VInfiniteScroll/VInfiniteScroll.js +29 -0
- package/lib/components/VInfiniteScroll/VInfiniteScroll.js.map +1 -1
- package/lib/components/VInput/VInput.d.ts +4 -4
- package/lib/components/VList/VList.d.ts +13 -0
- package/lib/components/VList/VList.js +4 -1
- package/lib/components/VList/VList.js.map +1 -1
- package/lib/components/VList/VListChildren.js.map +1 -1
- package/lib/components/VList/VListItem.d.ts +23 -10
- package/lib/components/VList/VListItem.js +7 -3
- package/lib/components/VList/VListItem.js.map +1 -1
- package/lib/components/VList/list.d.ts +9 -2
- package/lib/components/VList/list.js +7 -0
- package/lib/components/VList/list.js.map +1 -1
- package/lib/components/VNumberInput/VNumberInput.d.ts +103 -89
- package/lib/components/VNumberInput/VNumberInput.js +19 -4
- package/lib/components/VNumberInput/VNumberInput.js.map +1 -1
- package/lib/components/VOtpInput/VOtpInput.js +2 -1
- package/lib/components/VOtpInput/VOtpInput.js.map +1 -1
- package/lib/components/VOverlay/VOverlay.css +1 -1
- package/lib/components/VOverlay/_variables.scss +1 -1
- package/lib/components/VRadio/VRadio.d.ts +20 -10
- package/lib/components/VRadioGroup/VRadioGroup.d.ts +23 -13
- package/lib/components/VRangeSlider/VRangeSlider.d.ts +3 -3
- package/lib/components/VSelect/VSelect.d.ts +171 -107
- package/lib/components/VSelect/VSelect.js +27 -8
- package/lib/components/VSelect/VSelect.js.map +1 -1
- package/lib/components/VSelectionControl/VSelectionControl.d.ts +20 -10
- package/lib/components/VSelectionControlGroup/VSelectionControlGroup.d.ts +28 -14
- package/lib/components/VSlideGroup/VSlideGroup.d.ts +10 -0
- package/lib/components/VSlideGroup/VSlideGroup.js +2 -1
- package/lib/components/VSlideGroup/VSlideGroup.js.map +1 -1
- package/lib/components/VSlider/VSlider.d.ts +3 -3
- package/lib/components/VSlider/VSliderThumb.d.ts +20 -10
- package/lib/components/VStepper/VStepperItem.d.ts +28 -14
- package/lib/components/VSwitch/VSwitch.d.ts +23 -13
- package/lib/components/VTable/VTable.css +6 -0
- package/lib/components/VTable/VTable.d.ts +55 -24
- package/lib/components/VTable/VTable.js +9 -2
- package/lib/components/VTable/VTable.js.map +1 -1
- package/lib/components/VTable/VTable.sass +14 -0
- package/lib/components/VTable/_variables.scss +1 -0
- package/lib/components/VTabs/VTab.d.ts +56 -28
- package/lib/components/VTabs/VTabs.d.ts +10 -0
- package/lib/components/VTextField/VTextField.d.ts +27 -27
- package/lib/components/VTextarea/VTextarea.d.ts +15 -15
- package/lib/components/VToolbar/VToolbar.d.ts +15 -3
- package/lib/components/VToolbar/VToolbar.js +6 -3
- package/lib/components/VToolbar/VToolbar.js.map +1 -1
- package/lib/composables/calendar.d.ts +6 -0
- package/lib/composables/calendar.js +2 -1
- package/lib/composables/calendar.js.map +1 -1
- package/lib/composables/date/DateAdapter.d.ts +3 -3
- package/lib/composables/date/DateAdapter.js.map +1 -1
- package/lib/composables/date/adapters/string.d.ts +54 -0
- package/lib/composables/date/adapters/string.js +153 -0
- package/lib/composables/date/adapters/string.js.map +1 -0
- package/lib/composables/date/adapters/vuetify.d.ts +1 -1
- package/lib/composables/date/adapters/vuetify.js +5 -5
- package/lib/composables/date/adapters/vuetify.js.map +1 -1
- package/lib/composables/date/date.d.ts +3 -3
- package/lib/composables/date/date.js +1 -1
- package/lib/composables/date/date.js.map +1 -1
- package/lib/composables/date/index.d.ts +1 -0
- package/lib/composables/date/index.js +1 -0
- package/lib/composables/date/index.js.map +1 -1
- package/lib/composables/filter.js +3 -0
- package/lib/composables/filter.js.map +1 -1
- package/lib/composables/iconSizes.d.ts +28 -0
- package/lib/composables/iconSizes.js +23 -0
- package/lib/composables/iconSizes.js.map +1 -0
- package/lib/composables/list-items.js +2 -2
- package/lib/composables/list-items.js.map +1 -1
- package/lib/composables/theme.d.ts +6 -1
- package/lib/composables/theme.js +94 -26
- package/lib/composables/theme.js.map +1 -1
- package/lib/composables/virtual.js +6 -1
- package/lib/composables/virtual.js.map +1 -1
- package/lib/directives/ripple/index.d.ts +2 -1
- package/lib/directives/ripple/index.js +12 -7
- package/lib/directives/ripple/index.js.map +1 -1
- package/lib/entry-bundler.d.ts +3 -3
- package/lib/entry-bundler.js +1 -1
- package/lib/entry-bundler.js.map +1 -1
- package/lib/framework.d.ts +86 -71
- package/lib/framework.js +1 -1
- package/lib/framework.js.map +1 -1
- package/lib/labs/VCalendar/VCalendar.d.ts +10 -0
- package/lib/labs/VColorInput/VColorInput.d.ts +3 -3
- package/lib/labs/VDateInput/VDateInput.d.ts +97 -87
- package/lib/labs/VFileUpload/VFileUpload.d.ts +3 -3
- package/lib/labs/VFileUpload/VFileUploadItem.d.ts +20 -10
- package/lib/labs/VIconBtn/VIconBtn.d.ts +29 -29
- package/lib/labs/VIconBtn/VIconBtn.js +7 -11
- package/lib/labs/VIconBtn/VIconBtn.js.map +1 -1
- package/lib/labs/VStepperVertical/VStepperVertical.d.ts +20 -10
- package/lib/labs/VStepperVertical/VStepperVerticalItem.d.ts +20 -10
- package/lib/labs/VTreeview/VTreeview.d.ts +13 -0
- package/lib/labs/VTreeview/VTreeviewItem.d.ts +20 -10
- package/lib/labs/entry-bundler.d.ts +3 -3
- package/lib/util/globals.d.ts +1 -0
- package/lib/util/globals.js +1 -0
- package/lib/util/globals.js.map +1 -1
- package/lib/util/helpers.d.ts +1 -1
- package/lib/util/helpers.js +0 -1
- package/lib/util/helpers.js.map +1 -1
- package/package.json +3 -1
@@ -52,6 +52,7 @@ export declare const makeVComboboxProps: <Defaults extends {
|
|
52
52
|
bgColor?: unknown;
|
53
53
|
prependIcon?: unknown;
|
54
54
|
appendIcon?: unknown;
|
55
|
+
iconColor?: unknown;
|
55
56
|
clearIcon?: unknown;
|
56
57
|
prependInnerIcon?: unknown;
|
57
58
|
'onClick:clear'?: unknown;
|
@@ -61,7 +62,6 @@ export declare const makeVComboboxProps: <Defaults extends {
|
|
61
62
|
'onClick:prependInner'?: unknown;
|
62
63
|
centerAffix?: unknown;
|
63
64
|
glow?: unknown;
|
64
|
-
iconColor?: unknown;
|
65
65
|
hideSpinButtons?: unknown;
|
66
66
|
hint?: unknown;
|
67
67
|
persistentHint?: unknown;
|
@@ -96,6 +96,7 @@ export declare const makeVComboboxProps: <Defaults extends {
|
|
96
96
|
noDataText?: unknown;
|
97
97
|
openOnClear?: unknown;
|
98
98
|
itemColor?: unknown;
|
99
|
+
noAutoScroll?: unknown;
|
99
100
|
customFilter?: unknown;
|
100
101
|
customKeyFilter?: unknown;
|
101
102
|
filterKeys?: unknown;
|
@@ -381,6 +382,10 @@ export declare const makeVComboboxProps: <Defaults extends {
|
|
381
382
|
type: PropType<unknown extends Defaults["appendIcon"] ? import("../../composables/icons.js").IconValue : import("../../composables/icons.js").IconValue | Defaults["appendIcon"]>;
|
382
383
|
default: unknown extends Defaults["appendIcon"] ? import("../../composables/icons.js").IconValue : NonNullable<import("../../composables/icons.js").IconValue> | Defaults["appendIcon"];
|
383
384
|
};
|
385
|
+
iconColor: unknown extends Defaults["iconColor"] ? (StringConstructor | BooleanConstructor)[] : {
|
386
|
+
type: PropType<unknown extends Defaults["iconColor"] ? string | boolean : string | boolean | Defaults["iconColor"]>;
|
387
|
+
default: unknown extends Defaults["iconColor"] ? string | boolean : NonNullable<string | boolean> | Defaults["iconColor"];
|
388
|
+
};
|
384
389
|
clearIcon: unknown extends Defaults["clearIcon"] ? {
|
385
390
|
type: PropType<import("../../composables/icons.js").IconValue>;
|
386
391
|
default: string;
|
@@ -429,10 +434,6 @@ export declare const makeVComboboxProps: <Defaults extends {
|
|
429
434
|
type: PropType<unknown extends Defaults["glow"] ? boolean : boolean | Defaults["glow"]>;
|
430
435
|
default: unknown extends Defaults["glow"] ? boolean : boolean | Defaults["glow"];
|
431
436
|
};
|
432
|
-
iconColor: unknown extends Defaults["iconColor"] ? (StringConstructor | BooleanConstructor)[] : {
|
433
|
-
type: PropType<unknown extends Defaults["iconColor"] ? string | boolean : string | boolean | Defaults["iconColor"]>;
|
434
|
-
default: unknown extends Defaults["iconColor"] ? string | boolean : NonNullable<string | boolean> | Defaults["iconColor"];
|
435
|
-
};
|
436
437
|
hideSpinButtons: unknown extends Defaults["hideSpinButtons"] ? BooleanConstructor : {
|
437
438
|
type: PropType<unknown extends Defaults["hideSpinButtons"] ? boolean : boolean | Defaults["hideSpinButtons"]>;
|
438
439
|
default: unknown extends Defaults["hideSpinButtons"] ? boolean : boolean | Defaults["hideSpinButtons"];
|
@@ -616,6 +617,7 @@ export declare const makeVComboboxProps: <Defaults extends {
|
|
616
617
|
rounded: string | number | boolean;
|
617
618
|
tile: boolean;
|
618
619
|
slim: boolean;
|
620
|
+
filterable: boolean;
|
619
621
|
activatable: boolean;
|
620
622
|
selectable: boolean;
|
621
623
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
@@ -633,6 +635,7 @@ export declare const makeVComboboxProps: <Defaults extends {
|
|
633
635
|
density: import("../../composables/density.js").Density;
|
634
636
|
tile: boolean;
|
635
637
|
slim: boolean;
|
638
|
+
filterable: boolean;
|
636
639
|
activatable: boolean;
|
637
640
|
selectable: boolean;
|
638
641
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
@@ -664,7 +667,7 @@ export declare const makeVComboboxProps: <Defaults extends {
|
|
664
667
|
value: boolean;
|
665
668
|
path: unknown[];
|
666
669
|
}) => any) | undefined;
|
667
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
|
670
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "filterable" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
|
668
671
|
items?: readonly any[] | undefined;
|
669
672
|
itemTitle?: SelectItemKey<any>;
|
670
673
|
itemValue?: SelectItemKey<any>;
|
@@ -779,6 +782,7 @@ export declare const makeVComboboxProps: <Defaults extends {
|
|
779
782
|
rounded: string | number | boolean;
|
780
783
|
tile: boolean;
|
781
784
|
slim: boolean;
|
785
|
+
filterable: boolean;
|
782
786
|
activatable: boolean;
|
783
787
|
selectable: boolean;
|
784
788
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
@@ -796,6 +800,7 @@ export declare const makeVComboboxProps: <Defaults extends {
|
|
796
800
|
density: import("../../composables/density.js").Density;
|
797
801
|
tile: boolean;
|
798
802
|
slim: boolean;
|
803
|
+
filterable: boolean;
|
799
804
|
activatable: boolean;
|
800
805
|
selectable: boolean;
|
801
806
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
@@ -827,7 +832,7 @@ export declare const makeVComboboxProps: <Defaults extends {
|
|
827
832
|
value: boolean;
|
828
833
|
path: unknown[];
|
829
834
|
}) => any) | undefined;
|
830
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
|
835
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "filterable" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
|
831
836
|
items?: readonly any[] | undefined;
|
832
837
|
itemTitle?: SelectItemKey<any>;
|
833
838
|
itemValue?: SelectItemKey<any>;
|
@@ -943,6 +948,7 @@ export declare const makeVComboboxProps: <Defaults extends {
|
|
943
948
|
rounded: string | number | boolean;
|
944
949
|
tile: boolean;
|
945
950
|
slim: boolean;
|
951
|
+
filterable: boolean;
|
946
952
|
activatable: boolean;
|
947
953
|
selectable: boolean;
|
948
954
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
@@ -960,6 +966,7 @@ export declare const makeVComboboxProps: <Defaults extends {
|
|
960
966
|
density: import("../../composables/density.js").Density;
|
961
967
|
tile: boolean;
|
962
968
|
slim: boolean;
|
969
|
+
filterable: boolean;
|
963
970
|
activatable: boolean;
|
964
971
|
selectable: boolean;
|
965
972
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
@@ -991,7 +998,7 @@ export declare const makeVComboboxProps: <Defaults extends {
|
|
991
998
|
value: boolean;
|
992
999
|
path: unknown[];
|
993
1000
|
}) => any) | undefined;
|
994
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
|
1001
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "filterable" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
|
995
1002
|
items?: readonly any[] | undefined;
|
996
1003
|
itemTitle?: SelectItemKey<any>;
|
997
1004
|
itemValue?: SelectItemKey<any>;
|
@@ -1106,6 +1113,7 @@ export declare const makeVComboboxProps: <Defaults extends {
|
|
1106
1113
|
rounded: string | number | boolean;
|
1107
1114
|
tile: boolean;
|
1108
1115
|
slim: boolean;
|
1116
|
+
filterable: boolean;
|
1109
1117
|
activatable: boolean;
|
1110
1118
|
selectable: boolean;
|
1111
1119
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
@@ -1123,6 +1131,7 @@ export declare const makeVComboboxProps: <Defaults extends {
|
|
1123
1131
|
density: import("../../composables/density.js").Density;
|
1124
1132
|
tile: boolean;
|
1125
1133
|
slim: boolean;
|
1134
|
+
filterable: boolean;
|
1126
1135
|
activatable: boolean;
|
1127
1136
|
selectable: boolean;
|
1128
1137
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
@@ -1154,7 +1163,7 @@ export declare const makeVComboboxProps: <Defaults extends {
|
|
1154
1163
|
value: boolean;
|
1155
1164
|
path: unknown[];
|
1156
1165
|
}) => any) | undefined;
|
1157
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
|
1166
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "filterable" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
|
1158
1167
|
items?: readonly any[] | undefined;
|
1159
1168
|
itemTitle?: SelectItemKey<any>;
|
1160
1169
|
itemValue?: SelectItemKey<any>;
|
@@ -2137,6 +2146,10 @@ export declare const makeVComboboxProps: <Defaults extends {
|
|
2137
2146
|
type: PropType<unknown extends Defaults["itemColor"] ? string : string | Defaults["itemColor"]>;
|
2138
2147
|
default: unknown extends Defaults["itemColor"] ? string : string | Defaults["itemColor"];
|
2139
2148
|
};
|
2149
|
+
noAutoScroll: unknown extends Defaults["noAutoScroll"] ? BooleanConstructor : {
|
2150
|
+
type: PropType<unknown extends Defaults["noAutoScroll"] ? boolean : boolean | Defaults["noAutoScroll"]>;
|
2151
|
+
default: unknown extends Defaults["noAutoScroll"] ? boolean : boolean | Defaults["noAutoScroll"];
|
2152
|
+
};
|
2140
2153
|
customFilter: unknown extends Defaults["customFilter"] ? PropType<import("../../composables/filter.js").FilterFunction> : {
|
2141
2154
|
type: PropType<unknown extends Defaults["customFilter"] ? import("../../composables/filter.js").FilterFunction : import("../../composables/filter.js").FilterFunction | Defaults["customFilter"]>;
|
2142
2155
|
default: unknown extends Defaults["customFilter"] ? import("../../composables/filter.js").FilterFunction : import("../../composables/filter.js").FilterFunction | Defaults["customFilter"];
|
@@ -2241,6 +2254,7 @@ export declare const VCombobox: {
|
|
2241
2254
|
hideSelected: boolean;
|
2242
2255
|
menuIcon: import("../../composables/icons.js").IconValue;
|
2243
2256
|
openOnClear: boolean;
|
2257
|
+
noAutoScroll: boolean;
|
2244
2258
|
clearOnSelect: boolean;
|
2245
2259
|
} & {
|
2246
2260
|
name?: string | undefined;
|
@@ -2267,6 +2281,7 @@ export declare const VCombobox: {
|
|
2267
2281
|
bgColor?: string | undefined;
|
2268
2282
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2269
2283
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2284
|
+
iconColor?: string | boolean | undefined;
|
2270
2285
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2271
2286
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
2272
2287
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -2274,7 +2289,6 @@ export declare const VCombobox: {
|
|
2274
2289
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2275
2290
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2276
2291
|
centerAffix?: boolean | undefined;
|
2277
|
-
iconColor?: string | boolean | undefined;
|
2278
2292
|
hint?: string | undefined;
|
2279
2293
|
hideDetails?: boolean | "auto" | undefined;
|
2280
2294
|
suffix?: string | undefined;
|
@@ -2294,6 +2308,7 @@ export declare const VCombobox: {
|
|
2294
2308
|
rounded: string | number | boolean;
|
2295
2309
|
tile: boolean;
|
2296
2310
|
slim: boolean;
|
2311
|
+
filterable: boolean;
|
2297
2312
|
activatable: boolean;
|
2298
2313
|
selectable: boolean;
|
2299
2314
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
@@ -2311,6 +2326,7 @@ export declare const VCombobox: {
|
|
2311
2326
|
density: import("../../composables/density.js").Density;
|
2312
2327
|
tile: boolean;
|
2313
2328
|
slim: boolean;
|
2329
|
+
filterable: boolean;
|
2314
2330
|
activatable: boolean;
|
2315
2331
|
selectable: boolean;
|
2316
2332
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
@@ -2342,7 +2358,7 @@ export declare const VCombobox: {
|
|
2342
2358
|
value: boolean;
|
2343
2359
|
path: unknown[];
|
2344
2360
|
}) => any) | undefined;
|
2345
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
|
2361
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "filterable" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
|
2346
2362
|
items?: readonly any[] | undefined;
|
2347
2363
|
itemTitle?: SelectItemKey<any>;
|
2348
2364
|
itemValue?: SelectItemKey<any>;
|
@@ -2754,6 +2770,7 @@ export declare const VCombobox: {
|
|
2754
2770
|
bgColor?: string | undefined;
|
2755
2771
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2756
2772
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2773
|
+
iconColor?: string | boolean | undefined;
|
2757
2774
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2758
2775
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2759
2776
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -2762,7 +2779,6 @@ export declare const VCombobox: {
|
|
2762
2779
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2763
2780
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2764
2781
|
centerAffix?: boolean | undefined;
|
2765
|
-
iconColor?: string | boolean | undefined;
|
2766
2782
|
hint?: string | undefined;
|
2767
2783
|
hideDetails?: boolean | "auto" | undefined;
|
2768
2784
|
suffix?: string | undefined;
|
@@ -2906,6 +2922,7 @@ export declare const VCombobox: {
|
|
2906
2922
|
bgColor?: string | undefined;
|
2907
2923
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2908
2924
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2925
|
+
iconColor?: string | boolean | undefined;
|
2909
2926
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2910
2927
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2911
2928
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -2914,7 +2931,6 @@ export declare const VCombobox: {
|
|
2914
2931
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2915
2932
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2916
2933
|
centerAffix?: boolean | undefined;
|
2917
|
-
iconColor?: string | boolean | undefined;
|
2918
2934
|
hint?: string | undefined;
|
2919
2935
|
hideDetails?: boolean | "auto" | undefined;
|
2920
2936
|
suffix?: string | undefined;
|
@@ -3029,9 +3045,9 @@ export declare const VCombobox: {
|
|
3029
3045
|
baseColor?: string | undefined;
|
3030
3046
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3031
3047
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3048
|
+
iconColor?: string | boolean | undefined;
|
3032
3049
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
3033
3050
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
3034
|
-
iconColor?: string | boolean | undefined;
|
3035
3051
|
hint?: string | undefined;
|
3036
3052
|
hideDetails?: boolean | "auto" | undefined;
|
3037
3053
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -3085,9 +3101,9 @@ export declare const VCombobox: {
|
|
3085
3101
|
baseColor?: string | undefined;
|
3086
3102
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3087
3103
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3104
|
+
iconColor?: string | boolean | undefined;
|
3088
3105
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
3089
3106
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
3090
|
-
iconColor?: string | boolean | undefined;
|
3091
3107
|
hint?: string | undefined;
|
3092
3108
|
hideDetails?: boolean | "auto" | undefined;
|
3093
3109
|
} & {}, {
|
@@ -3188,9 +3204,9 @@ export declare const VCombobox: {
|
|
3188
3204
|
baseColor?: string | undefined;
|
3189
3205
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3190
3206
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3207
|
+
iconColor?: string | boolean | undefined;
|
3191
3208
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
3192
3209
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
3193
|
-
iconColor?: string | boolean | undefined;
|
3194
3210
|
hint?: string | undefined;
|
3195
3211
|
hideDetails?: boolean | "auto" | undefined;
|
3196
3212
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -3202,7 +3218,7 @@ export declare const VCombobox: {
|
|
3202
3218
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
3203
3219
|
modelValue?: unknown;
|
3204
3220
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
3205
|
-
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "
|
3221
|
+
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "iconColor" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
3206
3222
|
$: import("vue").ComponentInternalInstance;
|
3207
3223
|
$data: {};
|
3208
3224
|
$props: Partial<{
|
@@ -3249,13 +3265,13 @@ export declare const VCombobox: {
|
|
3249
3265
|
rounded?: string | number | boolean | undefined;
|
3250
3266
|
baseColor?: string | undefined;
|
3251
3267
|
bgColor?: string | undefined;
|
3268
|
+
iconColor?: string | boolean | undefined;
|
3252
3269
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3253
3270
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3254
3271
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
3255
3272
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3256
3273
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3257
3274
|
centerAffix?: boolean | undefined;
|
3258
|
-
iconColor?: string | boolean | undefined;
|
3259
3275
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
3260
3276
|
$attrs: {
|
3261
3277
|
[x: string]: unknown;
|
@@ -3308,13 +3324,13 @@ export declare const VCombobox: {
|
|
3308
3324
|
rounded?: string | number | boolean | undefined;
|
3309
3325
|
baseColor?: string | undefined;
|
3310
3326
|
bgColor?: string | undefined;
|
3327
|
+
iconColor?: string | boolean | undefined;
|
3311
3328
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3312
3329
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3313
3330
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
3314
3331
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3315
3332
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3316
3333
|
centerAffix?: boolean | undefined;
|
3317
|
-
iconColor?: string | boolean | undefined;
|
3318
3334
|
} & {
|
3319
3335
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
3320
3336
|
}, {
|
@@ -3418,13 +3434,13 @@ export declare const VCombobox: {
|
|
3418
3434
|
rounded?: string | number | boolean | undefined;
|
3419
3435
|
baseColor?: string | undefined;
|
3420
3436
|
bgColor?: string | undefined;
|
3437
|
+
iconColor?: string | boolean | undefined;
|
3421
3438
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3422
3439
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3423
3440
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
3424
3441
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3425
3442
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3426
3443
|
centerAffix?: boolean | undefined;
|
3427
|
-
iconColor?: string | boolean | undefined;
|
3428
3444
|
} & {
|
3429
3445
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
3430
3446
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -3433,7 +3449,7 @@ export declare const VCombobox: {
|
|
3433
3449
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
3434
3450
|
modelValue?: unknown;
|
3435
3451
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
3436
|
-
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "
|
3452
|
+
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
|
3437
3453
|
_allExposed: {
|
3438
3454
|
reset: () => Promise<void>;
|
3439
3455
|
resetValidation: () => Promise<void>;
|
@@ -3601,6 +3617,7 @@ export declare const VCombobox: {
|
|
3601
3617
|
bgColor?: string | undefined;
|
3602
3618
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3603
3619
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3620
|
+
iconColor?: string | boolean | undefined;
|
3604
3621
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3605
3622
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3606
3623
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -3609,7 +3626,6 @@ export declare const VCombobox: {
|
|
3609
3626
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3610
3627
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3611
3628
|
centerAffix?: boolean | undefined;
|
3612
|
-
iconColor?: string | boolean | undefined;
|
3613
3629
|
hint?: string | undefined;
|
3614
3630
|
hideDetails?: boolean | "auto" | undefined;
|
3615
3631
|
suffix?: string | undefined;
|
@@ -3724,9 +3740,9 @@ export declare const VCombobox: {
|
|
3724
3740
|
baseColor?: string | undefined;
|
3725
3741
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3726
3742
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3743
|
+
iconColor?: string | boolean | undefined;
|
3727
3744
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
3728
3745
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
3729
|
-
iconColor?: string | boolean | undefined;
|
3730
3746
|
hint?: string | undefined;
|
3731
3747
|
hideDetails?: boolean | "auto" | undefined;
|
3732
3748
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -3780,9 +3796,9 @@ export declare const VCombobox: {
|
|
3780
3796
|
baseColor?: string | undefined;
|
3781
3797
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3782
3798
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3799
|
+
iconColor?: string | boolean | undefined;
|
3783
3800
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
3784
3801
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
3785
|
-
iconColor?: string | boolean | undefined;
|
3786
3802
|
hint?: string | undefined;
|
3787
3803
|
hideDetails?: boolean | "auto" | undefined;
|
3788
3804
|
} & {}, {
|
@@ -3883,9 +3899,9 @@ export declare const VCombobox: {
|
|
3883
3899
|
baseColor?: string | undefined;
|
3884
3900
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3885
3901
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3902
|
+
iconColor?: string | boolean | undefined;
|
3886
3903
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
3887
3904
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
3888
|
-
iconColor?: string | boolean | undefined;
|
3889
3905
|
hint?: string | undefined;
|
3890
3906
|
hideDetails?: boolean | "auto" | undefined;
|
3891
3907
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -3897,7 +3913,7 @@ export declare const VCombobox: {
|
|
3897
3913
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
3898
3914
|
modelValue?: unknown;
|
3899
3915
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
3900
|
-
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "
|
3916
|
+
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "iconColor" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
3901
3917
|
$: import("vue").ComponentInternalInstance;
|
3902
3918
|
$data: {};
|
3903
3919
|
$props: Partial<{
|
@@ -3944,13 +3960,13 @@ export declare const VCombobox: {
|
|
3944
3960
|
rounded?: string | number | boolean | undefined;
|
3945
3961
|
baseColor?: string | undefined;
|
3946
3962
|
bgColor?: string | undefined;
|
3963
|
+
iconColor?: string | boolean | undefined;
|
3947
3964
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3948
3965
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3949
3966
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
3950
3967
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3951
3968
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3952
3969
|
centerAffix?: boolean | undefined;
|
3953
|
-
iconColor?: string | boolean | undefined;
|
3954
3970
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
3955
3971
|
$attrs: {
|
3956
3972
|
[x: string]: unknown;
|
@@ -4003,13 +4019,13 @@ export declare const VCombobox: {
|
|
4003
4019
|
rounded?: string | number | boolean | undefined;
|
4004
4020
|
baseColor?: string | undefined;
|
4005
4021
|
bgColor?: string | undefined;
|
4022
|
+
iconColor?: string | boolean | undefined;
|
4006
4023
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4007
4024
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4008
4025
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4009
4026
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4010
4027
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4011
4028
|
centerAffix?: boolean | undefined;
|
4012
|
-
iconColor?: string | boolean | undefined;
|
4013
4029
|
} & {
|
4014
4030
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
4015
4031
|
}, {
|
@@ -4113,13 +4129,13 @@ export declare const VCombobox: {
|
|
4113
4129
|
rounded?: string | number | boolean | undefined;
|
4114
4130
|
baseColor?: string | undefined;
|
4115
4131
|
bgColor?: string | undefined;
|
4132
|
+
iconColor?: string | boolean | undefined;
|
4116
4133
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4117
4134
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4118
4135
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4119
4136
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4120
4137
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4121
4138
|
centerAffix?: boolean | undefined;
|
4122
|
-
iconColor?: string | boolean | undefined;
|
4123
4139
|
} & {
|
4124
4140
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
4125
4141
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -4128,7 +4144,7 @@ export declare const VCombobox: {
|
|
4128
4144
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
4129
4145
|
modelValue?: unknown;
|
4130
4146
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
4131
|
-
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "
|
4147
|
+
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
|
4132
4148
|
_allExposed: {
|
4133
4149
|
reset: () => Promise<void>;
|
4134
4150
|
resetValidation: () => Promise<void>;
|
@@ -4139,7 +4155,7 @@ export declare const VCombobox: {
|
|
4139
4155
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
4140
4156
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
4141
4157
|
} | {};
|
4142
|
-
}> & {} & import("vue").ComponentCustomProperties & {}, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "loading" | "label" | "prefix" | "role" | "class" | "theme" | "placeholder" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "counter" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:append" | "onClick:prepend" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:message" | "
|
4158
|
+
}> & {} & import("vue").ComponentCustomProperties & {}, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "loading" | "label" | "prefix" | "role" | "class" | "theme" | "placeholder" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "counter" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:append" | "onClick:prepend" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "suffix" | "counterValue" | "modelModifiers" | "onClick:control" | "onMousedown:control" | ("flat" | "reverse" | "variant" | "type" | "error" | "active" | "direction" | "style" | "autofocus" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "persistentPlaceholder" | "persistentCounter") | "v-slot:counter">, `$${any}`> & {
|
4143
4159
|
_allExposed: (HTMLInputElement & Omit<Omit<{
|
4144
4160
|
$: import("vue").ComponentInternalInstance;
|
4145
4161
|
$data: {};
|
@@ -4190,9 +4206,9 @@ export declare const VCombobox: {
|
|
4190
4206
|
baseColor?: string | undefined;
|
4191
4207
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4192
4208
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4209
|
+
iconColor?: string | boolean | undefined;
|
4193
4210
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
4194
4211
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
4195
|
-
iconColor?: string | boolean | undefined;
|
4196
4212
|
hint?: string | undefined;
|
4197
4213
|
hideDetails?: boolean | "auto" | undefined;
|
4198
4214
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -4246,9 +4262,9 @@ export declare const VCombobox: {
|
|
4246
4262
|
baseColor?: string | undefined;
|
4247
4263
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4248
4264
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4265
|
+
iconColor?: string | boolean | undefined;
|
4249
4266
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
4250
4267
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
4251
|
-
iconColor?: string | boolean | undefined;
|
4252
4268
|
hint?: string | undefined;
|
4253
4269
|
hideDetails?: boolean | "auto" | undefined;
|
4254
4270
|
} & {}, {
|
@@ -4349,9 +4365,9 @@ export declare const VCombobox: {
|
|
4349
4365
|
baseColor?: string | undefined;
|
4350
4366
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4351
4367
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4368
|
+
iconColor?: string | boolean | undefined;
|
4352
4369
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
4353
4370
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
4354
|
-
iconColor?: string | boolean | undefined;
|
4355
4371
|
hint?: string | undefined;
|
4356
4372
|
hideDetails?: boolean | "auto" | undefined;
|
4357
4373
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -4363,7 +4379,7 @@ export declare const VCombobox: {
|
|
4363
4379
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
4364
4380
|
modelValue?: unknown;
|
4365
4381
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
4366
|
-
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "
|
4382
|
+
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "iconColor" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
4367
4383
|
$: import("vue").ComponentInternalInstance;
|
4368
4384
|
$data: {};
|
4369
4385
|
$props: Partial<{
|
@@ -4410,13 +4426,13 @@ export declare const VCombobox: {
|
|
4410
4426
|
rounded?: string | number | boolean | undefined;
|
4411
4427
|
baseColor?: string | undefined;
|
4412
4428
|
bgColor?: string | undefined;
|
4429
|
+
iconColor?: string | boolean | undefined;
|
4413
4430
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4414
4431
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4415
4432
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4416
4433
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4417
4434
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4418
4435
|
centerAffix?: boolean | undefined;
|
4419
|
-
iconColor?: string | boolean | undefined;
|
4420
4436
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
4421
4437
|
$attrs: {
|
4422
4438
|
[x: string]: unknown;
|
@@ -4469,13 +4485,13 @@ export declare const VCombobox: {
|
|
4469
4485
|
rounded?: string | number | boolean | undefined;
|
4470
4486
|
baseColor?: string | undefined;
|
4471
4487
|
bgColor?: string | undefined;
|
4488
|
+
iconColor?: string | boolean | undefined;
|
4472
4489
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4473
4490
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4474
4491
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4475
4492
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4476
4493
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4477
4494
|
centerAffix?: boolean | undefined;
|
4478
|
-
iconColor?: string | boolean | undefined;
|
4479
4495
|
} & {
|
4480
4496
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
4481
4497
|
}, {
|
@@ -4579,13 +4595,13 @@ export declare const VCombobox: {
|
|
4579
4595
|
rounded?: string | number | boolean | undefined;
|
4580
4596
|
baseColor?: string | undefined;
|
4581
4597
|
bgColor?: string | undefined;
|
4598
|
+
iconColor?: string | boolean | undefined;
|
4582
4599
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4583
4600
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4584
4601
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4585
4602
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4586
4603
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4587
4604
|
centerAffix?: boolean | undefined;
|
4588
|
-
iconColor?: string | boolean | undefined;
|
4589
4605
|
} & {
|
4590
4606
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
4591
4607
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -4594,7 +4610,7 @@ export declare const VCombobox: {
|
|
4594
4610
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
4595
4611
|
modelValue?: unknown;
|
4596
4612
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
4597
|
-
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "
|
4613
|
+
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
|
4598
4614
|
_allExposed: {
|
4599
4615
|
reset: () => Promise<void>;
|
4600
4616
|
resetValidation: () => Promise<void>;
|
@@ -4619,7 +4635,7 @@ export declare const VCombobox: {
|
|
4619
4635
|
'update:modelValue': (value: any) => true;
|
4620
4636
|
'update:search': (value: string) => true;
|
4621
4637
|
'update:menu': (value: boolean) => true;
|
4622
|
-
}, "multiple" | "$children" | "v-slots" | "modelValue" | "items" | "itemValue" | "returnObject" | "update:modelValue" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "v-slot:label" | "v-slot:message" | "v-slot:details" | "v-slot:item" | "itemTitle" | "itemProps" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {
|
4638
|
+
}, "multiple" | "$children" | "v-slots" | "modelValue" | "items" | "itemValue" | "returnObject" | "update:modelValue" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "v-slot:label" | "v-slot:message" | "v-slot:details" | "v-slot:item" | "v-slot:divider" | "v-slot:subheader" | "itemTitle" | "itemProps" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {
|
4623
4639
|
flat: boolean;
|
4624
4640
|
reverse: boolean;
|
4625
4641
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
@@ -4668,6 +4684,7 @@ export declare const VCombobox: {
|
|
4668
4684
|
hideSelected: boolean;
|
4669
4685
|
menuIcon: import("../../composables/icons.js").IconValue;
|
4670
4686
|
openOnClear: boolean;
|
4687
|
+
noAutoScroll: boolean;
|
4671
4688
|
clearOnSelect: boolean;
|
4672
4689
|
}, true, {}, import("vue").SlotsType<Partial<{
|
4673
4690
|
message: (arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNode[];
|
@@ -4698,6 +4715,14 @@ export declare const VCombobox: {
|
|
4698
4715
|
item: ListItem<unknown>;
|
4699
4716
|
index: number;
|
4700
4717
|
}) => import("vue").VNode[];
|
4718
|
+
subheader: (arg: {
|
4719
|
+
props: Record<string, unknown>;
|
4720
|
+
index: number;
|
4721
|
+
}) => import("vue").VNode[];
|
4722
|
+
divider: (arg: {
|
4723
|
+
props: Record<string, unknown>;
|
4724
|
+
index: number;
|
4725
|
+
}) => import("vue").VNode[];
|
4701
4726
|
'prepend-item': () => import("vue").VNode[];
|
4702
4727
|
'append-item': () => import("vue").VNode[];
|
4703
4728
|
'no-data': () => import("vue").VNode[];
|
@@ -4755,6 +4780,7 @@ export declare const VCombobox: {
|
|
4755
4780
|
hideSelected: boolean;
|
4756
4781
|
menuIcon: import("../../composables/icons.js").IconValue;
|
4757
4782
|
openOnClear: boolean;
|
4783
|
+
noAutoScroll: boolean;
|
4758
4784
|
clearOnSelect: boolean;
|
4759
4785
|
} & {
|
4760
4786
|
name?: string | undefined;
|
@@ -4781,6 +4807,7 @@ export declare const VCombobox: {
|
|
4781
4807
|
bgColor?: string | undefined;
|
4782
4808
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4783
4809
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4810
|
+
iconColor?: string | boolean | undefined;
|
4784
4811
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4785
4812
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4786
4813
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -4788,7 +4815,6 @@ export declare const VCombobox: {
|
|
4788
4815
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4789
4816
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4790
4817
|
centerAffix?: boolean | undefined;
|
4791
|
-
iconColor?: string | boolean | undefined;
|
4792
4818
|
hint?: string | undefined;
|
4793
4819
|
hideDetails?: boolean | "auto" | undefined;
|
4794
4820
|
suffix?: string | undefined;
|
@@ -4808,6 +4834,7 @@ export declare const VCombobox: {
|
|
4808
4834
|
rounded: string | number | boolean;
|
4809
4835
|
tile: boolean;
|
4810
4836
|
slim: boolean;
|
4837
|
+
filterable: boolean;
|
4811
4838
|
activatable: boolean;
|
4812
4839
|
selectable: boolean;
|
4813
4840
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
@@ -4825,6 +4852,7 @@ export declare const VCombobox: {
|
|
4825
4852
|
density: import("../../composables/density.js").Density;
|
4826
4853
|
tile: boolean;
|
4827
4854
|
slim: boolean;
|
4855
|
+
filterable: boolean;
|
4828
4856
|
activatable: boolean;
|
4829
4857
|
selectable: boolean;
|
4830
4858
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
@@ -4856,7 +4884,7 @@ export declare const VCombobox: {
|
|
4856
4884
|
value: boolean;
|
4857
4885
|
path: unknown[];
|
4858
4886
|
}) => any) | undefined;
|
4859
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
|
4887
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "filterable" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
|
4860
4888
|
items?: readonly any[] | undefined;
|
4861
4889
|
itemTitle?: SelectItemKey<any>;
|
4862
4890
|
itemValue?: SelectItemKey<any>;
|
@@ -5268,6 +5296,7 @@ export declare const VCombobox: {
|
|
5268
5296
|
bgColor?: string | undefined;
|
5269
5297
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5270
5298
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5299
|
+
iconColor?: string | boolean | undefined;
|
5271
5300
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5272
5301
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5273
5302
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -5276,7 +5305,6 @@ export declare const VCombobox: {
|
|
5276
5305
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5277
5306
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5278
5307
|
centerAffix?: boolean | undefined;
|
5279
|
-
iconColor?: string | boolean | undefined;
|
5280
5308
|
hint?: string | undefined;
|
5281
5309
|
hideDetails?: boolean | "auto" | undefined;
|
5282
5310
|
suffix?: string | undefined;
|
@@ -5420,6 +5448,7 @@ export declare const VCombobox: {
|
|
5420
5448
|
bgColor?: string | undefined;
|
5421
5449
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5422
5450
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5451
|
+
iconColor?: string | boolean | undefined;
|
5423
5452
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5424
5453
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5425
5454
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -5428,7 +5457,6 @@ export declare const VCombobox: {
|
|
5428
5457
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5429
5458
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5430
5459
|
centerAffix?: boolean | undefined;
|
5431
|
-
iconColor?: string | boolean | undefined;
|
5432
5460
|
hint?: string | undefined;
|
5433
5461
|
hideDetails?: boolean | "auto" | undefined;
|
5434
5462
|
suffix?: string | undefined;
|
@@ -5543,9 +5571,9 @@ export declare const VCombobox: {
|
|
5543
5571
|
baseColor?: string | undefined;
|
5544
5572
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5545
5573
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5574
|
+
iconColor?: string | boolean | undefined;
|
5546
5575
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
5547
5576
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
5548
|
-
iconColor?: string | boolean | undefined;
|
5549
5577
|
hint?: string | undefined;
|
5550
5578
|
hideDetails?: boolean | "auto" | undefined;
|
5551
5579
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -5599,9 +5627,9 @@ export declare const VCombobox: {
|
|
5599
5627
|
baseColor?: string | undefined;
|
5600
5628
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5601
5629
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5630
|
+
iconColor?: string | boolean | undefined;
|
5602
5631
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
5603
5632
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
5604
|
-
iconColor?: string | boolean | undefined;
|
5605
5633
|
hint?: string | undefined;
|
5606
5634
|
hideDetails?: boolean | "auto" | undefined;
|
5607
5635
|
} & {}, {
|
@@ -5702,9 +5730,9 @@ export declare const VCombobox: {
|
|
5702
5730
|
baseColor?: string | undefined;
|
5703
5731
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5704
5732
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5733
|
+
iconColor?: string | boolean | undefined;
|
5705
5734
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
5706
5735
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
5707
|
-
iconColor?: string | boolean | undefined;
|
5708
5736
|
hint?: string | undefined;
|
5709
5737
|
hideDetails?: boolean | "auto" | undefined;
|
5710
5738
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -5716,7 +5744,7 @@ export declare const VCombobox: {
|
|
5716
5744
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
5717
5745
|
modelValue?: unknown;
|
5718
5746
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
5719
|
-
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "
|
5747
|
+
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "iconColor" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
5720
5748
|
$: import("vue").ComponentInternalInstance;
|
5721
5749
|
$data: {};
|
5722
5750
|
$props: Partial<{
|
@@ -5763,13 +5791,13 @@ export declare const VCombobox: {
|
|
5763
5791
|
rounded?: string | number | boolean | undefined;
|
5764
5792
|
baseColor?: string | undefined;
|
5765
5793
|
bgColor?: string | undefined;
|
5794
|
+
iconColor?: string | boolean | undefined;
|
5766
5795
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5767
5796
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5768
5797
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
5769
5798
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5770
5799
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5771
5800
|
centerAffix?: boolean | undefined;
|
5772
|
-
iconColor?: string | boolean | undefined;
|
5773
5801
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
5774
5802
|
$attrs: {
|
5775
5803
|
[x: string]: unknown;
|
@@ -5822,13 +5850,13 @@ export declare const VCombobox: {
|
|
5822
5850
|
rounded?: string | number | boolean | undefined;
|
5823
5851
|
baseColor?: string | undefined;
|
5824
5852
|
bgColor?: string | undefined;
|
5853
|
+
iconColor?: string | boolean | undefined;
|
5825
5854
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5826
5855
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5827
5856
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
5828
5857
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5829
5858
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5830
5859
|
centerAffix?: boolean | undefined;
|
5831
|
-
iconColor?: string | boolean | undefined;
|
5832
5860
|
} & {
|
5833
5861
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
5834
5862
|
}, {
|
@@ -5932,13 +5960,13 @@ export declare const VCombobox: {
|
|
5932
5960
|
rounded?: string | number | boolean | undefined;
|
5933
5961
|
baseColor?: string | undefined;
|
5934
5962
|
bgColor?: string | undefined;
|
5963
|
+
iconColor?: string | boolean | undefined;
|
5935
5964
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5936
5965
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5937
5966
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
5938
5967
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5939
5968
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5940
5969
|
centerAffix?: boolean | undefined;
|
5941
|
-
iconColor?: string | boolean | undefined;
|
5942
5970
|
} & {
|
5943
5971
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
5944
5972
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -5947,7 +5975,7 @@ export declare const VCombobox: {
|
|
5947
5975
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
5948
5976
|
modelValue?: unknown;
|
5949
5977
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
5950
|
-
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "
|
5978
|
+
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
|
5951
5979
|
_allExposed: {
|
5952
5980
|
reset: () => Promise<void>;
|
5953
5981
|
resetValidation: () => Promise<void>;
|
@@ -6115,6 +6143,7 @@ export declare const VCombobox: {
|
|
6115
6143
|
bgColor?: string | undefined;
|
6116
6144
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6117
6145
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6146
|
+
iconColor?: string | boolean | undefined;
|
6118
6147
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6119
6148
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6120
6149
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -6123,7 +6152,6 @@ export declare const VCombobox: {
|
|
6123
6152
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6124
6153
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6125
6154
|
centerAffix?: boolean | undefined;
|
6126
|
-
iconColor?: string | boolean | undefined;
|
6127
6155
|
hint?: string | undefined;
|
6128
6156
|
hideDetails?: boolean | "auto" | undefined;
|
6129
6157
|
suffix?: string | undefined;
|
@@ -6238,9 +6266,9 @@ export declare const VCombobox: {
|
|
6238
6266
|
baseColor?: string | undefined;
|
6239
6267
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6240
6268
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6269
|
+
iconColor?: string | boolean | undefined;
|
6241
6270
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
6242
6271
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
6243
|
-
iconColor?: string | boolean | undefined;
|
6244
6272
|
hint?: string | undefined;
|
6245
6273
|
hideDetails?: boolean | "auto" | undefined;
|
6246
6274
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -6294,9 +6322,9 @@ export declare const VCombobox: {
|
|
6294
6322
|
baseColor?: string | undefined;
|
6295
6323
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6296
6324
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6325
|
+
iconColor?: string | boolean | undefined;
|
6297
6326
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
6298
6327
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
6299
|
-
iconColor?: string | boolean | undefined;
|
6300
6328
|
hint?: string | undefined;
|
6301
6329
|
hideDetails?: boolean | "auto" | undefined;
|
6302
6330
|
} & {}, {
|
@@ -6397,9 +6425,9 @@ export declare const VCombobox: {
|
|
6397
6425
|
baseColor?: string | undefined;
|
6398
6426
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6399
6427
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6428
|
+
iconColor?: string | boolean | undefined;
|
6400
6429
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
6401
6430
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
6402
|
-
iconColor?: string | boolean | undefined;
|
6403
6431
|
hint?: string | undefined;
|
6404
6432
|
hideDetails?: boolean | "auto" | undefined;
|
6405
6433
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -6411,7 +6439,7 @@ export declare const VCombobox: {
|
|
6411
6439
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
6412
6440
|
modelValue?: unknown;
|
6413
6441
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
6414
|
-
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "
|
6442
|
+
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "iconColor" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
6415
6443
|
$: import("vue").ComponentInternalInstance;
|
6416
6444
|
$data: {};
|
6417
6445
|
$props: Partial<{
|
@@ -6458,13 +6486,13 @@ export declare const VCombobox: {
|
|
6458
6486
|
rounded?: string | number | boolean | undefined;
|
6459
6487
|
baseColor?: string | undefined;
|
6460
6488
|
bgColor?: string | undefined;
|
6489
|
+
iconColor?: string | boolean | undefined;
|
6461
6490
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6462
6491
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6463
6492
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6464
6493
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6465
6494
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6466
6495
|
centerAffix?: boolean | undefined;
|
6467
|
-
iconColor?: string | boolean | undefined;
|
6468
6496
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
6469
6497
|
$attrs: {
|
6470
6498
|
[x: string]: unknown;
|
@@ -6517,13 +6545,13 @@ export declare const VCombobox: {
|
|
6517
6545
|
rounded?: string | number | boolean | undefined;
|
6518
6546
|
baseColor?: string | undefined;
|
6519
6547
|
bgColor?: string | undefined;
|
6548
|
+
iconColor?: string | boolean | undefined;
|
6520
6549
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6521
6550
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6522
6551
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6523
6552
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6524
6553
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6525
6554
|
centerAffix?: boolean | undefined;
|
6526
|
-
iconColor?: string | boolean | undefined;
|
6527
6555
|
} & {
|
6528
6556
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
6529
6557
|
}, {
|
@@ -6627,13 +6655,13 @@ export declare const VCombobox: {
|
|
6627
6655
|
rounded?: string | number | boolean | undefined;
|
6628
6656
|
baseColor?: string | undefined;
|
6629
6657
|
bgColor?: string | undefined;
|
6658
|
+
iconColor?: string | boolean | undefined;
|
6630
6659
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6631
6660
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6632
6661
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6633
6662
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6634
6663
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6635
6664
|
centerAffix?: boolean | undefined;
|
6636
|
-
iconColor?: string | boolean | undefined;
|
6637
6665
|
} & {
|
6638
6666
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
6639
6667
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -6642,7 +6670,7 @@ export declare const VCombobox: {
|
|
6642
6670
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
6643
6671
|
modelValue?: unknown;
|
6644
6672
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
6645
|
-
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "
|
6673
|
+
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
|
6646
6674
|
_allExposed: {
|
6647
6675
|
reset: () => Promise<void>;
|
6648
6676
|
resetValidation: () => Promise<void>;
|
@@ -6653,7 +6681,7 @@ export declare const VCombobox: {
|
|
6653
6681
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
6654
6682
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
6655
6683
|
} | {};
|
6656
|
-
}> & {} & import("vue").ComponentCustomProperties & {}, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "loading" | "label" | "prefix" | "role" | "class" | "theme" | "placeholder" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "counter" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:append" | "onClick:prepend" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:message" | "
|
6684
|
+
}> & {} & import("vue").ComponentCustomProperties & {}, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "loading" | "label" | "prefix" | "role" | "class" | "theme" | "placeholder" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "counter" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:append" | "onClick:prepend" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "suffix" | "counterValue" | "modelModifiers" | "onClick:control" | "onMousedown:control" | ("flat" | "reverse" | "variant" | "type" | "error" | "active" | "direction" | "style" | "autofocus" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "persistentPlaceholder" | "persistentCounter") | "v-slot:counter">, `$${any}`> & {
|
6657
6685
|
_allExposed: (HTMLInputElement & Omit<Omit<{
|
6658
6686
|
$: import("vue").ComponentInternalInstance;
|
6659
6687
|
$data: {};
|
@@ -6704,9 +6732,9 @@ export declare const VCombobox: {
|
|
6704
6732
|
baseColor?: string | undefined;
|
6705
6733
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6706
6734
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6735
|
+
iconColor?: string | boolean | undefined;
|
6707
6736
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
6708
6737
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
6709
|
-
iconColor?: string | boolean | undefined;
|
6710
6738
|
hint?: string | undefined;
|
6711
6739
|
hideDetails?: boolean | "auto" | undefined;
|
6712
6740
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -6760,9 +6788,9 @@ export declare const VCombobox: {
|
|
6760
6788
|
baseColor?: string | undefined;
|
6761
6789
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6762
6790
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6791
|
+
iconColor?: string | boolean | undefined;
|
6763
6792
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
6764
6793
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
6765
|
-
iconColor?: string | boolean | undefined;
|
6766
6794
|
hint?: string | undefined;
|
6767
6795
|
hideDetails?: boolean | "auto" | undefined;
|
6768
6796
|
} & {}, {
|
@@ -6863,9 +6891,9 @@ export declare const VCombobox: {
|
|
6863
6891
|
baseColor?: string | undefined;
|
6864
6892
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6865
6893
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6894
|
+
iconColor?: string | boolean | undefined;
|
6866
6895
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
6867
6896
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
6868
|
-
iconColor?: string | boolean | undefined;
|
6869
6897
|
hint?: string | undefined;
|
6870
6898
|
hideDetails?: boolean | "auto" | undefined;
|
6871
6899
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -6877,7 +6905,7 @@ export declare const VCombobox: {
|
|
6877
6905
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
6878
6906
|
modelValue?: unknown;
|
6879
6907
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
6880
|
-
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "
|
6908
|
+
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "iconColor" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
6881
6909
|
$: import("vue").ComponentInternalInstance;
|
6882
6910
|
$data: {};
|
6883
6911
|
$props: Partial<{
|
@@ -6924,13 +6952,13 @@ export declare const VCombobox: {
|
|
6924
6952
|
rounded?: string | number | boolean | undefined;
|
6925
6953
|
baseColor?: string | undefined;
|
6926
6954
|
bgColor?: string | undefined;
|
6955
|
+
iconColor?: string | boolean | undefined;
|
6927
6956
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6928
6957
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6929
6958
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6930
6959
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6931
6960
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6932
6961
|
centerAffix?: boolean | undefined;
|
6933
|
-
iconColor?: string | boolean | undefined;
|
6934
6962
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
6935
6963
|
$attrs: {
|
6936
6964
|
[x: string]: unknown;
|
@@ -6983,13 +7011,13 @@ export declare const VCombobox: {
|
|
6983
7011
|
rounded?: string | number | boolean | undefined;
|
6984
7012
|
baseColor?: string | undefined;
|
6985
7013
|
bgColor?: string | undefined;
|
7014
|
+
iconColor?: string | boolean | undefined;
|
6986
7015
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6987
7016
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6988
7017
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6989
7018
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6990
7019
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6991
7020
|
centerAffix?: boolean | undefined;
|
6992
|
-
iconColor?: string | boolean | undefined;
|
6993
7021
|
} & {
|
6994
7022
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
6995
7023
|
}, {
|
@@ -7093,13 +7121,13 @@ export declare const VCombobox: {
|
|
7093
7121
|
rounded?: string | number | boolean | undefined;
|
7094
7122
|
baseColor?: string | undefined;
|
7095
7123
|
bgColor?: string | undefined;
|
7124
|
+
iconColor?: string | boolean | undefined;
|
7096
7125
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7097
7126
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7098
7127
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
7099
7128
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7100
7129
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7101
7130
|
centerAffix?: boolean | undefined;
|
7102
|
-
iconColor?: string | boolean | undefined;
|
7103
7131
|
} & {
|
7104
7132
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
7105
7133
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -7108,7 +7136,7 @@ export declare const VCombobox: {
|
|
7108
7136
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
7109
7137
|
modelValue?: unknown;
|
7110
7138
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
7111
|
-
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "
|
7139
|
+
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
|
7112
7140
|
_allExposed: {
|
7113
7141
|
reset: () => Promise<void>;
|
7114
7142
|
resetValidation: () => Promise<void>;
|
@@ -7177,6 +7205,7 @@ export declare const VCombobox: {
|
|
7177
7205
|
hideSelected: boolean;
|
7178
7206
|
menuIcon: import("../../composables/icons.js").IconValue;
|
7179
7207
|
openOnClear: boolean;
|
7208
|
+
noAutoScroll: boolean;
|
7180
7209
|
clearOnSelect: boolean;
|
7181
7210
|
}>;
|
7182
7211
|
__isFragment?: never;
|
@@ -7229,6 +7258,7 @@ export declare const VCombobox: {
|
|
7229
7258
|
hideSelected: boolean;
|
7230
7259
|
menuIcon: import("../../composables/icons.js").IconValue;
|
7231
7260
|
openOnClear: boolean;
|
7261
|
+
noAutoScroll: boolean;
|
7232
7262
|
clearOnSelect: boolean;
|
7233
7263
|
} & {
|
7234
7264
|
name?: string | undefined;
|
@@ -7255,6 +7285,7 @@ export declare const VCombobox: {
|
|
7255
7285
|
bgColor?: string | undefined;
|
7256
7286
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7257
7287
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7288
|
+
iconColor?: string | boolean | undefined;
|
7258
7289
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7259
7290
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
7260
7291
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -7262,7 +7293,6 @@ export declare const VCombobox: {
|
|
7262
7293
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7263
7294
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7264
7295
|
centerAffix?: boolean | undefined;
|
7265
|
-
iconColor?: string | boolean | undefined;
|
7266
7296
|
hint?: string | undefined;
|
7267
7297
|
hideDetails?: boolean | "auto" | undefined;
|
7268
7298
|
suffix?: string | undefined;
|
@@ -7282,6 +7312,7 @@ export declare const VCombobox: {
|
|
7282
7312
|
rounded: string | number | boolean;
|
7283
7313
|
tile: boolean;
|
7284
7314
|
slim: boolean;
|
7315
|
+
filterable: boolean;
|
7285
7316
|
activatable: boolean;
|
7286
7317
|
selectable: boolean;
|
7287
7318
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
@@ -7299,6 +7330,7 @@ export declare const VCombobox: {
|
|
7299
7330
|
density: import("../../composables/density.js").Density;
|
7300
7331
|
tile: boolean;
|
7301
7332
|
slim: boolean;
|
7333
|
+
filterable: boolean;
|
7302
7334
|
activatable: boolean;
|
7303
7335
|
selectable: boolean;
|
7304
7336
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
@@ -7330,7 +7362,7 @@ export declare const VCombobox: {
|
|
7330
7362
|
value: boolean;
|
7331
7363
|
path: unknown[];
|
7332
7364
|
}) => any) | undefined;
|
7333
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
|
7365
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "filterable" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
|
7334
7366
|
items?: readonly any[] | undefined;
|
7335
7367
|
itemTitle?: SelectItemKey<any>;
|
7336
7368
|
itemValue?: SelectItemKey<any>;
|
@@ -7742,6 +7774,7 @@ export declare const VCombobox: {
|
|
7742
7774
|
bgColor?: string | undefined;
|
7743
7775
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7744
7776
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7777
|
+
iconColor?: string | boolean | undefined;
|
7745
7778
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7746
7779
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7747
7780
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -7750,7 +7783,6 @@ export declare const VCombobox: {
|
|
7750
7783
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7751
7784
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7752
7785
|
centerAffix?: boolean | undefined;
|
7753
|
-
iconColor?: string | boolean | undefined;
|
7754
7786
|
hint?: string | undefined;
|
7755
7787
|
hideDetails?: boolean | "auto" | undefined;
|
7756
7788
|
suffix?: string | undefined;
|
@@ -7894,6 +7926,7 @@ export declare const VCombobox: {
|
|
7894
7926
|
bgColor?: string | undefined;
|
7895
7927
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7896
7928
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7929
|
+
iconColor?: string | boolean | undefined;
|
7897
7930
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7898
7931
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7899
7932
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -7902,7 +7935,6 @@ export declare const VCombobox: {
|
|
7902
7935
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7903
7936
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7904
7937
|
centerAffix?: boolean | undefined;
|
7905
|
-
iconColor?: string | boolean | undefined;
|
7906
7938
|
hint?: string | undefined;
|
7907
7939
|
hideDetails?: boolean | "auto" | undefined;
|
7908
7940
|
suffix?: string | undefined;
|
@@ -8017,9 +8049,9 @@ export declare const VCombobox: {
|
|
8017
8049
|
baseColor?: string | undefined;
|
8018
8050
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8019
8051
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8052
|
+
iconColor?: string | boolean | undefined;
|
8020
8053
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
8021
8054
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
8022
|
-
iconColor?: string | boolean | undefined;
|
8023
8055
|
hint?: string | undefined;
|
8024
8056
|
hideDetails?: boolean | "auto" | undefined;
|
8025
8057
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -8073,9 +8105,9 @@ export declare const VCombobox: {
|
|
8073
8105
|
baseColor?: string | undefined;
|
8074
8106
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8075
8107
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8108
|
+
iconColor?: string | boolean | undefined;
|
8076
8109
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
8077
8110
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
8078
|
-
iconColor?: string | boolean | undefined;
|
8079
8111
|
hint?: string | undefined;
|
8080
8112
|
hideDetails?: boolean | "auto" | undefined;
|
8081
8113
|
} & {}, {
|
@@ -8176,9 +8208,9 @@ export declare const VCombobox: {
|
|
8176
8208
|
baseColor?: string | undefined;
|
8177
8209
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8178
8210
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8211
|
+
iconColor?: string | boolean | undefined;
|
8179
8212
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
8180
8213
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
8181
|
-
iconColor?: string | boolean | undefined;
|
8182
8214
|
hint?: string | undefined;
|
8183
8215
|
hideDetails?: boolean | "auto" | undefined;
|
8184
8216
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -8190,7 +8222,7 @@ export declare const VCombobox: {
|
|
8190
8222
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
8191
8223
|
modelValue?: unknown;
|
8192
8224
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
8193
|
-
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "
|
8225
|
+
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "iconColor" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
8194
8226
|
$: import("vue").ComponentInternalInstance;
|
8195
8227
|
$data: {};
|
8196
8228
|
$props: Partial<{
|
@@ -8237,13 +8269,13 @@ export declare const VCombobox: {
|
|
8237
8269
|
rounded?: string | number | boolean | undefined;
|
8238
8270
|
baseColor?: string | undefined;
|
8239
8271
|
bgColor?: string | undefined;
|
8272
|
+
iconColor?: string | boolean | undefined;
|
8240
8273
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8241
8274
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8242
8275
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
8243
8276
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8244
8277
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8245
8278
|
centerAffix?: boolean | undefined;
|
8246
|
-
iconColor?: string | boolean | undefined;
|
8247
8279
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
8248
8280
|
$attrs: {
|
8249
8281
|
[x: string]: unknown;
|
@@ -8296,13 +8328,13 @@ export declare const VCombobox: {
|
|
8296
8328
|
rounded?: string | number | boolean | undefined;
|
8297
8329
|
baseColor?: string | undefined;
|
8298
8330
|
bgColor?: string | undefined;
|
8331
|
+
iconColor?: string | boolean | undefined;
|
8299
8332
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8300
8333
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8301
8334
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
8302
8335
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8303
8336
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8304
8337
|
centerAffix?: boolean | undefined;
|
8305
|
-
iconColor?: string | boolean | undefined;
|
8306
8338
|
} & {
|
8307
8339
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
8308
8340
|
}, {
|
@@ -8406,13 +8438,13 @@ export declare const VCombobox: {
|
|
8406
8438
|
rounded?: string | number | boolean | undefined;
|
8407
8439
|
baseColor?: string | undefined;
|
8408
8440
|
bgColor?: string | undefined;
|
8441
|
+
iconColor?: string | boolean | undefined;
|
8409
8442
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8410
8443
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8411
8444
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
8412
8445
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8413
8446
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8414
8447
|
centerAffix?: boolean | undefined;
|
8415
|
-
iconColor?: string | boolean | undefined;
|
8416
8448
|
} & {
|
8417
8449
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
8418
8450
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -8421,7 +8453,7 @@ export declare const VCombobox: {
|
|
8421
8453
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
8422
8454
|
modelValue?: unknown;
|
8423
8455
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
8424
|
-
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "
|
8456
|
+
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
|
8425
8457
|
_allExposed: {
|
8426
8458
|
reset: () => Promise<void>;
|
8427
8459
|
resetValidation: () => Promise<void>;
|
@@ -8589,6 +8621,7 @@ export declare const VCombobox: {
|
|
8589
8621
|
bgColor?: string | undefined;
|
8590
8622
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8591
8623
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8624
|
+
iconColor?: string | boolean | undefined;
|
8592
8625
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8593
8626
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8594
8627
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -8597,7 +8630,6 @@ export declare const VCombobox: {
|
|
8597
8630
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8598
8631
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8599
8632
|
centerAffix?: boolean | undefined;
|
8600
|
-
iconColor?: string | boolean | undefined;
|
8601
8633
|
hint?: string | undefined;
|
8602
8634
|
hideDetails?: boolean | "auto" | undefined;
|
8603
8635
|
suffix?: string | undefined;
|
@@ -8712,9 +8744,9 @@ export declare const VCombobox: {
|
|
8712
8744
|
baseColor?: string | undefined;
|
8713
8745
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8714
8746
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8747
|
+
iconColor?: string | boolean | undefined;
|
8715
8748
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
8716
8749
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
8717
|
-
iconColor?: string | boolean | undefined;
|
8718
8750
|
hint?: string | undefined;
|
8719
8751
|
hideDetails?: boolean | "auto" | undefined;
|
8720
8752
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -8768,9 +8800,9 @@ export declare const VCombobox: {
|
|
8768
8800
|
baseColor?: string | undefined;
|
8769
8801
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8770
8802
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8803
|
+
iconColor?: string | boolean | undefined;
|
8771
8804
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
8772
8805
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
8773
|
-
iconColor?: string | boolean | undefined;
|
8774
8806
|
hint?: string | undefined;
|
8775
8807
|
hideDetails?: boolean | "auto" | undefined;
|
8776
8808
|
} & {}, {
|
@@ -8871,9 +8903,9 @@ export declare const VCombobox: {
|
|
8871
8903
|
baseColor?: string | undefined;
|
8872
8904
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8873
8905
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8906
|
+
iconColor?: string | boolean | undefined;
|
8874
8907
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
8875
8908
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
8876
|
-
iconColor?: string | boolean | undefined;
|
8877
8909
|
hint?: string | undefined;
|
8878
8910
|
hideDetails?: boolean | "auto" | undefined;
|
8879
8911
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -8885,7 +8917,7 @@ export declare const VCombobox: {
|
|
8885
8917
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
8886
8918
|
modelValue?: unknown;
|
8887
8919
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
8888
|
-
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "
|
8920
|
+
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "iconColor" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
8889
8921
|
$: import("vue").ComponentInternalInstance;
|
8890
8922
|
$data: {};
|
8891
8923
|
$props: Partial<{
|
@@ -8932,13 +8964,13 @@ export declare const VCombobox: {
|
|
8932
8964
|
rounded?: string | number | boolean | undefined;
|
8933
8965
|
baseColor?: string | undefined;
|
8934
8966
|
bgColor?: string | undefined;
|
8967
|
+
iconColor?: string | boolean | undefined;
|
8935
8968
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8936
8969
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8937
8970
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
8938
8971
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8939
8972
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8940
8973
|
centerAffix?: boolean | undefined;
|
8941
|
-
iconColor?: string | boolean | undefined;
|
8942
8974
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
8943
8975
|
$attrs: {
|
8944
8976
|
[x: string]: unknown;
|
@@ -8991,13 +9023,13 @@ export declare const VCombobox: {
|
|
8991
9023
|
rounded?: string | number | boolean | undefined;
|
8992
9024
|
baseColor?: string | undefined;
|
8993
9025
|
bgColor?: string | undefined;
|
9026
|
+
iconColor?: string | boolean | undefined;
|
8994
9027
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8995
9028
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8996
9029
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
8997
9030
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8998
9031
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8999
9032
|
centerAffix?: boolean | undefined;
|
9000
|
-
iconColor?: string | boolean | undefined;
|
9001
9033
|
} & {
|
9002
9034
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
9003
9035
|
}, {
|
@@ -9101,13 +9133,13 @@ export declare const VCombobox: {
|
|
9101
9133
|
rounded?: string | number | boolean | undefined;
|
9102
9134
|
baseColor?: string | undefined;
|
9103
9135
|
bgColor?: string | undefined;
|
9136
|
+
iconColor?: string | boolean | undefined;
|
9104
9137
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9105
9138
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9106
9139
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
9107
9140
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9108
9141
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9109
9142
|
centerAffix?: boolean | undefined;
|
9110
|
-
iconColor?: string | boolean | undefined;
|
9111
9143
|
} & {
|
9112
9144
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
9113
9145
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -9116,7 +9148,7 @@ export declare const VCombobox: {
|
|
9116
9148
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
9117
9149
|
modelValue?: unknown;
|
9118
9150
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
9119
|
-
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "
|
9151
|
+
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
|
9120
9152
|
_allExposed: {
|
9121
9153
|
reset: () => Promise<void>;
|
9122
9154
|
resetValidation: () => Promise<void>;
|
@@ -9127,7 +9159,7 @@ export declare const VCombobox: {
|
|
9127
9159
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
9128
9160
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
9129
9161
|
} | {};
|
9130
|
-
}> & {} & import("vue").ComponentCustomProperties & {}, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "loading" | "label" | "prefix" | "role" | "class" | "theme" | "placeholder" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "counter" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:append" | "onClick:prepend" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:message" | "
|
9162
|
+
}> & {} & import("vue").ComponentCustomProperties & {}, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "loading" | "label" | "prefix" | "role" | "class" | "theme" | "placeholder" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "counter" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:append" | "onClick:prepend" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "suffix" | "counterValue" | "modelModifiers" | "onClick:control" | "onMousedown:control" | ("flat" | "reverse" | "variant" | "type" | "error" | "active" | "direction" | "style" | "autofocus" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "persistentPlaceholder" | "persistentCounter") | "v-slot:counter">, `$${any}`> & {
|
9131
9163
|
_allExposed: (HTMLInputElement & Omit<Omit<{
|
9132
9164
|
$: import("vue").ComponentInternalInstance;
|
9133
9165
|
$data: {};
|
@@ -9178,9 +9210,9 @@ export declare const VCombobox: {
|
|
9178
9210
|
baseColor?: string | undefined;
|
9179
9211
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9180
9212
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9213
|
+
iconColor?: string | boolean | undefined;
|
9181
9214
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
9182
9215
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
9183
|
-
iconColor?: string | boolean | undefined;
|
9184
9216
|
hint?: string | undefined;
|
9185
9217
|
hideDetails?: boolean | "auto" | undefined;
|
9186
9218
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -9234,9 +9266,9 @@ export declare const VCombobox: {
|
|
9234
9266
|
baseColor?: string | undefined;
|
9235
9267
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9236
9268
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9269
|
+
iconColor?: string | boolean | undefined;
|
9237
9270
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
9238
9271
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
9239
|
-
iconColor?: string | boolean | undefined;
|
9240
9272
|
hint?: string | undefined;
|
9241
9273
|
hideDetails?: boolean | "auto" | undefined;
|
9242
9274
|
} & {}, {
|
@@ -9337,9 +9369,9 @@ export declare const VCombobox: {
|
|
9337
9369
|
baseColor?: string | undefined;
|
9338
9370
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9339
9371
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9372
|
+
iconColor?: string | boolean | undefined;
|
9340
9373
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
9341
9374
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
9342
|
-
iconColor?: string | boolean | undefined;
|
9343
9375
|
hint?: string | undefined;
|
9344
9376
|
hideDetails?: boolean | "auto" | undefined;
|
9345
9377
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -9351,7 +9383,7 @@ export declare const VCombobox: {
|
|
9351
9383
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
9352
9384
|
modelValue?: unknown;
|
9353
9385
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
9354
|
-
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "
|
9386
|
+
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "iconColor" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
9355
9387
|
$: import("vue").ComponentInternalInstance;
|
9356
9388
|
$data: {};
|
9357
9389
|
$props: Partial<{
|
@@ -9398,13 +9430,13 @@ export declare const VCombobox: {
|
|
9398
9430
|
rounded?: string | number | boolean | undefined;
|
9399
9431
|
baseColor?: string | undefined;
|
9400
9432
|
bgColor?: string | undefined;
|
9433
|
+
iconColor?: string | boolean | undefined;
|
9401
9434
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9402
9435
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9403
9436
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
9404
9437
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9405
9438
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9406
9439
|
centerAffix?: boolean | undefined;
|
9407
|
-
iconColor?: string | boolean | undefined;
|
9408
9440
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
9409
9441
|
$attrs: {
|
9410
9442
|
[x: string]: unknown;
|
@@ -9457,13 +9489,13 @@ export declare const VCombobox: {
|
|
9457
9489
|
rounded?: string | number | boolean | undefined;
|
9458
9490
|
baseColor?: string | undefined;
|
9459
9491
|
bgColor?: string | undefined;
|
9492
|
+
iconColor?: string | boolean | undefined;
|
9460
9493
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9461
9494
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9462
9495
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
9463
9496
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9464
9497
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9465
9498
|
centerAffix?: boolean | undefined;
|
9466
|
-
iconColor?: string | boolean | undefined;
|
9467
9499
|
} & {
|
9468
9500
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
9469
9501
|
}, {
|
@@ -9567,13 +9599,13 @@ export declare const VCombobox: {
|
|
9567
9599
|
rounded?: string | number | boolean | undefined;
|
9568
9600
|
baseColor?: string | undefined;
|
9569
9601
|
bgColor?: string | undefined;
|
9602
|
+
iconColor?: string | boolean | undefined;
|
9570
9603
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9571
9604
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9572
9605
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
9573
9606
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9574
9607
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9575
9608
|
centerAffix?: boolean | undefined;
|
9576
|
-
iconColor?: string | boolean | undefined;
|
9577
9609
|
} & {
|
9578
9610
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
9579
9611
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -9582,7 +9614,7 @@ export declare const VCombobox: {
|
|
9582
9614
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
9583
9615
|
modelValue?: unknown;
|
9584
9616
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
9585
|
-
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "
|
9617
|
+
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
|
9586
9618
|
_allExposed: {
|
9587
9619
|
reset: () => Promise<void>;
|
9588
9620
|
resetValidation: () => Promise<void>;
|
@@ -9607,7 +9639,7 @@ export declare const VCombobox: {
|
|
9607
9639
|
'update:modelValue': (value: any) => true;
|
9608
9640
|
'update:search': (value: string) => true;
|
9609
9641
|
'update:menu': (value: boolean) => true;
|
9610
|
-
}, "multiple" | "$children" | "v-slots" | "modelValue" | "items" | "itemValue" | "returnObject" | "update:modelValue" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "v-slot:label" | "v-slot:message" | "v-slot:details" | "v-slot:item" | "itemTitle" | "itemProps" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">, string, {
|
9642
|
+
}, "multiple" | "$children" | "v-slots" | "modelValue" | "items" | "itemValue" | "returnObject" | "update:modelValue" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "v-slot:label" | "v-slot:message" | "v-slot:details" | "v-slot:item" | "v-slot:divider" | "v-slot:subheader" | "itemTitle" | "itemProps" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">, string, {
|
9611
9643
|
flat: boolean;
|
9612
9644
|
reverse: boolean;
|
9613
9645
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
@@ -9656,6 +9688,7 @@ export declare const VCombobox: {
|
|
9656
9688
|
hideSelected: boolean;
|
9657
9689
|
menuIcon: import("../../composables/icons.js").IconValue;
|
9658
9690
|
openOnClear: boolean;
|
9691
|
+
noAutoScroll: boolean;
|
9659
9692
|
clearOnSelect: boolean;
|
9660
9693
|
}, {}, string, import("vue").SlotsType<Partial<{
|
9661
9694
|
message: (arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNode[];
|
@@ -9686,6 +9719,14 @@ export declare const VCombobox: {
|
|
9686
9719
|
item: ListItem<unknown>;
|
9687
9720
|
index: number;
|
9688
9721
|
}) => import("vue").VNode[];
|
9722
|
+
subheader: (arg: {
|
9723
|
+
props: Record<string, unknown>;
|
9724
|
+
index: number;
|
9725
|
+
}) => import("vue").VNode[];
|
9726
|
+
divider: (arg: {
|
9727
|
+
props: Record<string, unknown>;
|
9728
|
+
index: number;
|
9729
|
+
}) => import("vue").VNode[];
|
9689
9730
|
'prepend-item': () => import("vue").VNode[];
|
9690
9731
|
'append-item': () => import("vue").VNode[];
|
9691
9732
|
'no-data': () => import("vue").VNode[];
|
@@ -9713,6 +9754,14 @@ export declare const VCombobox: {
|
|
9713
9754
|
item: ListItem<Item>;
|
9714
9755
|
index: number;
|
9715
9756
|
};
|
9757
|
+
subheader: {
|
9758
|
+
props: Record<string, unknown>;
|
9759
|
+
index: number;
|
9760
|
+
};
|
9761
|
+
divider: {
|
9762
|
+
props: Record<string, unknown>;
|
9763
|
+
index: number;
|
9764
|
+
};
|
9716
9765
|
"prepend-item": never;
|
9717
9766
|
"append-item": never;
|
9718
9767
|
"no-data": never;
|
@@ -9810,6 +9859,7 @@ export declare const VCombobox: {
|
|
9810
9859
|
bgColor: StringConstructor;
|
9811
9860
|
prependIcon: PropType<import("../../composables/icons.js").IconValue>;
|
9812
9861
|
appendIcon: PropType<import("../../composables/icons.js").IconValue>;
|
9862
|
+
iconColor: (StringConstructor | BooleanConstructor)[];
|
9813
9863
|
clearIcon: {
|
9814
9864
|
type: PropType<import("../../composables/icons.js").IconValue>;
|
9815
9865
|
default: string;
|
@@ -9825,7 +9875,6 @@ export declare const VCombobox: {
|
|
9825
9875
|
default: undefined;
|
9826
9876
|
};
|
9827
9877
|
glow: BooleanConstructor;
|
9828
|
-
iconColor: (StringConstructor | BooleanConstructor)[];
|
9829
9878
|
hideSpinButtons: BooleanConstructor;
|
9830
9879
|
hint: StringConstructor;
|
9831
9880
|
persistentHint: BooleanConstructor;
|
@@ -9900,6 +9949,7 @@ export declare const VCombobox: {
|
|
9900
9949
|
};
|
9901
9950
|
openOnClear: BooleanConstructor;
|
9902
9951
|
itemColor: StringConstructor;
|
9952
|
+
noAutoScroll: BooleanConstructor;
|
9903
9953
|
customFilter: PropType<import("../../composables/filter.js").FilterFunction>;
|
9904
9954
|
customKeyFilter: PropType<import("../../composables/filter.js").FilterKeyFunctions>;
|
9905
9955
|
filterKeys: {
|
@@ -10013,6 +10063,7 @@ export declare const VCombobox: {
|
|
10013
10063
|
bgColor: StringConstructor;
|
10014
10064
|
prependIcon: PropType<import("../../composables/icons.js").IconValue>;
|
10015
10065
|
appendIcon: PropType<import("../../composables/icons.js").IconValue>;
|
10066
|
+
iconColor: (StringConstructor | BooleanConstructor)[];
|
10016
10067
|
clearIcon: {
|
10017
10068
|
type: PropType<import("../../composables/icons.js").IconValue>;
|
10018
10069
|
default: string;
|
@@ -10028,7 +10079,6 @@ export declare const VCombobox: {
|
|
10028
10079
|
default: undefined;
|
10029
10080
|
};
|
10030
10081
|
glow: BooleanConstructor;
|
10031
|
-
iconColor: (StringConstructor | BooleanConstructor)[];
|
10032
10082
|
hideSpinButtons: BooleanConstructor;
|
10033
10083
|
hint: StringConstructor;
|
10034
10084
|
persistentHint: BooleanConstructor;
|
@@ -10103,6 +10153,7 @@ export declare const VCombobox: {
|
|
10103
10153
|
};
|
10104
10154
|
openOnClear: BooleanConstructor;
|
10105
10155
|
itemColor: StringConstructor;
|
10156
|
+
noAutoScroll: BooleanConstructor;
|
10106
10157
|
customFilter: PropType<import("../../composables/filter.js").FilterFunction>;
|
10107
10158
|
customKeyFilter: PropType<import("../../composables/filter.js").FilterKeyFunctions>;
|
10108
10159
|
filterKeys: {
|