@vuetify/nightly 3.8.5-master.2025-05-20 → 3.8.6-dev.2025-05-21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (90) hide show
  1. package/CHANGELOG.md +21 -14
  2. package/dist/json/attributes.json +1331 -1311
  3. package/dist/json/importMap-labs.json +24 -24
  4. package/dist/json/importMap.json +192 -192
  5. package/dist/json/tags.json +5 -0
  6. package/dist/json/web-types.json +2610 -2471
  7. package/dist/vuetify-labs.cjs +288 -117
  8. package/dist/vuetify-labs.css +3866 -3838
  9. package/dist/vuetify-labs.d.ts +1490 -1352
  10. package/dist/vuetify-labs.esm.js +289 -118
  11. package/dist/vuetify-labs.esm.js.map +1 -1
  12. package/dist/vuetify-labs.js +288 -117
  13. package/dist/vuetify-labs.min.css +2 -2
  14. package/dist/vuetify.cjs +282 -106
  15. package/dist/vuetify.cjs.map +1 -1
  16. package/dist/vuetify.css +3130 -3102
  17. package/dist/vuetify.d.ts +659 -519
  18. package/dist/vuetify.esm.js +283 -107
  19. package/dist/vuetify.esm.js.map +1 -1
  20. package/dist/vuetify.js +282 -106
  21. package/dist/vuetify.js.map +1 -1
  22. package/dist/vuetify.min.css +2 -2
  23. package/dist/vuetify.min.js +1188 -1178
  24. package/dist/vuetify.min.js.map +1 -1
  25. package/lib/components/VAlert/VAlert.css +6 -1
  26. package/lib/components/VAlert/VAlert.d.ts +35 -0
  27. package/lib/components/VAlert/VAlert.js +14 -9
  28. package/lib/components/VAlert/VAlert.js.map +1 -1
  29. package/lib/components/VAlert/VAlert.sass +7 -1
  30. package/lib/components/VAutocomplete/VAutocomplete.d.ts +120 -96
  31. package/lib/components/VAutocomplete/VAutocomplete.js +18 -1
  32. package/lib/components/VAutocomplete/VAutocomplete.js.map +1 -1
  33. package/lib/components/VBtnGroup/VBtnGroup.css +30 -7
  34. package/lib/components/VBtnGroup/VBtnGroup.d.ts +58 -32
  35. package/lib/components/VBtnGroup/VBtnGroup.js +7 -3
  36. package/lib/components/VBtnGroup/VBtnGroup.js.map +1 -1
  37. package/lib/components/VBtnGroup/VBtnGroup.sass +44 -17
  38. package/lib/components/VBtnToggle/VBtnToggle.d.ts +25 -0
  39. package/lib/components/VCheckbox/VCheckbox.d.ts +3 -3
  40. package/lib/components/VCombobox/VCombobox.d.ts +120 -96
  41. package/lib/components/VCombobox/VCombobox.js +19 -1
  42. package/lib/components/VCombobox/VCombobox.js.map +1 -1
  43. package/lib/components/VField/VField.d.ts +3 -3
  44. package/lib/components/VFileInput/VFileInput.d.ts +15 -15
  45. package/lib/components/VInput/VInput.d.ts +4 -4
  46. package/lib/components/VList/VListChildren.js.map +1 -1
  47. package/lib/components/VNumberInput/VNumberInput.d.ts +103 -89
  48. package/lib/components/VNumberInput/VNumberInput.js +19 -4
  49. package/lib/components/VNumberInput/VNumberInput.js.map +1 -1
  50. package/lib/components/VOverlay/VOverlay.css +1 -1
  51. package/lib/components/VOverlay/_variables.scss +1 -1
  52. package/lib/components/VRadioGroup/VRadioGroup.d.ts +3 -3
  53. package/lib/components/VRangeSlider/VRangeSlider.d.ts +3 -3
  54. package/lib/components/VSelect/VSelect.d.ts +120 -96
  55. package/lib/components/VSelect/VSelect.js +18 -1
  56. package/lib/components/VSelect/VSelect.js.map +1 -1
  57. package/lib/components/VSlider/VSlider.d.ts +3 -3
  58. package/lib/components/VSwitch/VSwitch.d.ts +3 -3
  59. package/lib/components/VTextField/VTextField.d.ts +27 -27
  60. package/lib/components/VTextarea/VTextarea.d.ts +15 -15
  61. package/lib/composables/calendar.d.ts +1 -0
  62. package/lib/composables/calendar.js.map +1 -1
  63. package/lib/composables/date/index.d.ts +1 -0
  64. package/lib/composables/date/index.js +1 -0
  65. package/lib/composables/date/index.js.map +1 -1
  66. package/lib/composables/filter.js +3 -0
  67. package/lib/composables/filter.js.map +1 -1
  68. package/lib/composables/iconSizes.d.ts +28 -0
  69. package/lib/composables/iconSizes.js +23 -0
  70. package/lib/composables/iconSizes.js.map +1 -0
  71. package/lib/composables/theme.d.ts +6 -1
  72. package/lib/composables/theme.js +94 -26
  73. package/lib/composables/theme.js.map +1 -1
  74. package/lib/composables/virtual.js +6 -1
  75. package/lib/composables/virtual.js.map +1 -1
  76. package/lib/entry-bundler.js +1 -1
  77. package/lib/entry-bundler.js.map +1 -1
  78. package/lib/framework.d.ts +74 -69
  79. package/lib/framework.js +1 -1
  80. package/lib/framework.js.map +1 -1
  81. package/lib/labs/VColorInput/VColorInput.d.ts +3 -3
  82. package/lib/labs/VDateInput/VDateInput.d.ts +87 -87
  83. package/lib/labs/VFileUpload/VFileUpload.d.ts +3 -3
  84. package/lib/labs/VIconBtn/VIconBtn.d.ts +29 -29
  85. package/lib/labs/VIconBtn/VIconBtn.js +7 -11
  86. package/lib/labs/VIconBtn/VIconBtn.js.map +1 -1
  87. package/lib/util/globals.d.ts +1 -0
  88. package/lib/util/globals.js +1 -0
  89. package/lib/util/globals.js.map +1 -1
  90. package/package.json +3 -1
@@ -1722,6 +1722,7 @@ export declare const makeVSelectProps: <Defaults extends {
1722
1722
  bgColor?: unknown;
1723
1723
  prependIcon?: unknown;
1724
1724
  appendIcon?: unknown;
1725
+ iconColor?: unknown;
1725
1726
  clearIcon?: unknown;
1726
1727
  prependInnerIcon?: unknown;
1727
1728
  'onClick:clear'?: unknown;
@@ -1731,7 +1732,6 @@ export declare const makeVSelectProps: <Defaults extends {
1731
1732
  'onClick:prependInner'?: unknown;
1732
1733
  centerAffix?: unknown;
1733
1734
  glow?: unknown;
1734
- iconColor?: unknown;
1735
1735
  hideSpinButtons?: unknown;
1736
1736
  hint?: unknown;
1737
1737
  persistentHint?: unknown;
@@ -2059,6 +2059,10 @@ export declare const makeVSelectProps: <Defaults extends {
2059
2059
  type: PropType<unknown extends Defaults["appendIcon"] ? IconValue : IconValue | Defaults["appendIcon"]>;
2060
2060
  default: unknown extends Defaults["appendIcon"] ? IconValue : NonNullable<IconValue> | Defaults["appendIcon"];
2061
2061
  };
2062
+ iconColor: unknown extends Defaults["iconColor"] ? (StringConstructor | BooleanConstructor)[] : {
2063
+ type: PropType<unknown extends Defaults["iconColor"] ? string | boolean : string | boolean | Defaults["iconColor"]>;
2064
+ default: unknown extends Defaults["iconColor"] ? string | boolean : NonNullable<string | boolean> | Defaults["iconColor"];
2065
+ };
2062
2066
  clearIcon: unknown extends Defaults["clearIcon"] ? {
2063
2067
  type: PropType<IconValue>;
2064
2068
  default: string;
@@ -2107,10 +2111,6 @@ export declare const makeVSelectProps: <Defaults extends {
2107
2111
  type: PropType<unknown extends Defaults["glow"] ? boolean : boolean | Defaults["glow"]>;
2108
2112
  default: unknown extends Defaults["glow"] ? boolean : boolean | Defaults["glow"];
2109
2113
  };
2110
- iconColor: unknown extends Defaults["iconColor"] ? (StringConstructor | BooleanConstructor)[] : {
2111
- type: PropType<unknown extends Defaults["iconColor"] ? string | boolean : string | boolean | Defaults["iconColor"]>;
2112
- default: unknown extends Defaults["iconColor"] ? string | boolean : NonNullable<string | boolean> | Defaults["iconColor"];
2113
- };
2114
2114
  hideSpinButtons: unknown extends Defaults["hideSpinButtons"] ? BooleanConstructor : {
2115
2115
  type: PropType<unknown extends Defaults["hideSpinButtons"] ? boolean : boolean | Defaults["hideSpinButtons"]>;
2116
2116
  default: unknown extends Defaults["hideSpinButtons"] ? boolean : boolean | Defaults["hideSpinButtons"];
@@ -3874,6 +3874,7 @@ export declare const VSelect: {
3874
3874
  bgColor?: string | undefined;
3875
3875
  prependIcon?: IconValue | undefined;
3876
3876
  appendIcon?: IconValue | undefined;
3877
+ iconColor?: string | boolean | undefined;
3877
3878
  prependInnerIcon?: IconValue | undefined;
3878
3879
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
3879
3880
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
@@ -3881,7 +3882,6 @@ export declare const VSelect: {
3881
3882
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
3882
3883
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
3883
3884
  centerAffix?: boolean | undefined;
3884
- iconColor?: string | boolean | undefined;
3885
3885
  hint?: string | undefined;
3886
3886
  hideDetails?: boolean | "auto" | undefined;
3887
3887
  suffix?: string | undefined;
@@ -4355,6 +4355,7 @@ export declare const VSelect: {
4355
4355
  bgColor?: string | undefined;
4356
4356
  prependIcon?: IconValue | undefined;
4357
4357
  appendIcon?: IconValue | undefined;
4358
+ iconColor?: string | boolean | undefined;
4358
4359
  appendInnerIcon?: IconValue | undefined;
4359
4360
  prependInnerIcon?: IconValue | undefined;
4360
4361
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
@@ -4363,7 +4364,6 @@ export declare const VSelect: {
4363
4364
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
4364
4365
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
4365
4366
  centerAffix?: boolean | undefined;
4366
- iconColor?: string | boolean | undefined;
4367
4367
  hint?: string | undefined;
4368
4368
  hideDetails?: boolean | "auto" | undefined;
4369
4369
  suffix?: string | undefined;
@@ -4507,6 +4507,7 @@ export declare const VSelect: {
4507
4507
  bgColor?: string | undefined;
4508
4508
  prependIcon?: IconValue | undefined;
4509
4509
  appendIcon?: IconValue | undefined;
4510
+ iconColor?: string | boolean | undefined;
4510
4511
  appendInnerIcon?: IconValue | undefined;
4511
4512
  prependInnerIcon?: IconValue | undefined;
4512
4513
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
@@ -4515,7 +4516,6 @@ export declare const VSelect: {
4515
4516
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
4516
4517
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
4517
4518
  centerAffix?: boolean | undefined;
4518
- iconColor?: string | boolean | undefined;
4519
4519
  hint?: string | undefined;
4520
4520
  hideDetails?: boolean | "auto" | undefined;
4521
4521
  suffix?: string | undefined;
@@ -4630,9 +4630,9 @@ export declare const VSelect: {
4630
4630
  baseColor?: string | undefined;
4631
4631
  prependIcon?: IconValue | undefined;
4632
4632
  appendIcon?: IconValue | undefined;
4633
+ iconColor?: string | boolean | undefined;
4633
4634
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
4634
4635
  'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
4635
- iconColor?: string | boolean | undefined;
4636
4636
  hint?: string | undefined;
4637
4637
  hideDetails?: boolean | "auto" | undefined;
4638
4638
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
@@ -4686,9 +4686,9 @@ export declare const VSelect: {
4686
4686
  baseColor?: string | undefined;
4687
4687
  prependIcon?: IconValue | undefined;
4688
4688
  appendIcon?: IconValue | undefined;
4689
+ iconColor?: string | boolean | undefined;
4689
4690
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
4690
4691
  'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
4691
- iconColor?: string | boolean | undefined;
4692
4692
  hint?: string | undefined;
4693
4693
  hideDetails?: boolean | "auto" | undefined;
4694
4694
  } & {}, {
@@ -4789,9 +4789,9 @@ export declare const VSelect: {
4789
4789
  baseColor?: string | undefined;
4790
4790
  prependIcon?: IconValue | undefined;
4791
4791
  appendIcon?: IconValue | undefined;
4792
+ iconColor?: string | boolean | undefined;
4792
4793
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
4793
4794
  'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
4794
- iconColor?: string | boolean | undefined;
4795
4795
  hint?: string | undefined;
4796
4796
  hideDetails?: boolean | "auto" | undefined;
4797
4797
  } & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
@@ -4803,7 +4803,7 @@ export declare const VSelect: {
4803
4803
  }> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
4804
4804
  modelValue?: unknown;
4805
4805
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
4806
- }, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "iconColor" | "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" | "iconColor" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
4807
4807
  $: import("vue").ComponentInternalInstance;
4808
4808
  $data: {};
4809
4809
  $props: Partial<{
@@ -4850,13 +4850,13 @@ export declare const VSelect: {
4850
4850
  rounded?: string | number | boolean | undefined;
4851
4851
  baseColor?: string | undefined;
4852
4852
  bgColor?: string | undefined;
4853
+ iconColor?: string | boolean | undefined;
4853
4854
  appendInnerIcon?: IconValue | undefined;
4854
4855
  prependInnerIcon?: IconValue | undefined;
4855
4856
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
4856
4857
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
4857
4858
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
4858
4859
  centerAffix?: boolean | undefined;
4859
- iconColor?: string | boolean | undefined;
4860
4860
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
4861
4861
  $attrs: {
4862
4862
  [x: string]: unknown;
@@ -4909,13 +4909,13 @@ export declare const VSelect: {
4909
4909
  rounded?: string | number | boolean | undefined;
4910
4910
  baseColor?: string | undefined;
4911
4911
  bgColor?: string | undefined;
4912
+ iconColor?: string | boolean | undefined;
4912
4913
  appendInnerIcon?: IconValue | undefined;
4913
4914
  prependInnerIcon?: IconValue | undefined;
4914
4915
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
4915
4916
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
4916
4917
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
4917
4918
  centerAffix?: boolean | undefined;
4918
- iconColor?: string | boolean | undefined;
4919
4919
  } & {
4920
4920
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
4921
4921
  }, {
@@ -5019,13 +5019,13 @@ export declare const VSelect: {
5019
5019
  rounded?: string | number | boolean | undefined;
5020
5020
  baseColor?: string | undefined;
5021
5021
  bgColor?: string | undefined;
5022
+ iconColor?: string | boolean | undefined;
5022
5023
  appendInnerIcon?: IconValue | undefined;
5023
5024
  prependInnerIcon?: IconValue | undefined;
5024
5025
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
5025
5026
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
5026
5027
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
5027
5028
  centerAffix?: boolean | undefined;
5028
- iconColor?: string | boolean | undefined;
5029
5029
  } & {
5030
5030
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
5031
5031
  }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
@@ -5034,7 +5034,7 @@ export declare const VSelect: {
5034
5034
  }> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
5035
5035
  modelValue?: unknown;
5036
5036
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
5037
- }, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "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}`> & {
5037
+ }, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
5038
5038
  _allExposed: {
5039
5039
  reset: () => Promise<void>;
5040
5040
  resetValidation: () => Promise<void>;
@@ -5202,6 +5202,7 @@ export declare const VSelect: {
5202
5202
  bgColor?: string | undefined;
5203
5203
  prependIcon?: IconValue | undefined;
5204
5204
  appendIcon?: IconValue | undefined;
5205
+ iconColor?: string | boolean | undefined;
5205
5206
  appendInnerIcon?: IconValue | undefined;
5206
5207
  prependInnerIcon?: IconValue | undefined;
5207
5208
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
@@ -5210,7 +5211,6 @@ export declare const VSelect: {
5210
5211
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
5211
5212
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
5212
5213
  centerAffix?: boolean | undefined;
5213
- iconColor?: string | boolean | undefined;
5214
5214
  hint?: string | undefined;
5215
5215
  hideDetails?: boolean | "auto" | undefined;
5216
5216
  suffix?: string | undefined;
@@ -5325,9 +5325,9 @@ export declare const VSelect: {
5325
5325
  baseColor?: string | undefined;
5326
5326
  prependIcon?: IconValue | undefined;
5327
5327
  appendIcon?: IconValue | undefined;
5328
+ iconColor?: string | boolean | undefined;
5328
5329
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
5329
5330
  'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
5330
- iconColor?: string | boolean | undefined;
5331
5331
  hint?: string | undefined;
5332
5332
  hideDetails?: boolean | "auto" | undefined;
5333
5333
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
@@ -5381,9 +5381,9 @@ export declare const VSelect: {
5381
5381
  baseColor?: string | undefined;
5382
5382
  prependIcon?: IconValue | undefined;
5383
5383
  appendIcon?: IconValue | undefined;
5384
+ iconColor?: string | boolean | undefined;
5384
5385
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
5385
5386
  'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
5386
- iconColor?: string | boolean | undefined;
5387
5387
  hint?: string | undefined;
5388
5388
  hideDetails?: boolean | "auto" | undefined;
5389
5389
  } & {}, {
@@ -5484,9 +5484,9 @@ export declare const VSelect: {
5484
5484
  baseColor?: string | undefined;
5485
5485
  prependIcon?: IconValue | undefined;
5486
5486
  appendIcon?: IconValue | undefined;
5487
+ iconColor?: string | boolean | undefined;
5487
5488
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
5488
5489
  'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
5489
- iconColor?: string | boolean | undefined;
5490
5490
  hint?: string | undefined;
5491
5491
  hideDetails?: boolean | "auto" | undefined;
5492
5492
  } & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
@@ -5498,7 +5498,7 @@ export declare const VSelect: {
5498
5498
  }> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
5499
5499
  modelValue?: unknown;
5500
5500
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
5501
- }, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "iconColor" | "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" | "iconColor" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
5502
5502
  $: import("vue").ComponentInternalInstance;
5503
5503
  $data: {};
5504
5504
  $props: Partial<{
@@ -5545,13 +5545,13 @@ export declare const VSelect: {
5545
5545
  rounded?: string | number | boolean | undefined;
5546
5546
  baseColor?: string | undefined;
5547
5547
  bgColor?: string | undefined;
5548
+ iconColor?: string | boolean | undefined;
5548
5549
  appendInnerIcon?: IconValue | undefined;
5549
5550
  prependInnerIcon?: IconValue | undefined;
5550
5551
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
5551
5552
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
5552
5553
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
5553
5554
  centerAffix?: boolean | undefined;
5554
- iconColor?: string | boolean | undefined;
5555
5555
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
5556
5556
  $attrs: {
5557
5557
  [x: string]: unknown;
@@ -5604,13 +5604,13 @@ export declare const VSelect: {
5604
5604
  rounded?: string | number | boolean | undefined;
5605
5605
  baseColor?: string | undefined;
5606
5606
  bgColor?: string | undefined;
5607
+ iconColor?: string | boolean | undefined;
5607
5608
  appendInnerIcon?: IconValue | undefined;
5608
5609
  prependInnerIcon?: IconValue | undefined;
5609
5610
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
5610
5611
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
5611
5612
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
5612
5613
  centerAffix?: boolean | undefined;
5613
- iconColor?: string | boolean | undefined;
5614
5614
  } & {
5615
5615
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
5616
5616
  }, {
@@ -5714,13 +5714,13 @@ export declare const VSelect: {
5714
5714
  rounded?: string | number | boolean | undefined;
5715
5715
  baseColor?: string | undefined;
5716
5716
  bgColor?: string | undefined;
5717
+ iconColor?: string | boolean | undefined;
5717
5718
  appendInnerIcon?: IconValue | undefined;
5718
5719
  prependInnerIcon?: IconValue | undefined;
5719
5720
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
5720
5721
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
5721
5722
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
5722
5723
  centerAffix?: boolean | undefined;
5723
- iconColor?: string | boolean | undefined;
5724
5724
  } & {
5725
5725
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
5726
5726
  }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
@@ -5729,7 +5729,7 @@ export declare const VSelect: {
5729
5729
  }> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
5730
5730
  modelValue?: unknown;
5731
5731
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
5732
- }, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "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}`> & {
5732
+ }, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
5733
5733
  _allExposed: {
5734
5734
  reset: () => Promise<void>;
5735
5735
  resetValidation: () => Promise<void>;
@@ -5740,7 +5740,7 @@ export declare const VSelect: {
5740
5740
  controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
5741
5741
  fieldIconColor: import("vue").ComputedRef<string | undefined>;
5742
5742
  } | {};
5743
- }> & {} & import("vue").ComponentCustomProperties & {}, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "loading" | "label" | "prefix" | "role" | "class" | "theme" | "placeholder" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "counter" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:append" | "onClick:prepend" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:message" | "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}`> & {
5743
+ }> & {} & import("vue").ComponentCustomProperties & {}, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "loading" | "label" | "prefix" | "role" | "class" | "theme" | "placeholder" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "counter" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:append" | "onClick:prepend" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "suffix" | "counterValue" | "modelModifiers" | "onClick:control" | "onMousedown:control" | ("flat" | "reverse" | "variant" | "type" | "error" | "active" | "direction" | "style" | "autofocus" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "persistentPlaceholder" | "persistentCounter") | "v-slot:counter">, `$${any}`> & {
5744
5744
  _allExposed: (HTMLInputElement & Omit<Omit<{
5745
5745
  $: import("vue").ComponentInternalInstance;
5746
5746
  $data: {};
@@ -5791,9 +5791,9 @@ export declare const VSelect: {
5791
5791
  baseColor?: string | undefined;
5792
5792
  prependIcon?: IconValue | undefined;
5793
5793
  appendIcon?: IconValue | undefined;
5794
+ iconColor?: string | boolean | undefined;
5794
5795
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
5795
5796
  'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
5796
- iconColor?: string | boolean | undefined;
5797
5797
  hint?: string | undefined;
5798
5798
  hideDetails?: boolean | "auto" | undefined;
5799
5799
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
@@ -5847,9 +5847,9 @@ export declare const VSelect: {
5847
5847
  baseColor?: string | undefined;
5848
5848
  prependIcon?: IconValue | undefined;
5849
5849
  appendIcon?: IconValue | undefined;
5850
+ iconColor?: string | boolean | undefined;
5850
5851
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
5851
5852
  'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
5852
- iconColor?: string | boolean | undefined;
5853
5853
  hint?: string | undefined;
5854
5854
  hideDetails?: boolean | "auto" | undefined;
5855
5855
  } & {}, {
@@ -5950,9 +5950,9 @@ export declare const VSelect: {
5950
5950
  baseColor?: string | undefined;
5951
5951
  prependIcon?: IconValue | undefined;
5952
5952
  appendIcon?: IconValue | undefined;
5953
+ iconColor?: string | boolean | undefined;
5953
5954
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
5954
5955
  'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
5955
- iconColor?: string | boolean | undefined;
5956
5956
  hint?: string | undefined;
5957
5957
  hideDetails?: boolean | "auto" | undefined;
5958
5958
  } & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
@@ -5964,7 +5964,7 @@ export declare const VSelect: {
5964
5964
  }> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
5965
5965
  modelValue?: unknown;
5966
5966
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
5967
- }, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "iconColor" | "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" | "iconColor" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
5968
5968
  $: import("vue").ComponentInternalInstance;
5969
5969
  $data: {};
5970
5970
  $props: Partial<{
@@ -6011,13 +6011,13 @@ export declare const VSelect: {
6011
6011
  rounded?: string | number | boolean | undefined;
6012
6012
  baseColor?: string | undefined;
6013
6013
  bgColor?: string | undefined;
6014
+ iconColor?: string | boolean | undefined;
6014
6015
  appendInnerIcon?: IconValue | undefined;
6015
6016
  prependInnerIcon?: IconValue | undefined;
6016
6017
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
6017
6018
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
6018
6019
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
6019
6020
  centerAffix?: boolean | undefined;
6020
- iconColor?: string | boolean | undefined;
6021
6021
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
6022
6022
  $attrs: {
6023
6023
  [x: string]: unknown;
@@ -6070,13 +6070,13 @@ export declare const VSelect: {
6070
6070
  rounded?: string | number | boolean | undefined;
6071
6071
  baseColor?: string | undefined;
6072
6072
  bgColor?: string | undefined;
6073
+ iconColor?: string | boolean | undefined;
6073
6074
  appendInnerIcon?: IconValue | undefined;
6074
6075
  prependInnerIcon?: IconValue | undefined;
6075
6076
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
6076
6077
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
6077
6078
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
6078
6079
  centerAffix?: boolean | undefined;
6079
- iconColor?: string | boolean | undefined;
6080
6080
  } & {
6081
6081
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
6082
6082
  }, {
@@ -6180,13 +6180,13 @@ export declare const VSelect: {
6180
6180
  rounded?: string | number | boolean | undefined;
6181
6181
  baseColor?: string | undefined;
6182
6182
  bgColor?: string | undefined;
6183
+ iconColor?: string | boolean | undefined;
6183
6184
  appendInnerIcon?: IconValue | undefined;
6184
6185
  prependInnerIcon?: IconValue | undefined;
6185
6186
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
6186
6187
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
6187
6188
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
6188
6189
  centerAffix?: boolean | undefined;
6189
- iconColor?: string | boolean | undefined;
6190
6190
  } & {
6191
6191
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
6192
6192
  }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
@@ -6195,7 +6195,7 @@ export declare const VSelect: {
6195
6195
  }> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
6196
6196
  modelValue?: unknown;
6197
6197
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
6198
- }, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "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}`> & {
6198
+ }, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
6199
6199
  _allExposed: {
6200
6200
  reset: () => Promise<void>;
6201
6201
  resetValidation: () => Promise<void>;
@@ -6215,7 +6215,7 @@ export declare const VSelect: {
6215
6215
  'update:focused': (focused: boolean) => true;
6216
6216
  'update:modelValue': (value: any) => true;
6217
6217
  'update:menu': (ue: boolean) => true;
6218
- }, "multiple" | "$children" | "v-slots" | "modelValue" | "items" | "itemValue" | "returnObject" | "update:modelValue" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "v-slot:label" | "v-slot:message" | "v-slot:details" | "v-slot:item" | "itemTitle" | "itemProps" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {
6218
+ }, "multiple" | "$children" | "v-slots" | "modelValue" | "items" | "itemValue" | "returnObject" | "update:modelValue" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "v-slot:label" | "v-slot:message" | "v-slot:details" | "v-slot:item" | "v-slot:divider" | "v-slot:subheader" | "itemTitle" | "itemProps" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {
6219
6219
  flat: boolean;
6220
6220
  reverse: boolean;
6221
6221
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
@@ -6292,6 +6292,14 @@ export declare const VSelect: {
6292
6292
  item: ListItem<unknown>;
6293
6293
  index: number;
6294
6294
  }) => import("vue").VNode[];
6295
+ subheader: (arg: {
6296
+ props: Record<string, unknown>;
6297
+ index: number;
6298
+ }) => import("vue").VNode[];
6299
+ divider: (arg: {
6300
+ props: Record<string, unknown>;
6301
+ index: number;
6302
+ }) => import("vue").VNode[];
6295
6303
  'prepend-item': () => import("vue").VNode[];
6296
6304
  'append-item': () => import("vue").VNode[];
6297
6305
  'no-data': () => import("vue").VNode[];
@@ -6370,6 +6378,7 @@ export declare const VSelect: {
6370
6378
  bgColor?: string | undefined;
6371
6379
  prependIcon?: IconValue | undefined;
6372
6380
  appendIcon?: IconValue | undefined;
6381
+ iconColor?: string | boolean | undefined;
6373
6382
  prependInnerIcon?: IconValue | undefined;
6374
6383
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
6375
6384
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
@@ -6377,7 +6386,6 @@ export declare const VSelect: {
6377
6386
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
6378
6387
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
6379
6388
  centerAffix?: boolean | undefined;
6380
- iconColor?: string | boolean | undefined;
6381
6389
  hint?: string | undefined;
6382
6390
  hideDetails?: boolean | "auto" | undefined;
6383
6391
  suffix?: string | undefined;
@@ -6851,6 +6859,7 @@ export declare const VSelect: {
6851
6859
  bgColor?: string | undefined;
6852
6860
  prependIcon?: IconValue | undefined;
6853
6861
  appendIcon?: IconValue | undefined;
6862
+ iconColor?: string | boolean | undefined;
6854
6863
  appendInnerIcon?: IconValue | undefined;
6855
6864
  prependInnerIcon?: IconValue | undefined;
6856
6865
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
@@ -6859,7 +6868,6 @@ export declare const VSelect: {
6859
6868
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
6860
6869
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
6861
6870
  centerAffix?: boolean | undefined;
6862
- iconColor?: string | boolean | undefined;
6863
6871
  hint?: string | undefined;
6864
6872
  hideDetails?: boolean | "auto" | undefined;
6865
6873
  suffix?: string | undefined;
@@ -7003,6 +7011,7 @@ export declare const VSelect: {
7003
7011
  bgColor?: string | undefined;
7004
7012
  prependIcon?: IconValue | undefined;
7005
7013
  appendIcon?: IconValue | undefined;
7014
+ iconColor?: string | boolean | undefined;
7006
7015
  appendInnerIcon?: IconValue | undefined;
7007
7016
  prependInnerIcon?: IconValue | undefined;
7008
7017
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
@@ -7011,7 +7020,6 @@ export declare const VSelect: {
7011
7020
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
7012
7021
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
7013
7022
  centerAffix?: boolean | undefined;
7014
- iconColor?: string | boolean | undefined;
7015
7023
  hint?: string | undefined;
7016
7024
  hideDetails?: boolean | "auto" | undefined;
7017
7025
  suffix?: string | undefined;
@@ -7126,9 +7134,9 @@ export declare const VSelect: {
7126
7134
  baseColor?: string | undefined;
7127
7135
  prependIcon?: IconValue | undefined;
7128
7136
  appendIcon?: IconValue | undefined;
7137
+ iconColor?: string | boolean | undefined;
7129
7138
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
7130
7139
  'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
7131
- iconColor?: string | boolean | undefined;
7132
7140
  hint?: string | undefined;
7133
7141
  hideDetails?: boolean | "auto" | undefined;
7134
7142
  } & 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 +7190,9 @@ export declare const VSelect: {
7182
7190
  baseColor?: string | undefined;
7183
7191
  prependIcon?: IconValue | undefined;
7184
7192
  appendIcon?: IconValue | undefined;
7193
+ iconColor?: string | boolean | undefined;
7185
7194
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
7186
7195
  'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
7187
- iconColor?: string | boolean | undefined;
7188
7196
  hint?: string | undefined;
7189
7197
  hideDetails?: boolean | "auto" | undefined;
7190
7198
  } & {}, {
@@ -7285,9 +7293,9 @@ export declare const VSelect: {
7285
7293
  baseColor?: string | undefined;
7286
7294
  prependIcon?: IconValue | undefined;
7287
7295
  appendIcon?: IconValue | undefined;
7296
+ iconColor?: string | boolean | undefined;
7288
7297
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
7289
7298
  'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
7290
- iconColor?: string | boolean | undefined;
7291
7299
  hint?: string | undefined;
7292
7300
  hideDetails?: boolean | "auto" | undefined;
7293
7301
  } & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
@@ -7299,7 +7307,7 @@ export declare const VSelect: {
7299
7307
  }> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
7300
7308
  modelValue?: unknown;
7301
7309
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
7302
- }, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "iconColor" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
7310
+ }, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "iconColor" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
7303
7311
  $: import("vue").ComponentInternalInstance;
7304
7312
  $data: {};
7305
7313
  $props: Partial<{
@@ -7346,13 +7354,13 @@ export declare const VSelect: {
7346
7354
  rounded?: string | number | boolean | undefined;
7347
7355
  baseColor?: string | undefined;
7348
7356
  bgColor?: string | undefined;
7357
+ iconColor?: string | boolean | undefined;
7349
7358
  appendInnerIcon?: IconValue | undefined;
7350
7359
  prependInnerIcon?: IconValue | undefined;
7351
7360
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
7352
7361
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
7353
7362
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
7354
7363
  centerAffix?: boolean | undefined;
7355
- iconColor?: string | boolean | undefined;
7356
7364
  } & 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
7365
  $attrs: {
7358
7366
  [x: string]: unknown;
@@ -7405,13 +7413,13 @@ export declare const VSelect: {
7405
7413
  rounded?: string | number | boolean | undefined;
7406
7414
  baseColor?: string | undefined;
7407
7415
  bgColor?: string | undefined;
7416
+ iconColor?: string | boolean | undefined;
7408
7417
  appendInnerIcon?: IconValue | undefined;
7409
7418
  prependInnerIcon?: IconValue | undefined;
7410
7419
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
7411
7420
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
7412
7421
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
7413
7422
  centerAffix?: boolean | undefined;
7414
- iconColor?: string | boolean | undefined;
7415
7423
  } & {
7416
7424
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
7417
7425
  }, {
@@ -7515,13 +7523,13 @@ export declare const VSelect: {
7515
7523
  rounded?: string | number | boolean | undefined;
7516
7524
  baseColor?: string | undefined;
7517
7525
  bgColor?: string | undefined;
7526
+ iconColor?: string | boolean | undefined;
7518
7527
  appendInnerIcon?: IconValue | undefined;
7519
7528
  prependInnerIcon?: IconValue | undefined;
7520
7529
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
7521
7530
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
7522
7531
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
7523
7532
  centerAffix?: boolean | undefined;
7524
- iconColor?: string | boolean | undefined;
7525
7533
  } & {
7526
7534
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
7527
7535
  }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
@@ -7530,7 +7538,7 @@ export declare const VSelect: {
7530
7538
  }> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
7531
7539
  modelValue?: unknown;
7532
7540
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
7533
- }, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "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}`> & {
7541
+ }, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
7534
7542
  _allExposed: {
7535
7543
  reset: () => Promise<void>;
7536
7544
  resetValidation: () => Promise<void>;
@@ -7698,6 +7706,7 @@ export declare const VSelect: {
7698
7706
  bgColor?: string | undefined;
7699
7707
  prependIcon?: IconValue | undefined;
7700
7708
  appendIcon?: IconValue | undefined;
7709
+ iconColor?: string | boolean | undefined;
7701
7710
  appendInnerIcon?: IconValue | undefined;
7702
7711
  prependInnerIcon?: IconValue | undefined;
7703
7712
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
@@ -7706,7 +7715,6 @@ export declare const VSelect: {
7706
7715
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
7707
7716
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
7708
7717
  centerAffix?: boolean | undefined;
7709
- iconColor?: string | boolean | undefined;
7710
7718
  hint?: string | undefined;
7711
7719
  hideDetails?: boolean | "auto" | undefined;
7712
7720
  suffix?: string | undefined;
@@ -7821,9 +7829,9 @@ export declare const VSelect: {
7821
7829
  baseColor?: string | undefined;
7822
7830
  prependIcon?: IconValue | undefined;
7823
7831
  appendIcon?: IconValue | undefined;
7832
+ iconColor?: string | boolean | undefined;
7824
7833
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
7825
7834
  'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
7826
- iconColor?: string | boolean | undefined;
7827
7835
  hint?: string | undefined;
7828
7836
  hideDetails?: boolean | "auto" | undefined;
7829
7837
  } & 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 +7885,9 @@ export declare const VSelect: {
7877
7885
  baseColor?: string | undefined;
7878
7886
  prependIcon?: IconValue | undefined;
7879
7887
  appendIcon?: IconValue | undefined;
7888
+ iconColor?: string | boolean | undefined;
7880
7889
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
7881
7890
  'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
7882
- iconColor?: string | boolean | undefined;
7883
7891
  hint?: string | undefined;
7884
7892
  hideDetails?: boolean | "auto" | undefined;
7885
7893
  } & {}, {
@@ -7980,9 +7988,9 @@ export declare const VSelect: {
7980
7988
  baseColor?: string | undefined;
7981
7989
  prependIcon?: IconValue | undefined;
7982
7990
  appendIcon?: IconValue | undefined;
7991
+ iconColor?: string | boolean | undefined;
7983
7992
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
7984
7993
  'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
7985
- iconColor?: string | boolean | undefined;
7986
7994
  hint?: string | undefined;
7987
7995
  hideDetails?: boolean | "auto" | undefined;
7988
7996
  } & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
@@ -7994,7 +8002,7 @@ export declare const VSelect: {
7994
8002
  }> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
7995
8003
  modelValue?: unknown;
7996
8004
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
7997
- }, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "iconColor" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
8005
+ }, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "iconColor" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
7998
8006
  $: import("vue").ComponentInternalInstance;
7999
8007
  $data: {};
8000
8008
  $props: Partial<{
@@ -8041,13 +8049,13 @@ export declare const VSelect: {
8041
8049
  rounded?: string | number | boolean | undefined;
8042
8050
  baseColor?: string | undefined;
8043
8051
  bgColor?: string | undefined;
8052
+ iconColor?: string | boolean | undefined;
8044
8053
  appendInnerIcon?: IconValue | undefined;
8045
8054
  prependInnerIcon?: IconValue | undefined;
8046
8055
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
8047
8056
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
8048
8057
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
8049
8058
  centerAffix?: boolean | undefined;
8050
- iconColor?: string | boolean | undefined;
8051
8059
  } & 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
8060
  $attrs: {
8053
8061
  [x: string]: unknown;
@@ -8100,13 +8108,13 @@ export declare const VSelect: {
8100
8108
  rounded?: string | number | boolean | undefined;
8101
8109
  baseColor?: string | undefined;
8102
8110
  bgColor?: string | undefined;
8111
+ iconColor?: string | boolean | undefined;
8103
8112
  appendInnerIcon?: IconValue | undefined;
8104
8113
  prependInnerIcon?: IconValue | undefined;
8105
8114
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
8106
8115
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
8107
8116
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
8108
8117
  centerAffix?: boolean | undefined;
8109
- iconColor?: string | boolean | undefined;
8110
8118
  } & {
8111
8119
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
8112
8120
  }, {
@@ -8210,13 +8218,13 @@ export declare const VSelect: {
8210
8218
  rounded?: string | number | boolean | undefined;
8211
8219
  baseColor?: string | undefined;
8212
8220
  bgColor?: string | undefined;
8221
+ iconColor?: string | boolean | undefined;
8213
8222
  appendInnerIcon?: IconValue | undefined;
8214
8223
  prependInnerIcon?: IconValue | undefined;
8215
8224
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
8216
8225
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
8217
8226
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
8218
8227
  centerAffix?: boolean | undefined;
8219
- iconColor?: string | boolean | undefined;
8220
8228
  } & {
8221
8229
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
8222
8230
  }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
@@ -8225,7 +8233,7 @@ export declare const VSelect: {
8225
8233
  }> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
8226
8234
  modelValue?: unknown;
8227
8235
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
8228
- }, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "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}`> & {
8236
+ }, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
8229
8237
  _allExposed: {
8230
8238
  reset: () => Promise<void>;
8231
8239
  resetValidation: () => Promise<void>;
@@ -8236,7 +8244,7 @@ export declare const VSelect: {
8236
8244
  controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
8237
8245
  fieldIconColor: import("vue").ComputedRef<string | undefined>;
8238
8246
  } | {};
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}`> & {
8247
+ }> & {} & import("vue").ComponentCustomProperties & {}, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "loading" | "label" | "prefix" | "role" | "class" | "theme" | "placeholder" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "counter" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:append" | "onClick:prepend" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "suffix" | "counterValue" | "modelModifiers" | "onClick:control" | "onMousedown:control" | ("flat" | "reverse" | "variant" | "type" | "error" | "active" | "direction" | "style" | "autofocus" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "persistentPlaceholder" | "persistentCounter") | "v-slot:counter">, `$${any}`> & {
8240
8248
  _allExposed: (HTMLInputElement & Omit<Omit<{
8241
8249
  $: import("vue").ComponentInternalInstance;
8242
8250
  $data: {};
@@ -8287,9 +8295,9 @@ export declare const VSelect: {
8287
8295
  baseColor?: string | undefined;
8288
8296
  prependIcon?: IconValue | undefined;
8289
8297
  appendIcon?: IconValue | undefined;
8298
+ iconColor?: string | boolean | undefined;
8290
8299
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
8291
8300
  'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
8292
- iconColor?: string | boolean | undefined;
8293
8301
  hint?: string | undefined;
8294
8302
  hideDetails?: boolean | "auto" | undefined;
8295
8303
  } & 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 +8351,9 @@ export declare const VSelect: {
8343
8351
  baseColor?: string | undefined;
8344
8352
  prependIcon?: IconValue | undefined;
8345
8353
  appendIcon?: IconValue | undefined;
8354
+ iconColor?: string | boolean | undefined;
8346
8355
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
8347
8356
  'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
8348
- iconColor?: string | boolean | undefined;
8349
8357
  hint?: string | undefined;
8350
8358
  hideDetails?: boolean | "auto" | undefined;
8351
8359
  } & {}, {
@@ -8446,9 +8454,9 @@ export declare const VSelect: {
8446
8454
  baseColor?: string | undefined;
8447
8455
  prependIcon?: IconValue | undefined;
8448
8456
  appendIcon?: IconValue | undefined;
8457
+ iconColor?: string | boolean | undefined;
8449
8458
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
8450
8459
  'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
8451
- iconColor?: string | boolean | undefined;
8452
8460
  hint?: string | undefined;
8453
8461
  hideDetails?: boolean | "auto" | undefined;
8454
8462
  } & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
@@ -8460,7 +8468,7 @@ export declare const VSelect: {
8460
8468
  }> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
8461
8469
  modelValue?: unknown;
8462
8470
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
8463
- }, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "iconColor" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
8471
+ }, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "iconColor" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
8464
8472
  $: import("vue").ComponentInternalInstance;
8465
8473
  $data: {};
8466
8474
  $props: Partial<{
@@ -8507,13 +8515,13 @@ export declare const VSelect: {
8507
8515
  rounded?: string | number | boolean | undefined;
8508
8516
  baseColor?: string | undefined;
8509
8517
  bgColor?: string | undefined;
8518
+ iconColor?: string | boolean | undefined;
8510
8519
  appendInnerIcon?: IconValue | undefined;
8511
8520
  prependInnerIcon?: IconValue | undefined;
8512
8521
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
8513
8522
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
8514
8523
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
8515
8524
  centerAffix?: boolean | undefined;
8516
- iconColor?: string | boolean | undefined;
8517
8525
  } & 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
8526
  $attrs: {
8519
8527
  [x: string]: unknown;
@@ -8566,13 +8574,13 @@ export declare const VSelect: {
8566
8574
  rounded?: string | number | boolean | undefined;
8567
8575
  baseColor?: string | undefined;
8568
8576
  bgColor?: string | undefined;
8577
+ iconColor?: string | boolean | undefined;
8569
8578
  appendInnerIcon?: IconValue | undefined;
8570
8579
  prependInnerIcon?: IconValue | undefined;
8571
8580
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
8572
8581
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
8573
8582
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
8574
8583
  centerAffix?: boolean | undefined;
8575
- iconColor?: string | boolean | undefined;
8576
8584
  } & {
8577
8585
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
8578
8586
  }, {
@@ -8676,13 +8684,13 @@ export declare const VSelect: {
8676
8684
  rounded?: string | number | boolean | undefined;
8677
8685
  baseColor?: string | undefined;
8678
8686
  bgColor?: string | undefined;
8687
+ iconColor?: string | boolean | undefined;
8679
8688
  appendInnerIcon?: IconValue | undefined;
8680
8689
  prependInnerIcon?: IconValue | undefined;
8681
8690
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
8682
8691
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
8683
8692
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
8684
8693
  centerAffix?: boolean | undefined;
8685
- iconColor?: string | boolean | undefined;
8686
8694
  } & {
8687
8695
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
8688
8696
  }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
@@ -8691,7 +8699,7 @@ export declare const VSelect: {
8691
8699
  }> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
8692
8700
  modelValue?: unknown;
8693
8701
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
8694
- }, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "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}`> & {
8702
+ }, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
8695
8703
  _allExposed: {
8696
8704
  reset: () => Promise<void>;
8697
8705
  resetValidation: () => Promise<void>;
@@ -8827,6 +8835,7 @@ export declare const VSelect: {
8827
8835
  bgColor?: string | undefined;
8828
8836
  prependIcon?: IconValue | undefined;
8829
8837
  appendIcon?: IconValue | undefined;
8838
+ iconColor?: string | boolean | undefined;
8830
8839
  prependInnerIcon?: IconValue | undefined;
8831
8840
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
8832
8841
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
@@ -8834,7 +8843,6 @@ export declare const VSelect: {
8834
8843
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
8835
8844
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
8836
8845
  centerAffix?: boolean | undefined;
8837
- iconColor?: string | boolean | undefined;
8838
8846
  hint?: string | undefined;
8839
8847
  hideDetails?: boolean | "auto" | undefined;
8840
8848
  suffix?: string | undefined;
@@ -9308,6 +9316,7 @@ export declare const VSelect: {
9308
9316
  bgColor?: string | undefined;
9309
9317
  prependIcon?: IconValue | undefined;
9310
9318
  appendIcon?: IconValue | undefined;
9319
+ iconColor?: string | boolean | undefined;
9311
9320
  appendInnerIcon?: IconValue | undefined;
9312
9321
  prependInnerIcon?: IconValue | undefined;
9313
9322
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
@@ -9316,7 +9325,6 @@ export declare const VSelect: {
9316
9325
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
9317
9326
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
9318
9327
  centerAffix?: boolean | undefined;
9319
- iconColor?: string | boolean | undefined;
9320
9328
  hint?: string | undefined;
9321
9329
  hideDetails?: boolean | "auto" | undefined;
9322
9330
  suffix?: string | undefined;
@@ -9460,6 +9468,7 @@ export declare const VSelect: {
9460
9468
  bgColor?: string | undefined;
9461
9469
  prependIcon?: IconValue | undefined;
9462
9470
  appendIcon?: IconValue | undefined;
9471
+ iconColor?: string | boolean | undefined;
9463
9472
  appendInnerIcon?: IconValue | undefined;
9464
9473
  prependInnerIcon?: IconValue | undefined;
9465
9474
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
@@ -9468,7 +9477,6 @@ export declare const VSelect: {
9468
9477
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
9469
9478
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
9470
9479
  centerAffix?: boolean | undefined;
9471
- iconColor?: string | boolean | undefined;
9472
9480
  hint?: string | undefined;
9473
9481
  hideDetails?: boolean | "auto" | undefined;
9474
9482
  suffix?: string | undefined;
@@ -9583,9 +9591,9 @@ export declare const VSelect: {
9583
9591
  baseColor?: string | undefined;
9584
9592
  prependIcon?: IconValue | undefined;
9585
9593
  appendIcon?: IconValue | undefined;
9594
+ iconColor?: string | boolean | undefined;
9586
9595
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
9587
9596
  'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
9588
- iconColor?: string | boolean | undefined;
9589
9597
  hint?: string | undefined;
9590
9598
  hideDetails?: boolean | "auto" | undefined;
9591
9599
  } & 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 +9647,9 @@ export declare const VSelect: {
9639
9647
  baseColor?: string | undefined;
9640
9648
  prependIcon?: IconValue | undefined;
9641
9649
  appendIcon?: IconValue | undefined;
9650
+ iconColor?: string | boolean | undefined;
9642
9651
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
9643
9652
  'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
9644
- iconColor?: string | boolean | undefined;
9645
9653
  hint?: string | undefined;
9646
9654
  hideDetails?: boolean | "auto" | undefined;
9647
9655
  } & {}, {
@@ -9742,9 +9750,9 @@ export declare const VSelect: {
9742
9750
  baseColor?: string | undefined;
9743
9751
  prependIcon?: IconValue | undefined;
9744
9752
  appendIcon?: IconValue | undefined;
9753
+ iconColor?: string | boolean | undefined;
9745
9754
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
9746
9755
  'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
9747
- iconColor?: string | boolean | undefined;
9748
9756
  hint?: string | undefined;
9749
9757
  hideDetails?: boolean | "auto" | undefined;
9750
9758
  } & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
@@ -9756,7 +9764,7 @@ export declare const VSelect: {
9756
9764
  }> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
9757
9765
  modelValue?: unknown;
9758
9766
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
9759
- }, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "iconColor" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
9767
+ }, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "iconColor" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
9760
9768
  $: import("vue").ComponentInternalInstance;
9761
9769
  $data: {};
9762
9770
  $props: Partial<{
@@ -9803,13 +9811,13 @@ export declare const VSelect: {
9803
9811
  rounded?: string | number | boolean | undefined;
9804
9812
  baseColor?: string | undefined;
9805
9813
  bgColor?: string | undefined;
9814
+ iconColor?: string | boolean | undefined;
9806
9815
  appendInnerIcon?: IconValue | undefined;
9807
9816
  prependInnerIcon?: IconValue | undefined;
9808
9817
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
9809
9818
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
9810
9819
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
9811
9820
  centerAffix?: boolean | undefined;
9812
- iconColor?: string | boolean | undefined;
9813
9821
  } & 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
9822
  $attrs: {
9815
9823
  [x: string]: unknown;
@@ -9862,13 +9870,13 @@ export declare const VSelect: {
9862
9870
  rounded?: string | number | boolean | undefined;
9863
9871
  baseColor?: string | undefined;
9864
9872
  bgColor?: string | undefined;
9873
+ iconColor?: string | boolean | undefined;
9865
9874
  appendInnerIcon?: IconValue | undefined;
9866
9875
  prependInnerIcon?: IconValue | undefined;
9867
9876
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
9868
9877
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
9869
9878
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
9870
9879
  centerAffix?: boolean | undefined;
9871
- iconColor?: string | boolean | undefined;
9872
9880
  } & {
9873
9881
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
9874
9882
  }, {
@@ -9972,13 +9980,13 @@ export declare const VSelect: {
9972
9980
  rounded?: string | number | boolean | undefined;
9973
9981
  baseColor?: string | undefined;
9974
9982
  bgColor?: string | undefined;
9983
+ iconColor?: string | boolean | undefined;
9975
9984
  appendInnerIcon?: IconValue | undefined;
9976
9985
  prependInnerIcon?: IconValue | undefined;
9977
9986
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
9978
9987
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
9979
9988
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
9980
9989
  centerAffix?: boolean | undefined;
9981
- iconColor?: string | boolean | undefined;
9982
9990
  } & {
9983
9991
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
9984
9992
  }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
@@ -9987,7 +9995,7 @@ export declare const VSelect: {
9987
9995
  }> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
9988
9996
  modelValue?: unknown;
9989
9997
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
9990
- }, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "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}`> & {
9998
+ }, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
9991
9999
  _allExposed: {
9992
10000
  reset: () => Promise<void>;
9993
10001
  resetValidation: () => Promise<void>;
@@ -10155,6 +10163,7 @@ export declare const VSelect: {
10155
10163
  bgColor?: string | undefined;
10156
10164
  prependIcon?: IconValue | undefined;
10157
10165
  appendIcon?: IconValue | undefined;
10166
+ iconColor?: string | boolean | undefined;
10158
10167
  appendInnerIcon?: IconValue | undefined;
10159
10168
  prependInnerIcon?: IconValue | undefined;
10160
10169
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
@@ -10163,7 +10172,6 @@ export declare const VSelect: {
10163
10172
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
10164
10173
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
10165
10174
  centerAffix?: boolean | undefined;
10166
- iconColor?: string | boolean | undefined;
10167
10175
  hint?: string | undefined;
10168
10176
  hideDetails?: boolean | "auto" | undefined;
10169
10177
  suffix?: string | undefined;
@@ -10278,9 +10286,9 @@ export declare const VSelect: {
10278
10286
  baseColor?: string | undefined;
10279
10287
  prependIcon?: IconValue | undefined;
10280
10288
  appendIcon?: IconValue | undefined;
10289
+ iconColor?: string | boolean | undefined;
10281
10290
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
10282
10291
  'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
10283
- iconColor?: string | boolean | undefined;
10284
10292
  hint?: string | undefined;
10285
10293
  hideDetails?: boolean | "auto" | undefined;
10286
10294
  } & 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 +10342,9 @@ export declare const VSelect: {
10334
10342
  baseColor?: string | undefined;
10335
10343
  prependIcon?: IconValue | undefined;
10336
10344
  appendIcon?: IconValue | undefined;
10345
+ iconColor?: string | boolean | undefined;
10337
10346
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
10338
10347
  'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
10339
- iconColor?: string | boolean | undefined;
10340
10348
  hint?: string | undefined;
10341
10349
  hideDetails?: boolean | "auto" | undefined;
10342
10350
  } & {}, {
@@ -10437,9 +10445,9 @@ export declare const VSelect: {
10437
10445
  baseColor?: string | undefined;
10438
10446
  prependIcon?: IconValue | undefined;
10439
10447
  appendIcon?: IconValue | undefined;
10448
+ iconColor?: string | boolean | undefined;
10440
10449
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
10441
10450
  'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
10442
- iconColor?: string | boolean | undefined;
10443
10451
  hint?: string | undefined;
10444
10452
  hideDetails?: boolean | "auto" | undefined;
10445
10453
  } & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
@@ -10451,7 +10459,7 @@ export declare const VSelect: {
10451
10459
  }> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
10452
10460
  modelValue?: unknown;
10453
10461
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
10454
- }, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "iconColor" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
10462
+ }, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "iconColor" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
10455
10463
  $: import("vue").ComponentInternalInstance;
10456
10464
  $data: {};
10457
10465
  $props: Partial<{
@@ -10498,13 +10506,13 @@ export declare const VSelect: {
10498
10506
  rounded?: string | number | boolean | undefined;
10499
10507
  baseColor?: string | undefined;
10500
10508
  bgColor?: string | undefined;
10509
+ iconColor?: string | boolean | undefined;
10501
10510
  appendInnerIcon?: IconValue | undefined;
10502
10511
  prependInnerIcon?: IconValue | undefined;
10503
10512
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
10504
10513
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
10505
10514
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
10506
10515
  centerAffix?: boolean | undefined;
10507
- iconColor?: string | boolean | undefined;
10508
10516
  } & 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
10517
  $attrs: {
10510
10518
  [x: string]: unknown;
@@ -10557,13 +10565,13 @@ export declare const VSelect: {
10557
10565
  rounded?: string | number | boolean | undefined;
10558
10566
  baseColor?: string | undefined;
10559
10567
  bgColor?: string | undefined;
10568
+ iconColor?: string | boolean | undefined;
10560
10569
  appendInnerIcon?: IconValue | undefined;
10561
10570
  prependInnerIcon?: IconValue | undefined;
10562
10571
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
10563
10572
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
10564
10573
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
10565
10574
  centerAffix?: boolean | undefined;
10566
- iconColor?: string | boolean | undefined;
10567
10575
  } & {
10568
10576
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
10569
10577
  }, {
@@ -10667,13 +10675,13 @@ export declare const VSelect: {
10667
10675
  rounded?: string | number | boolean | undefined;
10668
10676
  baseColor?: string | undefined;
10669
10677
  bgColor?: string | undefined;
10678
+ iconColor?: string | boolean | undefined;
10670
10679
  appendInnerIcon?: IconValue | undefined;
10671
10680
  prependInnerIcon?: IconValue | undefined;
10672
10681
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
10673
10682
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
10674
10683
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
10675
10684
  centerAffix?: boolean | undefined;
10676
- iconColor?: string | boolean | undefined;
10677
10685
  } & {
10678
10686
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
10679
10687
  }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
@@ -10682,7 +10690,7 @@ export declare const VSelect: {
10682
10690
  }> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
10683
10691
  modelValue?: unknown;
10684
10692
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
10685
- }, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "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}`> & {
10693
+ }, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
10686
10694
  _allExposed: {
10687
10695
  reset: () => Promise<void>;
10688
10696
  resetValidation: () => Promise<void>;
@@ -10693,7 +10701,7 @@ export declare const VSelect: {
10693
10701
  controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
10694
10702
  fieldIconColor: import("vue").ComputedRef<string | undefined>;
10695
10703
  } | {};
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}`> & {
10704
+ }> & {} & import("vue").ComponentCustomProperties & {}, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "loading" | "label" | "prefix" | "role" | "class" | "theme" | "placeholder" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "counter" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:append" | "onClick:prepend" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "suffix" | "counterValue" | "modelModifiers" | "onClick:control" | "onMousedown:control" | ("flat" | "reverse" | "variant" | "type" | "error" | "active" | "direction" | "style" | "autofocus" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "persistentPlaceholder" | "persistentCounter") | "v-slot:counter">, `$${any}`> & {
10697
10705
  _allExposed: (HTMLInputElement & Omit<Omit<{
10698
10706
  $: import("vue").ComponentInternalInstance;
10699
10707
  $data: {};
@@ -10744,9 +10752,9 @@ export declare const VSelect: {
10744
10752
  baseColor?: string | undefined;
10745
10753
  prependIcon?: IconValue | undefined;
10746
10754
  appendIcon?: IconValue | undefined;
10755
+ iconColor?: string | boolean | undefined;
10747
10756
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
10748
10757
  'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
10749
- iconColor?: string | boolean | undefined;
10750
10758
  hint?: string | undefined;
10751
10759
  hideDetails?: boolean | "auto" | undefined;
10752
10760
  } & 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 +10808,9 @@ export declare const VSelect: {
10800
10808
  baseColor?: string | undefined;
10801
10809
  prependIcon?: IconValue | undefined;
10802
10810
  appendIcon?: IconValue | undefined;
10811
+ iconColor?: string | boolean | undefined;
10803
10812
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
10804
10813
  'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
10805
- iconColor?: string | boolean | undefined;
10806
10814
  hint?: string | undefined;
10807
10815
  hideDetails?: boolean | "auto" | undefined;
10808
10816
  } & {}, {
@@ -10903,9 +10911,9 @@ export declare const VSelect: {
10903
10911
  baseColor?: string | undefined;
10904
10912
  prependIcon?: IconValue | undefined;
10905
10913
  appendIcon?: IconValue | undefined;
10914
+ iconColor?: string | boolean | undefined;
10906
10915
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
10907
10916
  'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
10908
- iconColor?: string | boolean | undefined;
10909
10917
  hint?: string | undefined;
10910
10918
  hideDetails?: boolean | "auto" | undefined;
10911
10919
  } & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
@@ -10917,7 +10925,7 @@ export declare const VSelect: {
10917
10925
  }> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
10918
10926
  modelValue?: unknown;
10919
10927
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
10920
- }, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "iconColor" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
10928
+ }, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "iconColor" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
10921
10929
  $: import("vue").ComponentInternalInstance;
10922
10930
  $data: {};
10923
10931
  $props: Partial<{
@@ -10964,13 +10972,13 @@ export declare const VSelect: {
10964
10972
  rounded?: string | number | boolean | undefined;
10965
10973
  baseColor?: string | undefined;
10966
10974
  bgColor?: string | undefined;
10975
+ iconColor?: string | boolean | undefined;
10967
10976
  appendInnerIcon?: IconValue | undefined;
10968
10977
  prependInnerIcon?: IconValue | undefined;
10969
10978
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
10970
10979
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
10971
10980
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
10972
10981
  centerAffix?: boolean | undefined;
10973
- iconColor?: string | boolean | undefined;
10974
10982
  } & 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
10983
  $attrs: {
10976
10984
  [x: string]: unknown;
@@ -11023,13 +11031,13 @@ export declare const VSelect: {
11023
11031
  rounded?: string | number | boolean | undefined;
11024
11032
  baseColor?: string | undefined;
11025
11033
  bgColor?: string | undefined;
11034
+ iconColor?: string | boolean | undefined;
11026
11035
  appendInnerIcon?: IconValue | undefined;
11027
11036
  prependInnerIcon?: IconValue | undefined;
11028
11037
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
11029
11038
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
11030
11039
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
11031
11040
  centerAffix?: boolean | undefined;
11032
- iconColor?: string | boolean | undefined;
11033
11041
  } & {
11034
11042
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
11035
11043
  }, {
@@ -11133,13 +11141,13 @@ export declare const VSelect: {
11133
11141
  rounded?: string | number | boolean | undefined;
11134
11142
  baseColor?: string | undefined;
11135
11143
  bgColor?: string | undefined;
11144
+ iconColor?: string | boolean | undefined;
11136
11145
  appendInnerIcon?: IconValue | undefined;
11137
11146
  prependInnerIcon?: IconValue | undefined;
11138
11147
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
11139
11148
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
11140
11149
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
11141
11150
  centerAffix?: boolean | undefined;
11142
- iconColor?: string | boolean | undefined;
11143
11151
  } & {
11144
11152
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
11145
11153
  }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
@@ -11148,7 +11156,7 @@ export declare const VSelect: {
11148
11156
  }> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
11149
11157
  modelValue?: unknown;
11150
11158
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
11151
- }, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "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}`> & {
11159
+ }, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
11152
11160
  _allExposed: {
11153
11161
  reset: () => Promise<void>;
11154
11162
  resetValidation: () => Promise<void>;
@@ -11168,7 +11176,7 @@ export declare const VSelect: {
11168
11176
  'update:focused': (focused: boolean) => true;
11169
11177
  'update:modelValue': (value: any) => true;
11170
11178
  'update:menu': (ue: boolean) => true;
11171
- }, "multiple" | "$children" | "v-slots" | "modelValue" | "items" | "itemValue" | "returnObject" | "update:modelValue" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "v-slot:label" | "v-slot:message" | "v-slot:details" | "v-slot:item" | "itemTitle" | "itemProps" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">, string, {
11179
+ }, "multiple" | "$children" | "v-slots" | "modelValue" | "items" | "itemValue" | "returnObject" | "update:modelValue" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "v-slot:label" | "v-slot:message" | "v-slot:details" | "v-slot:item" | "v-slot:divider" | "v-slot:subheader" | "itemTitle" | "itemProps" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">, string, {
11172
11180
  flat: boolean;
11173
11181
  reverse: boolean;
11174
11182
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
@@ -11245,6 +11253,14 @@ export declare const VSelect: {
11245
11253
  item: ListItem<unknown>;
11246
11254
  index: number;
11247
11255
  }) => import("vue").VNode[];
11256
+ subheader: (arg: {
11257
+ props: Record<string, unknown>;
11258
+ index: number;
11259
+ }) => import("vue").VNode[];
11260
+ divider: (arg: {
11261
+ props: Record<string, unknown>;
11262
+ index: number;
11263
+ }) => import("vue").VNode[];
11248
11264
  'prepend-item': () => import("vue").VNode[];
11249
11265
  'append-item': () => import("vue").VNode[];
11250
11266
  'no-data': () => import("vue").VNode[];
@@ -11272,6 +11288,14 @@ export declare const VSelect: {
11272
11288
  item: ListItem<Item>;
11273
11289
  index: number;
11274
11290
  };
11291
+ subheader: {
11292
+ props: Record<string, unknown>;
11293
+ index: number;
11294
+ };
11295
+ divider: {
11296
+ props: Record<string, unknown>;
11297
+ index: number;
11298
+ };
11275
11299
  "prepend-item": never;
11276
11300
  "append-item": never;
11277
11301
  "no-data": never;
@@ -11373,6 +11397,7 @@ export declare const VSelect: {
11373
11397
  bgColor: StringConstructor;
11374
11398
  prependIcon: PropType<IconValue>;
11375
11399
  appendIcon: PropType<IconValue>;
11400
+ iconColor: (StringConstructor | BooleanConstructor)[];
11376
11401
  clearIcon: {
11377
11402
  type: PropType<IconValue>;
11378
11403
  default: string;
@@ -11388,7 +11413,6 @@ export declare const VSelect: {
11388
11413
  default: undefined;
11389
11414
  };
11390
11415
  glow: BooleanConstructor;
11391
- iconColor: (StringConstructor | BooleanConstructor)[];
11392
11416
  hideSpinButtons: BooleanConstructor;
11393
11417
  hint: StringConstructor;
11394
11418
  persistentHint: BooleanConstructor;
@@ -11555,6 +11579,7 @@ export declare const VSelect: {
11555
11579
  bgColor: StringConstructor;
11556
11580
  prependIcon: PropType<IconValue>;
11557
11581
  appendIcon: PropType<IconValue>;
11582
+ iconColor: (StringConstructor | BooleanConstructor)[];
11558
11583
  clearIcon: {
11559
11584
  type: PropType<IconValue>;
11560
11585
  default: string;
@@ -11570,7 +11595,6 @@ export declare const VSelect: {
11570
11595
  default: undefined;
11571
11596
  };
11572
11597
  glow: BooleanConstructor;
11573
- iconColor: (StringConstructor | BooleanConstructor)[];
11574
11598
  hideSpinButtons: BooleanConstructor;
11575
11599
  hint: StringConstructor;
11576
11600
  persistentHint: BooleanConstructor;