@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
@@ -1,3 +1,4 @@
1
+ import { VDatePicker } from "../../components/VDatePicker/VDatePicker.js";
1
2
  import type { PropType } from 'vue';
2
3
  import type { StrategyProps } from "../../components/VOverlay/locationStrategies.js";
3
4
  import type { VTextFieldSlots } from "../../components/VTextField/VTextField.js";
@@ -66,6 +67,7 @@ export declare const makeVDateInputProps: <Defaults extends {
66
67
  active?: unknown;
67
68
  centerAffix?: unknown;
68
69
  baseColor?: unknown;
70
+ details?: unknown;
69
71
  dirty?: unknown;
70
72
  glow?: unknown;
71
73
  error?: unknown;
@@ -475,6 +477,10 @@ export declare const makeVDateInputProps: <Defaults extends {
475
477
  type: PropType<unknown extends Defaults["baseColor"] ? string : string | Defaults["baseColor"]>;
476
478
  default: unknown extends Defaults["baseColor"] ? string : string | Defaults["baseColor"];
477
479
  };
480
+ details: unknown extends Defaults["details"] ? BooleanConstructor : {
481
+ type: PropType<unknown extends Defaults["details"] ? boolean : boolean | Defaults["details"]>;
482
+ default: unknown extends Defaults["details"] ? boolean : boolean | Defaults["details"];
483
+ };
478
484
  dirty: unknown extends Defaults["dirty"] ? BooleanConstructor : {
479
485
  type: PropType<unknown extends Defaults["dirty"] ? boolean : boolean | Defaults["dirty"]>;
480
486
  default: unknown extends Defaults["dirty"] ? boolean : boolean | Defaults["dirty"];
@@ -785,9 +791,15 @@ export declare const makeVDateInputProps: <Defaults extends {
785
791
  type: PropType<unknown extends Defaults["inputFormat"] ? string : string | Defaults["inputFormat"]>;
786
792
  default: unknown extends Defaults["inputFormat"] ? string : string | Defaults["inputFormat"];
787
793
  };
788
- displayFormat: unknown extends Defaults["displayFormat"] ? (FunctionConstructor | StringConstructor)[] : {
789
- type: PropType<unknown extends Defaults["displayFormat"] ? string | Function : string | Function | Defaults["displayFormat"]>;
790
- default: unknown extends Defaults["displayFormat"] ? string | Function : NonNullable<string | Function> | Defaults["displayFormat"];
794
+ displayFormat: unknown extends Defaults["displayFormat"] ? {
795
+ type: PropType<string | ((date: (typeof VDatePicker)["props"]["modelValue"]) => any)>;
796
+ default: undefined;
797
+ } : Omit<{
798
+ type: PropType<string | ((date: (typeof VDatePicker)["props"]["modelValue"]) => any)>;
799
+ default: undefined;
800
+ }, "type" | "default"> & {
801
+ type: PropType<unknown extends Defaults["displayFormat"] ? string | ((date: (typeof VDatePicker)["props"]["modelValue"]) => any) : string | ((date: (typeof VDatePicker)["props"]["modelValue"]) => any) | Defaults["displayFormat"]>;
802
+ default: unknown extends Defaults["displayFormat"] ? string | ((date: (typeof VDatePicker)["props"]["modelValue"]) => any) : Defaults["displayFormat"] | NonNullable<string | ((date: (typeof VDatePicker)["props"]["modelValue"]) => any)>;
791
803
  };
792
804
  location: unknown extends Defaults["location"] ? {
793
805
  type: PropType<StrategyProps["location"]>;
@@ -825,6 +837,7 @@ export declare const VDateInput: {
825
837
  active: boolean;
826
838
  direction: "horizontal" | "vertical";
827
839
  transition: string;
840
+ details: boolean;
828
841
  header: string;
829
842
  menu: boolean;
830
843
  style: import("vue").StyleValue;
@@ -927,7 +940,7 @@ export declare const VDateInput: {
927
940
  allowedMonths?: number[] | ((date: number) => boolean) | undefined;
928
941
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
929
942
  inputFormat?: string | undefined;
930
- displayFormat?: string | Function | undefined;
943
+ displayFormat?: string | ((date: (typeof VDatePicker)["props"]["modelValue"]) => any) | undefined;
931
944
  } & {
932
945
  $children?: import("vue").VNodeChild | (() => import("vue").VNodeChild) | {
933
946
  message?: ((arg: import("../../components/VMessages/VMessages.js").VMessageSlot) => import("vue").VNodeChild) | undefined;
@@ -1002,6 +1015,7 @@ export declare const VDateInput: {
1002
1015
  error: boolean;
1003
1016
  active: boolean;
1004
1017
  direction: "horizontal" | "vertical";
1018
+ details: boolean;
1005
1019
  style: import("vue").StyleValue;
1006
1020
  autofocus: boolean;
1007
1021
  disabled: boolean;
@@ -1033,6 +1047,7 @@ export declare const VDateInput: {
1033
1047
  error: boolean;
1034
1048
  active: boolean;
1035
1049
  direction: "horizontal" | "vertical";
1050
+ details: boolean;
1036
1051
  style: import("vue").StyleValue;
1037
1052
  autofocus: boolean;
1038
1053
  disabled: boolean;
@@ -1146,7 +1161,7 @@ export declare const VDateInput: {
1146
1161
  "onUpdate:modelValue"?: ((val: string) => any) | undefined;
1147
1162
  "onClick:control"?: ((e: MouseEvent) => any) | undefined;
1148
1163
  "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
1149
- } & 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">;
1164
+ } & 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">;
1150
1165
  $attrs: {
1151
1166
  [x: string]: unknown;
1152
1167
  };
@@ -1184,6 +1199,7 @@ export declare const VDateInput: {
1184
1199
  error: boolean;
1185
1200
  active: boolean;
1186
1201
  direction: "horizontal" | "vertical";
1202
+ details: boolean;
1187
1203
  style: import("vue").StyleValue;
1188
1204
  autofocus: boolean;
1189
1205
  disabled: boolean;
@@ -1534,6 +1550,7 @@ export declare const VDateInput: {
1534
1550
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
1535
1551
  error: boolean;
1536
1552
  active: boolean;
1553
+ details: boolean;
1537
1554
  style: import("vue").StyleValue;
1538
1555
  disabled: boolean;
1539
1556
  focused: boolean;
@@ -1552,6 +1569,7 @@ export declare const VDateInput: {
1552
1569
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
1553
1570
  error: boolean;
1554
1571
  active: boolean;
1572
+ details: boolean;
1555
1573
  style: import("vue").StyleValue;
1556
1574
  disabled: boolean;
1557
1575
  focused: boolean;
@@ -1579,7 +1597,7 @@ export declare const VDateInput: {
1579
1597
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
1580
1598
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
1581
1599
  centerAffix?: boolean | undefined;
1582
- } & 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">;
1600
+ } & 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">;
1583
1601
  $attrs: {
1584
1602
  [x: string]: unknown;
1585
1603
  };
@@ -1610,6 +1628,7 @@ export declare const VDateInput: {
1610
1628
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
1611
1629
  error: boolean;
1612
1630
  active: boolean;
1631
+ details: boolean;
1613
1632
  style: import("vue").StyleValue;
1614
1633
  disabled: boolean;
1615
1634
  focused: boolean;
@@ -1652,6 +1671,7 @@ export declare const VDateInput: {
1652
1671
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
1653
1672
  error: boolean;
1654
1673
  active: boolean;
1674
+ details: boolean;
1655
1675
  style: import("vue").StyleValue;
1656
1676
  disabled: boolean;
1657
1677
  focused: boolean;
@@ -1702,6 +1722,7 @@ export declare const VDateInput: {
1702
1722
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
1703
1723
  error: boolean;
1704
1724
  active: boolean;
1725
+ details: boolean;
1705
1726
  style: import("vue").StyleValue;
1706
1727
  disabled: boolean;
1707
1728
  focused: boolean;
@@ -1720,6 +1741,7 @@ export declare const VDateInput: {
1720
1741
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
1721
1742
  error: boolean;
1722
1743
  active: boolean;
1744
+ details: boolean;
1723
1745
  style: import("vue").StyleValue;
1724
1746
  disabled: boolean;
1725
1747
  focused: boolean;
@@ -1750,13 +1772,13 @@ export declare const VDateInput: {
1750
1772
  centerAffix?: boolean | undefined;
1751
1773
  } & {
1752
1774
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
1753
- }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
1775
+ }, ("flat" | "reverse" | "variant" | "error" | "active" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
1754
1776
  controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
1755
1777
  fieldIconColor: import("vue").ComputedRef<string | undefined>;
1756
1778
  }> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
1757
1779
  modelValue?: unknown;
1758
1780
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
1759
- }, 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}`> & {
1781
+ }, 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}`> & {
1760
1782
  _allExposed: {
1761
1783
  reset: () => Promise<void>;
1762
1784
  resetValidation: () => Promise<void>;
@@ -1780,6 +1802,7 @@ export declare const VDateInput: {
1780
1802
  error: boolean;
1781
1803
  active: boolean;
1782
1804
  direction: "horizontal" | "vertical";
1805
+ details: boolean;
1783
1806
  style: import("vue").StyleValue;
1784
1807
  autofocus: boolean;
1785
1808
  disabled: boolean;
@@ -1848,6 +1871,7 @@ export declare const VDateInput: {
1848
1871
  error: boolean;
1849
1872
  active: boolean;
1850
1873
  direction: "horizontal" | "vertical";
1874
+ details: boolean;
1851
1875
  style: import("vue").StyleValue;
1852
1876
  autofocus: boolean;
1853
1877
  disabled: boolean;
@@ -1879,6 +1903,7 @@ export declare const VDateInput: {
1879
1903
  error: boolean;
1880
1904
  active: boolean;
1881
1905
  direction: "horizontal" | "vertical";
1906
+ details: boolean;
1882
1907
  style: import("vue").StyleValue;
1883
1908
  autofocus: boolean;
1884
1909
  disabled: boolean;
@@ -1997,7 +2022,7 @@ export declare const VDateInput: {
1997
2022
  "onUpdate:modelValue"?: ((val: string) => any) | undefined;
1998
2023
  "onClick:control"?: ((e: MouseEvent) => any) | undefined;
1999
2024
  "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
2000
- }, "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<{
2025
+ }, "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<{
2001
2026
  $: import("vue").ComponentInternalInstance;
2002
2027
  $data: {};
2003
2028
  $props: Partial<{
@@ -2229,6 +2254,7 @@ export declare const VDateInput: {
2229
2254
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
2230
2255
  error: boolean;
2231
2256
  active: boolean;
2257
+ details: boolean;
2232
2258
  style: import("vue").StyleValue;
2233
2259
  disabled: boolean;
2234
2260
  focused: boolean;
@@ -2247,6 +2273,7 @@ export declare const VDateInput: {
2247
2273
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
2248
2274
  error: boolean;
2249
2275
  active: boolean;
2276
+ details: boolean;
2250
2277
  style: import("vue").StyleValue;
2251
2278
  disabled: boolean;
2252
2279
  focused: boolean;
@@ -2274,7 +2301,7 @@ export declare const VDateInput: {
2274
2301
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
2275
2302
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
2276
2303
  centerAffix?: boolean | undefined;
2277
- } & 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">;
2304
+ } & 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">;
2278
2305
  $attrs: {
2279
2306
  [x: string]: unknown;
2280
2307
  };
@@ -2305,6 +2332,7 @@ export declare const VDateInput: {
2305
2332
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
2306
2333
  error: boolean;
2307
2334
  active: boolean;
2335
+ details: boolean;
2308
2336
  style: import("vue").StyleValue;
2309
2337
  disabled: boolean;
2310
2338
  focused: boolean;
@@ -2347,6 +2375,7 @@ export declare const VDateInput: {
2347
2375
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
2348
2376
  error: boolean;
2349
2377
  active: boolean;
2378
+ details: boolean;
2350
2379
  style: import("vue").StyleValue;
2351
2380
  disabled: boolean;
2352
2381
  focused: boolean;
@@ -2397,6 +2426,7 @@ export declare const VDateInput: {
2397
2426
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
2398
2427
  error: boolean;
2399
2428
  active: boolean;
2429
+ details: boolean;
2400
2430
  style: import("vue").StyleValue;
2401
2431
  disabled: boolean;
2402
2432
  focused: boolean;
@@ -2415,6 +2445,7 @@ export declare const VDateInput: {
2415
2445
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
2416
2446
  error: boolean;
2417
2447
  active: boolean;
2448
+ details: boolean;
2418
2449
  style: import("vue").StyleValue;
2419
2450
  disabled: boolean;
2420
2451
  focused: boolean;
@@ -2445,13 +2476,13 @@ export declare const VDateInput: {
2445
2476
  centerAffix?: boolean | undefined;
2446
2477
  } & {
2447
2478
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
2448
- }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
2479
+ }, ("flat" | "reverse" | "variant" | "error" | "active" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
2449
2480
  controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
2450
2481
  fieldIconColor: import("vue").ComputedRef<string | undefined>;
2451
2482
  }> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
2452
2483
  modelValue?: unknown;
2453
2484
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
2454
- }, 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}`> & {
2485
+ }, 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}`> & {
2455
2486
  _allExposed: {
2456
2487
  reset: () => Promise<void>;
2457
2488
  resetValidation: () => Promise<void>;
@@ -2462,7 +2493,7 @@ export declare const VDateInput: {
2462
2493
  controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
2463
2494
  fieldIconColor: import("vue").ComputedRef<string | undefined>;
2464
2495
  } | {};
2465
- }> & {} & 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}`> & {
2496
+ }> & {} & 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}`> & {
2466
2497
  _allExposed: (Omit<Omit<{
2467
2498
  $: import("vue").ComponentInternalInstance;
2468
2499
  $data: {};
@@ -2695,6 +2726,7 @@ export declare const VDateInput: {
2695
2726
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
2696
2727
  error: boolean;
2697
2728
  active: boolean;
2729
+ details: boolean;
2698
2730
  style: import("vue").StyleValue;
2699
2731
  disabled: boolean;
2700
2732
  focused: boolean;
@@ -2713,6 +2745,7 @@ export declare const VDateInput: {
2713
2745
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
2714
2746
  error: boolean;
2715
2747
  active: boolean;
2748
+ details: boolean;
2716
2749
  style: import("vue").StyleValue;
2717
2750
  disabled: boolean;
2718
2751
  focused: boolean;
@@ -2740,7 +2773,7 @@ export declare const VDateInput: {
2740
2773
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
2741
2774
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
2742
2775
  centerAffix?: boolean | undefined;
2743
- } & 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">;
2776
+ } & 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">;
2744
2777
  $attrs: {
2745
2778
  [x: string]: unknown;
2746
2779
  };
@@ -2771,6 +2804,7 @@ export declare const VDateInput: {
2771
2804
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
2772
2805
  error: boolean;
2773
2806
  active: boolean;
2807
+ details: boolean;
2774
2808
  style: import("vue").StyleValue;
2775
2809
  disabled: boolean;
2776
2810
  focused: boolean;
@@ -2813,6 +2847,7 @@ export declare const VDateInput: {
2813
2847
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
2814
2848
  error: boolean;
2815
2849
  active: boolean;
2850
+ details: boolean;
2816
2851
  style: import("vue").StyleValue;
2817
2852
  disabled: boolean;
2818
2853
  focused: boolean;
@@ -2863,6 +2898,7 @@ export declare const VDateInput: {
2863
2898
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
2864
2899
  error: boolean;
2865
2900
  active: boolean;
2901
+ details: boolean;
2866
2902
  style: import("vue").StyleValue;
2867
2903
  disabled: boolean;
2868
2904
  focused: boolean;
@@ -2881,6 +2917,7 @@ export declare const VDateInput: {
2881
2917
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
2882
2918
  error: boolean;
2883
2919
  active: boolean;
2920
+ details: boolean;
2884
2921
  style: import("vue").StyleValue;
2885
2922
  disabled: boolean;
2886
2923
  focused: boolean;
@@ -2911,13 +2948,13 @@ export declare const VDateInput: {
2911
2948
  centerAffix?: boolean | undefined;
2912
2949
  } & {
2913
2950
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
2914
- }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
2951
+ }, ("flat" | "reverse" | "variant" | "error" | "active" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
2915
2952
  controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
2916
2953
  fieldIconColor: import("vue").ComputedRef<string | undefined>;
2917
2954
  }> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
2918
2955
  modelValue?: unknown;
2919
2956
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
2920
- }, 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}`> & {
2957
+ }, 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}`> & {
2921
2958
  _allExposed: {
2922
2959
  reset: () => Promise<void>;
2923
2960
  resetValidation: () => Promise<void>;
@@ -2945,6 +2982,7 @@ export declare const VDateInput: {
2945
2982
  active: boolean;
2946
2983
  direction: "horizontal" | "vertical";
2947
2984
  transition: string;
2985
+ details: boolean;
2948
2986
  header: string;
2949
2987
  menu: boolean;
2950
2988
  style: import("vue").StyleValue;
@@ -2991,6 +3029,7 @@ export declare const VDateInput: {
2991
3029
  firstDayOfWeek: string | number;
2992
3030
  hideWeekdays: boolean;
2993
3031
  showWeek: boolean;
3032
+ displayFormat: string | ((date: (typeof VDatePicker)["props"]["modelValue"]) => any);
2994
3033
  updateOn: ("blur" | "enter")[];
2995
3034
  }, true, {}, import("vue").SlotsType<Partial<{
2996
3035
  message: (arg: import("../../components/VMessages/VMessages.js").VMessageSlot) => import("vue").VNode[];
@@ -3027,6 +3066,7 @@ export declare const VDateInput: {
3027
3066
  active: boolean;
3028
3067
  direction: "horizontal" | "vertical";
3029
3068
  transition: string;
3069
+ details: boolean;
3030
3070
  header: string;
3031
3071
  menu: boolean;
3032
3072
  style: import("vue").StyleValue;
@@ -3129,7 +3169,7 @@ export declare const VDateInput: {
3129
3169
  allowedMonths?: number[] | ((date: number) => boolean) | undefined;
3130
3170
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
3131
3171
  inputFormat?: string | undefined;
3132
- displayFormat?: string | Function | undefined;
3172
+ displayFormat?: string | ((date: (typeof VDatePicker)["props"]["modelValue"]) => any) | undefined;
3133
3173
  } & {
3134
3174
  $children?: import("vue").VNodeChild | (() => import("vue").VNodeChild) | {
3135
3175
  message?: ((arg: import("../../components/VMessages/VMessages.js").VMessageSlot) => import("vue").VNodeChild) | undefined;
@@ -3204,6 +3244,7 @@ export declare const VDateInput: {
3204
3244
  error: boolean;
3205
3245
  active: boolean;
3206
3246
  direction: "horizontal" | "vertical";
3247
+ details: boolean;
3207
3248
  style: import("vue").StyleValue;
3208
3249
  autofocus: boolean;
3209
3250
  disabled: boolean;
@@ -3235,6 +3276,7 @@ export declare const VDateInput: {
3235
3276
  error: boolean;
3236
3277
  active: boolean;
3237
3278
  direction: "horizontal" | "vertical";
3279
+ details: boolean;
3238
3280
  style: import("vue").StyleValue;
3239
3281
  autofocus: boolean;
3240
3282
  disabled: boolean;
@@ -3348,7 +3390,7 @@ export declare const VDateInput: {
3348
3390
  "onUpdate:modelValue"?: ((val: string) => any) | undefined;
3349
3391
  "onClick:control"?: ((e: MouseEvent) => any) | undefined;
3350
3392
  "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
3351
- } & 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">;
3393
+ } & 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">;
3352
3394
  $attrs: {
3353
3395
  [x: string]: unknown;
3354
3396
  };
@@ -3386,6 +3428,7 @@ export declare const VDateInput: {
3386
3428
  error: boolean;
3387
3429
  active: boolean;
3388
3430
  direction: "horizontal" | "vertical";
3431
+ details: boolean;
3389
3432
  style: import("vue").StyleValue;
3390
3433
  autofocus: boolean;
3391
3434
  disabled: boolean;
@@ -3736,6 +3779,7 @@ export declare const VDateInput: {
3736
3779
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
3737
3780
  error: boolean;
3738
3781
  active: boolean;
3782
+ details: boolean;
3739
3783
  style: import("vue").StyleValue;
3740
3784
  disabled: boolean;
3741
3785
  focused: boolean;
@@ -3754,6 +3798,7 @@ export declare const VDateInput: {
3754
3798
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
3755
3799
  error: boolean;
3756
3800
  active: boolean;
3801
+ details: boolean;
3757
3802
  style: import("vue").StyleValue;
3758
3803
  disabled: boolean;
3759
3804
  focused: boolean;
@@ -3781,7 +3826,7 @@ export declare const VDateInput: {
3781
3826
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
3782
3827
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
3783
3828
  centerAffix?: boolean | undefined;
3784
- } & 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">;
3829
+ } & 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">;
3785
3830
  $attrs: {
3786
3831
  [x: string]: unknown;
3787
3832
  };
@@ -3812,6 +3857,7 @@ export declare const VDateInput: {
3812
3857
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
3813
3858
  error: boolean;
3814
3859
  active: boolean;
3860
+ details: boolean;
3815
3861
  style: import("vue").StyleValue;
3816
3862
  disabled: boolean;
3817
3863
  focused: boolean;
@@ -3854,6 +3900,7 @@ export declare const VDateInput: {
3854
3900
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
3855
3901
  error: boolean;
3856
3902
  active: boolean;
3903
+ details: boolean;
3857
3904
  style: import("vue").StyleValue;
3858
3905
  disabled: boolean;
3859
3906
  focused: boolean;
@@ -3904,6 +3951,7 @@ export declare const VDateInput: {
3904
3951
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
3905
3952
  error: boolean;
3906
3953
  active: boolean;
3954
+ details: boolean;
3907
3955
  style: import("vue").StyleValue;
3908
3956
  disabled: boolean;
3909
3957
  focused: boolean;
@@ -3922,6 +3970,7 @@ export declare const VDateInput: {
3922
3970
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
3923
3971
  error: boolean;
3924
3972
  active: boolean;
3973
+ details: boolean;
3925
3974
  style: import("vue").StyleValue;
3926
3975
  disabled: boolean;
3927
3976
  focused: boolean;
@@ -3952,13 +4001,13 @@ export declare const VDateInput: {
3952
4001
  centerAffix?: boolean | undefined;
3953
4002
  } & {
3954
4003
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
3955
- }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
4004
+ }, ("flat" | "reverse" | "variant" | "error" | "active" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
3956
4005
  controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
3957
4006
  fieldIconColor: import("vue").ComputedRef<string | undefined>;
3958
4007
  }> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
3959
4008
  modelValue?: unknown;
3960
4009
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
3961
- }, 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}`> & {
4010
+ }, 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}`> & {
3962
4011
  _allExposed: {
3963
4012
  reset: () => Promise<void>;
3964
4013
  resetValidation: () => Promise<void>;
@@ -3982,6 +4031,7 @@ export declare const VDateInput: {
3982
4031
  error: boolean;
3983
4032
  active: boolean;
3984
4033
  direction: "horizontal" | "vertical";
4034
+ details: boolean;
3985
4035
  style: import("vue").StyleValue;
3986
4036
  autofocus: boolean;
3987
4037
  disabled: boolean;
@@ -4050,6 +4100,7 @@ export declare const VDateInput: {
4050
4100
  error: boolean;
4051
4101
  active: boolean;
4052
4102
  direction: "horizontal" | "vertical";
4103
+ details: boolean;
4053
4104
  style: import("vue").StyleValue;
4054
4105
  autofocus: boolean;
4055
4106
  disabled: boolean;
@@ -4081,6 +4132,7 @@ export declare const VDateInput: {
4081
4132
  error: boolean;
4082
4133
  active: boolean;
4083
4134
  direction: "horizontal" | "vertical";
4135
+ details: boolean;
4084
4136
  style: import("vue").StyleValue;
4085
4137
  autofocus: boolean;
4086
4138
  disabled: boolean;
@@ -4199,7 +4251,7 @@ export declare const VDateInput: {
4199
4251
  "onUpdate:modelValue"?: ((val: string) => any) | undefined;
4200
4252
  "onClick:control"?: ((e: MouseEvent) => any) | undefined;
4201
4253
  "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
4202
- }, "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<{
4254
+ }, "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<{
4203
4255
  $: import("vue").ComponentInternalInstance;
4204
4256
  $data: {};
4205
4257
  $props: Partial<{
@@ -4431,6 +4483,7 @@ export declare const VDateInput: {
4431
4483
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
4432
4484
  error: boolean;
4433
4485
  active: boolean;
4486
+ details: boolean;
4434
4487
  style: import("vue").StyleValue;
4435
4488
  disabled: boolean;
4436
4489
  focused: boolean;
@@ -4449,6 +4502,7 @@ export declare const VDateInput: {
4449
4502
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
4450
4503
  error: boolean;
4451
4504
  active: boolean;
4505
+ details: boolean;
4452
4506
  style: import("vue").StyleValue;
4453
4507
  disabled: boolean;
4454
4508
  focused: boolean;
@@ -4476,7 +4530,7 @@ export declare const VDateInput: {
4476
4530
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
4477
4531
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
4478
4532
  centerAffix?: boolean | undefined;
4479
- } & 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">;
4533
+ } & 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">;
4480
4534
  $attrs: {
4481
4535
  [x: string]: unknown;
4482
4536
  };
@@ -4507,6 +4561,7 @@ export declare const VDateInput: {
4507
4561
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
4508
4562
  error: boolean;
4509
4563
  active: boolean;
4564
+ details: boolean;
4510
4565
  style: import("vue").StyleValue;
4511
4566
  disabled: boolean;
4512
4567
  focused: boolean;
@@ -4549,6 +4604,7 @@ export declare const VDateInput: {
4549
4604
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
4550
4605
  error: boolean;
4551
4606
  active: boolean;
4607
+ details: boolean;
4552
4608
  style: import("vue").StyleValue;
4553
4609
  disabled: boolean;
4554
4610
  focused: boolean;
@@ -4599,6 +4655,7 @@ export declare const VDateInput: {
4599
4655
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
4600
4656
  error: boolean;
4601
4657
  active: boolean;
4658
+ details: boolean;
4602
4659
  style: import("vue").StyleValue;
4603
4660
  disabled: boolean;
4604
4661
  focused: boolean;
@@ -4617,6 +4674,7 @@ export declare const VDateInput: {
4617
4674
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
4618
4675
  error: boolean;
4619
4676
  active: boolean;
4677
+ details: boolean;
4620
4678
  style: import("vue").StyleValue;
4621
4679
  disabled: boolean;
4622
4680
  focused: boolean;
@@ -4647,13 +4705,13 @@ export declare const VDateInput: {
4647
4705
  centerAffix?: boolean | undefined;
4648
4706
  } & {
4649
4707
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
4650
- }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
4708
+ }, ("flat" | "reverse" | "variant" | "error" | "active" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
4651
4709
  controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
4652
4710
  fieldIconColor: import("vue").ComputedRef<string | undefined>;
4653
4711
  }> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
4654
4712
  modelValue?: unknown;
4655
4713
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
4656
- }, 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}`> & {
4714
+ }, 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}`> & {
4657
4715
  _allExposed: {
4658
4716
  reset: () => Promise<void>;
4659
4717
  resetValidation: () => Promise<void>;
@@ -4664,7 +4722,7 @@ export declare const VDateInput: {
4664
4722
  controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
4665
4723
  fieldIconColor: import("vue").ComputedRef<string | undefined>;
4666
4724
  } | {};
4667
- }> & {} & 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}`> & {
4725
+ }> & {} & 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}`> & {
4668
4726
  _allExposed: (Omit<Omit<{
4669
4727
  $: import("vue").ComponentInternalInstance;
4670
4728
  $data: {};
@@ -4897,6 +4955,7 @@ export declare const VDateInput: {
4897
4955
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
4898
4956
  error: boolean;
4899
4957
  active: boolean;
4958
+ details: boolean;
4900
4959
  style: import("vue").StyleValue;
4901
4960
  disabled: boolean;
4902
4961
  focused: boolean;
@@ -4915,6 +4974,7 @@ export declare const VDateInput: {
4915
4974
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
4916
4975
  error: boolean;
4917
4976
  active: boolean;
4977
+ details: boolean;
4918
4978
  style: import("vue").StyleValue;
4919
4979
  disabled: boolean;
4920
4980
  focused: boolean;
@@ -4942,7 +5002,7 @@ export declare const VDateInput: {
4942
5002
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
4943
5003
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
4944
5004
  centerAffix?: boolean | undefined;
4945
- } & 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">;
5005
+ } & 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">;
4946
5006
  $attrs: {
4947
5007
  [x: string]: unknown;
4948
5008
  };
@@ -4973,6 +5033,7 @@ export declare const VDateInput: {
4973
5033
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
4974
5034
  error: boolean;
4975
5035
  active: boolean;
5036
+ details: boolean;
4976
5037
  style: import("vue").StyleValue;
4977
5038
  disabled: boolean;
4978
5039
  focused: boolean;
@@ -5015,6 +5076,7 @@ export declare const VDateInput: {
5015
5076
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
5016
5077
  error: boolean;
5017
5078
  active: boolean;
5079
+ details: boolean;
5018
5080
  style: import("vue").StyleValue;
5019
5081
  disabled: boolean;
5020
5082
  focused: boolean;
@@ -5065,6 +5127,7 @@ export declare const VDateInput: {
5065
5127
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
5066
5128
  error: boolean;
5067
5129
  active: boolean;
5130
+ details: boolean;
5068
5131
  style: import("vue").StyleValue;
5069
5132
  disabled: boolean;
5070
5133
  focused: boolean;
@@ -5083,6 +5146,7 @@ export declare const VDateInput: {
5083
5146
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
5084
5147
  error: boolean;
5085
5148
  active: boolean;
5149
+ details: boolean;
5086
5150
  style: import("vue").StyleValue;
5087
5151
  disabled: boolean;
5088
5152
  focused: boolean;
@@ -5113,13 +5177,13 @@ export declare const VDateInput: {
5113
5177
  centerAffix?: boolean | undefined;
5114
5178
  } & {
5115
5179
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
5116
- }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
5180
+ }, ("flat" | "reverse" | "variant" | "error" | "active" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
5117
5181
  controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
5118
5182
  fieldIconColor: import("vue").ComputedRef<string | undefined>;
5119
5183
  }> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
5120
5184
  modelValue?: unknown;
5121
5185
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
5122
- }, 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}`> & {
5186
+ }, 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}`> & {
5123
5187
  _allExposed: {
5124
5188
  reset: () => Promise<void>;
5125
5189
  resetValidation: () => Promise<void>;
@@ -5141,6 +5205,7 @@ export declare const VDateInput: {
5141
5205
  active: boolean;
5142
5206
  direction: "horizontal" | "vertical";
5143
5207
  transition: string;
5208
+ details: boolean;
5144
5209
  header: string;
5145
5210
  menu: boolean;
5146
5211
  style: import("vue").StyleValue;
@@ -5187,6 +5252,7 @@ export declare const VDateInput: {
5187
5252
  firstDayOfWeek: string | number;
5188
5253
  hideWeekdays: boolean;
5189
5254
  showWeek: boolean;
5255
+ displayFormat: string | ((date: (typeof VDatePicker)["props"]["modelValue"]) => any);
5190
5256
  updateOn: ("blur" | "enter")[];
5191
5257
  }>;
5192
5258
  __isFragment?: never;
@@ -5202,6 +5268,7 @@ export declare const VDateInput: {
5202
5268
  active: boolean;
5203
5269
  direction: "horizontal" | "vertical";
5204
5270
  transition: string;
5271
+ details: boolean;
5205
5272
  header: string;
5206
5273
  menu: boolean;
5207
5274
  style: import("vue").StyleValue;
@@ -5304,7 +5371,7 @@ export declare const VDateInput: {
5304
5371
  allowedMonths?: number[] | ((date: number) => boolean) | undefined;
5305
5372
  allowedYears?: number[] | ((date: number) => boolean) | undefined;
5306
5373
  inputFormat?: string | undefined;
5307
- displayFormat?: string | Function | undefined;
5374
+ displayFormat?: string | ((date: (typeof VDatePicker)["props"]["modelValue"]) => any) | undefined;
5308
5375
  } & {
5309
5376
  $children?: import("vue").VNodeChild | (() => import("vue").VNodeChild) | {
5310
5377
  message?: ((arg: import("../../components/VMessages/VMessages.js").VMessageSlot) => import("vue").VNodeChild) | undefined;
@@ -5379,6 +5446,7 @@ export declare const VDateInput: {
5379
5446
  error: boolean;
5380
5447
  active: boolean;
5381
5448
  direction: "horizontal" | "vertical";
5449
+ details: boolean;
5382
5450
  style: import("vue").StyleValue;
5383
5451
  autofocus: boolean;
5384
5452
  disabled: boolean;
@@ -5410,6 +5478,7 @@ export declare const VDateInput: {
5410
5478
  error: boolean;
5411
5479
  active: boolean;
5412
5480
  direction: "horizontal" | "vertical";
5481
+ details: boolean;
5413
5482
  style: import("vue").StyleValue;
5414
5483
  autofocus: boolean;
5415
5484
  disabled: boolean;
@@ -5523,7 +5592,7 @@ export declare const VDateInput: {
5523
5592
  "onUpdate:modelValue"?: ((val: string) => any) | undefined;
5524
5593
  "onClick:control"?: ((e: MouseEvent) => any) | undefined;
5525
5594
  "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
5526
- } & 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">;
5595
+ } & 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">;
5527
5596
  $attrs: {
5528
5597
  [x: string]: unknown;
5529
5598
  };
@@ -5561,6 +5630,7 @@ export declare const VDateInput: {
5561
5630
  error: boolean;
5562
5631
  active: boolean;
5563
5632
  direction: "horizontal" | "vertical";
5633
+ details: boolean;
5564
5634
  style: import("vue").StyleValue;
5565
5635
  autofocus: boolean;
5566
5636
  disabled: boolean;
@@ -5911,6 +5981,7 @@ export declare const VDateInput: {
5911
5981
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
5912
5982
  error: boolean;
5913
5983
  active: boolean;
5984
+ details: boolean;
5914
5985
  style: import("vue").StyleValue;
5915
5986
  disabled: boolean;
5916
5987
  focused: boolean;
@@ -5929,6 +6000,7 @@ export declare const VDateInput: {
5929
6000
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
5930
6001
  error: boolean;
5931
6002
  active: boolean;
6003
+ details: boolean;
5932
6004
  style: import("vue").StyleValue;
5933
6005
  disabled: boolean;
5934
6006
  focused: boolean;
@@ -5956,7 +6028,7 @@ export declare const VDateInput: {
5956
6028
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
5957
6029
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
5958
6030
  centerAffix?: boolean | undefined;
5959
- } & 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">;
6031
+ } & 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">;
5960
6032
  $attrs: {
5961
6033
  [x: string]: unknown;
5962
6034
  };
@@ -5987,6 +6059,7 @@ export declare const VDateInput: {
5987
6059
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
5988
6060
  error: boolean;
5989
6061
  active: boolean;
6062
+ details: boolean;
5990
6063
  style: import("vue").StyleValue;
5991
6064
  disabled: boolean;
5992
6065
  focused: boolean;
@@ -6029,6 +6102,7 @@ export declare const VDateInput: {
6029
6102
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
6030
6103
  error: boolean;
6031
6104
  active: boolean;
6105
+ details: boolean;
6032
6106
  style: import("vue").StyleValue;
6033
6107
  disabled: boolean;
6034
6108
  focused: boolean;
@@ -6079,6 +6153,7 @@ export declare const VDateInput: {
6079
6153
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
6080
6154
  error: boolean;
6081
6155
  active: boolean;
6156
+ details: boolean;
6082
6157
  style: import("vue").StyleValue;
6083
6158
  disabled: boolean;
6084
6159
  focused: boolean;
@@ -6097,6 +6172,7 @@ export declare const VDateInput: {
6097
6172
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
6098
6173
  error: boolean;
6099
6174
  active: boolean;
6175
+ details: boolean;
6100
6176
  style: import("vue").StyleValue;
6101
6177
  disabled: boolean;
6102
6178
  focused: boolean;
@@ -6127,13 +6203,13 @@ export declare const VDateInput: {
6127
6203
  centerAffix?: boolean | undefined;
6128
6204
  } & {
6129
6205
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
6130
- }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
6206
+ }, ("flat" | "reverse" | "variant" | "error" | "active" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
6131
6207
  controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
6132
6208
  fieldIconColor: import("vue").ComputedRef<string | undefined>;
6133
6209
  }> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
6134
6210
  modelValue?: unknown;
6135
6211
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
6136
- }, 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}`> & {
6212
+ }, 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}`> & {
6137
6213
  _allExposed: {
6138
6214
  reset: () => Promise<void>;
6139
6215
  resetValidation: () => Promise<void>;
@@ -6157,6 +6233,7 @@ export declare const VDateInput: {
6157
6233
  error: boolean;
6158
6234
  active: boolean;
6159
6235
  direction: "horizontal" | "vertical";
6236
+ details: boolean;
6160
6237
  style: import("vue").StyleValue;
6161
6238
  autofocus: boolean;
6162
6239
  disabled: boolean;
@@ -6225,6 +6302,7 @@ export declare const VDateInput: {
6225
6302
  error: boolean;
6226
6303
  active: boolean;
6227
6304
  direction: "horizontal" | "vertical";
6305
+ details: boolean;
6228
6306
  style: import("vue").StyleValue;
6229
6307
  autofocus: boolean;
6230
6308
  disabled: boolean;
@@ -6256,6 +6334,7 @@ export declare const VDateInput: {
6256
6334
  error: boolean;
6257
6335
  active: boolean;
6258
6336
  direction: "horizontal" | "vertical";
6337
+ details: boolean;
6259
6338
  style: import("vue").StyleValue;
6260
6339
  autofocus: boolean;
6261
6340
  disabled: boolean;
@@ -6374,7 +6453,7 @@ export declare const VDateInput: {
6374
6453
  "onUpdate:modelValue"?: ((val: string) => any) | undefined;
6375
6454
  "onClick:control"?: ((e: MouseEvent) => any) | undefined;
6376
6455
  "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
6377
- }, "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<{
6456
+ }, "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<{
6378
6457
  $: import("vue").ComponentInternalInstance;
6379
6458
  $data: {};
6380
6459
  $props: Partial<{
@@ -6606,6 +6685,7 @@ export declare const VDateInput: {
6606
6685
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
6607
6686
  error: boolean;
6608
6687
  active: boolean;
6688
+ details: boolean;
6609
6689
  style: import("vue").StyleValue;
6610
6690
  disabled: boolean;
6611
6691
  focused: boolean;
@@ -6624,6 +6704,7 @@ export declare const VDateInput: {
6624
6704
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
6625
6705
  error: boolean;
6626
6706
  active: boolean;
6707
+ details: boolean;
6627
6708
  style: import("vue").StyleValue;
6628
6709
  disabled: boolean;
6629
6710
  focused: boolean;
@@ -6651,7 +6732,7 @@ export declare const VDateInput: {
6651
6732
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
6652
6733
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
6653
6734
  centerAffix?: boolean | undefined;
6654
- } & 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">;
6735
+ } & 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">;
6655
6736
  $attrs: {
6656
6737
  [x: string]: unknown;
6657
6738
  };
@@ -6682,6 +6763,7 @@ export declare const VDateInput: {
6682
6763
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
6683
6764
  error: boolean;
6684
6765
  active: boolean;
6766
+ details: boolean;
6685
6767
  style: import("vue").StyleValue;
6686
6768
  disabled: boolean;
6687
6769
  focused: boolean;
@@ -6724,6 +6806,7 @@ export declare const VDateInput: {
6724
6806
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
6725
6807
  error: boolean;
6726
6808
  active: boolean;
6809
+ details: boolean;
6727
6810
  style: import("vue").StyleValue;
6728
6811
  disabled: boolean;
6729
6812
  focused: boolean;
@@ -6774,6 +6857,7 @@ export declare const VDateInput: {
6774
6857
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
6775
6858
  error: boolean;
6776
6859
  active: boolean;
6860
+ details: boolean;
6777
6861
  style: import("vue").StyleValue;
6778
6862
  disabled: boolean;
6779
6863
  focused: boolean;
@@ -6792,6 +6876,7 @@ export declare const VDateInput: {
6792
6876
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
6793
6877
  error: boolean;
6794
6878
  active: boolean;
6879
+ details: boolean;
6795
6880
  style: import("vue").StyleValue;
6796
6881
  disabled: boolean;
6797
6882
  focused: boolean;
@@ -6822,13 +6907,13 @@ export declare const VDateInput: {
6822
6907
  centerAffix?: boolean | undefined;
6823
6908
  } & {
6824
6909
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
6825
- }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
6910
+ }, ("flat" | "reverse" | "variant" | "error" | "active" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
6826
6911
  controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
6827
6912
  fieldIconColor: import("vue").ComputedRef<string | undefined>;
6828
6913
  }> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
6829
6914
  modelValue?: unknown;
6830
6915
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
6831
- }, 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}`> & {
6916
+ }, 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}`> & {
6832
6917
  _allExposed: {
6833
6918
  reset: () => Promise<void>;
6834
6919
  resetValidation: () => Promise<void>;
@@ -6839,7 +6924,7 @@ export declare const VDateInput: {
6839
6924
  controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
6840
6925
  fieldIconColor: import("vue").ComputedRef<string | undefined>;
6841
6926
  } | {};
6842
- }> & {} & 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}`> & {
6927
+ }> & {} & 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}`> & {
6843
6928
  _allExposed: (Omit<Omit<{
6844
6929
  $: import("vue").ComponentInternalInstance;
6845
6930
  $data: {};
@@ -7072,6 +7157,7 @@ export declare const VDateInput: {
7072
7157
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
7073
7158
  error: boolean;
7074
7159
  active: boolean;
7160
+ details: boolean;
7075
7161
  style: import("vue").StyleValue;
7076
7162
  disabled: boolean;
7077
7163
  focused: boolean;
@@ -7090,6 +7176,7 @@ export declare const VDateInput: {
7090
7176
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
7091
7177
  error: boolean;
7092
7178
  active: boolean;
7179
+ details: boolean;
7093
7180
  style: import("vue").StyleValue;
7094
7181
  disabled: boolean;
7095
7182
  focused: boolean;
@@ -7117,7 +7204,7 @@ export declare const VDateInput: {
7117
7204
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
7118
7205
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
7119
7206
  centerAffix?: boolean | undefined;
7120
- } & 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">;
7207
+ } & 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">;
7121
7208
  $attrs: {
7122
7209
  [x: string]: unknown;
7123
7210
  };
@@ -7148,6 +7235,7 @@ export declare const VDateInput: {
7148
7235
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
7149
7236
  error: boolean;
7150
7237
  active: boolean;
7238
+ details: boolean;
7151
7239
  style: import("vue").StyleValue;
7152
7240
  disabled: boolean;
7153
7241
  focused: boolean;
@@ -7190,6 +7278,7 @@ export declare const VDateInput: {
7190
7278
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
7191
7279
  error: boolean;
7192
7280
  active: boolean;
7281
+ details: boolean;
7193
7282
  style: import("vue").StyleValue;
7194
7283
  disabled: boolean;
7195
7284
  focused: boolean;
@@ -7240,6 +7329,7 @@ export declare const VDateInput: {
7240
7329
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
7241
7330
  error: boolean;
7242
7331
  active: boolean;
7332
+ details: boolean;
7243
7333
  style: import("vue").StyleValue;
7244
7334
  disabled: boolean;
7245
7335
  focused: boolean;
@@ -7258,6 +7348,7 @@ export declare const VDateInput: {
7258
7348
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
7259
7349
  error: boolean;
7260
7350
  active: boolean;
7351
+ details: boolean;
7261
7352
  style: import("vue").StyleValue;
7262
7353
  disabled: boolean;
7263
7354
  focused: boolean;
@@ -7288,13 +7379,13 @@ export declare const VDateInput: {
7288
7379
  centerAffix?: boolean | undefined;
7289
7380
  } & {
7290
7381
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
7291
- }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
7382
+ }, ("flat" | "reverse" | "variant" | "error" | "active" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
7292
7383
  controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
7293
7384
  fieldIconColor: import("vue").ComputedRef<string | undefined>;
7294
7385
  }> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
7295
7386
  modelValue?: unknown;
7296
7387
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
7297
- }, 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}`> & {
7388
+ }, 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}`> & {
7298
7389
  _allExposed: {
7299
7390
  reset: () => Promise<void>;
7300
7391
  resetValidation: () => Promise<void>;
@@ -7322,6 +7413,7 @@ export declare const VDateInput: {
7322
7413
  active: boolean;
7323
7414
  direction: "horizontal" | "vertical";
7324
7415
  transition: string;
7416
+ details: boolean;
7325
7417
  header: string;
7326
7418
  menu: boolean;
7327
7419
  style: import("vue").StyleValue;
@@ -7368,6 +7460,7 @@ export declare const VDateInput: {
7368
7460
  firstDayOfWeek: string | number;
7369
7461
  hideWeekdays: boolean;
7370
7462
  showWeek: boolean;
7463
+ displayFormat: string | ((date: (typeof VDatePicker)["props"]["modelValue"]) => any);
7371
7464
  updateOn: ("blur" | "enter")[];
7372
7465
  }, {}, string, import("vue").SlotsType<Partial<{
7373
7466
  message: (arg: import("../../components/VMessages/VMessages.js").VMessageSlot) => import("vue").VNode[];
@@ -7509,6 +7602,7 @@ export declare const VDateInput: {
7509
7602
  default: undefined;
7510
7603
  };
7511
7604
  baseColor: StringConstructor;
7605
+ details: BooleanConstructor;
7512
7606
  dirty: BooleanConstructor;
7513
7607
  glow: BooleanConstructor;
7514
7608
  error: BooleanConstructor;
@@ -7612,7 +7706,10 @@ export declare const VDateInput: {
7612
7706
  type: StringConstructor;
7613
7707
  validator: (v: string) => boolean;
7614
7708
  };
7615
- displayFormat: (FunctionConstructor | StringConstructor)[];
7709
+ displayFormat: {
7710
+ type: PropType<string | ((date: (typeof VDatePicker)["props"]["modelValue"]) => any)>;
7711
+ default: undefined;
7712
+ };
7616
7713
  location: {
7617
7714
  type: PropType<StrategyProps["location"]>;
7618
7715
  default: string;
@@ -7744,6 +7841,7 @@ export declare const VDateInput: {
7744
7841
  default: undefined;
7745
7842
  };
7746
7843
  baseColor: StringConstructor;
7844
+ details: BooleanConstructor;
7747
7845
  dirty: BooleanConstructor;
7748
7846
  glow: BooleanConstructor;
7749
7847
  error: BooleanConstructor;
@@ -7847,7 +7945,10 @@ export declare const VDateInput: {
7847
7945
  type: StringConstructor;
7848
7946
  validator: (v: string) => boolean;
7849
7947
  };
7850
- displayFormat: (FunctionConstructor | StringConstructor)[];
7948
+ displayFormat: {
7949
+ type: PropType<string | ((date: (typeof VDatePicker)["props"]["modelValue"]) => any)>;
7950
+ default: undefined;
7951
+ };
7851
7952
  location: {
7852
7953
  type: PropType<StrategyProps["location"]>;
7853
7954
  default: string;