@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
@@ -897,6 +897,7 @@ export declare const VDateInput: {
897
897
  appendIcon?: import("../../composables/icons.js").IconValue | undefined;
898
898
  controlHeight?: string | number | undefined;
899
899
  headerColor?: string | undefined;
900
+ iconColor?: string | boolean | undefined;
900
901
  appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
901
902
  prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
902
903
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
@@ -905,7 +906,6 @@ export declare const VDateInput: {
905
906
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
906
907
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
907
908
  centerAffix?: boolean | undefined;
908
- iconColor?: string | boolean | undefined;
909
909
  hint?: string | undefined;
910
910
  hideDetails?: boolean | "auto" | undefined;
911
911
  suffix?: string | undefined;
@@ -1064,6 +1064,7 @@ export declare const VDateInput: {
1064
1064
  bgColor?: string | undefined;
1065
1065
  prependIcon?: import("../../composables/icons.js").IconValue | undefined;
1066
1066
  appendIcon?: import("../../composables/icons.js").IconValue | undefined;
1067
+ iconColor?: string | boolean | undefined;
1067
1068
  appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
1068
1069
  prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
1069
1070
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
@@ -1072,7 +1073,6 @@ export declare const VDateInput: {
1072
1073
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
1073
1074
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
1074
1075
  centerAffix?: boolean | undefined;
1075
- iconColor?: string | boolean | undefined;
1076
1076
  hint?: string | undefined;
1077
1077
  hideDetails?: boolean | "auto" | undefined;
1078
1078
  suffix?: string | undefined;
@@ -1216,6 +1216,7 @@ export declare const VDateInput: {
1216
1216
  bgColor?: string | undefined;
1217
1217
  prependIcon?: import("../../composables/icons.js").IconValue | undefined;
1218
1218
  appendIcon?: import("../../composables/icons.js").IconValue | undefined;
1219
+ iconColor?: string | boolean | undefined;
1219
1220
  appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
1220
1221
  prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
1221
1222
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
@@ -1224,7 +1225,6 @@ export declare const VDateInput: {
1224
1225
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
1225
1226
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
1226
1227
  centerAffix?: boolean | undefined;
1227
- iconColor?: string | boolean | undefined;
1228
1228
  hint?: string | undefined;
1229
1229
  hideDetails?: boolean | "auto" | undefined;
1230
1230
  suffix?: string | undefined;
@@ -1339,9 +1339,9 @@ export declare const VDateInput: {
1339
1339
  baseColor?: string | undefined;
1340
1340
  prependIcon?: import("../../composables/icons.js").IconValue | undefined;
1341
1341
  appendIcon?: import("../../composables/icons.js").IconValue | undefined;
1342
+ iconColor?: string | boolean | undefined;
1342
1343
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
1343
1344
  'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
1344
- iconColor?: string | boolean | undefined;
1345
1345
  hint?: string | undefined;
1346
1346
  hideDetails?: boolean | "auto" | undefined;
1347
1347
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
@@ -1395,9 +1395,9 @@ export declare const VDateInput: {
1395
1395
  baseColor?: string | undefined;
1396
1396
  prependIcon?: import("../../composables/icons.js").IconValue | undefined;
1397
1397
  appendIcon?: import("../../composables/icons.js").IconValue | undefined;
1398
+ iconColor?: string | boolean | undefined;
1398
1399
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
1399
1400
  'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
1400
- iconColor?: string | boolean | undefined;
1401
1401
  hint?: string | undefined;
1402
1402
  hideDetails?: boolean | "auto" | undefined;
1403
1403
  } & {}, {
@@ -1498,9 +1498,9 @@ export declare const VDateInput: {
1498
1498
  baseColor?: string | undefined;
1499
1499
  prependIcon?: import("../../composables/icons.js").IconValue | undefined;
1500
1500
  appendIcon?: import("../../composables/icons.js").IconValue | undefined;
1501
+ iconColor?: string | boolean | undefined;
1501
1502
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
1502
1503
  'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
1503
- iconColor?: string | boolean | undefined;
1504
1504
  hint?: string | undefined;
1505
1505
  hideDetails?: boolean | "auto" | undefined;
1506
1506
  } & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
@@ -1512,7 +1512,7 @@ export declare const VDateInput: {
1512
1512
  }> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
1513
1513
  modelValue?: unknown;
1514
1514
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
1515
- }, import("../../components/VInput/VInput.js").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<{
1515
+ }, import("../../components/VInput/VInput.js").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<{
1516
1516
  $: import("vue").ComponentInternalInstance;
1517
1517
  $data: {};
1518
1518
  $props: Partial<{
@@ -1559,13 +1559,13 @@ export declare const VDateInput: {
1559
1559
  rounded?: string | number | boolean | undefined;
1560
1560
  baseColor?: string | undefined;
1561
1561
  bgColor?: string | undefined;
1562
+ iconColor?: string | boolean | undefined;
1562
1563
  appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
1563
1564
  prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
1564
1565
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
1565
1566
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
1566
1567
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
1567
1568
  centerAffix?: boolean | undefined;
1568
- iconColor?: string | boolean | undefined;
1569
1569
  } & 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">;
1570
1570
  $attrs: {
1571
1571
  [x: string]: unknown;
@@ -1618,13 +1618,13 @@ export declare const VDateInput: {
1618
1618
  rounded?: string | number | boolean | undefined;
1619
1619
  baseColor?: string | undefined;
1620
1620
  bgColor?: string | undefined;
1621
+ iconColor?: string | boolean | undefined;
1621
1622
  appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
1622
1623
  prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
1623
1624
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
1624
1625
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
1625
1626
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
1626
1627
  centerAffix?: boolean | undefined;
1627
- iconColor?: string | boolean | undefined;
1628
1628
  } & {
1629
1629
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
1630
1630
  }, {
@@ -1728,13 +1728,13 @@ export declare const VDateInput: {
1728
1728
  rounded?: string | number | boolean | undefined;
1729
1729
  baseColor?: string | undefined;
1730
1730
  bgColor?: string | undefined;
1731
+ iconColor?: string | boolean | undefined;
1731
1732
  appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
1732
1733
  prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
1733
1734
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
1734
1735
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
1735
1736
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
1736
1737
  centerAffix?: boolean | undefined;
1737
- iconColor?: string | boolean | undefined;
1738
1738
  } & {
1739
1739
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
1740
1740
  }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
@@ -1743,7 +1743,7 @@ export declare const VDateInput: {
1743
1743
  }> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
1744
1744
  modelValue?: unknown;
1745
1745
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
1746
- }, import("../../components/VField/VField.js").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}`> & {
1746
+ }, import("../../components/VField/VField.js").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}`> & {
1747
1747
  _allExposed: {
1748
1748
  reset: () => Promise<void>;
1749
1749
  resetValidation: () => Promise<void>;
@@ -1911,6 +1911,7 @@ export declare const VDateInput: {
1911
1911
  bgColor?: string | undefined;
1912
1912
  prependIcon?: import("../../composables/icons.js").IconValue | undefined;
1913
1913
  appendIcon?: import("../../composables/icons.js").IconValue | undefined;
1914
+ iconColor?: string | boolean | undefined;
1914
1915
  appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
1915
1916
  prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
1916
1917
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
@@ -1919,7 +1920,6 @@ export declare const VDateInput: {
1919
1920
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
1920
1921
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
1921
1922
  centerAffix?: boolean | undefined;
1922
- iconColor?: string | boolean | undefined;
1923
1923
  hint?: string | undefined;
1924
1924
  hideDetails?: boolean | "auto" | undefined;
1925
1925
  suffix?: string | undefined;
@@ -2034,9 +2034,9 @@ export declare const VDateInput: {
2034
2034
  baseColor?: string | undefined;
2035
2035
  prependIcon?: import("../../composables/icons.js").IconValue | undefined;
2036
2036
  appendIcon?: import("../../composables/icons.js").IconValue | undefined;
2037
+ iconColor?: string | boolean | undefined;
2037
2038
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
2038
2039
  'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
2039
- iconColor?: string | boolean | undefined;
2040
2040
  hint?: string | undefined;
2041
2041
  hideDetails?: boolean | "auto" | undefined;
2042
2042
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
@@ -2090,9 +2090,9 @@ export declare const VDateInput: {
2090
2090
  baseColor?: string | undefined;
2091
2091
  prependIcon?: import("../../composables/icons.js").IconValue | undefined;
2092
2092
  appendIcon?: import("../../composables/icons.js").IconValue | undefined;
2093
+ iconColor?: string | boolean | undefined;
2093
2094
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
2094
2095
  'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
2095
- iconColor?: string | boolean | undefined;
2096
2096
  hint?: string | undefined;
2097
2097
  hideDetails?: boolean | "auto" | undefined;
2098
2098
  } & {}, {
@@ -2193,9 +2193,9 @@ export declare const VDateInput: {
2193
2193
  baseColor?: string | undefined;
2194
2194
  prependIcon?: import("../../composables/icons.js").IconValue | undefined;
2195
2195
  appendIcon?: import("../../composables/icons.js").IconValue | undefined;
2196
+ iconColor?: string | boolean | undefined;
2196
2197
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
2197
2198
  'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
2198
- iconColor?: string | boolean | undefined;
2199
2199
  hint?: string | undefined;
2200
2200
  hideDetails?: boolean | "auto" | undefined;
2201
2201
  } & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
@@ -2207,7 +2207,7 @@ export declare const VDateInput: {
2207
2207
  }> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
2208
2208
  modelValue?: unknown;
2209
2209
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
2210
- }, import("../../components/VInput/VInput.js").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<{
2210
+ }, import("../../components/VInput/VInput.js").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<{
2211
2211
  $: import("vue").ComponentInternalInstance;
2212
2212
  $data: {};
2213
2213
  $props: Partial<{
@@ -2254,13 +2254,13 @@ export declare const VDateInput: {
2254
2254
  rounded?: string | number | boolean | undefined;
2255
2255
  baseColor?: string | undefined;
2256
2256
  bgColor?: string | undefined;
2257
+ iconColor?: string | boolean | undefined;
2257
2258
  appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
2258
2259
  prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
2259
2260
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
2260
2261
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
2261
2262
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
2262
2263
  centerAffix?: boolean | undefined;
2263
- iconColor?: string | boolean | undefined;
2264
2264
  } & 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">;
2265
2265
  $attrs: {
2266
2266
  [x: string]: unknown;
@@ -2313,13 +2313,13 @@ export declare const VDateInput: {
2313
2313
  rounded?: string | number | boolean | undefined;
2314
2314
  baseColor?: string | undefined;
2315
2315
  bgColor?: string | undefined;
2316
+ iconColor?: string | boolean | undefined;
2316
2317
  appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
2317
2318
  prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
2318
2319
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
2319
2320
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
2320
2321
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
2321
2322
  centerAffix?: boolean | undefined;
2322
- iconColor?: string | boolean | undefined;
2323
2323
  } & {
2324
2324
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
2325
2325
  }, {
@@ -2423,13 +2423,13 @@ export declare const VDateInput: {
2423
2423
  rounded?: string | number | boolean | undefined;
2424
2424
  baseColor?: string | undefined;
2425
2425
  bgColor?: string | undefined;
2426
+ iconColor?: string | boolean | undefined;
2426
2427
  appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
2427
2428
  prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
2428
2429
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
2429
2430
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
2430
2431
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
2431
2432
  centerAffix?: boolean | undefined;
2432
- iconColor?: string | boolean | undefined;
2433
2433
  } & {
2434
2434
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
2435
2435
  }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
@@ -2438,7 +2438,7 @@ export declare const VDateInput: {
2438
2438
  }> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
2439
2439
  modelValue?: unknown;
2440
2440
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
2441
- }, import("../../components/VField/VField.js").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}`> & {
2441
+ }, import("../../components/VField/VField.js").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}`> & {
2442
2442
  _allExposed: {
2443
2443
  reset: () => Promise<void>;
2444
2444
  resetValidation: () => Promise<void>;
@@ -2449,7 +2449,7 @@ export declare const VDateInput: {
2449
2449
  controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
2450
2450
  fieldIconColor: import("vue").ComputedRef<string | undefined>;
2451
2451
  } | {};
2452
- }> & {} & 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}`> & {
2452
+ }> & {} & 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}`> & {
2453
2453
  _allExposed: (HTMLInputElement & Omit<Omit<{
2454
2454
  $: import("vue").ComponentInternalInstance;
2455
2455
  $data: {};
@@ -2500,9 +2500,9 @@ export declare const VDateInput: {
2500
2500
  baseColor?: string | undefined;
2501
2501
  prependIcon?: import("../../composables/icons.js").IconValue | undefined;
2502
2502
  appendIcon?: import("../../composables/icons.js").IconValue | undefined;
2503
+ iconColor?: string | boolean | undefined;
2503
2504
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
2504
2505
  'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
2505
- iconColor?: string | boolean | undefined;
2506
2506
  hint?: string | undefined;
2507
2507
  hideDetails?: boolean | "auto" | undefined;
2508
2508
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
@@ -2556,9 +2556,9 @@ export declare const VDateInput: {
2556
2556
  baseColor?: string | undefined;
2557
2557
  prependIcon?: import("../../composables/icons.js").IconValue | undefined;
2558
2558
  appendIcon?: import("../../composables/icons.js").IconValue | undefined;
2559
+ iconColor?: string | boolean | undefined;
2559
2560
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
2560
2561
  'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
2561
- iconColor?: string | boolean | undefined;
2562
2562
  hint?: string | undefined;
2563
2563
  hideDetails?: boolean | "auto" | undefined;
2564
2564
  } & {}, {
@@ -2659,9 +2659,9 @@ export declare const VDateInput: {
2659
2659
  baseColor?: string | undefined;
2660
2660
  prependIcon?: import("../../composables/icons.js").IconValue | undefined;
2661
2661
  appendIcon?: import("../../composables/icons.js").IconValue | undefined;
2662
+ iconColor?: string | boolean | undefined;
2662
2663
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
2663
2664
  'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
2664
- iconColor?: string | boolean | undefined;
2665
2665
  hint?: string | undefined;
2666
2666
  hideDetails?: boolean | "auto" | undefined;
2667
2667
  } & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
@@ -2673,7 +2673,7 @@ export declare const VDateInput: {
2673
2673
  }> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
2674
2674
  modelValue?: unknown;
2675
2675
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
2676
- }, import("../../components/VInput/VInput.js").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<{
2676
+ }, import("../../components/VInput/VInput.js").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<{
2677
2677
  $: import("vue").ComponentInternalInstance;
2678
2678
  $data: {};
2679
2679
  $props: Partial<{
@@ -2720,13 +2720,13 @@ export declare const VDateInput: {
2720
2720
  rounded?: string | number | boolean | undefined;
2721
2721
  baseColor?: string | undefined;
2722
2722
  bgColor?: string | undefined;
2723
+ iconColor?: string | boolean | undefined;
2723
2724
  appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
2724
2725
  prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
2725
2726
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
2726
2727
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
2727
2728
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
2728
2729
  centerAffix?: boolean | undefined;
2729
- iconColor?: string | boolean | undefined;
2730
2730
  } & 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">;
2731
2731
  $attrs: {
2732
2732
  [x: string]: unknown;
@@ -2779,13 +2779,13 @@ export declare const VDateInput: {
2779
2779
  rounded?: string | number | boolean | undefined;
2780
2780
  baseColor?: string | undefined;
2781
2781
  bgColor?: string | undefined;
2782
+ iconColor?: string | boolean | undefined;
2782
2783
  appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
2783
2784
  prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
2784
2785
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
2785
2786
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
2786
2787
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
2787
2788
  centerAffix?: boolean | undefined;
2788
- iconColor?: string | boolean | undefined;
2789
2789
  } & {
2790
2790
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
2791
2791
  }, {
@@ -2889,13 +2889,13 @@ export declare const VDateInput: {
2889
2889
  rounded?: string | number | boolean | undefined;
2890
2890
  baseColor?: string | undefined;
2891
2891
  bgColor?: string | undefined;
2892
+ iconColor?: string | boolean | undefined;
2892
2893
  appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
2893
2894
  prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
2894
2895
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
2895
2896
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
2896
2897
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
2897
2898
  centerAffix?: boolean | undefined;
2898
- iconColor?: string | boolean | undefined;
2899
2899
  } & {
2900
2900
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
2901
2901
  }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
@@ -2904,7 +2904,7 @@ export declare const VDateInput: {
2904
2904
  }> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
2905
2905
  modelValue?: unknown;
2906
2906
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
2907
- }, import("../../components/VField/VField.js").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}`> & {
2907
+ }, import("../../components/VField/VField.js").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}`> & {
2908
2908
  _allExposed: {
2909
2909
  reset: () => Promise<void>;
2910
2910
  resetValidation: () => Promise<void>;
@@ -3095,6 +3095,7 @@ export declare const VDateInput: {
3095
3095
  appendIcon?: import("../../composables/icons.js").IconValue | undefined;
3096
3096
  controlHeight?: string | number | undefined;
3097
3097
  headerColor?: string | undefined;
3098
+ iconColor?: string | boolean | undefined;
3098
3099
  appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
3099
3100
  prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
3100
3101
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
@@ -3103,7 +3104,6 @@ export declare const VDateInput: {
3103
3104
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
3104
3105
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
3105
3106
  centerAffix?: boolean | undefined;
3106
- iconColor?: string | boolean | undefined;
3107
3107
  hint?: string | undefined;
3108
3108
  hideDetails?: boolean | "auto" | undefined;
3109
3109
  suffix?: string | undefined;
@@ -3262,6 +3262,7 @@ export declare const VDateInput: {
3262
3262
  bgColor?: string | undefined;
3263
3263
  prependIcon?: import("../../composables/icons.js").IconValue | undefined;
3264
3264
  appendIcon?: import("../../composables/icons.js").IconValue | undefined;
3265
+ iconColor?: string | boolean | undefined;
3265
3266
  appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
3266
3267
  prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
3267
3268
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
@@ -3270,7 +3271,6 @@ export declare const VDateInput: {
3270
3271
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
3271
3272
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
3272
3273
  centerAffix?: boolean | undefined;
3273
- iconColor?: string | boolean | undefined;
3274
3274
  hint?: string | undefined;
3275
3275
  hideDetails?: boolean | "auto" | undefined;
3276
3276
  suffix?: string | undefined;
@@ -3414,6 +3414,7 @@ export declare const VDateInput: {
3414
3414
  bgColor?: string | undefined;
3415
3415
  prependIcon?: import("../../composables/icons.js").IconValue | undefined;
3416
3416
  appendIcon?: import("../../composables/icons.js").IconValue | undefined;
3417
+ iconColor?: string | boolean | undefined;
3417
3418
  appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
3418
3419
  prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
3419
3420
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
@@ -3422,7 +3423,6 @@ export declare const VDateInput: {
3422
3423
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
3423
3424
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
3424
3425
  centerAffix?: boolean | undefined;
3425
- iconColor?: string | boolean | undefined;
3426
3426
  hint?: string | undefined;
3427
3427
  hideDetails?: boolean | "auto" | undefined;
3428
3428
  suffix?: string | undefined;
@@ -3537,9 +3537,9 @@ export declare const VDateInput: {
3537
3537
  baseColor?: string | undefined;
3538
3538
  prependIcon?: import("../../composables/icons.js").IconValue | undefined;
3539
3539
  appendIcon?: import("../../composables/icons.js").IconValue | undefined;
3540
+ iconColor?: string | boolean | undefined;
3540
3541
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
3541
3542
  'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
3542
- iconColor?: string | boolean | undefined;
3543
3543
  hint?: string | undefined;
3544
3544
  hideDetails?: boolean | "auto" | undefined;
3545
3545
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
@@ -3593,9 +3593,9 @@ export declare const VDateInput: {
3593
3593
  baseColor?: string | undefined;
3594
3594
  prependIcon?: import("../../composables/icons.js").IconValue | undefined;
3595
3595
  appendIcon?: import("../../composables/icons.js").IconValue | undefined;
3596
+ iconColor?: string | boolean | undefined;
3596
3597
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
3597
3598
  'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
3598
- iconColor?: string | boolean | undefined;
3599
3599
  hint?: string | undefined;
3600
3600
  hideDetails?: boolean | "auto" | undefined;
3601
3601
  } & {}, {
@@ -3696,9 +3696,9 @@ export declare const VDateInput: {
3696
3696
  baseColor?: string | undefined;
3697
3697
  prependIcon?: import("../../composables/icons.js").IconValue | undefined;
3698
3698
  appendIcon?: import("../../composables/icons.js").IconValue | undefined;
3699
+ iconColor?: string | boolean | undefined;
3699
3700
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
3700
3701
  'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
3701
- iconColor?: string | boolean | undefined;
3702
3702
  hint?: string | undefined;
3703
3703
  hideDetails?: boolean | "auto" | undefined;
3704
3704
  } & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
@@ -3710,7 +3710,7 @@ export declare const VDateInput: {
3710
3710
  }> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
3711
3711
  modelValue?: unknown;
3712
3712
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
3713
- }, import("../../components/VInput/VInput.js").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<{
3713
+ }, import("../../components/VInput/VInput.js").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<{
3714
3714
  $: import("vue").ComponentInternalInstance;
3715
3715
  $data: {};
3716
3716
  $props: Partial<{
@@ -3757,13 +3757,13 @@ export declare const VDateInput: {
3757
3757
  rounded?: string | number | boolean | undefined;
3758
3758
  baseColor?: string | undefined;
3759
3759
  bgColor?: string | undefined;
3760
+ iconColor?: string | boolean | undefined;
3760
3761
  appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
3761
3762
  prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
3762
3763
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
3763
3764
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
3764
3765
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
3765
3766
  centerAffix?: boolean | undefined;
3766
- iconColor?: string | boolean | undefined;
3767
3767
  } & 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">;
3768
3768
  $attrs: {
3769
3769
  [x: string]: unknown;
@@ -3816,13 +3816,13 @@ export declare const VDateInput: {
3816
3816
  rounded?: string | number | boolean | undefined;
3817
3817
  baseColor?: string | undefined;
3818
3818
  bgColor?: string | undefined;
3819
+ iconColor?: string | boolean | undefined;
3819
3820
  appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
3820
3821
  prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
3821
3822
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
3822
3823
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
3823
3824
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
3824
3825
  centerAffix?: boolean | undefined;
3825
- iconColor?: string | boolean | undefined;
3826
3826
  } & {
3827
3827
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
3828
3828
  }, {
@@ -3926,13 +3926,13 @@ export declare const VDateInput: {
3926
3926
  rounded?: string | number | boolean | undefined;
3927
3927
  baseColor?: string | undefined;
3928
3928
  bgColor?: string | undefined;
3929
+ iconColor?: string | boolean | undefined;
3929
3930
  appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
3930
3931
  prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
3931
3932
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
3932
3933
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
3933
3934
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
3934
3935
  centerAffix?: boolean | undefined;
3935
- iconColor?: string | boolean | undefined;
3936
3936
  } & {
3937
3937
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
3938
3938
  }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
@@ -3941,7 +3941,7 @@ export declare const VDateInput: {
3941
3941
  }> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
3942
3942
  modelValue?: unknown;
3943
3943
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
3944
- }, import("../../components/VField/VField.js").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}`> & {
3944
+ }, import("../../components/VField/VField.js").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}`> & {
3945
3945
  _allExposed: {
3946
3946
  reset: () => Promise<void>;
3947
3947
  resetValidation: () => Promise<void>;
@@ -4109,6 +4109,7 @@ export declare const VDateInput: {
4109
4109
  bgColor?: string | undefined;
4110
4110
  prependIcon?: import("../../composables/icons.js").IconValue | undefined;
4111
4111
  appendIcon?: import("../../composables/icons.js").IconValue | undefined;
4112
+ iconColor?: string | boolean | undefined;
4112
4113
  appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
4113
4114
  prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
4114
4115
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
@@ -4117,7 +4118,6 @@ export declare const VDateInput: {
4117
4118
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
4118
4119
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
4119
4120
  centerAffix?: boolean | undefined;
4120
- iconColor?: string | boolean | undefined;
4121
4121
  hint?: string | undefined;
4122
4122
  hideDetails?: boolean | "auto" | undefined;
4123
4123
  suffix?: string | undefined;
@@ -4232,9 +4232,9 @@ export declare const VDateInput: {
4232
4232
  baseColor?: string | undefined;
4233
4233
  prependIcon?: import("../../composables/icons.js").IconValue | undefined;
4234
4234
  appendIcon?: import("../../composables/icons.js").IconValue | undefined;
4235
+ iconColor?: string | boolean | undefined;
4235
4236
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
4236
4237
  'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
4237
- iconColor?: string | boolean | undefined;
4238
4238
  hint?: string | undefined;
4239
4239
  hideDetails?: boolean | "auto" | undefined;
4240
4240
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
@@ -4288,9 +4288,9 @@ export declare const VDateInput: {
4288
4288
  baseColor?: string | undefined;
4289
4289
  prependIcon?: import("../../composables/icons.js").IconValue | undefined;
4290
4290
  appendIcon?: import("../../composables/icons.js").IconValue | undefined;
4291
+ iconColor?: string | boolean | undefined;
4291
4292
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
4292
4293
  'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
4293
- iconColor?: string | boolean | undefined;
4294
4294
  hint?: string | undefined;
4295
4295
  hideDetails?: boolean | "auto" | undefined;
4296
4296
  } & {}, {
@@ -4391,9 +4391,9 @@ export declare const VDateInput: {
4391
4391
  baseColor?: string | undefined;
4392
4392
  prependIcon?: import("../../composables/icons.js").IconValue | undefined;
4393
4393
  appendIcon?: import("../../composables/icons.js").IconValue | undefined;
4394
+ iconColor?: string | boolean | undefined;
4394
4395
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
4395
4396
  'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
4396
- iconColor?: string | boolean | undefined;
4397
4397
  hint?: string | undefined;
4398
4398
  hideDetails?: boolean | "auto" | undefined;
4399
4399
  } & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
@@ -4405,7 +4405,7 @@ export declare const VDateInput: {
4405
4405
  }> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
4406
4406
  modelValue?: unknown;
4407
4407
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
4408
- }, import("../../components/VInput/VInput.js").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<{
4408
+ }, import("../../components/VInput/VInput.js").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<{
4409
4409
  $: import("vue").ComponentInternalInstance;
4410
4410
  $data: {};
4411
4411
  $props: Partial<{
@@ -4452,13 +4452,13 @@ export declare const VDateInput: {
4452
4452
  rounded?: string | number | boolean | undefined;
4453
4453
  baseColor?: string | undefined;
4454
4454
  bgColor?: string | undefined;
4455
+ iconColor?: string | boolean | undefined;
4455
4456
  appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
4456
4457
  prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
4457
4458
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
4458
4459
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
4459
4460
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
4460
4461
  centerAffix?: boolean | undefined;
4461
- iconColor?: string | boolean | undefined;
4462
4462
  } & 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">;
4463
4463
  $attrs: {
4464
4464
  [x: string]: unknown;
@@ -4511,13 +4511,13 @@ export declare const VDateInput: {
4511
4511
  rounded?: string | number | boolean | undefined;
4512
4512
  baseColor?: string | undefined;
4513
4513
  bgColor?: string | undefined;
4514
+ iconColor?: string | boolean | undefined;
4514
4515
  appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
4515
4516
  prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
4516
4517
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
4517
4518
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
4518
4519
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
4519
4520
  centerAffix?: boolean | undefined;
4520
- iconColor?: string | boolean | undefined;
4521
4521
  } & {
4522
4522
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
4523
4523
  }, {
@@ -4621,13 +4621,13 @@ export declare const VDateInput: {
4621
4621
  rounded?: string | number | boolean | undefined;
4622
4622
  baseColor?: string | undefined;
4623
4623
  bgColor?: string | undefined;
4624
+ iconColor?: string | boolean | undefined;
4624
4625
  appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
4625
4626
  prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
4626
4627
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
4627
4628
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
4628
4629
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
4629
4630
  centerAffix?: boolean | undefined;
4630
- iconColor?: string | boolean | undefined;
4631
4631
  } & {
4632
4632
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
4633
4633
  }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
@@ -4636,7 +4636,7 @@ export declare const VDateInput: {
4636
4636
  }> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
4637
4637
  modelValue?: unknown;
4638
4638
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
4639
- }, import("../../components/VField/VField.js").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}`> & {
4639
+ }, import("../../components/VField/VField.js").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}`> & {
4640
4640
  _allExposed: {
4641
4641
  reset: () => Promise<void>;
4642
4642
  resetValidation: () => Promise<void>;
@@ -4647,7 +4647,7 @@ export declare const VDateInput: {
4647
4647
  controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
4648
4648
  fieldIconColor: import("vue").ComputedRef<string | undefined>;
4649
4649
  } | {};
4650
- }> & {} & 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}`> & {
4650
+ }> & {} & 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}`> & {
4651
4651
  _allExposed: (HTMLInputElement & Omit<Omit<{
4652
4652
  $: import("vue").ComponentInternalInstance;
4653
4653
  $data: {};
@@ -4698,9 +4698,9 @@ export declare const VDateInput: {
4698
4698
  baseColor?: string | undefined;
4699
4699
  prependIcon?: import("../../composables/icons.js").IconValue | undefined;
4700
4700
  appendIcon?: import("../../composables/icons.js").IconValue | undefined;
4701
+ iconColor?: string | boolean | undefined;
4701
4702
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
4702
4703
  'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
4703
- iconColor?: string | boolean | undefined;
4704
4704
  hint?: string | undefined;
4705
4705
  hideDetails?: boolean | "auto" | undefined;
4706
4706
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
@@ -4754,9 +4754,9 @@ export declare const VDateInput: {
4754
4754
  baseColor?: string | undefined;
4755
4755
  prependIcon?: import("../../composables/icons.js").IconValue | undefined;
4756
4756
  appendIcon?: import("../../composables/icons.js").IconValue | undefined;
4757
+ iconColor?: string | boolean | undefined;
4757
4758
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
4758
4759
  'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
4759
- iconColor?: string | boolean | undefined;
4760
4760
  hint?: string | undefined;
4761
4761
  hideDetails?: boolean | "auto" | undefined;
4762
4762
  } & {}, {
@@ -4857,9 +4857,9 @@ export declare const VDateInput: {
4857
4857
  baseColor?: string | undefined;
4858
4858
  prependIcon?: import("../../composables/icons.js").IconValue | undefined;
4859
4859
  appendIcon?: import("../../composables/icons.js").IconValue | undefined;
4860
+ iconColor?: string | boolean | undefined;
4860
4861
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
4861
4862
  'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
4862
- iconColor?: string | boolean | undefined;
4863
4863
  hint?: string | undefined;
4864
4864
  hideDetails?: boolean | "auto" | undefined;
4865
4865
  } & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
@@ -4871,7 +4871,7 @@ export declare const VDateInput: {
4871
4871
  }> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
4872
4872
  modelValue?: unknown;
4873
4873
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
4874
- }, import("../../components/VInput/VInput.js").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<{
4874
+ }, import("../../components/VInput/VInput.js").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<{
4875
4875
  $: import("vue").ComponentInternalInstance;
4876
4876
  $data: {};
4877
4877
  $props: Partial<{
@@ -4918,13 +4918,13 @@ export declare const VDateInput: {
4918
4918
  rounded?: string | number | boolean | undefined;
4919
4919
  baseColor?: string | undefined;
4920
4920
  bgColor?: string | undefined;
4921
+ iconColor?: string | boolean | undefined;
4921
4922
  appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
4922
4923
  prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
4923
4924
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
4924
4925
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
4925
4926
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
4926
4927
  centerAffix?: boolean | undefined;
4927
- iconColor?: string | boolean | undefined;
4928
4928
  } & 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">;
4929
4929
  $attrs: {
4930
4930
  [x: string]: unknown;
@@ -4977,13 +4977,13 @@ export declare const VDateInput: {
4977
4977
  rounded?: string | number | boolean | undefined;
4978
4978
  baseColor?: string | undefined;
4979
4979
  bgColor?: string | undefined;
4980
+ iconColor?: string | boolean | undefined;
4980
4981
  appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
4981
4982
  prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
4982
4983
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
4983
4984
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
4984
4985
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
4985
4986
  centerAffix?: boolean | undefined;
4986
- iconColor?: string | boolean | undefined;
4987
4987
  } & {
4988
4988
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
4989
4989
  }, {
@@ -5087,13 +5087,13 @@ export declare const VDateInput: {
5087
5087
  rounded?: string | number | boolean | undefined;
5088
5088
  baseColor?: string | undefined;
5089
5089
  bgColor?: string | undefined;
5090
+ iconColor?: string | boolean | undefined;
5090
5091
  appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
5091
5092
  prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
5092
5093
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
5093
5094
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
5094
5095
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
5095
5096
  centerAffix?: boolean | undefined;
5096
- iconColor?: string | boolean | undefined;
5097
5097
  } & {
5098
5098
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
5099
5099
  }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
@@ -5102,7 +5102,7 @@ export declare const VDateInput: {
5102
5102
  }> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
5103
5103
  modelValue?: unknown;
5104
5104
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
5105
- }, import("../../components/VField/VField.js").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}`> & {
5105
+ }, import("../../components/VField/VField.js").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}`> & {
5106
5106
  _allExposed: {
5107
5107
  reset: () => Promise<void>;
5108
5108
  resetValidation: () => Promise<void>;
@@ -5267,6 +5267,7 @@ export declare const VDateInput: {
5267
5267
  appendIcon?: import("../../composables/icons.js").IconValue | undefined;
5268
5268
  controlHeight?: string | number | undefined;
5269
5269
  headerColor?: string | undefined;
5270
+ iconColor?: string | boolean | undefined;
5270
5271
  appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
5271
5272
  prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
5272
5273
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
@@ -5275,7 +5276,6 @@ export declare const VDateInput: {
5275
5276
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
5276
5277
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
5277
5278
  centerAffix?: boolean | undefined;
5278
- iconColor?: string | boolean | undefined;
5279
5279
  hint?: string | undefined;
5280
5280
  hideDetails?: boolean | "auto" | undefined;
5281
5281
  suffix?: string | undefined;
@@ -5434,6 +5434,7 @@ export declare const VDateInput: {
5434
5434
  bgColor?: string | undefined;
5435
5435
  prependIcon?: import("../../composables/icons.js").IconValue | undefined;
5436
5436
  appendIcon?: import("../../composables/icons.js").IconValue | undefined;
5437
+ iconColor?: string | boolean | undefined;
5437
5438
  appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
5438
5439
  prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
5439
5440
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
@@ -5442,7 +5443,6 @@ export declare const VDateInput: {
5442
5443
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
5443
5444
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
5444
5445
  centerAffix?: boolean | undefined;
5445
- iconColor?: string | boolean | undefined;
5446
5446
  hint?: string | undefined;
5447
5447
  hideDetails?: boolean | "auto" | undefined;
5448
5448
  suffix?: string | undefined;
@@ -5586,6 +5586,7 @@ export declare const VDateInput: {
5586
5586
  bgColor?: string | undefined;
5587
5587
  prependIcon?: import("../../composables/icons.js").IconValue | undefined;
5588
5588
  appendIcon?: import("../../composables/icons.js").IconValue | undefined;
5589
+ iconColor?: string | boolean | undefined;
5589
5590
  appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
5590
5591
  prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
5591
5592
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
@@ -5594,7 +5595,6 @@ export declare const VDateInput: {
5594
5595
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
5595
5596
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
5596
5597
  centerAffix?: boolean | undefined;
5597
- iconColor?: string | boolean | undefined;
5598
5598
  hint?: string | undefined;
5599
5599
  hideDetails?: boolean | "auto" | undefined;
5600
5600
  suffix?: string | undefined;
@@ -5709,9 +5709,9 @@ export declare const VDateInput: {
5709
5709
  baseColor?: string | undefined;
5710
5710
  prependIcon?: import("../../composables/icons.js").IconValue | undefined;
5711
5711
  appendIcon?: import("../../composables/icons.js").IconValue | undefined;
5712
+ iconColor?: string | boolean | undefined;
5712
5713
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
5713
5714
  'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
5714
- iconColor?: string | boolean | undefined;
5715
5715
  hint?: string | undefined;
5716
5716
  hideDetails?: boolean | "auto" | undefined;
5717
5717
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
@@ -5765,9 +5765,9 @@ export declare const VDateInput: {
5765
5765
  baseColor?: string | undefined;
5766
5766
  prependIcon?: import("../../composables/icons.js").IconValue | undefined;
5767
5767
  appendIcon?: import("../../composables/icons.js").IconValue | undefined;
5768
+ iconColor?: string | boolean | undefined;
5768
5769
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
5769
5770
  'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
5770
- iconColor?: string | boolean | undefined;
5771
5771
  hint?: string | undefined;
5772
5772
  hideDetails?: boolean | "auto" | undefined;
5773
5773
  } & {}, {
@@ -5868,9 +5868,9 @@ export declare const VDateInput: {
5868
5868
  baseColor?: string | undefined;
5869
5869
  prependIcon?: import("../../composables/icons.js").IconValue | undefined;
5870
5870
  appendIcon?: import("../../composables/icons.js").IconValue | undefined;
5871
+ iconColor?: string | boolean | undefined;
5871
5872
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
5872
5873
  'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
5873
- iconColor?: string | boolean | undefined;
5874
5874
  hint?: string | undefined;
5875
5875
  hideDetails?: boolean | "auto" | undefined;
5876
5876
  } & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
@@ -5882,7 +5882,7 @@ export declare const VDateInput: {
5882
5882
  }> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
5883
5883
  modelValue?: unknown;
5884
5884
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
5885
- }, import("../../components/VInput/VInput.js").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<{
5885
+ }, import("../../components/VInput/VInput.js").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<{
5886
5886
  $: import("vue").ComponentInternalInstance;
5887
5887
  $data: {};
5888
5888
  $props: Partial<{
@@ -5929,13 +5929,13 @@ export declare const VDateInput: {
5929
5929
  rounded?: string | number | boolean | undefined;
5930
5930
  baseColor?: string | undefined;
5931
5931
  bgColor?: string | undefined;
5932
+ iconColor?: string | boolean | undefined;
5932
5933
  appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
5933
5934
  prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
5934
5935
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
5935
5936
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
5936
5937
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
5937
5938
  centerAffix?: boolean | undefined;
5938
- iconColor?: string | boolean | undefined;
5939
5939
  } & 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">;
5940
5940
  $attrs: {
5941
5941
  [x: string]: unknown;
@@ -5988,13 +5988,13 @@ export declare const VDateInput: {
5988
5988
  rounded?: string | number | boolean | undefined;
5989
5989
  baseColor?: string | undefined;
5990
5990
  bgColor?: string | undefined;
5991
+ iconColor?: string | boolean | undefined;
5991
5992
  appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
5992
5993
  prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
5993
5994
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
5994
5995
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
5995
5996
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
5996
5997
  centerAffix?: boolean | undefined;
5997
- iconColor?: string | boolean | undefined;
5998
5998
  } & {
5999
5999
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
6000
6000
  }, {
@@ -6098,13 +6098,13 @@ export declare const VDateInput: {
6098
6098
  rounded?: string | number | boolean | undefined;
6099
6099
  baseColor?: string | undefined;
6100
6100
  bgColor?: string | undefined;
6101
+ iconColor?: string | boolean | undefined;
6101
6102
  appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
6102
6103
  prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
6103
6104
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
6104
6105
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
6105
6106
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
6106
6107
  centerAffix?: boolean | undefined;
6107
- iconColor?: string | boolean | undefined;
6108
6108
  } & {
6109
6109
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
6110
6110
  }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
@@ -6113,7 +6113,7 @@ export declare const VDateInput: {
6113
6113
  }> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
6114
6114
  modelValue?: unknown;
6115
6115
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
6116
- }, import("../../components/VField/VField.js").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}`> & {
6116
+ }, import("../../components/VField/VField.js").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}`> & {
6117
6117
  _allExposed: {
6118
6118
  reset: () => Promise<void>;
6119
6119
  resetValidation: () => Promise<void>;
@@ -6281,6 +6281,7 @@ export declare const VDateInput: {
6281
6281
  bgColor?: string | undefined;
6282
6282
  prependIcon?: import("../../composables/icons.js").IconValue | undefined;
6283
6283
  appendIcon?: import("../../composables/icons.js").IconValue | undefined;
6284
+ iconColor?: string | boolean | undefined;
6284
6285
  appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
6285
6286
  prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
6286
6287
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
@@ -6289,7 +6290,6 @@ export declare const VDateInput: {
6289
6290
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
6290
6291
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
6291
6292
  centerAffix?: boolean | undefined;
6292
- iconColor?: string | boolean | undefined;
6293
6293
  hint?: string | undefined;
6294
6294
  hideDetails?: boolean | "auto" | undefined;
6295
6295
  suffix?: string | undefined;
@@ -6404,9 +6404,9 @@ export declare const VDateInput: {
6404
6404
  baseColor?: string | undefined;
6405
6405
  prependIcon?: import("../../composables/icons.js").IconValue | undefined;
6406
6406
  appendIcon?: import("../../composables/icons.js").IconValue | undefined;
6407
+ iconColor?: string | boolean | undefined;
6407
6408
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
6408
6409
  'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
6409
- iconColor?: string | boolean | undefined;
6410
6410
  hint?: string | undefined;
6411
6411
  hideDetails?: boolean | "auto" | undefined;
6412
6412
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
@@ -6460,9 +6460,9 @@ export declare const VDateInput: {
6460
6460
  baseColor?: string | undefined;
6461
6461
  prependIcon?: import("../../composables/icons.js").IconValue | undefined;
6462
6462
  appendIcon?: import("../../composables/icons.js").IconValue | undefined;
6463
+ iconColor?: string | boolean | undefined;
6463
6464
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
6464
6465
  'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
6465
- iconColor?: string | boolean | undefined;
6466
6466
  hint?: string | undefined;
6467
6467
  hideDetails?: boolean | "auto" | undefined;
6468
6468
  } & {}, {
@@ -6563,9 +6563,9 @@ export declare const VDateInput: {
6563
6563
  baseColor?: string | undefined;
6564
6564
  prependIcon?: import("../../composables/icons.js").IconValue | undefined;
6565
6565
  appendIcon?: import("../../composables/icons.js").IconValue | undefined;
6566
+ iconColor?: string | boolean | undefined;
6566
6567
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
6567
6568
  'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
6568
- iconColor?: string | boolean | undefined;
6569
6569
  hint?: string | undefined;
6570
6570
  hideDetails?: boolean | "auto" | undefined;
6571
6571
  } & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
@@ -6577,7 +6577,7 @@ export declare const VDateInput: {
6577
6577
  }> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
6578
6578
  modelValue?: unknown;
6579
6579
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
6580
- }, import("../../components/VInput/VInput.js").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<{
6580
+ }, import("../../components/VInput/VInput.js").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<{
6581
6581
  $: import("vue").ComponentInternalInstance;
6582
6582
  $data: {};
6583
6583
  $props: Partial<{
@@ -6624,13 +6624,13 @@ export declare const VDateInput: {
6624
6624
  rounded?: string | number | boolean | undefined;
6625
6625
  baseColor?: string | undefined;
6626
6626
  bgColor?: string | undefined;
6627
+ iconColor?: string | boolean | undefined;
6627
6628
  appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
6628
6629
  prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
6629
6630
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
6630
6631
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
6631
6632
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
6632
6633
  centerAffix?: boolean | undefined;
6633
- iconColor?: string | boolean | undefined;
6634
6634
  } & 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">;
6635
6635
  $attrs: {
6636
6636
  [x: string]: unknown;
@@ -6683,13 +6683,13 @@ export declare const VDateInput: {
6683
6683
  rounded?: string | number | boolean | undefined;
6684
6684
  baseColor?: string | undefined;
6685
6685
  bgColor?: string | undefined;
6686
+ iconColor?: string | boolean | undefined;
6686
6687
  appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
6687
6688
  prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
6688
6689
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
6689
6690
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
6690
6691
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
6691
6692
  centerAffix?: boolean | undefined;
6692
- iconColor?: string | boolean | undefined;
6693
6693
  } & {
6694
6694
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
6695
6695
  }, {
@@ -6793,13 +6793,13 @@ export declare const VDateInput: {
6793
6793
  rounded?: string | number | boolean | undefined;
6794
6794
  baseColor?: string | undefined;
6795
6795
  bgColor?: string | undefined;
6796
+ iconColor?: string | boolean | undefined;
6796
6797
  appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
6797
6798
  prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
6798
6799
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
6799
6800
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
6800
6801
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
6801
6802
  centerAffix?: boolean | undefined;
6802
- iconColor?: string | boolean | undefined;
6803
6803
  } & {
6804
6804
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
6805
6805
  }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
@@ -6808,7 +6808,7 @@ export declare const VDateInput: {
6808
6808
  }> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
6809
6809
  modelValue?: unknown;
6810
6810
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
6811
- }, import("../../components/VField/VField.js").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}`> & {
6811
+ }, import("../../components/VField/VField.js").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}`> & {
6812
6812
  _allExposed: {
6813
6813
  reset: () => Promise<void>;
6814
6814
  resetValidation: () => Promise<void>;
@@ -6819,7 +6819,7 @@ export declare const VDateInput: {
6819
6819
  controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
6820
6820
  fieldIconColor: import("vue").ComputedRef<string | undefined>;
6821
6821
  } | {};
6822
- }> & {} & 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}`> & {
6822
+ }> & {} & 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}`> & {
6823
6823
  _allExposed: (HTMLInputElement & Omit<Omit<{
6824
6824
  $: import("vue").ComponentInternalInstance;
6825
6825
  $data: {};
@@ -6870,9 +6870,9 @@ export declare const VDateInput: {
6870
6870
  baseColor?: string | undefined;
6871
6871
  prependIcon?: import("../../composables/icons.js").IconValue | undefined;
6872
6872
  appendIcon?: import("../../composables/icons.js").IconValue | undefined;
6873
+ iconColor?: string | boolean | undefined;
6873
6874
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
6874
6875
  'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
6875
- iconColor?: string | boolean | undefined;
6876
6876
  hint?: string | undefined;
6877
6877
  hideDetails?: boolean | "auto" | undefined;
6878
6878
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
@@ -6926,9 +6926,9 @@ export declare const VDateInput: {
6926
6926
  baseColor?: string | undefined;
6927
6927
  prependIcon?: import("../../composables/icons.js").IconValue | undefined;
6928
6928
  appendIcon?: import("../../composables/icons.js").IconValue | undefined;
6929
+ iconColor?: string | boolean | undefined;
6929
6930
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
6930
6931
  'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
6931
- iconColor?: string | boolean | undefined;
6932
6932
  hint?: string | undefined;
6933
6933
  hideDetails?: boolean | "auto" | undefined;
6934
6934
  } & {}, {
@@ -7029,9 +7029,9 @@ export declare const VDateInput: {
7029
7029
  baseColor?: string | undefined;
7030
7030
  prependIcon?: import("../../composables/icons.js").IconValue | undefined;
7031
7031
  appendIcon?: import("../../composables/icons.js").IconValue | undefined;
7032
+ iconColor?: string | boolean | undefined;
7032
7033
  'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
7033
7034
  'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
7034
- iconColor?: string | boolean | undefined;
7035
7035
  hint?: string | undefined;
7036
7036
  hideDetails?: boolean | "auto" | undefined;
7037
7037
  } & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
@@ -7043,7 +7043,7 @@ export declare const VDateInput: {
7043
7043
  }> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
7044
7044
  modelValue?: unknown;
7045
7045
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
7046
- }, import("../../components/VInput/VInput.js").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<{
7046
+ }, import("../../components/VInput/VInput.js").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<{
7047
7047
  $: import("vue").ComponentInternalInstance;
7048
7048
  $data: {};
7049
7049
  $props: Partial<{
@@ -7090,13 +7090,13 @@ export declare const VDateInput: {
7090
7090
  rounded?: string | number | boolean | undefined;
7091
7091
  baseColor?: string | undefined;
7092
7092
  bgColor?: string | undefined;
7093
+ iconColor?: string | boolean | undefined;
7093
7094
  appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
7094
7095
  prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
7095
7096
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
7096
7097
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
7097
7098
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
7098
7099
  centerAffix?: boolean | undefined;
7099
- iconColor?: string | boolean | undefined;
7100
7100
  } & 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">;
7101
7101
  $attrs: {
7102
7102
  [x: string]: unknown;
@@ -7149,13 +7149,13 @@ export declare const VDateInput: {
7149
7149
  rounded?: string | number | boolean | undefined;
7150
7150
  baseColor?: string | undefined;
7151
7151
  bgColor?: string | undefined;
7152
+ iconColor?: string | boolean | undefined;
7152
7153
  appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
7153
7154
  prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
7154
7155
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
7155
7156
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
7156
7157
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
7157
7158
  centerAffix?: boolean | undefined;
7158
- iconColor?: string | boolean | undefined;
7159
7159
  } & {
7160
7160
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
7161
7161
  }, {
@@ -7259,13 +7259,13 @@ export declare const VDateInput: {
7259
7259
  rounded?: string | number | boolean | undefined;
7260
7260
  baseColor?: string | undefined;
7261
7261
  bgColor?: string | undefined;
7262
+ iconColor?: string | boolean | undefined;
7262
7263
  appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
7263
7264
  prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
7264
7265
  'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
7265
7266
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
7266
7267
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
7267
7268
  centerAffix?: boolean | undefined;
7268
- iconColor?: string | boolean | undefined;
7269
7269
  } & {
7270
7270
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
7271
7271
  }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
@@ -7274,7 +7274,7 @@ export declare const VDateInput: {
7274
7274
  }> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
7275
7275
  modelValue?: unknown;
7276
7276
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
7277
- }, import("../../components/VField/VField.js").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}`> & {
7277
+ }, import("../../components/VField/VField.js").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}`> & {
7278
7278
  _allExposed: {
7279
7279
  reset: () => Promise<void>;
7280
7280
  resetValidation: () => Promise<void>;