@vuetify/nightly 3.8.4-master.2025-05-12 → 3.8.5-dev.2025-05-14
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 +20 -12
- package/dist/_component-variables-labs.sass +1 -0
- package/dist/json/attributes.json +2152 -1792
- package/dist/json/importMap-labs.json +40 -36
- package/dist/json/importMap.json +106 -106
- package/dist/json/tags.json +95 -0
- package/dist/json/web-types.json +5016 -3760
- package/dist/vuetify-labs.cjs +429 -61
- package/dist/vuetify-labs.css +4205 -4149
- package/dist/vuetify-labs.d.ts +2274 -1142
- package/dist/vuetify-labs.esm.js +430 -62
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +429 -61
- 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 +4725 -4672
- package/dist/vuetify.d.ts +544 -487
- 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/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 +51 -43
- 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 +133 -108
- package/lib/labs/VDateInput/VDateInput.js +43 -10
- 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 +2 -1
@@ -52,6 +52,7 @@ export declare const makeVComboboxProps: <Defaults extends {
|
|
52
52
|
bgColor?: unknown;
|
53
53
|
prependIcon?: unknown;
|
54
54
|
appendIcon?: unknown;
|
55
|
+
iconColor?: unknown;
|
55
56
|
clearIcon?: unknown;
|
56
57
|
prependInnerIcon?: unknown;
|
57
58
|
'onClick:clear'?: unknown;
|
@@ -61,7 +62,6 @@ export declare const makeVComboboxProps: <Defaults extends {
|
|
61
62
|
'onClick:prependInner'?: unknown;
|
62
63
|
centerAffix?: unknown;
|
63
64
|
glow?: unknown;
|
64
|
-
iconColor?: unknown;
|
65
65
|
hideSpinButtons?: unknown;
|
66
66
|
hint?: unknown;
|
67
67
|
persistentHint?: unknown;
|
@@ -381,6 +381,10 @@ export declare const makeVComboboxProps: <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 makeVComboboxProps: <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"];
|
@@ -2267,6 +2267,7 @@ export declare const VCombobox: {
|
|
2267
2267
|
bgColor?: string | undefined;
|
2268
2268
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2269
2269
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2270
|
+
iconColor?: string | boolean | undefined;
|
2270
2271
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2271
2272
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
2272
2273
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -2274,7 +2275,6 @@ export declare const VCombobox: {
|
|
2274
2275
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2275
2276
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2276
2277
|
centerAffix?: boolean | undefined;
|
2277
|
-
iconColor?: string | boolean | undefined;
|
2278
2278
|
hint?: string | undefined;
|
2279
2279
|
hideDetails?: boolean | "auto" | undefined;
|
2280
2280
|
suffix?: string | undefined;
|
@@ -2754,6 +2754,7 @@ export declare const VCombobox: {
|
|
2754
2754
|
bgColor?: string | undefined;
|
2755
2755
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2756
2756
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2757
|
+
iconColor?: string | boolean | undefined;
|
2757
2758
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2758
2759
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2759
2760
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -2762,7 +2763,6 @@ export declare const VCombobox: {
|
|
2762
2763
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2763
2764
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2764
2765
|
centerAffix?: boolean | undefined;
|
2765
|
-
iconColor?: string | boolean | undefined;
|
2766
2766
|
hint?: string | undefined;
|
2767
2767
|
hideDetails?: boolean | "auto" | undefined;
|
2768
2768
|
suffix?: string | undefined;
|
@@ -2906,6 +2906,7 @@ export declare const VCombobox: {
|
|
2906
2906
|
bgColor?: string | undefined;
|
2907
2907
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2908
2908
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2909
|
+
iconColor?: string | boolean | undefined;
|
2909
2910
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2910
2911
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2911
2912
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -2914,7 +2915,6 @@ export declare const VCombobox: {
|
|
2914
2915
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2915
2916
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2916
2917
|
centerAffix?: boolean | undefined;
|
2917
|
-
iconColor?: string | boolean | undefined;
|
2918
2918
|
hint?: string | undefined;
|
2919
2919
|
hideDetails?: boolean | "auto" | undefined;
|
2920
2920
|
suffix?: string | undefined;
|
@@ -3029,9 +3029,9 @@ export declare const VCombobox: {
|
|
3029
3029
|
baseColor?: string | undefined;
|
3030
3030
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3031
3031
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3032
|
+
iconColor?: string | boolean | undefined;
|
3032
3033
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
3033
3034
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
3034
|
-
iconColor?: string | boolean | undefined;
|
3035
3035
|
hint?: string | undefined;
|
3036
3036
|
hideDetails?: boolean | "auto" | undefined;
|
3037
3037
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -3085,9 +3085,9 @@ export declare const VCombobox: {
|
|
3085
3085
|
baseColor?: string | undefined;
|
3086
3086
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3087
3087
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3088
|
+
iconColor?: string | boolean | undefined;
|
3088
3089
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
3089
3090
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
3090
|
-
iconColor?: string | boolean | undefined;
|
3091
3091
|
hint?: string | undefined;
|
3092
3092
|
hideDetails?: boolean | "auto" | undefined;
|
3093
3093
|
} & {}, {
|
@@ -3188,9 +3188,9 @@ export declare const VCombobox: {
|
|
3188
3188
|
baseColor?: string | undefined;
|
3189
3189
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3190
3190
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3191
|
+
iconColor?: string | boolean | undefined;
|
3191
3192
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
3192
3193
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
3193
|
-
iconColor?: string | boolean | undefined;
|
3194
3194
|
hint?: string | undefined;
|
3195
3195
|
hideDetails?: boolean | "auto" | undefined;
|
3196
3196
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -3202,7 +3202,7 @@ export declare const VCombobox: {
|
|
3202
3202
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
3203
3203
|
modelValue?: unknown;
|
3204
3204
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
3205
|
-
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "
|
3205
|
+
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "iconColor" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
3206
3206
|
$: import("vue").ComponentInternalInstance;
|
3207
3207
|
$data: {};
|
3208
3208
|
$props: Partial<{
|
@@ -3249,13 +3249,13 @@ export declare const VCombobox: {
|
|
3249
3249
|
rounded?: string | number | boolean | undefined;
|
3250
3250
|
baseColor?: string | undefined;
|
3251
3251
|
bgColor?: string | undefined;
|
3252
|
+
iconColor?: string | boolean | undefined;
|
3252
3253
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3253
3254
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3254
3255
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
3255
3256
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3256
3257
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3257
3258
|
centerAffix?: boolean | undefined;
|
3258
|
-
iconColor?: string | boolean | undefined;
|
3259
3259
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
3260
3260
|
$attrs: {
|
3261
3261
|
[x: string]: unknown;
|
@@ -3308,13 +3308,13 @@ export declare const VCombobox: {
|
|
3308
3308
|
rounded?: string | number | boolean | undefined;
|
3309
3309
|
baseColor?: string | undefined;
|
3310
3310
|
bgColor?: string | undefined;
|
3311
|
+
iconColor?: string | boolean | undefined;
|
3311
3312
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3312
3313
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3313
3314
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
3314
3315
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3315
3316
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3316
3317
|
centerAffix?: boolean | undefined;
|
3317
|
-
iconColor?: string | boolean | undefined;
|
3318
3318
|
} & {
|
3319
3319
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
3320
3320
|
}, {
|
@@ -3418,13 +3418,13 @@ export declare const VCombobox: {
|
|
3418
3418
|
rounded?: string | number | boolean | undefined;
|
3419
3419
|
baseColor?: string | undefined;
|
3420
3420
|
bgColor?: string | undefined;
|
3421
|
+
iconColor?: string | boolean | undefined;
|
3421
3422
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3422
3423
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3423
3424
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
3424
3425
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3425
3426
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3426
3427
|
centerAffix?: boolean | undefined;
|
3427
|
-
iconColor?: string | boolean | undefined;
|
3428
3428
|
} & {
|
3429
3429
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
3430
3430
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -3433,7 +3433,7 @@ export declare const VCombobox: {
|
|
3433
3433
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
3434
3434
|
modelValue?: unknown;
|
3435
3435
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
3436
|
-
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "
|
3436
|
+
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
|
3437
3437
|
_allExposed: {
|
3438
3438
|
reset: () => Promise<void>;
|
3439
3439
|
resetValidation: () => Promise<void>;
|
@@ -3601,6 +3601,7 @@ export declare const VCombobox: {
|
|
3601
3601
|
bgColor?: string | undefined;
|
3602
3602
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3603
3603
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3604
|
+
iconColor?: string | boolean | undefined;
|
3604
3605
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3605
3606
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3606
3607
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -3609,7 +3610,6 @@ export declare const VCombobox: {
|
|
3609
3610
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3610
3611
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3611
3612
|
centerAffix?: boolean | undefined;
|
3612
|
-
iconColor?: string | boolean | undefined;
|
3613
3613
|
hint?: string | undefined;
|
3614
3614
|
hideDetails?: boolean | "auto" | undefined;
|
3615
3615
|
suffix?: string | undefined;
|
@@ -3724,9 +3724,9 @@ export declare const VCombobox: {
|
|
3724
3724
|
baseColor?: string | undefined;
|
3725
3725
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3726
3726
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3727
|
+
iconColor?: string | boolean | undefined;
|
3727
3728
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
3728
3729
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
3729
|
-
iconColor?: string | boolean | undefined;
|
3730
3730
|
hint?: string | undefined;
|
3731
3731
|
hideDetails?: boolean | "auto" | undefined;
|
3732
3732
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -3780,9 +3780,9 @@ export declare const VCombobox: {
|
|
3780
3780
|
baseColor?: string | undefined;
|
3781
3781
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3782
3782
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3783
|
+
iconColor?: string | boolean | undefined;
|
3783
3784
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
3784
3785
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
3785
|
-
iconColor?: string | boolean | undefined;
|
3786
3786
|
hint?: string | undefined;
|
3787
3787
|
hideDetails?: boolean | "auto" | undefined;
|
3788
3788
|
} & {}, {
|
@@ -3883,9 +3883,9 @@ export declare const VCombobox: {
|
|
3883
3883
|
baseColor?: string | undefined;
|
3884
3884
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3885
3885
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3886
|
+
iconColor?: string | boolean | undefined;
|
3886
3887
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
3887
3888
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
3888
|
-
iconColor?: string | boolean | undefined;
|
3889
3889
|
hint?: string | undefined;
|
3890
3890
|
hideDetails?: boolean | "auto" | undefined;
|
3891
3891
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -3897,7 +3897,7 @@ export declare const VCombobox: {
|
|
3897
3897
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
3898
3898
|
modelValue?: unknown;
|
3899
3899
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
3900
|
-
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "
|
3900
|
+
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "iconColor" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
3901
3901
|
$: import("vue").ComponentInternalInstance;
|
3902
3902
|
$data: {};
|
3903
3903
|
$props: Partial<{
|
@@ -3944,13 +3944,13 @@ export declare const VCombobox: {
|
|
3944
3944
|
rounded?: string | number | boolean | undefined;
|
3945
3945
|
baseColor?: string | undefined;
|
3946
3946
|
bgColor?: string | undefined;
|
3947
|
+
iconColor?: string | boolean | undefined;
|
3947
3948
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3948
3949
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3949
3950
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
3950
3951
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3951
3952
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3952
3953
|
centerAffix?: boolean | undefined;
|
3953
|
-
iconColor?: string | boolean | undefined;
|
3954
3954
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
3955
3955
|
$attrs: {
|
3956
3956
|
[x: string]: unknown;
|
@@ -4003,13 +4003,13 @@ export declare const VCombobox: {
|
|
4003
4003
|
rounded?: string | number | boolean | undefined;
|
4004
4004
|
baseColor?: string | undefined;
|
4005
4005
|
bgColor?: string | undefined;
|
4006
|
+
iconColor?: string | boolean | undefined;
|
4006
4007
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4007
4008
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4008
4009
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4009
4010
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4010
4011
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4011
4012
|
centerAffix?: boolean | undefined;
|
4012
|
-
iconColor?: string | boolean | undefined;
|
4013
4013
|
} & {
|
4014
4014
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
4015
4015
|
}, {
|
@@ -4113,13 +4113,13 @@ export declare const VCombobox: {
|
|
4113
4113
|
rounded?: string | number | boolean | undefined;
|
4114
4114
|
baseColor?: string | undefined;
|
4115
4115
|
bgColor?: string | undefined;
|
4116
|
+
iconColor?: string | boolean | undefined;
|
4116
4117
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4117
4118
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4118
4119
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4119
4120
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4120
4121
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4121
4122
|
centerAffix?: boolean | undefined;
|
4122
|
-
iconColor?: string | boolean | undefined;
|
4123
4123
|
} & {
|
4124
4124
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
4125
4125
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -4128,7 +4128,7 @@ export declare const VCombobox: {
|
|
4128
4128
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
4129
4129
|
modelValue?: unknown;
|
4130
4130
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
4131
|
-
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "
|
4131
|
+
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
|
4132
4132
|
_allExposed: {
|
4133
4133
|
reset: () => Promise<void>;
|
4134
4134
|
resetValidation: () => Promise<void>;
|
@@ -4139,7 +4139,7 @@ export declare const VCombobox: {
|
|
4139
4139
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
4140
4140
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
4141
4141
|
} | {};
|
4142
|
-
}> & {} & import("vue").ComponentCustomProperties & {}, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "loading" | "label" | "prefix" | "role" | "class" | "theme" | "placeholder" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "counter" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:append" | "onClick:prepend" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:message" | "
|
4142
|
+
}> & {} & import("vue").ComponentCustomProperties & {}, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "loading" | "label" | "prefix" | "role" | "class" | "theme" | "placeholder" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "counter" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:append" | "onClick:prepend" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "suffix" | "counterValue" | "modelModifiers" | "onClick:control" | "onMousedown:control" | ("flat" | "reverse" | "variant" | "type" | "error" | "active" | "direction" | "style" | "autofocus" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "persistentPlaceholder" | "persistentCounter") | "v-slot:counter">, `$${any}`> & {
|
4143
4143
|
_allExposed: (HTMLInputElement & Omit<Omit<{
|
4144
4144
|
$: import("vue").ComponentInternalInstance;
|
4145
4145
|
$data: {};
|
@@ -4190,9 +4190,9 @@ export declare const VCombobox: {
|
|
4190
4190
|
baseColor?: string | undefined;
|
4191
4191
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4192
4192
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4193
|
+
iconColor?: string | boolean | undefined;
|
4193
4194
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
4194
4195
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
4195
|
-
iconColor?: string | boolean | undefined;
|
4196
4196
|
hint?: string | undefined;
|
4197
4197
|
hideDetails?: boolean | "auto" | undefined;
|
4198
4198
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -4246,9 +4246,9 @@ export declare const VCombobox: {
|
|
4246
4246
|
baseColor?: string | undefined;
|
4247
4247
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4248
4248
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4249
|
+
iconColor?: string | boolean | undefined;
|
4249
4250
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
4250
4251
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
4251
|
-
iconColor?: string | boolean | undefined;
|
4252
4252
|
hint?: string | undefined;
|
4253
4253
|
hideDetails?: boolean | "auto" | undefined;
|
4254
4254
|
} & {}, {
|
@@ -4349,9 +4349,9 @@ export declare const VCombobox: {
|
|
4349
4349
|
baseColor?: string | undefined;
|
4350
4350
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4351
4351
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4352
|
+
iconColor?: string | boolean | undefined;
|
4352
4353
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
4353
4354
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
4354
|
-
iconColor?: string | boolean | undefined;
|
4355
4355
|
hint?: string | undefined;
|
4356
4356
|
hideDetails?: boolean | "auto" | undefined;
|
4357
4357
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -4363,7 +4363,7 @@ export declare const VCombobox: {
|
|
4363
4363
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
4364
4364
|
modelValue?: unknown;
|
4365
4365
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
4366
|
-
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "
|
4366
|
+
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "iconColor" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
4367
4367
|
$: import("vue").ComponentInternalInstance;
|
4368
4368
|
$data: {};
|
4369
4369
|
$props: Partial<{
|
@@ -4410,13 +4410,13 @@ export declare const VCombobox: {
|
|
4410
4410
|
rounded?: string | number | boolean | undefined;
|
4411
4411
|
baseColor?: string | undefined;
|
4412
4412
|
bgColor?: string | undefined;
|
4413
|
+
iconColor?: string | boolean | undefined;
|
4413
4414
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4414
4415
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4415
4416
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4416
4417
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4417
4418
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4418
4419
|
centerAffix?: boolean | undefined;
|
4419
|
-
iconColor?: string | boolean | undefined;
|
4420
4420
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
4421
4421
|
$attrs: {
|
4422
4422
|
[x: string]: unknown;
|
@@ -4469,13 +4469,13 @@ export declare const VCombobox: {
|
|
4469
4469
|
rounded?: string | number | boolean | undefined;
|
4470
4470
|
baseColor?: string | undefined;
|
4471
4471
|
bgColor?: string | undefined;
|
4472
|
+
iconColor?: string | boolean | undefined;
|
4472
4473
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4473
4474
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4474
4475
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4475
4476
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4476
4477
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4477
4478
|
centerAffix?: boolean | undefined;
|
4478
|
-
iconColor?: string | boolean | undefined;
|
4479
4479
|
} & {
|
4480
4480
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
4481
4481
|
}, {
|
@@ -4579,13 +4579,13 @@ export declare const VCombobox: {
|
|
4579
4579
|
rounded?: string | number | boolean | undefined;
|
4580
4580
|
baseColor?: string | undefined;
|
4581
4581
|
bgColor?: string | undefined;
|
4582
|
+
iconColor?: string | boolean | undefined;
|
4582
4583
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4583
4584
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4584
4585
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4585
4586
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4586
4587
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4587
4588
|
centerAffix?: boolean | undefined;
|
4588
|
-
iconColor?: string | boolean | undefined;
|
4589
4589
|
} & {
|
4590
4590
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
4591
4591
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -4594,7 +4594,7 @@ export declare const VCombobox: {
|
|
4594
4594
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
4595
4595
|
modelValue?: unknown;
|
4596
4596
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
4597
|
-
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "
|
4597
|
+
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
|
4598
4598
|
_allExposed: {
|
4599
4599
|
reset: () => Promise<void>;
|
4600
4600
|
resetValidation: () => Promise<void>;
|
@@ -4781,6 +4781,7 @@ export declare const VCombobox: {
|
|
4781
4781
|
bgColor?: string | undefined;
|
4782
4782
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4783
4783
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4784
|
+
iconColor?: string | boolean | undefined;
|
4784
4785
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4785
4786
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4786
4787
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -4788,7 +4789,6 @@ export declare const VCombobox: {
|
|
4788
4789
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4789
4790
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4790
4791
|
centerAffix?: boolean | undefined;
|
4791
|
-
iconColor?: string | boolean | undefined;
|
4792
4792
|
hint?: string | undefined;
|
4793
4793
|
hideDetails?: boolean | "auto" | undefined;
|
4794
4794
|
suffix?: string | undefined;
|
@@ -5268,6 +5268,7 @@ export declare const VCombobox: {
|
|
5268
5268
|
bgColor?: string | undefined;
|
5269
5269
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5270
5270
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5271
|
+
iconColor?: string | boolean | undefined;
|
5271
5272
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5272
5273
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5273
5274
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -5276,7 +5277,6 @@ export declare const VCombobox: {
|
|
5276
5277
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5277
5278
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5278
5279
|
centerAffix?: boolean | undefined;
|
5279
|
-
iconColor?: string | boolean | undefined;
|
5280
5280
|
hint?: string | undefined;
|
5281
5281
|
hideDetails?: boolean | "auto" | undefined;
|
5282
5282
|
suffix?: string | undefined;
|
@@ -5420,6 +5420,7 @@ export declare const VCombobox: {
|
|
5420
5420
|
bgColor?: string | undefined;
|
5421
5421
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5422
5422
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5423
|
+
iconColor?: string | boolean | undefined;
|
5423
5424
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5424
5425
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5425
5426
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -5428,7 +5429,6 @@ export declare const VCombobox: {
|
|
5428
5429
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5429
5430
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5430
5431
|
centerAffix?: boolean | undefined;
|
5431
|
-
iconColor?: string | boolean | undefined;
|
5432
5432
|
hint?: string | undefined;
|
5433
5433
|
hideDetails?: boolean | "auto" | undefined;
|
5434
5434
|
suffix?: string | undefined;
|
@@ -5543,9 +5543,9 @@ export declare const VCombobox: {
|
|
5543
5543
|
baseColor?: string | undefined;
|
5544
5544
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5545
5545
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5546
|
+
iconColor?: string | boolean | undefined;
|
5546
5547
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
5547
5548
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
5548
|
-
iconColor?: string | boolean | undefined;
|
5549
5549
|
hint?: string | undefined;
|
5550
5550
|
hideDetails?: boolean | "auto" | undefined;
|
5551
5551
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -5599,9 +5599,9 @@ export declare const VCombobox: {
|
|
5599
5599
|
baseColor?: string | undefined;
|
5600
5600
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5601
5601
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5602
|
+
iconColor?: string | boolean | undefined;
|
5602
5603
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
5603
5604
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
5604
|
-
iconColor?: string | boolean | undefined;
|
5605
5605
|
hint?: string | undefined;
|
5606
5606
|
hideDetails?: boolean | "auto" | undefined;
|
5607
5607
|
} & {}, {
|
@@ -5702,9 +5702,9 @@ export declare const VCombobox: {
|
|
5702
5702
|
baseColor?: string | undefined;
|
5703
5703
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5704
5704
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5705
|
+
iconColor?: string | boolean | undefined;
|
5705
5706
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
5706
5707
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
5707
|
-
iconColor?: string | boolean | undefined;
|
5708
5708
|
hint?: string | undefined;
|
5709
5709
|
hideDetails?: boolean | "auto" | undefined;
|
5710
5710
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -5716,7 +5716,7 @@ export declare const VCombobox: {
|
|
5716
5716
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
5717
5717
|
modelValue?: unknown;
|
5718
5718
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
5719
|
-
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "
|
5719
|
+
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "iconColor" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
5720
5720
|
$: import("vue").ComponentInternalInstance;
|
5721
5721
|
$data: {};
|
5722
5722
|
$props: Partial<{
|
@@ -5763,13 +5763,13 @@ export declare const VCombobox: {
|
|
5763
5763
|
rounded?: string | number | boolean | undefined;
|
5764
5764
|
baseColor?: string | undefined;
|
5765
5765
|
bgColor?: string | undefined;
|
5766
|
+
iconColor?: string | boolean | undefined;
|
5766
5767
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5767
5768
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5768
5769
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
5769
5770
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5770
5771
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5771
5772
|
centerAffix?: boolean | undefined;
|
5772
|
-
iconColor?: string | boolean | undefined;
|
5773
5773
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
5774
5774
|
$attrs: {
|
5775
5775
|
[x: string]: unknown;
|
@@ -5822,13 +5822,13 @@ export declare const VCombobox: {
|
|
5822
5822
|
rounded?: string | number | boolean | undefined;
|
5823
5823
|
baseColor?: string | undefined;
|
5824
5824
|
bgColor?: string | undefined;
|
5825
|
+
iconColor?: string | boolean | undefined;
|
5825
5826
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5826
5827
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5827
5828
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
5828
5829
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5829
5830
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5830
5831
|
centerAffix?: boolean | undefined;
|
5831
|
-
iconColor?: string | boolean | undefined;
|
5832
5832
|
} & {
|
5833
5833
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
5834
5834
|
}, {
|
@@ -5932,13 +5932,13 @@ export declare const VCombobox: {
|
|
5932
5932
|
rounded?: string | number | boolean | undefined;
|
5933
5933
|
baseColor?: string | undefined;
|
5934
5934
|
bgColor?: string | undefined;
|
5935
|
+
iconColor?: string | boolean | undefined;
|
5935
5936
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5936
5937
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5937
5938
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
5938
5939
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5939
5940
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5940
5941
|
centerAffix?: boolean | undefined;
|
5941
|
-
iconColor?: string | boolean | undefined;
|
5942
5942
|
} & {
|
5943
5943
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
5944
5944
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -5947,7 +5947,7 @@ export declare const VCombobox: {
|
|
5947
5947
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
5948
5948
|
modelValue?: unknown;
|
5949
5949
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
5950
|
-
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "
|
5950
|
+
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
|
5951
5951
|
_allExposed: {
|
5952
5952
|
reset: () => Promise<void>;
|
5953
5953
|
resetValidation: () => Promise<void>;
|
@@ -6115,6 +6115,7 @@ export declare const VCombobox: {
|
|
6115
6115
|
bgColor?: string | undefined;
|
6116
6116
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6117
6117
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6118
|
+
iconColor?: string | boolean | undefined;
|
6118
6119
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6119
6120
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6120
6121
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -6123,7 +6124,6 @@ export declare const VCombobox: {
|
|
6123
6124
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6124
6125
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6125
6126
|
centerAffix?: boolean | undefined;
|
6126
|
-
iconColor?: string | boolean | undefined;
|
6127
6127
|
hint?: string | undefined;
|
6128
6128
|
hideDetails?: boolean | "auto" | undefined;
|
6129
6129
|
suffix?: string | undefined;
|
@@ -6238,9 +6238,9 @@ export declare const VCombobox: {
|
|
6238
6238
|
baseColor?: string | undefined;
|
6239
6239
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6240
6240
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6241
|
+
iconColor?: string | boolean | undefined;
|
6241
6242
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
6242
6243
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
6243
|
-
iconColor?: string | boolean | undefined;
|
6244
6244
|
hint?: string | undefined;
|
6245
6245
|
hideDetails?: boolean | "auto" | undefined;
|
6246
6246
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -6294,9 +6294,9 @@ export declare const VCombobox: {
|
|
6294
6294
|
baseColor?: string | undefined;
|
6295
6295
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6296
6296
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6297
|
+
iconColor?: string | boolean | undefined;
|
6297
6298
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
6298
6299
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
6299
|
-
iconColor?: string | boolean | undefined;
|
6300
6300
|
hint?: string | undefined;
|
6301
6301
|
hideDetails?: boolean | "auto" | undefined;
|
6302
6302
|
} & {}, {
|
@@ -6397,9 +6397,9 @@ export declare const VCombobox: {
|
|
6397
6397
|
baseColor?: string | undefined;
|
6398
6398
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6399
6399
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6400
|
+
iconColor?: string | boolean | undefined;
|
6400
6401
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
6401
6402
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
6402
|
-
iconColor?: string | boolean | undefined;
|
6403
6403
|
hint?: string | undefined;
|
6404
6404
|
hideDetails?: boolean | "auto" | undefined;
|
6405
6405
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -6411,7 +6411,7 @@ export declare const VCombobox: {
|
|
6411
6411
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
6412
6412
|
modelValue?: unknown;
|
6413
6413
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
6414
|
-
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "
|
6414
|
+
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "iconColor" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
6415
6415
|
$: import("vue").ComponentInternalInstance;
|
6416
6416
|
$data: {};
|
6417
6417
|
$props: Partial<{
|
@@ -6458,13 +6458,13 @@ export declare const VCombobox: {
|
|
6458
6458
|
rounded?: string | number | boolean | undefined;
|
6459
6459
|
baseColor?: string | undefined;
|
6460
6460
|
bgColor?: string | undefined;
|
6461
|
+
iconColor?: string | boolean | undefined;
|
6461
6462
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6462
6463
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6463
6464
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6464
6465
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6465
6466
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6466
6467
|
centerAffix?: boolean | undefined;
|
6467
|
-
iconColor?: string | boolean | undefined;
|
6468
6468
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
6469
6469
|
$attrs: {
|
6470
6470
|
[x: string]: unknown;
|
@@ -6517,13 +6517,13 @@ export declare const VCombobox: {
|
|
6517
6517
|
rounded?: string | number | boolean | undefined;
|
6518
6518
|
baseColor?: string | undefined;
|
6519
6519
|
bgColor?: string | undefined;
|
6520
|
+
iconColor?: string | boolean | undefined;
|
6520
6521
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6521
6522
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6522
6523
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6523
6524
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6524
6525
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6525
6526
|
centerAffix?: boolean | undefined;
|
6526
|
-
iconColor?: string | boolean | undefined;
|
6527
6527
|
} & {
|
6528
6528
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
6529
6529
|
}, {
|
@@ -6627,13 +6627,13 @@ export declare const VCombobox: {
|
|
6627
6627
|
rounded?: string | number | boolean | undefined;
|
6628
6628
|
baseColor?: string | undefined;
|
6629
6629
|
bgColor?: string | undefined;
|
6630
|
+
iconColor?: string | boolean | undefined;
|
6630
6631
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6631
6632
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6632
6633
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6633
6634
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6634
6635
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6635
6636
|
centerAffix?: boolean | undefined;
|
6636
|
-
iconColor?: string | boolean | undefined;
|
6637
6637
|
} & {
|
6638
6638
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
6639
6639
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -6642,7 +6642,7 @@ export declare const VCombobox: {
|
|
6642
6642
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
6643
6643
|
modelValue?: unknown;
|
6644
6644
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
6645
|
-
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "
|
6645
|
+
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
|
6646
6646
|
_allExposed: {
|
6647
6647
|
reset: () => Promise<void>;
|
6648
6648
|
resetValidation: () => Promise<void>;
|
@@ -6653,7 +6653,7 @@ export declare const VCombobox: {
|
|
6653
6653
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
6654
6654
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
6655
6655
|
} | {};
|
6656
|
-
}> & {} & import("vue").ComponentCustomProperties & {}, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "loading" | "label" | "prefix" | "role" | "class" | "theme" | "placeholder" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "counter" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:append" | "onClick:prepend" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:message" | "
|
6656
|
+
}> & {} & import("vue").ComponentCustomProperties & {}, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "loading" | "label" | "prefix" | "role" | "class" | "theme" | "placeholder" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "counter" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:append" | "onClick:prepend" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "suffix" | "counterValue" | "modelModifiers" | "onClick:control" | "onMousedown:control" | ("flat" | "reverse" | "variant" | "type" | "error" | "active" | "direction" | "style" | "autofocus" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "persistentPlaceholder" | "persistentCounter") | "v-slot:counter">, `$${any}`> & {
|
6657
6657
|
_allExposed: (HTMLInputElement & Omit<Omit<{
|
6658
6658
|
$: import("vue").ComponentInternalInstance;
|
6659
6659
|
$data: {};
|
@@ -6704,9 +6704,9 @@ export declare const VCombobox: {
|
|
6704
6704
|
baseColor?: string | undefined;
|
6705
6705
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6706
6706
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6707
|
+
iconColor?: string | boolean | undefined;
|
6707
6708
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
6708
6709
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
6709
|
-
iconColor?: string | boolean | undefined;
|
6710
6710
|
hint?: string | undefined;
|
6711
6711
|
hideDetails?: boolean | "auto" | undefined;
|
6712
6712
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -6760,9 +6760,9 @@ export declare const VCombobox: {
|
|
6760
6760
|
baseColor?: string | undefined;
|
6761
6761
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6762
6762
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6763
|
+
iconColor?: string | boolean | undefined;
|
6763
6764
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
6764
6765
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
6765
|
-
iconColor?: string | boolean | undefined;
|
6766
6766
|
hint?: string | undefined;
|
6767
6767
|
hideDetails?: boolean | "auto" | undefined;
|
6768
6768
|
} & {}, {
|
@@ -6863,9 +6863,9 @@ export declare const VCombobox: {
|
|
6863
6863
|
baseColor?: string | undefined;
|
6864
6864
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6865
6865
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6866
|
+
iconColor?: string | boolean | undefined;
|
6866
6867
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
6867
6868
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
6868
|
-
iconColor?: string | boolean | undefined;
|
6869
6869
|
hint?: string | undefined;
|
6870
6870
|
hideDetails?: boolean | "auto" | undefined;
|
6871
6871
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -6877,7 +6877,7 @@ export declare const VCombobox: {
|
|
6877
6877
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
6878
6878
|
modelValue?: unknown;
|
6879
6879
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
6880
|
-
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "
|
6880
|
+
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "iconColor" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
6881
6881
|
$: import("vue").ComponentInternalInstance;
|
6882
6882
|
$data: {};
|
6883
6883
|
$props: Partial<{
|
@@ -6924,13 +6924,13 @@ export declare const VCombobox: {
|
|
6924
6924
|
rounded?: string | number | boolean | undefined;
|
6925
6925
|
baseColor?: string | undefined;
|
6926
6926
|
bgColor?: string | undefined;
|
6927
|
+
iconColor?: string | boolean | undefined;
|
6927
6928
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6928
6929
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6929
6930
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6930
6931
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6931
6932
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6932
6933
|
centerAffix?: boolean | undefined;
|
6933
|
-
iconColor?: string | boolean | undefined;
|
6934
6934
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
6935
6935
|
$attrs: {
|
6936
6936
|
[x: string]: unknown;
|
@@ -6983,13 +6983,13 @@ export declare const VCombobox: {
|
|
6983
6983
|
rounded?: string | number | boolean | undefined;
|
6984
6984
|
baseColor?: string | undefined;
|
6985
6985
|
bgColor?: string | undefined;
|
6986
|
+
iconColor?: string | boolean | undefined;
|
6986
6987
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6987
6988
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6988
6989
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6989
6990
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6990
6991
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6991
6992
|
centerAffix?: boolean | undefined;
|
6992
|
-
iconColor?: string | boolean | undefined;
|
6993
6993
|
} & {
|
6994
6994
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
6995
6995
|
}, {
|
@@ -7093,13 +7093,13 @@ export declare const VCombobox: {
|
|
7093
7093
|
rounded?: string | number | boolean | undefined;
|
7094
7094
|
baseColor?: string | undefined;
|
7095
7095
|
bgColor?: string | undefined;
|
7096
|
+
iconColor?: string | boolean | undefined;
|
7096
7097
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7097
7098
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7098
7099
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
7099
7100
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7100
7101
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7101
7102
|
centerAffix?: boolean | undefined;
|
7102
|
-
iconColor?: string | boolean | undefined;
|
7103
7103
|
} & {
|
7104
7104
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
7105
7105
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -7108,7 +7108,7 @@ export declare const VCombobox: {
|
|
7108
7108
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
7109
7109
|
modelValue?: unknown;
|
7110
7110
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
7111
|
-
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "
|
7111
|
+
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
|
7112
7112
|
_allExposed: {
|
7113
7113
|
reset: () => Promise<void>;
|
7114
7114
|
resetValidation: () => Promise<void>;
|
@@ -7255,6 +7255,7 @@ export declare const VCombobox: {
|
|
7255
7255
|
bgColor?: string | undefined;
|
7256
7256
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7257
7257
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7258
|
+
iconColor?: string | boolean | undefined;
|
7258
7259
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7259
7260
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
7260
7261
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -7262,7 +7263,6 @@ export declare const VCombobox: {
|
|
7262
7263
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7263
7264
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7264
7265
|
centerAffix?: boolean | undefined;
|
7265
|
-
iconColor?: string | boolean | undefined;
|
7266
7266
|
hint?: string | undefined;
|
7267
7267
|
hideDetails?: boolean | "auto" | undefined;
|
7268
7268
|
suffix?: string | undefined;
|
@@ -7742,6 +7742,7 @@ export declare const VCombobox: {
|
|
7742
7742
|
bgColor?: string | undefined;
|
7743
7743
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7744
7744
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7745
|
+
iconColor?: string | boolean | undefined;
|
7745
7746
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7746
7747
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7747
7748
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -7750,7 +7751,6 @@ export declare const VCombobox: {
|
|
7750
7751
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7751
7752
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7752
7753
|
centerAffix?: boolean | undefined;
|
7753
|
-
iconColor?: string | boolean | undefined;
|
7754
7754
|
hint?: string | undefined;
|
7755
7755
|
hideDetails?: boolean | "auto" | undefined;
|
7756
7756
|
suffix?: string | undefined;
|
@@ -7894,6 +7894,7 @@ export declare const VCombobox: {
|
|
7894
7894
|
bgColor?: string | undefined;
|
7895
7895
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7896
7896
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7897
|
+
iconColor?: string | boolean | undefined;
|
7897
7898
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7898
7899
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7899
7900
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -7902,7 +7903,6 @@ export declare const VCombobox: {
|
|
7902
7903
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7903
7904
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7904
7905
|
centerAffix?: boolean | undefined;
|
7905
|
-
iconColor?: string | boolean | undefined;
|
7906
7906
|
hint?: string | undefined;
|
7907
7907
|
hideDetails?: boolean | "auto" | undefined;
|
7908
7908
|
suffix?: string | undefined;
|
@@ -8017,9 +8017,9 @@ export declare const VCombobox: {
|
|
8017
8017
|
baseColor?: string | undefined;
|
8018
8018
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8019
8019
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8020
|
+
iconColor?: string | boolean | undefined;
|
8020
8021
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
8021
8022
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
8022
|
-
iconColor?: string | boolean | undefined;
|
8023
8023
|
hint?: string | undefined;
|
8024
8024
|
hideDetails?: boolean | "auto" | undefined;
|
8025
8025
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -8073,9 +8073,9 @@ export declare const VCombobox: {
|
|
8073
8073
|
baseColor?: string | undefined;
|
8074
8074
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8075
8075
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8076
|
+
iconColor?: string | boolean | undefined;
|
8076
8077
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
8077
8078
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
8078
|
-
iconColor?: string | boolean | undefined;
|
8079
8079
|
hint?: string | undefined;
|
8080
8080
|
hideDetails?: boolean | "auto" | undefined;
|
8081
8081
|
} & {}, {
|
@@ -8176,9 +8176,9 @@ export declare const VCombobox: {
|
|
8176
8176
|
baseColor?: string | undefined;
|
8177
8177
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8178
8178
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8179
|
+
iconColor?: string | boolean | undefined;
|
8179
8180
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
8180
8181
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
8181
|
-
iconColor?: string | boolean | undefined;
|
8182
8182
|
hint?: string | undefined;
|
8183
8183
|
hideDetails?: boolean | "auto" | undefined;
|
8184
8184
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -8190,7 +8190,7 @@ export declare const VCombobox: {
|
|
8190
8190
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
8191
8191
|
modelValue?: unknown;
|
8192
8192
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
8193
|
-
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "
|
8193
|
+
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "iconColor" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
8194
8194
|
$: import("vue").ComponentInternalInstance;
|
8195
8195
|
$data: {};
|
8196
8196
|
$props: Partial<{
|
@@ -8237,13 +8237,13 @@ export declare const VCombobox: {
|
|
8237
8237
|
rounded?: string | number | boolean | undefined;
|
8238
8238
|
baseColor?: string | undefined;
|
8239
8239
|
bgColor?: string | undefined;
|
8240
|
+
iconColor?: string | boolean | undefined;
|
8240
8241
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8241
8242
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8242
8243
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
8243
8244
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8244
8245
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8245
8246
|
centerAffix?: boolean | undefined;
|
8246
|
-
iconColor?: string | boolean | undefined;
|
8247
8247
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
8248
8248
|
$attrs: {
|
8249
8249
|
[x: string]: unknown;
|
@@ -8296,13 +8296,13 @@ export declare const VCombobox: {
|
|
8296
8296
|
rounded?: string | number | boolean | undefined;
|
8297
8297
|
baseColor?: string | undefined;
|
8298
8298
|
bgColor?: string | undefined;
|
8299
|
+
iconColor?: string | boolean | undefined;
|
8299
8300
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8300
8301
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8301
8302
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
8302
8303
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8303
8304
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8304
8305
|
centerAffix?: boolean | undefined;
|
8305
|
-
iconColor?: string | boolean | undefined;
|
8306
8306
|
} & {
|
8307
8307
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
8308
8308
|
}, {
|
@@ -8406,13 +8406,13 @@ export declare const VCombobox: {
|
|
8406
8406
|
rounded?: string | number | boolean | undefined;
|
8407
8407
|
baseColor?: string | undefined;
|
8408
8408
|
bgColor?: string | undefined;
|
8409
|
+
iconColor?: string | boolean | undefined;
|
8409
8410
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8410
8411
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8411
8412
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
8412
8413
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8413
8414
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8414
8415
|
centerAffix?: boolean | undefined;
|
8415
|
-
iconColor?: string | boolean | undefined;
|
8416
8416
|
} & {
|
8417
8417
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
8418
8418
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -8421,7 +8421,7 @@ export declare const VCombobox: {
|
|
8421
8421
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
8422
8422
|
modelValue?: unknown;
|
8423
8423
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
8424
|
-
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "
|
8424
|
+
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
|
8425
8425
|
_allExposed: {
|
8426
8426
|
reset: () => Promise<void>;
|
8427
8427
|
resetValidation: () => Promise<void>;
|
@@ -8589,6 +8589,7 @@ export declare const VCombobox: {
|
|
8589
8589
|
bgColor?: string | undefined;
|
8590
8590
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8591
8591
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8592
|
+
iconColor?: string | boolean | undefined;
|
8592
8593
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8593
8594
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8594
8595
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -8597,7 +8598,6 @@ export declare const VCombobox: {
|
|
8597
8598
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8598
8599
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8599
8600
|
centerAffix?: boolean | undefined;
|
8600
|
-
iconColor?: string | boolean | undefined;
|
8601
8601
|
hint?: string | undefined;
|
8602
8602
|
hideDetails?: boolean | "auto" | undefined;
|
8603
8603
|
suffix?: string | undefined;
|
@@ -8712,9 +8712,9 @@ export declare const VCombobox: {
|
|
8712
8712
|
baseColor?: string | undefined;
|
8713
8713
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8714
8714
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8715
|
+
iconColor?: string | boolean | undefined;
|
8715
8716
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
8716
8717
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
8717
|
-
iconColor?: string | boolean | undefined;
|
8718
8718
|
hint?: string | undefined;
|
8719
8719
|
hideDetails?: boolean | "auto" | undefined;
|
8720
8720
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -8768,9 +8768,9 @@ export declare const VCombobox: {
|
|
8768
8768
|
baseColor?: string | undefined;
|
8769
8769
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8770
8770
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8771
|
+
iconColor?: string | boolean | undefined;
|
8771
8772
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
8772
8773
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
8773
|
-
iconColor?: string | boolean | undefined;
|
8774
8774
|
hint?: string | undefined;
|
8775
8775
|
hideDetails?: boolean | "auto" | undefined;
|
8776
8776
|
} & {}, {
|
@@ -8871,9 +8871,9 @@ export declare const VCombobox: {
|
|
8871
8871
|
baseColor?: string | undefined;
|
8872
8872
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8873
8873
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8874
|
+
iconColor?: string | boolean | undefined;
|
8874
8875
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
8875
8876
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
8876
|
-
iconColor?: string | boolean | undefined;
|
8877
8877
|
hint?: string | undefined;
|
8878
8878
|
hideDetails?: boolean | "auto" | undefined;
|
8879
8879
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -8885,7 +8885,7 @@ export declare const VCombobox: {
|
|
8885
8885
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
8886
8886
|
modelValue?: unknown;
|
8887
8887
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
8888
|
-
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "
|
8888
|
+
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "iconColor" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
8889
8889
|
$: import("vue").ComponentInternalInstance;
|
8890
8890
|
$data: {};
|
8891
8891
|
$props: Partial<{
|
@@ -8932,13 +8932,13 @@ export declare const VCombobox: {
|
|
8932
8932
|
rounded?: string | number | boolean | undefined;
|
8933
8933
|
baseColor?: string | undefined;
|
8934
8934
|
bgColor?: string | undefined;
|
8935
|
+
iconColor?: string | boolean | undefined;
|
8935
8936
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8936
8937
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8937
8938
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
8938
8939
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8939
8940
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8940
8941
|
centerAffix?: boolean | undefined;
|
8941
|
-
iconColor?: string | boolean | undefined;
|
8942
8942
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
8943
8943
|
$attrs: {
|
8944
8944
|
[x: string]: unknown;
|
@@ -8991,13 +8991,13 @@ export declare const VCombobox: {
|
|
8991
8991
|
rounded?: string | number | boolean | undefined;
|
8992
8992
|
baseColor?: string | undefined;
|
8993
8993
|
bgColor?: string | undefined;
|
8994
|
+
iconColor?: string | boolean | undefined;
|
8994
8995
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8995
8996
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8996
8997
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
8997
8998
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8998
8999
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8999
9000
|
centerAffix?: boolean | undefined;
|
9000
|
-
iconColor?: string | boolean | undefined;
|
9001
9001
|
} & {
|
9002
9002
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
9003
9003
|
}, {
|
@@ -9101,13 +9101,13 @@ export declare const VCombobox: {
|
|
9101
9101
|
rounded?: string | number | boolean | undefined;
|
9102
9102
|
baseColor?: string | undefined;
|
9103
9103
|
bgColor?: string | undefined;
|
9104
|
+
iconColor?: string | boolean | undefined;
|
9104
9105
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9105
9106
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9106
9107
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
9107
9108
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9108
9109
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9109
9110
|
centerAffix?: boolean | undefined;
|
9110
|
-
iconColor?: string | boolean | undefined;
|
9111
9111
|
} & {
|
9112
9112
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
9113
9113
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -9116,7 +9116,7 @@ export declare const VCombobox: {
|
|
9116
9116
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
9117
9117
|
modelValue?: unknown;
|
9118
9118
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
9119
|
-
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "
|
9119
|
+
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
|
9120
9120
|
_allExposed: {
|
9121
9121
|
reset: () => Promise<void>;
|
9122
9122
|
resetValidation: () => Promise<void>;
|
@@ -9127,7 +9127,7 @@ export declare const VCombobox: {
|
|
9127
9127
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
9128
9128
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
9129
9129
|
} | {};
|
9130
|
-
}> & {} & import("vue").ComponentCustomProperties & {}, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "loading" | "label" | "prefix" | "role" | "class" | "theme" | "placeholder" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "counter" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:append" | "onClick:prepend" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:message" | "
|
9130
|
+
}> & {} & import("vue").ComponentCustomProperties & {}, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "loading" | "label" | "prefix" | "role" | "class" | "theme" | "placeholder" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "counter" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:append" | "onClick:prepend" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "suffix" | "counterValue" | "modelModifiers" | "onClick:control" | "onMousedown:control" | ("flat" | "reverse" | "variant" | "type" | "error" | "active" | "direction" | "style" | "autofocus" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "persistentPlaceholder" | "persistentCounter") | "v-slot:counter">, `$${any}`> & {
|
9131
9131
|
_allExposed: (HTMLInputElement & Omit<Omit<{
|
9132
9132
|
$: import("vue").ComponentInternalInstance;
|
9133
9133
|
$data: {};
|
@@ -9178,9 +9178,9 @@ export declare const VCombobox: {
|
|
9178
9178
|
baseColor?: string | undefined;
|
9179
9179
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9180
9180
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9181
|
+
iconColor?: string | boolean | undefined;
|
9181
9182
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
9182
9183
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
9183
|
-
iconColor?: string | boolean | undefined;
|
9184
9184
|
hint?: string | undefined;
|
9185
9185
|
hideDetails?: boolean | "auto" | undefined;
|
9186
9186
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -9234,9 +9234,9 @@ export declare const VCombobox: {
|
|
9234
9234
|
baseColor?: string | undefined;
|
9235
9235
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9236
9236
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9237
|
+
iconColor?: string | boolean | undefined;
|
9237
9238
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
9238
9239
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
9239
|
-
iconColor?: string | boolean | undefined;
|
9240
9240
|
hint?: string | undefined;
|
9241
9241
|
hideDetails?: boolean | "auto" | undefined;
|
9242
9242
|
} & {}, {
|
@@ -9337,9 +9337,9 @@ export declare const VCombobox: {
|
|
9337
9337
|
baseColor?: string | undefined;
|
9338
9338
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9339
9339
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9340
|
+
iconColor?: string | boolean | undefined;
|
9340
9341
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
9341
9342
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
9342
|
-
iconColor?: string | boolean | undefined;
|
9343
9343
|
hint?: string | undefined;
|
9344
9344
|
hideDetails?: boolean | "auto" | undefined;
|
9345
9345
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -9351,7 +9351,7 @@ export declare const VCombobox: {
|
|
9351
9351
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
9352
9352
|
modelValue?: unknown;
|
9353
9353
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
9354
|
-
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "
|
9354
|
+
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "iconColor" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
9355
9355
|
$: import("vue").ComponentInternalInstance;
|
9356
9356
|
$data: {};
|
9357
9357
|
$props: Partial<{
|
@@ -9398,13 +9398,13 @@ export declare const VCombobox: {
|
|
9398
9398
|
rounded?: string | number | boolean | undefined;
|
9399
9399
|
baseColor?: string | undefined;
|
9400
9400
|
bgColor?: string | undefined;
|
9401
|
+
iconColor?: string | boolean | undefined;
|
9401
9402
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9402
9403
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9403
9404
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
9404
9405
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9405
9406
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9406
9407
|
centerAffix?: boolean | undefined;
|
9407
|
-
iconColor?: string | boolean | undefined;
|
9408
9408
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
9409
9409
|
$attrs: {
|
9410
9410
|
[x: string]: unknown;
|
@@ -9457,13 +9457,13 @@ export declare const VCombobox: {
|
|
9457
9457
|
rounded?: string | number | boolean | undefined;
|
9458
9458
|
baseColor?: string | undefined;
|
9459
9459
|
bgColor?: string | undefined;
|
9460
|
+
iconColor?: string | boolean | undefined;
|
9460
9461
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9461
9462
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9462
9463
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
9463
9464
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9464
9465
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9465
9466
|
centerAffix?: boolean | undefined;
|
9466
|
-
iconColor?: string | boolean | undefined;
|
9467
9467
|
} & {
|
9468
9468
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
9469
9469
|
}, {
|
@@ -9567,13 +9567,13 @@ export declare const VCombobox: {
|
|
9567
9567
|
rounded?: string | number | boolean | undefined;
|
9568
9568
|
baseColor?: string | undefined;
|
9569
9569
|
bgColor?: string | undefined;
|
9570
|
+
iconColor?: string | boolean | undefined;
|
9570
9571
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9571
9572
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9572
9573
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
9573
9574
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9574
9575
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9575
9576
|
centerAffix?: boolean | undefined;
|
9576
|
-
iconColor?: string | boolean | undefined;
|
9577
9577
|
} & {
|
9578
9578
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
9579
9579
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -9582,7 +9582,7 @@ export declare const VCombobox: {
|
|
9582
9582
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
9583
9583
|
modelValue?: unknown;
|
9584
9584
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
9585
|
-
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "
|
9585
|
+
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
|
9586
9586
|
_allExposed: {
|
9587
9587
|
reset: () => Promise<void>;
|
9588
9588
|
resetValidation: () => Promise<void>;
|
@@ -9810,6 +9810,7 @@ export declare const VCombobox: {
|
|
9810
9810
|
bgColor: StringConstructor;
|
9811
9811
|
prependIcon: PropType<import("../../composables/icons.js").IconValue>;
|
9812
9812
|
appendIcon: PropType<import("../../composables/icons.js").IconValue>;
|
9813
|
+
iconColor: (StringConstructor | BooleanConstructor)[];
|
9813
9814
|
clearIcon: {
|
9814
9815
|
type: PropType<import("../../composables/icons.js").IconValue>;
|
9815
9816
|
default: string;
|
@@ -9825,7 +9826,6 @@ export declare const VCombobox: {
|
|
9825
9826
|
default: undefined;
|
9826
9827
|
};
|
9827
9828
|
glow: BooleanConstructor;
|
9828
|
-
iconColor: (StringConstructor | BooleanConstructor)[];
|
9829
9829
|
hideSpinButtons: BooleanConstructor;
|
9830
9830
|
hint: StringConstructor;
|
9831
9831
|
persistentHint: BooleanConstructor;
|
@@ -10013,6 +10013,7 @@ export declare const VCombobox: {
|
|
10013
10013
|
bgColor: StringConstructor;
|
10014
10014
|
prependIcon: PropType<import("../../composables/icons.js").IconValue>;
|
10015
10015
|
appendIcon: PropType<import("../../composables/icons.js").IconValue>;
|
10016
|
+
iconColor: (StringConstructor | BooleanConstructor)[];
|
10016
10017
|
clearIcon: {
|
10017
10018
|
type: PropType<import("../../composables/icons.js").IconValue>;
|
10018
10019
|
default: string;
|
@@ -10028,7 +10029,6 @@ export declare const VCombobox: {
|
|
10028
10029
|
default: undefined;
|
10029
10030
|
};
|
10030
10031
|
glow: BooleanConstructor;
|
10031
|
-
iconColor: (StringConstructor | BooleanConstructor)[];
|
10032
10032
|
hideSpinButtons: BooleanConstructor;
|
10033
10033
|
hint: StringConstructor;
|
10034
10034
|
persistentHint: BooleanConstructor;
|