@vuetify/nightly 3.8.4-master.2025-05-13 → 3.8.5-dev.2025-05-17
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 +18 -21
- package/dist/_component-variables-labs.sass +1 -0
- package/dist/json/attributes.json +2187 -1835
- package/dist/json/importMap-labs.json +36 -32
- package/dist/json/importMap.json +164 -164
- package/dist/json/tags.json +93 -0
- package/dist/json/web-types.json +4575 -3349
- package/dist/vuetify-labs.cjs +424 -130
- package/dist/vuetify-labs.css +3917 -3861
- package/dist/vuetify-labs.d.ts +2287 -1173
- package/dist/vuetify-labs.esm.js +425 -131
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +424 -130
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +151 -41
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +3736 -3683
- package/dist/vuetify.d.ts +570 -513
- package/dist/vuetify.esm.js +152 -42
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +151 -41
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +1181 -1173
- 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 +14 -9
- package/lib/components/VAlert/VAlert.js.map +1 -1
- package/lib/components/VAlert/VAlert.sass +7 -1
- package/lib/components/VAutocomplete/VAutocomplete.d.ts +94 -94
- package/lib/components/VBottomSheet/VBottomSheet.css +1 -1
- package/lib/components/VBottomSheet/VBottomSheet.sass +1 -1
- package/lib/components/VBtn/VBtn.css +25 -0
- package/lib/components/VBtn/VBtn.sass +9 -0
- package/lib/components/VBtn/_variables.scss +1 -0
- 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/VCheckbox/VCheckbox.d.ts +3 -3
- package/lib/components/VCombobox/VCombobox.d.ts +94 -94
- package/lib/components/VField/VField.d.ts +3 -3
- package/lib/components/VFileInput/VFileInput.d.ts +15 -15
- package/lib/components/VInput/VInput.d.ts +4 -4
- package/lib/components/VNumberInput/VNumberInput.d.ts +89 -89
- package/lib/components/VOverlay/VOverlay.css +1 -1
- package/lib/components/VOverlay/_variables.scss +1 -1
- package/lib/components/VRadioGroup/VRadioGroup.d.ts +3 -3
- package/lib/components/VRangeSlider/VRangeSlider.d.ts +3 -3
- package/lib/components/VSelect/VSelect.d.ts +94 -94
- package/lib/components/VSlider/VSlider.d.ts +3 -3
- package/lib/components/VSnackbarQueue/VSnackbarQueue.d.ts +3 -1
- package/lib/components/VSnackbarQueue/VSnackbarQueue.js.map +1 -1
- package/lib/components/VSwitch/VSwitch.d.ts +3 -3
- package/lib/components/VTextField/VTextField.d.ts +27 -27
- package/lib/components/VTextarea/VTextarea.d.ts +15 -15
- package/lib/composables/calendar.d.ts +1 -0
- package/lib/composables/calendar.js.map +1 -1
- package/lib/composables/date/index.d.ts +1 -0
- package/lib/composables/date/index.js +1 -0
- package/lib/composables/date/index.js.map +1 -1
- package/lib/composables/dateFormat.d.ts +24 -0
- package/lib/composables/dateFormat.js +112 -0
- package/lib/composables/dateFormat.js.map +1 -0
- 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/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/entry-bundler.js +1 -1
- package/lib/entry-bundler.js.map +1 -1
- package/lib/framework.d.ts +77 -69
- package/lib/framework.js +1 -1
- package/lib/framework.js.map +1 -1
- package/lib/iconsets/mdi.js +2 -1
- package/lib/iconsets/mdi.js.map +1 -1
- package/lib/labs/VColorInput/VColorInput.css +4 -0
- package/lib/labs/VColorInput/VColorInput.d.ts +1767 -0
- package/lib/labs/VColorInput/VColorInput.js +129 -0
- package/lib/labs/VColorInput/VColorInput.js.map +1 -0
- package/lib/labs/VColorInput/VColorInput.sass +7 -0
- package/lib/labs/VColorInput/_variables.scss +2 -0
- package/lib/labs/VColorInput/index.d.ts +1 -0
- package/lib/labs/VColorInput/index.js +2 -0
- package/lib/labs/VColorInput/index.js.map +1 -0
- package/lib/labs/VDateInput/VDateInput.d.ts +115 -118
- package/lib/labs/VDateInput/VDateInput.js +38 -79
- package/lib/labs/VDateInput/VDateInput.js.map +1 -1
- 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/components.d.ts +1 -0
- package/lib/labs/components.js +1 -0
- package/lib/labs/components.js.map +1 -1
- 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;
|
@@ -381,6 +381,10 @@ export declare const makeVAutocompleteProps: <Defaults extends {
|
|
381
381
|
type: PropType<unknown extends Defaults["appendIcon"] ? import("../../composables/icons.js").IconValue : import("../../composables/icons.js").IconValue | Defaults["appendIcon"]>;
|
382
382
|
default: unknown extends Defaults["appendIcon"] ? import("../../composables/icons.js").IconValue : NonNullable<import("../../composables/icons.js").IconValue> | Defaults["appendIcon"];
|
383
383
|
};
|
384
|
+
iconColor: unknown extends Defaults["iconColor"] ? (StringConstructor | BooleanConstructor)[] : {
|
385
|
+
type: PropType<unknown extends Defaults["iconColor"] ? string | boolean : string | boolean | Defaults["iconColor"]>;
|
386
|
+
default: unknown extends Defaults["iconColor"] ? string | boolean : NonNullable<string | boolean> | Defaults["iconColor"];
|
387
|
+
};
|
384
388
|
clearIcon: unknown extends Defaults["clearIcon"] ? {
|
385
389
|
type: PropType<import("../../composables/icons.js").IconValue>;
|
386
390
|
default: string;
|
@@ -429,10 +433,6 @@ export declare const makeVAutocompleteProps: <Defaults extends {
|
|
429
433
|
type: PropType<unknown extends Defaults["glow"] ? boolean : boolean | Defaults["glow"]>;
|
430
434
|
default: unknown extends Defaults["glow"] ? boolean : boolean | Defaults["glow"];
|
431
435
|
};
|
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
436
|
hideSpinButtons: unknown extends Defaults["hideSpinButtons"] ? BooleanConstructor : {
|
437
437
|
type: PropType<unknown extends Defaults["hideSpinButtons"] ? boolean : boolean | Defaults["hideSpinButtons"]>;
|
438
438
|
default: unknown extends Defaults["hideSpinButtons"] ? boolean : boolean | Defaults["hideSpinButtons"];
|
@@ -2249,6 +2249,7 @@ export declare const VAutocomplete: {
|
|
2249
2249
|
bgColor?: string | undefined;
|
2250
2250
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2251
2251
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2252
|
+
iconColor?: string | boolean | undefined;
|
2252
2253
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2253
2254
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
2254
2255
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -2256,7 +2257,6 @@ export declare const VAutocomplete: {
|
|
2256
2257
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2257
2258
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2258
2259
|
centerAffix?: boolean | undefined;
|
2259
|
-
iconColor?: string | boolean | undefined;
|
2260
2260
|
hint?: string | undefined;
|
2261
2261
|
hideDetails?: boolean | "auto" | undefined;
|
2262
2262
|
suffix?: string | undefined;
|
@@ -2737,6 +2737,7 @@ export declare const VAutocomplete: {
|
|
2737
2737
|
bgColor?: string | undefined;
|
2738
2738
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2739
2739
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2740
|
+
iconColor?: string | boolean | undefined;
|
2740
2741
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2741
2742
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2742
2743
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -2745,7 +2746,6 @@ export declare const VAutocomplete: {
|
|
2745
2746
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2746
2747
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2747
2748
|
centerAffix?: boolean | undefined;
|
2748
|
-
iconColor?: string | boolean | undefined;
|
2749
2749
|
hint?: string | undefined;
|
2750
2750
|
hideDetails?: boolean | "auto" | undefined;
|
2751
2751
|
suffix?: string | undefined;
|
@@ -2889,6 +2889,7 @@ export declare const VAutocomplete: {
|
|
2889
2889
|
bgColor?: string | undefined;
|
2890
2890
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2891
2891
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2892
|
+
iconColor?: string | boolean | undefined;
|
2892
2893
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2893
2894
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2894
2895
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -2897,7 +2898,6 @@ export declare const VAutocomplete: {
|
|
2897
2898
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2898
2899
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2899
2900
|
centerAffix?: boolean | undefined;
|
2900
|
-
iconColor?: string | boolean | undefined;
|
2901
2901
|
hint?: string | undefined;
|
2902
2902
|
hideDetails?: boolean | "auto" | undefined;
|
2903
2903
|
suffix?: string | undefined;
|
@@ -3012,9 +3012,9 @@ export declare const VAutocomplete: {
|
|
3012
3012
|
baseColor?: string | undefined;
|
3013
3013
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3014
3014
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3015
|
+
iconColor?: string | boolean | undefined;
|
3015
3016
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
3016
3017
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
3017
|
-
iconColor?: string | boolean | undefined;
|
3018
3018
|
hint?: string | undefined;
|
3019
3019
|
hideDetails?: boolean | "auto" | undefined;
|
3020
3020
|
} & 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 +3068,9 @@ export declare const VAutocomplete: {
|
|
3068
3068
|
baseColor?: string | undefined;
|
3069
3069
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3070
3070
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3071
|
+
iconColor?: string | boolean | undefined;
|
3071
3072
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
3072
3073
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
3073
|
-
iconColor?: string | boolean | undefined;
|
3074
3074
|
hint?: string | undefined;
|
3075
3075
|
hideDetails?: boolean | "auto" | undefined;
|
3076
3076
|
} & {}, {
|
@@ -3171,9 +3171,9 @@ export declare const VAutocomplete: {
|
|
3171
3171
|
baseColor?: string | undefined;
|
3172
3172
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3173
3173
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3174
|
+
iconColor?: string | boolean | undefined;
|
3174
3175
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
3175
3176
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
3176
|
-
iconColor?: string | boolean | undefined;
|
3177
3177
|
hint?: string | undefined;
|
3178
3178
|
hideDetails?: boolean | "auto" | undefined;
|
3179
3179
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -3185,7 +3185,7 @@ export declare const VAutocomplete: {
|
|
3185
3185
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
3186
3186
|
modelValue?: unknown;
|
3187
3187
|
'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" | "
|
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" | "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
3189
|
$: import("vue").ComponentInternalInstance;
|
3190
3190
|
$data: {};
|
3191
3191
|
$props: Partial<{
|
@@ -3232,13 +3232,13 @@ export declare const VAutocomplete: {
|
|
3232
3232
|
rounded?: string | number | boolean | undefined;
|
3233
3233
|
baseColor?: string | undefined;
|
3234
3234
|
bgColor?: string | undefined;
|
3235
|
+
iconColor?: string | boolean | undefined;
|
3235
3236
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3236
3237
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3237
3238
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
3238
3239
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3239
3240
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3240
3241
|
centerAffix?: boolean | undefined;
|
3241
|
-
iconColor?: string | boolean | undefined;
|
3242
3242
|
} & 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
3243
|
$attrs: {
|
3244
3244
|
[x: string]: unknown;
|
@@ -3291,13 +3291,13 @@ export declare const VAutocomplete: {
|
|
3291
3291
|
rounded?: string | number | boolean | undefined;
|
3292
3292
|
baseColor?: string | undefined;
|
3293
3293
|
bgColor?: string | undefined;
|
3294
|
+
iconColor?: string | boolean | undefined;
|
3294
3295
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3295
3296
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3296
3297
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
3297
3298
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3298
3299
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3299
3300
|
centerAffix?: boolean | undefined;
|
3300
|
-
iconColor?: string | boolean | undefined;
|
3301
3301
|
} & {
|
3302
3302
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
3303
3303
|
}, {
|
@@ -3401,13 +3401,13 @@ export declare const VAutocomplete: {
|
|
3401
3401
|
rounded?: string | number | boolean | undefined;
|
3402
3402
|
baseColor?: string | undefined;
|
3403
3403
|
bgColor?: string | undefined;
|
3404
|
+
iconColor?: string | boolean | undefined;
|
3404
3405
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3405
3406
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3406
3407
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
3407
3408
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3408
3409
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3409
3410
|
centerAffix?: boolean | undefined;
|
3410
|
-
iconColor?: string | boolean | undefined;
|
3411
3411
|
} & {
|
3412
3412
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
3413
3413
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -3416,7 +3416,7 @@ export declare const VAutocomplete: {
|
|
3416
3416
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
3417
3417
|
modelValue?: unknown;
|
3418
3418
|
'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" | "
|
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" | "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
3420
|
_allExposed: {
|
3421
3421
|
reset: () => Promise<void>;
|
3422
3422
|
resetValidation: () => Promise<void>;
|
@@ -3584,6 +3584,7 @@ export declare const VAutocomplete: {
|
|
3584
3584
|
bgColor?: string | undefined;
|
3585
3585
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3586
3586
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3587
|
+
iconColor?: string | boolean | undefined;
|
3587
3588
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3588
3589
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3589
3590
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -3592,7 +3593,6 @@ export declare const VAutocomplete: {
|
|
3592
3593
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3593
3594
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3594
3595
|
centerAffix?: boolean | undefined;
|
3595
|
-
iconColor?: string | boolean | undefined;
|
3596
3596
|
hint?: string | undefined;
|
3597
3597
|
hideDetails?: boolean | "auto" | undefined;
|
3598
3598
|
suffix?: string | undefined;
|
@@ -3707,9 +3707,9 @@ export declare const VAutocomplete: {
|
|
3707
3707
|
baseColor?: string | undefined;
|
3708
3708
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3709
3709
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3710
|
+
iconColor?: string | boolean | undefined;
|
3710
3711
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
3711
3712
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
3712
|
-
iconColor?: string | boolean | undefined;
|
3713
3713
|
hint?: string | undefined;
|
3714
3714
|
hideDetails?: boolean | "auto" | undefined;
|
3715
3715
|
} & 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 +3763,9 @@ export declare const VAutocomplete: {
|
|
3763
3763
|
baseColor?: string | undefined;
|
3764
3764
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3765
3765
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3766
|
+
iconColor?: string | boolean | undefined;
|
3766
3767
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
3767
3768
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
3768
|
-
iconColor?: string | boolean | undefined;
|
3769
3769
|
hint?: string | undefined;
|
3770
3770
|
hideDetails?: boolean | "auto" | undefined;
|
3771
3771
|
} & {}, {
|
@@ -3866,9 +3866,9 @@ export declare const VAutocomplete: {
|
|
3866
3866
|
baseColor?: string | undefined;
|
3867
3867
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3868
3868
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3869
|
+
iconColor?: string | boolean | undefined;
|
3869
3870
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
3870
3871
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
3871
|
-
iconColor?: string | boolean | undefined;
|
3872
3872
|
hint?: string | undefined;
|
3873
3873
|
hideDetails?: boolean | "auto" | undefined;
|
3874
3874
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -3880,7 +3880,7 @@ export declare const VAutocomplete: {
|
|
3880
3880
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
3881
3881
|
modelValue?: unknown;
|
3882
3882
|
'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" | "
|
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" | "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
3884
|
$: import("vue").ComponentInternalInstance;
|
3885
3885
|
$data: {};
|
3886
3886
|
$props: Partial<{
|
@@ -3927,13 +3927,13 @@ export declare const VAutocomplete: {
|
|
3927
3927
|
rounded?: string | number | boolean | undefined;
|
3928
3928
|
baseColor?: string | undefined;
|
3929
3929
|
bgColor?: string | undefined;
|
3930
|
+
iconColor?: string | boolean | undefined;
|
3930
3931
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3931
3932
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3932
3933
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
3933
3934
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3934
3935
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3935
3936
|
centerAffix?: boolean | undefined;
|
3936
|
-
iconColor?: string | boolean | undefined;
|
3937
3937
|
} & 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
3938
|
$attrs: {
|
3939
3939
|
[x: string]: unknown;
|
@@ -3986,13 +3986,13 @@ export declare const VAutocomplete: {
|
|
3986
3986
|
rounded?: string | number | boolean | undefined;
|
3987
3987
|
baseColor?: string | undefined;
|
3988
3988
|
bgColor?: string | undefined;
|
3989
|
+
iconColor?: string | boolean | undefined;
|
3989
3990
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3990
3991
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3991
3992
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
3992
3993
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3993
3994
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3994
3995
|
centerAffix?: boolean | undefined;
|
3995
|
-
iconColor?: string | boolean | undefined;
|
3996
3996
|
} & {
|
3997
3997
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
3998
3998
|
}, {
|
@@ -4096,13 +4096,13 @@ export declare const VAutocomplete: {
|
|
4096
4096
|
rounded?: string | number | boolean | undefined;
|
4097
4097
|
baseColor?: string | undefined;
|
4098
4098
|
bgColor?: string | undefined;
|
4099
|
+
iconColor?: string | boolean | undefined;
|
4099
4100
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4100
4101
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4101
4102
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4102
4103
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4103
4104
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4104
4105
|
centerAffix?: boolean | undefined;
|
4105
|
-
iconColor?: string | boolean | undefined;
|
4106
4106
|
} & {
|
4107
4107
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
4108
4108
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -4111,7 +4111,7 @@ export declare const VAutocomplete: {
|
|
4111
4111
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
4112
4112
|
modelValue?: unknown;
|
4113
4113
|
'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" | "
|
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" | "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
4115
|
_allExposed: {
|
4116
4116
|
reset: () => Promise<void>;
|
4117
4117
|
resetValidation: () => Promise<void>;
|
@@ -4122,7 +4122,7 @@ export declare const VAutocomplete: {
|
|
4122
4122
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
4123
4123
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
4124
4124
|
} | {};
|
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" | "
|
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" | "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
4126
|
_allExposed: (HTMLInputElement & Omit<Omit<{
|
4127
4127
|
$: import("vue").ComponentInternalInstance;
|
4128
4128
|
$data: {};
|
@@ -4173,9 +4173,9 @@ export declare const VAutocomplete: {
|
|
4173
4173
|
baseColor?: string | undefined;
|
4174
4174
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4175
4175
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4176
|
+
iconColor?: string | boolean | undefined;
|
4176
4177
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
4177
4178
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
4178
|
-
iconColor?: string | boolean | undefined;
|
4179
4179
|
hint?: string | undefined;
|
4180
4180
|
hideDetails?: boolean | "auto" | undefined;
|
4181
4181
|
} & 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 +4229,9 @@ export declare const VAutocomplete: {
|
|
4229
4229
|
baseColor?: string | undefined;
|
4230
4230
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4231
4231
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4232
|
+
iconColor?: string | boolean | undefined;
|
4232
4233
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
4233
4234
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
4234
|
-
iconColor?: string | boolean | undefined;
|
4235
4235
|
hint?: string | undefined;
|
4236
4236
|
hideDetails?: boolean | "auto" | undefined;
|
4237
4237
|
} & {}, {
|
@@ -4332,9 +4332,9 @@ export declare const VAutocomplete: {
|
|
4332
4332
|
baseColor?: string | undefined;
|
4333
4333
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4334
4334
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4335
|
+
iconColor?: string | boolean | undefined;
|
4335
4336
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
4336
4337
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
4337
|
-
iconColor?: string | boolean | undefined;
|
4338
4338
|
hint?: string | undefined;
|
4339
4339
|
hideDetails?: boolean | "auto" | undefined;
|
4340
4340
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -4346,7 +4346,7 @@ export declare const VAutocomplete: {
|
|
4346
4346
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
4347
4347
|
modelValue?: unknown;
|
4348
4348
|
'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" | "
|
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" | "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
4350
|
$: import("vue").ComponentInternalInstance;
|
4351
4351
|
$data: {};
|
4352
4352
|
$props: Partial<{
|
@@ -4393,13 +4393,13 @@ export declare const VAutocomplete: {
|
|
4393
4393
|
rounded?: string | number | boolean | undefined;
|
4394
4394
|
baseColor?: string | undefined;
|
4395
4395
|
bgColor?: string | undefined;
|
4396
|
+
iconColor?: string | boolean | undefined;
|
4396
4397
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4397
4398
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4398
4399
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4399
4400
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4400
4401
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4401
4402
|
centerAffix?: boolean | undefined;
|
4402
|
-
iconColor?: string | boolean | undefined;
|
4403
4403
|
} & 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
4404
|
$attrs: {
|
4405
4405
|
[x: string]: unknown;
|
@@ -4452,13 +4452,13 @@ export declare const VAutocomplete: {
|
|
4452
4452
|
rounded?: string | number | boolean | undefined;
|
4453
4453
|
baseColor?: string | undefined;
|
4454
4454
|
bgColor?: string | undefined;
|
4455
|
+
iconColor?: string | boolean | undefined;
|
4455
4456
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4456
4457
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4457
4458
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4458
4459
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4459
4460
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4460
4461
|
centerAffix?: boolean | undefined;
|
4461
|
-
iconColor?: string | boolean | undefined;
|
4462
4462
|
} & {
|
4463
4463
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
4464
4464
|
}, {
|
@@ -4562,13 +4562,13 @@ export declare const VAutocomplete: {
|
|
4562
4562
|
rounded?: string | number | boolean | undefined;
|
4563
4563
|
baseColor?: string | undefined;
|
4564
4564
|
bgColor?: string | undefined;
|
4565
|
+
iconColor?: string | boolean | undefined;
|
4565
4566
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4566
4567
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4567
4568
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4568
4569
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4569
4570
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4570
4571
|
centerAffix?: boolean | undefined;
|
4571
|
-
iconColor?: string | boolean | undefined;
|
4572
4572
|
} & {
|
4573
4573
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
4574
4574
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -4577,7 +4577,7 @@ export declare const VAutocomplete: {
|
|
4577
4577
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
4578
4578
|
modelValue?: unknown;
|
4579
4579
|
'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" | "
|
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" | "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
4581
|
_allExposed: {
|
4582
4582
|
reset: () => Promise<void>;
|
4583
4583
|
resetValidation: () => Promise<void>;
|
@@ -4765,6 +4765,7 @@ export declare const VAutocomplete: {
|
|
4765
4765
|
bgColor?: string | undefined;
|
4766
4766
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4767
4767
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4768
|
+
iconColor?: string | boolean | undefined;
|
4768
4769
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4769
4770
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4770
4771
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -4772,7 +4773,6 @@ export declare const VAutocomplete: {
|
|
4772
4773
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4773
4774
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4774
4775
|
centerAffix?: boolean | undefined;
|
4775
|
-
iconColor?: string | boolean | undefined;
|
4776
4776
|
hint?: string | undefined;
|
4777
4777
|
hideDetails?: boolean | "auto" | undefined;
|
4778
4778
|
suffix?: string | undefined;
|
@@ -5253,6 +5253,7 @@ export declare const VAutocomplete: {
|
|
5253
5253
|
bgColor?: string | undefined;
|
5254
5254
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5255
5255
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5256
|
+
iconColor?: string | boolean | undefined;
|
5256
5257
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5257
5258
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5258
5259
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -5261,7 +5262,6 @@ export declare const VAutocomplete: {
|
|
5261
5262
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5262
5263
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5263
5264
|
centerAffix?: boolean | undefined;
|
5264
|
-
iconColor?: string | boolean | undefined;
|
5265
5265
|
hint?: string | undefined;
|
5266
5266
|
hideDetails?: boolean | "auto" | undefined;
|
5267
5267
|
suffix?: string | undefined;
|
@@ -5405,6 +5405,7 @@ export declare const VAutocomplete: {
|
|
5405
5405
|
bgColor?: string | undefined;
|
5406
5406
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5407
5407
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5408
|
+
iconColor?: string | boolean | undefined;
|
5408
5409
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5409
5410
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5410
5411
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -5413,7 +5414,6 @@ export declare const VAutocomplete: {
|
|
5413
5414
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5414
5415
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5415
5416
|
centerAffix?: boolean | undefined;
|
5416
|
-
iconColor?: string | boolean | undefined;
|
5417
5417
|
hint?: string | undefined;
|
5418
5418
|
hideDetails?: boolean | "auto" | undefined;
|
5419
5419
|
suffix?: string | undefined;
|
@@ -5528,9 +5528,9 @@ export declare const VAutocomplete: {
|
|
5528
5528
|
baseColor?: string | undefined;
|
5529
5529
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5530
5530
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5531
|
+
iconColor?: string | boolean | undefined;
|
5531
5532
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
5532
5533
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
5533
|
-
iconColor?: string | boolean | undefined;
|
5534
5534
|
hint?: string | undefined;
|
5535
5535
|
hideDetails?: boolean | "auto" | undefined;
|
5536
5536
|
} & 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 +5584,9 @@ export declare const VAutocomplete: {
|
|
5584
5584
|
baseColor?: string | undefined;
|
5585
5585
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5586
5586
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5587
|
+
iconColor?: string | boolean | undefined;
|
5587
5588
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
5588
5589
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
5589
|
-
iconColor?: string | boolean | undefined;
|
5590
5590
|
hint?: string | undefined;
|
5591
5591
|
hideDetails?: boolean | "auto" | undefined;
|
5592
5592
|
} & {}, {
|
@@ -5687,9 +5687,9 @@ export declare const VAutocomplete: {
|
|
5687
5687
|
baseColor?: string | undefined;
|
5688
5688
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5689
5689
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5690
|
+
iconColor?: string | boolean | undefined;
|
5690
5691
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
5691
5692
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
5692
|
-
iconColor?: string | boolean | undefined;
|
5693
5693
|
hint?: string | undefined;
|
5694
5694
|
hideDetails?: boolean | "auto" | undefined;
|
5695
5695
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -5701,7 +5701,7 @@ export declare const VAutocomplete: {
|
|
5701
5701
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
5702
5702
|
modelValue?: unknown;
|
5703
5703
|
'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" | "
|
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" | "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
5705
|
$: import("vue").ComponentInternalInstance;
|
5706
5706
|
$data: {};
|
5707
5707
|
$props: Partial<{
|
@@ -5748,13 +5748,13 @@ export declare const VAutocomplete: {
|
|
5748
5748
|
rounded?: string | number | boolean | undefined;
|
5749
5749
|
baseColor?: string | undefined;
|
5750
5750
|
bgColor?: string | undefined;
|
5751
|
+
iconColor?: string | boolean | undefined;
|
5751
5752
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5752
5753
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5753
5754
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
5754
5755
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5755
5756
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5756
5757
|
centerAffix?: boolean | undefined;
|
5757
|
-
iconColor?: string | boolean | undefined;
|
5758
5758
|
} & 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
5759
|
$attrs: {
|
5760
5760
|
[x: string]: unknown;
|
@@ -5807,13 +5807,13 @@ export declare const VAutocomplete: {
|
|
5807
5807
|
rounded?: string | number | boolean | undefined;
|
5808
5808
|
baseColor?: string | undefined;
|
5809
5809
|
bgColor?: string | undefined;
|
5810
|
+
iconColor?: string | boolean | undefined;
|
5810
5811
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5811
5812
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5812
5813
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
5813
5814
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5814
5815
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5815
5816
|
centerAffix?: boolean | undefined;
|
5816
|
-
iconColor?: string | boolean | undefined;
|
5817
5817
|
} & {
|
5818
5818
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
5819
5819
|
}, {
|
@@ -5917,13 +5917,13 @@ export declare const VAutocomplete: {
|
|
5917
5917
|
rounded?: string | number | boolean | undefined;
|
5918
5918
|
baseColor?: string | undefined;
|
5919
5919
|
bgColor?: string | undefined;
|
5920
|
+
iconColor?: string | boolean | undefined;
|
5920
5921
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5921
5922
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5922
5923
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
5923
5924
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5924
5925
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5925
5926
|
centerAffix?: boolean | undefined;
|
5926
|
-
iconColor?: string | boolean | undefined;
|
5927
5927
|
} & {
|
5928
5928
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
5929
5929
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -5932,7 +5932,7 @@ export declare const VAutocomplete: {
|
|
5932
5932
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
5933
5933
|
modelValue?: unknown;
|
5934
5934
|
'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" | "
|
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" | "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
5936
|
_allExposed: {
|
5937
5937
|
reset: () => Promise<void>;
|
5938
5938
|
resetValidation: () => Promise<void>;
|
@@ -6100,6 +6100,7 @@ export declare const VAutocomplete: {
|
|
6100
6100
|
bgColor?: string | undefined;
|
6101
6101
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6102
6102
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6103
|
+
iconColor?: string | boolean | undefined;
|
6103
6104
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6104
6105
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6105
6106
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -6108,7 +6109,6 @@ export declare const VAutocomplete: {
|
|
6108
6109
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6109
6110
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6110
6111
|
centerAffix?: boolean | undefined;
|
6111
|
-
iconColor?: string | boolean | undefined;
|
6112
6112
|
hint?: string | undefined;
|
6113
6113
|
hideDetails?: boolean | "auto" | undefined;
|
6114
6114
|
suffix?: string | undefined;
|
@@ -6223,9 +6223,9 @@ export declare const VAutocomplete: {
|
|
6223
6223
|
baseColor?: string | undefined;
|
6224
6224
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6225
6225
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6226
|
+
iconColor?: string | boolean | undefined;
|
6226
6227
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
6227
6228
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
6228
|
-
iconColor?: string | boolean | undefined;
|
6229
6229
|
hint?: string | undefined;
|
6230
6230
|
hideDetails?: boolean | "auto" | undefined;
|
6231
6231
|
} & 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 +6279,9 @@ export declare const VAutocomplete: {
|
|
6279
6279
|
baseColor?: string | undefined;
|
6280
6280
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6281
6281
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6282
|
+
iconColor?: string | boolean | undefined;
|
6282
6283
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
6283
6284
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
6284
|
-
iconColor?: string | boolean | undefined;
|
6285
6285
|
hint?: string | undefined;
|
6286
6286
|
hideDetails?: boolean | "auto" | undefined;
|
6287
6287
|
} & {}, {
|
@@ -6382,9 +6382,9 @@ export declare const VAutocomplete: {
|
|
6382
6382
|
baseColor?: string | undefined;
|
6383
6383
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6384
6384
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6385
|
+
iconColor?: string | boolean | undefined;
|
6385
6386
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
6386
6387
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
6387
|
-
iconColor?: string | boolean | undefined;
|
6388
6388
|
hint?: string | undefined;
|
6389
6389
|
hideDetails?: boolean | "auto" | undefined;
|
6390
6390
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -6396,7 +6396,7 @@ export declare const VAutocomplete: {
|
|
6396
6396
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
6397
6397
|
modelValue?: unknown;
|
6398
6398
|
'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" | "
|
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" | "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
6400
|
$: import("vue").ComponentInternalInstance;
|
6401
6401
|
$data: {};
|
6402
6402
|
$props: Partial<{
|
@@ -6443,13 +6443,13 @@ export declare const VAutocomplete: {
|
|
6443
6443
|
rounded?: string | number | boolean | undefined;
|
6444
6444
|
baseColor?: string | undefined;
|
6445
6445
|
bgColor?: string | undefined;
|
6446
|
+
iconColor?: string | boolean | undefined;
|
6446
6447
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6447
6448
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6448
6449
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6449
6450
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6450
6451
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6451
6452
|
centerAffix?: boolean | undefined;
|
6452
|
-
iconColor?: string | boolean | undefined;
|
6453
6453
|
} & 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
6454
|
$attrs: {
|
6455
6455
|
[x: string]: unknown;
|
@@ -6502,13 +6502,13 @@ export declare const VAutocomplete: {
|
|
6502
6502
|
rounded?: string | number | boolean | undefined;
|
6503
6503
|
baseColor?: string | undefined;
|
6504
6504
|
bgColor?: string | undefined;
|
6505
|
+
iconColor?: string | boolean | undefined;
|
6505
6506
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6506
6507
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6507
6508
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6508
6509
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6509
6510
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6510
6511
|
centerAffix?: boolean | undefined;
|
6511
|
-
iconColor?: string | boolean | undefined;
|
6512
6512
|
} & {
|
6513
6513
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
6514
6514
|
}, {
|
@@ -6612,13 +6612,13 @@ export declare const VAutocomplete: {
|
|
6612
6612
|
rounded?: string | number | boolean | undefined;
|
6613
6613
|
baseColor?: string | undefined;
|
6614
6614
|
bgColor?: string | undefined;
|
6615
|
+
iconColor?: string | boolean | undefined;
|
6615
6616
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6616
6617
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6617
6618
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6618
6619
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6619
6620
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6620
6621
|
centerAffix?: boolean | undefined;
|
6621
|
-
iconColor?: string | boolean | undefined;
|
6622
6622
|
} & {
|
6623
6623
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
6624
6624
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -6627,7 +6627,7 @@ export declare const VAutocomplete: {
|
|
6627
6627
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
6628
6628
|
modelValue?: unknown;
|
6629
6629
|
'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" | "
|
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" | "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
6631
|
_allExposed: {
|
6632
6632
|
reset: () => Promise<void>;
|
6633
6633
|
resetValidation: () => Promise<void>;
|
@@ -6638,7 +6638,7 @@ export declare const VAutocomplete: {
|
|
6638
6638
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
6639
6639
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
6640
6640
|
} | {};
|
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" | "
|
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" | "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
6642
|
_allExposed: (HTMLInputElement & Omit<Omit<{
|
6643
6643
|
$: import("vue").ComponentInternalInstance;
|
6644
6644
|
$data: {};
|
@@ -6689,9 +6689,9 @@ export declare const VAutocomplete: {
|
|
6689
6689
|
baseColor?: string | undefined;
|
6690
6690
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6691
6691
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6692
|
+
iconColor?: string | boolean | undefined;
|
6692
6693
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
6693
6694
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
6694
|
-
iconColor?: string | boolean | undefined;
|
6695
6695
|
hint?: string | undefined;
|
6696
6696
|
hideDetails?: boolean | "auto" | undefined;
|
6697
6697
|
} & 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 +6745,9 @@ export declare const VAutocomplete: {
|
|
6745
6745
|
baseColor?: string | undefined;
|
6746
6746
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6747
6747
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6748
|
+
iconColor?: string | boolean | undefined;
|
6748
6749
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
6749
6750
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
6750
|
-
iconColor?: string | boolean | undefined;
|
6751
6751
|
hint?: string | undefined;
|
6752
6752
|
hideDetails?: boolean | "auto" | undefined;
|
6753
6753
|
} & {}, {
|
@@ -6848,9 +6848,9 @@ export declare const VAutocomplete: {
|
|
6848
6848
|
baseColor?: string | undefined;
|
6849
6849
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6850
6850
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6851
|
+
iconColor?: string | boolean | undefined;
|
6851
6852
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
6852
6853
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
6853
|
-
iconColor?: string | boolean | undefined;
|
6854
6854
|
hint?: string | undefined;
|
6855
6855
|
hideDetails?: boolean | "auto" | undefined;
|
6856
6856
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -6862,7 +6862,7 @@ export declare const VAutocomplete: {
|
|
6862
6862
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
6863
6863
|
modelValue?: unknown;
|
6864
6864
|
'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" | "
|
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" | "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
6866
|
$: import("vue").ComponentInternalInstance;
|
6867
6867
|
$data: {};
|
6868
6868
|
$props: Partial<{
|
@@ -6909,13 +6909,13 @@ export declare const VAutocomplete: {
|
|
6909
6909
|
rounded?: string | number | boolean | undefined;
|
6910
6910
|
baseColor?: string | undefined;
|
6911
6911
|
bgColor?: string | undefined;
|
6912
|
+
iconColor?: string | boolean | undefined;
|
6912
6913
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6913
6914
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6914
6915
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6915
6916
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6916
6917
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6917
6918
|
centerAffix?: boolean | undefined;
|
6918
|
-
iconColor?: string | boolean | undefined;
|
6919
6919
|
} & 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
6920
|
$attrs: {
|
6921
6921
|
[x: string]: unknown;
|
@@ -6968,13 +6968,13 @@ export declare const VAutocomplete: {
|
|
6968
6968
|
rounded?: string | number | boolean | undefined;
|
6969
6969
|
baseColor?: string | undefined;
|
6970
6970
|
bgColor?: string | undefined;
|
6971
|
+
iconColor?: string | boolean | undefined;
|
6971
6972
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6972
6973
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6973
6974
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6974
6975
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6975
6976
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6976
6977
|
centerAffix?: boolean | undefined;
|
6977
|
-
iconColor?: string | boolean | undefined;
|
6978
6978
|
} & {
|
6979
6979
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
6980
6980
|
}, {
|
@@ -7078,13 +7078,13 @@ export declare const VAutocomplete: {
|
|
7078
7078
|
rounded?: string | number | boolean | undefined;
|
7079
7079
|
baseColor?: string | undefined;
|
7080
7080
|
bgColor?: string | undefined;
|
7081
|
+
iconColor?: string | boolean | undefined;
|
7081
7082
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7082
7083
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7083
7084
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
7084
7085
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7085
7086
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7086
7087
|
centerAffix?: boolean | undefined;
|
7087
|
-
iconColor?: string | boolean | undefined;
|
7088
7088
|
} & {
|
7089
7089
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
7090
7090
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -7093,7 +7093,7 @@ export declare const VAutocomplete: {
|
|
7093
7093
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
7094
7094
|
modelValue?: unknown;
|
7095
7095
|
'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" | "
|
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" | "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
7097
|
_allExposed: {
|
7098
7098
|
reset: () => Promise<void>;
|
7099
7099
|
resetValidation: () => Promise<void>;
|
@@ -7241,6 +7241,7 @@ export declare const VAutocomplete: {
|
|
7241
7241
|
bgColor?: string | undefined;
|
7242
7242
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7243
7243
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7244
|
+
iconColor?: string | boolean | undefined;
|
7244
7245
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7245
7246
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
7246
7247
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -7248,7 +7249,6 @@ export declare const VAutocomplete: {
|
|
7248
7249
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7249
7250
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7250
7251
|
centerAffix?: boolean | undefined;
|
7251
|
-
iconColor?: string | boolean | undefined;
|
7252
7252
|
hint?: string | undefined;
|
7253
7253
|
hideDetails?: boolean | "auto" | undefined;
|
7254
7254
|
suffix?: string | undefined;
|
@@ -7729,6 +7729,7 @@ export declare const VAutocomplete: {
|
|
7729
7729
|
bgColor?: string | undefined;
|
7730
7730
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7731
7731
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7732
|
+
iconColor?: string | boolean | undefined;
|
7732
7733
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7733
7734
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7734
7735
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -7737,7 +7738,6 @@ export declare const VAutocomplete: {
|
|
7737
7738
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7738
7739
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7739
7740
|
centerAffix?: boolean | undefined;
|
7740
|
-
iconColor?: string | boolean | undefined;
|
7741
7741
|
hint?: string | undefined;
|
7742
7742
|
hideDetails?: boolean | "auto" | undefined;
|
7743
7743
|
suffix?: string | undefined;
|
@@ -7881,6 +7881,7 @@ export declare const VAutocomplete: {
|
|
7881
7881
|
bgColor?: string | undefined;
|
7882
7882
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7883
7883
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7884
|
+
iconColor?: string | boolean | undefined;
|
7884
7885
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7885
7886
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7886
7887
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -7889,7 +7890,6 @@ export declare const VAutocomplete: {
|
|
7889
7890
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7890
7891
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7891
7892
|
centerAffix?: boolean | undefined;
|
7892
|
-
iconColor?: string | boolean | undefined;
|
7893
7893
|
hint?: string | undefined;
|
7894
7894
|
hideDetails?: boolean | "auto" | undefined;
|
7895
7895
|
suffix?: string | undefined;
|
@@ -8004,9 +8004,9 @@ export declare const VAutocomplete: {
|
|
8004
8004
|
baseColor?: string | undefined;
|
8005
8005
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8006
8006
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8007
|
+
iconColor?: string | boolean | undefined;
|
8007
8008
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
8008
8009
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
8009
|
-
iconColor?: string | boolean | undefined;
|
8010
8010
|
hint?: string | undefined;
|
8011
8011
|
hideDetails?: boolean | "auto" | undefined;
|
8012
8012
|
} & 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 +8060,9 @@ export declare const VAutocomplete: {
|
|
8060
8060
|
baseColor?: string | undefined;
|
8061
8061
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8062
8062
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8063
|
+
iconColor?: string | boolean | undefined;
|
8063
8064
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
8064
8065
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
8065
|
-
iconColor?: string | boolean | undefined;
|
8066
8066
|
hint?: string | undefined;
|
8067
8067
|
hideDetails?: boolean | "auto" | undefined;
|
8068
8068
|
} & {}, {
|
@@ -8163,9 +8163,9 @@ export declare const VAutocomplete: {
|
|
8163
8163
|
baseColor?: string | undefined;
|
8164
8164
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8165
8165
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8166
|
+
iconColor?: string | boolean | undefined;
|
8166
8167
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
8167
8168
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
8168
|
-
iconColor?: string | boolean | undefined;
|
8169
8169
|
hint?: string | undefined;
|
8170
8170
|
hideDetails?: boolean | "auto" | undefined;
|
8171
8171
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -8177,7 +8177,7 @@ export declare const VAutocomplete: {
|
|
8177
8177
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
8178
8178
|
modelValue?: unknown;
|
8179
8179
|
'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" | "
|
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" | "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
8181
|
$: import("vue").ComponentInternalInstance;
|
8182
8182
|
$data: {};
|
8183
8183
|
$props: Partial<{
|
@@ -8224,13 +8224,13 @@ export declare const VAutocomplete: {
|
|
8224
8224
|
rounded?: string | number | boolean | undefined;
|
8225
8225
|
baseColor?: string | undefined;
|
8226
8226
|
bgColor?: string | undefined;
|
8227
|
+
iconColor?: string | boolean | undefined;
|
8227
8228
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8228
8229
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8229
8230
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
8230
8231
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8231
8232
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8232
8233
|
centerAffix?: boolean | undefined;
|
8233
|
-
iconColor?: string | boolean | undefined;
|
8234
8234
|
} & 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
8235
|
$attrs: {
|
8236
8236
|
[x: string]: unknown;
|
@@ -8283,13 +8283,13 @@ export declare const VAutocomplete: {
|
|
8283
8283
|
rounded?: string | number | boolean | undefined;
|
8284
8284
|
baseColor?: string | undefined;
|
8285
8285
|
bgColor?: string | undefined;
|
8286
|
+
iconColor?: string | boolean | undefined;
|
8286
8287
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8287
8288
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8288
8289
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
8289
8290
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8290
8291
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8291
8292
|
centerAffix?: boolean | undefined;
|
8292
|
-
iconColor?: string | boolean | undefined;
|
8293
8293
|
} & {
|
8294
8294
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
8295
8295
|
}, {
|
@@ -8393,13 +8393,13 @@ export declare const VAutocomplete: {
|
|
8393
8393
|
rounded?: string | number | boolean | undefined;
|
8394
8394
|
baseColor?: string | undefined;
|
8395
8395
|
bgColor?: string | undefined;
|
8396
|
+
iconColor?: string | boolean | undefined;
|
8396
8397
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8397
8398
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8398
8399
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
8399
8400
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8400
8401
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8401
8402
|
centerAffix?: boolean | undefined;
|
8402
|
-
iconColor?: string | boolean | undefined;
|
8403
8403
|
} & {
|
8404
8404
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
8405
8405
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -8408,7 +8408,7 @@ export declare const VAutocomplete: {
|
|
8408
8408
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
8409
8409
|
modelValue?: unknown;
|
8410
8410
|
'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" | "
|
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" | "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
8412
|
_allExposed: {
|
8413
8413
|
reset: () => Promise<void>;
|
8414
8414
|
resetValidation: () => Promise<void>;
|
@@ -8576,6 +8576,7 @@ export declare const VAutocomplete: {
|
|
8576
8576
|
bgColor?: string | undefined;
|
8577
8577
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8578
8578
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8579
|
+
iconColor?: string | boolean | undefined;
|
8579
8580
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8580
8581
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8581
8582
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -8584,7 +8585,6 @@ export declare const VAutocomplete: {
|
|
8584
8585
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8585
8586
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8586
8587
|
centerAffix?: boolean | undefined;
|
8587
|
-
iconColor?: string | boolean | undefined;
|
8588
8588
|
hint?: string | undefined;
|
8589
8589
|
hideDetails?: boolean | "auto" | undefined;
|
8590
8590
|
suffix?: string | undefined;
|
@@ -8699,9 +8699,9 @@ export declare const VAutocomplete: {
|
|
8699
8699
|
baseColor?: string | undefined;
|
8700
8700
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8701
8701
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8702
|
+
iconColor?: string | boolean | undefined;
|
8702
8703
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
8703
8704
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
8704
|
-
iconColor?: string | boolean | undefined;
|
8705
8705
|
hint?: string | undefined;
|
8706
8706
|
hideDetails?: boolean | "auto" | undefined;
|
8707
8707
|
} & 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 +8755,9 @@ export declare const VAutocomplete: {
|
|
8755
8755
|
baseColor?: string | undefined;
|
8756
8756
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8757
8757
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8758
|
+
iconColor?: string | boolean | undefined;
|
8758
8759
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
8759
8760
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
8760
|
-
iconColor?: string | boolean | undefined;
|
8761
8761
|
hint?: string | undefined;
|
8762
8762
|
hideDetails?: boolean | "auto" | undefined;
|
8763
8763
|
} & {}, {
|
@@ -8858,9 +8858,9 @@ export declare const VAutocomplete: {
|
|
8858
8858
|
baseColor?: string | undefined;
|
8859
8859
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8860
8860
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8861
|
+
iconColor?: string | boolean | undefined;
|
8861
8862
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
8862
8863
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
8863
|
-
iconColor?: string | boolean | undefined;
|
8864
8864
|
hint?: string | undefined;
|
8865
8865
|
hideDetails?: boolean | "auto" | undefined;
|
8866
8866
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -8872,7 +8872,7 @@ export declare const VAutocomplete: {
|
|
8872
8872
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
8873
8873
|
modelValue?: unknown;
|
8874
8874
|
'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" | "
|
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" | "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
8876
|
$: import("vue").ComponentInternalInstance;
|
8877
8877
|
$data: {};
|
8878
8878
|
$props: Partial<{
|
@@ -8919,13 +8919,13 @@ export declare const VAutocomplete: {
|
|
8919
8919
|
rounded?: string | number | boolean | undefined;
|
8920
8920
|
baseColor?: string | undefined;
|
8921
8921
|
bgColor?: string | undefined;
|
8922
|
+
iconColor?: string | boolean | undefined;
|
8922
8923
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8923
8924
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8924
8925
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
8925
8926
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8926
8927
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8927
8928
|
centerAffix?: boolean | undefined;
|
8928
|
-
iconColor?: string | boolean | undefined;
|
8929
8929
|
} & 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
8930
|
$attrs: {
|
8931
8931
|
[x: string]: unknown;
|
@@ -8978,13 +8978,13 @@ export declare const VAutocomplete: {
|
|
8978
8978
|
rounded?: string | number | boolean | undefined;
|
8979
8979
|
baseColor?: string | undefined;
|
8980
8980
|
bgColor?: string | undefined;
|
8981
|
+
iconColor?: string | boolean | undefined;
|
8981
8982
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8982
8983
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8983
8984
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
8984
8985
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8985
8986
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8986
8987
|
centerAffix?: boolean | undefined;
|
8987
|
-
iconColor?: string | boolean | undefined;
|
8988
8988
|
} & {
|
8989
8989
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
8990
8990
|
}, {
|
@@ -9088,13 +9088,13 @@ export declare const VAutocomplete: {
|
|
9088
9088
|
rounded?: string | number | boolean | undefined;
|
9089
9089
|
baseColor?: string | undefined;
|
9090
9090
|
bgColor?: string | undefined;
|
9091
|
+
iconColor?: string | boolean | undefined;
|
9091
9092
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9092
9093
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9093
9094
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
9094
9095
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9095
9096
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9096
9097
|
centerAffix?: boolean | undefined;
|
9097
|
-
iconColor?: string | boolean | undefined;
|
9098
9098
|
} & {
|
9099
9099
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
9100
9100
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -9103,7 +9103,7 @@ export declare const VAutocomplete: {
|
|
9103
9103
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
9104
9104
|
modelValue?: unknown;
|
9105
9105
|
'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" | "
|
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" | "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
9107
|
_allExposed: {
|
9108
9108
|
reset: () => Promise<void>;
|
9109
9109
|
resetValidation: () => Promise<void>;
|
@@ -9114,7 +9114,7 @@ export declare const VAutocomplete: {
|
|
9114
9114
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
9115
9115
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
9116
9116
|
} | {};
|
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" | "
|
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" | "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
9118
|
_allExposed: (HTMLInputElement & Omit<Omit<{
|
9119
9119
|
$: import("vue").ComponentInternalInstance;
|
9120
9120
|
$data: {};
|
@@ -9165,9 +9165,9 @@ export declare const VAutocomplete: {
|
|
9165
9165
|
baseColor?: string | undefined;
|
9166
9166
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9167
9167
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9168
|
+
iconColor?: string | boolean | undefined;
|
9168
9169
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
9169
9170
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
9170
|
-
iconColor?: string | boolean | undefined;
|
9171
9171
|
hint?: string | undefined;
|
9172
9172
|
hideDetails?: boolean | "auto" | undefined;
|
9173
9173
|
} & 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 +9221,9 @@ export declare const VAutocomplete: {
|
|
9221
9221
|
baseColor?: string | undefined;
|
9222
9222
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9223
9223
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9224
|
+
iconColor?: string | boolean | undefined;
|
9224
9225
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
9225
9226
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
9226
|
-
iconColor?: string | boolean | undefined;
|
9227
9227
|
hint?: string | undefined;
|
9228
9228
|
hideDetails?: boolean | "auto" | undefined;
|
9229
9229
|
} & {}, {
|
@@ -9324,9 +9324,9 @@ export declare const VAutocomplete: {
|
|
9324
9324
|
baseColor?: string | undefined;
|
9325
9325
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9326
9326
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9327
|
+
iconColor?: string | boolean | undefined;
|
9327
9328
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
9328
9329
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
9329
|
-
iconColor?: string | boolean | undefined;
|
9330
9330
|
hint?: string | undefined;
|
9331
9331
|
hideDetails?: boolean | "auto" | undefined;
|
9332
9332
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -9338,7 +9338,7 @@ export declare const VAutocomplete: {
|
|
9338
9338
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
9339
9339
|
modelValue?: unknown;
|
9340
9340
|
'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" | "
|
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" | "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
9342
|
$: import("vue").ComponentInternalInstance;
|
9343
9343
|
$data: {};
|
9344
9344
|
$props: Partial<{
|
@@ -9385,13 +9385,13 @@ export declare const VAutocomplete: {
|
|
9385
9385
|
rounded?: string | number | boolean | undefined;
|
9386
9386
|
baseColor?: string | undefined;
|
9387
9387
|
bgColor?: string | undefined;
|
9388
|
+
iconColor?: string | boolean | undefined;
|
9388
9389
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9389
9390
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9390
9391
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
9391
9392
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9392
9393
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9393
9394
|
centerAffix?: boolean | undefined;
|
9394
|
-
iconColor?: string | boolean | undefined;
|
9395
9395
|
} & 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
9396
|
$attrs: {
|
9397
9397
|
[x: string]: unknown;
|
@@ -9444,13 +9444,13 @@ export declare const VAutocomplete: {
|
|
9444
9444
|
rounded?: string | number | boolean | undefined;
|
9445
9445
|
baseColor?: string | undefined;
|
9446
9446
|
bgColor?: string | undefined;
|
9447
|
+
iconColor?: string | boolean | undefined;
|
9447
9448
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9448
9449
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9449
9450
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
9450
9451
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9451
9452
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9452
9453
|
centerAffix?: boolean | undefined;
|
9453
|
-
iconColor?: string | boolean | undefined;
|
9454
9454
|
} & {
|
9455
9455
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
9456
9456
|
}, {
|
@@ -9554,13 +9554,13 @@ export declare const VAutocomplete: {
|
|
9554
9554
|
rounded?: string | number | boolean | undefined;
|
9555
9555
|
baseColor?: string | undefined;
|
9556
9556
|
bgColor?: string | undefined;
|
9557
|
+
iconColor?: string | boolean | undefined;
|
9557
9558
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9558
9559
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9559
9560
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
9560
9561
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9561
9562
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9562
9563
|
centerAffix?: boolean | undefined;
|
9563
|
-
iconColor?: string | boolean | undefined;
|
9564
9564
|
} & {
|
9565
9565
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
9566
9566
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -9569,7 +9569,7 @@ export declare const VAutocomplete: {
|
|
9569
9569
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
9570
9570
|
modelValue?: unknown;
|
9571
9571
|
'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" | "
|
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" | "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
9573
|
_allExposed: {
|
9574
9574
|
reset: () => Promise<void>;
|
9575
9575
|
resetValidation: () => Promise<void>;
|
@@ -9798,6 +9798,7 @@ export declare const VAutocomplete: {
|
|
9798
9798
|
bgColor: StringConstructor;
|
9799
9799
|
prependIcon: PropType<import("../../composables/icons.js").IconValue>;
|
9800
9800
|
appendIcon: PropType<import("../../composables/icons.js").IconValue>;
|
9801
|
+
iconColor: (StringConstructor | BooleanConstructor)[];
|
9801
9802
|
clearIcon: {
|
9802
9803
|
type: PropType<import("../../composables/icons.js").IconValue>;
|
9803
9804
|
default: string;
|
@@ -9813,7 +9814,6 @@ export declare const VAutocomplete: {
|
|
9813
9814
|
default: undefined;
|
9814
9815
|
};
|
9815
9816
|
glow: BooleanConstructor;
|
9816
|
-
iconColor: (StringConstructor | BooleanConstructor)[];
|
9817
9817
|
hideSpinButtons: BooleanConstructor;
|
9818
9818
|
hint: StringConstructor;
|
9819
9819
|
persistentHint: BooleanConstructor;
|
@@ -9992,6 +9992,7 @@ export declare const VAutocomplete: {
|
|
9992
9992
|
bgColor: StringConstructor;
|
9993
9993
|
prependIcon: PropType<import("../../composables/icons.js").IconValue>;
|
9994
9994
|
appendIcon: PropType<import("../../composables/icons.js").IconValue>;
|
9995
|
+
iconColor: (StringConstructor | BooleanConstructor)[];
|
9995
9996
|
clearIcon: {
|
9996
9997
|
type: PropType<import("../../composables/icons.js").IconValue>;
|
9997
9998
|
default: string;
|
@@ -10007,7 +10008,6 @@ export declare const VAutocomplete: {
|
|
10007
10008
|
default: undefined;
|
10008
10009
|
};
|
10009
10010
|
glow: BooleanConstructor;
|
10010
|
-
iconColor: (StringConstructor | BooleanConstructor)[];
|
10011
10011
|
hideSpinButtons: BooleanConstructor;
|
10012
10012
|
hint: StringConstructor;
|
10013
10013
|
persistentHint: BooleanConstructor;
|