@vuetify/nightly 3.8.4-master.2025-05-12 → 3.8.5-dev.2025-05-14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +20 -12
- package/dist/_component-variables-labs.sass +1 -0
- package/dist/json/attributes.json +2152 -1792
- package/dist/json/importMap-labs.json +40 -36
- package/dist/json/importMap.json +106 -106
- package/dist/json/tags.json +95 -0
- package/dist/json/web-types.json +5016 -3760
- package/dist/vuetify-labs.cjs +429 -61
- package/dist/vuetify-labs.css +4205 -4149
- package/dist/vuetify-labs.d.ts +2274 -1142
- package/dist/vuetify-labs.esm.js +430 -62
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +429 -61
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +151 -41
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +4725 -4672
- package/dist/vuetify.d.ts +544 -487
- package/dist/vuetify.esm.js +152 -42
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +151 -41
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +1181 -1173
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAlert/VAlert.css +6 -1
- package/lib/components/VAlert/VAlert.d.ts +35 -0
- package/lib/components/VAlert/VAlert.js +14 -9
- package/lib/components/VAlert/VAlert.js.map +1 -1
- package/lib/components/VAlert/VAlert.sass +7 -1
- package/lib/components/VAutocomplete/VAutocomplete.d.ts +94 -94
- package/lib/components/VBottomSheet/VBottomSheet.css +1 -1
- package/lib/components/VBottomSheet/VBottomSheet.sass +1 -1
- package/lib/components/VBtn/VBtn.css +25 -0
- package/lib/components/VBtn/VBtn.sass +9 -0
- package/lib/components/VBtn/_variables.scss +1 -0
- package/lib/components/VBtnGroup/VBtnGroup.css +30 -7
- package/lib/components/VBtnGroup/VBtnGroup.d.ts +58 -32
- package/lib/components/VBtnGroup/VBtnGroup.js +7 -3
- package/lib/components/VBtnGroup/VBtnGroup.js.map +1 -1
- package/lib/components/VBtnGroup/VBtnGroup.sass +44 -17
- package/lib/components/VBtnToggle/VBtnToggle.d.ts +25 -0
- package/lib/components/VCheckbox/VCheckbox.d.ts +3 -3
- package/lib/components/VCombobox/VCombobox.d.ts +94 -94
- package/lib/components/VField/VField.d.ts +3 -3
- package/lib/components/VFileInput/VFileInput.d.ts +15 -15
- package/lib/components/VInput/VInput.d.ts +4 -4
- package/lib/components/VNumberInput/VNumberInput.d.ts +89 -89
- package/lib/components/VOverlay/VOverlay.css +1 -1
- package/lib/components/VOverlay/_variables.scss +1 -1
- package/lib/components/VRadioGroup/VRadioGroup.d.ts +3 -3
- package/lib/components/VRangeSlider/VRangeSlider.d.ts +3 -3
- package/lib/components/VSelect/VSelect.d.ts +94 -94
- package/lib/components/VSlider/VSlider.d.ts +3 -3
- package/lib/components/VSnackbarQueue/VSnackbarQueue.d.ts +3 -1
- package/lib/components/VSnackbarQueue/VSnackbarQueue.js.map +1 -1
- package/lib/components/VSwitch/VSwitch.d.ts +3 -3
- package/lib/components/VTextField/VTextField.d.ts +27 -27
- package/lib/components/VTextarea/VTextarea.d.ts +15 -15
- package/lib/composables/calendar.d.ts +1 -0
- package/lib/composables/calendar.js.map +1 -1
- package/lib/composables/dateFormat.d.ts +24 -0
- package/lib/composables/dateFormat.js +112 -0
- package/lib/composables/dateFormat.js.map +1 -0
- package/lib/composables/iconSizes.d.ts +28 -0
- package/lib/composables/iconSizes.js +23 -0
- package/lib/composables/iconSizes.js.map +1 -0
- package/lib/composables/theme.d.ts +6 -1
- package/lib/composables/theme.js +94 -26
- package/lib/composables/theme.js.map +1 -1
- package/lib/composables/virtual.js +6 -1
- package/lib/composables/virtual.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/entry-bundler.js.map +1 -1
- package/lib/framework.d.ts +51 -43
- package/lib/framework.js +1 -1
- package/lib/framework.js.map +1 -1
- package/lib/iconsets/mdi.js +2 -1
- package/lib/iconsets/mdi.js.map +1 -1
- package/lib/labs/VColorInput/VColorInput.css +4 -0
- package/lib/labs/VColorInput/VColorInput.d.ts +1767 -0
- package/lib/labs/VColorInput/VColorInput.js +129 -0
- package/lib/labs/VColorInput/VColorInput.js.map +1 -0
- package/lib/labs/VColorInput/VColorInput.sass +7 -0
- package/lib/labs/VColorInput/_variables.scss +2 -0
- package/lib/labs/VColorInput/index.d.ts +1 -0
- package/lib/labs/VColorInput/index.js +2 -0
- package/lib/labs/VColorInput/index.js.map +1 -0
- package/lib/labs/VDateInput/VDateInput.d.ts +133 -108
- package/lib/labs/VDateInput/VDateInput.js +43 -10
- package/lib/labs/VDateInput/VDateInput.js.map +1 -1
- package/lib/labs/VIconBtn/VIconBtn.d.ts +29 -29
- package/lib/labs/VIconBtn/VIconBtn.js +7 -11
- package/lib/labs/VIconBtn/VIconBtn.js.map +1 -1
- package/lib/labs/components.d.ts +1 -0
- package/lib/labs/components.js +1 -0
- package/lib/labs/components.js.map +1 -1
- package/lib/util/globals.d.ts +1 -0
- package/lib/util/globals.js +1 -0
- package/lib/util/globals.js.map +1 -1
- package/package.json +2 -1
@@ -1722,6 +1722,7 @@ export declare const makeVSelectProps: <Defaults extends {
|
|
1722
1722
|
bgColor?: unknown;
|
1723
1723
|
prependIcon?: unknown;
|
1724
1724
|
appendIcon?: unknown;
|
1725
|
+
iconColor?: unknown;
|
1725
1726
|
clearIcon?: unknown;
|
1726
1727
|
prependInnerIcon?: unknown;
|
1727
1728
|
'onClick:clear'?: unknown;
|
@@ -1731,7 +1732,6 @@ export declare const makeVSelectProps: <Defaults extends {
|
|
1731
1732
|
'onClick:prependInner'?: unknown;
|
1732
1733
|
centerAffix?: unknown;
|
1733
1734
|
glow?: unknown;
|
1734
|
-
iconColor?: unknown;
|
1735
1735
|
hideSpinButtons?: unknown;
|
1736
1736
|
hint?: unknown;
|
1737
1737
|
persistentHint?: unknown;
|
@@ -2059,6 +2059,10 @@ export declare const makeVSelectProps: <Defaults extends {
|
|
2059
2059
|
type: PropType<unknown extends Defaults["appendIcon"] ? IconValue : IconValue | Defaults["appendIcon"]>;
|
2060
2060
|
default: unknown extends Defaults["appendIcon"] ? IconValue : NonNullable<IconValue> | Defaults["appendIcon"];
|
2061
2061
|
};
|
2062
|
+
iconColor: unknown extends Defaults["iconColor"] ? (StringConstructor | BooleanConstructor)[] : {
|
2063
|
+
type: PropType<unknown extends Defaults["iconColor"] ? string | boolean : string | boolean | Defaults["iconColor"]>;
|
2064
|
+
default: unknown extends Defaults["iconColor"] ? string | boolean : NonNullable<string | boolean> | Defaults["iconColor"];
|
2065
|
+
};
|
2062
2066
|
clearIcon: unknown extends Defaults["clearIcon"] ? {
|
2063
2067
|
type: PropType<IconValue>;
|
2064
2068
|
default: string;
|
@@ -2107,10 +2111,6 @@ export declare const makeVSelectProps: <Defaults extends {
|
|
2107
2111
|
type: PropType<unknown extends Defaults["glow"] ? boolean : boolean | Defaults["glow"]>;
|
2108
2112
|
default: unknown extends Defaults["glow"] ? boolean : boolean | Defaults["glow"];
|
2109
2113
|
};
|
2110
|
-
iconColor: unknown extends Defaults["iconColor"] ? (StringConstructor | BooleanConstructor)[] : {
|
2111
|
-
type: PropType<unknown extends Defaults["iconColor"] ? string | boolean : string | boolean | Defaults["iconColor"]>;
|
2112
|
-
default: unknown extends Defaults["iconColor"] ? string | boolean : NonNullable<string | boolean> | Defaults["iconColor"];
|
2113
|
-
};
|
2114
2114
|
hideSpinButtons: unknown extends Defaults["hideSpinButtons"] ? BooleanConstructor : {
|
2115
2115
|
type: PropType<unknown extends Defaults["hideSpinButtons"] ? boolean : boolean | Defaults["hideSpinButtons"]>;
|
2116
2116
|
default: unknown extends Defaults["hideSpinButtons"] ? boolean : boolean | Defaults["hideSpinButtons"];
|
@@ -3874,6 +3874,7 @@ export declare const VSelect: {
|
|
3874
3874
|
bgColor?: string | undefined;
|
3875
3875
|
prependIcon?: IconValue | undefined;
|
3876
3876
|
appendIcon?: IconValue | undefined;
|
3877
|
+
iconColor?: string | boolean | undefined;
|
3877
3878
|
prependInnerIcon?: IconValue | undefined;
|
3878
3879
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
3879
3880
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -3881,7 +3882,6 @@ export declare const VSelect: {
|
|
3881
3882
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3882
3883
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3883
3884
|
centerAffix?: boolean | undefined;
|
3884
|
-
iconColor?: string | boolean | undefined;
|
3885
3885
|
hint?: string | undefined;
|
3886
3886
|
hideDetails?: boolean | "auto" | undefined;
|
3887
3887
|
suffix?: string | undefined;
|
@@ -4355,6 +4355,7 @@ export declare const VSelect: {
|
|
4355
4355
|
bgColor?: string | undefined;
|
4356
4356
|
prependIcon?: IconValue | undefined;
|
4357
4357
|
appendIcon?: IconValue | undefined;
|
4358
|
+
iconColor?: string | boolean | undefined;
|
4358
4359
|
appendInnerIcon?: IconValue | undefined;
|
4359
4360
|
prependInnerIcon?: IconValue | undefined;
|
4360
4361
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -4363,7 +4364,6 @@ export declare const VSelect: {
|
|
4363
4364
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4364
4365
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4365
4366
|
centerAffix?: boolean | undefined;
|
4366
|
-
iconColor?: string | boolean | undefined;
|
4367
4367
|
hint?: string | undefined;
|
4368
4368
|
hideDetails?: boolean | "auto" | undefined;
|
4369
4369
|
suffix?: string | undefined;
|
@@ -4507,6 +4507,7 @@ export declare const VSelect: {
|
|
4507
4507
|
bgColor?: string | undefined;
|
4508
4508
|
prependIcon?: IconValue | undefined;
|
4509
4509
|
appendIcon?: IconValue | undefined;
|
4510
|
+
iconColor?: string | boolean | undefined;
|
4510
4511
|
appendInnerIcon?: IconValue | undefined;
|
4511
4512
|
prependInnerIcon?: IconValue | undefined;
|
4512
4513
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -4515,7 +4516,6 @@ export declare const VSelect: {
|
|
4515
4516
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4516
4517
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4517
4518
|
centerAffix?: boolean | undefined;
|
4518
|
-
iconColor?: string | boolean | undefined;
|
4519
4519
|
hint?: string | undefined;
|
4520
4520
|
hideDetails?: boolean | "auto" | undefined;
|
4521
4521
|
suffix?: string | undefined;
|
@@ -4630,9 +4630,9 @@ export declare const VSelect: {
|
|
4630
4630
|
baseColor?: string | undefined;
|
4631
4631
|
prependIcon?: IconValue | undefined;
|
4632
4632
|
appendIcon?: IconValue | undefined;
|
4633
|
+
iconColor?: string | boolean | undefined;
|
4633
4634
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
4634
4635
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
4635
|
-
iconColor?: string | boolean | undefined;
|
4636
4636
|
hint?: string | undefined;
|
4637
4637
|
hideDetails?: boolean | "auto" | undefined;
|
4638
4638
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -4686,9 +4686,9 @@ export declare const VSelect: {
|
|
4686
4686
|
baseColor?: string | undefined;
|
4687
4687
|
prependIcon?: IconValue | undefined;
|
4688
4688
|
appendIcon?: IconValue | undefined;
|
4689
|
+
iconColor?: string | boolean | undefined;
|
4689
4690
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
4690
4691
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
4691
|
-
iconColor?: string | boolean | undefined;
|
4692
4692
|
hint?: string | undefined;
|
4693
4693
|
hideDetails?: boolean | "auto" | undefined;
|
4694
4694
|
} & {}, {
|
@@ -4789,9 +4789,9 @@ export declare const VSelect: {
|
|
4789
4789
|
baseColor?: string | undefined;
|
4790
4790
|
prependIcon?: IconValue | undefined;
|
4791
4791
|
appendIcon?: IconValue | undefined;
|
4792
|
+
iconColor?: string | boolean | undefined;
|
4792
4793
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
4793
4794
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
4794
|
-
iconColor?: string | boolean | undefined;
|
4795
4795
|
hint?: string | undefined;
|
4796
4796
|
hideDetails?: boolean | "auto" | undefined;
|
4797
4797
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -4803,7 +4803,7 @@ export declare const VSelect: {
|
|
4803
4803
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
4804
4804
|
modelValue?: unknown;
|
4805
4805
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
4806
|
-
}, 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" | "
|
4806
|
+
}, 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<{
|
4807
4807
|
$: import("vue").ComponentInternalInstance;
|
4808
4808
|
$data: {};
|
4809
4809
|
$props: Partial<{
|
@@ -4850,13 +4850,13 @@ export declare const VSelect: {
|
|
4850
4850
|
rounded?: string | number | boolean | undefined;
|
4851
4851
|
baseColor?: string | undefined;
|
4852
4852
|
bgColor?: string | undefined;
|
4853
|
+
iconColor?: string | boolean | undefined;
|
4853
4854
|
appendInnerIcon?: IconValue | undefined;
|
4854
4855
|
prependInnerIcon?: IconValue | undefined;
|
4855
4856
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4856
4857
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4857
4858
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4858
4859
|
centerAffix?: boolean | undefined;
|
4859
|
-
iconColor?: string | boolean | undefined;
|
4860
4860
|
} & 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">;
|
4861
4861
|
$attrs: {
|
4862
4862
|
[x: string]: unknown;
|
@@ -4909,13 +4909,13 @@ export declare const VSelect: {
|
|
4909
4909
|
rounded?: string | number | boolean | undefined;
|
4910
4910
|
baseColor?: string | undefined;
|
4911
4911
|
bgColor?: string | undefined;
|
4912
|
+
iconColor?: string | boolean | undefined;
|
4912
4913
|
appendInnerIcon?: IconValue | undefined;
|
4913
4914
|
prependInnerIcon?: IconValue | undefined;
|
4914
4915
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4915
4916
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4916
4917
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4917
4918
|
centerAffix?: boolean | undefined;
|
4918
|
-
iconColor?: string | boolean | undefined;
|
4919
4919
|
} & {
|
4920
4920
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
4921
4921
|
}, {
|
@@ -5019,13 +5019,13 @@ export declare const VSelect: {
|
|
5019
5019
|
rounded?: string | number | boolean | undefined;
|
5020
5020
|
baseColor?: string | undefined;
|
5021
5021
|
bgColor?: string | undefined;
|
5022
|
+
iconColor?: string | boolean | undefined;
|
5022
5023
|
appendInnerIcon?: IconValue | undefined;
|
5023
5024
|
prependInnerIcon?: IconValue | undefined;
|
5024
5025
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
5025
5026
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5026
5027
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5027
5028
|
centerAffix?: boolean | undefined;
|
5028
|
-
iconColor?: string | boolean | undefined;
|
5029
5029
|
} & {
|
5030
5030
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
5031
5031
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -5034,7 +5034,7 @@ export declare const VSelect: {
|
|
5034
5034
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
5035
5035
|
modelValue?: unknown;
|
5036
5036
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
5037
|
-
}, 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" | "
|
5037
|
+
}, 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}`> & {
|
5038
5038
|
_allExposed: {
|
5039
5039
|
reset: () => Promise<void>;
|
5040
5040
|
resetValidation: () => Promise<void>;
|
@@ -5202,6 +5202,7 @@ export declare const VSelect: {
|
|
5202
5202
|
bgColor?: string | undefined;
|
5203
5203
|
prependIcon?: IconValue | undefined;
|
5204
5204
|
appendIcon?: IconValue | undefined;
|
5205
|
+
iconColor?: string | boolean | undefined;
|
5205
5206
|
appendInnerIcon?: IconValue | undefined;
|
5206
5207
|
prependInnerIcon?: IconValue | undefined;
|
5207
5208
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -5210,7 +5211,6 @@ export declare const VSelect: {
|
|
5210
5211
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5211
5212
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5212
5213
|
centerAffix?: boolean | undefined;
|
5213
|
-
iconColor?: string | boolean | undefined;
|
5214
5214
|
hint?: string | undefined;
|
5215
5215
|
hideDetails?: boolean | "auto" | undefined;
|
5216
5216
|
suffix?: string | undefined;
|
@@ -5325,9 +5325,9 @@ export declare const VSelect: {
|
|
5325
5325
|
baseColor?: string | undefined;
|
5326
5326
|
prependIcon?: IconValue | undefined;
|
5327
5327
|
appendIcon?: IconValue | undefined;
|
5328
|
+
iconColor?: string | boolean | undefined;
|
5328
5329
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
5329
5330
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
5330
|
-
iconColor?: string | boolean | undefined;
|
5331
5331
|
hint?: string | undefined;
|
5332
5332
|
hideDetails?: boolean | "auto" | undefined;
|
5333
5333
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -5381,9 +5381,9 @@ export declare const VSelect: {
|
|
5381
5381
|
baseColor?: string | undefined;
|
5382
5382
|
prependIcon?: IconValue | undefined;
|
5383
5383
|
appendIcon?: IconValue | undefined;
|
5384
|
+
iconColor?: string | boolean | undefined;
|
5384
5385
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
5385
5386
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
5386
|
-
iconColor?: string | boolean | undefined;
|
5387
5387
|
hint?: string | undefined;
|
5388
5388
|
hideDetails?: boolean | "auto" | undefined;
|
5389
5389
|
} & {}, {
|
@@ -5484,9 +5484,9 @@ export declare const VSelect: {
|
|
5484
5484
|
baseColor?: string | undefined;
|
5485
5485
|
prependIcon?: IconValue | undefined;
|
5486
5486
|
appendIcon?: IconValue | undefined;
|
5487
|
+
iconColor?: string | boolean | undefined;
|
5487
5488
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
5488
5489
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
5489
|
-
iconColor?: string | boolean | undefined;
|
5490
5490
|
hint?: string | undefined;
|
5491
5491
|
hideDetails?: boolean | "auto" | undefined;
|
5492
5492
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -5498,7 +5498,7 @@ export declare const VSelect: {
|
|
5498
5498
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
5499
5499
|
modelValue?: unknown;
|
5500
5500
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
5501
|
-
}, 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" | "
|
5501
|
+
}, 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<{
|
5502
5502
|
$: import("vue").ComponentInternalInstance;
|
5503
5503
|
$data: {};
|
5504
5504
|
$props: Partial<{
|
@@ -5545,13 +5545,13 @@ export declare const VSelect: {
|
|
5545
5545
|
rounded?: string | number | boolean | undefined;
|
5546
5546
|
baseColor?: string | undefined;
|
5547
5547
|
bgColor?: string | undefined;
|
5548
|
+
iconColor?: string | boolean | undefined;
|
5548
5549
|
appendInnerIcon?: IconValue | undefined;
|
5549
5550
|
prependInnerIcon?: IconValue | undefined;
|
5550
5551
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
5551
5552
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5552
5553
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5553
5554
|
centerAffix?: boolean | undefined;
|
5554
|
-
iconColor?: string | boolean | undefined;
|
5555
5555
|
} & 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">;
|
5556
5556
|
$attrs: {
|
5557
5557
|
[x: string]: unknown;
|
@@ -5604,13 +5604,13 @@ export declare const VSelect: {
|
|
5604
5604
|
rounded?: string | number | boolean | undefined;
|
5605
5605
|
baseColor?: string | undefined;
|
5606
5606
|
bgColor?: string | undefined;
|
5607
|
+
iconColor?: string | boolean | undefined;
|
5607
5608
|
appendInnerIcon?: IconValue | undefined;
|
5608
5609
|
prependInnerIcon?: IconValue | undefined;
|
5609
5610
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
5610
5611
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5611
5612
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5612
5613
|
centerAffix?: boolean | undefined;
|
5613
|
-
iconColor?: string | boolean | undefined;
|
5614
5614
|
} & {
|
5615
5615
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
5616
5616
|
}, {
|
@@ -5714,13 +5714,13 @@ export declare const VSelect: {
|
|
5714
5714
|
rounded?: string | number | boolean | undefined;
|
5715
5715
|
baseColor?: string | undefined;
|
5716
5716
|
bgColor?: string | undefined;
|
5717
|
+
iconColor?: string | boolean | undefined;
|
5717
5718
|
appendInnerIcon?: IconValue | undefined;
|
5718
5719
|
prependInnerIcon?: IconValue | undefined;
|
5719
5720
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
5720
5721
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5721
5722
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5722
5723
|
centerAffix?: boolean | undefined;
|
5723
|
-
iconColor?: string | boolean | undefined;
|
5724
5724
|
} & {
|
5725
5725
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
5726
5726
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -5729,7 +5729,7 @@ export declare const VSelect: {
|
|
5729
5729
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
5730
5730
|
modelValue?: unknown;
|
5731
5731
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
5732
|
-
}, 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" | "
|
5732
|
+
}, 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}`> & {
|
5733
5733
|
_allExposed: {
|
5734
5734
|
reset: () => Promise<void>;
|
5735
5735
|
resetValidation: () => Promise<void>;
|
@@ -5740,7 +5740,7 @@ export declare const VSelect: {
|
|
5740
5740
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
5741
5741
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
5742
5742
|
} | {};
|
5743
|
-
}> & {} & 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" | "
|
5743
|
+
}> & {} & 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}`> & {
|
5744
5744
|
_allExposed: (HTMLInputElement & Omit<Omit<{
|
5745
5745
|
$: import("vue").ComponentInternalInstance;
|
5746
5746
|
$data: {};
|
@@ -5791,9 +5791,9 @@ export declare const VSelect: {
|
|
5791
5791
|
baseColor?: string | undefined;
|
5792
5792
|
prependIcon?: IconValue | undefined;
|
5793
5793
|
appendIcon?: IconValue | undefined;
|
5794
|
+
iconColor?: string | boolean | undefined;
|
5794
5795
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
5795
5796
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
5796
|
-
iconColor?: string | boolean | undefined;
|
5797
5797
|
hint?: string | undefined;
|
5798
5798
|
hideDetails?: boolean | "auto" | undefined;
|
5799
5799
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -5847,9 +5847,9 @@ export declare const VSelect: {
|
|
5847
5847
|
baseColor?: string | undefined;
|
5848
5848
|
prependIcon?: IconValue | undefined;
|
5849
5849
|
appendIcon?: IconValue | undefined;
|
5850
|
+
iconColor?: string | boolean | undefined;
|
5850
5851
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
5851
5852
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
5852
|
-
iconColor?: string | boolean | undefined;
|
5853
5853
|
hint?: string | undefined;
|
5854
5854
|
hideDetails?: boolean | "auto" | undefined;
|
5855
5855
|
} & {}, {
|
@@ -5950,9 +5950,9 @@ export declare const VSelect: {
|
|
5950
5950
|
baseColor?: string | undefined;
|
5951
5951
|
prependIcon?: IconValue | undefined;
|
5952
5952
|
appendIcon?: IconValue | undefined;
|
5953
|
+
iconColor?: string | boolean | undefined;
|
5953
5954
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
5954
5955
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
5955
|
-
iconColor?: string | boolean | undefined;
|
5956
5956
|
hint?: string | undefined;
|
5957
5957
|
hideDetails?: boolean | "auto" | undefined;
|
5958
5958
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -5964,7 +5964,7 @@ export declare const VSelect: {
|
|
5964
5964
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
5965
5965
|
modelValue?: unknown;
|
5966
5966
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
5967
|
-
}, 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" | "
|
5967
|
+
}, 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<{
|
5968
5968
|
$: import("vue").ComponentInternalInstance;
|
5969
5969
|
$data: {};
|
5970
5970
|
$props: Partial<{
|
@@ -6011,13 +6011,13 @@ export declare const VSelect: {
|
|
6011
6011
|
rounded?: string | number | boolean | undefined;
|
6012
6012
|
baseColor?: string | undefined;
|
6013
6013
|
bgColor?: string | undefined;
|
6014
|
+
iconColor?: string | boolean | undefined;
|
6014
6015
|
appendInnerIcon?: IconValue | undefined;
|
6015
6016
|
prependInnerIcon?: IconValue | undefined;
|
6016
6017
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6017
6018
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6018
6019
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6019
6020
|
centerAffix?: boolean | undefined;
|
6020
|
-
iconColor?: string | boolean | undefined;
|
6021
6021
|
} & 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">;
|
6022
6022
|
$attrs: {
|
6023
6023
|
[x: string]: unknown;
|
@@ -6070,13 +6070,13 @@ export declare const VSelect: {
|
|
6070
6070
|
rounded?: string | number | boolean | undefined;
|
6071
6071
|
baseColor?: string | undefined;
|
6072
6072
|
bgColor?: string | undefined;
|
6073
|
+
iconColor?: string | boolean | undefined;
|
6073
6074
|
appendInnerIcon?: IconValue | undefined;
|
6074
6075
|
prependInnerIcon?: IconValue | undefined;
|
6075
6076
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6076
6077
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6077
6078
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6078
6079
|
centerAffix?: boolean | undefined;
|
6079
|
-
iconColor?: string | boolean | undefined;
|
6080
6080
|
} & {
|
6081
6081
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
6082
6082
|
}, {
|
@@ -6180,13 +6180,13 @@ export declare const VSelect: {
|
|
6180
6180
|
rounded?: string | number | boolean | undefined;
|
6181
6181
|
baseColor?: string | undefined;
|
6182
6182
|
bgColor?: string | undefined;
|
6183
|
+
iconColor?: string | boolean | undefined;
|
6183
6184
|
appendInnerIcon?: IconValue | undefined;
|
6184
6185
|
prependInnerIcon?: IconValue | undefined;
|
6185
6186
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6186
6187
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6187
6188
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6188
6189
|
centerAffix?: boolean | undefined;
|
6189
|
-
iconColor?: string | boolean | undefined;
|
6190
6190
|
} & {
|
6191
6191
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
6192
6192
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -6195,7 +6195,7 @@ export declare const VSelect: {
|
|
6195
6195
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
6196
6196
|
modelValue?: unknown;
|
6197
6197
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
6198
|
-
}, 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" | "
|
6198
|
+
}, 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}`> & {
|
6199
6199
|
_allExposed: {
|
6200
6200
|
reset: () => Promise<void>;
|
6201
6201
|
resetValidation: () => Promise<void>;
|
@@ -6370,6 +6370,7 @@ export declare const VSelect: {
|
|
6370
6370
|
bgColor?: string | undefined;
|
6371
6371
|
prependIcon?: IconValue | undefined;
|
6372
6372
|
appendIcon?: IconValue | undefined;
|
6373
|
+
iconColor?: string | boolean | undefined;
|
6373
6374
|
prependInnerIcon?: IconValue | undefined;
|
6374
6375
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6375
6376
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -6377,7 +6378,6 @@ export declare const VSelect: {
|
|
6377
6378
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6378
6379
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6379
6380
|
centerAffix?: boolean | undefined;
|
6380
|
-
iconColor?: string | boolean | undefined;
|
6381
6381
|
hint?: string | undefined;
|
6382
6382
|
hideDetails?: boolean | "auto" | undefined;
|
6383
6383
|
suffix?: string | undefined;
|
@@ -6851,6 +6851,7 @@ export declare const VSelect: {
|
|
6851
6851
|
bgColor?: string | undefined;
|
6852
6852
|
prependIcon?: IconValue | undefined;
|
6853
6853
|
appendIcon?: IconValue | undefined;
|
6854
|
+
iconColor?: string | boolean | undefined;
|
6854
6855
|
appendInnerIcon?: IconValue | undefined;
|
6855
6856
|
prependInnerIcon?: IconValue | undefined;
|
6856
6857
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -6859,7 +6860,6 @@ export declare const VSelect: {
|
|
6859
6860
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6860
6861
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6861
6862
|
centerAffix?: boolean | undefined;
|
6862
|
-
iconColor?: string | boolean | undefined;
|
6863
6863
|
hint?: string | undefined;
|
6864
6864
|
hideDetails?: boolean | "auto" | undefined;
|
6865
6865
|
suffix?: string | undefined;
|
@@ -7003,6 +7003,7 @@ export declare const VSelect: {
|
|
7003
7003
|
bgColor?: string | undefined;
|
7004
7004
|
prependIcon?: IconValue | undefined;
|
7005
7005
|
appendIcon?: IconValue | undefined;
|
7006
|
+
iconColor?: string | boolean | undefined;
|
7006
7007
|
appendInnerIcon?: IconValue | undefined;
|
7007
7008
|
prependInnerIcon?: IconValue | undefined;
|
7008
7009
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -7011,7 +7012,6 @@ export declare const VSelect: {
|
|
7011
7012
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7012
7013
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7013
7014
|
centerAffix?: boolean | undefined;
|
7014
|
-
iconColor?: string | boolean | undefined;
|
7015
7015
|
hint?: string | undefined;
|
7016
7016
|
hideDetails?: boolean | "auto" | undefined;
|
7017
7017
|
suffix?: string | undefined;
|
@@ -7126,9 +7126,9 @@ export declare const VSelect: {
|
|
7126
7126
|
baseColor?: string | undefined;
|
7127
7127
|
prependIcon?: IconValue | undefined;
|
7128
7128
|
appendIcon?: IconValue | undefined;
|
7129
|
+
iconColor?: string | boolean | undefined;
|
7129
7130
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
7130
7131
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
7131
|
-
iconColor?: string | boolean | undefined;
|
7132
7132
|
hint?: string | undefined;
|
7133
7133
|
hideDetails?: boolean | "auto" | undefined;
|
7134
7134
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -7182,9 +7182,9 @@ export declare const VSelect: {
|
|
7182
7182
|
baseColor?: string | undefined;
|
7183
7183
|
prependIcon?: IconValue | undefined;
|
7184
7184
|
appendIcon?: IconValue | undefined;
|
7185
|
+
iconColor?: string | boolean | undefined;
|
7185
7186
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
7186
7187
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
7187
|
-
iconColor?: string | boolean | undefined;
|
7188
7188
|
hint?: string | undefined;
|
7189
7189
|
hideDetails?: boolean | "auto" | undefined;
|
7190
7190
|
} & {}, {
|
@@ -7285,9 +7285,9 @@ export declare const VSelect: {
|
|
7285
7285
|
baseColor?: string | undefined;
|
7286
7286
|
prependIcon?: IconValue | undefined;
|
7287
7287
|
appendIcon?: IconValue | undefined;
|
7288
|
+
iconColor?: string | boolean | undefined;
|
7288
7289
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
7289
7290
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
7290
|
-
iconColor?: string | boolean | undefined;
|
7291
7291
|
hint?: string | undefined;
|
7292
7292
|
hideDetails?: boolean | "auto" | undefined;
|
7293
7293
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -7299,7 +7299,7 @@ export declare const VSelect: {
|
|
7299
7299
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
7300
7300
|
modelValue?: unknown;
|
7301
7301
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
7302
|
-
}, 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" | "
|
7302
|
+
}, 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<{
|
7303
7303
|
$: import("vue").ComponentInternalInstance;
|
7304
7304
|
$data: {};
|
7305
7305
|
$props: Partial<{
|
@@ -7346,13 +7346,13 @@ export declare const VSelect: {
|
|
7346
7346
|
rounded?: string | number | boolean | undefined;
|
7347
7347
|
baseColor?: string | undefined;
|
7348
7348
|
bgColor?: string | undefined;
|
7349
|
+
iconColor?: string | boolean | undefined;
|
7349
7350
|
appendInnerIcon?: IconValue | undefined;
|
7350
7351
|
prependInnerIcon?: IconValue | undefined;
|
7351
7352
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
7352
7353
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7353
7354
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7354
7355
|
centerAffix?: boolean | undefined;
|
7355
|
-
iconColor?: string | boolean | undefined;
|
7356
7356
|
} & 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">;
|
7357
7357
|
$attrs: {
|
7358
7358
|
[x: string]: unknown;
|
@@ -7405,13 +7405,13 @@ export declare const VSelect: {
|
|
7405
7405
|
rounded?: string | number | boolean | undefined;
|
7406
7406
|
baseColor?: string | undefined;
|
7407
7407
|
bgColor?: string | undefined;
|
7408
|
+
iconColor?: string | boolean | undefined;
|
7408
7409
|
appendInnerIcon?: IconValue | undefined;
|
7409
7410
|
prependInnerIcon?: IconValue | undefined;
|
7410
7411
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
7411
7412
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7412
7413
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7413
7414
|
centerAffix?: boolean | undefined;
|
7414
|
-
iconColor?: string | boolean | undefined;
|
7415
7415
|
} & {
|
7416
7416
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
7417
7417
|
}, {
|
@@ -7515,13 +7515,13 @@ export declare const VSelect: {
|
|
7515
7515
|
rounded?: string | number | boolean | undefined;
|
7516
7516
|
baseColor?: string | undefined;
|
7517
7517
|
bgColor?: string | undefined;
|
7518
|
+
iconColor?: string | boolean | undefined;
|
7518
7519
|
appendInnerIcon?: IconValue | undefined;
|
7519
7520
|
prependInnerIcon?: IconValue | undefined;
|
7520
7521
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
7521
7522
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7522
7523
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7523
7524
|
centerAffix?: boolean | undefined;
|
7524
|
-
iconColor?: string | boolean | undefined;
|
7525
7525
|
} & {
|
7526
7526
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
7527
7527
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -7530,7 +7530,7 @@ export declare const VSelect: {
|
|
7530
7530
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
7531
7531
|
modelValue?: unknown;
|
7532
7532
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
7533
|
-
}, 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" | "
|
7533
|
+
}, 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}`> & {
|
7534
7534
|
_allExposed: {
|
7535
7535
|
reset: () => Promise<void>;
|
7536
7536
|
resetValidation: () => Promise<void>;
|
@@ -7698,6 +7698,7 @@ export declare const VSelect: {
|
|
7698
7698
|
bgColor?: string | undefined;
|
7699
7699
|
prependIcon?: IconValue | undefined;
|
7700
7700
|
appendIcon?: IconValue | undefined;
|
7701
|
+
iconColor?: string | boolean | undefined;
|
7701
7702
|
appendInnerIcon?: IconValue | undefined;
|
7702
7703
|
prependInnerIcon?: IconValue | undefined;
|
7703
7704
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -7706,7 +7707,6 @@ export declare const VSelect: {
|
|
7706
7707
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7707
7708
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7708
7709
|
centerAffix?: boolean | undefined;
|
7709
|
-
iconColor?: string | boolean | undefined;
|
7710
7710
|
hint?: string | undefined;
|
7711
7711
|
hideDetails?: boolean | "auto" | undefined;
|
7712
7712
|
suffix?: string | undefined;
|
@@ -7821,9 +7821,9 @@ export declare const VSelect: {
|
|
7821
7821
|
baseColor?: string | undefined;
|
7822
7822
|
prependIcon?: IconValue | undefined;
|
7823
7823
|
appendIcon?: IconValue | undefined;
|
7824
|
+
iconColor?: string | boolean | undefined;
|
7824
7825
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
7825
7826
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
7826
|
-
iconColor?: string | boolean | undefined;
|
7827
7827
|
hint?: string | undefined;
|
7828
7828
|
hideDetails?: boolean | "auto" | undefined;
|
7829
7829
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -7877,9 +7877,9 @@ export declare const VSelect: {
|
|
7877
7877
|
baseColor?: string | undefined;
|
7878
7878
|
prependIcon?: IconValue | undefined;
|
7879
7879
|
appendIcon?: IconValue | undefined;
|
7880
|
+
iconColor?: string | boolean | undefined;
|
7880
7881
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
7881
7882
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
7882
|
-
iconColor?: string | boolean | undefined;
|
7883
7883
|
hint?: string | undefined;
|
7884
7884
|
hideDetails?: boolean | "auto" | undefined;
|
7885
7885
|
} & {}, {
|
@@ -7980,9 +7980,9 @@ export declare const VSelect: {
|
|
7980
7980
|
baseColor?: string | undefined;
|
7981
7981
|
prependIcon?: IconValue | undefined;
|
7982
7982
|
appendIcon?: IconValue | undefined;
|
7983
|
+
iconColor?: string | boolean | undefined;
|
7983
7984
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
7984
7985
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
7985
|
-
iconColor?: string | boolean | undefined;
|
7986
7986
|
hint?: string | undefined;
|
7987
7987
|
hideDetails?: boolean | "auto" | undefined;
|
7988
7988
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -7994,7 +7994,7 @@ export declare const VSelect: {
|
|
7994
7994
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
7995
7995
|
modelValue?: unknown;
|
7996
7996
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
7997
|
-
}, 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" | "
|
7997
|
+
}, 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<{
|
7998
7998
|
$: import("vue").ComponentInternalInstance;
|
7999
7999
|
$data: {};
|
8000
8000
|
$props: Partial<{
|
@@ -8041,13 +8041,13 @@ export declare const VSelect: {
|
|
8041
8041
|
rounded?: string | number | boolean | undefined;
|
8042
8042
|
baseColor?: string | undefined;
|
8043
8043
|
bgColor?: string | undefined;
|
8044
|
+
iconColor?: string | boolean | undefined;
|
8044
8045
|
appendInnerIcon?: IconValue | undefined;
|
8045
8046
|
prependInnerIcon?: IconValue | undefined;
|
8046
8047
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
8047
8048
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8048
8049
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8049
8050
|
centerAffix?: boolean | undefined;
|
8050
|
-
iconColor?: string | boolean | undefined;
|
8051
8051
|
} & 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">;
|
8052
8052
|
$attrs: {
|
8053
8053
|
[x: string]: unknown;
|
@@ -8100,13 +8100,13 @@ export declare const VSelect: {
|
|
8100
8100
|
rounded?: string | number | boolean | undefined;
|
8101
8101
|
baseColor?: string | undefined;
|
8102
8102
|
bgColor?: string | undefined;
|
8103
|
+
iconColor?: string | boolean | undefined;
|
8103
8104
|
appendInnerIcon?: IconValue | undefined;
|
8104
8105
|
prependInnerIcon?: IconValue | undefined;
|
8105
8106
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
8106
8107
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8107
8108
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8108
8109
|
centerAffix?: boolean | undefined;
|
8109
|
-
iconColor?: string | boolean | undefined;
|
8110
8110
|
} & {
|
8111
8111
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
8112
8112
|
}, {
|
@@ -8210,13 +8210,13 @@ export declare const VSelect: {
|
|
8210
8210
|
rounded?: string | number | boolean | undefined;
|
8211
8211
|
baseColor?: string | undefined;
|
8212
8212
|
bgColor?: string | undefined;
|
8213
|
+
iconColor?: string | boolean | undefined;
|
8213
8214
|
appendInnerIcon?: IconValue | undefined;
|
8214
8215
|
prependInnerIcon?: IconValue | undefined;
|
8215
8216
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
8216
8217
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8217
8218
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8218
8219
|
centerAffix?: boolean | undefined;
|
8219
|
-
iconColor?: string | boolean | undefined;
|
8220
8220
|
} & {
|
8221
8221
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
8222
8222
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -8225,7 +8225,7 @@ export declare const VSelect: {
|
|
8225
8225
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
8226
8226
|
modelValue?: unknown;
|
8227
8227
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
8228
|
-
}, 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" | "
|
8228
|
+
}, 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}`> & {
|
8229
8229
|
_allExposed: {
|
8230
8230
|
reset: () => Promise<void>;
|
8231
8231
|
resetValidation: () => Promise<void>;
|
@@ -8236,7 +8236,7 @@ export declare const VSelect: {
|
|
8236
8236
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
8237
8237
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
8238
8238
|
} | {};
|
8239
|
-
}> & {} & 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" | "
|
8239
|
+
}> & {} & 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}`> & {
|
8240
8240
|
_allExposed: (HTMLInputElement & Omit<Omit<{
|
8241
8241
|
$: import("vue").ComponentInternalInstance;
|
8242
8242
|
$data: {};
|
@@ -8287,9 +8287,9 @@ export declare const VSelect: {
|
|
8287
8287
|
baseColor?: string | undefined;
|
8288
8288
|
prependIcon?: IconValue | undefined;
|
8289
8289
|
appendIcon?: IconValue | undefined;
|
8290
|
+
iconColor?: string | boolean | undefined;
|
8290
8291
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
8291
8292
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
8292
|
-
iconColor?: string | boolean | undefined;
|
8293
8293
|
hint?: string | undefined;
|
8294
8294
|
hideDetails?: boolean | "auto" | undefined;
|
8295
8295
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -8343,9 +8343,9 @@ export declare const VSelect: {
|
|
8343
8343
|
baseColor?: string | undefined;
|
8344
8344
|
prependIcon?: IconValue | undefined;
|
8345
8345
|
appendIcon?: IconValue | undefined;
|
8346
|
+
iconColor?: string | boolean | undefined;
|
8346
8347
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
8347
8348
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
8348
|
-
iconColor?: string | boolean | undefined;
|
8349
8349
|
hint?: string | undefined;
|
8350
8350
|
hideDetails?: boolean | "auto" | undefined;
|
8351
8351
|
} & {}, {
|
@@ -8446,9 +8446,9 @@ export declare const VSelect: {
|
|
8446
8446
|
baseColor?: string | undefined;
|
8447
8447
|
prependIcon?: IconValue | undefined;
|
8448
8448
|
appendIcon?: IconValue | undefined;
|
8449
|
+
iconColor?: string | boolean | undefined;
|
8449
8450
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
8450
8451
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
8451
|
-
iconColor?: string | boolean | undefined;
|
8452
8452
|
hint?: string | undefined;
|
8453
8453
|
hideDetails?: boolean | "auto" | undefined;
|
8454
8454
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -8460,7 +8460,7 @@ export declare const VSelect: {
|
|
8460
8460
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
8461
8461
|
modelValue?: unknown;
|
8462
8462
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
8463
|
-
}, 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" | "
|
8463
|
+
}, 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<{
|
8464
8464
|
$: import("vue").ComponentInternalInstance;
|
8465
8465
|
$data: {};
|
8466
8466
|
$props: Partial<{
|
@@ -8507,13 +8507,13 @@ export declare const VSelect: {
|
|
8507
8507
|
rounded?: string | number | boolean | undefined;
|
8508
8508
|
baseColor?: string | undefined;
|
8509
8509
|
bgColor?: string | undefined;
|
8510
|
+
iconColor?: string | boolean | undefined;
|
8510
8511
|
appendInnerIcon?: IconValue | undefined;
|
8511
8512
|
prependInnerIcon?: IconValue | undefined;
|
8512
8513
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
8513
8514
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8514
8515
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8515
8516
|
centerAffix?: boolean | undefined;
|
8516
|
-
iconColor?: string | boolean | undefined;
|
8517
8517
|
} & 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">;
|
8518
8518
|
$attrs: {
|
8519
8519
|
[x: string]: unknown;
|
@@ -8566,13 +8566,13 @@ export declare const VSelect: {
|
|
8566
8566
|
rounded?: string | number | boolean | undefined;
|
8567
8567
|
baseColor?: string | undefined;
|
8568
8568
|
bgColor?: string | undefined;
|
8569
|
+
iconColor?: string | boolean | undefined;
|
8569
8570
|
appendInnerIcon?: IconValue | undefined;
|
8570
8571
|
prependInnerIcon?: IconValue | undefined;
|
8571
8572
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
8572
8573
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8573
8574
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8574
8575
|
centerAffix?: boolean | undefined;
|
8575
|
-
iconColor?: string | boolean | undefined;
|
8576
8576
|
} & {
|
8577
8577
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
8578
8578
|
}, {
|
@@ -8676,13 +8676,13 @@ export declare const VSelect: {
|
|
8676
8676
|
rounded?: string | number | boolean | undefined;
|
8677
8677
|
baseColor?: string | undefined;
|
8678
8678
|
bgColor?: string | undefined;
|
8679
|
+
iconColor?: string | boolean | undefined;
|
8679
8680
|
appendInnerIcon?: IconValue | undefined;
|
8680
8681
|
prependInnerIcon?: IconValue | undefined;
|
8681
8682
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
8682
8683
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8683
8684
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8684
8685
|
centerAffix?: boolean | undefined;
|
8685
|
-
iconColor?: string | boolean | undefined;
|
8686
8686
|
} & {
|
8687
8687
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
8688
8688
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -8691,7 +8691,7 @@ export declare const VSelect: {
|
|
8691
8691
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
8692
8692
|
modelValue?: unknown;
|
8693
8693
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
8694
|
-
}, 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" | "
|
8694
|
+
}, 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}`> & {
|
8695
8695
|
_allExposed: {
|
8696
8696
|
reset: () => Promise<void>;
|
8697
8697
|
resetValidation: () => Promise<void>;
|
@@ -8827,6 +8827,7 @@ export declare const VSelect: {
|
|
8827
8827
|
bgColor?: string | undefined;
|
8828
8828
|
prependIcon?: IconValue | undefined;
|
8829
8829
|
appendIcon?: IconValue | undefined;
|
8830
|
+
iconColor?: string | boolean | undefined;
|
8830
8831
|
prependInnerIcon?: IconValue | undefined;
|
8831
8832
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
8832
8833
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -8834,7 +8835,6 @@ export declare const VSelect: {
|
|
8834
8835
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8835
8836
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8836
8837
|
centerAffix?: boolean | undefined;
|
8837
|
-
iconColor?: string | boolean | undefined;
|
8838
8838
|
hint?: string | undefined;
|
8839
8839
|
hideDetails?: boolean | "auto" | undefined;
|
8840
8840
|
suffix?: string | undefined;
|
@@ -9308,6 +9308,7 @@ export declare const VSelect: {
|
|
9308
9308
|
bgColor?: string | undefined;
|
9309
9309
|
prependIcon?: IconValue | undefined;
|
9310
9310
|
appendIcon?: IconValue | undefined;
|
9311
|
+
iconColor?: string | boolean | undefined;
|
9311
9312
|
appendInnerIcon?: IconValue | undefined;
|
9312
9313
|
prependInnerIcon?: IconValue | undefined;
|
9313
9314
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -9316,7 +9317,6 @@ export declare const VSelect: {
|
|
9316
9317
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9317
9318
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9318
9319
|
centerAffix?: boolean | undefined;
|
9319
|
-
iconColor?: string | boolean | undefined;
|
9320
9320
|
hint?: string | undefined;
|
9321
9321
|
hideDetails?: boolean | "auto" | undefined;
|
9322
9322
|
suffix?: string | undefined;
|
@@ -9460,6 +9460,7 @@ export declare const VSelect: {
|
|
9460
9460
|
bgColor?: string | undefined;
|
9461
9461
|
prependIcon?: IconValue | undefined;
|
9462
9462
|
appendIcon?: IconValue | undefined;
|
9463
|
+
iconColor?: string | boolean | undefined;
|
9463
9464
|
appendInnerIcon?: IconValue | undefined;
|
9464
9465
|
prependInnerIcon?: IconValue | undefined;
|
9465
9466
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -9468,7 +9469,6 @@ export declare const VSelect: {
|
|
9468
9469
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9469
9470
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9470
9471
|
centerAffix?: boolean | undefined;
|
9471
|
-
iconColor?: string | boolean | undefined;
|
9472
9472
|
hint?: string | undefined;
|
9473
9473
|
hideDetails?: boolean | "auto" | undefined;
|
9474
9474
|
suffix?: string | undefined;
|
@@ -9583,9 +9583,9 @@ export declare const VSelect: {
|
|
9583
9583
|
baseColor?: string | undefined;
|
9584
9584
|
prependIcon?: IconValue | undefined;
|
9585
9585
|
appendIcon?: IconValue | undefined;
|
9586
|
+
iconColor?: string | boolean | undefined;
|
9586
9587
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
9587
9588
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
9588
|
-
iconColor?: string | boolean | undefined;
|
9589
9589
|
hint?: string | undefined;
|
9590
9590
|
hideDetails?: boolean | "auto" | undefined;
|
9591
9591
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -9639,9 +9639,9 @@ export declare const VSelect: {
|
|
9639
9639
|
baseColor?: string | undefined;
|
9640
9640
|
prependIcon?: IconValue | undefined;
|
9641
9641
|
appendIcon?: IconValue | undefined;
|
9642
|
+
iconColor?: string | boolean | undefined;
|
9642
9643
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
9643
9644
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
9644
|
-
iconColor?: string | boolean | undefined;
|
9645
9645
|
hint?: string | undefined;
|
9646
9646
|
hideDetails?: boolean | "auto" | undefined;
|
9647
9647
|
} & {}, {
|
@@ -9742,9 +9742,9 @@ export declare const VSelect: {
|
|
9742
9742
|
baseColor?: string | undefined;
|
9743
9743
|
prependIcon?: IconValue | undefined;
|
9744
9744
|
appendIcon?: IconValue | undefined;
|
9745
|
+
iconColor?: string | boolean | undefined;
|
9745
9746
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
9746
9747
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
9747
|
-
iconColor?: string | boolean | undefined;
|
9748
9748
|
hint?: string | undefined;
|
9749
9749
|
hideDetails?: boolean | "auto" | undefined;
|
9750
9750
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -9756,7 +9756,7 @@ export declare const VSelect: {
|
|
9756
9756
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
9757
9757
|
modelValue?: unknown;
|
9758
9758
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
9759
|
-
}, 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" | "
|
9759
|
+
}, 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<{
|
9760
9760
|
$: import("vue").ComponentInternalInstance;
|
9761
9761
|
$data: {};
|
9762
9762
|
$props: Partial<{
|
@@ -9803,13 +9803,13 @@ export declare const VSelect: {
|
|
9803
9803
|
rounded?: string | number | boolean | undefined;
|
9804
9804
|
baseColor?: string | undefined;
|
9805
9805
|
bgColor?: string | undefined;
|
9806
|
+
iconColor?: string | boolean | undefined;
|
9806
9807
|
appendInnerIcon?: IconValue | undefined;
|
9807
9808
|
prependInnerIcon?: IconValue | undefined;
|
9808
9809
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
9809
9810
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9810
9811
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9811
9812
|
centerAffix?: boolean | undefined;
|
9812
|
-
iconColor?: string | boolean | undefined;
|
9813
9813
|
} & 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">;
|
9814
9814
|
$attrs: {
|
9815
9815
|
[x: string]: unknown;
|
@@ -9862,13 +9862,13 @@ export declare const VSelect: {
|
|
9862
9862
|
rounded?: string | number | boolean | undefined;
|
9863
9863
|
baseColor?: string | undefined;
|
9864
9864
|
bgColor?: string | undefined;
|
9865
|
+
iconColor?: string | boolean | undefined;
|
9865
9866
|
appendInnerIcon?: IconValue | undefined;
|
9866
9867
|
prependInnerIcon?: IconValue | undefined;
|
9867
9868
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
9868
9869
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9869
9870
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9870
9871
|
centerAffix?: boolean | undefined;
|
9871
|
-
iconColor?: string | boolean | undefined;
|
9872
9872
|
} & {
|
9873
9873
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
9874
9874
|
}, {
|
@@ -9972,13 +9972,13 @@ export declare const VSelect: {
|
|
9972
9972
|
rounded?: string | number | boolean | undefined;
|
9973
9973
|
baseColor?: string | undefined;
|
9974
9974
|
bgColor?: string | undefined;
|
9975
|
+
iconColor?: string | boolean | undefined;
|
9975
9976
|
appendInnerIcon?: IconValue | undefined;
|
9976
9977
|
prependInnerIcon?: IconValue | undefined;
|
9977
9978
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
9978
9979
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9979
9980
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9980
9981
|
centerAffix?: boolean | undefined;
|
9981
|
-
iconColor?: string | boolean | undefined;
|
9982
9982
|
} & {
|
9983
9983
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
9984
9984
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -9987,7 +9987,7 @@ export declare const VSelect: {
|
|
9987
9987
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
9988
9988
|
modelValue?: unknown;
|
9989
9989
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
9990
|
-
}, 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" | "
|
9990
|
+
}, 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}`> & {
|
9991
9991
|
_allExposed: {
|
9992
9992
|
reset: () => Promise<void>;
|
9993
9993
|
resetValidation: () => Promise<void>;
|
@@ -10155,6 +10155,7 @@ export declare const VSelect: {
|
|
10155
10155
|
bgColor?: string | undefined;
|
10156
10156
|
prependIcon?: IconValue | undefined;
|
10157
10157
|
appendIcon?: IconValue | undefined;
|
10158
|
+
iconColor?: string | boolean | undefined;
|
10158
10159
|
appendInnerIcon?: IconValue | undefined;
|
10159
10160
|
prependInnerIcon?: IconValue | undefined;
|
10160
10161
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -10163,7 +10164,6 @@ export declare const VSelect: {
|
|
10163
10164
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
10164
10165
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
10165
10166
|
centerAffix?: boolean | undefined;
|
10166
|
-
iconColor?: string | boolean | undefined;
|
10167
10167
|
hint?: string | undefined;
|
10168
10168
|
hideDetails?: boolean | "auto" | undefined;
|
10169
10169
|
suffix?: string | undefined;
|
@@ -10278,9 +10278,9 @@ export declare const VSelect: {
|
|
10278
10278
|
baseColor?: string | undefined;
|
10279
10279
|
prependIcon?: IconValue | undefined;
|
10280
10280
|
appendIcon?: IconValue | undefined;
|
10281
|
+
iconColor?: string | boolean | undefined;
|
10281
10282
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
10282
10283
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
10283
|
-
iconColor?: string | boolean | undefined;
|
10284
10284
|
hint?: string | undefined;
|
10285
10285
|
hideDetails?: boolean | "auto" | undefined;
|
10286
10286
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -10334,9 +10334,9 @@ export declare const VSelect: {
|
|
10334
10334
|
baseColor?: string | undefined;
|
10335
10335
|
prependIcon?: IconValue | undefined;
|
10336
10336
|
appendIcon?: IconValue | undefined;
|
10337
|
+
iconColor?: string | boolean | undefined;
|
10337
10338
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
10338
10339
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
10339
|
-
iconColor?: string | boolean | undefined;
|
10340
10340
|
hint?: string | undefined;
|
10341
10341
|
hideDetails?: boolean | "auto" | undefined;
|
10342
10342
|
} & {}, {
|
@@ -10437,9 +10437,9 @@ export declare const VSelect: {
|
|
10437
10437
|
baseColor?: string | undefined;
|
10438
10438
|
prependIcon?: IconValue | undefined;
|
10439
10439
|
appendIcon?: IconValue | undefined;
|
10440
|
+
iconColor?: string | boolean | undefined;
|
10440
10441
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
10441
10442
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
10442
|
-
iconColor?: string | boolean | undefined;
|
10443
10443
|
hint?: string | undefined;
|
10444
10444
|
hideDetails?: boolean | "auto" | undefined;
|
10445
10445
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -10451,7 +10451,7 @@ export declare const VSelect: {
|
|
10451
10451
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
10452
10452
|
modelValue?: unknown;
|
10453
10453
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
10454
|
-
}, 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" | "
|
10454
|
+
}, 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<{
|
10455
10455
|
$: import("vue").ComponentInternalInstance;
|
10456
10456
|
$data: {};
|
10457
10457
|
$props: Partial<{
|
@@ -10498,13 +10498,13 @@ export declare const VSelect: {
|
|
10498
10498
|
rounded?: string | number | boolean | undefined;
|
10499
10499
|
baseColor?: string | undefined;
|
10500
10500
|
bgColor?: string | undefined;
|
10501
|
+
iconColor?: string | boolean | undefined;
|
10501
10502
|
appendInnerIcon?: IconValue | undefined;
|
10502
10503
|
prependInnerIcon?: IconValue | undefined;
|
10503
10504
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
10504
10505
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
10505
10506
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
10506
10507
|
centerAffix?: boolean | undefined;
|
10507
|
-
iconColor?: string | boolean | undefined;
|
10508
10508
|
} & 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">;
|
10509
10509
|
$attrs: {
|
10510
10510
|
[x: string]: unknown;
|
@@ -10557,13 +10557,13 @@ export declare const VSelect: {
|
|
10557
10557
|
rounded?: string | number | boolean | undefined;
|
10558
10558
|
baseColor?: string | undefined;
|
10559
10559
|
bgColor?: string | undefined;
|
10560
|
+
iconColor?: string | boolean | undefined;
|
10560
10561
|
appendInnerIcon?: IconValue | undefined;
|
10561
10562
|
prependInnerIcon?: IconValue | undefined;
|
10562
10563
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
10563
10564
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
10564
10565
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
10565
10566
|
centerAffix?: boolean | undefined;
|
10566
|
-
iconColor?: string | boolean | undefined;
|
10567
10567
|
} & {
|
10568
10568
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
10569
10569
|
}, {
|
@@ -10667,13 +10667,13 @@ export declare const VSelect: {
|
|
10667
10667
|
rounded?: string | number | boolean | undefined;
|
10668
10668
|
baseColor?: string | undefined;
|
10669
10669
|
bgColor?: string | undefined;
|
10670
|
+
iconColor?: string | boolean | undefined;
|
10670
10671
|
appendInnerIcon?: IconValue | undefined;
|
10671
10672
|
prependInnerIcon?: IconValue | undefined;
|
10672
10673
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
10673
10674
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
10674
10675
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
10675
10676
|
centerAffix?: boolean | undefined;
|
10676
|
-
iconColor?: string | boolean | undefined;
|
10677
10677
|
} & {
|
10678
10678
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
10679
10679
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -10682,7 +10682,7 @@ export declare const VSelect: {
|
|
10682
10682
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
10683
10683
|
modelValue?: unknown;
|
10684
10684
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
10685
|
-
}, 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" | "
|
10685
|
+
}, 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}`> & {
|
10686
10686
|
_allExposed: {
|
10687
10687
|
reset: () => Promise<void>;
|
10688
10688
|
resetValidation: () => Promise<void>;
|
@@ -10693,7 +10693,7 @@ export declare const VSelect: {
|
|
10693
10693
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
10694
10694
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
10695
10695
|
} | {};
|
10696
|
-
}> & {} & 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" | "
|
10696
|
+
}> & {} & 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}`> & {
|
10697
10697
|
_allExposed: (HTMLInputElement & Omit<Omit<{
|
10698
10698
|
$: import("vue").ComponentInternalInstance;
|
10699
10699
|
$data: {};
|
@@ -10744,9 +10744,9 @@ export declare const VSelect: {
|
|
10744
10744
|
baseColor?: string | undefined;
|
10745
10745
|
prependIcon?: IconValue | undefined;
|
10746
10746
|
appendIcon?: IconValue | undefined;
|
10747
|
+
iconColor?: string | boolean | undefined;
|
10747
10748
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
10748
10749
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
10749
|
-
iconColor?: string | boolean | undefined;
|
10750
10750
|
hint?: string | undefined;
|
10751
10751
|
hideDetails?: boolean | "auto" | undefined;
|
10752
10752
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -10800,9 +10800,9 @@ export declare const VSelect: {
|
|
10800
10800
|
baseColor?: string | undefined;
|
10801
10801
|
prependIcon?: IconValue | undefined;
|
10802
10802
|
appendIcon?: IconValue | undefined;
|
10803
|
+
iconColor?: string | boolean | undefined;
|
10803
10804
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
10804
10805
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
10805
|
-
iconColor?: string | boolean | undefined;
|
10806
10806
|
hint?: string | undefined;
|
10807
10807
|
hideDetails?: boolean | "auto" | undefined;
|
10808
10808
|
} & {}, {
|
@@ -10903,9 +10903,9 @@ export declare const VSelect: {
|
|
10903
10903
|
baseColor?: string | undefined;
|
10904
10904
|
prependIcon?: IconValue | undefined;
|
10905
10905
|
appendIcon?: IconValue | undefined;
|
10906
|
+
iconColor?: string | boolean | undefined;
|
10906
10907
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
10907
10908
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
10908
|
-
iconColor?: string | boolean | undefined;
|
10909
10909
|
hint?: string | undefined;
|
10910
10910
|
hideDetails?: boolean | "auto" | undefined;
|
10911
10911
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -10917,7 +10917,7 @@ export declare const VSelect: {
|
|
10917
10917
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
10918
10918
|
modelValue?: unknown;
|
10919
10919
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
10920
|
-
}, 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" | "
|
10920
|
+
}, 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<{
|
10921
10921
|
$: import("vue").ComponentInternalInstance;
|
10922
10922
|
$data: {};
|
10923
10923
|
$props: Partial<{
|
@@ -10964,13 +10964,13 @@ export declare const VSelect: {
|
|
10964
10964
|
rounded?: string | number | boolean | undefined;
|
10965
10965
|
baseColor?: string | undefined;
|
10966
10966
|
bgColor?: string | undefined;
|
10967
|
+
iconColor?: string | boolean | undefined;
|
10967
10968
|
appendInnerIcon?: IconValue | undefined;
|
10968
10969
|
prependInnerIcon?: IconValue | undefined;
|
10969
10970
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
10970
10971
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
10971
10972
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
10972
10973
|
centerAffix?: boolean | undefined;
|
10973
|
-
iconColor?: string | boolean | undefined;
|
10974
10974
|
} & 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">;
|
10975
10975
|
$attrs: {
|
10976
10976
|
[x: string]: unknown;
|
@@ -11023,13 +11023,13 @@ export declare const VSelect: {
|
|
11023
11023
|
rounded?: string | number | boolean | undefined;
|
11024
11024
|
baseColor?: string | undefined;
|
11025
11025
|
bgColor?: string | undefined;
|
11026
|
+
iconColor?: string | boolean | undefined;
|
11026
11027
|
appendInnerIcon?: IconValue | undefined;
|
11027
11028
|
prependInnerIcon?: IconValue | undefined;
|
11028
11029
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
11029
11030
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
11030
11031
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
11031
11032
|
centerAffix?: boolean | undefined;
|
11032
|
-
iconColor?: string | boolean | undefined;
|
11033
11033
|
} & {
|
11034
11034
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
11035
11035
|
}, {
|
@@ -11133,13 +11133,13 @@ export declare const VSelect: {
|
|
11133
11133
|
rounded?: string | number | boolean | undefined;
|
11134
11134
|
baseColor?: string | undefined;
|
11135
11135
|
bgColor?: string | undefined;
|
11136
|
+
iconColor?: string | boolean | undefined;
|
11136
11137
|
appendInnerIcon?: IconValue | undefined;
|
11137
11138
|
prependInnerIcon?: IconValue | undefined;
|
11138
11139
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
11139
11140
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
11140
11141
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
11141
11142
|
centerAffix?: boolean | undefined;
|
11142
|
-
iconColor?: string | boolean | undefined;
|
11143
11143
|
} & {
|
11144
11144
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
11145
11145
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -11148,7 +11148,7 @@ export declare const VSelect: {
|
|
11148
11148
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
11149
11149
|
modelValue?: unknown;
|
11150
11150
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
11151
|
-
}, 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" | "
|
11151
|
+
}, 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}`> & {
|
11152
11152
|
_allExposed: {
|
11153
11153
|
reset: () => Promise<void>;
|
11154
11154
|
resetValidation: () => Promise<void>;
|
@@ -11373,6 +11373,7 @@ export declare const VSelect: {
|
|
11373
11373
|
bgColor: StringConstructor;
|
11374
11374
|
prependIcon: PropType<IconValue>;
|
11375
11375
|
appendIcon: PropType<IconValue>;
|
11376
|
+
iconColor: (StringConstructor | BooleanConstructor)[];
|
11376
11377
|
clearIcon: {
|
11377
11378
|
type: PropType<IconValue>;
|
11378
11379
|
default: string;
|
@@ -11388,7 +11389,6 @@ export declare const VSelect: {
|
|
11388
11389
|
default: undefined;
|
11389
11390
|
};
|
11390
11391
|
glow: BooleanConstructor;
|
11391
|
-
iconColor: (StringConstructor | BooleanConstructor)[];
|
11392
11392
|
hideSpinButtons: BooleanConstructor;
|
11393
11393
|
hint: StringConstructor;
|
11394
11394
|
persistentHint: BooleanConstructor;
|
@@ -11555,6 +11555,7 @@ export declare const VSelect: {
|
|
11555
11555
|
bgColor: StringConstructor;
|
11556
11556
|
prependIcon: PropType<IconValue>;
|
11557
11557
|
appendIcon: PropType<IconValue>;
|
11558
|
+
iconColor: (StringConstructor | BooleanConstructor)[];
|
11558
11559
|
clearIcon: {
|
11559
11560
|
type: PropType<IconValue>;
|
11560
11561
|
default: string;
|
@@ -11570,7 +11571,6 @@ export declare const VSelect: {
|
|
11570
11571
|
default: undefined;
|
11571
11572
|
};
|
11572
11573
|
glow: BooleanConstructor;
|
11573
|
-
iconColor: (StringConstructor | BooleanConstructor)[];
|
11574
11574
|
hideSpinButtons: BooleanConstructor;
|
11575
11575
|
hint: StringConstructor;
|
11576
11576
|
persistentHint: BooleanConstructor;
|