@vuetify/nightly 3.8.5-master.2025-05-20 → 3.8.6-dev.2025-05-21
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 +21 -14
- package/dist/json/attributes.json +1331 -1311
- package/dist/json/importMap-labs.json +24 -24
- package/dist/json/importMap.json +192 -192
- package/dist/json/tags.json +5 -0
- package/dist/json/web-types.json +2610 -2471
- package/dist/vuetify-labs.cjs +288 -117
- package/dist/vuetify-labs.css +3866 -3838
- package/dist/vuetify-labs.d.ts +1490 -1352
- package/dist/vuetify-labs.esm.js +289 -118
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +288 -117
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +282 -106
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +3130 -3102
- package/dist/vuetify.d.ts +659 -519
- package/dist/vuetify.esm.js +283 -107
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +282 -106
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +1188 -1178
- 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 +120 -96
- package/lib/components/VAutocomplete/VAutocomplete.js +18 -1
- package/lib/components/VAutocomplete/VAutocomplete.js.map +1 -1
- 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 +120 -96
- package/lib/components/VCombobox/VCombobox.js +19 -1
- package/lib/components/VCombobox/VCombobox.js.map +1 -1
- 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/VList/VListChildren.js.map +1 -1
- package/lib/components/VNumberInput/VNumberInput.d.ts +103 -89
- package/lib/components/VNumberInput/VNumberInput.js +19 -4
- package/lib/components/VNumberInput/VNumberInput.js.map +1 -1
- package/lib/components/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 +120 -96
- package/lib/components/VSelect/VSelect.js +18 -1
- package/lib/components/VSelect/VSelect.js.map +1 -1
- package/lib/components/VSlider/VSlider.d.ts +3 -3
- package/lib/components/VSwitch/VSwitch.d.ts +3 -3
- package/lib/components/VTextField/VTextField.d.ts +27 -27
- package/lib/components/VTextarea/VTextarea.d.ts +15 -15
- package/lib/composables/calendar.d.ts +1 -0
- package/lib/composables/calendar.js.map +1 -1
- package/lib/composables/date/index.d.ts +1 -0
- package/lib/composables/date/index.js +1 -0
- package/lib/composables/date/index.js.map +1 -1
- package/lib/composables/filter.js +3 -0
- package/lib/composables/filter.js.map +1 -1
- package/lib/composables/iconSizes.d.ts +28 -0
- package/lib/composables/iconSizes.js +23 -0
- package/lib/composables/iconSizes.js.map +1 -0
- package/lib/composables/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 +74 -69
- package/lib/framework.js +1 -1
- package/lib/framework.js.map +1 -1
- package/lib/labs/VColorInput/VColorInput.d.ts +3 -3
- package/lib/labs/VDateInput/VDateInput.d.ts +87 -87
- package/lib/labs/VFileUpload/VFileUpload.d.ts +3 -3
- 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/util/globals.d.ts +1 -0
- package/lib/util/globals.js +1 -0
- package/lib/util/globals.js.map +1 -1
- package/package.json +3 -1
@@ -52,6 +52,7 @@ export declare const 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>;
|
@@ -4619,7 +4619,7 @@ export declare const VCombobox: {
|
|
4619
4619
|
'update:modelValue': (value: any) => true;
|
4620
4620
|
'update:search': (value: string) => true;
|
4621
4621
|
'update:menu': (value: boolean) => true;
|
4622
|
-
}, "multiple" | "$children" | "v-slots" | "modelValue" | "items" | "itemValue" | "returnObject" | "update:modelValue" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "v-slot:label" | "v-slot:message" | "v-slot:details" | "v-slot:item" | "itemTitle" | "itemProps" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {
|
4622
|
+
}, "multiple" | "$children" | "v-slots" | "modelValue" | "items" | "itemValue" | "returnObject" | "update:modelValue" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "v-slot:label" | "v-slot:message" | "v-slot:details" | "v-slot:item" | "v-slot:divider" | "v-slot:subheader" | "itemTitle" | "itemProps" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {
|
4623
4623
|
flat: boolean;
|
4624
4624
|
reverse: boolean;
|
4625
4625
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
@@ -4698,6 +4698,14 @@ export declare const VCombobox: {
|
|
4698
4698
|
item: ListItem<unknown>;
|
4699
4699
|
index: number;
|
4700
4700
|
}) => import("vue").VNode[];
|
4701
|
+
subheader: (arg: {
|
4702
|
+
props: Record<string, unknown>;
|
4703
|
+
index: number;
|
4704
|
+
}) => import("vue").VNode[];
|
4705
|
+
divider: (arg: {
|
4706
|
+
props: Record<string, unknown>;
|
4707
|
+
index: number;
|
4708
|
+
}) => import("vue").VNode[];
|
4701
4709
|
'prepend-item': () => import("vue").VNode[];
|
4702
4710
|
'append-item': () => import("vue").VNode[];
|
4703
4711
|
'no-data': () => import("vue").VNode[];
|
@@ -4781,6 +4789,7 @@ export declare const VCombobox: {
|
|
4781
4789
|
bgColor?: string | undefined;
|
4782
4790
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4783
4791
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4792
|
+
iconColor?: string | boolean | undefined;
|
4784
4793
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4785
4794
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4786
4795
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -4788,7 +4797,6 @@ export declare const VCombobox: {
|
|
4788
4797
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4789
4798
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4790
4799
|
centerAffix?: boolean | undefined;
|
4791
|
-
iconColor?: string | boolean | undefined;
|
4792
4800
|
hint?: string | undefined;
|
4793
4801
|
hideDetails?: boolean | "auto" | undefined;
|
4794
4802
|
suffix?: string | undefined;
|
@@ -5268,6 +5276,7 @@ export declare const VCombobox: {
|
|
5268
5276
|
bgColor?: string | undefined;
|
5269
5277
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5270
5278
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5279
|
+
iconColor?: string | boolean | undefined;
|
5271
5280
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5272
5281
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5273
5282
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -5276,7 +5285,6 @@ export declare const VCombobox: {
|
|
5276
5285
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5277
5286
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5278
5287
|
centerAffix?: boolean | undefined;
|
5279
|
-
iconColor?: string | boolean | undefined;
|
5280
5288
|
hint?: string | undefined;
|
5281
5289
|
hideDetails?: boolean | "auto" | undefined;
|
5282
5290
|
suffix?: string | undefined;
|
@@ -5420,6 +5428,7 @@ export declare const VCombobox: {
|
|
5420
5428
|
bgColor?: string | undefined;
|
5421
5429
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5422
5430
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5431
|
+
iconColor?: string | boolean | undefined;
|
5423
5432
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5424
5433
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5425
5434
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -5428,7 +5437,6 @@ export declare const VCombobox: {
|
|
5428
5437
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5429
5438
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5430
5439
|
centerAffix?: boolean | undefined;
|
5431
|
-
iconColor?: string | boolean | undefined;
|
5432
5440
|
hint?: string | undefined;
|
5433
5441
|
hideDetails?: boolean | "auto" | undefined;
|
5434
5442
|
suffix?: string | undefined;
|
@@ -5543,9 +5551,9 @@ export declare const VCombobox: {
|
|
5543
5551
|
baseColor?: string | undefined;
|
5544
5552
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5545
5553
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5554
|
+
iconColor?: string | boolean | undefined;
|
5546
5555
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
5547
5556
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
5548
|
-
iconColor?: string | boolean | undefined;
|
5549
5557
|
hint?: string | undefined;
|
5550
5558
|
hideDetails?: boolean | "auto" | undefined;
|
5551
5559
|
} & 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 +5607,9 @@ export declare const VCombobox: {
|
|
5599
5607
|
baseColor?: string | undefined;
|
5600
5608
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5601
5609
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5610
|
+
iconColor?: string | boolean | undefined;
|
5602
5611
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
5603
5612
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
5604
|
-
iconColor?: string | boolean | undefined;
|
5605
5613
|
hint?: string | undefined;
|
5606
5614
|
hideDetails?: boolean | "auto" | undefined;
|
5607
5615
|
} & {}, {
|
@@ -5702,9 +5710,9 @@ export declare const VCombobox: {
|
|
5702
5710
|
baseColor?: string | undefined;
|
5703
5711
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5704
5712
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5713
|
+
iconColor?: string | boolean | undefined;
|
5705
5714
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
5706
5715
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
5707
|
-
iconColor?: string | boolean | undefined;
|
5708
5716
|
hint?: string | undefined;
|
5709
5717
|
hideDetails?: boolean | "auto" | undefined;
|
5710
5718
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -5716,7 +5724,7 @@ export declare const VCombobox: {
|
|
5716
5724
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
5717
5725
|
modelValue?: unknown;
|
5718
5726
|
'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" | "
|
5727
|
+
}, 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
5728
|
$: import("vue").ComponentInternalInstance;
|
5721
5729
|
$data: {};
|
5722
5730
|
$props: Partial<{
|
@@ -5763,13 +5771,13 @@ export declare const VCombobox: {
|
|
5763
5771
|
rounded?: string | number | boolean | undefined;
|
5764
5772
|
baseColor?: string | undefined;
|
5765
5773
|
bgColor?: string | undefined;
|
5774
|
+
iconColor?: string | boolean | undefined;
|
5766
5775
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5767
5776
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5768
5777
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
5769
5778
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5770
5779
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5771
5780
|
centerAffix?: boolean | undefined;
|
5772
|
-
iconColor?: string | boolean | undefined;
|
5773
5781
|
} & 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
5782
|
$attrs: {
|
5775
5783
|
[x: string]: unknown;
|
@@ -5822,13 +5830,13 @@ export declare const VCombobox: {
|
|
5822
5830
|
rounded?: string | number | boolean | undefined;
|
5823
5831
|
baseColor?: string | undefined;
|
5824
5832
|
bgColor?: string | undefined;
|
5833
|
+
iconColor?: string | boolean | undefined;
|
5825
5834
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5826
5835
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5827
5836
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
5828
5837
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5829
5838
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5830
5839
|
centerAffix?: boolean | undefined;
|
5831
|
-
iconColor?: string | boolean | undefined;
|
5832
5840
|
} & {
|
5833
5841
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
5834
5842
|
}, {
|
@@ -5932,13 +5940,13 @@ export declare const VCombobox: {
|
|
5932
5940
|
rounded?: string | number | boolean | undefined;
|
5933
5941
|
baseColor?: string | undefined;
|
5934
5942
|
bgColor?: string | undefined;
|
5943
|
+
iconColor?: string | boolean | undefined;
|
5935
5944
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5936
5945
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5937
5946
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
5938
5947
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5939
5948
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5940
5949
|
centerAffix?: boolean | undefined;
|
5941
|
-
iconColor?: string | boolean | undefined;
|
5942
5950
|
} & {
|
5943
5951
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
5944
5952
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -5947,7 +5955,7 @@ export declare const VCombobox: {
|
|
5947
5955
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
5948
5956
|
modelValue?: unknown;
|
5949
5957
|
'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" | "
|
5958
|
+
}, 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
5959
|
_allExposed: {
|
5952
5960
|
reset: () => Promise<void>;
|
5953
5961
|
resetValidation: () => Promise<void>;
|
@@ -6115,6 +6123,7 @@ export declare const VCombobox: {
|
|
6115
6123
|
bgColor?: string | undefined;
|
6116
6124
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6117
6125
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6126
|
+
iconColor?: string | boolean | undefined;
|
6118
6127
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6119
6128
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6120
6129
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -6123,7 +6132,6 @@ export declare const VCombobox: {
|
|
6123
6132
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6124
6133
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6125
6134
|
centerAffix?: boolean | undefined;
|
6126
|
-
iconColor?: string | boolean | undefined;
|
6127
6135
|
hint?: string | undefined;
|
6128
6136
|
hideDetails?: boolean | "auto" | undefined;
|
6129
6137
|
suffix?: string | undefined;
|
@@ -6238,9 +6246,9 @@ export declare const VCombobox: {
|
|
6238
6246
|
baseColor?: string | undefined;
|
6239
6247
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6240
6248
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6249
|
+
iconColor?: string | boolean | undefined;
|
6241
6250
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
6242
6251
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
6243
|
-
iconColor?: string | boolean | undefined;
|
6244
6252
|
hint?: string | undefined;
|
6245
6253
|
hideDetails?: boolean | "auto" | undefined;
|
6246
6254
|
} & 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 +6302,9 @@ export declare const VCombobox: {
|
|
6294
6302
|
baseColor?: string | undefined;
|
6295
6303
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6296
6304
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6305
|
+
iconColor?: string | boolean | undefined;
|
6297
6306
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
6298
6307
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
6299
|
-
iconColor?: string | boolean | undefined;
|
6300
6308
|
hint?: string | undefined;
|
6301
6309
|
hideDetails?: boolean | "auto" | undefined;
|
6302
6310
|
} & {}, {
|
@@ -6397,9 +6405,9 @@ export declare const VCombobox: {
|
|
6397
6405
|
baseColor?: string | undefined;
|
6398
6406
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6399
6407
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6408
|
+
iconColor?: string | boolean | undefined;
|
6400
6409
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
6401
6410
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
6402
|
-
iconColor?: string | boolean | undefined;
|
6403
6411
|
hint?: string | undefined;
|
6404
6412
|
hideDetails?: boolean | "auto" | undefined;
|
6405
6413
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -6411,7 +6419,7 @@ export declare const VCombobox: {
|
|
6411
6419
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
6412
6420
|
modelValue?: unknown;
|
6413
6421
|
'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" | "
|
6422
|
+
}, 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
6423
|
$: import("vue").ComponentInternalInstance;
|
6416
6424
|
$data: {};
|
6417
6425
|
$props: Partial<{
|
@@ -6458,13 +6466,13 @@ export declare const VCombobox: {
|
|
6458
6466
|
rounded?: string | number | boolean | undefined;
|
6459
6467
|
baseColor?: string | undefined;
|
6460
6468
|
bgColor?: string | undefined;
|
6469
|
+
iconColor?: string | boolean | undefined;
|
6461
6470
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6462
6471
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6463
6472
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6464
6473
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6465
6474
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6466
6475
|
centerAffix?: boolean | undefined;
|
6467
|
-
iconColor?: string | boolean | undefined;
|
6468
6476
|
} & 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
6477
|
$attrs: {
|
6470
6478
|
[x: string]: unknown;
|
@@ -6517,13 +6525,13 @@ export declare const VCombobox: {
|
|
6517
6525
|
rounded?: string | number | boolean | undefined;
|
6518
6526
|
baseColor?: string | undefined;
|
6519
6527
|
bgColor?: string | undefined;
|
6528
|
+
iconColor?: string | boolean | undefined;
|
6520
6529
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6521
6530
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6522
6531
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6523
6532
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6524
6533
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6525
6534
|
centerAffix?: boolean | undefined;
|
6526
|
-
iconColor?: string | boolean | undefined;
|
6527
6535
|
} & {
|
6528
6536
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
6529
6537
|
}, {
|
@@ -6627,13 +6635,13 @@ export declare const VCombobox: {
|
|
6627
6635
|
rounded?: string | number | boolean | undefined;
|
6628
6636
|
baseColor?: string | undefined;
|
6629
6637
|
bgColor?: string | undefined;
|
6638
|
+
iconColor?: string | boolean | undefined;
|
6630
6639
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6631
6640
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6632
6641
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6633
6642
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6634
6643
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6635
6644
|
centerAffix?: boolean | undefined;
|
6636
|
-
iconColor?: string | boolean | undefined;
|
6637
6645
|
} & {
|
6638
6646
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
6639
6647
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -6642,7 +6650,7 @@ export declare const VCombobox: {
|
|
6642
6650
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
6643
6651
|
modelValue?: unknown;
|
6644
6652
|
'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" | "
|
6653
|
+
}, 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
6654
|
_allExposed: {
|
6647
6655
|
reset: () => Promise<void>;
|
6648
6656
|
resetValidation: () => Promise<void>;
|
@@ -6653,7 +6661,7 @@ export declare const VCombobox: {
|
|
6653
6661
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
6654
6662
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
6655
6663
|
} | {};
|
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" | "
|
6664
|
+
}> & {} & 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
6665
|
_allExposed: (HTMLInputElement & Omit<Omit<{
|
6658
6666
|
$: import("vue").ComponentInternalInstance;
|
6659
6667
|
$data: {};
|
@@ -6704,9 +6712,9 @@ export declare const VCombobox: {
|
|
6704
6712
|
baseColor?: string | undefined;
|
6705
6713
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6706
6714
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6715
|
+
iconColor?: string | boolean | undefined;
|
6707
6716
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
6708
6717
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
6709
|
-
iconColor?: string | boolean | undefined;
|
6710
6718
|
hint?: string | undefined;
|
6711
6719
|
hideDetails?: boolean | "auto" | undefined;
|
6712
6720
|
} & 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 +6768,9 @@ export declare const VCombobox: {
|
|
6760
6768
|
baseColor?: string | undefined;
|
6761
6769
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6762
6770
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6771
|
+
iconColor?: string | boolean | undefined;
|
6763
6772
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
6764
6773
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
6765
|
-
iconColor?: string | boolean | undefined;
|
6766
6774
|
hint?: string | undefined;
|
6767
6775
|
hideDetails?: boolean | "auto" | undefined;
|
6768
6776
|
} & {}, {
|
@@ -6863,9 +6871,9 @@ export declare const VCombobox: {
|
|
6863
6871
|
baseColor?: string | undefined;
|
6864
6872
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6865
6873
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6874
|
+
iconColor?: string | boolean | undefined;
|
6866
6875
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
6867
6876
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
6868
|
-
iconColor?: string | boolean | undefined;
|
6869
6877
|
hint?: string | undefined;
|
6870
6878
|
hideDetails?: boolean | "auto" | undefined;
|
6871
6879
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -6877,7 +6885,7 @@ export declare const VCombobox: {
|
|
6877
6885
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
6878
6886
|
modelValue?: unknown;
|
6879
6887
|
'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" | "
|
6888
|
+
}, 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
6889
|
$: import("vue").ComponentInternalInstance;
|
6882
6890
|
$data: {};
|
6883
6891
|
$props: Partial<{
|
@@ -6924,13 +6932,13 @@ export declare const VCombobox: {
|
|
6924
6932
|
rounded?: string | number | boolean | undefined;
|
6925
6933
|
baseColor?: string | undefined;
|
6926
6934
|
bgColor?: string | undefined;
|
6935
|
+
iconColor?: string | boolean | undefined;
|
6927
6936
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6928
6937
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6929
6938
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6930
6939
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6931
6940
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6932
6941
|
centerAffix?: boolean | undefined;
|
6933
|
-
iconColor?: string | boolean | undefined;
|
6934
6942
|
} & 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
6943
|
$attrs: {
|
6936
6944
|
[x: string]: unknown;
|
@@ -6983,13 +6991,13 @@ export declare const VCombobox: {
|
|
6983
6991
|
rounded?: string | number | boolean | undefined;
|
6984
6992
|
baseColor?: string | undefined;
|
6985
6993
|
bgColor?: string | undefined;
|
6994
|
+
iconColor?: string | boolean | undefined;
|
6986
6995
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6987
6996
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6988
6997
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6989
6998
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6990
6999
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6991
7000
|
centerAffix?: boolean | undefined;
|
6992
|
-
iconColor?: string | boolean | undefined;
|
6993
7001
|
} & {
|
6994
7002
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
6995
7003
|
}, {
|
@@ -7093,13 +7101,13 @@ export declare const VCombobox: {
|
|
7093
7101
|
rounded?: string | number | boolean | undefined;
|
7094
7102
|
baseColor?: string | undefined;
|
7095
7103
|
bgColor?: string | undefined;
|
7104
|
+
iconColor?: string | boolean | undefined;
|
7096
7105
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7097
7106
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7098
7107
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
7099
7108
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7100
7109
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7101
7110
|
centerAffix?: boolean | undefined;
|
7102
|
-
iconColor?: string | boolean | undefined;
|
7103
7111
|
} & {
|
7104
7112
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
7105
7113
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -7108,7 +7116,7 @@ export declare const VCombobox: {
|
|
7108
7116
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
7109
7117
|
modelValue?: unknown;
|
7110
7118
|
'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" | "
|
7119
|
+
}, 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
7120
|
_allExposed: {
|
7113
7121
|
reset: () => Promise<void>;
|
7114
7122
|
resetValidation: () => Promise<void>;
|
@@ -7255,6 +7263,7 @@ export declare const VCombobox: {
|
|
7255
7263
|
bgColor?: string | undefined;
|
7256
7264
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7257
7265
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7266
|
+
iconColor?: string | boolean | undefined;
|
7258
7267
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7259
7268
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
7260
7269
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -7262,7 +7271,6 @@ export declare const VCombobox: {
|
|
7262
7271
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7263
7272
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7264
7273
|
centerAffix?: boolean | undefined;
|
7265
|
-
iconColor?: string | boolean | undefined;
|
7266
7274
|
hint?: string | undefined;
|
7267
7275
|
hideDetails?: boolean | "auto" | undefined;
|
7268
7276
|
suffix?: string | undefined;
|
@@ -7742,6 +7750,7 @@ export declare const VCombobox: {
|
|
7742
7750
|
bgColor?: string | undefined;
|
7743
7751
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7744
7752
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7753
|
+
iconColor?: string | boolean | undefined;
|
7745
7754
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7746
7755
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7747
7756
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -7750,7 +7759,6 @@ export declare const VCombobox: {
|
|
7750
7759
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7751
7760
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7752
7761
|
centerAffix?: boolean | undefined;
|
7753
|
-
iconColor?: string | boolean | undefined;
|
7754
7762
|
hint?: string | undefined;
|
7755
7763
|
hideDetails?: boolean | "auto" | undefined;
|
7756
7764
|
suffix?: string | undefined;
|
@@ -7894,6 +7902,7 @@ export declare const VCombobox: {
|
|
7894
7902
|
bgColor?: string | undefined;
|
7895
7903
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7896
7904
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7905
|
+
iconColor?: string | boolean | undefined;
|
7897
7906
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7898
7907
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7899
7908
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -7902,7 +7911,6 @@ export declare const VCombobox: {
|
|
7902
7911
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7903
7912
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7904
7913
|
centerAffix?: boolean | undefined;
|
7905
|
-
iconColor?: string | boolean | undefined;
|
7906
7914
|
hint?: string | undefined;
|
7907
7915
|
hideDetails?: boolean | "auto" | undefined;
|
7908
7916
|
suffix?: string | undefined;
|
@@ -8017,9 +8025,9 @@ export declare const VCombobox: {
|
|
8017
8025
|
baseColor?: string | undefined;
|
8018
8026
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8019
8027
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8028
|
+
iconColor?: string | boolean | undefined;
|
8020
8029
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
8021
8030
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
8022
|
-
iconColor?: string | boolean | undefined;
|
8023
8031
|
hint?: string | undefined;
|
8024
8032
|
hideDetails?: boolean | "auto" | undefined;
|
8025
8033
|
} & 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 +8081,9 @@ export declare const VCombobox: {
|
|
8073
8081
|
baseColor?: string | undefined;
|
8074
8082
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8075
8083
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8084
|
+
iconColor?: string | boolean | undefined;
|
8076
8085
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
8077
8086
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
8078
|
-
iconColor?: string | boolean | undefined;
|
8079
8087
|
hint?: string | undefined;
|
8080
8088
|
hideDetails?: boolean | "auto" | undefined;
|
8081
8089
|
} & {}, {
|
@@ -8176,9 +8184,9 @@ export declare const VCombobox: {
|
|
8176
8184
|
baseColor?: string | undefined;
|
8177
8185
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8178
8186
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8187
|
+
iconColor?: string | boolean | undefined;
|
8179
8188
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
8180
8189
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
8181
|
-
iconColor?: string | boolean | undefined;
|
8182
8190
|
hint?: string | undefined;
|
8183
8191
|
hideDetails?: boolean | "auto" | undefined;
|
8184
8192
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -8190,7 +8198,7 @@ export declare const VCombobox: {
|
|
8190
8198
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
8191
8199
|
modelValue?: unknown;
|
8192
8200
|
'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" | "
|
8201
|
+
}, 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
8202
|
$: import("vue").ComponentInternalInstance;
|
8195
8203
|
$data: {};
|
8196
8204
|
$props: Partial<{
|
@@ -8237,13 +8245,13 @@ export declare const VCombobox: {
|
|
8237
8245
|
rounded?: string | number | boolean | undefined;
|
8238
8246
|
baseColor?: string | undefined;
|
8239
8247
|
bgColor?: string | undefined;
|
8248
|
+
iconColor?: string | boolean | undefined;
|
8240
8249
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8241
8250
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8242
8251
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
8243
8252
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8244
8253
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8245
8254
|
centerAffix?: boolean | undefined;
|
8246
|
-
iconColor?: string | boolean | undefined;
|
8247
8255
|
} & 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
8256
|
$attrs: {
|
8249
8257
|
[x: string]: unknown;
|
@@ -8296,13 +8304,13 @@ export declare const VCombobox: {
|
|
8296
8304
|
rounded?: string | number | boolean | undefined;
|
8297
8305
|
baseColor?: string | undefined;
|
8298
8306
|
bgColor?: string | undefined;
|
8307
|
+
iconColor?: string | boolean | undefined;
|
8299
8308
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8300
8309
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8301
8310
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
8302
8311
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8303
8312
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8304
8313
|
centerAffix?: boolean | undefined;
|
8305
|
-
iconColor?: string | boolean | undefined;
|
8306
8314
|
} & {
|
8307
8315
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
8308
8316
|
}, {
|
@@ -8406,13 +8414,13 @@ export declare const VCombobox: {
|
|
8406
8414
|
rounded?: string | number | boolean | undefined;
|
8407
8415
|
baseColor?: string | undefined;
|
8408
8416
|
bgColor?: string | undefined;
|
8417
|
+
iconColor?: string | boolean | undefined;
|
8409
8418
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8410
8419
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8411
8420
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
8412
8421
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8413
8422
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8414
8423
|
centerAffix?: boolean | undefined;
|
8415
|
-
iconColor?: string | boolean | undefined;
|
8416
8424
|
} & {
|
8417
8425
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
8418
8426
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -8421,7 +8429,7 @@ export declare const VCombobox: {
|
|
8421
8429
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
8422
8430
|
modelValue?: unknown;
|
8423
8431
|
'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" | "
|
8432
|
+
}, 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
8433
|
_allExposed: {
|
8426
8434
|
reset: () => Promise<void>;
|
8427
8435
|
resetValidation: () => Promise<void>;
|
@@ -8589,6 +8597,7 @@ export declare const VCombobox: {
|
|
8589
8597
|
bgColor?: string | undefined;
|
8590
8598
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8591
8599
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8600
|
+
iconColor?: string | boolean | undefined;
|
8592
8601
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8593
8602
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8594
8603
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -8597,7 +8606,6 @@ export declare const VCombobox: {
|
|
8597
8606
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8598
8607
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8599
8608
|
centerAffix?: boolean | undefined;
|
8600
|
-
iconColor?: string | boolean | undefined;
|
8601
8609
|
hint?: string | undefined;
|
8602
8610
|
hideDetails?: boolean | "auto" | undefined;
|
8603
8611
|
suffix?: string | undefined;
|
@@ -8712,9 +8720,9 @@ export declare const VCombobox: {
|
|
8712
8720
|
baseColor?: string | undefined;
|
8713
8721
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8714
8722
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8723
|
+
iconColor?: string | boolean | undefined;
|
8715
8724
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
8716
8725
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
8717
|
-
iconColor?: string | boolean | undefined;
|
8718
8726
|
hint?: string | undefined;
|
8719
8727
|
hideDetails?: boolean | "auto" | undefined;
|
8720
8728
|
} & 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 +8776,9 @@ export declare const VCombobox: {
|
|
8768
8776
|
baseColor?: string | undefined;
|
8769
8777
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8770
8778
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8779
|
+
iconColor?: string | boolean | undefined;
|
8771
8780
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
8772
8781
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
8773
|
-
iconColor?: string | boolean | undefined;
|
8774
8782
|
hint?: string | undefined;
|
8775
8783
|
hideDetails?: boolean | "auto" | undefined;
|
8776
8784
|
} & {}, {
|
@@ -8871,9 +8879,9 @@ export declare const VCombobox: {
|
|
8871
8879
|
baseColor?: string | undefined;
|
8872
8880
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8873
8881
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8882
|
+
iconColor?: string | boolean | undefined;
|
8874
8883
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
8875
8884
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
8876
|
-
iconColor?: string | boolean | undefined;
|
8877
8885
|
hint?: string | undefined;
|
8878
8886
|
hideDetails?: boolean | "auto" | undefined;
|
8879
8887
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -8885,7 +8893,7 @@ export declare const VCombobox: {
|
|
8885
8893
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
8886
8894
|
modelValue?: unknown;
|
8887
8895
|
'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" | "
|
8896
|
+
}, 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
8897
|
$: import("vue").ComponentInternalInstance;
|
8890
8898
|
$data: {};
|
8891
8899
|
$props: Partial<{
|
@@ -8932,13 +8940,13 @@ export declare const VCombobox: {
|
|
8932
8940
|
rounded?: string | number | boolean | undefined;
|
8933
8941
|
baseColor?: string | undefined;
|
8934
8942
|
bgColor?: string | undefined;
|
8943
|
+
iconColor?: string | boolean | undefined;
|
8935
8944
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8936
8945
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8937
8946
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
8938
8947
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8939
8948
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8940
8949
|
centerAffix?: boolean | undefined;
|
8941
|
-
iconColor?: string | boolean | undefined;
|
8942
8950
|
} & 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
8951
|
$attrs: {
|
8944
8952
|
[x: string]: unknown;
|
@@ -8991,13 +8999,13 @@ export declare const VCombobox: {
|
|
8991
8999
|
rounded?: string | number | boolean | undefined;
|
8992
9000
|
baseColor?: string | undefined;
|
8993
9001
|
bgColor?: string | undefined;
|
9002
|
+
iconColor?: string | boolean | undefined;
|
8994
9003
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8995
9004
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
8996
9005
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
8997
9006
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8998
9007
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8999
9008
|
centerAffix?: boolean | undefined;
|
9000
|
-
iconColor?: string | boolean | undefined;
|
9001
9009
|
} & {
|
9002
9010
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
9003
9011
|
}, {
|
@@ -9101,13 +9109,13 @@ export declare const VCombobox: {
|
|
9101
9109
|
rounded?: string | number | boolean | undefined;
|
9102
9110
|
baseColor?: string | undefined;
|
9103
9111
|
bgColor?: string | undefined;
|
9112
|
+
iconColor?: string | boolean | undefined;
|
9104
9113
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9105
9114
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9106
9115
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
9107
9116
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9108
9117
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9109
9118
|
centerAffix?: boolean | undefined;
|
9110
|
-
iconColor?: string | boolean | undefined;
|
9111
9119
|
} & {
|
9112
9120
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
9113
9121
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -9116,7 +9124,7 @@ export declare const VCombobox: {
|
|
9116
9124
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
9117
9125
|
modelValue?: unknown;
|
9118
9126
|
'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" | "
|
9127
|
+
}, 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
9128
|
_allExposed: {
|
9121
9129
|
reset: () => Promise<void>;
|
9122
9130
|
resetValidation: () => Promise<void>;
|
@@ -9127,7 +9135,7 @@ export declare const VCombobox: {
|
|
9127
9135
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
9128
9136
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
9129
9137
|
} | {};
|
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" | "
|
9138
|
+
}> & {} & 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
9139
|
_allExposed: (HTMLInputElement & Omit<Omit<{
|
9132
9140
|
$: import("vue").ComponentInternalInstance;
|
9133
9141
|
$data: {};
|
@@ -9178,9 +9186,9 @@ export declare const VCombobox: {
|
|
9178
9186
|
baseColor?: string | undefined;
|
9179
9187
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9180
9188
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9189
|
+
iconColor?: string | boolean | undefined;
|
9181
9190
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
9182
9191
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
9183
|
-
iconColor?: string | boolean | undefined;
|
9184
9192
|
hint?: string | undefined;
|
9185
9193
|
hideDetails?: boolean | "auto" | undefined;
|
9186
9194
|
} & 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 +9242,9 @@ export declare const VCombobox: {
|
|
9234
9242
|
baseColor?: string | undefined;
|
9235
9243
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9236
9244
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9245
|
+
iconColor?: string | boolean | undefined;
|
9237
9246
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
9238
9247
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
9239
|
-
iconColor?: string | boolean | undefined;
|
9240
9248
|
hint?: string | undefined;
|
9241
9249
|
hideDetails?: boolean | "auto" | undefined;
|
9242
9250
|
} & {}, {
|
@@ -9337,9 +9345,9 @@ export declare const VCombobox: {
|
|
9337
9345
|
baseColor?: string | undefined;
|
9338
9346
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9339
9347
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9348
|
+
iconColor?: string | boolean | undefined;
|
9340
9349
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
9341
9350
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
9342
|
-
iconColor?: string | boolean | undefined;
|
9343
9351
|
hint?: string | undefined;
|
9344
9352
|
hideDetails?: boolean | "auto" | undefined;
|
9345
9353
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -9351,7 +9359,7 @@ export declare const VCombobox: {
|
|
9351
9359
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
9352
9360
|
modelValue?: unknown;
|
9353
9361
|
'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" | "
|
9362
|
+
}, 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
9363
|
$: import("vue").ComponentInternalInstance;
|
9356
9364
|
$data: {};
|
9357
9365
|
$props: Partial<{
|
@@ -9398,13 +9406,13 @@ export declare const VCombobox: {
|
|
9398
9406
|
rounded?: string | number | boolean | undefined;
|
9399
9407
|
baseColor?: string | undefined;
|
9400
9408
|
bgColor?: string | undefined;
|
9409
|
+
iconColor?: string | boolean | undefined;
|
9401
9410
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9402
9411
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9403
9412
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
9404
9413
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9405
9414
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9406
9415
|
centerAffix?: boolean | undefined;
|
9407
|
-
iconColor?: string | boolean | undefined;
|
9408
9416
|
} & 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
9417
|
$attrs: {
|
9410
9418
|
[x: string]: unknown;
|
@@ -9457,13 +9465,13 @@ export declare const VCombobox: {
|
|
9457
9465
|
rounded?: string | number | boolean | undefined;
|
9458
9466
|
baseColor?: string | undefined;
|
9459
9467
|
bgColor?: string | undefined;
|
9468
|
+
iconColor?: string | boolean | undefined;
|
9460
9469
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9461
9470
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9462
9471
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
9463
9472
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9464
9473
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9465
9474
|
centerAffix?: boolean | undefined;
|
9466
|
-
iconColor?: string | boolean | undefined;
|
9467
9475
|
} & {
|
9468
9476
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
9469
9477
|
}, {
|
@@ -9567,13 +9575,13 @@ export declare const VCombobox: {
|
|
9567
9575
|
rounded?: string | number | boolean | undefined;
|
9568
9576
|
baseColor?: string | undefined;
|
9569
9577
|
bgColor?: string | undefined;
|
9578
|
+
iconColor?: string | boolean | undefined;
|
9570
9579
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9571
9580
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
9572
9581
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
9573
9582
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9574
9583
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9575
9584
|
centerAffix?: boolean | undefined;
|
9576
|
-
iconColor?: string | boolean | undefined;
|
9577
9585
|
} & {
|
9578
9586
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
9579
9587
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -9582,7 +9590,7 @@ export declare const VCombobox: {
|
|
9582
9590
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
9583
9591
|
modelValue?: unknown;
|
9584
9592
|
'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" | "
|
9593
|
+
}, 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
9594
|
_allExposed: {
|
9587
9595
|
reset: () => Promise<void>;
|
9588
9596
|
resetValidation: () => Promise<void>;
|
@@ -9607,7 +9615,7 @@ export declare const VCombobox: {
|
|
9607
9615
|
'update:modelValue': (value: any) => true;
|
9608
9616
|
'update:search': (value: string) => true;
|
9609
9617
|
'update:menu': (value: boolean) => true;
|
9610
|
-
}, "multiple" | "$children" | "v-slots" | "modelValue" | "items" | "itemValue" | "returnObject" | "update:modelValue" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "v-slot:label" | "v-slot:message" | "v-slot:details" | "v-slot:item" | "itemTitle" | "itemProps" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">, string, {
|
9618
|
+
}, "multiple" | "$children" | "v-slots" | "modelValue" | "items" | "itemValue" | "returnObject" | "update:modelValue" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "v-slot:label" | "v-slot:message" | "v-slot:details" | "v-slot:item" | "v-slot:divider" | "v-slot:subheader" | "itemTitle" | "itemProps" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">, string, {
|
9611
9619
|
flat: boolean;
|
9612
9620
|
reverse: boolean;
|
9613
9621
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
@@ -9686,6 +9694,14 @@ export declare const VCombobox: {
|
|
9686
9694
|
item: ListItem<unknown>;
|
9687
9695
|
index: number;
|
9688
9696
|
}) => import("vue").VNode[];
|
9697
|
+
subheader: (arg: {
|
9698
|
+
props: Record<string, unknown>;
|
9699
|
+
index: number;
|
9700
|
+
}) => import("vue").VNode[];
|
9701
|
+
divider: (arg: {
|
9702
|
+
props: Record<string, unknown>;
|
9703
|
+
index: number;
|
9704
|
+
}) => import("vue").VNode[];
|
9689
9705
|
'prepend-item': () => import("vue").VNode[];
|
9690
9706
|
'append-item': () => import("vue").VNode[];
|
9691
9707
|
'no-data': () => import("vue").VNode[];
|
@@ -9713,6 +9729,14 @@ export declare const VCombobox: {
|
|
9713
9729
|
item: ListItem<Item>;
|
9714
9730
|
index: number;
|
9715
9731
|
};
|
9732
|
+
subheader: {
|
9733
|
+
props: Record<string, unknown>;
|
9734
|
+
index: number;
|
9735
|
+
};
|
9736
|
+
divider: {
|
9737
|
+
props: Record<string, unknown>;
|
9738
|
+
index: number;
|
9739
|
+
};
|
9716
9740
|
"prepend-item": never;
|
9717
9741
|
"append-item": never;
|
9718
9742
|
"no-data": never;
|
@@ -9810,6 +9834,7 @@ export declare const VCombobox: {
|
|
9810
9834
|
bgColor: StringConstructor;
|
9811
9835
|
prependIcon: PropType<import("../../composables/icons.js").IconValue>;
|
9812
9836
|
appendIcon: PropType<import("../../composables/icons.js").IconValue>;
|
9837
|
+
iconColor: (StringConstructor | BooleanConstructor)[];
|
9813
9838
|
clearIcon: {
|
9814
9839
|
type: PropType<import("../../composables/icons.js").IconValue>;
|
9815
9840
|
default: string;
|
@@ -9825,7 +9850,6 @@ export declare const VCombobox: {
|
|
9825
9850
|
default: undefined;
|
9826
9851
|
};
|
9827
9852
|
glow: BooleanConstructor;
|
9828
|
-
iconColor: (StringConstructor | BooleanConstructor)[];
|
9829
9853
|
hideSpinButtons: BooleanConstructor;
|
9830
9854
|
hint: StringConstructor;
|
9831
9855
|
persistentHint: BooleanConstructor;
|
@@ -10013,6 +10037,7 @@ export declare const VCombobox: {
|
|
10013
10037
|
bgColor: StringConstructor;
|
10014
10038
|
prependIcon: PropType<import("../../composables/icons.js").IconValue>;
|
10015
10039
|
appendIcon: PropType<import("../../composables/icons.js").IconValue>;
|
10040
|
+
iconColor: (StringConstructor | BooleanConstructor)[];
|
10016
10041
|
clearIcon: {
|
10017
10042
|
type: PropType<import("../../composables/icons.js").IconValue>;
|
10018
10043
|
default: string;
|
@@ -10028,7 +10053,6 @@ export declare const VCombobox: {
|
|
10028
10053
|
default: undefined;
|
10029
10054
|
};
|
10030
10055
|
glow: BooleanConstructor;
|
10031
|
-
iconColor: (StringConstructor | BooleanConstructor)[];
|
10032
10056
|
hideSpinButtons: BooleanConstructor;
|
10033
10057
|
hint: StringConstructor;
|
10034
10058
|
persistentHint: BooleanConstructor;
|