@vuetify/nightly 3.8.8-master.2025-06-10 → 3.8.9-dev.2025-06-12
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 +44 -19
- package/dist/json/attributes.json +2771 -2411
- package/dist/json/importMap-labs.json +32 -28
- package/dist/json/importMap.json +128 -128
- package/dist/json/tags.json +96 -1
- package/dist/json/web-types.json +5703 -4391
- package/dist/vuetify-labs.cjs +635 -146
- package/dist/vuetify-labs.css +4248 -4214
- package/dist/vuetify-labs.d.ts +9097 -1977
- package/dist/vuetify-labs.esm.js +636 -147
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +635 -146
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +383 -135
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +5999 -5965
- package/dist/vuetify.d.ts +1586 -1085
- package/dist/vuetify.esm.js +384 -136
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +383 -135
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +1219 -1203
- 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 +21 -3
- 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 +4 -4
- package/lib/composables/date/adapters/vuetify.js.map +1 -1
- package/lib/composables/date/date.d.ts +3 -3
- 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/mask.d.ts +38 -0
- package/lib/composables/mask.js +183 -0
- package/lib/composables/mask.js.map +1 -0
- 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 +72 -56
- 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/VMaskInput/VMaskInput.d.ts +6993 -0
- package/lib/labs/VMaskInput/VMaskInput.js +67 -0
- package/lib/labs/VMaskInput/VMaskInput.js.map +1 -0
- package/lib/labs/VMaskInput/index.d.ts +1 -0
- package/lib/labs/VMaskInput/index.js +2 -0
- package/lib/labs/VMaskInput/index.js.map +1 -0
- 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/components.d.ts +1 -0
- package/lib/labs/components.js +1 -0
- package/lib/labs/components.js.map +1 -1
- 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/package.json +3 -1
@@ -52,6 +52,7 @@ export declare const makeVAutocompleteProps: <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 makeVAutocompleteProps: <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 makeVAutocompleteProps: <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 makeVAutocompleteProps: <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 makeVAutocompleteProps: <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"];
|
@@ -604,6 +605,7 @@ export declare const makeVAutocompleteProps: <Defaults extends {
|
|
604
605
|
rounded: string | number | boolean;
|
605
606
|
tile: boolean;
|
606
607
|
slim: boolean;
|
608
|
+
filterable: boolean;
|
607
609
|
activatable: boolean;
|
608
610
|
selectable: boolean;
|
609
611
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
@@ -621,6 +623,7 @@ export declare const makeVAutocompleteProps: <Defaults extends {
|
|
621
623
|
density: import("../../composables/density.js").Density;
|
622
624
|
tile: boolean;
|
623
625
|
slim: boolean;
|
626
|
+
filterable: boolean;
|
624
627
|
activatable: boolean;
|
625
628
|
selectable: boolean;
|
626
629
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
@@ -652,7 +655,7 @@ export declare const makeVAutocompleteProps: <Defaults extends {
|
|
652
655
|
value: boolean;
|
653
656
|
path: unknown[];
|
654
657
|
}) => any) | undefined;
|
655
|
-
} & 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"> & {
|
658
|
+
} & 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"> & {
|
656
659
|
items?: readonly any[] | undefined;
|
657
660
|
itemTitle?: SelectItemKey<any>;
|
658
661
|
itemValue?: SelectItemKey<any>;
|
@@ -767,6 +770,7 @@ export declare const makeVAutocompleteProps: <Defaults extends {
|
|
767
770
|
rounded: string | number | boolean;
|
768
771
|
tile: boolean;
|
769
772
|
slim: boolean;
|
773
|
+
filterable: boolean;
|
770
774
|
activatable: boolean;
|
771
775
|
selectable: boolean;
|
772
776
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
@@ -784,6 +788,7 @@ export declare const makeVAutocompleteProps: <Defaults extends {
|
|
784
788
|
density: import("../../composables/density.js").Density;
|
785
789
|
tile: boolean;
|
786
790
|
slim: boolean;
|
791
|
+
filterable: boolean;
|
787
792
|
activatable: boolean;
|
788
793
|
selectable: boolean;
|
789
794
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
@@ -815,7 +820,7 @@ export declare const makeVAutocompleteProps: <Defaults extends {
|
|
815
820
|
value: boolean;
|
816
821
|
path: unknown[];
|
817
822
|
}) => any) | undefined;
|
818
|
-
} & 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"> & {
|
823
|
+
} & 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"> & {
|
819
824
|
items?: readonly any[] | undefined;
|
820
825
|
itemTitle?: SelectItemKey<any>;
|
821
826
|
itemValue?: SelectItemKey<any>;
|
@@ -931,6 +936,7 @@ export declare const makeVAutocompleteProps: <Defaults extends {
|
|
931
936
|
rounded: string | number | boolean;
|
932
937
|
tile: boolean;
|
933
938
|
slim: boolean;
|
939
|
+
filterable: boolean;
|
934
940
|
activatable: boolean;
|
935
941
|
selectable: boolean;
|
936
942
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
@@ -948,6 +954,7 @@ export declare const makeVAutocompleteProps: <Defaults extends {
|
|
948
954
|
density: import("../../composables/density.js").Density;
|
949
955
|
tile: boolean;
|
950
956
|
slim: boolean;
|
957
|
+
filterable: boolean;
|
951
958
|
activatable: boolean;
|
952
959
|
selectable: boolean;
|
953
960
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
@@ -979,7 +986,7 @@ export declare const makeVAutocompleteProps: <Defaults extends {
|
|
979
986
|
value: boolean;
|
980
987
|
path: unknown[];
|
981
988
|
}) => any) | undefined;
|
982
|
-
} & 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"> & {
|
989
|
+
} & 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"> & {
|
983
990
|
items?: readonly any[] | undefined;
|
984
991
|
itemTitle?: SelectItemKey<any>;
|
985
992
|
itemValue?: SelectItemKey<any>;
|
@@ -1094,6 +1101,7 @@ export declare const makeVAutocompleteProps: <Defaults extends {
|
|
1094
1101
|
rounded: string | number | boolean;
|
1095
1102
|
tile: boolean;
|
1096
1103
|
slim: boolean;
|
1104
|
+
filterable: boolean;
|
1097
1105
|
activatable: boolean;
|
1098
1106
|
selectable: boolean;
|
1099
1107
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
@@ -1111,6 +1119,7 @@ export declare const makeVAutocompleteProps: <Defaults extends {
|
|
1111
1119
|
density: import("../../composables/density.js").Density;
|
1112
1120
|
tile: boolean;
|
1113
1121
|
slim: boolean;
|
1122
|
+
filterable: boolean;
|
1114
1123
|
activatable: boolean;
|
1115
1124
|
selectable: boolean;
|
1116
1125
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
@@ -1142,7 +1151,7 @@ export declare const makeVAutocompleteProps: <Defaults extends {
|
|
1142
1151
|
value: boolean;
|
1143
1152
|
path: unknown[];
|
1144
1153
|
}) => any) | undefined;
|
1145
|
-
} & 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"> & {
|
1154
|
+
} & 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"> & {
|
1146
1155
|
items?: readonly any[] | undefined;
|
1147
1156
|
itemTitle?: SelectItemKey<any>;
|
1148
1157
|
itemValue?: SelectItemKey<any>;
|
@@ -2125,6 +2134,10 @@ export declare const makeVAutocompleteProps: <Defaults extends {
|
|
2125
2134
|
type: PropType<unknown extends Defaults["itemColor"] ? string : string | Defaults["itemColor"]>;
|
2126
2135
|
default: unknown extends Defaults["itemColor"] ? string : string | Defaults["itemColor"];
|
2127
2136
|
};
|
2137
|
+
noAutoScroll: unknown extends Defaults["noAutoScroll"] ? BooleanConstructor : {
|
2138
|
+
type: PropType<unknown extends Defaults["noAutoScroll"] ? boolean : boolean | Defaults["noAutoScroll"]>;
|
2139
|
+
default: unknown extends Defaults["noAutoScroll"] ? boolean : boolean | Defaults["noAutoScroll"];
|
2140
|
+
};
|
2128
2141
|
customFilter: unknown extends Defaults["customFilter"] ? PropType<import("../../composables/filter.js").FilterFunction> : {
|
2129
2142
|
type: PropType<unknown extends Defaults["customFilter"] ? import("../../composables/filter.js").FilterFunction : import("../../composables/filter.js").FilterFunction | Defaults["customFilter"]>;
|
2130
2143
|
default: unknown extends Defaults["customFilter"] ? import("../../composables/filter.js").FilterFunction : import("../../composables/filter.js").FilterFunction | Defaults["customFilter"];
|
@@ -2223,6 +2236,7 @@ export declare const VAutocomplete: {
|
|
2223
2236
|
hideSelected: boolean;
|
2224
2237
|
menuIcon: import("../../composables/icons.js").IconValue;
|
2225
2238
|
openOnClear: boolean;
|
2239
|
+
noAutoScroll: boolean;
|
2226
2240
|
clearOnSelect: boolean;
|
2227
2241
|
} & {
|
2228
2242
|
search?: string | undefined;
|
@@ -2249,6 +2263,7 @@ export declare const VAutocomplete: {
|
|
2249
2263
|
bgColor?: string | undefined;
|
2250
2264
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2251
2265
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2266
|
+
iconColor?: string | boolean | undefined;
|
2252
2267
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2253
2268
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
2254
2269
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -2256,7 +2271,6 @@ export declare const VAutocomplete: {
|
|
2256
2271
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2257
2272
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2258
2273
|
centerAffix?: boolean | undefined;
|
2259
|
-
iconColor?: string | boolean | undefined;
|
2260
2274
|
hint?: string | undefined;
|
2261
2275
|
hideDetails?: boolean | "auto" | undefined;
|
2262
2276
|
suffix?: string | undefined;
|
@@ -2276,6 +2290,7 @@ export declare const VAutocomplete: {
|
|
2276
2290
|
rounded: string | number | boolean;
|
2277
2291
|
tile: boolean;
|
2278
2292
|
slim: boolean;
|
2293
|
+
filterable: boolean;
|
2279
2294
|
activatable: boolean;
|
2280
2295
|
selectable: boolean;
|
2281
2296
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
@@ -2293,6 +2308,7 @@ export declare const VAutocomplete: {
|
|
2293
2308
|
density: import("../../composables/density.js").Density;
|
2294
2309
|
tile: boolean;
|
2295
2310
|
slim: boolean;
|
2311
|
+
filterable: boolean;
|
2296
2312
|
activatable: boolean;
|
2297
2313
|
selectable: boolean;
|
2298
2314
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
@@ -2324,7 +2340,7 @@ export declare const VAutocomplete: {
|
|
2324
2340
|
value: boolean;
|
2325
2341
|
path: unknown[];
|
2326
2342
|
}) => any) | undefined;
|
2327
|
-
} & 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"> & {
|
2343
|
+
} & 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"> & {
|
2328
2344
|
items?: readonly any[] | undefined;
|
2329
2345
|
itemTitle?: SelectItemKey<any>;
|
2330
2346
|
itemValue?: SelectItemKey<any>;
|
@@ -2737,6 +2753,7 @@ export declare const VAutocomplete: {
|
|
2737
2753
|
bgColor?: string | undefined;
|
2738
2754
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2739
2755
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2756
|
+
iconColor?: string | boolean | undefined;
|
2740
2757
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2741
2758
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2742
2759
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -2745,7 +2762,6 @@ export declare const VAutocomplete: {
|
|
2745
2762
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2746
2763
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2747
2764
|
centerAffix?: boolean | undefined;
|
2748
|
-
iconColor?: string | boolean | undefined;
|
2749
2765
|
hint?: string | undefined;
|
2750
2766
|
hideDetails?: boolean | "auto" | undefined;
|
2751
2767
|
suffix?: string | undefined;
|
@@ -2889,6 +2905,7 @@ export declare const VAutocomplete: {
|
|
2889
2905
|
bgColor?: string | undefined;
|
2890
2906
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2891
2907
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2908
|
+
iconColor?: string | boolean | undefined;
|
2892
2909
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2893
2910
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2894
2911
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -2897,7 +2914,6 @@ export declare const VAutocomplete: {
|
|
2897
2914
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2898
2915
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2899
2916
|
centerAffix?: boolean | undefined;
|
2900
|
-
iconColor?: string | boolean | undefined;
|
2901
2917
|
hint?: string | undefined;
|
2902
2918
|
hideDetails?: boolean | "auto" | undefined;
|
2903
2919
|
suffix?: string | undefined;
|
@@ -3012,9 +3028,9 @@ export declare const VAutocomplete: {
|
|
3012
3028
|
baseColor?: string | undefined;
|
3013
3029
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3014
3030
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3031
|
+
iconColor?: string | boolean | undefined;
|
3015
3032
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
3016
3033
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
3017
|
-
iconColor?: string | boolean | undefined;
|
3018
3034
|
hint?: string | undefined;
|
3019
3035
|
hideDetails?: boolean | "auto" | undefined;
|
3020
3036
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -3068,9 +3084,9 @@ export declare const VAutocomplete: {
|
|
3068
3084
|
baseColor?: string | undefined;
|
3069
3085
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3070
3086
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3087
|
+
iconColor?: string | boolean | undefined;
|
3071
3088
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
3072
3089
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
3073
|
-
iconColor?: string | boolean | undefined;
|
3074
3090
|
hint?: string | undefined;
|
3075
3091
|
hideDetails?: boolean | "auto" | undefined;
|
3076
3092
|
} & {}, {
|
@@ -3171,9 +3187,9 @@ export declare const VAutocomplete: {
|
|
3171
3187
|
baseColor?: string | undefined;
|
3172
3188
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3173
3189
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3190
|
+
iconColor?: string | boolean | undefined;
|
3174
3191
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
3175
3192
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
3176
|
-
iconColor?: string | boolean | undefined;
|
3177
3193
|
hint?: string | undefined;
|
3178
3194
|
hideDetails?: boolean | "auto" | undefined;
|
3179
3195
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -3185,7 +3201,7 @@ export declare const VAutocomplete: {
|
|
3185
3201
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
3186
3202
|
modelValue?: unknown;
|
3187
3203
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
3188
|
-
}, 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" | "
|
3204
|
+
}, 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<{
|
3189
3205
|
$: import("vue").ComponentInternalInstance;
|
3190
3206
|
$data: {};
|
3191
3207
|
$props: Partial<{
|
@@ -3232,13 +3248,13 @@ export declare const VAutocomplete: {
|
|
3232
3248
|
rounded?: string | number | boolean | undefined;
|
3233
3249
|
baseColor?: string | undefined;
|
3234
3250
|
bgColor?: string | undefined;
|
3251
|
+
iconColor?: string | boolean | undefined;
|
3235
3252
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3236
3253
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3237
3254
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
3238
3255
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3239
3256
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3240
3257
|
centerAffix?: boolean | undefined;
|
3241
|
-
iconColor?: string | boolean | undefined;
|
3242
3258
|
} & 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">;
|
3243
3259
|
$attrs: {
|
3244
3260
|
[x: string]: unknown;
|
@@ -3291,13 +3307,13 @@ export declare const VAutocomplete: {
|
|
3291
3307
|
rounded?: string | number | boolean | undefined;
|
3292
3308
|
baseColor?: string | undefined;
|
3293
3309
|
bgColor?: string | undefined;
|
3310
|
+
iconColor?: string | boolean | undefined;
|
3294
3311
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3295
3312
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3296
3313
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
3297
3314
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3298
3315
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3299
3316
|
centerAffix?: boolean | undefined;
|
3300
|
-
iconColor?: string | boolean | undefined;
|
3301
3317
|
} & {
|
3302
3318
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
3303
3319
|
}, {
|
@@ -3401,13 +3417,13 @@ export declare const VAutocomplete: {
|
|
3401
3417
|
rounded?: string | number | boolean | undefined;
|
3402
3418
|
baseColor?: string | undefined;
|
3403
3419
|
bgColor?: string | undefined;
|
3420
|
+
iconColor?: string | boolean | undefined;
|
3404
3421
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3405
3422
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3406
3423
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
3407
3424
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3408
3425
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3409
3426
|
centerAffix?: boolean | undefined;
|
3410
|
-
iconColor?: string | boolean | undefined;
|
3411
3427
|
} & {
|
3412
3428
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
3413
3429
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -3416,7 +3432,7 @@ export declare const VAutocomplete: {
|
|
3416
3432
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
3417
3433
|
modelValue?: unknown;
|
3418
3434
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
3419
|
-
}, 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" | "
|
3435
|
+
}, 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}`> & {
|
3420
3436
|
_allExposed: {
|
3421
3437
|
reset: () => Promise<void>;
|
3422
3438
|
resetValidation: () => Promise<void>;
|
@@ -3584,6 +3600,7 @@ export declare const VAutocomplete: {
|
|
3584
3600
|
bgColor?: string | undefined;
|
3585
3601
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3586
3602
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3603
|
+
iconColor?: string | boolean | undefined;
|
3587
3604
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3588
3605
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3589
3606
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -3592,7 +3609,6 @@ export declare const VAutocomplete: {
|
|
3592
3609
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3593
3610
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3594
3611
|
centerAffix?: boolean | undefined;
|
3595
|
-
iconColor?: string | boolean | undefined;
|
3596
3612
|
hint?: string | undefined;
|
3597
3613
|
hideDetails?: boolean | "auto" | undefined;
|
3598
3614
|
suffix?: string | undefined;
|
@@ -3707,9 +3723,9 @@ export declare const VAutocomplete: {
|
|
3707
3723
|
baseColor?: string | undefined;
|
3708
3724
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3709
3725
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3726
|
+
iconColor?: string | boolean | undefined;
|
3710
3727
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
3711
3728
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
3712
|
-
iconColor?: string | boolean | undefined;
|
3713
3729
|
hint?: string | undefined;
|
3714
3730
|
hideDetails?: boolean | "auto" | undefined;
|
3715
3731
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -3763,9 +3779,9 @@ export declare const VAutocomplete: {
|
|
3763
3779
|
baseColor?: string | undefined;
|
3764
3780
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3765
3781
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3782
|
+
iconColor?: string | boolean | undefined;
|
3766
3783
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
3767
3784
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
3768
|
-
iconColor?: string | boolean | undefined;
|
3769
3785
|
hint?: string | undefined;
|
3770
3786
|
hideDetails?: boolean | "auto" | undefined;
|
3771
3787
|
} & {}, {
|
@@ -3866,9 +3882,9 @@ export declare const VAutocomplete: {
|
|
3866
3882
|
baseColor?: string | undefined;
|
3867
3883
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3868
3884
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3885
|
+
iconColor?: string | boolean | undefined;
|
3869
3886
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
3870
3887
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
3871
|
-
iconColor?: string | boolean | undefined;
|
3872
3888
|
hint?: string | undefined;
|
3873
3889
|
hideDetails?: boolean | "auto" | undefined;
|
3874
3890
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -3880,7 +3896,7 @@ export declare const VAutocomplete: {
|
|
3880
3896
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
3881
3897
|
modelValue?: unknown;
|
3882
3898
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
3883
|
-
}, 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" | "
|
3899
|
+
}, 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<{
|
3884
3900
|
$: import("vue").ComponentInternalInstance;
|
3885
3901
|
$data: {};
|
3886
3902
|
$props: Partial<{
|
@@ -3927,13 +3943,13 @@ export declare const VAutocomplete: {
|
|
3927
3943
|
rounded?: string | number | boolean | undefined;
|
3928
3944
|
baseColor?: string | undefined;
|
3929
3945
|
bgColor?: string | undefined;
|
3946
|
+
iconColor?: string | boolean | undefined;
|
3930
3947
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3931
3948
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3932
3949
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
3933
3950
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3934
3951
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3935
3952
|
centerAffix?: boolean | undefined;
|
3936
|
-
iconColor?: string | boolean | undefined;
|
3937
3953
|
} & 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">;
|
3938
3954
|
$attrs: {
|
3939
3955
|
[x: string]: unknown;
|
@@ -3986,13 +4002,13 @@ export declare const VAutocomplete: {
|
|
3986
4002
|
rounded?: string | number | boolean | undefined;
|
3987
4003
|
baseColor?: string | undefined;
|
3988
4004
|
bgColor?: string | undefined;
|
4005
|
+
iconColor?: string | boolean | undefined;
|
3989
4006
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3990
4007
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3991
4008
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
3992
4009
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3993
4010
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3994
4011
|
centerAffix?: boolean | undefined;
|
3995
|
-
iconColor?: string | boolean | undefined;
|
3996
4012
|
} & {
|
3997
4013
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
3998
4014
|
}, {
|
@@ -4096,13 +4112,13 @@ export declare const VAutocomplete: {
|
|
4096
4112
|
rounded?: string | number | boolean | undefined;
|
4097
4113
|
baseColor?: string | undefined;
|
4098
4114
|
bgColor?: string | undefined;
|
4115
|
+
iconColor?: string | boolean | undefined;
|
4099
4116
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4100
4117
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4101
4118
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4102
4119
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4103
4120
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4104
4121
|
centerAffix?: boolean | undefined;
|
4105
|
-
iconColor?: string | boolean | undefined;
|
4106
4122
|
} & {
|
4107
4123
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
4108
4124
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -4111,7 +4127,7 @@ export declare const VAutocomplete: {
|
|
4111
4127
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
4112
4128
|
modelValue?: unknown;
|
4113
4129
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
4114
|
-
}, 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" | "
|
4130
|
+
}, 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}`> & {
|
4115
4131
|
_allExposed: {
|
4116
4132
|
reset: () => Promise<void>;
|
4117
4133
|
resetValidation: () => Promise<void>;
|
@@ -4122,7 +4138,7 @@ export declare const VAutocomplete: {
|
|
4122
4138
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
4123
4139
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
4124
4140
|
} | {};
|
4125
|
-
}> & {} & 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" | "
|
4141
|
+
}> & {} & 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}`> & {
|
4126
4142
|
_allExposed: (HTMLInputElement & Omit<Omit<{
|
4127
4143
|
$: import("vue").ComponentInternalInstance;
|
4128
4144
|
$data: {};
|
@@ -4173,9 +4189,9 @@ export declare const VAutocomplete: {
|
|
4173
4189
|
baseColor?: string | undefined;
|
4174
4190
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4175
4191
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4192
|
+
iconColor?: string | boolean | undefined;
|
4176
4193
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
4177
4194
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
4178
|
-
iconColor?: string | boolean | undefined;
|
4179
4195
|
hint?: string | undefined;
|
4180
4196
|
hideDetails?: boolean | "auto" | undefined;
|
4181
4197
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -4229,9 +4245,9 @@ export declare const VAutocomplete: {
|
|
4229
4245
|
baseColor?: string | undefined;
|
4230
4246
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4231
4247
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4248
|
+
iconColor?: string | boolean | undefined;
|
4232
4249
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
4233
4250
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
4234
|
-
iconColor?: string | boolean | undefined;
|
4235
4251
|
hint?: string | undefined;
|
4236
4252
|
hideDetails?: boolean | "auto" | undefined;
|
4237
4253
|
} & {}, {
|
@@ -4332,9 +4348,9 @@ export declare const VAutocomplete: {
|
|
4332
4348
|
baseColor?: string | undefined;
|
4333
4349
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4334
4350
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4351
|
+
iconColor?: string | boolean | undefined;
|
4335
4352
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
4336
4353
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
4337
|
-
iconColor?: string | boolean | undefined;
|
4338
4354
|
hint?: string | undefined;
|
4339
4355
|
hideDetails?: boolean | "auto" | undefined;
|
4340
4356
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -4346,7 +4362,7 @@ export declare const VAutocomplete: {
|
|
4346
4362
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
4347
4363
|
modelValue?: unknown;
|
4348
4364
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
4349
|
-
}, 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" | "
|
4365
|
+
}, 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<{
|
4350
4366
|
$: import("vue").ComponentInternalInstance;
|
4351
4367
|
$data: {};
|
4352
4368
|
$props: Partial<{
|
@@ -4393,13 +4409,13 @@ export declare const VAutocomplete: {
|
|
4393
4409
|
rounded?: string | number | boolean | undefined;
|
4394
4410
|
baseColor?: string | undefined;
|
4395
4411
|
bgColor?: string | undefined;
|
4412
|
+
iconColor?: string | boolean | undefined;
|
4396
4413
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4397
4414
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4398
4415
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4399
4416
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4400
4417
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4401
4418
|
centerAffix?: boolean | undefined;
|
4402
|
-
iconColor?: string | boolean | undefined;
|
4403
4419
|
} & 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">;
|
4404
4420
|
$attrs: {
|
4405
4421
|
[x: string]: unknown;
|
@@ -4452,13 +4468,13 @@ export declare const VAutocomplete: {
|
|
4452
4468
|
rounded?: string | number | boolean | undefined;
|
4453
4469
|
baseColor?: string | undefined;
|
4454
4470
|
bgColor?: string | undefined;
|
4471
|
+
iconColor?: string | boolean | undefined;
|
4455
4472
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4456
4473
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4457
4474
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4458
4475
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4459
4476
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4460
4477
|
centerAffix?: boolean | undefined;
|
4461
|
-
iconColor?: string | boolean | undefined;
|
4462
4478
|
} & {
|
4463
4479
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
4464
4480
|
}, {
|
@@ -4562,13 +4578,13 @@ export declare const VAutocomplete: {
|
|
4562
4578
|
rounded?: string | number | boolean | undefined;
|
4563
4579
|
baseColor?: string | undefined;
|
4564
4580
|
bgColor?: string | undefined;
|
4581
|
+
iconColor?: string | boolean | undefined;
|
4565
4582
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4566
4583
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4567
4584
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4568
4585
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4569
4586
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4570
4587
|
centerAffix?: boolean | undefined;
|
4571
|
-
iconColor?: string | boolean | undefined;
|
4572
4588
|
} & {
|
4573
4589
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
4574
4590
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -4577,7 +4593,7 @@ export declare const VAutocomplete: {
|
|
4577
4593
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
4578
4594
|
modelValue?: unknown;
|
4579
4595
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
4580
|
-
}, 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" | "
|
4596
|
+
}, 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}`> & {
|
4581
4597
|
_allExposed: {
|
4582
4598
|
reset: () => Promise<void>;
|
4583
4599
|
resetValidation: () => Promise<void>;
|
@@ -4603,7 +4619,7 @@ export declare const VAutocomplete: {
|
|
4603
4619
|
'update:search': (value: any) => true;
|
4604
4620
|
'update:modelValue': (value: any) => true;
|
4605
4621
|
'update:menu': (value: boolean) => true;
|
4606
|
-
}, "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, {
|
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" | "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, {
|
4607
4623
|
flat: boolean;
|
4608
4624
|
reverse: boolean;
|
4609
4625
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
@@ -4652,6 +4668,7 @@ export declare const VAutocomplete: {
|
|
4652
4668
|
hideSelected: boolean;
|
4653
4669
|
menuIcon: import("../../composables/icons.js").IconValue;
|
4654
4670
|
openOnClear: boolean;
|
4671
|
+
noAutoScroll: boolean;
|
4655
4672
|
clearOnSelect: boolean;
|
4656
4673
|
}, true, {}, import("vue").SlotsType<Partial<{
|
4657
4674
|
message: (arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNode[];
|
@@ -4682,6 +4699,14 @@ export declare const VAutocomplete: {
|
|
4682
4699
|
item: ListItem<unknown>;
|
4683
4700
|
index: number;
|
4684
4701
|
}) => import("vue").VNode[];
|
4702
|
+
subheader: (arg: {
|
4703
|
+
props: Record<string, unknown>;
|
4704
|
+
index: number;
|
4705
|
+
}) => import("vue").VNode[];
|
4706
|
+
divider: (arg: {
|
4707
|
+
props: Record<string, unknown>;
|
4708
|
+
index: number;
|
4709
|
+
}) => import("vue").VNode[];
|
4685
4710
|
'prepend-item': () => import("vue").VNode[];
|
4686
4711
|
'append-item': () => import("vue").VNode[];
|
4687
4712
|
'no-data': () => import("vue").VNode[];
|
@@ -4739,6 +4764,7 @@ export declare const VAutocomplete: {
|
|
4739
4764
|
hideSelected: boolean;
|
4740
4765
|
menuIcon: import("../../composables/icons.js").IconValue;
|
4741
4766
|
openOnClear: boolean;
|
4767
|
+
noAutoScroll: boolean;
|
4742
4768
|
clearOnSelect: boolean;
|
4743
4769
|
} & {
|
4744
4770
|
search?: string | undefined;
|
@@ -4765,6 +4791,7 @@ export declare const VAutocomplete: {
|
|
4765
4791
|
bgColor?: string | undefined;
|
4766
4792
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4767
4793
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4794
|
+
iconColor?: string | boolean | undefined;
|
4768
4795
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4769
4796
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4770
4797
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -4772,7 +4799,6 @@ export declare const VAutocomplete: {
|
|
4772
4799
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4773
4800
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4774
4801
|
centerAffix?: boolean | undefined;
|
4775
|
-
iconColor?: string | boolean | undefined;
|
4776
4802
|
hint?: string | undefined;
|
4777
4803
|
hideDetails?: boolean | "auto" | undefined;
|
4778
4804
|
suffix?: string | undefined;
|
@@ -4792,6 +4818,7 @@ export declare const VAutocomplete: {
|
|
4792
4818
|
rounded: string | number | boolean;
|
4793
4819
|
tile: boolean;
|
4794
4820
|
slim: boolean;
|
4821
|
+
filterable: boolean;
|
4795
4822
|
activatable: boolean;
|
4796
4823
|
selectable: boolean;
|
4797
4824
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
@@ -4809,6 +4836,7 @@ export declare const VAutocomplete: {
|
|
4809
4836
|
density: import("../../composables/density.js").Density;
|
4810
4837
|
tile: boolean;
|
4811
4838
|
slim: boolean;
|
4839
|
+
filterable: boolean;
|
4812
4840
|
activatable: boolean;
|
4813
4841
|
selectable: boolean;
|
4814
4842
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
@@ -4840,7 +4868,7 @@ export declare const VAutocomplete: {
|
|
4840
4868
|
value: boolean;
|
4841
4869
|
path: unknown[];
|
4842
4870
|
}) => any) | undefined;
|
4843
|
-
} & 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"> & {
|
4871
|
+
} & 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"> & {
|
4844
4872
|
items?: readonly any[] | undefined;
|
4845
4873
|
itemTitle?: SelectItemKey<any>;
|
4846
4874
|
itemValue?: SelectItemKey<any>;
|
@@ -5253,6 +5281,7 @@ export declare const VAutocomplete: {
|
|
5253
5281
|
bgColor?: string | undefined;
|
5254
5282
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5255
5283
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5284
|
+
iconColor?: string | boolean | undefined;
|
5256
5285
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5257
5286
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5258
5287
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -5261,7 +5290,6 @@ export declare const VAutocomplete: {
|
|
5261
5290
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5262
5291
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5263
5292
|
centerAffix?: boolean | undefined;
|
5264
|
-
iconColor?: string | boolean | undefined;
|
5265
5293
|
hint?: string | undefined;
|
5266
5294
|
hideDetails?: boolean | "auto" | undefined;
|
5267
5295
|
suffix?: string | undefined;
|
@@ -5405,6 +5433,7 @@ export declare const VAutocomplete: {
|
|
5405
5433
|
bgColor?: string | undefined;
|
5406
5434
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5407
5435
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5436
|
+
iconColor?: string | boolean | undefined;
|
5408
5437
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5409
5438
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5410
5439
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -5413,7 +5442,6 @@ export declare const VAutocomplete: {
|
|
5413
5442
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5414
5443
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5415
5444
|
centerAffix?: boolean | undefined;
|
5416
|
-
iconColor?: string | boolean | undefined;
|
5417
5445
|
hint?: string | undefined;
|
5418
5446
|
hideDetails?: boolean | "auto" | undefined;
|
5419
5447
|
suffix?: string | undefined;
|
@@ -5528,9 +5556,9 @@ export declare const VAutocomplete: {
|
|
5528
5556
|
baseColor?: string | undefined;
|
5529
5557
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5530
5558
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5559
|
+
iconColor?: string | boolean | undefined;
|
5531
5560
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
5532
5561
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
5533
|
-
iconColor?: string | boolean | undefined;
|
5534
5562
|
hint?: string | undefined;
|
5535
5563
|
hideDetails?: boolean | "auto" | undefined;
|
5536
5564
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -5584,9 +5612,9 @@ export declare const VAutocomplete: {
|
|
5584
5612
|
baseColor?: string | undefined;
|
5585
5613
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5586
5614
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5615
|
+
iconColor?: string | boolean | undefined;
|
5587
5616
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
5588
5617
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
5589
|
-
iconColor?: string | boolean | undefined;
|
5590
5618
|
hint?: string | undefined;
|
5591
5619
|
hideDetails?: boolean | "auto" | undefined;
|
5592
5620
|
} & {}, {
|
@@ -5687,9 +5715,9 @@ export declare const VAutocomplete: {
|
|
5687
5715
|
baseColor?: string | undefined;
|
5688
5716
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5689
5717
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5718
|
+
iconColor?: string | boolean | undefined;
|
5690
5719
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
5691
5720
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
5692
|
-
iconColor?: string | boolean | undefined;
|
5693
5721
|
hint?: string | undefined;
|
5694
5722
|
hideDetails?: boolean | "auto" | undefined;
|
5695
5723
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -5701,7 +5729,7 @@ export declare const VAutocomplete: {
|
|
5701
5729
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
5702
5730
|
modelValue?: unknown;
|
5703
5731
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
5704
|
-
}, 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" | "
|
5732
|
+
}, 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<{
|
5705
5733
|
$: import("vue").ComponentInternalInstance;
|
5706
5734
|
$data: {};
|
5707
5735
|
$props: Partial<{
|
@@ -5748,13 +5776,13 @@ export declare const VAutocomplete: {
|
|
5748
5776
|
rounded?: string | number | boolean | undefined;
|
5749
5777
|
baseColor?: string | undefined;
|
5750
5778
|
bgColor?: string | undefined;
|
5779
|
+
iconColor?: string | boolean | undefined;
|
5751
5780
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5752
5781
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5753
5782
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
5754
5783
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5755
5784
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5756
5785
|
centerAffix?: boolean | undefined;
|
5757
|
-
iconColor?: string | boolean | undefined;
|
5758
5786
|
} & 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">;
|
5759
5787
|
$attrs: {
|
5760
5788
|
[x: string]: unknown;
|
@@ -5807,13 +5835,13 @@ export declare const VAutocomplete: {
|
|
5807
5835
|
rounded?: string | number | boolean | undefined;
|
5808
5836
|
baseColor?: string | undefined;
|
5809
5837
|
bgColor?: string | undefined;
|
5838
|
+
iconColor?: string | boolean | undefined;
|
5810
5839
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5811
5840
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5812
5841
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
5813
5842
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5814
5843
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5815
5844
|
centerAffix?: boolean | undefined;
|
5816
|
-
iconColor?: string | boolean | undefined;
|
5817
5845
|
} & {
|
5818
5846
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
5819
5847
|
}, {
|
@@ -5917,13 +5945,13 @@ export declare const VAutocomplete: {
|
|
5917
5945
|
rounded?: string | number | boolean | undefined;
|
5918
5946
|
baseColor?: string | undefined;
|
5919
5947
|
bgColor?: string | undefined;
|
5948
|
+
iconColor?: string | boolean | undefined;
|
5920
5949
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5921
5950
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5922
5951
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
5923
5952
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5924
5953
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5925
5954
|
centerAffix?: boolean | undefined;
|
5926
|
-
iconColor?: string | boolean | undefined;
|
5927
5955
|
} & {
|
5928
5956
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
5929
5957
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -5932,7 +5960,7 @@ export declare const VAutocomplete: {
|
|
5932
5960
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
5933
5961
|
modelValue?: unknown;
|
5934
5962
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
5935
|
-
}, 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" | "
|
5963
|
+
}, 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}`> & {
|
5936
5964
|
_allExposed: {
|
5937
5965
|
reset: () => Promise<void>;
|
5938
5966
|
resetValidation: () => Promise<void>;
|
@@ -6100,6 +6128,7 @@ export declare const VAutocomplete: {
|
|
6100
6128
|
bgColor?: string | undefined;
|
6101
6129
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6102
6130
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6131
|
+
iconColor?: string | boolean | undefined;
|
6103
6132
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6104
6133
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6105
6134
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -6108,7 +6137,6 @@ export declare const VAutocomplete: {
|
|
6108
6137
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6109
6138
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6110
6139
|
centerAffix?: boolean | undefined;
|
6111
|
-
iconColor?: string | boolean | undefined;
|
6112
6140
|
hint?: string | undefined;
|
6113
6141
|
hideDetails?: boolean | "auto" | undefined;
|
6114
6142
|
suffix?: string | undefined;
|
@@ -6223,9 +6251,9 @@ export declare const VAutocomplete: {
|
|
6223
6251
|
baseColor?: string | undefined;
|
6224
6252
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6225
6253
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6254
|
+
iconColor?: string | boolean | undefined;
|
6226
6255
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
6227
6256
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
6228
|
-
iconColor?: string | boolean | undefined;
|
6229
6257
|
hint?: string | undefined;
|
6230
6258
|
hideDetails?: boolean | "auto" | undefined;
|
6231
6259
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -6279,9 +6307,9 @@ export declare const VAutocomplete: {
|
|
6279
6307
|
baseColor?: string | undefined;
|
6280
6308
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6281
6309
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6310
|
+
iconColor?: string | boolean | undefined;
|
6282
6311
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
6283
6312
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
6284
|
-
iconColor?: string | boolean | undefined;
|
6285
6313
|
hint?: string | undefined;
|
6286
6314
|
hideDetails?: boolean | "auto" | undefined;
|
6287
6315
|
} & {}, {
|
@@ -6382,9 +6410,9 @@ export declare const VAutocomplete: {
|
|
6382
6410
|
baseColor?: string | undefined;
|
6383
6411
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6384
6412
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6413
|
+
iconColor?: string | boolean | undefined;
|
6385
6414
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
6386
6415
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
6387
|
-
iconColor?: string | boolean | undefined;
|
6388
6416
|
hint?: string | undefined;
|
6389
6417
|
hideDetails?: boolean | "auto" | undefined;
|
6390
6418
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -6396,7 +6424,7 @@ export declare const VAutocomplete: {
|
|
6396
6424
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
6397
6425
|
modelValue?: unknown;
|
6398
6426
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
6399
|
-
}, 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" | "
|
6427
|
+
}, 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<{
|
6400
6428
|
$: import("vue").ComponentInternalInstance;
|
6401
6429
|
$data: {};
|
6402
6430
|
$props: Partial<{
|
@@ -6443,13 +6471,13 @@ export declare const VAutocomplete: {
|
|
6443
6471
|
rounded?: string | number | boolean | undefined;
|
6444
6472
|
baseColor?: string | undefined;
|
6445
6473
|
bgColor?: string | undefined;
|
6474
|
+
iconColor?: string | boolean | undefined;
|
6446
6475
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6447
6476
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6448
6477
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6449
6478
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6450
6479
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6451
6480
|
centerAffix?: boolean | undefined;
|
6452
|
-
iconColor?: string | boolean | undefined;
|
6453
6481
|
} & 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">;
|
6454
6482
|
$attrs: {
|
6455
6483
|
[x: string]: unknown;
|
@@ -6502,13 +6530,13 @@ export declare const VAutocomplete: {
|
|
6502
6530
|
rounded?: string | number | boolean | undefined;
|
6503
6531
|
baseColor?: string | undefined;
|
6504
6532
|
bgColor?: string | undefined;
|
6533
|
+
iconColor?: string | boolean | undefined;
|
6505
6534
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6506
6535
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6507
6536
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6508
6537
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6509
6538
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6510
6539
|
centerAffix?: boolean | undefined;
|
6511
|
-
iconColor?: string | boolean | undefined;
|
6512
6540
|
} & {
|
6513
6541
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
6514
6542
|
}, {
|
@@ -6612,13 +6640,13 @@ export declare const VAutocomplete: {
|
|
6612
6640
|
rounded?: string | number | boolean | undefined;
|
6613
6641
|
baseColor?: string | undefined;
|
6614
6642
|
bgColor?: string | undefined;
|
6643
|
+
iconColor?: string | boolean | undefined;
|
6615
6644
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6616
6645
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6617
6646
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6618
6647
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6619
6648
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6620
6649
|
centerAffix?: boolean | undefined;
|
6621
|
-
iconColor?: string | boolean | undefined;
|
6622
6650
|
} & {
|
6623
6651
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
6624
6652
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -6627,7 +6655,7 @@ export declare const VAutocomplete: {
|
|
6627
6655
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
6628
6656
|
modelValue?: unknown;
|
6629
6657
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
6630
|
-
}, 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" | "
|
6658
|
+
}, 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}`> & {
|
6631
6659
|
_allExposed: {
|
6632
6660
|
reset: () => Promise<void>;
|
6633
6661
|
resetValidation: () => Promise<void>;
|
@@ -6638,7 +6666,7 @@ export declare const VAutocomplete: {
|
|
6638
6666
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
6639
6667
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
6640
6668
|
} | {};
|
6641
|
-
}> & {} & 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" | "
|
6669
|
+
}> & {} & 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}`> & {
|
6642
6670
|
_allExposed: (HTMLInputElement & Omit<Omit<{
|
6643
6671
|
$: import("vue").ComponentInternalInstance;
|
6644
6672
|
$data: {};
|
@@ -6689,9 +6717,9 @@ export declare const VAutocomplete: {
|
|
6689
6717
|
baseColor?: string | undefined;
|
6690
6718
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6691
6719
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6720
|
+
iconColor?: string | boolean | undefined;
|
6692
6721
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
6693
6722
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
6694
|
-
iconColor?: string | boolean | undefined;
|
6695
6723
|
hint?: string | undefined;
|
6696
6724
|
hideDetails?: boolean | "auto" | undefined;
|
6697
6725
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -6745,9 +6773,9 @@ export declare const VAutocomplete: {
|
|
6745
6773
|
baseColor?: string | undefined;
|
6746
6774
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6747
6775
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6776
|
+
iconColor?: string | boolean | undefined;
|
6748
6777
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
6749
6778
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
6750
|
-
iconColor?: string | boolean | undefined;
|
6751
6779
|
hint?: string | undefined;
|
6752
6780
|
hideDetails?: boolean | "auto" | undefined;
|
6753
6781
|
} & {}, {
|
@@ -6848,9 +6876,9 @@ export declare const VAutocomplete: {
|
|
6848
6876
|
baseColor?: string | undefined;
|
6849
6877
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6850
6878
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6879
|
+
iconColor?: string | boolean | undefined;
|
6851
6880
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
6852
6881
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
6853
|
-
iconColor?: string | boolean | undefined;
|
6854
6882
|
hint?: string | undefined;
|
6855
6883
|
hideDetails?: boolean | "auto" | undefined;
|
6856
6884
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -6862,7 +6890,7 @@ export declare const VAutocomplete: {
|
|
6862
6890
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
6863
6891
|
modelValue?: unknown;
|
6864
6892
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
6865
|
-
}, 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" | "
|
6893
|
+
}, 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<{
|
6866
6894
|
$: import("vue").ComponentInternalInstance;
|
6867
6895
|
$data: {};
|
6868
6896
|
$props: Partial<{
|
@@ -6909,13 +6937,13 @@ export declare const VAutocomplete: {
|
|
6909
6937
|
rounded?: string | number | boolean | undefined;
|
6910
6938
|
baseColor?: string | undefined;
|
6911
6939
|
bgColor?: string | undefined;
|
6940
|
+
iconColor?: string | boolean | undefined;
|
6912
6941
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6913
6942
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6914
6943
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6915
6944
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6916
6945
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6917
6946
|
centerAffix?: boolean | undefined;
|
6918
|
-
iconColor?: string | boolean | undefined;
|
6919
6947
|
} & 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">;
|
6920
6948
|
$attrs: {
|
6921
6949
|
[x: string]: unknown;
|
@@ -6968,13 +6996,13 @@ export declare const VAutocomplete: {
|
|
6968
6996
|
rounded?: string | number | boolean | undefined;
|
6969
6997
|
baseColor?: string | undefined;
|
6970
6998
|
bgColor?: string | undefined;
|
6999
|
+
iconColor?: string | boolean | undefined;
|
6971
7000
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6972
7001
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6973
7002
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6974
7003
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6975
7004
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6976
7005
|
centerAffix?: boolean | undefined;
|
6977
|
-
iconColor?: string | boolean | undefined;
|
6978
7006
|
} & {
|
6979
7007
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
6980
7008
|
}, {
|
@@ -7078,13 +7106,13 @@ export declare const VAutocomplete: {
|
|
7078
7106
|
rounded?: string | number | boolean | undefined;
|
7079
7107
|
baseColor?: string | undefined;
|
7080
7108
|
bgColor?: string | undefined;
|
7109
|
+
iconColor?: string | boolean | undefined;
|
7081
7110
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7082
7111
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7083
7112
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
7084
7113
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7085
7114
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7086
7115
|
centerAffix?: boolean | undefined;
|
7087
|
-
iconColor?: string | boolean | undefined;
|
7088
7116
|
} & {
|
7089
7117
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
7090
7118
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -7093,7 +7121,7 @@ export declare const VAutocomplete: {
|
|
7093
7121
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
7094
7122
|
modelValue?: unknown;
|
7095
7123
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
7096
|
-
}, 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" | "
|
7124
|
+
}, 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}`> & {
|
7097
7125
|
_allExposed: {
|
7098
7126
|
reset: () => Promise<void>;
|
7099
7127
|
resetValidation: () => Promise<void>;
|
@@ -7163,6 +7191,7 @@ export declare const VAutocomplete: {
|
|
7163
7191
|
hideSelected: boolean;
|
7164
7192
|
menuIcon: import("../../composables/icons.js").IconValue;
|
7165
7193
|
openOnClear: boolean;
|
7194
|
+
noAutoScroll: boolean;
|
7166
7195
|
clearOnSelect: boolean;
|
7167
7196
|
}>;
|
7168
7197
|
__isFragment?: never;
|
@@ -7215,6 +7244,7 @@ export declare const VAutocomplete: {
|
|
7215
7244
|
hideSelected: boolean;
|
7216
7245
|
menuIcon: import("../../composables/icons.js").IconValue;
|
7217
7246
|
openOnClear: boolean;
|
7247
|
+
noAutoScroll: boolean;
|
7218
7248
|
clearOnSelect: boolean;
|
7219
7249
|
} & {
|
7220
7250
|
search?: string | undefined;
|
@@ -7241,6 +7271,7 @@ export declare const VAutocomplete: {
|
|
7241
7271
|
bgColor?: string | undefined;
|
7242
7272
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7243
7273
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7274
|
+
iconColor?: string | boolean | undefined;
|
7244
7275
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7245
7276
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
7246
7277
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -7248,7 +7279,6 @@ export declare const VAutocomplete: {
|
|
7248
7279
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7249
7280
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7250
7281
|
centerAffix?: boolean | undefined;
|
7251
|
-
iconColor?: string | boolean | undefined;
|
7252
7282
|
hint?: string | undefined;
|
7253
7283
|
hideDetails?: boolean | "auto" | undefined;
|
7254
7284
|
suffix?: string | undefined;
|
@@ -7268,6 +7298,7 @@ export declare const VAutocomplete: {
|
|
7268
7298
|
rounded: string | number | boolean;
|
7269
7299
|
tile: boolean;
|
7270
7300
|
slim: boolean;
|
7301
|
+
filterable: boolean;
|
7271
7302
|
activatable: boolean;
|
7272
7303
|
selectable: boolean;
|
7273
7304
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
@@ -7285,6 +7316,7 @@ export declare const VAutocomplete: {
|
|
7285
7316
|
density: import("../../composables/density.js").Density;
|
7286
7317
|
tile: boolean;
|
7287
7318
|
slim: boolean;
|
7319
|
+
filterable: boolean;
|
7288
7320
|
activatable: boolean;
|
7289
7321
|
selectable: boolean;
|
7290
7322
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
@@ -7316,7 +7348,7 @@ export declare const VAutocomplete: {
|
|
7316
7348
|
value: boolean;
|
7317
7349
|
path: unknown[];
|
7318
7350
|
}) => any) | undefined;
|
7319
|
-
} & 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"> & {
|
7351
|
+
} & 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"> & {
|
7320
7352
|
items?: readonly any[] | undefined;
|
7321
7353
|
itemTitle?: SelectItemKey<any>;
|
7322
7354
|
itemValue?: SelectItemKey<any>;
|
@@ -7729,6 +7761,7 @@ export declare const VAutocomplete: {
|
|
7729
7761
|
bgColor?: string | undefined;
|
7730
7762
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7731
7763
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7764
|
+
iconColor?: string | boolean | undefined;
|
7732
7765
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7733
7766
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7734
7767
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -7737,7 +7770,6 @@ export declare const VAutocomplete: {
|
|
7737
7770
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7738
7771
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7739
7772
|
centerAffix?: boolean | undefined;
|
7740
|
-
iconColor?: string | boolean | undefined;
|
7741
7773
|
hint?: string | undefined;
|
7742
7774
|
hideDetails?: boolean | "auto" | undefined;
|
7743
7775
|
suffix?: string | undefined;
|
@@ -7881,6 +7913,7 @@ export declare const VAutocomplete: {
|
|
7881
7913
|
bgColor?: string | undefined;
|
7882
7914
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7883
7915
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7916
|
+
iconColor?: string | boolean | undefined;
|
7884
7917
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7885
7918
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7886
7919
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -7889,7 +7922,6 @@ export declare const VAutocomplete: {
|
|
7889
7922
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7890
7923
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7891
7924
|
centerAffix?: boolean | undefined;
|
7892
|
-
iconColor?: string | boolean | undefined;
|
7893
7925
|
hint?: string | undefined;
|
7894
7926
|
hideDetails?: boolean | "auto" | undefined;
|
7895
7927
|
suffix?: string | undefined;
|
@@ -8004,9 +8036,9 @@ export declare const VAutocomplete: {
|
|
8004
8036
|
baseColor?: string | undefined;
|
8005
8037
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8006
8038
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8039
|
+
iconColor?: string | boolean | undefined;
|
8007
8040
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
8008
8041
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
8009
|
-
iconColor?: string | boolean | undefined;
|
8010
8042
|
hint?: string | undefined;
|
8011
8043
|
hideDetails?: boolean | "auto" | undefined;
|
8012
8044
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -8060,9 +8092,9 @@ export declare const VAutocomplete: {
|
|
8060
8092
|
baseColor?: string | undefined;
|
8061
8093
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8062
8094
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8095
|
+
iconColor?: string | boolean | undefined;
|
8063
8096
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
8064
8097
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
8065
|
-
iconColor?: string | boolean | undefined;
|
8066
8098
|
hint?: string | undefined;
|
8067
8099
|
hideDetails?: boolean | "auto" | undefined;
|
8068
8100
|
} & {}, {
|
@@ -8163,9 +8195,9 @@ export declare const VAutocomplete: {
|
|
8163
8195
|
baseColor?: string | undefined;
|
8164
8196
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8165
8197
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8198
|
+
iconColor?: string | boolean | undefined;
|
8166
8199
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
8167
8200
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
8168
|
-
iconColor?: string | boolean | undefined;
|
8169
8201
|
hint?: string | undefined;
|
8170
8202
|
hideDetails?: boolean | "auto" | undefined;
|
8171
8203
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -8177,7 +8209,7 @@ export declare const VAutocomplete: {
|
|
8177
8209
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
8178
8210
|
modelValue?: unknown;
|
8179
8211
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
8180
|
-
}, 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" | "
|
8212
|
+
}, 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<{
|
8181
8213
|
$: import("vue").ComponentInternalInstance;
|
8182
8214
|
$data: {};
|
8183
8215
|
$props: Partial<{
|
@@ -8224,13 +8256,13 @@ export declare const VAutocomplete: {
|
|
8224
8256
|
rounded?: string | number | boolean | undefined;
|
8225
8257
|
baseColor?: string | undefined;
|
8226
8258
|
bgColor?: string | undefined;
|
8259
|
+
iconColor?: string | boolean | undefined;
|
8227
8260
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8228
8261
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8229
8262
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
8230
8263
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8231
8264
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8232
8265
|
centerAffix?: boolean | undefined;
|
8233
|
-
iconColor?: string | boolean | undefined;
|
8234
8266
|
} & 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">;
|
8235
8267
|
$attrs: {
|
8236
8268
|
[x: string]: unknown;
|
@@ -8283,13 +8315,13 @@ export declare const VAutocomplete: {
|
|
8283
8315
|
rounded?: string | number | boolean | undefined;
|
8284
8316
|
baseColor?: string | undefined;
|
8285
8317
|
bgColor?: string | undefined;
|
8318
|
+
iconColor?: string | boolean | undefined;
|
8286
8319
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8287
8320
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8288
8321
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
8289
8322
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8290
8323
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8291
8324
|
centerAffix?: boolean | undefined;
|
8292
|
-
iconColor?: string | boolean | undefined;
|
8293
8325
|
} & {
|
8294
8326
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
8295
8327
|
}, {
|
@@ -8393,13 +8425,13 @@ export declare const VAutocomplete: {
|
|
8393
8425
|
rounded?: string | number | boolean | undefined;
|
8394
8426
|
baseColor?: string | undefined;
|
8395
8427
|
bgColor?: string | undefined;
|
8428
|
+
iconColor?: string | boolean | undefined;
|
8396
8429
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8397
8430
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8398
8431
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
8399
8432
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8400
8433
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8401
8434
|
centerAffix?: boolean | undefined;
|
8402
|
-
iconColor?: string | boolean | undefined;
|
8403
8435
|
} & {
|
8404
8436
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
8405
8437
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -8408,7 +8440,7 @@ export declare const VAutocomplete: {
|
|
8408
8440
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
8409
8441
|
modelValue?: unknown;
|
8410
8442
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
8411
|
-
}, 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" | "
|
8443
|
+
}, 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}`> & {
|
8412
8444
|
_allExposed: {
|
8413
8445
|
reset: () => Promise<void>;
|
8414
8446
|
resetValidation: () => Promise<void>;
|
@@ -8576,6 +8608,7 @@ export declare const VAutocomplete: {
|
|
8576
8608
|
bgColor?: string | undefined;
|
8577
8609
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8578
8610
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8611
|
+
iconColor?: string | boolean | undefined;
|
8579
8612
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8580
8613
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8581
8614
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -8584,7 +8617,6 @@ export declare const VAutocomplete: {
|
|
8584
8617
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8585
8618
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8586
8619
|
centerAffix?: boolean | undefined;
|
8587
|
-
iconColor?: string | boolean | undefined;
|
8588
8620
|
hint?: string | undefined;
|
8589
8621
|
hideDetails?: boolean | "auto" | undefined;
|
8590
8622
|
suffix?: string | undefined;
|
@@ -8699,9 +8731,9 @@ export declare const VAutocomplete: {
|
|
8699
8731
|
baseColor?: string | undefined;
|
8700
8732
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8701
8733
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8734
|
+
iconColor?: string | boolean | undefined;
|
8702
8735
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
8703
8736
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
8704
|
-
iconColor?: string | boolean | undefined;
|
8705
8737
|
hint?: string | undefined;
|
8706
8738
|
hideDetails?: boolean | "auto" | undefined;
|
8707
8739
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -8755,9 +8787,9 @@ export declare const VAutocomplete: {
|
|
8755
8787
|
baseColor?: string | undefined;
|
8756
8788
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8757
8789
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8790
|
+
iconColor?: string | boolean | undefined;
|
8758
8791
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
8759
8792
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
8760
|
-
iconColor?: string | boolean | undefined;
|
8761
8793
|
hint?: string | undefined;
|
8762
8794
|
hideDetails?: boolean | "auto" | undefined;
|
8763
8795
|
} & {}, {
|
@@ -8858,9 +8890,9 @@ export declare const VAutocomplete: {
|
|
8858
8890
|
baseColor?: string | undefined;
|
8859
8891
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8860
8892
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8893
|
+
iconColor?: string | boolean | undefined;
|
8861
8894
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
8862
8895
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
8863
|
-
iconColor?: string | boolean | undefined;
|
8864
8896
|
hint?: string | undefined;
|
8865
8897
|
hideDetails?: boolean | "auto" | undefined;
|
8866
8898
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -8872,7 +8904,7 @@ export declare const VAutocomplete: {
|
|
8872
8904
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
8873
8905
|
modelValue?: unknown;
|
8874
8906
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
8875
|
-
}, 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" | "
|
8907
|
+
}, 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<{
|
8876
8908
|
$: import("vue").ComponentInternalInstance;
|
8877
8909
|
$data: {};
|
8878
8910
|
$props: Partial<{
|
@@ -8919,13 +8951,13 @@ export declare const VAutocomplete: {
|
|
8919
8951
|
rounded?: string | number | boolean | undefined;
|
8920
8952
|
baseColor?: string | undefined;
|
8921
8953
|
bgColor?: string | undefined;
|
8954
|
+
iconColor?: string | boolean | undefined;
|
8922
8955
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8923
8956
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8924
8957
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
8925
8958
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8926
8959
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8927
8960
|
centerAffix?: boolean | undefined;
|
8928
|
-
iconColor?: string | boolean | undefined;
|
8929
8961
|
} & 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">;
|
8930
8962
|
$attrs: {
|
8931
8963
|
[x: string]: unknown;
|
@@ -8978,13 +9010,13 @@ export declare const VAutocomplete: {
|
|
8978
9010
|
rounded?: string | number | boolean | undefined;
|
8979
9011
|
baseColor?: string | undefined;
|
8980
9012
|
bgColor?: string | undefined;
|
9013
|
+
iconColor?: string | boolean | undefined;
|
8981
9014
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8982
9015
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8983
9016
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
8984
9017
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8985
9018
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8986
9019
|
centerAffix?: boolean | undefined;
|
8987
|
-
iconColor?: string | boolean | undefined;
|
8988
9020
|
} & {
|
8989
9021
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
8990
9022
|
}, {
|
@@ -9088,13 +9120,13 @@ export declare const VAutocomplete: {
|
|
9088
9120
|
rounded?: string | number | boolean | undefined;
|
9089
9121
|
baseColor?: string | undefined;
|
9090
9122
|
bgColor?: string | undefined;
|
9123
|
+
iconColor?: string | boolean | undefined;
|
9091
9124
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9092
9125
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9093
9126
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
9094
9127
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9095
9128
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9096
9129
|
centerAffix?: boolean | undefined;
|
9097
|
-
iconColor?: string | boolean | undefined;
|
9098
9130
|
} & {
|
9099
9131
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
9100
9132
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -9103,7 +9135,7 @@ export declare const VAutocomplete: {
|
|
9103
9135
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
9104
9136
|
modelValue?: unknown;
|
9105
9137
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
9106
|
-
}, 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" | "
|
9138
|
+
}, 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}`> & {
|
9107
9139
|
_allExposed: {
|
9108
9140
|
reset: () => Promise<void>;
|
9109
9141
|
resetValidation: () => Promise<void>;
|
@@ -9114,7 +9146,7 @@ export declare const VAutocomplete: {
|
|
9114
9146
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
9115
9147
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
9116
9148
|
} | {};
|
9117
|
-
}> & {} & 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" | "
|
9149
|
+
}> & {} & 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}`> & {
|
9118
9150
|
_allExposed: (HTMLInputElement & Omit<Omit<{
|
9119
9151
|
$: import("vue").ComponentInternalInstance;
|
9120
9152
|
$data: {};
|
@@ -9165,9 +9197,9 @@ export declare const VAutocomplete: {
|
|
9165
9197
|
baseColor?: string | undefined;
|
9166
9198
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9167
9199
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9200
|
+
iconColor?: string | boolean | undefined;
|
9168
9201
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
9169
9202
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
9170
|
-
iconColor?: string | boolean | undefined;
|
9171
9203
|
hint?: string | undefined;
|
9172
9204
|
hideDetails?: boolean | "auto" | undefined;
|
9173
9205
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -9221,9 +9253,9 @@ export declare const VAutocomplete: {
|
|
9221
9253
|
baseColor?: string | undefined;
|
9222
9254
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9223
9255
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9256
|
+
iconColor?: string | boolean | undefined;
|
9224
9257
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
9225
9258
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
9226
|
-
iconColor?: string | boolean | undefined;
|
9227
9259
|
hint?: string | undefined;
|
9228
9260
|
hideDetails?: boolean | "auto" | undefined;
|
9229
9261
|
} & {}, {
|
@@ -9324,9 +9356,9 @@ export declare const VAutocomplete: {
|
|
9324
9356
|
baseColor?: string | undefined;
|
9325
9357
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9326
9358
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9359
|
+
iconColor?: string | boolean | undefined;
|
9327
9360
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
9328
9361
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
9329
|
-
iconColor?: string | boolean | undefined;
|
9330
9362
|
hint?: string | undefined;
|
9331
9363
|
hideDetails?: boolean | "auto" | undefined;
|
9332
9364
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -9338,7 +9370,7 @@ export declare const VAutocomplete: {
|
|
9338
9370
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
9339
9371
|
modelValue?: unknown;
|
9340
9372
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
9341
|
-
}, 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" | "
|
9373
|
+
}, 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<{
|
9342
9374
|
$: import("vue").ComponentInternalInstance;
|
9343
9375
|
$data: {};
|
9344
9376
|
$props: Partial<{
|
@@ -9385,13 +9417,13 @@ export declare const VAutocomplete: {
|
|
9385
9417
|
rounded?: string | number | boolean | undefined;
|
9386
9418
|
baseColor?: string | undefined;
|
9387
9419
|
bgColor?: string | undefined;
|
9420
|
+
iconColor?: string | boolean | undefined;
|
9388
9421
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9389
9422
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9390
9423
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
9391
9424
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9392
9425
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9393
9426
|
centerAffix?: boolean | undefined;
|
9394
|
-
iconColor?: string | boolean | undefined;
|
9395
9427
|
} & 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">;
|
9396
9428
|
$attrs: {
|
9397
9429
|
[x: string]: unknown;
|
@@ -9444,13 +9476,13 @@ export declare const VAutocomplete: {
|
|
9444
9476
|
rounded?: string | number | boolean | undefined;
|
9445
9477
|
baseColor?: string | undefined;
|
9446
9478
|
bgColor?: string | undefined;
|
9479
|
+
iconColor?: string | boolean | undefined;
|
9447
9480
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9448
9481
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9449
9482
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
9450
9483
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9451
9484
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9452
9485
|
centerAffix?: boolean | undefined;
|
9453
|
-
iconColor?: string | boolean | undefined;
|
9454
9486
|
} & {
|
9455
9487
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
9456
9488
|
}, {
|
@@ -9554,13 +9586,13 @@ export declare const VAutocomplete: {
|
|
9554
9586
|
rounded?: string | number | boolean | undefined;
|
9555
9587
|
baseColor?: string | undefined;
|
9556
9588
|
bgColor?: string | undefined;
|
9589
|
+
iconColor?: string | boolean | undefined;
|
9557
9590
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9558
9591
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9559
9592
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
9560
9593
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9561
9594
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9562
9595
|
centerAffix?: boolean | undefined;
|
9563
|
-
iconColor?: string | boolean | undefined;
|
9564
9596
|
} & {
|
9565
9597
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
9566
9598
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -9569,7 +9601,7 @@ export declare const VAutocomplete: {
|
|
9569
9601
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
9570
9602
|
modelValue?: unknown;
|
9571
9603
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
9572
|
-
}, 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" | "
|
9604
|
+
}, 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}`> & {
|
9573
9605
|
_allExposed: {
|
9574
9606
|
reset: () => Promise<void>;
|
9575
9607
|
resetValidation: () => Promise<void>;
|
@@ -9595,7 +9627,7 @@ export declare const VAutocomplete: {
|
|
9595
9627
|
'update:search': (value: any) => true;
|
9596
9628
|
'update:modelValue': (value: any) => true;
|
9597
9629
|
'update:menu': (value: boolean) => true;
|
9598
|
-
}, "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, {
|
9630
|
+
}, "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, {
|
9599
9631
|
flat: boolean;
|
9600
9632
|
reverse: boolean;
|
9601
9633
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
@@ -9644,6 +9676,7 @@ export declare const VAutocomplete: {
|
|
9644
9676
|
hideSelected: boolean;
|
9645
9677
|
menuIcon: import("../../composables/icons.js").IconValue;
|
9646
9678
|
openOnClear: boolean;
|
9679
|
+
noAutoScroll: boolean;
|
9647
9680
|
clearOnSelect: boolean;
|
9648
9681
|
}, {}, string, import("vue").SlotsType<Partial<{
|
9649
9682
|
message: (arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNode[];
|
@@ -9674,6 +9707,14 @@ export declare const VAutocomplete: {
|
|
9674
9707
|
item: ListItem<unknown>;
|
9675
9708
|
index: number;
|
9676
9709
|
}) => import("vue").VNode[];
|
9710
|
+
subheader: (arg: {
|
9711
|
+
props: Record<string, unknown>;
|
9712
|
+
index: number;
|
9713
|
+
}) => import("vue").VNode[];
|
9714
|
+
divider: (arg: {
|
9715
|
+
props: Record<string, unknown>;
|
9716
|
+
index: number;
|
9717
|
+
}) => import("vue").VNode[];
|
9677
9718
|
'prepend-item': () => import("vue").VNode[];
|
9678
9719
|
'append-item': () => import("vue").VNode[];
|
9679
9720
|
'no-data': () => import("vue").VNode[];
|
@@ -9701,6 +9742,14 @@ export declare const VAutocomplete: {
|
|
9701
9742
|
item: ListItem<Item>;
|
9702
9743
|
index: number;
|
9703
9744
|
};
|
9745
|
+
subheader: {
|
9746
|
+
props: Record<string, unknown>;
|
9747
|
+
index: number;
|
9748
|
+
};
|
9749
|
+
divider: {
|
9750
|
+
props: Record<string, unknown>;
|
9751
|
+
index: number;
|
9752
|
+
};
|
9704
9753
|
"prepend-item": never;
|
9705
9754
|
"append-item": never;
|
9706
9755
|
"no-data": never;
|
@@ -9798,6 +9847,7 @@ export declare const VAutocomplete: {
|
|
9798
9847
|
bgColor: StringConstructor;
|
9799
9848
|
prependIcon: PropType<import("../../composables/icons.js").IconValue>;
|
9800
9849
|
appendIcon: PropType<import("../../composables/icons.js").IconValue>;
|
9850
|
+
iconColor: (StringConstructor | BooleanConstructor)[];
|
9801
9851
|
clearIcon: {
|
9802
9852
|
type: PropType<import("../../composables/icons.js").IconValue>;
|
9803
9853
|
default: string;
|
@@ -9813,7 +9863,6 @@ export declare const VAutocomplete: {
|
|
9813
9863
|
default: undefined;
|
9814
9864
|
};
|
9815
9865
|
glow: BooleanConstructor;
|
9816
|
-
iconColor: (StringConstructor | BooleanConstructor)[];
|
9817
9866
|
hideSpinButtons: BooleanConstructor;
|
9818
9867
|
hint: StringConstructor;
|
9819
9868
|
persistentHint: BooleanConstructor;
|
@@ -9882,6 +9931,7 @@ export declare const VAutocomplete: {
|
|
9882
9931
|
};
|
9883
9932
|
openOnClear: BooleanConstructor;
|
9884
9933
|
itemColor: StringConstructor;
|
9934
|
+
noAutoScroll: BooleanConstructor;
|
9885
9935
|
customFilter: PropType<import("../../composables/filter.js").FilterFunction>;
|
9886
9936
|
customKeyFilter: PropType<import("../../composables/filter.js").FilterKeyFunctions>;
|
9887
9937
|
filterKeys: {
|
@@ -9992,6 +10042,7 @@ export declare const VAutocomplete: {
|
|
9992
10042
|
bgColor: StringConstructor;
|
9993
10043
|
prependIcon: PropType<import("../../composables/icons.js").IconValue>;
|
9994
10044
|
appendIcon: PropType<import("../../composables/icons.js").IconValue>;
|
10045
|
+
iconColor: (StringConstructor | BooleanConstructor)[];
|
9995
10046
|
clearIcon: {
|
9996
10047
|
type: PropType<import("../../composables/icons.js").IconValue>;
|
9997
10048
|
default: string;
|
@@ -10007,7 +10058,6 @@ export declare const VAutocomplete: {
|
|
10007
10058
|
default: undefined;
|
10008
10059
|
};
|
10009
10060
|
glow: BooleanConstructor;
|
10010
|
-
iconColor: (StringConstructor | BooleanConstructor)[];
|
10011
10061
|
hideSpinButtons: BooleanConstructor;
|
10012
10062
|
hint: StringConstructor;
|
10013
10063
|
persistentHint: BooleanConstructor;
|
@@ -10076,6 +10126,7 @@ export declare const VAutocomplete: {
|
|
10076
10126
|
};
|
10077
10127
|
openOnClear: BooleanConstructor;
|
10078
10128
|
itemColor: StringConstructor;
|
10129
|
+
noAutoScroll: BooleanConstructor;
|
10079
10130
|
customFilter: PropType<import("../../composables/filter.js").FilterFunction>;
|
10080
10131
|
customKeyFilter: PropType<import("../../composables/filter.js").FilterKeyFunctions>;
|
10081
10132
|
filterKeys: {
|