@vuetify/nightly 3.8.0-beta.0-dev.2025-03-31 → 3.8.0-dev.2025-04-03

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 (61) hide show
  1. package/CHANGELOG.md +10 -96
  2. package/dist/json/attributes.json +3028 -3028
  3. package/dist/json/importMap-labs.json +32 -32
  4. package/dist/json/importMap.json +154 -154
  5. package/dist/json/web-types.json +5664 -5664
  6. package/dist/vuetify-labs.cjs +73 -67
  7. package/dist/vuetify-labs.css +3832 -3835
  8. package/dist/vuetify-labs.d.ts +110 -71
  9. package/dist/vuetify-labs.esm.js +73 -67
  10. package/dist/vuetify-labs.esm.js.map +1 -1
  11. package/dist/vuetify-labs.js +73 -67
  12. package/dist/vuetify-labs.min.css +2 -2
  13. package/dist/vuetify.cjs +68 -58
  14. package/dist/vuetify.cjs.map +1 -1
  15. package/dist/vuetify.css +4692 -4695
  16. package/dist/vuetify.d.ts +110 -71
  17. package/dist/vuetify.esm.js +68 -58
  18. package/dist/vuetify.esm.js.map +1 -1
  19. package/dist/vuetify.js +68 -58
  20. package/dist/vuetify.js.map +1 -1
  21. package/dist/vuetify.min.css +2 -2
  22. package/dist/vuetify.min.js +88 -87
  23. package/dist/vuetify.min.js.map +1 -1
  24. package/lib/components/VAutocomplete/VAutocomplete.css +0 -1
  25. package/lib/components/VAutocomplete/VAutocomplete.js +16 -19
  26. package/lib/components/VAutocomplete/VAutocomplete.js.map +1 -1
  27. package/lib/components/VAutocomplete/VAutocomplete.sass +0 -1
  28. package/lib/components/VColorPicker/VColorPickerPreview.js +4 -3
  29. package/lib/components/VColorPicker/VColorPickerPreview.js.map +1 -1
  30. package/lib/components/VCombobox/VCombobox.css +0 -1
  31. package/lib/components/VCombobox/VCombobox.js +22 -20
  32. package/lib/components/VCombobox/VCombobox.js.map +1 -1
  33. package/lib/components/VCombobox/VCombobox.sass +0 -1
  34. package/lib/components/VEmptyState/VEmptyState.js +3 -1
  35. package/lib/components/VEmptyState/VEmptyState.js.map +1 -1
  36. package/lib/components/VField/VField.d.ts +3 -0
  37. package/lib/components/VField/VField.js +3 -2
  38. package/lib/components/VField/VField.js.map +1 -1
  39. package/lib/components/VInput/VInput.css +11 -11
  40. package/lib/components/VInput/VInput.sass +1 -1
  41. package/lib/components/VNumberInput/VNumberInput.d.ts +39 -12
  42. package/lib/components/VSelect/VSelect.css +0 -1
  43. package/lib/components/VSelect/VSelect.js +11 -9
  44. package/lib/components/VSelect/VSelect.js.map +1 -1
  45. package/lib/components/VSelect/VSelect.sass +0 -1
  46. package/lib/components/VTextField/VTextField.d.ts +12 -3
  47. package/lib/composables/virtual.js +6 -1
  48. package/lib/composables/virtual.js.map +1 -1
  49. package/lib/entry-bundler.js +1 -1
  50. package/lib/entry-bundler.js.map +1 -1
  51. package/lib/framework.d.ts +56 -56
  52. package/lib/framework.js +1 -1
  53. package/lib/framework.js.map +1 -1
  54. package/lib/labs/VDateInput/VDateInput.js +3 -8
  55. package/lib/labs/VDateInput/VDateInput.js.map +1 -1
  56. package/lib/labs/VFileUpload/VFileUpload.js +2 -1
  57. package/lib/labs/VFileUpload/VFileUpload.js.map +1 -1
  58. package/lib/util/helpers.d.ts +1 -2
  59. package/lib/util/helpers.js +1 -11
  60. package/lib/util/helpers.js.map +1 -1
  61. package/package.json +1 -1
package/dist/vuetify.d.ts CHANGED
@@ -5979,6 +5979,7 @@ declare const VField: {
5979
5979
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
5980
5980
  }, {
5981
5981
  controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
5982
+ fieldIconColor: vue.ComputedRef<string | undefined>;
5982
5983
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
5983
5984
  'update:focused': (focused: boolean) => true;
5984
5985
  'update:modelValue': (value: any) => true;
@@ -6057,6 +6058,7 @@ declare const VField: {
6057
6058
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
6058
6059
  }, {
6059
6060
  controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
6061
+ fieldIconColor: vue.ComputedRef<string | undefined>;
6060
6062
  }, {}, {}, {}, {
6061
6063
  flat: boolean;
6062
6064
  reverse: boolean;
@@ -6117,6 +6119,7 @@ declare const VField: {
6117
6119
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
6118
6120
  }, {
6119
6121
  controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
6122
+ fieldIconColor: vue.ComputedRef<string | undefined>;
6120
6123
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
6121
6124
  'update:focused': (focused: boolean) => true;
6122
6125
  'update:modelValue': (value: any) => true;
@@ -38031,6 +38034,7 @@ declare const VNumberInput: {
38031
38034
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
38032
38035
  }, {
38033
38036
  controlRef: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
38037
+ fieldIconColor: vue.ComputedRef<string | undefined>;
38034
38038
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
38035
38039
  'update:focused': (focused: boolean) => true;
38036
38040
  'update:modelValue': (value: any) => true;
@@ -38138,8 +38142,9 @@ declare const VNumberInput: {
38138
38142
  iconColor?: string | boolean | undefined;
38139
38143
  } & {
38140
38144
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
38141
- }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef"> & vue.ShallowUnwrapRef<{
38145
+ }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & vue.ShallowUnwrapRef<{
38142
38146
  controlRef: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
38147
+ fieldIconColor: vue.ComputedRef<string | undefined>;
38143
38148
  }> & {} & vue.ComponentCustomProperties & {} & GenericProps<{
38144
38149
  modelValue?: unknown;
38145
38150
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
@@ -38152,6 +38157,7 @@ declare const VNumberInput: {
38152
38157
  errorMessages: vue.ComputedRef<string[]>;
38153
38158
  } | {
38154
38159
  controlRef: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
38160
+ fieldIconColor: vue.ComputedRef<string | undefined>;
38155
38161
  } | {};
38156
38162
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
38157
38163
  'click:control': (e: MouseEvent) => true;
@@ -38383,7 +38389,7 @@ declare const VNumberInput: {
38383
38389
  "onUpdate:modelValue"?: ((val: string) => any) | undefined;
38384
38390
  "onClick:control"?: ((e: MouseEvent) => any) | undefined;
38385
38391
  "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
38386
- }, "normalize" | "flat" | "reverse" | "variant" | "name" | "max" | "required" | "type" | "error" | "id" | "matches" | "height" | "width" | "active" | "remove" | "min" | "direction" | "translate" | "contains" | "value" | "hidden" | "form" | "select" | "slot" | "style" | "title" | "dir" | "animate" | "pattern" | "blur" | "click" | "focus" | "reset" | "scroll" | "autocomplete" | "checkValidity" | "reportValidity" | "addEventListener" | "removeEventListener" | "accessKey" | "accessKeyLabel" | "autocapitalize" | "draggable" | "inert" | "innerText" | "lang" | "offsetHeight" | "offsetLeft" | "offsetParent" | "offsetTop" | "offsetWidth" | "outerText" | "popover" | "spellcheck" | "attachInternals" | "hidePopover" | "showPopover" | "togglePopover" | "attributes" | "classList" | "className" | "clientHeight" | "clientLeft" | "clientTop" | "clientWidth" | "localName" | "namespaceURI" | "onfullscreenchange" | "onfullscreenerror" | "outerHTML" | "ownerDocument" | "part" | "prefix" | "scrollHeight" | "scrollLeft" | "scrollTop" | "scrollWidth" | "shadowRoot" | "tagName" | "attachShadow" | "checkVisibility" | "closest" | "computedStyleMap" | "getAttribute" | "getAttributeNS" | "getAttributeNames" | "getAttributeNode" | "getAttributeNodeNS" | "getBoundingClientRect" | "getClientRects" | "getElementsByClassName" | "getElementsByTagName" | "getElementsByTagNameNS" | "hasAttribute" | "hasAttributeNS" | "hasAttributes" | "hasPointerCapture" | "insertAdjacentElement" | "insertAdjacentHTML" | "insertAdjacentText" | "releasePointerCapture" | "removeAttribute" | "removeAttributeNS" | "removeAttributeNode" | "requestFullscreen" | "requestPointerLock" | "scrollBy" | "scrollIntoView" | "scrollTo" | "setAttribute" | "setAttributeNS" | "setAttributeNode" | "setAttributeNodeNS" | "setHTMLUnsafe" | "setPointerCapture" | "toggleAttribute" | "webkitMatchesSelector" | "_clickOutside" | "_onResize" | "_ripple" | "_observe" | "_mutate" | "_onScroll" | "_touchHandlers" | "_transitionInitialStyles" | "baseURI" | "childNodes" | "firstChild" | "isConnected" | "lastChild" | "nextSibling" | "nodeName" | "nodeType" | "nodeValue" | "parentElement" | "parentNode" | "previousSibling" | "textContent" | "appendChild" | "cloneNode" | "compareDocumentPosition" | "getRootNode" | "hasChildNodes" | "insertBefore" | "isDefaultNamespace" | "isEqualNode" | "isSameNode" | "lookupNamespaceURI" | "lookupPrefix" | "removeChild" | "replaceChild" | "ELEMENT_NODE" | "ATTRIBUTE_NODE" | "TEXT_NODE" | "CDATA_SECTION_NODE" | "ENTITY_REFERENCE_NODE" | "ENTITY_NODE" | "PROCESSING_INSTRUCTION_NODE" | "COMMENT_NODE" | "DOCUMENT_NODE" | "DOCUMENT_TYPE_NODE" | "DOCUMENT_FRAGMENT_NODE" | "NOTATION_NODE" | "DOCUMENT_POSITION_DISCONNECTED" | "DOCUMENT_POSITION_PRECEDING" | "DOCUMENT_POSITION_FOLLOWING" | "DOCUMENT_POSITION_CONTAINS" | "DOCUMENT_POSITION_CONTAINED_BY" | "DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC" | "dispatchEvent" | "ariaAtomic" | "ariaAutoComplete" | "ariaBrailleLabel" | "ariaBrailleRoleDescription" | "ariaBusy" | "ariaChecked" | "ariaColCount" | "ariaColIndex" | "ariaColSpan" | "ariaCurrent" | "ariaDescription" | "ariaDisabled" | "ariaExpanded" | "ariaHasPopup" | "ariaHidden" | "ariaInvalid" | "ariaKeyShortcuts" | "ariaLabel" | "ariaLevel" | "ariaLive" | "ariaModal" | "ariaMultiLine" | "ariaMultiSelectable" | "ariaOrientation" | "ariaPlaceholder" | "ariaPosInSet" | "ariaPressed" | "ariaReadOnly" | "ariaRequired" | "ariaRoleDescription" | "ariaRowCount" | "ariaRowIndex" | "ariaRowSpan" | "ariaSelected" | "ariaSetSize" | "ariaSort" | "ariaValueMax" | "ariaValueMin" | "ariaValueNow" | "ariaValueText" | "role" | "getAnimations" | "after" | "before" | "replaceWith" | "innerHTML" | "nextElementSibling" | "previousElementSibling" | "childElementCount" | "children" | "firstElementChild" | "lastElementChild" | "append" | "prepend" | "querySelector" | "querySelectorAll" | "replaceChildren" | "assignedSlot" | "attributeStyleMap" | "contentEditable" | "enterKeyHint" | "inputMode" | "isContentEditable" | "onabort" | "onanimationcancel" | "onanimationend" | "onanimationiteration" | "onanimationstart" | "onauxclick" | "onbeforeinput" | "onbeforetoggle" | "onblur" | "oncancel" | "oncanplay" | "oncanplaythrough" | "onchange" | "onclick" | "onclose" | "oncontextmenu" | "oncopy" | "oncuechange" | "oncut" | "ondblclick" | "ondrag" | "ondragend" | "ondragenter" | "ondragleave" | "ondragover" | "ondragstart" | "ondrop" | "ondurationchange" | "onemptied" | "onended" | "onerror" | "onfocus" | "onformdata" | "ongotpointercapture" | "oninput" | "oninvalid" | "onkeydown" | "onkeypress" | "onkeyup" | "onload" | "onloadeddata" | "onloadedmetadata" | "onloadstart" | "onlostpointercapture" | "onmousedown" | "onmouseenter" | "onmouseleave" | "onmousemove" | "onmouseout" | "onmouseover" | "onmouseup" | "onpaste" | "onpause" | "onplay" | "onplaying" | "onpointercancel" | "onpointerdown" | "onpointerenter" | "onpointerleave" | "onpointermove" | "onpointerout" | "onpointerover" | "onpointerup" | "onprogress" | "onratechange" | "onreset" | "onresize" | "onscroll" | "onscrollend" | "onsecuritypolicyviolation" | "onseeked" | "onseeking" | "onselect" | "onselectionchange" | "onselectstart" | "onslotchange" | "onstalled" | "onsubmit" | "onsuspend" | "ontimeupdate" | "ontoggle" | "ontouchcancel" | "ontouchend" | "ontouchmove" | "ontouchstart" | "ontransitioncancel" | "ontransitionend" | "ontransitionrun" | "ontransitionstart" | "onvolumechange" | "onwaiting" | "onwebkitanimationend" | "onwebkitanimationiteration" | "onwebkitanimationstart" | "onwebkittransitionend" | "onwheel" | "autofocus" | "dataset" | "nonce" | "tabIndex" | "disabled" | "labels" | "multiple" | "size" | "validationMessage" | "validity" | "willValidate" | "setCustomValidity" | "showPicker" | "readonly" | "maxLength" | "list" | "accept" | "readOnly" | "_" | "alt" | "step" | "placeholder" | "src" | "capture" | "checked" | "indeterminate" | "align" | "messages" | "rules" | "minLength" | "isValid" | "focused" | "errorMessages" | "maxErrors" | "validate" | "resetValidation" | "density" | "rounded" | "tile" | "_allExposed" | "clearIcon" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "controlRef" | "persistentPlaceholder" | "persistentCounter" | "defaultChecked" | "defaultValue" | "dirName" | "files" | "formAction" | "formEnctype" | "formMethod" | "formNoValidate" | "formTarget" | "selectionDirection" | "selectionEnd" | "selectionStart" | "useMap" | "valueAsDate" | "valueAsNumber" | "webkitEntries" | "webkitdirectory" | "setRangeText" | "setSelectionRange" | "stepDown" | "stepUp" | "popoverTargetAction" | "popoverTargetElement"> & vue.ShallowUnwrapRef<HTMLInputElement & Omit<Omit<{
38392
+ }, "normalize" | "flat" | "reverse" | "variant" | "name" | "max" | "required" | "type" | "error" | "id" | "matches" | "height" | "width" | "active" | "remove" | "min" | "direction" | "translate" | "contains" | "value" | "hidden" | "form" | "select" | "slot" | "style" | "title" | "dir" | "animate" | "pattern" | "blur" | "click" | "focus" | "reset" | "scroll" | "autocomplete" | "checkValidity" | "reportValidity" | "addEventListener" | "removeEventListener" | "accessKey" | "accessKeyLabel" | "autocapitalize" | "draggable" | "inert" | "innerText" | "lang" | "offsetHeight" | "offsetLeft" | "offsetParent" | "offsetTop" | "offsetWidth" | "outerText" | "popover" | "spellcheck" | "attachInternals" | "hidePopover" | "showPopover" | "togglePopover" | "attributes" | "classList" | "className" | "clientHeight" | "clientLeft" | "clientTop" | "clientWidth" | "localName" | "namespaceURI" | "onfullscreenchange" | "onfullscreenerror" | "outerHTML" | "ownerDocument" | "part" | "prefix" | "scrollHeight" | "scrollLeft" | "scrollTop" | "scrollWidth" | "shadowRoot" | "tagName" | "attachShadow" | "checkVisibility" | "closest" | "computedStyleMap" | "getAttribute" | "getAttributeNS" | "getAttributeNames" | "getAttributeNode" | "getAttributeNodeNS" | "getBoundingClientRect" | "getClientRects" | "getElementsByClassName" | "getElementsByTagName" | "getElementsByTagNameNS" | "hasAttribute" | "hasAttributeNS" | "hasAttributes" | "hasPointerCapture" | "insertAdjacentElement" | "insertAdjacentHTML" | "insertAdjacentText" | "releasePointerCapture" | "removeAttribute" | "removeAttributeNS" | "removeAttributeNode" | "requestFullscreen" | "requestPointerLock" | "scrollBy" | "scrollIntoView" | "scrollTo" | "setAttribute" | "setAttributeNS" | "setAttributeNode" | "setAttributeNodeNS" | "setHTMLUnsafe" | "setPointerCapture" | "toggleAttribute" | "webkitMatchesSelector" | "_clickOutside" | "_onResize" | "_ripple" | "_observe" | "_mutate" | "_onScroll" | "_touchHandlers" | "_transitionInitialStyles" | "baseURI" | "childNodes" | "firstChild" | "isConnected" | "lastChild" | "nextSibling" | "nodeName" | "nodeType" | "nodeValue" | "parentElement" | "parentNode" | "previousSibling" | "textContent" | "appendChild" | "cloneNode" | "compareDocumentPosition" | "getRootNode" | "hasChildNodes" | "insertBefore" | "isDefaultNamespace" | "isEqualNode" | "isSameNode" | "lookupNamespaceURI" | "lookupPrefix" | "removeChild" | "replaceChild" | "ELEMENT_NODE" | "ATTRIBUTE_NODE" | "TEXT_NODE" | "CDATA_SECTION_NODE" | "ENTITY_REFERENCE_NODE" | "ENTITY_NODE" | "PROCESSING_INSTRUCTION_NODE" | "COMMENT_NODE" | "DOCUMENT_NODE" | "DOCUMENT_TYPE_NODE" | "DOCUMENT_FRAGMENT_NODE" | "NOTATION_NODE" | "DOCUMENT_POSITION_DISCONNECTED" | "DOCUMENT_POSITION_PRECEDING" | "DOCUMENT_POSITION_FOLLOWING" | "DOCUMENT_POSITION_CONTAINS" | "DOCUMENT_POSITION_CONTAINED_BY" | "DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC" | "dispatchEvent" | "ariaAtomic" | "ariaAutoComplete" | "ariaBrailleLabel" | "ariaBrailleRoleDescription" | "ariaBusy" | "ariaChecked" | "ariaColCount" | "ariaColIndex" | "ariaColSpan" | "ariaCurrent" | "ariaDescription" | "ariaDisabled" | "ariaExpanded" | "ariaHasPopup" | "ariaHidden" | "ariaInvalid" | "ariaKeyShortcuts" | "ariaLabel" | "ariaLevel" | "ariaLive" | "ariaModal" | "ariaMultiLine" | "ariaMultiSelectable" | "ariaOrientation" | "ariaPlaceholder" | "ariaPosInSet" | "ariaPressed" | "ariaReadOnly" | "ariaRequired" | "ariaRoleDescription" | "ariaRowCount" | "ariaRowIndex" | "ariaRowSpan" | "ariaSelected" | "ariaSetSize" | "ariaSort" | "ariaValueMax" | "ariaValueMin" | "ariaValueNow" | "ariaValueText" | "role" | "getAnimations" | "after" | "before" | "replaceWith" | "innerHTML" | "nextElementSibling" | "previousElementSibling" | "childElementCount" | "children" | "firstElementChild" | "lastElementChild" | "append" | "prepend" | "querySelector" | "querySelectorAll" | "replaceChildren" | "assignedSlot" | "attributeStyleMap" | "contentEditable" | "enterKeyHint" | "inputMode" | "isContentEditable" | "onabort" | "onanimationcancel" | "onanimationend" | "onanimationiteration" | "onanimationstart" | "onauxclick" | "onbeforeinput" | "onbeforetoggle" | "onblur" | "oncancel" | "oncanplay" | "oncanplaythrough" | "onchange" | "onclick" | "onclose" | "oncontextmenu" | "oncopy" | "oncuechange" | "oncut" | "ondblclick" | "ondrag" | "ondragend" | "ondragenter" | "ondragleave" | "ondragover" | "ondragstart" | "ondrop" | "ondurationchange" | "onemptied" | "onended" | "onerror" | "onfocus" | "onformdata" | "ongotpointercapture" | "oninput" | "oninvalid" | "onkeydown" | "onkeypress" | "onkeyup" | "onload" | "onloadeddata" | "onloadedmetadata" | "onloadstart" | "onlostpointercapture" | "onmousedown" | "onmouseenter" | "onmouseleave" | "onmousemove" | "onmouseout" | "onmouseover" | "onmouseup" | "onpaste" | "onpause" | "onplay" | "onplaying" | "onpointercancel" | "onpointerdown" | "onpointerenter" | "onpointerleave" | "onpointermove" | "onpointerout" | "onpointerover" | "onpointerup" | "onprogress" | "onratechange" | "onreset" | "onresize" | "onscroll" | "onscrollend" | "onsecuritypolicyviolation" | "onseeked" | "onseeking" | "onselect" | "onselectionchange" | "onselectstart" | "onslotchange" | "onstalled" | "onsubmit" | "onsuspend" | "ontimeupdate" | "ontoggle" | "ontouchcancel" | "ontouchend" | "ontouchmove" | "ontouchstart" | "ontransitioncancel" | "ontransitionend" | "ontransitionrun" | "ontransitionstart" | "onvolumechange" | "onwaiting" | "onwebkitanimationend" | "onwebkitanimationiteration" | "onwebkitanimationstart" | "onwebkittransitionend" | "onwheel" | "autofocus" | "dataset" | "nonce" | "tabIndex" | "disabled" | "labels" | "multiple" | "size" | "validationMessage" | "validity" | "willValidate" | "setCustomValidity" | "showPicker" | "readonly" | "maxLength" | "list" | "accept" | "readOnly" | "_" | "alt" | "step" | "placeholder" | "src" | "capture" | "checked" | "indeterminate" | "align" | "messages" | "rules" | "minLength" | "isValid" | "focused" | "errorMessages" | "maxErrors" | "validate" | "resetValidation" | "density" | "rounded" | "tile" | "_allExposed" | "clearIcon" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "controlRef" | "fieldIconColor" | "persistentPlaceholder" | "persistentCounter" | "defaultChecked" | "defaultValue" | "dirName" | "files" | "formAction" | "formEnctype" | "formMethod" | "formNoValidate" | "formTarget" | "selectionDirection" | "selectionEnd" | "selectionStart" | "useMap" | "valueAsDate" | "valueAsNumber" | "webkitEntries" | "webkitdirectory" | "setRangeText" | "setSelectionRange" | "stepDown" | "stepUp" | "popoverTargetAction" | "popoverTargetElement"> & vue.ShallowUnwrapRef<HTMLInputElement & Omit<Omit<{
38387
38393
  $: vue.ComponentInternalInstance;
38388
38394
  $data: {};
38389
38395
  $props: Partial<{
@@ -38723,6 +38729,7 @@ declare const VNumberInput: {
38723
38729
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
38724
38730
  }, {
38725
38731
  controlRef: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
38732
+ fieldIconColor: vue.ComputedRef<string | undefined>;
38726
38733
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
38727
38734
  'update:focused': (focused: boolean) => true;
38728
38735
  'update:modelValue': (value: any) => true;
@@ -38830,8 +38837,9 @@ declare const VNumberInput: {
38830
38837
  iconColor?: string | boolean | undefined;
38831
38838
  } & {
38832
38839
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
38833
- }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef"> & vue.ShallowUnwrapRef<{
38840
+ }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & vue.ShallowUnwrapRef<{
38834
38841
  controlRef: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
38842
+ fieldIconColor: vue.ComputedRef<string | undefined>;
38835
38843
  }> & {} & vue.ComponentCustomProperties & {} & GenericProps<{
38836
38844
  modelValue?: unknown;
38837
38845
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
@@ -38844,6 +38852,7 @@ declare const VNumberInput: {
38844
38852
  errorMessages: vue.ComputedRef<string[]>;
38845
38853
  } | {
38846
38854
  controlRef: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
38855
+ fieldIconColor: vue.ComputedRef<string | undefined>;
38847
38856
  } | {};
38848
38857
  }> & {} & vue.ComponentCustomProperties & {}, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "loading" | "label" | "prefix" | "role" | "class" | "theme" | "placeholder" | "$children" | "v-slots" | "v-slot:default" | keyof 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}`> & {
38849
38858
  _allExposed: (HTMLInputElement & Omit<Omit<{
@@ -39186,6 +39195,7 @@ declare const VNumberInput: {
39186
39195
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
39187
39196
  }, {
39188
39197
  controlRef: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
39198
+ fieldIconColor: vue.ComputedRef<string | undefined>;
39189
39199
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
39190
39200
  'update:focused': (focused: boolean) => true;
39191
39201
  'update:modelValue': (value: any) => true;
@@ -39293,8 +39303,9 @@ declare const VNumberInput: {
39293
39303
  iconColor?: string | boolean | undefined;
39294
39304
  } & {
39295
39305
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
39296
- }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef"> & vue.ShallowUnwrapRef<{
39306
+ }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & vue.ShallowUnwrapRef<{
39297
39307
  controlRef: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
39308
+ fieldIconColor: vue.ComputedRef<string | undefined>;
39298
39309
  }> & {} & vue.ComponentCustomProperties & {} & GenericProps<{
39299
39310
  modelValue?: unknown;
39300
39311
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
@@ -39307,6 +39318,7 @@ declare const VNumberInput: {
39307
39318
  errorMessages: vue.ComputedRef<string[]>;
39308
39319
  } | {
39309
39320
  controlRef: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
39321
+ fieldIconColor: vue.ComputedRef<string | undefined>;
39310
39322
  } | {};
39311
39323
  }) | {};
39312
39324
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
@@ -40158,6 +40170,7 @@ declare const VNumberInput: {
40158
40170
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
40159
40171
  }, {
40160
40172
  controlRef: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
40173
+ fieldIconColor: vue.ComputedRef<string | undefined>;
40161
40174
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
40162
40175
  'update:focused': (focused: boolean) => true;
40163
40176
  'update:modelValue': (value: any) => true;
@@ -40265,8 +40278,9 @@ declare const VNumberInput: {
40265
40278
  iconColor?: string | boolean | undefined;
40266
40279
  } & {
40267
40280
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
40268
- }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef"> & vue.ShallowUnwrapRef<{
40281
+ }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & vue.ShallowUnwrapRef<{
40269
40282
  controlRef: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
40283
+ fieldIconColor: vue.ComputedRef<string | undefined>;
40270
40284
  }> & {} & vue.ComponentCustomProperties & {} & GenericProps<{
40271
40285
  modelValue?: unknown;
40272
40286
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
@@ -40279,6 +40293,7 @@ declare const VNumberInput: {
40279
40293
  errorMessages: vue.ComputedRef<string[]>;
40280
40294
  } | {
40281
40295
  controlRef: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
40296
+ fieldIconColor: vue.ComputedRef<string | undefined>;
40282
40297
  } | {};
40283
40298
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
40284
40299
  'click:control': (e: MouseEvent) => true;
@@ -40510,7 +40525,7 @@ declare const VNumberInput: {
40510
40525
  "onUpdate:modelValue"?: ((val: string) => any) | undefined;
40511
40526
  "onClick:control"?: ((e: MouseEvent) => any) | undefined;
40512
40527
  "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
40513
- }, "normalize" | "flat" | "reverse" | "variant" | "name" | "max" | "required" | "type" | "error" | "id" | "matches" | "height" | "width" | "active" | "remove" | "min" | "direction" | "translate" | "contains" | "value" | "hidden" | "form" | "select" | "slot" | "style" | "title" | "dir" | "animate" | "pattern" | "blur" | "click" | "focus" | "reset" | "scroll" | "autocomplete" | "checkValidity" | "reportValidity" | "addEventListener" | "removeEventListener" | "accessKey" | "accessKeyLabel" | "autocapitalize" | "draggable" | "inert" | "innerText" | "lang" | "offsetHeight" | "offsetLeft" | "offsetParent" | "offsetTop" | "offsetWidth" | "outerText" | "popover" | "spellcheck" | "attachInternals" | "hidePopover" | "showPopover" | "togglePopover" | "attributes" | "classList" | "className" | "clientHeight" | "clientLeft" | "clientTop" | "clientWidth" | "localName" | "namespaceURI" | "onfullscreenchange" | "onfullscreenerror" | "outerHTML" | "ownerDocument" | "part" | "prefix" | "scrollHeight" | "scrollLeft" | "scrollTop" | "scrollWidth" | "shadowRoot" | "tagName" | "attachShadow" | "checkVisibility" | "closest" | "computedStyleMap" | "getAttribute" | "getAttributeNS" | "getAttributeNames" | "getAttributeNode" | "getAttributeNodeNS" | "getBoundingClientRect" | "getClientRects" | "getElementsByClassName" | "getElementsByTagName" | "getElementsByTagNameNS" | "hasAttribute" | "hasAttributeNS" | "hasAttributes" | "hasPointerCapture" | "insertAdjacentElement" | "insertAdjacentHTML" | "insertAdjacentText" | "releasePointerCapture" | "removeAttribute" | "removeAttributeNS" | "removeAttributeNode" | "requestFullscreen" | "requestPointerLock" | "scrollBy" | "scrollIntoView" | "scrollTo" | "setAttribute" | "setAttributeNS" | "setAttributeNode" | "setAttributeNodeNS" | "setHTMLUnsafe" | "setPointerCapture" | "toggleAttribute" | "webkitMatchesSelector" | "_clickOutside" | "_onResize" | "_ripple" | "_observe" | "_mutate" | "_onScroll" | "_touchHandlers" | "_transitionInitialStyles" | "baseURI" | "childNodes" | "firstChild" | "isConnected" | "lastChild" | "nextSibling" | "nodeName" | "nodeType" | "nodeValue" | "parentElement" | "parentNode" | "previousSibling" | "textContent" | "appendChild" | "cloneNode" | "compareDocumentPosition" | "getRootNode" | "hasChildNodes" | "insertBefore" | "isDefaultNamespace" | "isEqualNode" | "isSameNode" | "lookupNamespaceURI" | "lookupPrefix" | "removeChild" | "replaceChild" | "ELEMENT_NODE" | "ATTRIBUTE_NODE" | "TEXT_NODE" | "CDATA_SECTION_NODE" | "ENTITY_REFERENCE_NODE" | "ENTITY_NODE" | "PROCESSING_INSTRUCTION_NODE" | "COMMENT_NODE" | "DOCUMENT_NODE" | "DOCUMENT_TYPE_NODE" | "DOCUMENT_FRAGMENT_NODE" | "NOTATION_NODE" | "DOCUMENT_POSITION_DISCONNECTED" | "DOCUMENT_POSITION_PRECEDING" | "DOCUMENT_POSITION_FOLLOWING" | "DOCUMENT_POSITION_CONTAINS" | "DOCUMENT_POSITION_CONTAINED_BY" | "DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC" | "dispatchEvent" | "ariaAtomic" | "ariaAutoComplete" | "ariaBrailleLabel" | "ariaBrailleRoleDescription" | "ariaBusy" | "ariaChecked" | "ariaColCount" | "ariaColIndex" | "ariaColSpan" | "ariaCurrent" | "ariaDescription" | "ariaDisabled" | "ariaExpanded" | "ariaHasPopup" | "ariaHidden" | "ariaInvalid" | "ariaKeyShortcuts" | "ariaLabel" | "ariaLevel" | "ariaLive" | "ariaModal" | "ariaMultiLine" | "ariaMultiSelectable" | "ariaOrientation" | "ariaPlaceholder" | "ariaPosInSet" | "ariaPressed" | "ariaReadOnly" | "ariaRequired" | "ariaRoleDescription" | "ariaRowCount" | "ariaRowIndex" | "ariaRowSpan" | "ariaSelected" | "ariaSetSize" | "ariaSort" | "ariaValueMax" | "ariaValueMin" | "ariaValueNow" | "ariaValueText" | "role" | "getAnimations" | "after" | "before" | "replaceWith" | "innerHTML" | "nextElementSibling" | "previousElementSibling" | "childElementCount" | "children" | "firstElementChild" | "lastElementChild" | "append" | "prepend" | "querySelector" | "querySelectorAll" | "replaceChildren" | "assignedSlot" | "attributeStyleMap" | "contentEditable" | "enterKeyHint" | "inputMode" | "isContentEditable" | "onabort" | "onanimationcancel" | "onanimationend" | "onanimationiteration" | "onanimationstart" | "onauxclick" | "onbeforeinput" | "onbeforetoggle" | "onblur" | "oncancel" | "oncanplay" | "oncanplaythrough" | "onchange" | "onclick" | "onclose" | "oncontextmenu" | "oncopy" | "oncuechange" | "oncut" | "ondblclick" | "ondrag" | "ondragend" | "ondragenter" | "ondragleave" | "ondragover" | "ondragstart" | "ondrop" | "ondurationchange" | "onemptied" | "onended" | "onerror" | "onfocus" | "onformdata" | "ongotpointercapture" | "oninput" | "oninvalid" | "onkeydown" | "onkeypress" | "onkeyup" | "onload" | "onloadeddata" | "onloadedmetadata" | "onloadstart" | "onlostpointercapture" | "onmousedown" | "onmouseenter" | "onmouseleave" | "onmousemove" | "onmouseout" | "onmouseover" | "onmouseup" | "onpaste" | "onpause" | "onplay" | "onplaying" | "onpointercancel" | "onpointerdown" | "onpointerenter" | "onpointerleave" | "onpointermove" | "onpointerout" | "onpointerover" | "onpointerup" | "onprogress" | "onratechange" | "onreset" | "onresize" | "onscroll" | "onscrollend" | "onsecuritypolicyviolation" | "onseeked" | "onseeking" | "onselect" | "onselectionchange" | "onselectstart" | "onslotchange" | "onstalled" | "onsubmit" | "onsuspend" | "ontimeupdate" | "ontoggle" | "ontouchcancel" | "ontouchend" | "ontouchmove" | "ontouchstart" | "ontransitioncancel" | "ontransitionend" | "ontransitionrun" | "ontransitionstart" | "onvolumechange" | "onwaiting" | "onwebkitanimationend" | "onwebkitanimationiteration" | "onwebkitanimationstart" | "onwebkittransitionend" | "onwheel" | "autofocus" | "dataset" | "nonce" | "tabIndex" | "disabled" | "labels" | "multiple" | "size" | "validationMessage" | "validity" | "willValidate" | "setCustomValidity" | "showPicker" | "readonly" | "maxLength" | "list" | "accept" | "readOnly" | "_" | "alt" | "step" | "placeholder" | "src" | "capture" | "checked" | "indeterminate" | "align" | "messages" | "rules" | "minLength" | "isValid" | "focused" | "errorMessages" | "maxErrors" | "validate" | "resetValidation" | "density" | "rounded" | "tile" | "_allExposed" | "clearIcon" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "controlRef" | "persistentPlaceholder" | "persistentCounter" | "defaultChecked" | "defaultValue" | "dirName" | "files" | "formAction" | "formEnctype" | "formMethod" | "formNoValidate" | "formTarget" | "selectionDirection" | "selectionEnd" | "selectionStart" | "useMap" | "valueAsDate" | "valueAsNumber" | "webkitEntries" | "webkitdirectory" | "setRangeText" | "setSelectionRange" | "stepDown" | "stepUp" | "popoverTargetAction" | "popoverTargetElement"> & vue.ShallowUnwrapRef<HTMLInputElement & Omit<Omit<{
40528
+ }, "normalize" | "flat" | "reverse" | "variant" | "name" | "max" | "required" | "type" | "error" | "id" | "matches" | "height" | "width" | "active" | "remove" | "min" | "direction" | "translate" | "contains" | "value" | "hidden" | "form" | "select" | "slot" | "style" | "title" | "dir" | "animate" | "pattern" | "blur" | "click" | "focus" | "reset" | "scroll" | "autocomplete" | "checkValidity" | "reportValidity" | "addEventListener" | "removeEventListener" | "accessKey" | "accessKeyLabel" | "autocapitalize" | "draggable" | "inert" | "innerText" | "lang" | "offsetHeight" | "offsetLeft" | "offsetParent" | "offsetTop" | "offsetWidth" | "outerText" | "popover" | "spellcheck" | "attachInternals" | "hidePopover" | "showPopover" | "togglePopover" | "attributes" | "classList" | "className" | "clientHeight" | "clientLeft" | "clientTop" | "clientWidth" | "localName" | "namespaceURI" | "onfullscreenchange" | "onfullscreenerror" | "outerHTML" | "ownerDocument" | "part" | "prefix" | "scrollHeight" | "scrollLeft" | "scrollTop" | "scrollWidth" | "shadowRoot" | "tagName" | "attachShadow" | "checkVisibility" | "closest" | "computedStyleMap" | "getAttribute" | "getAttributeNS" | "getAttributeNames" | "getAttributeNode" | "getAttributeNodeNS" | "getBoundingClientRect" | "getClientRects" | "getElementsByClassName" | "getElementsByTagName" | "getElementsByTagNameNS" | "hasAttribute" | "hasAttributeNS" | "hasAttributes" | "hasPointerCapture" | "insertAdjacentElement" | "insertAdjacentHTML" | "insertAdjacentText" | "releasePointerCapture" | "removeAttribute" | "removeAttributeNS" | "removeAttributeNode" | "requestFullscreen" | "requestPointerLock" | "scrollBy" | "scrollIntoView" | "scrollTo" | "setAttribute" | "setAttributeNS" | "setAttributeNode" | "setAttributeNodeNS" | "setHTMLUnsafe" | "setPointerCapture" | "toggleAttribute" | "webkitMatchesSelector" | "_clickOutside" | "_onResize" | "_ripple" | "_observe" | "_mutate" | "_onScroll" | "_touchHandlers" | "_transitionInitialStyles" | "baseURI" | "childNodes" | "firstChild" | "isConnected" | "lastChild" | "nextSibling" | "nodeName" | "nodeType" | "nodeValue" | "parentElement" | "parentNode" | "previousSibling" | "textContent" | "appendChild" | "cloneNode" | "compareDocumentPosition" | "getRootNode" | "hasChildNodes" | "insertBefore" | "isDefaultNamespace" | "isEqualNode" | "isSameNode" | "lookupNamespaceURI" | "lookupPrefix" | "removeChild" | "replaceChild" | "ELEMENT_NODE" | "ATTRIBUTE_NODE" | "TEXT_NODE" | "CDATA_SECTION_NODE" | "ENTITY_REFERENCE_NODE" | "ENTITY_NODE" | "PROCESSING_INSTRUCTION_NODE" | "COMMENT_NODE" | "DOCUMENT_NODE" | "DOCUMENT_TYPE_NODE" | "DOCUMENT_FRAGMENT_NODE" | "NOTATION_NODE" | "DOCUMENT_POSITION_DISCONNECTED" | "DOCUMENT_POSITION_PRECEDING" | "DOCUMENT_POSITION_FOLLOWING" | "DOCUMENT_POSITION_CONTAINS" | "DOCUMENT_POSITION_CONTAINED_BY" | "DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC" | "dispatchEvent" | "ariaAtomic" | "ariaAutoComplete" | "ariaBrailleLabel" | "ariaBrailleRoleDescription" | "ariaBusy" | "ariaChecked" | "ariaColCount" | "ariaColIndex" | "ariaColSpan" | "ariaCurrent" | "ariaDescription" | "ariaDisabled" | "ariaExpanded" | "ariaHasPopup" | "ariaHidden" | "ariaInvalid" | "ariaKeyShortcuts" | "ariaLabel" | "ariaLevel" | "ariaLive" | "ariaModal" | "ariaMultiLine" | "ariaMultiSelectable" | "ariaOrientation" | "ariaPlaceholder" | "ariaPosInSet" | "ariaPressed" | "ariaReadOnly" | "ariaRequired" | "ariaRoleDescription" | "ariaRowCount" | "ariaRowIndex" | "ariaRowSpan" | "ariaSelected" | "ariaSetSize" | "ariaSort" | "ariaValueMax" | "ariaValueMin" | "ariaValueNow" | "ariaValueText" | "role" | "getAnimations" | "after" | "before" | "replaceWith" | "innerHTML" | "nextElementSibling" | "previousElementSibling" | "childElementCount" | "children" | "firstElementChild" | "lastElementChild" | "append" | "prepend" | "querySelector" | "querySelectorAll" | "replaceChildren" | "assignedSlot" | "attributeStyleMap" | "contentEditable" | "enterKeyHint" | "inputMode" | "isContentEditable" | "onabort" | "onanimationcancel" | "onanimationend" | "onanimationiteration" | "onanimationstart" | "onauxclick" | "onbeforeinput" | "onbeforetoggle" | "onblur" | "oncancel" | "oncanplay" | "oncanplaythrough" | "onchange" | "onclick" | "onclose" | "oncontextmenu" | "oncopy" | "oncuechange" | "oncut" | "ondblclick" | "ondrag" | "ondragend" | "ondragenter" | "ondragleave" | "ondragover" | "ondragstart" | "ondrop" | "ondurationchange" | "onemptied" | "onended" | "onerror" | "onfocus" | "onformdata" | "ongotpointercapture" | "oninput" | "oninvalid" | "onkeydown" | "onkeypress" | "onkeyup" | "onload" | "onloadeddata" | "onloadedmetadata" | "onloadstart" | "onlostpointercapture" | "onmousedown" | "onmouseenter" | "onmouseleave" | "onmousemove" | "onmouseout" | "onmouseover" | "onmouseup" | "onpaste" | "onpause" | "onplay" | "onplaying" | "onpointercancel" | "onpointerdown" | "onpointerenter" | "onpointerleave" | "onpointermove" | "onpointerout" | "onpointerover" | "onpointerup" | "onprogress" | "onratechange" | "onreset" | "onresize" | "onscroll" | "onscrollend" | "onsecuritypolicyviolation" | "onseeked" | "onseeking" | "onselect" | "onselectionchange" | "onselectstart" | "onslotchange" | "onstalled" | "onsubmit" | "onsuspend" | "ontimeupdate" | "ontoggle" | "ontouchcancel" | "ontouchend" | "ontouchmove" | "ontouchstart" | "ontransitioncancel" | "ontransitionend" | "ontransitionrun" | "ontransitionstart" | "onvolumechange" | "onwaiting" | "onwebkitanimationend" | "onwebkitanimationiteration" | "onwebkitanimationstart" | "onwebkittransitionend" | "onwheel" | "autofocus" | "dataset" | "nonce" | "tabIndex" | "disabled" | "labels" | "multiple" | "size" | "validationMessage" | "validity" | "willValidate" | "setCustomValidity" | "showPicker" | "readonly" | "maxLength" | "list" | "accept" | "readOnly" | "_" | "alt" | "step" | "placeholder" | "src" | "capture" | "checked" | "indeterminate" | "align" | "messages" | "rules" | "minLength" | "isValid" | "focused" | "errorMessages" | "maxErrors" | "validate" | "resetValidation" | "density" | "rounded" | "tile" | "_allExposed" | "clearIcon" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "controlRef" | "fieldIconColor" | "persistentPlaceholder" | "persistentCounter" | "defaultChecked" | "defaultValue" | "dirName" | "files" | "formAction" | "formEnctype" | "formMethod" | "formNoValidate" | "formTarget" | "selectionDirection" | "selectionEnd" | "selectionStart" | "useMap" | "valueAsDate" | "valueAsNumber" | "webkitEntries" | "webkitdirectory" | "setRangeText" | "setSelectionRange" | "stepDown" | "stepUp" | "popoverTargetAction" | "popoverTargetElement"> & vue.ShallowUnwrapRef<HTMLInputElement & Omit<Omit<{
40514
40529
  $: vue.ComponentInternalInstance;
40515
40530
  $data: {};
40516
40531
  $props: Partial<{
@@ -40850,6 +40865,7 @@ declare const VNumberInput: {
40850
40865
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
40851
40866
  }, {
40852
40867
  controlRef: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
40868
+ fieldIconColor: vue.ComputedRef<string | undefined>;
40853
40869
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
40854
40870
  'update:focused': (focused: boolean) => true;
40855
40871
  'update:modelValue': (value: any) => true;
@@ -40957,8 +40973,9 @@ declare const VNumberInput: {
40957
40973
  iconColor?: string | boolean | undefined;
40958
40974
  } & {
40959
40975
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
40960
- }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef"> & vue.ShallowUnwrapRef<{
40976
+ }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & vue.ShallowUnwrapRef<{
40961
40977
  controlRef: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
40978
+ fieldIconColor: vue.ComputedRef<string | undefined>;
40962
40979
  }> & {} & vue.ComponentCustomProperties & {} & GenericProps<{
40963
40980
  modelValue?: unknown;
40964
40981
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
@@ -40971,6 +40988,7 @@ declare const VNumberInput: {
40971
40988
  errorMessages: vue.ComputedRef<string[]>;
40972
40989
  } | {
40973
40990
  controlRef: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
40991
+ fieldIconColor: vue.ComputedRef<string | undefined>;
40974
40992
  } | {};
40975
40993
  }> & {} & vue.ComponentCustomProperties & {}, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "loading" | "label" | "prefix" | "role" | "class" | "theme" | "placeholder" | "$children" | "v-slots" | "v-slot:default" | keyof 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}`> & {
40976
40994
  _allExposed: (HTMLInputElement & Omit<Omit<{
@@ -41313,6 +41331,7 @@ declare const VNumberInput: {
41313
41331
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
41314
41332
  }, {
41315
41333
  controlRef: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
41334
+ fieldIconColor: vue.ComputedRef<string | undefined>;
41316
41335
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
41317
41336
  'update:focused': (focused: boolean) => true;
41318
41337
  'update:modelValue': (value: any) => true;
@@ -41420,8 +41439,9 @@ declare const VNumberInput: {
41420
41439
  iconColor?: string | boolean | undefined;
41421
41440
  } & {
41422
41441
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
41423
- }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef"> & vue.ShallowUnwrapRef<{
41442
+ }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & vue.ShallowUnwrapRef<{
41424
41443
  controlRef: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
41444
+ fieldIconColor: vue.ComputedRef<string | undefined>;
41425
41445
  }> & {} & vue.ComponentCustomProperties & {} & GenericProps<{
41426
41446
  modelValue?: unknown;
41427
41447
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
@@ -41434,6 +41454,7 @@ declare const VNumberInput: {
41434
41454
  errorMessages: vue.ComputedRef<string[]>;
41435
41455
  } | {
41436
41456
  controlRef: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
41457
+ fieldIconColor: vue.ComputedRef<string | undefined>;
41437
41458
  } | {};
41438
41459
  }) | {};
41439
41460
  }, {}, {}, {}, {
@@ -42262,6 +42283,7 @@ declare const VNumberInput: {
42262
42283
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
42263
42284
  }, {
42264
42285
  controlRef: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
42286
+ fieldIconColor: vue.ComputedRef<string | undefined>;
42265
42287
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
42266
42288
  'update:focused': (focused: boolean) => true;
42267
42289
  'update:modelValue': (value: any) => true;
@@ -42369,8 +42391,9 @@ declare const VNumberInput: {
42369
42391
  iconColor?: string | boolean | undefined;
42370
42392
  } & {
42371
42393
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
42372
- }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef"> & vue.ShallowUnwrapRef<{
42394
+ }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & vue.ShallowUnwrapRef<{
42373
42395
  controlRef: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
42396
+ fieldIconColor: vue.ComputedRef<string | undefined>;
42374
42397
  }> & {} & vue.ComponentCustomProperties & {} & GenericProps<{
42375
42398
  modelValue?: unknown;
42376
42399
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
@@ -42383,6 +42406,7 @@ declare const VNumberInput: {
42383
42406
  errorMessages: vue.ComputedRef<string[]>;
42384
42407
  } | {
42385
42408
  controlRef: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
42409
+ fieldIconColor: vue.ComputedRef<string | undefined>;
42386
42410
  } | {};
42387
42411
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
42388
42412
  'click:control': (e: MouseEvent) => true;
@@ -42614,7 +42638,7 @@ declare const VNumberInput: {
42614
42638
  "onUpdate:modelValue"?: ((val: string) => any) | undefined;
42615
42639
  "onClick:control"?: ((e: MouseEvent) => any) | undefined;
42616
42640
  "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
42617
- }, "normalize" | "flat" | "reverse" | "variant" | "name" | "max" | "required" | "type" | "error" | "id" | "matches" | "height" | "width" | "active" | "remove" | "min" | "direction" | "translate" | "contains" | "value" | "hidden" | "form" | "select" | "slot" | "style" | "title" | "dir" | "animate" | "pattern" | "blur" | "click" | "focus" | "reset" | "scroll" | "autocomplete" | "checkValidity" | "reportValidity" | "addEventListener" | "removeEventListener" | "accessKey" | "accessKeyLabel" | "autocapitalize" | "draggable" | "inert" | "innerText" | "lang" | "offsetHeight" | "offsetLeft" | "offsetParent" | "offsetTop" | "offsetWidth" | "outerText" | "popover" | "spellcheck" | "attachInternals" | "hidePopover" | "showPopover" | "togglePopover" | "attributes" | "classList" | "className" | "clientHeight" | "clientLeft" | "clientTop" | "clientWidth" | "localName" | "namespaceURI" | "onfullscreenchange" | "onfullscreenerror" | "outerHTML" | "ownerDocument" | "part" | "prefix" | "scrollHeight" | "scrollLeft" | "scrollTop" | "scrollWidth" | "shadowRoot" | "tagName" | "attachShadow" | "checkVisibility" | "closest" | "computedStyleMap" | "getAttribute" | "getAttributeNS" | "getAttributeNames" | "getAttributeNode" | "getAttributeNodeNS" | "getBoundingClientRect" | "getClientRects" | "getElementsByClassName" | "getElementsByTagName" | "getElementsByTagNameNS" | "hasAttribute" | "hasAttributeNS" | "hasAttributes" | "hasPointerCapture" | "insertAdjacentElement" | "insertAdjacentHTML" | "insertAdjacentText" | "releasePointerCapture" | "removeAttribute" | "removeAttributeNS" | "removeAttributeNode" | "requestFullscreen" | "requestPointerLock" | "scrollBy" | "scrollIntoView" | "scrollTo" | "setAttribute" | "setAttributeNS" | "setAttributeNode" | "setAttributeNodeNS" | "setHTMLUnsafe" | "setPointerCapture" | "toggleAttribute" | "webkitMatchesSelector" | "_clickOutside" | "_onResize" | "_ripple" | "_observe" | "_mutate" | "_onScroll" | "_touchHandlers" | "_transitionInitialStyles" | "baseURI" | "childNodes" | "firstChild" | "isConnected" | "lastChild" | "nextSibling" | "nodeName" | "nodeType" | "nodeValue" | "parentElement" | "parentNode" | "previousSibling" | "textContent" | "appendChild" | "cloneNode" | "compareDocumentPosition" | "getRootNode" | "hasChildNodes" | "insertBefore" | "isDefaultNamespace" | "isEqualNode" | "isSameNode" | "lookupNamespaceURI" | "lookupPrefix" | "removeChild" | "replaceChild" | "ELEMENT_NODE" | "ATTRIBUTE_NODE" | "TEXT_NODE" | "CDATA_SECTION_NODE" | "ENTITY_REFERENCE_NODE" | "ENTITY_NODE" | "PROCESSING_INSTRUCTION_NODE" | "COMMENT_NODE" | "DOCUMENT_NODE" | "DOCUMENT_TYPE_NODE" | "DOCUMENT_FRAGMENT_NODE" | "NOTATION_NODE" | "DOCUMENT_POSITION_DISCONNECTED" | "DOCUMENT_POSITION_PRECEDING" | "DOCUMENT_POSITION_FOLLOWING" | "DOCUMENT_POSITION_CONTAINS" | "DOCUMENT_POSITION_CONTAINED_BY" | "DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC" | "dispatchEvent" | "ariaAtomic" | "ariaAutoComplete" | "ariaBrailleLabel" | "ariaBrailleRoleDescription" | "ariaBusy" | "ariaChecked" | "ariaColCount" | "ariaColIndex" | "ariaColSpan" | "ariaCurrent" | "ariaDescription" | "ariaDisabled" | "ariaExpanded" | "ariaHasPopup" | "ariaHidden" | "ariaInvalid" | "ariaKeyShortcuts" | "ariaLabel" | "ariaLevel" | "ariaLive" | "ariaModal" | "ariaMultiLine" | "ariaMultiSelectable" | "ariaOrientation" | "ariaPlaceholder" | "ariaPosInSet" | "ariaPressed" | "ariaReadOnly" | "ariaRequired" | "ariaRoleDescription" | "ariaRowCount" | "ariaRowIndex" | "ariaRowSpan" | "ariaSelected" | "ariaSetSize" | "ariaSort" | "ariaValueMax" | "ariaValueMin" | "ariaValueNow" | "ariaValueText" | "role" | "getAnimations" | "after" | "before" | "replaceWith" | "innerHTML" | "nextElementSibling" | "previousElementSibling" | "childElementCount" | "children" | "firstElementChild" | "lastElementChild" | "append" | "prepend" | "querySelector" | "querySelectorAll" | "replaceChildren" | "assignedSlot" | "attributeStyleMap" | "contentEditable" | "enterKeyHint" | "inputMode" | "isContentEditable" | "onabort" | "onanimationcancel" | "onanimationend" | "onanimationiteration" | "onanimationstart" | "onauxclick" | "onbeforeinput" | "onbeforetoggle" | "onblur" | "oncancel" | "oncanplay" | "oncanplaythrough" | "onchange" | "onclick" | "onclose" | "oncontextmenu" | "oncopy" | "oncuechange" | "oncut" | "ondblclick" | "ondrag" | "ondragend" | "ondragenter" | "ondragleave" | "ondragover" | "ondragstart" | "ondrop" | "ondurationchange" | "onemptied" | "onended" | "onerror" | "onfocus" | "onformdata" | "ongotpointercapture" | "oninput" | "oninvalid" | "onkeydown" | "onkeypress" | "onkeyup" | "onload" | "onloadeddata" | "onloadedmetadata" | "onloadstart" | "onlostpointercapture" | "onmousedown" | "onmouseenter" | "onmouseleave" | "onmousemove" | "onmouseout" | "onmouseover" | "onmouseup" | "onpaste" | "onpause" | "onplay" | "onplaying" | "onpointercancel" | "onpointerdown" | "onpointerenter" | "onpointerleave" | "onpointermove" | "onpointerout" | "onpointerover" | "onpointerup" | "onprogress" | "onratechange" | "onreset" | "onresize" | "onscroll" | "onscrollend" | "onsecuritypolicyviolation" | "onseeked" | "onseeking" | "onselect" | "onselectionchange" | "onselectstart" | "onslotchange" | "onstalled" | "onsubmit" | "onsuspend" | "ontimeupdate" | "ontoggle" | "ontouchcancel" | "ontouchend" | "ontouchmove" | "ontouchstart" | "ontransitioncancel" | "ontransitionend" | "ontransitionrun" | "ontransitionstart" | "onvolumechange" | "onwaiting" | "onwebkitanimationend" | "onwebkitanimationiteration" | "onwebkitanimationstart" | "onwebkittransitionend" | "onwheel" | "autofocus" | "dataset" | "nonce" | "tabIndex" | "disabled" | "labels" | "multiple" | "size" | "validationMessage" | "validity" | "willValidate" | "setCustomValidity" | "showPicker" | "readonly" | "maxLength" | "list" | "accept" | "readOnly" | "_" | "alt" | "step" | "placeholder" | "src" | "capture" | "checked" | "indeterminate" | "align" | "messages" | "rules" | "minLength" | "isValid" | "focused" | "errorMessages" | "maxErrors" | "validate" | "resetValidation" | "density" | "rounded" | "tile" | "_allExposed" | "clearIcon" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "controlRef" | "persistentPlaceholder" | "persistentCounter" | "defaultChecked" | "defaultValue" | "dirName" | "files" | "formAction" | "formEnctype" | "formMethod" | "formNoValidate" | "formTarget" | "selectionDirection" | "selectionEnd" | "selectionStart" | "useMap" | "valueAsDate" | "valueAsNumber" | "webkitEntries" | "webkitdirectory" | "setRangeText" | "setSelectionRange" | "stepDown" | "stepUp" | "popoverTargetAction" | "popoverTargetElement"> & vue.ShallowUnwrapRef<HTMLInputElement & Omit<Omit<{
42641
+ }, "normalize" | "flat" | "reverse" | "variant" | "name" | "max" | "required" | "type" | "error" | "id" | "matches" | "height" | "width" | "active" | "remove" | "min" | "direction" | "translate" | "contains" | "value" | "hidden" | "form" | "select" | "slot" | "style" | "title" | "dir" | "animate" | "pattern" | "blur" | "click" | "focus" | "reset" | "scroll" | "autocomplete" | "checkValidity" | "reportValidity" | "addEventListener" | "removeEventListener" | "accessKey" | "accessKeyLabel" | "autocapitalize" | "draggable" | "inert" | "innerText" | "lang" | "offsetHeight" | "offsetLeft" | "offsetParent" | "offsetTop" | "offsetWidth" | "outerText" | "popover" | "spellcheck" | "attachInternals" | "hidePopover" | "showPopover" | "togglePopover" | "attributes" | "classList" | "className" | "clientHeight" | "clientLeft" | "clientTop" | "clientWidth" | "localName" | "namespaceURI" | "onfullscreenchange" | "onfullscreenerror" | "outerHTML" | "ownerDocument" | "part" | "prefix" | "scrollHeight" | "scrollLeft" | "scrollTop" | "scrollWidth" | "shadowRoot" | "tagName" | "attachShadow" | "checkVisibility" | "closest" | "computedStyleMap" | "getAttribute" | "getAttributeNS" | "getAttributeNames" | "getAttributeNode" | "getAttributeNodeNS" | "getBoundingClientRect" | "getClientRects" | "getElementsByClassName" | "getElementsByTagName" | "getElementsByTagNameNS" | "hasAttribute" | "hasAttributeNS" | "hasAttributes" | "hasPointerCapture" | "insertAdjacentElement" | "insertAdjacentHTML" | "insertAdjacentText" | "releasePointerCapture" | "removeAttribute" | "removeAttributeNS" | "removeAttributeNode" | "requestFullscreen" | "requestPointerLock" | "scrollBy" | "scrollIntoView" | "scrollTo" | "setAttribute" | "setAttributeNS" | "setAttributeNode" | "setAttributeNodeNS" | "setHTMLUnsafe" | "setPointerCapture" | "toggleAttribute" | "webkitMatchesSelector" | "_clickOutside" | "_onResize" | "_ripple" | "_observe" | "_mutate" | "_onScroll" | "_touchHandlers" | "_transitionInitialStyles" | "baseURI" | "childNodes" | "firstChild" | "isConnected" | "lastChild" | "nextSibling" | "nodeName" | "nodeType" | "nodeValue" | "parentElement" | "parentNode" | "previousSibling" | "textContent" | "appendChild" | "cloneNode" | "compareDocumentPosition" | "getRootNode" | "hasChildNodes" | "insertBefore" | "isDefaultNamespace" | "isEqualNode" | "isSameNode" | "lookupNamespaceURI" | "lookupPrefix" | "removeChild" | "replaceChild" | "ELEMENT_NODE" | "ATTRIBUTE_NODE" | "TEXT_NODE" | "CDATA_SECTION_NODE" | "ENTITY_REFERENCE_NODE" | "ENTITY_NODE" | "PROCESSING_INSTRUCTION_NODE" | "COMMENT_NODE" | "DOCUMENT_NODE" | "DOCUMENT_TYPE_NODE" | "DOCUMENT_FRAGMENT_NODE" | "NOTATION_NODE" | "DOCUMENT_POSITION_DISCONNECTED" | "DOCUMENT_POSITION_PRECEDING" | "DOCUMENT_POSITION_FOLLOWING" | "DOCUMENT_POSITION_CONTAINS" | "DOCUMENT_POSITION_CONTAINED_BY" | "DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC" | "dispatchEvent" | "ariaAtomic" | "ariaAutoComplete" | "ariaBrailleLabel" | "ariaBrailleRoleDescription" | "ariaBusy" | "ariaChecked" | "ariaColCount" | "ariaColIndex" | "ariaColSpan" | "ariaCurrent" | "ariaDescription" | "ariaDisabled" | "ariaExpanded" | "ariaHasPopup" | "ariaHidden" | "ariaInvalid" | "ariaKeyShortcuts" | "ariaLabel" | "ariaLevel" | "ariaLive" | "ariaModal" | "ariaMultiLine" | "ariaMultiSelectable" | "ariaOrientation" | "ariaPlaceholder" | "ariaPosInSet" | "ariaPressed" | "ariaReadOnly" | "ariaRequired" | "ariaRoleDescription" | "ariaRowCount" | "ariaRowIndex" | "ariaRowSpan" | "ariaSelected" | "ariaSetSize" | "ariaSort" | "ariaValueMax" | "ariaValueMin" | "ariaValueNow" | "ariaValueText" | "role" | "getAnimations" | "after" | "before" | "replaceWith" | "innerHTML" | "nextElementSibling" | "previousElementSibling" | "childElementCount" | "children" | "firstElementChild" | "lastElementChild" | "append" | "prepend" | "querySelector" | "querySelectorAll" | "replaceChildren" | "assignedSlot" | "attributeStyleMap" | "contentEditable" | "enterKeyHint" | "inputMode" | "isContentEditable" | "onabort" | "onanimationcancel" | "onanimationend" | "onanimationiteration" | "onanimationstart" | "onauxclick" | "onbeforeinput" | "onbeforetoggle" | "onblur" | "oncancel" | "oncanplay" | "oncanplaythrough" | "onchange" | "onclick" | "onclose" | "oncontextmenu" | "oncopy" | "oncuechange" | "oncut" | "ondblclick" | "ondrag" | "ondragend" | "ondragenter" | "ondragleave" | "ondragover" | "ondragstart" | "ondrop" | "ondurationchange" | "onemptied" | "onended" | "onerror" | "onfocus" | "onformdata" | "ongotpointercapture" | "oninput" | "oninvalid" | "onkeydown" | "onkeypress" | "onkeyup" | "onload" | "onloadeddata" | "onloadedmetadata" | "onloadstart" | "onlostpointercapture" | "onmousedown" | "onmouseenter" | "onmouseleave" | "onmousemove" | "onmouseout" | "onmouseover" | "onmouseup" | "onpaste" | "onpause" | "onplay" | "onplaying" | "onpointercancel" | "onpointerdown" | "onpointerenter" | "onpointerleave" | "onpointermove" | "onpointerout" | "onpointerover" | "onpointerup" | "onprogress" | "onratechange" | "onreset" | "onresize" | "onscroll" | "onscrollend" | "onsecuritypolicyviolation" | "onseeked" | "onseeking" | "onselect" | "onselectionchange" | "onselectstart" | "onslotchange" | "onstalled" | "onsubmit" | "onsuspend" | "ontimeupdate" | "ontoggle" | "ontouchcancel" | "ontouchend" | "ontouchmove" | "ontouchstart" | "ontransitioncancel" | "ontransitionend" | "ontransitionrun" | "ontransitionstart" | "onvolumechange" | "onwaiting" | "onwebkitanimationend" | "onwebkitanimationiteration" | "onwebkitanimationstart" | "onwebkittransitionend" | "onwheel" | "autofocus" | "dataset" | "nonce" | "tabIndex" | "disabled" | "labels" | "multiple" | "size" | "validationMessage" | "validity" | "willValidate" | "setCustomValidity" | "showPicker" | "readonly" | "maxLength" | "list" | "accept" | "readOnly" | "_" | "alt" | "step" | "placeholder" | "src" | "capture" | "checked" | "indeterminate" | "align" | "messages" | "rules" | "minLength" | "isValid" | "focused" | "errorMessages" | "maxErrors" | "validate" | "resetValidation" | "density" | "rounded" | "tile" | "_allExposed" | "clearIcon" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "controlRef" | "fieldIconColor" | "persistentPlaceholder" | "persistentCounter" | "defaultChecked" | "defaultValue" | "dirName" | "files" | "formAction" | "formEnctype" | "formMethod" | "formNoValidate" | "formTarget" | "selectionDirection" | "selectionEnd" | "selectionStart" | "useMap" | "valueAsDate" | "valueAsNumber" | "webkitEntries" | "webkitdirectory" | "setRangeText" | "setSelectionRange" | "stepDown" | "stepUp" | "popoverTargetAction" | "popoverTargetElement"> & vue.ShallowUnwrapRef<HTMLInputElement & Omit<Omit<{
42618
42642
  $: vue.ComponentInternalInstance;
42619
42643
  $data: {};
42620
42644
  $props: Partial<{
@@ -42954,6 +42978,7 @@ declare const VNumberInput: {
42954
42978
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
42955
42979
  }, {
42956
42980
  controlRef: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
42981
+ fieldIconColor: vue.ComputedRef<string | undefined>;
42957
42982
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
42958
42983
  'update:focused': (focused: boolean) => true;
42959
42984
  'update:modelValue': (value: any) => true;
@@ -43061,8 +43086,9 @@ declare const VNumberInput: {
43061
43086
  iconColor?: string | boolean | undefined;
43062
43087
  } & {
43063
43088
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
43064
- }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef"> & vue.ShallowUnwrapRef<{
43089
+ }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & vue.ShallowUnwrapRef<{
43065
43090
  controlRef: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
43091
+ fieldIconColor: vue.ComputedRef<string | undefined>;
43066
43092
  }> & {} & vue.ComponentCustomProperties & {} & GenericProps<{
43067
43093
  modelValue?: unknown;
43068
43094
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
@@ -43075,6 +43101,7 @@ declare const VNumberInput: {
43075
43101
  errorMessages: vue.ComputedRef<string[]>;
43076
43102
  } | {
43077
43103
  controlRef: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
43104
+ fieldIconColor: vue.ComputedRef<string | undefined>;
43078
43105
  } | {};
43079
43106
  }> & {} & vue.ComponentCustomProperties & {}, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "loading" | "label" | "prefix" | "role" | "class" | "theme" | "placeholder" | "$children" | "v-slots" | "v-slot:default" | keyof 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}`> & {
43080
43107
  _allExposed: (HTMLInputElement & Omit<Omit<{
@@ -43417,6 +43444,7 @@ declare const VNumberInput: {
43417
43444
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
43418
43445
  }, {
43419
43446
  controlRef: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
43447
+ fieldIconColor: vue.ComputedRef<string | undefined>;
43420
43448
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
43421
43449
  'update:focused': (focused: boolean) => true;
43422
43450
  'update:modelValue': (value: any) => true;
@@ -43524,8 +43552,9 @@ declare const VNumberInput: {
43524
43552
  iconColor?: string | boolean | undefined;
43525
43553
  } & {
43526
43554
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
43527
- }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef"> & vue.ShallowUnwrapRef<{
43555
+ }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & vue.ShallowUnwrapRef<{
43528
43556
  controlRef: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
43557
+ fieldIconColor: vue.ComputedRef<string | undefined>;
43529
43558
  }> & {} & vue.ComponentCustomProperties & {} & GenericProps<{
43530
43559
  modelValue?: unknown;
43531
43560
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
@@ -43538,6 +43567,7 @@ declare const VNumberInput: {
43538
43567
  errorMessages: vue.ComputedRef<string[]>;
43539
43568
  } | {
43540
43569
  controlRef: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
43570
+ fieldIconColor: vue.ComputedRef<string | undefined>;
43541
43571
  } | {};
43542
43572
  }) | {};
43543
43573
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
@@ -58411,6 +58441,7 @@ declare const VTextField: {
58411
58441
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
58412
58442
  }, {
58413
58443
  controlRef: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
58444
+ fieldIconColor: vue.ComputedRef<string | undefined>;
58414
58445
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
58415
58446
  'update:focused': (focused: boolean) => true;
58416
58447
  'update:modelValue': (value: any) => true;
@@ -58518,8 +58549,9 @@ declare const VTextField: {
58518
58549
  iconColor?: string | boolean | undefined;
58519
58550
  } & {
58520
58551
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
58521
- }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef"> & vue.ShallowUnwrapRef<{
58552
+ }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & vue.ShallowUnwrapRef<{
58522
58553
  controlRef: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
58554
+ fieldIconColor: vue.ComputedRef<string | undefined>;
58523
58555
  }> & {} & vue.ComponentCustomProperties & {} & GenericProps<{
58524
58556
  modelValue?: unknown;
58525
58557
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
@@ -58532,6 +58564,7 @@ declare const VTextField: {
58532
58564
  errorMessages: vue.ComputedRef<string[]>;
58533
58565
  } | {
58534
58566
  controlRef: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
58567
+ fieldIconColor: vue.ComputedRef<string | undefined>;
58535
58568
  } | {};
58536
58569
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
58537
58570
  'click:control': (e: MouseEvent) => true;
@@ -59059,6 +59092,7 @@ declare const VTextField: {
59059
59092
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
59060
59093
  }, {
59061
59094
  controlRef: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
59095
+ fieldIconColor: vue.ComputedRef<string | undefined>;
59062
59096
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
59063
59097
  'update:focused': (focused: boolean) => true;
59064
59098
  'update:modelValue': (value: any) => true;
@@ -59166,8 +59200,9 @@ declare const VTextField: {
59166
59200
  iconColor?: string | boolean | undefined;
59167
59201
  } & {
59168
59202
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
59169
- }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef"> & vue.ShallowUnwrapRef<{
59203
+ }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & vue.ShallowUnwrapRef<{
59170
59204
  controlRef: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
59205
+ fieldIconColor: vue.ComputedRef<string | undefined>;
59171
59206
  }> & {} & vue.ComponentCustomProperties & {} & GenericProps<{
59172
59207
  modelValue?: unknown;
59173
59208
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
@@ -59180,6 +59215,7 @@ declare const VTextField: {
59180
59215
  errorMessages: vue.ComputedRef<string[]>;
59181
59216
  } | {
59182
59217
  controlRef: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
59218
+ fieldIconColor: vue.ComputedRef<string | undefined>;
59183
59219
  } | {};
59184
59220
  }, {}, {}, {}, {
59185
59221
  flat: boolean;
@@ -59682,6 +59718,7 @@ declare const VTextField: {
59682
59718
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
59683
59719
  }, {
59684
59720
  controlRef: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
59721
+ fieldIconColor: vue.ComputedRef<string | undefined>;
59685
59722
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
59686
59723
  'update:focused': (focused: boolean) => true;
59687
59724
  'update:modelValue': (value: any) => true;
@@ -59789,8 +59826,9 @@ declare const VTextField: {
59789
59826
  iconColor?: string | boolean | undefined;
59790
59827
  } & {
59791
59828
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
59792
- }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef"> & vue.ShallowUnwrapRef<{
59829
+ }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & vue.ShallowUnwrapRef<{
59793
59830
  controlRef: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
59831
+ fieldIconColor: vue.ComputedRef<string | undefined>;
59794
59832
  }> & {} & vue.ComponentCustomProperties & {} & GenericProps<{
59795
59833
  modelValue?: unknown;
59796
59834
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
@@ -59803,6 +59841,7 @@ declare const VTextField: {
59803
59841
  errorMessages: vue.ComputedRef<string[]>;
59804
59842
  } | {
59805
59843
  controlRef: vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
59844
+ fieldIconColor: vue.ComputedRef<string | undefined>;
59806
59845
  } | {};
59807
59846
  }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
59808
59847
  'click:control': (e: MouseEvent) => true;
@@ -65348,37 +65387,44 @@ declare module 'vue' {
65348
65387
  VAppBar: VAppBar
65349
65388
  VAppBarNavIcon: VAppBarNavIcon
65350
65389
  VAppBarTitle: VAppBarTitle
65351
- VAvatar: VAvatar
65352
- VAutocomplete: VAutocomplete
65353
- VBadge: VBadge
65390
+ VAlert: VAlert
65391
+ VAlertTitle: VAlertTitle
65354
65392
  VBanner: VBanner
65355
65393
  VBannerActions: VBannerActions
65356
65394
  VBannerText: VBannerText
65357
- VAlert: VAlert
65358
- VAlertTitle: VAlertTitle
65359
- VBottomSheet: VBottomSheet
65395
+ VBadge: VBadge
65396
+ VAvatar: VAvatar
65397
+ VAutocomplete: VAutocomplete
65360
65398
  VBottomNavigation: VBottomNavigation
65399
+ VBottomSheet: VBottomSheet
65400
+ VBtnGroup: VBtnGroup
65401
+ VBtn: VBtn
65402
+ VCarousel: VCarousel
65403
+ VCarouselItem: VCarouselItem
65361
65404
  VBreadcrumbs: VBreadcrumbs
65362
65405
  VBreadcrumbsItem: VBreadcrumbsItem
65363
65406
  VBreadcrumbsDivider: VBreadcrumbsDivider
65364
- VBtnGroup: VBtnGroup
65407
+ VBtnToggle: VBtnToggle
65408
+ VChipGroup: VChipGroup
65409
+ VCheckbox: VCheckbox
65410
+ VCheckboxBtn: VCheckboxBtn
65365
65411
  VCard: VCard
65366
65412
  VCardActions: VCardActions
65367
65413
  VCardItem: VCardItem
65368
65414
  VCardSubtitle: VCardSubtitle
65369
65415
  VCardText: VCardText
65370
65416
  VCardTitle: VCardTitle
65371
- VBtn: VBtn
65372
- VCheckbox: VCheckbox
65373
- VCheckboxBtn: VCheckboxBtn
65374
- VBtnToggle: VBtnToggle
65375
- VChipGroup: VChipGroup
65376
- VCode: VCode
65377
65417
  VChip: VChip
65378
- VCarousel: VCarousel
65379
- VCarouselItem: VCarouselItem
65380
65418
  VColorPicker: VColorPicker
65381
65419
  VCombobox: VCombobox
65420
+ VDatePicker: VDatePicker
65421
+ VDatePickerControls: VDatePickerControls
65422
+ VDatePickerHeader: VDatePickerHeader
65423
+ VDatePickerMonth: VDatePickerMonth
65424
+ VDatePickerMonths: VDatePickerMonths
65425
+ VDatePickerYears: VDatePickerYears
65426
+ VCode: VCode
65427
+ VDialog: VDialog
65382
65428
  VCounter: VCounter
65383
65429
  VDataTable: VDataTable
65384
65430
  VDataTableHeaders: VDataTableHeaders
@@ -65387,33 +65433,30 @@ declare module 'vue' {
65387
65433
  VDataTableRow: VDataTableRow
65388
65434
  VDataTableVirtual: VDataTableVirtual
65389
65435
  VDataTableServer: VDataTableServer
65390
- VDatePicker: VDatePicker
65391
- VDatePickerControls: VDatePickerControls
65392
- VDatePickerHeader: VDatePickerHeader
65393
- VDatePickerMonth: VDatePickerMonth
65394
- VDatePickerMonths: VDatePickerMonths
65395
- VDatePickerYears: VDatePickerYears
65396
- VDivider: VDivider
65397
- VDialog: VDialog
65398
65436
  VFab: VFab
65399
65437
  VEmptyState: VEmptyState
65400
65438
  VExpansionPanels: VExpansionPanels
65401
65439
  VExpansionPanel: VExpansionPanel
65402
65440
  VExpansionPanelText: VExpansionPanelText
65403
65441
  VExpansionPanelTitle: VExpansionPanelTitle
65442
+ VFileInput: VFileInput
65443
+ VDivider: VDivider
65404
65444
  VField: VField
65405
65445
  VFieldLabel: VFieldLabel
65406
65446
  VFooter: VFooter
65407
- VFileInput: VFileInput
65408
65447
  VIcon: VIcon
65409
65448
  VComponentIcon: VComponentIcon
65410
65449
  VSvgIcon: VSvgIcon
65411
65450
  VLigatureIcon: VLigatureIcon
65412
65451
  VClassIcon: VClassIcon
65413
65452
  VImg: VImg
65414
- VInfiniteScroll: VInfiniteScroll
65453
+ VKbd: VKbd
65454
+ VInput: VInput
65415
65455
  VItemGroup: VItemGroup
65416
65456
  VItem: VItem
65457
+ VInfiniteScroll: VInfiniteScroll
65458
+ VLabel: VLabel
65459
+ VMenu: VMenu
65417
65460
  VList: VList
65418
65461
  VListGroup: VListGroup
65419
65462
  VListImg: VListImg
@@ -65423,53 +65466,49 @@ declare module 'vue' {
65423
65466
  VListItemSubtitle: VListItemSubtitle
65424
65467
  VListItemTitle: VListItemTitle
65425
65468
  VListSubheader: VListSubheader
65426
- VInput: VInput
65427
- VMenu: VMenu
65428
- VLabel: VLabel
65429
- VKbd: VKbd
65430
- VMain: VMain
65431
65469
  VMessages: VMessages
65470
+ VMain: VMain
65432
65471
  VNavigationDrawer: VNavigationDrawer
65433
- VOverlay: VOverlay
65472
+ VOtpInput: VOtpInput
65434
65473
  VNumberInput: VNumberInput
65435
65474
  VPagination: VPagination
65436
- VOtpInput: VOtpInput
65475
+ VOverlay: VOverlay
65476
+ VProgressLinear: VProgressLinear
65437
65477
  VRadioGroup: VRadioGroup
65438
65478
  VProgressCircular: VProgressCircular
65439
- VProgressLinear: VProgressLinear
65440
- VSelect: VSelect
65441
65479
  VRating: VRating
65442
- VSheet: VSheet
65443
65480
  VSelectionControl: VSelectionControl
65444
- VSelectionControlGroup: VSelectionControlGroup
65445
- VSlider: VSlider
65446
- VSnackbar: VSnackbar
65481
+ VSelect: VSelect
65482
+ VSheet: VSheet
65447
65483
  VSkeletonLoader: VSkeletonLoader
65484
+ VSelectionControlGroup: VSelectionControlGroup
65448
65485
  VSlideGroup: VSlideGroup
65449
65486
  VSlideGroupItem: VSlideGroupItem
65487
+ VSlider: VSlider
65488
+ VSnackbar: VSnackbar
65450
65489
  VStepper: VStepper
65451
65490
  VStepperActions: VStepperActions
65452
65491
  VStepperHeader: VStepperHeader
65453
65492
  VStepperItem: VStepperItem
65454
65493
  VStepperWindow: VStepperWindow
65455
65494
  VStepperWindowItem: VStepperWindowItem
65456
- VSwitch: VSwitch
65457
- VSystemBar: VSystemBar
65458
65495
  VTab: VTab
65459
65496
  VTabs: VTabs
65460
65497
  VTabsWindow: VTabsWindow
65461
65498
  VTabsWindowItem: VTabsWindowItem
65499
+ VSystemBar: VSystemBar
65500
+ VTextField: VTextField
65462
65501
  VTable: VTable
65502
+ VToolbar: VToolbar
65503
+ VToolbarTitle: VToolbarTitle
65504
+ VToolbarItems: VToolbarItems
65463
65505
  VTimeline: VTimeline
65464
65506
  VTimelineItem: VTimelineItem
65465
- VTextField: VTextField
65466
- VTooltip: VTooltip
65507
+ VSwitch: VSwitch
65467
65508
  VTextarea: VTextarea
65509
+ VTooltip: VTooltip
65468
65510
  VWindow: VWindow
65469
65511
  VWindowItem: VWindowItem
65470
- VToolbar: VToolbar
65471
- VToolbarTitle: VToolbarTitle
65472
- VToolbarItems: VToolbarItems
65473
65512
  VConfirmEdit: VConfirmEdit
65474
65513
  VDataIterator: VDataIterator
65475
65514
  VDefaultsProvider: VDefaultsProvider
@@ -65487,11 +65526,12 @@ declare module 'vue' {
65487
65526
  VParallax: VParallax
65488
65527
  VRadio: VRadio
65489
65528
  VRangeSlider: VRangeSlider
65490
- VSnackbarQueue: VSnackbarQueue
65491
65529
  VResponsive: VResponsive
65492
- VSpeedDial: VSpeedDial
65530
+ VSnackbarQueue: VSnackbarQueue
65493
65531
  VSparkline: VSparkline
65532
+ VSpeedDial: VSpeedDial
65494
65533
  VThemeProvider: VThemeProvider
65534
+ VVirtualScroll: VVirtualScroll
65495
65535
  VValidation: VValidation
65496
65536
  VFabTransition: VFabTransition
65497
65537
  VDialogBottomTransition: VDialogBottomTransition
@@ -65509,27 +65549,26 @@ declare module 'vue' {
65509
65549
  VExpandTransition: VExpandTransition
65510
65550
  VExpandXTransition: VExpandXTransition
65511
65551
  VDialogTransition: VDialogTransition
65512
- VVirtualScroll: VVirtualScroll
65552
+ VCalendar: VCalendar
65553
+ VCalendarDay: VCalendarDay
65554
+ VCalendarHeader: VCalendarHeader
65555
+ VCalendarInterval: VCalendarInterval
65556
+ VCalendarIntervalEvent: VCalendarIntervalEvent
65557
+ VCalendarMonthDay: VCalendarMonthDay
65513
65558
  VIconBtn: VIconBtn
65514
65559
  VPicker: VPicker
65515
65560
  VPickerTitle: VPickerTitle
65561
+ VFileUpload: VFileUpload
65562
+ VFileUploadItem: VFileUploadItem
65516
65563
  VStepperVertical: VStepperVertical
65517
65564
  VStepperVerticalItem: VStepperVerticalItem
65518
65565
  VStepperVerticalActions: VStepperVerticalActions
65519
65566
  VTimePicker: VTimePicker
65520
65567
  VTimePickerClock: VTimePickerClock
65521
65568
  VTimePickerControls: VTimePickerControls
65522
- VCalendar: VCalendar
65523
- VCalendarDay: VCalendarDay
65524
- VCalendarHeader: VCalendarHeader
65525
- VCalendarInterval: VCalendarInterval
65526
- VCalendarIntervalEvent: VCalendarIntervalEvent
65527
- VCalendarMonthDay: VCalendarMonthDay
65528
65569
  VTreeview: VTreeview
65529
65570
  VTreeviewItem: VTreeviewItem
65530
65571
  VTreeviewGroup: VTreeviewGroup
65531
- VFileUpload: VFileUpload
65532
- VFileUploadItem: VFileUploadItem
65533
65572
  VDateInput: VDateInput
65534
65573
  VPullToRefresh: VPullToRefresh
65535
65574
  }