@vuetify/nightly 3.8.5-dev.2025-05-14 → 3.8.5-master.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.
Files changed (75) hide show
  1. package/CHANGELOG.md +3 -23
  2. package/dist/json/attributes.json +3505 -3521
  3. package/dist/json/importMap-labs.json +12 -12
  4. package/dist/json/importMap.json +142 -142
  5. package/dist/json/tags.json +0 -4
  6. package/dist/json/web-types.json +6607 -6646
  7. package/dist/vuetify-labs.cjs +51 -155
  8. package/dist/vuetify-labs.css +3358 -3386
  9. package/dist/vuetify-labs.d.ts +934 -986
  10. package/dist/vuetify-labs.esm.js +52 -156
  11. package/dist/vuetify-labs.esm.js.map +1 -1
  12. package/dist/vuetify-labs.js +51 -155
  13. package/dist/vuetify-labs.min.css +2 -2
  14. package/dist/vuetify.cjs +40 -149
  15. package/dist/vuetify.cjs.map +1 -1
  16. package/dist/vuetify.css +4193 -4221
  17. package/dist/vuetify.d.ts +490 -544
  18. package/dist/vuetify.esm.js +41 -150
  19. package/dist/vuetify.esm.js.map +1 -1
  20. package/dist/vuetify.js +40 -149
  21. package/dist/vuetify.js.map +1 -1
  22. package/dist/vuetify.min.css +2 -2
  23. package/dist/vuetify.min.js +1173 -1181
  24. package/dist/vuetify.min.js.map +1 -1
  25. package/lib/components/VAlert/VAlert.css +1 -6
  26. package/lib/components/VAlert/VAlert.d.ts +0 -35
  27. package/lib/components/VAlert/VAlert.js +9 -14
  28. package/lib/components/VAlert/VAlert.js.map +1 -1
  29. package/lib/components/VAlert/VAlert.sass +1 -7
  30. package/lib/components/VAutocomplete/VAutocomplete.d.ts +94 -94
  31. package/lib/components/VBtnGroup/VBtnGroup.css +7 -30
  32. package/lib/components/VBtnGroup/VBtnGroup.d.ts +32 -58
  33. package/lib/components/VBtnGroup/VBtnGroup.js +3 -7
  34. package/lib/components/VBtnGroup/VBtnGroup.js.map +1 -1
  35. package/lib/components/VBtnGroup/VBtnGroup.sass +17 -44
  36. package/lib/components/VBtnToggle/VBtnToggle.d.ts +0 -25
  37. package/lib/components/VCheckbox/VCheckbox.d.ts +3 -3
  38. package/lib/components/VCombobox/VCombobox.d.ts +94 -94
  39. package/lib/components/VField/VField.d.ts +3 -3
  40. package/lib/components/VFileInput/VFileInput.d.ts +15 -15
  41. package/lib/components/VInput/VInput.d.ts +4 -4
  42. package/lib/components/VNumberInput/VNumberInput.d.ts +89 -89
  43. package/lib/components/VOverlay/VOverlay.css +1 -1
  44. package/lib/components/VOverlay/_variables.scss +1 -1
  45. package/lib/components/VRadioGroup/VRadioGroup.d.ts +3 -3
  46. package/lib/components/VRangeSlider/VRangeSlider.d.ts +3 -3
  47. package/lib/components/VSelect/VSelect.d.ts +94 -94
  48. package/lib/components/VSlider/VSlider.d.ts +3 -3
  49. package/lib/components/VSwitch/VSwitch.d.ts +3 -3
  50. package/lib/components/VTextField/VTextField.d.ts +27 -27
  51. package/lib/components/VTextarea/VTextarea.d.ts +15 -15
  52. package/lib/composables/calendar.d.ts +0 -1
  53. package/lib/composables/calendar.js.map +1 -1
  54. package/lib/composables/theme.d.ts +1 -6
  55. package/lib/composables/theme.js +26 -94
  56. package/lib/composables/theme.js.map +1 -1
  57. package/lib/composables/virtual.js +1 -6
  58. package/lib/composables/virtual.js.map +1 -1
  59. package/lib/entry-bundler.js +1 -1
  60. package/lib/entry-bundler.js.map +1 -1
  61. package/lib/framework.d.ts +46 -51
  62. package/lib/framework.js +1 -1
  63. package/lib/framework.js.map +1 -1
  64. package/lib/labs/VColorInput/VColorInput.d.ts +3 -3
  65. package/lib/labs/VDateInput/VDateInput.d.ts +87 -87
  66. package/lib/labs/VIconBtn/VIconBtn.d.ts +29 -29
  67. package/lib/labs/VIconBtn/VIconBtn.js +11 -7
  68. package/lib/labs/VIconBtn/VIconBtn.js.map +1 -1
  69. package/lib/util/globals.d.ts +0 -1
  70. package/lib/util/globals.js +0 -1
  71. package/lib/util/globals.js.map +1 -1
  72. package/package.json +1 -2
  73. package/lib/composables/iconSizes.d.ts +0 -28
  74. package/lib/composables/iconSizes.js +0 -23
  75. package/lib/composables/iconSizes.js.map +0 -1
@@ -1722,7 +1722,6 @@ export declare const makeVSelectProps: <Defaults extends {
1722
1722
  bgColor?: unknown;
1723
1723
  prependIcon?: unknown;
1724
1724
  appendIcon?: unknown;
1725
- iconColor?: unknown;
1726
1725
  clearIcon?: unknown;
1727
1726
  prependInnerIcon?: unknown;
1728
1727
  'onClick:clear'?: unknown;
@@ -1732,6 +1731,7 @@ export declare const makeVSelectProps: <Defaults extends {
1732
1731
  'onClick:prependInner'?: unknown;
1733
1732
  centerAffix?: unknown;
1734
1733
  glow?: unknown;
1734
+ iconColor?: unknown;
1735
1735
  hideSpinButtons?: unknown;
1736
1736
  hint?: unknown;
1737
1737
  persistentHint?: unknown;
@@ -2059,10 +2059,6 @@ 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
- };
2066
2062
  clearIcon: unknown extends Defaults["clearIcon"] ? {
2067
2063
  type: PropType<IconValue>;
2068
2064
  default: string;
@@ -2111,6 +2107,10 @@ export declare const makeVSelectProps: <Defaults extends {
2111
2107
  type: PropType<unknown extends Defaults["glow"] ? boolean : boolean | Defaults["glow"]>;
2112
2108
  default: unknown extends Defaults["glow"] ? boolean : boolean | Defaults["glow"];
2113
2109
  };
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,7 +3874,6 @@ export declare const VSelect: {
3874
3874
  bgColor?: string | undefined;
3875
3875
  prependIcon?: IconValue | undefined;
3876
3876
  appendIcon?: IconValue | undefined;
3877
- iconColor?: string | boolean | undefined;
3878
3877
  prependInnerIcon?: IconValue | undefined;
3879
3878
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
3880
3879
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
@@ -3882,6 +3881,7 @@ export declare const VSelect: {
3882
3881
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
3883
3882
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
3884
3883
  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,7 +4355,6 @@ export declare const VSelect: {
4355
4355
  bgColor?: string | undefined;
4356
4356
  prependIcon?: IconValue | undefined;
4357
4357
  appendIcon?: IconValue | undefined;
4358
- iconColor?: string | boolean | undefined;
4359
4358
  appendInnerIcon?: IconValue | undefined;
4360
4359
  prependInnerIcon?: IconValue | undefined;
4361
4360
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
@@ -4364,6 +4363,7 @@ export declare const VSelect: {
4364
4363
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
4365
4364
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
4366
4365
  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,7 +4507,6 @@ export declare const VSelect: {
4507
4507
  bgColor?: string | undefined;
4508
4508
  prependIcon?: IconValue | undefined;
4509
4509
  appendIcon?: IconValue | undefined;
4510
- iconColor?: string | boolean | undefined;
4511
4510
  appendInnerIcon?: IconValue | undefined;
4512
4511
  prependInnerIcon?: IconValue | undefined;
4513
4512
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
@@ -4516,6 +4515,7 @@ export declare const VSelect: {
4516
4515
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
4517
4516
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
4518
4517
  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;
4634
4633
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
4635
4634
  '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;
4690
4689
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
4691
4690
  '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;
4793
4792
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
4794
4793
  '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" | "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<{
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" | "iconColor" | "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;
4854
4853
  appendInnerIcon?: IconValue | undefined;
4855
4854
  prependInnerIcon?: IconValue | undefined;
4856
4855
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
4857
4856
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
4858
4857
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
4859
4858
  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;
4913
4912
  appendInnerIcon?: IconValue | undefined;
4914
4913
  prependInnerIcon?: IconValue | undefined;
4915
4914
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
4916
4915
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
4917
4916
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
4918
4917
  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;
5023
5022
  appendInnerIcon?: IconValue | undefined;
5024
5023
  prependInnerIcon?: IconValue | undefined;
5025
5024
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
5026
5025
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
5027
5026
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
5028
5027
  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" | "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}`> & {
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" | "iconColor" | "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,7 +5202,6 @@ export declare const VSelect: {
5202
5202
  bgColor?: string | undefined;
5203
5203
  prependIcon?: IconValue | undefined;
5204
5204
  appendIcon?: IconValue | undefined;
5205
- iconColor?: string | boolean | undefined;
5206
5205
  appendInnerIcon?: IconValue | undefined;
5207
5206
  prependInnerIcon?: IconValue | undefined;
5208
5207
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
@@ -5211,6 +5210,7 @@ export declare const VSelect: {
5211
5210
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
5212
5211
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
5213
5212
  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;
5329
5328
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
5330
5329
  '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;
5385
5384
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
5386
5385
  '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;
5488
5487
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
5489
5488
  '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" | "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<{
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" | "iconColor" | "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;
5549
5548
  appendInnerIcon?: IconValue | undefined;
5550
5549
  prependInnerIcon?: IconValue | undefined;
5551
5550
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
5552
5551
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
5553
5552
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
5554
5553
  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;
5608
5607
  appendInnerIcon?: IconValue | undefined;
5609
5608
  prependInnerIcon?: IconValue | undefined;
5610
5609
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
5611
5610
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
5612
5611
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
5613
5612
  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;
5718
5717
  appendInnerIcon?: IconValue | undefined;
5719
5718
  prependInnerIcon?: IconValue | undefined;
5720
5719
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
5721
5720
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
5722
5721
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
5723
5722
  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" | "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}`> & {
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" | "iconColor" | "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" | "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}`> & {
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" | "iconColor" | "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;
5795
5794
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
5796
5795
  '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;
5851
5850
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
5852
5851
  '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;
5954
5953
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
5955
5954
  '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" | "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<{
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" | "iconColor" | "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;
6015
6014
  appendInnerIcon?: IconValue | undefined;
6016
6015
  prependInnerIcon?: IconValue | undefined;
6017
6016
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
6018
6017
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
6019
6018
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
6020
6019
  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;
6074
6073
  appendInnerIcon?: IconValue | undefined;
6075
6074
  prependInnerIcon?: IconValue | undefined;
6076
6075
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
6077
6076
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
6078
6077
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
6079
6078
  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;
6184
6183
  appendInnerIcon?: IconValue | undefined;
6185
6184
  prependInnerIcon?: IconValue | undefined;
6186
6185
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
6187
6186
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
6188
6187
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
6189
6188
  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" | "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}`> & {
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" | "iconColor" | "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,7 +6370,6 @@ export declare const VSelect: {
6370
6370
  bgColor?: string | undefined;
6371
6371
  prependIcon?: IconValue | undefined;
6372
6372
  appendIcon?: IconValue | undefined;
6373
- iconColor?: string | boolean | undefined;
6374
6373
  prependInnerIcon?: IconValue | undefined;
6375
6374
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
6376
6375
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
@@ -6378,6 +6377,7 @@ export declare const VSelect: {
6378
6377
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
6379
6378
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
6380
6379
  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,7 +6851,6 @@ export declare const VSelect: {
6851
6851
  bgColor?: string | undefined;
6852
6852
  prependIcon?: IconValue | undefined;
6853
6853
  appendIcon?: IconValue | undefined;
6854
- iconColor?: string | boolean | undefined;
6855
6854
  appendInnerIcon?: IconValue | undefined;
6856
6855
  prependInnerIcon?: IconValue | undefined;
6857
6856
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
@@ -6860,6 +6859,7 @@ export declare const VSelect: {
6860
6859
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
6861
6860
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
6862
6861
  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,7 +7003,6 @@ export declare const VSelect: {
7003
7003
  bgColor?: string | undefined;
7004
7004
  prependIcon?: IconValue | undefined;
7005
7005
  appendIcon?: IconValue | undefined;
7006
- iconColor?: string | boolean | undefined;
7007
7006
  appendInnerIcon?: IconValue | undefined;
7008
7007
  prependInnerIcon?: IconValue | undefined;
7009
7008
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
@@ -7012,6 +7011,7 @@ export declare const VSelect: {
7012
7011
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
7013
7012
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
7014
7013
  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;
7130
7129
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
7131
7130
  '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;
7186
7185
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
7187
7186
  '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;
7289
7288
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
7290
7289
  '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" | "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<{
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" | "iconColor" | "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;
7350
7349
  appendInnerIcon?: IconValue | undefined;
7351
7350
  prependInnerIcon?: IconValue | undefined;
7352
7351
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
7353
7352
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
7354
7353
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
7355
7354
  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;
7409
7408
  appendInnerIcon?: IconValue | undefined;
7410
7409
  prependInnerIcon?: IconValue | undefined;
7411
7410
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
7412
7411
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
7413
7412
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
7414
7413
  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;
7519
7518
  appendInnerIcon?: IconValue | undefined;
7520
7519
  prependInnerIcon?: IconValue | undefined;
7521
7520
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
7522
7521
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
7523
7522
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
7524
7523
  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" | "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}`> & {
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" | "iconColor" | "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,7 +7698,6 @@ export declare const VSelect: {
7698
7698
  bgColor?: string | undefined;
7699
7699
  prependIcon?: IconValue | undefined;
7700
7700
  appendIcon?: IconValue | undefined;
7701
- iconColor?: string | boolean | undefined;
7702
7701
  appendInnerIcon?: IconValue | undefined;
7703
7702
  prependInnerIcon?: IconValue | undefined;
7704
7703
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
@@ -7707,6 +7706,7 @@ export declare const VSelect: {
7707
7706
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
7708
7707
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
7709
7708
  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;
7825
7824
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
7826
7825
  '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;
7881
7880
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
7882
7881
  '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;
7984
7983
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
7985
7984
  '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" | "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<{
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" | "iconColor" | "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;
8045
8044
  appendInnerIcon?: IconValue | undefined;
8046
8045
  prependInnerIcon?: IconValue | undefined;
8047
8046
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
8048
8047
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
8049
8048
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
8050
8049
  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;
8104
8103
  appendInnerIcon?: IconValue | undefined;
8105
8104
  prependInnerIcon?: IconValue | undefined;
8106
8105
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
8107
8106
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
8108
8107
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
8109
8108
  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;
8214
8213
  appendInnerIcon?: IconValue | undefined;
8215
8214
  prependInnerIcon?: IconValue | undefined;
8216
8215
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
8217
8216
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
8218
8217
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
8219
8218
  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" | "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}`> & {
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" | "iconColor" | "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" | "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}`> & {
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" | "iconColor" | "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;
8291
8290
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
8292
8291
  '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;
8347
8346
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
8348
8347
  '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;
8450
8449
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
8451
8450
  '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" | "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<{
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" | "iconColor" | "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;
8511
8510
  appendInnerIcon?: IconValue | undefined;
8512
8511
  prependInnerIcon?: IconValue | undefined;
8513
8512
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
8514
8513
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
8515
8514
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
8516
8515
  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;
8570
8569
  appendInnerIcon?: IconValue | undefined;
8571
8570
  prependInnerIcon?: IconValue | undefined;
8572
8571
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
8573
8572
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
8574
8573
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
8575
8574
  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;
8680
8679
  appendInnerIcon?: IconValue | undefined;
8681
8680
  prependInnerIcon?: IconValue | undefined;
8682
8681
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
8683
8682
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
8684
8683
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
8685
8684
  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" | "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}`> & {
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" | "iconColor" | "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,7 +8827,6 @@ export declare const VSelect: {
8827
8827
  bgColor?: string | undefined;
8828
8828
  prependIcon?: IconValue | undefined;
8829
8829
  appendIcon?: IconValue | undefined;
8830
- iconColor?: string | boolean | undefined;
8831
8830
  prependInnerIcon?: IconValue | undefined;
8832
8831
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
8833
8832
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
@@ -8835,6 +8834,7 @@ export declare const VSelect: {
8835
8834
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
8836
8835
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
8837
8836
  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,7 +9308,6 @@ export declare const VSelect: {
9308
9308
  bgColor?: string | undefined;
9309
9309
  prependIcon?: IconValue | undefined;
9310
9310
  appendIcon?: IconValue | undefined;
9311
- iconColor?: string | boolean | undefined;
9312
9311
  appendInnerIcon?: IconValue | undefined;
9313
9312
  prependInnerIcon?: IconValue | undefined;
9314
9313
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
@@ -9317,6 +9316,7 @@ export declare const VSelect: {
9317
9316
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
9318
9317
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
9319
9318
  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,7 +9460,6 @@ export declare const VSelect: {
9460
9460
  bgColor?: string | undefined;
9461
9461
  prependIcon?: IconValue | undefined;
9462
9462
  appendIcon?: IconValue | undefined;
9463
- iconColor?: string | boolean | undefined;
9464
9463
  appendInnerIcon?: IconValue | undefined;
9465
9464
  prependInnerIcon?: IconValue | undefined;
9466
9465
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
@@ -9469,6 +9468,7 @@ export declare const VSelect: {
9469
9468
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
9470
9469
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
9471
9470
  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;
9587
9586
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
9588
9587
  '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;
9643
9642
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
9644
9643
  '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;
9746
9745
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
9747
9746
  '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" | "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<{
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" | "iconColor" | "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;
9807
9806
  appendInnerIcon?: IconValue | undefined;
9808
9807
  prependInnerIcon?: IconValue | undefined;
9809
9808
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
9810
9809
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
9811
9810
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
9812
9811
  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;
9866
9865
  appendInnerIcon?: IconValue | undefined;
9867
9866
  prependInnerIcon?: IconValue | undefined;
9868
9867
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
9869
9868
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
9870
9869
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
9871
9870
  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;
9976
9975
  appendInnerIcon?: IconValue | undefined;
9977
9976
  prependInnerIcon?: IconValue | undefined;
9978
9977
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
9979
9978
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
9980
9979
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
9981
9980
  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" | "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}`> & {
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" | "iconColor" | "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,7 +10155,6 @@ export declare const VSelect: {
10155
10155
  bgColor?: string | undefined;
10156
10156
  prependIcon?: IconValue | undefined;
10157
10157
  appendIcon?: IconValue | undefined;
10158
- iconColor?: string | boolean | undefined;
10159
10158
  appendInnerIcon?: IconValue | undefined;
10160
10159
  prependInnerIcon?: IconValue | undefined;
10161
10160
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
@@ -10164,6 +10163,7 @@ export declare const VSelect: {
10164
10163
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
10165
10164
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
10166
10165
  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;
10282
10281
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
10283
10282
  '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;
10338
10337
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
10339
10338
  '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;
10441
10440
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
10442
10441
  '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" | "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<{
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" | "iconColor" | "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;
10502
10501
  appendInnerIcon?: IconValue | undefined;
10503
10502
  prependInnerIcon?: IconValue | undefined;
10504
10503
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
10505
10504
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
10506
10505
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
10507
10506
  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;
10561
10560
  appendInnerIcon?: IconValue | undefined;
10562
10561
  prependInnerIcon?: IconValue | undefined;
10563
10562
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
10564
10563
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
10565
10564
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
10566
10565
  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;
10671
10670
  appendInnerIcon?: IconValue | undefined;
10672
10671
  prependInnerIcon?: IconValue | undefined;
10673
10672
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
10674
10673
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
10675
10674
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
10676
10675
  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" | "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}`> & {
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" | "iconColor" | "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" | "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}`> & {
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" | "iconColor" | "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;
10748
10747
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
10749
10748
  '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;
10804
10803
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
10805
10804
  '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;
10907
10906
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
10908
10907
  '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" | "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<{
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" | "iconColor" | "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;
10968
10967
  appendInnerIcon?: IconValue | undefined;
10969
10968
  prependInnerIcon?: IconValue | undefined;
10970
10969
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
10971
10970
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
10972
10971
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
10973
10972
  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;
11027
11026
  appendInnerIcon?: IconValue | undefined;
11028
11027
  prependInnerIcon?: IconValue | undefined;
11029
11028
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
11030
11029
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
11031
11030
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
11032
11031
  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;
11137
11136
  appendInnerIcon?: IconValue | undefined;
11138
11137
  prependInnerIcon?: IconValue | undefined;
11139
11138
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
11140
11139
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
11141
11140
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
11142
11141
  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" | "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}`> & {
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" | "iconColor" | "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,7 +11373,6 @@ export declare const VSelect: {
11373
11373
  bgColor: StringConstructor;
11374
11374
  prependIcon: PropType<IconValue>;
11375
11375
  appendIcon: PropType<IconValue>;
11376
- iconColor: (StringConstructor | BooleanConstructor)[];
11377
11376
  clearIcon: {
11378
11377
  type: PropType<IconValue>;
11379
11378
  default: string;
@@ -11389,6 +11388,7 @@ export declare const VSelect: {
11389
11388
  default: undefined;
11390
11389
  };
11391
11390
  glow: BooleanConstructor;
11391
+ iconColor: (StringConstructor | BooleanConstructor)[];
11392
11392
  hideSpinButtons: BooleanConstructor;
11393
11393
  hint: StringConstructor;
11394
11394
  persistentHint: BooleanConstructor;
@@ -11555,7 +11555,6 @@ export declare const VSelect: {
11555
11555
  bgColor: StringConstructor;
11556
11556
  prependIcon: PropType<IconValue>;
11557
11557
  appendIcon: PropType<IconValue>;
11558
- iconColor: (StringConstructor | BooleanConstructor)[];
11559
11558
  clearIcon: {
11560
11559
  type: PropType<IconValue>;
11561
11560
  default: string;
@@ -11571,6 +11570,7 @@ export declare const VSelect: {
11571
11570
  default: undefined;
11572
11571
  };
11573
11572
  glow: BooleanConstructor;
11573
+ iconColor: (StringConstructor | BooleanConstructor)[];
11574
11574
  hideSpinButtons: BooleanConstructor;
11575
11575
  hint: StringConstructor;
11576
11576
  persistentHint: BooleanConstructor;