@vuetify/nightly 3.9.0-master.2025-07-11 → 3.9.0-master.2025-07-13

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 (56) hide show
  1. package/CHANGELOG.md +8 -3
  2. package/dist/json/attributes.json +2382 -2338
  3. package/dist/json/importMap-labs.json +14 -14
  4. package/dist/json/importMap.json +158 -158
  5. package/dist/json/tags.json +11 -0
  6. package/dist/json/web-types.json +4453 -4131
  7. package/dist/vuetify-labs.cjs +49 -28
  8. package/dist/vuetify-labs.css +5886 -5886
  9. package/dist/vuetify-labs.d.ts +831 -283
  10. package/dist/vuetify-labs.esm.js +49 -28
  11. package/dist/vuetify-labs.esm.js.map +1 -1
  12. package/dist/vuetify-labs.js +49 -28
  13. package/dist/vuetify-labs.min.css +2 -2
  14. package/dist/vuetify.cjs +28 -20
  15. package/dist/vuetify.cjs.map +1 -1
  16. package/dist/vuetify.css +3262 -3262
  17. package/dist/vuetify.d.ts +577 -206
  18. package/dist/vuetify.esm.js +28 -20
  19. package/dist/vuetify.esm.js.map +1 -1
  20. package/dist/vuetify.js +28 -20
  21. package/dist/vuetify.js.map +1 -1
  22. package/dist/vuetify.min.css +2 -2
  23. package/dist/vuetify.min.js +14 -14
  24. package/dist/vuetify.min.js.map +1 -1
  25. package/lib/components/VAutocomplete/VAutocomplete.d.ts +121 -36
  26. package/lib/components/VCombobox/VCombobox.d.ts +121 -36
  27. package/lib/components/VField/VField.d.ts +13 -0
  28. package/lib/components/VField/VField.js +2 -1
  29. package/lib/components/VField/VField.js.map +1 -1
  30. package/lib/components/VFileInput/VFileInput.d.ts +13 -0
  31. package/lib/components/VFileInput/VFileInput.js +3 -1
  32. package/lib/components/VFileInput/VFileInput.js.map +1 -1
  33. package/lib/components/VInput/VInput.d.ts +2 -1
  34. package/lib/components/VInput/VInput.js +15 -14
  35. package/lib/components/VInput/VInput.js.map +1 -1
  36. package/lib/components/VNumberInput/VNumberInput.d.ts +116 -36
  37. package/lib/components/VSelect/VSelect.d.ts +121 -36
  38. package/lib/components/VTextField/VTextField.d.ts +40 -9
  39. package/lib/components/VTextField/VTextField.js +2 -0
  40. package/lib/components/VTextField/VTextField.js.map +1 -1
  41. package/lib/components/VTextarea/VTextarea.d.ts +13 -0
  42. package/lib/components/VTextarea/VTextarea.js +3 -1
  43. package/lib/components/VTextarea/VTextarea.js.map +1 -1
  44. package/lib/entry-bundler.js +1 -1
  45. package/lib/framework.d.ts +52 -52
  46. package/lib/framework.js +1 -1
  47. package/lib/labs/VColorInput/VColorInput.d.ts +13 -0
  48. package/lib/labs/VColorInput/VColorInput.js +14 -6
  49. package/lib/labs/VColorInput/VColorInput.js.map +1 -1
  50. package/lib/labs/VDateInput/VDateInput.d.ts +145 -44
  51. package/lib/labs/VDateInput/VDateInput.js +4 -1
  52. package/lib/labs/VDateInput/VDateInput.js.map +1 -1
  53. package/lib/labs/VMaskInput/VMaskInput.d.ts +121 -36
  54. package/lib/labs/VMaskInput/VMaskInput.js +4 -2
  55. package/lib/labs/VMaskInput/VMaskInput.js.map +1 -1
  56. package/package.json +1 -1
@@ -17,6 +17,7 @@ export declare const makeVMaskInputProps: <Defaults extends {
17
17
  centerAffix?: unknown;
18
18
  color?: unknown;
19
19
  baseColor?: unknown;
20
+ details?: unknown;
20
21
  dirty?: unknown;
21
22
  disabled?: unknown;
22
23
  glow?: unknown;
@@ -157,6 +158,10 @@ export declare const makeVMaskInputProps: <Defaults extends {
157
158
  type: import("vue").PropType<unknown extends Defaults["baseColor"] ? string : string | Defaults["baseColor"]>;
158
159
  default: unknown extends Defaults["baseColor"] ? string : string | Defaults["baseColor"];
159
160
  };
161
+ details: unknown extends Defaults["details"] ? BooleanConstructor : {
162
+ type: import("vue").PropType<unknown extends Defaults["details"] ? boolean : boolean | Defaults["details"]>;
163
+ default: unknown extends Defaults["details"] ? boolean : boolean | Defaults["details"];
164
+ };
160
165
  dirty: unknown extends Defaults["dirty"] ? BooleanConstructor : {
161
166
  type: import("vue").PropType<unknown extends Defaults["dirty"] ? boolean : boolean | Defaults["dirty"]>;
162
167
  default: unknown extends Defaults["dirty"] ? boolean : boolean | Defaults["dirty"];
@@ -437,6 +442,7 @@ export declare const VMaskInput: {
437
442
  error: boolean;
438
443
  active: boolean;
439
444
  direction: "horizontal" | "vertical";
445
+ details: boolean;
440
446
  style: import("vue").StyleValue;
441
447
  autofocus: boolean;
442
448
  disabled: boolean;
@@ -565,6 +571,7 @@ export declare const VMaskInput: {
565
571
  error: boolean;
566
572
  active: boolean;
567
573
  direction: "horizontal" | "vertical";
574
+ details: boolean;
568
575
  style: import("vue").StyleValue;
569
576
  autofocus: boolean;
570
577
  disabled: boolean;
@@ -596,6 +603,7 @@ export declare const VMaskInput: {
596
603
  error: boolean;
597
604
  active: boolean;
598
605
  direction: "horizontal" | "vertical";
606
+ details: boolean;
599
607
  style: import("vue").StyleValue;
600
608
  autofocus: boolean;
601
609
  disabled: boolean;
@@ -709,7 +717,7 @@ export declare const VMaskInput: {
709
717
  "onUpdate:modelValue"?: ((val: string) => any) | undefined;
710
718
  "onClick:control"?: ((e: MouseEvent) => any) | undefined;
711
719
  "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
712
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "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">;
720
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "flat" | "reverse" | "variant" | "type" | "error" | "active" | "direction" | "details" | "style" | "autofocus" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "persistentPlaceholder" | "persistentCounter">;
713
721
  $attrs: {
714
722
  [x: string]: unknown;
715
723
  };
@@ -747,6 +755,7 @@ export declare const VMaskInput: {
747
755
  error: boolean;
748
756
  active: boolean;
749
757
  direction: "horizontal" | "vertical";
758
+ details: boolean;
750
759
  style: import("vue").StyleValue;
751
760
  autofocus: boolean;
752
761
  disabled: boolean;
@@ -1097,6 +1106,7 @@ export declare const VMaskInput: {
1097
1106
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
1098
1107
  error: boolean;
1099
1108
  active: boolean;
1109
+ details: boolean;
1100
1110
  style: import("vue").StyleValue;
1101
1111
  disabled: boolean;
1102
1112
  focused: boolean;
@@ -1115,6 +1125,7 @@ export declare const VMaskInput: {
1115
1125
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
1116
1126
  error: boolean;
1117
1127
  active: boolean;
1128
+ details: boolean;
1118
1129
  style: import("vue").StyleValue;
1119
1130
  disabled: boolean;
1120
1131
  focused: boolean;
@@ -1142,7 +1153,7 @@ export declare const VMaskInput: {
1142
1153
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
1143
1154
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
1144
1155
  centerAffix?: boolean | undefined;
1145
- } & 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">;
1156
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
1146
1157
  $attrs: {
1147
1158
  [x: string]: unknown;
1148
1159
  };
@@ -1173,6 +1184,7 @@ export declare const VMaskInput: {
1173
1184
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
1174
1185
  error: boolean;
1175
1186
  active: boolean;
1187
+ details: boolean;
1176
1188
  style: import("vue").StyleValue;
1177
1189
  disabled: boolean;
1178
1190
  focused: boolean;
@@ -1215,6 +1227,7 @@ export declare const VMaskInput: {
1215
1227
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
1216
1228
  error: boolean;
1217
1229
  active: boolean;
1230
+ details: boolean;
1218
1231
  style: import("vue").StyleValue;
1219
1232
  disabled: boolean;
1220
1233
  focused: boolean;
@@ -1265,6 +1278,7 @@ export declare const VMaskInput: {
1265
1278
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
1266
1279
  error: boolean;
1267
1280
  active: boolean;
1281
+ details: boolean;
1268
1282
  style: import("vue").StyleValue;
1269
1283
  disabled: boolean;
1270
1284
  focused: boolean;
@@ -1283,6 +1297,7 @@ export declare const VMaskInput: {
1283
1297
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
1284
1298
  error: boolean;
1285
1299
  active: boolean;
1300
+ details: boolean;
1286
1301
  style: import("vue").StyleValue;
1287
1302
  disabled: boolean;
1288
1303
  focused: boolean;
@@ -1313,13 +1328,13 @@ export declare const VMaskInput: {
1313
1328
  centerAffix?: boolean | undefined;
1314
1329
  } & {
1315
1330
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
1316
- }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
1331
+ }, ("flat" | "reverse" | "variant" | "error" | "active" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
1317
1332
  controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
1318
1333
  fieldIconColor: import("vue").ComputedRef<string | undefined>;
1319
1334
  }> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
1320
1335
  modelValue?: unknown;
1321
1336
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
1322
- }, 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}`> & {
1337
+ }, 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" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
1323
1338
  _allExposed: {
1324
1339
  reset: () => Promise<void>;
1325
1340
  resetValidation: () => Promise<void>;
@@ -1343,6 +1358,7 @@ export declare const VMaskInput: {
1343
1358
  error: boolean;
1344
1359
  active: boolean;
1345
1360
  direction: "horizontal" | "vertical";
1361
+ details: boolean;
1346
1362
  style: import("vue").StyleValue;
1347
1363
  autofocus: boolean;
1348
1364
  disabled: boolean;
@@ -1411,6 +1427,7 @@ export declare const VMaskInput: {
1411
1427
  error: boolean;
1412
1428
  active: boolean;
1413
1429
  direction: "horizontal" | "vertical";
1430
+ details: boolean;
1414
1431
  style: import("vue").StyleValue;
1415
1432
  autofocus: boolean;
1416
1433
  disabled: boolean;
@@ -1442,6 +1459,7 @@ export declare const VMaskInput: {
1442
1459
  error: boolean;
1443
1460
  active: boolean;
1444
1461
  direction: "horizontal" | "vertical";
1462
+ details: boolean;
1445
1463
  style: import("vue").StyleValue;
1446
1464
  autofocus: boolean;
1447
1465
  disabled: boolean;
@@ -1560,7 +1578,7 @@ export declare const VMaskInput: {
1560
1578
  "onUpdate:modelValue"?: ((val: string) => any) | undefined;
1561
1579
  "onClick:control"?: ((e: MouseEvent) => any) | undefined;
1562
1580
  "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
1563
- }, "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" | "writingSuggestions" | "attachInternals" | "hidePopover" | "showPopover" | "togglePopover" | "attributes" | "classList" | "className" | "clientHeight" | "clientLeft" | "clientTop" | "clientWidth" | "currentCSSZoom" | "innerHTML" | "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" | "getHTML" | "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" | "ariaColIndexText" | "ariaColSpan" | "ariaCurrent" | "ariaDescription" | "ariaDisabled" | "ariaExpanded" | "ariaHasPopup" | "ariaHidden" | "ariaInvalid" | "ariaKeyShortcuts" | "ariaLabel" | "ariaLevel" | "ariaLive" | "ariaModal" | "ariaMultiLine" | "ariaMultiSelectable" | "ariaOrientation" | "ariaPlaceholder" | "ariaPosInSet" | "ariaPressed" | "ariaReadOnly" | "ariaRelevant" | "ariaRequired" | "ariaRoleDescription" | "ariaRowCount" | "ariaRowIndex" | "ariaRowIndexText" | "ariaRowSpan" | "ariaSelected" | "ariaSetSize" | "ariaSort" | "ariaValueMax" | "ariaValueMin" | "ariaValueNow" | "ariaValueText" | "role" | "getAnimations" | "after" | "before" | "replaceWith" | "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" | "oncontextlost" | "oncontextmenu" | "oncontextrestored" | "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"> & import("vue").ShallowUnwrapRef<Omit<Omit<{
1581
+ }, "normalize" | "flat" | "reverse" | "variant" | "name" | "max" | "required" | "type" | "error" | "id" | "matches" | "height" | "width" | "active" | "remove" | "min" | "direction" | "translate" | "contains" | "value" | "hidden" | "details" | "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" | "writingSuggestions" | "attachInternals" | "hidePopover" | "showPopover" | "togglePopover" | "attributes" | "classList" | "className" | "clientHeight" | "clientLeft" | "clientTop" | "clientWidth" | "currentCSSZoom" | "innerHTML" | "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" | "getHTML" | "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" | "ariaColIndexText" | "ariaColSpan" | "ariaCurrent" | "ariaDescription" | "ariaDisabled" | "ariaExpanded" | "ariaHasPopup" | "ariaHidden" | "ariaInvalid" | "ariaKeyShortcuts" | "ariaLabel" | "ariaLevel" | "ariaLive" | "ariaModal" | "ariaMultiLine" | "ariaMultiSelectable" | "ariaOrientation" | "ariaPlaceholder" | "ariaPosInSet" | "ariaPressed" | "ariaReadOnly" | "ariaRelevant" | "ariaRequired" | "ariaRoleDescription" | "ariaRowCount" | "ariaRowIndex" | "ariaRowIndexText" | "ariaRowSpan" | "ariaSelected" | "ariaSetSize" | "ariaSort" | "ariaValueMax" | "ariaValueMin" | "ariaValueNow" | "ariaValueText" | "role" | "getAnimations" | "after" | "before" | "replaceWith" | "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" | "oncontextlost" | "oncontextmenu" | "oncontextrestored" | "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"> & import("vue").ShallowUnwrapRef<Omit<Omit<{
1564
1582
  $: import("vue").ComponentInternalInstance;
1565
1583
  $data: {};
1566
1584
  $props: Partial<{
@@ -1792,6 +1810,7 @@ export declare const VMaskInput: {
1792
1810
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
1793
1811
  error: boolean;
1794
1812
  active: boolean;
1813
+ details: boolean;
1795
1814
  style: import("vue").StyleValue;
1796
1815
  disabled: boolean;
1797
1816
  focused: boolean;
@@ -1810,6 +1829,7 @@ export declare const VMaskInput: {
1810
1829
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
1811
1830
  error: boolean;
1812
1831
  active: boolean;
1832
+ details: boolean;
1813
1833
  style: import("vue").StyleValue;
1814
1834
  disabled: boolean;
1815
1835
  focused: boolean;
@@ -1837,7 +1857,7 @@ export declare const VMaskInput: {
1837
1857
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
1838
1858
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
1839
1859
  centerAffix?: boolean | undefined;
1840
- } & 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">;
1860
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
1841
1861
  $attrs: {
1842
1862
  [x: string]: unknown;
1843
1863
  };
@@ -1868,6 +1888,7 @@ export declare const VMaskInput: {
1868
1888
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
1869
1889
  error: boolean;
1870
1890
  active: boolean;
1891
+ details: boolean;
1871
1892
  style: import("vue").StyleValue;
1872
1893
  disabled: boolean;
1873
1894
  focused: boolean;
@@ -1910,6 +1931,7 @@ export declare const VMaskInput: {
1910
1931
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
1911
1932
  error: boolean;
1912
1933
  active: boolean;
1934
+ details: boolean;
1913
1935
  style: import("vue").StyleValue;
1914
1936
  disabled: boolean;
1915
1937
  focused: boolean;
@@ -1960,6 +1982,7 @@ export declare const VMaskInput: {
1960
1982
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
1961
1983
  error: boolean;
1962
1984
  active: boolean;
1985
+ details: boolean;
1963
1986
  style: import("vue").StyleValue;
1964
1987
  disabled: boolean;
1965
1988
  focused: boolean;
@@ -1978,6 +2001,7 @@ export declare const VMaskInput: {
1978
2001
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
1979
2002
  error: boolean;
1980
2003
  active: boolean;
2004
+ details: boolean;
1981
2005
  style: import("vue").StyleValue;
1982
2006
  disabled: boolean;
1983
2007
  focused: boolean;
@@ -2008,13 +2032,13 @@ export declare const VMaskInput: {
2008
2032
  centerAffix?: boolean | undefined;
2009
2033
  } & {
2010
2034
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
2011
- }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
2035
+ }, ("flat" | "reverse" | "variant" | "error" | "active" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
2012
2036
  controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
2013
2037
  fieldIconColor: import("vue").ComputedRef<string | undefined>;
2014
2038
  }> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
2015
2039
  modelValue?: unknown;
2016
2040
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
2017
- }, 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}`> & {
2041
+ }, 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" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
2018
2042
  _allExposed: {
2019
2043
  reset: () => Promise<void>;
2020
2044
  resetValidation: () => Promise<void>;
@@ -2025,7 +2049,7 @@ export declare const VMaskInput: {
2025
2049
  controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
2026
2050
  fieldIconColor: import("vue").ComputedRef<string | undefined>;
2027
2051
  } | {};
2028
- }> & {} & 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}`> & {
2052
+ }> & {} & 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" | "details" | "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}`> & {
2029
2053
  _allExposed: (Omit<Omit<{
2030
2054
  $: import("vue").ComponentInternalInstance;
2031
2055
  $data: {};
@@ -2258,6 +2282,7 @@ export declare const VMaskInput: {
2258
2282
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
2259
2283
  error: boolean;
2260
2284
  active: boolean;
2285
+ details: boolean;
2261
2286
  style: import("vue").StyleValue;
2262
2287
  disabled: boolean;
2263
2288
  focused: boolean;
@@ -2276,6 +2301,7 @@ export declare const VMaskInput: {
2276
2301
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
2277
2302
  error: boolean;
2278
2303
  active: boolean;
2304
+ details: boolean;
2279
2305
  style: import("vue").StyleValue;
2280
2306
  disabled: boolean;
2281
2307
  focused: boolean;
@@ -2303,7 +2329,7 @@ export declare const VMaskInput: {
2303
2329
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
2304
2330
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
2305
2331
  centerAffix?: boolean | undefined;
2306
- } & 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">;
2332
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
2307
2333
  $attrs: {
2308
2334
  [x: string]: unknown;
2309
2335
  };
@@ -2334,6 +2360,7 @@ export declare const VMaskInput: {
2334
2360
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
2335
2361
  error: boolean;
2336
2362
  active: boolean;
2363
+ details: boolean;
2337
2364
  style: import("vue").StyleValue;
2338
2365
  disabled: boolean;
2339
2366
  focused: boolean;
@@ -2376,6 +2403,7 @@ export declare const VMaskInput: {
2376
2403
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
2377
2404
  error: boolean;
2378
2405
  active: boolean;
2406
+ details: boolean;
2379
2407
  style: import("vue").StyleValue;
2380
2408
  disabled: boolean;
2381
2409
  focused: boolean;
@@ -2426,6 +2454,7 @@ export declare const VMaskInput: {
2426
2454
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
2427
2455
  error: boolean;
2428
2456
  active: boolean;
2457
+ details: boolean;
2429
2458
  style: import("vue").StyleValue;
2430
2459
  disabled: boolean;
2431
2460
  focused: boolean;
@@ -2444,6 +2473,7 @@ export declare const VMaskInput: {
2444
2473
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
2445
2474
  error: boolean;
2446
2475
  active: boolean;
2476
+ details: boolean;
2447
2477
  style: import("vue").StyleValue;
2448
2478
  disabled: boolean;
2449
2479
  focused: boolean;
@@ -2474,13 +2504,13 @@ export declare const VMaskInput: {
2474
2504
  centerAffix?: boolean | undefined;
2475
2505
  } & {
2476
2506
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
2477
- }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
2507
+ }, ("flat" | "reverse" | "variant" | "error" | "active" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
2478
2508
  controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
2479
2509
  fieldIconColor: import("vue").ComputedRef<string | undefined>;
2480
2510
  }> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
2481
2511
  modelValue?: unknown;
2482
2512
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
2483
- }, 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}`> & {
2513
+ }, 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" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
2484
2514
  _allExposed: {
2485
2515
  reset: () => Promise<void>;
2486
2516
  resetValidation: () => Promise<void>;
@@ -2502,6 +2532,7 @@ export declare const VMaskInput: {
2502
2532
  error: boolean;
2503
2533
  active: boolean;
2504
2534
  direction: "horizontal" | "vertical";
2535
+ details: boolean;
2505
2536
  style: import("vue").StyleValue;
2506
2537
  autofocus: boolean;
2507
2538
  disabled: boolean;
@@ -2558,6 +2589,7 @@ export declare const VMaskInput: {
2558
2589
  error: boolean;
2559
2590
  active: boolean;
2560
2591
  direction: "horizontal" | "vertical";
2592
+ details: boolean;
2561
2593
  style: import("vue").StyleValue;
2562
2594
  autofocus: boolean;
2563
2595
  disabled: boolean;
@@ -2686,6 +2718,7 @@ export declare const VMaskInput: {
2686
2718
  error: boolean;
2687
2719
  active: boolean;
2688
2720
  direction: "horizontal" | "vertical";
2721
+ details: boolean;
2689
2722
  style: import("vue").StyleValue;
2690
2723
  autofocus: boolean;
2691
2724
  disabled: boolean;
@@ -2717,6 +2750,7 @@ export declare const VMaskInput: {
2717
2750
  error: boolean;
2718
2751
  active: boolean;
2719
2752
  direction: "horizontal" | "vertical";
2753
+ details: boolean;
2720
2754
  style: import("vue").StyleValue;
2721
2755
  autofocus: boolean;
2722
2756
  disabled: boolean;
@@ -2830,7 +2864,7 @@ export declare const VMaskInput: {
2830
2864
  "onUpdate:modelValue"?: ((val: string) => any) | undefined;
2831
2865
  "onClick:control"?: ((e: MouseEvent) => any) | undefined;
2832
2866
  "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
2833
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "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">;
2867
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "flat" | "reverse" | "variant" | "type" | "error" | "active" | "direction" | "details" | "style" | "autofocus" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "persistentPlaceholder" | "persistentCounter">;
2834
2868
  $attrs: {
2835
2869
  [x: string]: unknown;
2836
2870
  };
@@ -2868,6 +2902,7 @@ export declare const VMaskInput: {
2868
2902
  error: boolean;
2869
2903
  active: boolean;
2870
2904
  direction: "horizontal" | "vertical";
2905
+ details: boolean;
2871
2906
  style: import("vue").StyleValue;
2872
2907
  autofocus: boolean;
2873
2908
  disabled: boolean;
@@ -3218,6 +3253,7 @@ export declare const VMaskInput: {
3218
3253
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
3219
3254
  error: boolean;
3220
3255
  active: boolean;
3256
+ details: boolean;
3221
3257
  style: import("vue").StyleValue;
3222
3258
  disabled: boolean;
3223
3259
  focused: boolean;
@@ -3236,6 +3272,7 @@ export declare const VMaskInput: {
3236
3272
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
3237
3273
  error: boolean;
3238
3274
  active: boolean;
3275
+ details: boolean;
3239
3276
  style: import("vue").StyleValue;
3240
3277
  disabled: boolean;
3241
3278
  focused: boolean;
@@ -3263,7 +3300,7 @@ export declare const VMaskInput: {
3263
3300
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
3264
3301
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
3265
3302
  centerAffix?: boolean | undefined;
3266
- } & 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">;
3303
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
3267
3304
  $attrs: {
3268
3305
  [x: string]: unknown;
3269
3306
  };
@@ -3294,6 +3331,7 @@ export declare const VMaskInput: {
3294
3331
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
3295
3332
  error: boolean;
3296
3333
  active: boolean;
3334
+ details: boolean;
3297
3335
  style: import("vue").StyleValue;
3298
3336
  disabled: boolean;
3299
3337
  focused: boolean;
@@ -3336,6 +3374,7 @@ export declare const VMaskInput: {
3336
3374
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
3337
3375
  error: boolean;
3338
3376
  active: boolean;
3377
+ details: boolean;
3339
3378
  style: import("vue").StyleValue;
3340
3379
  disabled: boolean;
3341
3380
  focused: boolean;
@@ -3386,6 +3425,7 @@ export declare const VMaskInput: {
3386
3425
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
3387
3426
  error: boolean;
3388
3427
  active: boolean;
3428
+ details: boolean;
3389
3429
  style: import("vue").StyleValue;
3390
3430
  disabled: boolean;
3391
3431
  focused: boolean;
@@ -3404,6 +3444,7 @@ export declare const VMaskInput: {
3404
3444
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
3405
3445
  error: boolean;
3406
3446
  active: boolean;
3447
+ details: boolean;
3407
3448
  style: import("vue").StyleValue;
3408
3449
  disabled: boolean;
3409
3450
  focused: boolean;
@@ -3434,13 +3475,13 @@ export declare const VMaskInput: {
3434
3475
  centerAffix?: boolean | undefined;
3435
3476
  } & {
3436
3477
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
3437
- }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
3478
+ }, ("flat" | "reverse" | "variant" | "error" | "active" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
3438
3479
  controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
3439
3480
  fieldIconColor: import("vue").ComputedRef<string | undefined>;
3440
3481
  }> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
3441
3482
  modelValue?: unknown;
3442
3483
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
3443
- }, 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}`> & {
3484
+ }, 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" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
3444
3485
  _allExposed: {
3445
3486
  reset: () => Promise<void>;
3446
3487
  resetValidation: () => Promise<void>;
@@ -3464,6 +3505,7 @@ export declare const VMaskInput: {
3464
3505
  error: boolean;
3465
3506
  active: boolean;
3466
3507
  direction: "horizontal" | "vertical";
3508
+ details: boolean;
3467
3509
  style: import("vue").StyleValue;
3468
3510
  autofocus: boolean;
3469
3511
  disabled: boolean;
@@ -3532,6 +3574,7 @@ export declare const VMaskInput: {
3532
3574
  error: boolean;
3533
3575
  active: boolean;
3534
3576
  direction: "horizontal" | "vertical";
3577
+ details: boolean;
3535
3578
  style: import("vue").StyleValue;
3536
3579
  autofocus: boolean;
3537
3580
  disabled: boolean;
@@ -3563,6 +3606,7 @@ export declare const VMaskInput: {
3563
3606
  error: boolean;
3564
3607
  active: boolean;
3565
3608
  direction: "horizontal" | "vertical";
3609
+ details: boolean;
3566
3610
  style: import("vue").StyleValue;
3567
3611
  autofocus: boolean;
3568
3612
  disabled: boolean;
@@ -3681,7 +3725,7 @@ export declare const VMaskInput: {
3681
3725
  "onUpdate:modelValue"?: ((val: string) => any) | undefined;
3682
3726
  "onClick:control"?: ((e: MouseEvent) => any) | undefined;
3683
3727
  "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
3684
- }, "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" | "writingSuggestions" | "attachInternals" | "hidePopover" | "showPopover" | "togglePopover" | "attributes" | "classList" | "className" | "clientHeight" | "clientLeft" | "clientTop" | "clientWidth" | "currentCSSZoom" | "innerHTML" | "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" | "getHTML" | "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" | "ariaColIndexText" | "ariaColSpan" | "ariaCurrent" | "ariaDescription" | "ariaDisabled" | "ariaExpanded" | "ariaHasPopup" | "ariaHidden" | "ariaInvalid" | "ariaKeyShortcuts" | "ariaLabel" | "ariaLevel" | "ariaLive" | "ariaModal" | "ariaMultiLine" | "ariaMultiSelectable" | "ariaOrientation" | "ariaPlaceholder" | "ariaPosInSet" | "ariaPressed" | "ariaReadOnly" | "ariaRelevant" | "ariaRequired" | "ariaRoleDescription" | "ariaRowCount" | "ariaRowIndex" | "ariaRowIndexText" | "ariaRowSpan" | "ariaSelected" | "ariaSetSize" | "ariaSort" | "ariaValueMax" | "ariaValueMin" | "ariaValueNow" | "ariaValueText" | "role" | "getAnimations" | "after" | "before" | "replaceWith" | "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" | "oncontextlost" | "oncontextmenu" | "oncontextrestored" | "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"> & import("vue").ShallowUnwrapRef<Omit<Omit<{
3728
+ }, "normalize" | "flat" | "reverse" | "variant" | "name" | "max" | "required" | "type" | "error" | "id" | "matches" | "height" | "width" | "active" | "remove" | "min" | "direction" | "translate" | "contains" | "value" | "hidden" | "details" | "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" | "writingSuggestions" | "attachInternals" | "hidePopover" | "showPopover" | "togglePopover" | "attributes" | "classList" | "className" | "clientHeight" | "clientLeft" | "clientTop" | "clientWidth" | "currentCSSZoom" | "innerHTML" | "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" | "getHTML" | "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" | "ariaColIndexText" | "ariaColSpan" | "ariaCurrent" | "ariaDescription" | "ariaDisabled" | "ariaExpanded" | "ariaHasPopup" | "ariaHidden" | "ariaInvalid" | "ariaKeyShortcuts" | "ariaLabel" | "ariaLevel" | "ariaLive" | "ariaModal" | "ariaMultiLine" | "ariaMultiSelectable" | "ariaOrientation" | "ariaPlaceholder" | "ariaPosInSet" | "ariaPressed" | "ariaReadOnly" | "ariaRelevant" | "ariaRequired" | "ariaRoleDescription" | "ariaRowCount" | "ariaRowIndex" | "ariaRowIndexText" | "ariaRowSpan" | "ariaSelected" | "ariaSetSize" | "ariaSort" | "ariaValueMax" | "ariaValueMin" | "ariaValueNow" | "ariaValueText" | "role" | "getAnimations" | "after" | "before" | "replaceWith" | "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" | "oncontextlost" | "oncontextmenu" | "oncontextrestored" | "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"> & import("vue").ShallowUnwrapRef<Omit<Omit<{
3685
3729
  $: import("vue").ComponentInternalInstance;
3686
3730
  $data: {};
3687
3731
  $props: Partial<{
@@ -3913,6 +3957,7 @@ export declare const VMaskInput: {
3913
3957
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
3914
3958
  error: boolean;
3915
3959
  active: boolean;
3960
+ details: boolean;
3916
3961
  style: import("vue").StyleValue;
3917
3962
  disabled: boolean;
3918
3963
  focused: boolean;
@@ -3931,6 +3976,7 @@ export declare const VMaskInput: {
3931
3976
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
3932
3977
  error: boolean;
3933
3978
  active: boolean;
3979
+ details: boolean;
3934
3980
  style: import("vue").StyleValue;
3935
3981
  disabled: boolean;
3936
3982
  focused: boolean;
@@ -3958,7 +4004,7 @@ export declare const VMaskInput: {
3958
4004
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
3959
4005
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
3960
4006
  centerAffix?: boolean | undefined;
3961
- } & 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">;
4007
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
3962
4008
  $attrs: {
3963
4009
  [x: string]: unknown;
3964
4010
  };
@@ -3989,6 +4035,7 @@ export declare const VMaskInput: {
3989
4035
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
3990
4036
  error: boolean;
3991
4037
  active: boolean;
4038
+ details: boolean;
3992
4039
  style: import("vue").StyleValue;
3993
4040
  disabled: boolean;
3994
4041
  focused: boolean;
@@ -4031,6 +4078,7 @@ export declare const VMaskInput: {
4031
4078
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
4032
4079
  error: boolean;
4033
4080
  active: boolean;
4081
+ details: boolean;
4034
4082
  style: import("vue").StyleValue;
4035
4083
  disabled: boolean;
4036
4084
  focused: boolean;
@@ -4081,6 +4129,7 @@ export declare const VMaskInput: {
4081
4129
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
4082
4130
  error: boolean;
4083
4131
  active: boolean;
4132
+ details: boolean;
4084
4133
  style: import("vue").StyleValue;
4085
4134
  disabled: boolean;
4086
4135
  focused: boolean;
@@ -4099,6 +4148,7 @@ export declare const VMaskInput: {
4099
4148
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
4100
4149
  error: boolean;
4101
4150
  active: boolean;
4151
+ details: boolean;
4102
4152
  style: import("vue").StyleValue;
4103
4153
  disabled: boolean;
4104
4154
  focused: boolean;
@@ -4129,13 +4179,13 @@ export declare const VMaskInput: {
4129
4179
  centerAffix?: boolean | undefined;
4130
4180
  } & {
4131
4181
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
4132
- }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
4182
+ }, ("flat" | "reverse" | "variant" | "error" | "active" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
4133
4183
  controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
4134
4184
  fieldIconColor: import("vue").ComputedRef<string | undefined>;
4135
4185
  }> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
4136
4186
  modelValue?: unknown;
4137
4187
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
4138
- }, 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}`> & {
4188
+ }, 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" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
4139
4189
  _allExposed: {
4140
4190
  reset: () => Promise<void>;
4141
4191
  resetValidation: () => Promise<void>;
@@ -4146,7 +4196,7 @@ export declare const VMaskInput: {
4146
4196
  controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
4147
4197
  fieldIconColor: import("vue").ComputedRef<string | undefined>;
4148
4198
  } | {};
4149
- }> & {} & 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}`> & {
4199
+ }> & {} & 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" | "details" | "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}`> & {
4150
4200
  _allExposed: (Omit<Omit<{
4151
4201
  $: import("vue").ComponentInternalInstance;
4152
4202
  $data: {};
@@ -4379,6 +4429,7 @@ export declare const VMaskInput: {
4379
4429
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
4380
4430
  error: boolean;
4381
4431
  active: boolean;
4432
+ details: boolean;
4382
4433
  style: import("vue").StyleValue;
4383
4434
  disabled: boolean;
4384
4435
  focused: boolean;
@@ -4397,6 +4448,7 @@ export declare const VMaskInput: {
4397
4448
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
4398
4449
  error: boolean;
4399
4450
  active: boolean;
4451
+ details: boolean;
4400
4452
  style: import("vue").StyleValue;
4401
4453
  disabled: boolean;
4402
4454
  focused: boolean;
@@ -4424,7 +4476,7 @@ export declare const VMaskInput: {
4424
4476
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
4425
4477
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
4426
4478
  centerAffix?: boolean | undefined;
4427
- } & 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">;
4479
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
4428
4480
  $attrs: {
4429
4481
  [x: string]: unknown;
4430
4482
  };
@@ -4455,6 +4507,7 @@ export declare const VMaskInput: {
4455
4507
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
4456
4508
  error: boolean;
4457
4509
  active: boolean;
4510
+ details: boolean;
4458
4511
  style: import("vue").StyleValue;
4459
4512
  disabled: boolean;
4460
4513
  focused: boolean;
@@ -4497,6 +4550,7 @@ export declare const VMaskInput: {
4497
4550
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
4498
4551
  error: boolean;
4499
4552
  active: boolean;
4553
+ details: boolean;
4500
4554
  style: import("vue").StyleValue;
4501
4555
  disabled: boolean;
4502
4556
  focused: boolean;
@@ -4547,6 +4601,7 @@ export declare const VMaskInput: {
4547
4601
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
4548
4602
  error: boolean;
4549
4603
  active: boolean;
4604
+ details: boolean;
4550
4605
  style: import("vue").StyleValue;
4551
4606
  disabled: boolean;
4552
4607
  focused: boolean;
@@ -4565,6 +4620,7 @@ export declare const VMaskInput: {
4565
4620
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
4566
4621
  error: boolean;
4567
4622
  active: boolean;
4623
+ details: boolean;
4568
4624
  style: import("vue").StyleValue;
4569
4625
  disabled: boolean;
4570
4626
  focused: boolean;
@@ -4595,13 +4651,13 @@ export declare const VMaskInput: {
4595
4651
  centerAffix?: boolean | undefined;
4596
4652
  } & {
4597
4653
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
4598
- }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
4654
+ }, ("flat" | "reverse" | "variant" | "error" | "active" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
4599
4655
  controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
4600
4656
  fieldIconColor: import("vue").ComputedRef<string | undefined>;
4601
4657
  }> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
4602
4658
  modelValue?: unknown;
4603
4659
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
4604
- }, 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}`> & {
4660
+ }, 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" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
4605
4661
  _allExposed: {
4606
4662
  reset: () => Promise<void>;
4607
4663
  resetValidation: () => Promise<void>;
@@ -4621,6 +4677,7 @@ export declare const VMaskInput: {
4621
4677
  error: boolean;
4622
4678
  active: boolean;
4623
4679
  direction: "horizontal" | "vertical";
4680
+ details: boolean;
4624
4681
  style: import("vue").StyleValue;
4625
4682
  autofocus: boolean;
4626
4683
  disabled: boolean;
@@ -4657,6 +4714,7 @@ export declare const VMaskInput: {
4657
4714
  error: boolean;
4658
4715
  active: boolean;
4659
4716
  direction: "horizontal" | "vertical";
4717
+ details: boolean;
4660
4718
  style: import("vue").StyleValue;
4661
4719
  autofocus: boolean;
4662
4720
  disabled: boolean;
@@ -4785,6 +4843,7 @@ export declare const VMaskInput: {
4785
4843
  error: boolean;
4786
4844
  active: boolean;
4787
4845
  direction: "horizontal" | "vertical";
4846
+ details: boolean;
4788
4847
  style: import("vue").StyleValue;
4789
4848
  autofocus: boolean;
4790
4849
  disabled: boolean;
@@ -4816,6 +4875,7 @@ export declare const VMaskInput: {
4816
4875
  error: boolean;
4817
4876
  active: boolean;
4818
4877
  direction: "horizontal" | "vertical";
4878
+ details: boolean;
4819
4879
  style: import("vue").StyleValue;
4820
4880
  autofocus: boolean;
4821
4881
  disabled: boolean;
@@ -4929,7 +4989,7 @@ export declare const VMaskInput: {
4929
4989
  "onUpdate:modelValue"?: ((val: string) => any) | undefined;
4930
4990
  "onClick:control"?: ((e: MouseEvent) => any) | undefined;
4931
4991
  "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
4932
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "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">;
4992
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "flat" | "reverse" | "variant" | "type" | "error" | "active" | "direction" | "details" | "style" | "autofocus" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "persistentPlaceholder" | "persistentCounter">;
4933
4993
  $attrs: {
4934
4994
  [x: string]: unknown;
4935
4995
  };
@@ -4967,6 +5027,7 @@ export declare const VMaskInput: {
4967
5027
  error: boolean;
4968
5028
  active: boolean;
4969
5029
  direction: "horizontal" | "vertical";
5030
+ details: boolean;
4970
5031
  style: import("vue").StyleValue;
4971
5032
  autofocus: boolean;
4972
5033
  disabled: boolean;
@@ -5317,6 +5378,7 @@ export declare const VMaskInput: {
5317
5378
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
5318
5379
  error: boolean;
5319
5380
  active: boolean;
5381
+ details: boolean;
5320
5382
  style: import("vue").StyleValue;
5321
5383
  disabled: boolean;
5322
5384
  focused: boolean;
@@ -5335,6 +5397,7 @@ export declare const VMaskInput: {
5335
5397
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
5336
5398
  error: boolean;
5337
5399
  active: boolean;
5400
+ details: boolean;
5338
5401
  style: import("vue").StyleValue;
5339
5402
  disabled: boolean;
5340
5403
  focused: boolean;
@@ -5362,7 +5425,7 @@ export declare const VMaskInput: {
5362
5425
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
5363
5426
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
5364
5427
  centerAffix?: boolean | undefined;
5365
- } & 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">;
5428
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
5366
5429
  $attrs: {
5367
5430
  [x: string]: unknown;
5368
5431
  };
@@ -5393,6 +5456,7 @@ export declare const VMaskInput: {
5393
5456
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
5394
5457
  error: boolean;
5395
5458
  active: boolean;
5459
+ details: boolean;
5396
5460
  style: import("vue").StyleValue;
5397
5461
  disabled: boolean;
5398
5462
  focused: boolean;
@@ -5435,6 +5499,7 @@ export declare const VMaskInput: {
5435
5499
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
5436
5500
  error: boolean;
5437
5501
  active: boolean;
5502
+ details: boolean;
5438
5503
  style: import("vue").StyleValue;
5439
5504
  disabled: boolean;
5440
5505
  focused: boolean;
@@ -5485,6 +5550,7 @@ export declare const VMaskInput: {
5485
5550
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
5486
5551
  error: boolean;
5487
5552
  active: boolean;
5553
+ details: boolean;
5488
5554
  style: import("vue").StyleValue;
5489
5555
  disabled: boolean;
5490
5556
  focused: boolean;
@@ -5503,6 +5569,7 @@ export declare const VMaskInput: {
5503
5569
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
5504
5570
  error: boolean;
5505
5571
  active: boolean;
5572
+ details: boolean;
5506
5573
  style: import("vue").StyleValue;
5507
5574
  disabled: boolean;
5508
5575
  focused: boolean;
@@ -5533,13 +5600,13 @@ export declare const VMaskInput: {
5533
5600
  centerAffix?: boolean | undefined;
5534
5601
  } & {
5535
5602
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
5536
- }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
5603
+ }, ("flat" | "reverse" | "variant" | "error" | "active" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
5537
5604
  controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
5538
5605
  fieldIconColor: import("vue").ComputedRef<string | undefined>;
5539
5606
  }> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
5540
5607
  modelValue?: unknown;
5541
5608
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
5542
- }, 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}`> & {
5609
+ }, 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" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
5543
5610
  _allExposed: {
5544
5611
  reset: () => Promise<void>;
5545
5612
  resetValidation: () => Promise<void>;
@@ -5563,6 +5630,7 @@ export declare const VMaskInput: {
5563
5630
  error: boolean;
5564
5631
  active: boolean;
5565
5632
  direction: "horizontal" | "vertical";
5633
+ details: boolean;
5566
5634
  style: import("vue").StyleValue;
5567
5635
  autofocus: boolean;
5568
5636
  disabled: boolean;
@@ -5631,6 +5699,7 @@ export declare const VMaskInput: {
5631
5699
  error: boolean;
5632
5700
  active: boolean;
5633
5701
  direction: "horizontal" | "vertical";
5702
+ details: boolean;
5634
5703
  style: import("vue").StyleValue;
5635
5704
  autofocus: boolean;
5636
5705
  disabled: boolean;
@@ -5662,6 +5731,7 @@ export declare const VMaskInput: {
5662
5731
  error: boolean;
5663
5732
  active: boolean;
5664
5733
  direction: "horizontal" | "vertical";
5734
+ details: boolean;
5665
5735
  style: import("vue").StyleValue;
5666
5736
  autofocus: boolean;
5667
5737
  disabled: boolean;
@@ -5780,7 +5850,7 @@ export declare const VMaskInput: {
5780
5850
  "onUpdate:modelValue"?: ((val: string) => any) | undefined;
5781
5851
  "onClick:control"?: ((e: MouseEvent) => any) | undefined;
5782
5852
  "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
5783
- }, "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" | "writingSuggestions" | "attachInternals" | "hidePopover" | "showPopover" | "togglePopover" | "attributes" | "classList" | "className" | "clientHeight" | "clientLeft" | "clientTop" | "clientWidth" | "currentCSSZoom" | "innerHTML" | "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" | "getHTML" | "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" | "ariaColIndexText" | "ariaColSpan" | "ariaCurrent" | "ariaDescription" | "ariaDisabled" | "ariaExpanded" | "ariaHasPopup" | "ariaHidden" | "ariaInvalid" | "ariaKeyShortcuts" | "ariaLabel" | "ariaLevel" | "ariaLive" | "ariaModal" | "ariaMultiLine" | "ariaMultiSelectable" | "ariaOrientation" | "ariaPlaceholder" | "ariaPosInSet" | "ariaPressed" | "ariaReadOnly" | "ariaRelevant" | "ariaRequired" | "ariaRoleDescription" | "ariaRowCount" | "ariaRowIndex" | "ariaRowIndexText" | "ariaRowSpan" | "ariaSelected" | "ariaSetSize" | "ariaSort" | "ariaValueMax" | "ariaValueMin" | "ariaValueNow" | "ariaValueText" | "role" | "getAnimations" | "after" | "before" | "replaceWith" | "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" | "oncontextlost" | "oncontextmenu" | "oncontextrestored" | "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"> & import("vue").ShallowUnwrapRef<Omit<Omit<{
5853
+ }, "normalize" | "flat" | "reverse" | "variant" | "name" | "max" | "required" | "type" | "error" | "id" | "matches" | "height" | "width" | "active" | "remove" | "min" | "direction" | "translate" | "contains" | "value" | "hidden" | "details" | "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" | "writingSuggestions" | "attachInternals" | "hidePopover" | "showPopover" | "togglePopover" | "attributes" | "classList" | "className" | "clientHeight" | "clientLeft" | "clientTop" | "clientWidth" | "currentCSSZoom" | "innerHTML" | "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" | "getHTML" | "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" | "ariaColIndexText" | "ariaColSpan" | "ariaCurrent" | "ariaDescription" | "ariaDisabled" | "ariaExpanded" | "ariaHasPopup" | "ariaHidden" | "ariaInvalid" | "ariaKeyShortcuts" | "ariaLabel" | "ariaLevel" | "ariaLive" | "ariaModal" | "ariaMultiLine" | "ariaMultiSelectable" | "ariaOrientation" | "ariaPlaceholder" | "ariaPosInSet" | "ariaPressed" | "ariaReadOnly" | "ariaRelevant" | "ariaRequired" | "ariaRoleDescription" | "ariaRowCount" | "ariaRowIndex" | "ariaRowIndexText" | "ariaRowSpan" | "ariaSelected" | "ariaSetSize" | "ariaSort" | "ariaValueMax" | "ariaValueMin" | "ariaValueNow" | "ariaValueText" | "role" | "getAnimations" | "after" | "before" | "replaceWith" | "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" | "oncontextlost" | "oncontextmenu" | "oncontextrestored" | "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"> & import("vue").ShallowUnwrapRef<Omit<Omit<{
5784
5854
  $: import("vue").ComponentInternalInstance;
5785
5855
  $data: {};
5786
5856
  $props: Partial<{
@@ -6012,6 +6082,7 @@ export declare const VMaskInput: {
6012
6082
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
6013
6083
  error: boolean;
6014
6084
  active: boolean;
6085
+ details: boolean;
6015
6086
  style: import("vue").StyleValue;
6016
6087
  disabled: boolean;
6017
6088
  focused: boolean;
@@ -6030,6 +6101,7 @@ export declare const VMaskInput: {
6030
6101
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
6031
6102
  error: boolean;
6032
6103
  active: boolean;
6104
+ details: boolean;
6033
6105
  style: import("vue").StyleValue;
6034
6106
  disabled: boolean;
6035
6107
  focused: boolean;
@@ -6057,7 +6129,7 @@ export declare const VMaskInput: {
6057
6129
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
6058
6130
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
6059
6131
  centerAffix?: boolean | undefined;
6060
- } & 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">;
6132
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
6061
6133
  $attrs: {
6062
6134
  [x: string]: unknown;
6063
6135
  };
@@ -6088,6 +6160,7 @@ export declare const VMaskInput: {
6088
6160
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
6089
6161
  error: boolean;
6090
6162
  active: boolean;
6163
+ details: boolean;
6091
6164
  style: import("vue").StyleValue;
6092
6165
  disabled: boolean;
6093
6166
  focused: boolean;
@@ -6130,6 +6203,7 @@ export declare const VMaskInput: {
6130
6203
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
6131
6204
  error: boolean;
6132
6205
  active: boolean;
6206
+ details: boolean;
6133
6207
  style: import("vue").StyleValue;
6134
6208
  disabled: boolean;
6135
6209
  focused: boolean;
@@ -6180,6 +6254,7 @@ export declare const VMaskInput: {
6180
6254
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
6181
6255
  error: boolean;
6182
6256
  active: boolean;
6257
+ details: boolean;
6183
6258
  style: import("vue").StyleValue;
6184
6259
  disabled: boolean;
6185
6260
  focused: boolean;
@@ -6198,6 +6273,7 @@ export declare const VMaskInput: {
6198
6273
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
6199
6274
  error: boolean;
6200
6275
  active: boolean;
6276
+ details: boolean;
6201
6277
  style: import("vue").StyleValue;
6202
6278
  disabled: boolean;
6203
6279
  focused: boolean;
@@ -6228,13 +6304,13 @@ export declare const VMaskInput: {
6228
6304
  centerAffix?: boolean | undefined;
6229
6305
  } & {
6230
6306
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
6231
- }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
6307
+ }, ("flat" | "reverse" | "variant" | "error" | "active" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
6232
6308
  controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
6233
6309
  fieldIconColor: import("vue").ComputedRef<string | undefined>;
6234
6310
  }> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
6235
6311
  modelValue?: unknown;
6236
6312
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
6237
- }, 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}`> & {
6313
+ }, 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" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
6238
6314
  _allExposed: {
6239
6315
  reset: () => Promise<void>;
6240
6316
  resetValidation: () => Promise<void>;
@@ -6245,7 +6321,7 @@ export declare const VMaskInput: {
6245
6321
  controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
6246
6322
  fieldIconColor: import("vue").ComputedRef<string | undefined>;
6247
6323
  } | {};
6248
- }> & {} & 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}`> & {
6324
+ }> & {} & 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" | "details" | "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}`> & {
6249
6325
  _allExposed: (Omit<Omit<{
6250
6326
  $: import("vue").ComponentInternalInstance;
6251
6327
  $data: {};
@@ -6478,6 +6554,7 @@ export declare const VMaskInput: {
6478
6554
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
6479
6555
  error: boolean;
6480
6556
  active: boolean;
6557
+ details: boolean;
6481
6558
  style: import("vue").StyleValue;
6482
6559
  disabled: boolean;
6483
6560
  focused: boolean;
@@ -6496,6 +6573,7 @@ export declare const VMaskInput: {
6496
6573
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
6497
6574
  error: boolean;
6498
6575
  active: boolean;
6576
+ details: boolean;
6499
6577
  style: import("vue").StyleValue;
6500
6578
  disabled: boolean;
6501
6579
  focused: boolean;
@@ -6523,7 +6601,7 @@ export declare const VMaskInput: {
6523
6601
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
6524
6602
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
6525
6603
  centerAffix?: boolean | undefined;
6526
- } & 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">;
6604
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
6527
6605
  $attrs: {
6528
6606
  [x: string]: unknown;
6529
6607
  };
@@ -6554,6 +6632,7 @@ export declare const VMaskInput: {
6554
6632
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
6555
6633
  error: boolean;
6556
6634
  active: boolean;
6635
+ details: boolean;
6557
6636
  style: import("vue").StyleValue;
6558
6637
  disabled: boolean;
6559
6638
  focused: boolean;
@@ -6596,6 +6675,7 @@ export declare const VMaskInput: {
6596
6675
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
6597
6676
  error: boolean;
6598
6677
  active: boolean;
6678
+ details: boolean;
6599
6679
  style: import("vue").StyleValue;
6600
6680
  disabled: boolean;
6601
6681
  focused: boolean;
@@ -6646,6 +6726,7 @@ export declare const VMaskInput: {
6646
6726
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
6647
6727
  error: boolean;
6648
6728
  active: boolean;
6729
+ details: boolean;
6649
6730
  style: import("vue").StyleValue;
6650
6731
  disabled: boolean;
6651
6732
  focused: boolean;
@@ -6664,6 +6745,7 @@ export declare const VMaskInput: {
6664
6745
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
6665
6746
  error: boolean;
6666
6747
  active: boolean;
6748
+ details: boolean;
6667
6749
  style: import("vue").StyleValue;
6668
6750
  disabled: boolean;
6669
6751
  focused: boolean;
@@ -6694,13 +6776,13 @@ export declare const VMaskInput: {
6694
6776
  centerAffix?: boolean | undefined;
6695
6777
  } & {
6696
6778
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
6697
- }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
6779
+ }, ("flat" | "reverse" | "variant" | "error" | "active" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
6698
6780
  controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
6699
6781
  fieldIconColor: import("vue").ComputedRef<string | undefined>;
6700
6782
  }> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
6701
6783
  modelValue?: unknown;
6702
6784
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
6703
- }, 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}`> & {
6785
+ }, 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" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
6704
6786
  _allExposed: {
6705
6787
  reset: () => Promise<void>;
6706
6788
  resetValidation: () => Promise<void>;
@@ -6722,6 +6804,7 @@ export declare const VMaskInput: {
6722
6804
  error: boolean;
6723
6805
  active: boolean;
6724
6806
  direction: "horizontal" | "vertical";
6807
+ details: boolean;
6725
6808
  style: import("vue").StyleValue;
6726
6809
  autofocus: boolean;
6727
6810
  disabled: boolean;
@@ -6792,6 +6875,7 @@ export declare const VMaskInput: {
6792
6875
  };
6793
6876
  color: StringConstructor;
6794
6877
  baseColor: StringConstructor;
6878
+ details: BooleanConstructor;
6795
6879
  dirty: BooleanConstructor;
6796
6880
  disabled: {
6797
6881
  type: BooleanConstructor;
@@ -6905,6 +6989,7 @@ export declare const VMaskInput: {
6905
6989
  };
6906
6990
  color: StringConstructor;
6907
6991
  baseColor: StringConstructor;
6992
+ details: BooleanConstructor;
6908
6993
  dirty: BooleanConstructor;
6909
6994
  disabled: {
6910
6995
  type: BooleanConstructor;