@vuetify/nightly 3.9.0-master.2025-07-10 → 3.9.0-master.2025-07-12

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 (58) hide show
  1. package/CHANGELOG.md +9 -3
  2. package/dist/json/attributes.json +1672 -1628
  3. package/dist/json/importMap-labs.json +18 -18
  4. package/dist/json/importMap.json +180 -180
  5. package/dist/json/tags.json +11 -0
  6. package/dist/json/web-types.json +3410 -3088
  7. package/dist/vuetify-labs.cjs +42 -27
  8. package/dist/vuetify-labs.css +3015 -3015
  9. package/dist/vuetify-labs.d.ts +845 -297
  10. package/dist/vuetify-labs.esm.js +42 -27
  11. package/dist/vuetify-labs.esm.js.map +1 -1
  12. package/dist/vuetify-labs.js +42 -27
  13. package/dist/vuetify-labs.min.css +2 -2
  14. package/dist/vuetify.cjs +34 -24
  15. package/dist/vuetify.cjs.map +1 -1
  16. package/dist/vuetify.css +3254 -3254
  17. package/dist/vuetify.d.ts +591 -220
  18. package/dist/vuetify.esm.js +34 -24
  19. package/dist/vuetify.esm.js.map +1 -1
  20. package/dist/vuetify.js +34 -24
  21. package/dist/vuetify.js.map +1 -1
  22. package/dist/vuetify.min.css +2 -2
  23. package/dist/vuetify.min.js +15 -15
  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 +7 -3
  29. package/lib/components/VField/VField.js.map +1 -1
  30. package/lib/components/VField/VFieldLabel.js +1 -2
  31. package/lib/components/VField/VFieldLabel.js.map +1 -1
  32. package/lib/components/VFileInput/VFileInput.d.ts +13 -0
  33. package/lib/components/VFileInput/VFileInput.js +3 -1
  34. package/lib/components/VFileInput/VFileInput.js.map +1 -1
  35. package/lib/components/VInput/VInput.d.ts +2 -1
  36. package/lib/components/VInput/VInput.js +15 -14
  37. package/lib/components/VInput/VInput.js.map +1 -1
  38. package/lib/components/VNumberInput/VNumberInput.d.ts +116 -36
  39. package/lib/components/VSelect/VSelect.d.ts +121 -36
  40. package/lib/components/VTextField/VTextField.d.ts +40 -9
  41. package/lib/components/VTextField/VTextField.js +2 -0
  42. package/lib/components/VTextField/VTextField.js.map +1 -1
  43. package/lib/components/VTextarea/VTextarea.d.ts +13 -0
  44. package/lib/components/VTextarea/VTextarea.js +3 -1
  45. package/lib/components/VTextarea/VTextarea.js.map +1 -1
  46. package/lib/composables/dateFormat.js +1 -1
  47. package/lib/composables/dateFormat.js.map +1 -1
  48. package/lib/entry-bundler.js +1 -1
  49. package/lib/framework.d.ts +66 -66
  50. package/lib/framework.js +1 -1
  51. package/lib/labs/VColorInput/VColorInput.d.ts +13 -0
  52. package/lib/labs/VDateInput/VDateInput.d.ts +145 -44
  53. package/lib/labs/VDateInput/VDateInput.js +4 -1
  54. package/lib/labs/VDateInput/VDateInput.js.map +1 -1
  55. package/lib/labs/VMaskInput/VMaskInput.d.ts +121 -36
  56. package/lib/labs/VMaskInput/VMaskInput.js +4 -2
  57. package/lib/labs/VMaskInput/VMaskInput.js.map +1 -1
  58. package/package.json +1 -1
@@ -1728,6 +1728,7 @@ export declare const makeVSelectProps: <Defaults extends {
1728
1728
  maxWidth?: unknown;
1729
1729
  minWidth?: unknown;
1730
1730
  loading?: unknown;
1731
+ details?: unknown;
1731
1732
  label?: unknown;
1732
1733
  style?: unknown;
1733
1734
  prefix?: unknown;
@@ -1921,6 +1922,10 @@ export declare const makeVSelectProps: <Defaults extends {
1921
1922
  type: PropType<unknown extends Defaults["loading"] ? string | boolean : string | boolean | Defaults["loading"]>;
1922
1923
  default: unknown extends Defaults["loading"] ? string | boolean : NonNullable<string | boolean> | Defaults["loading"];
1923
1924
  };
1925
+ details: unknown extends Defaults["details"] ? BooleanConstructor : {
1926
+ type: PropType<unknown extends Defaults["details"] ? boolean : boolean | Defaults["details"]>;
1927
+ default: unknown extends Defaults["details"] ? boolean : boolean | Defaults["details"];
1928
+ };
1924
1929
  label: unknown extends Defaults["label"] ? StringConstructor : {
1925
1930
  type: PropType<unknown extends Defaults["label"] ? string : string | Defaults["label"]>;
1926
1931
  default: unknown extends Defaults["label"] ? string : string | Defaults["label"];
@@ -3883,6 +3888,7 @@ export declare const VSelect: {
3883
3888
  }) | {
3884
3889
  component: Component;
3885
3890
  } | null;
3891
+ details: boolean;
3886
3892
  menu: boolean;
3887
3893
  style: import("vue").StyleValue;
3888
3894
  role: string;
@@ -4350,6 +4356,7 @@ export declare const VSelect: {
4350
4356
  error: boolean;
4351
4357
  active: boolean;
4352
4358
  direction: "horizontal" | "vertical";
4359
+ details: boolean;
4353
4360
  style: import("vue").StyleValue;
4354
4361
  autofocus: boolean;
4355
4362
  disabled: boolean;
@@ -4381,6 +4388,7 @@ export declare const VSelect: {
4381
4388
  error: boolean;
4382
4389
  active: boolean;
4383
4390
  direction: "horizontal" | "vertical";
4391
+ details: boolean;
4384
4392
  style: import("vue").StyleValue;
4385
4393
  autofocus: boolean;
4386
4394
  disabled: boolean;
@@ -4494,7 +4502,7 @@ export declare const VSelect: {
4494
4502
  "onUpdate:modelValue"?: ((val: string) => any) | undefined;
4495
4503
  "onClick:control"?: ((e: MouseEvent) => any) | undefined;
4496
4504
  "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
4497
- } & 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">;
4505
+ } & 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">;
4498
4506
  $attrs: {
4499
4507
  [x: string]: unknown;
4500
4508
  };
@@ -4532,6 +4540,7 @@ export declare const VSelect: {
4532
4540
  error: boolean;
4533
4541
  active: boolean;
4534
4542
  direction: "horizontal" | "vertical";
4543
+ details: boolean;
4535
4544
  style: import("vue").StyleValue;
4536
4545
  autofocus: boolean;
4537
4546
  disabled: boolean;
@@ -4882,6 +4891,7 @@ export declare const VSelect: {
4882
4891
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
4883
4892
  error: boolean;
4884
4893
  active: boolean;
4894
+ details: boolean;
4885
4895
  style: import("vue").StyleValue;
4886
4896
  disabled: boolean;
4887
4897
  focused: boolean;
@@ -4900,6 +4910,7 @@ export declare const VSelect: {
4900
4910
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
4901
4911
  error: boolean;
4902
4912
  active: boolean;
4913
+ details: boolean;
4903
4914
  style: import("vue").StyleValue;
4904
4915
  disabled: boolean;
4905
4916
  focused: boolean;
@@ -4927,7 +4938,7 @@ export declare const VSelect: {
4927
4938
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
4928
4939
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
4929
4940
  centerAffix?: boolean | undefined;
4930
- } & 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">;
4941
+ } & 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">;
4931
4942
  $attrs: {
4932
4943
  [x: string]: unknown;
4933
4944
  };
@@ -4958,6 +4969,7 @@ export declare const VSelect: {
4958
4969
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
4959
4970
  error: boolean;
4960
4971
  active: boolean;
4972
+ details: boolean;
4961
4973
  style: import("vue").StyleValue;
4962
4974
  disabled: boolean;
4963
4975
  focused: boolean;
@@ -5000,6 +5012,7 @@ export declare const VSelect: {
5000
5012
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
5001
5013
  error: boolean;
5002
5014
  active: boolean;
5015
+ details: boolean;
5003
5016
  style: import("vue").StyleValue;
5004
5017
  disabled: boolean;
5005
5018
  focused: boolean;
@@ -5050,6 +5063,7 @@ export declare const VSelect: {
5050
5063
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
5051
5064
  error: boolean;
5052
5065
  active: boolean;
5066
+ details: boolean;
5053
5067
  style: import("vue").StyleValue;
5054
5068
  disabled: boolean;
5055
5069
  focused: boolean;
@@ -5068,6 +5082,7 @@ export declare const VSelect: {
5068
5082
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
5069
5083
  error: boolean;
5070
5084
  active: boolean;
5085
+ details: boolean;
5071
5086
  style: import("vue").StyleValue;
5072
5087
  disabled: boolean;
5073
5088
  focused: boolean;
@@ -5098,13 +5113,13 @@ export declare const VSelect: {
5098
5113
  centerAffix?: boolean | undefined;
5099
5114
  } & {
5100
5115
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
5101
- }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
5116
+ }, ("flat" | "reverse" | "variant" | "error" | "active" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
5102
5117
  controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
5103
5118
  fieldIconColor: import("vue").ComputedRef<string | undefined>;
5104
5119
  }> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
5105
5120
  modelValue?: unknown;
5106
5121
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
5107
- }, 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}`> & {
5122
+ }, 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}`> & {
5108
5123
  _allExposed: {
5109
5124
  reset: () => Promise<void>;
5110
5125
  resetValidation: () => Promise<void>;
@@ -5128,6 +5143,7 @@ export declare const VSelect: {
5128
5143
  error: boolean;
5129
5144
  active: boolean;
5130
5145
  direction: "horizontal" | "vertical";
5146
+ details: boolean;
5131
5147
  style: import("vue").StyleValue;
5132
5148
  autofocus: boolean;
5133
5149
  disabled: boolean;
@@ -5196,6 +5212,7 @@ export declare const VSelect: {
5196
5212
  error: boolean;
5197
5213
  active: boolean;
5198
5214
  direction: "horizontal" | "vertical";
5215
+ details: boolean;
5199
5216
  style: import("vue").StyleValue;
5200
5217
  autofocus: boolean;
5201
5218
  disabled: boolean;
@@ -5227,6 +5244,7 @@ export declare const VSelect: {
5227
5244
  error: boolean;
5228
5245
  active: boolean;
5229
5246
  direction: "horizontal" | "vertical";
5247
+ details: boolean;
5230
5248
  style: import("vue").StyleValue;
5231
5249
  autofocus: boolean;
5232
5250
  disabled: boolean;
@@ -5345,7 +5363,7 @@ export declare const VSelect: {
5345
5363
  "onUpdate:modelValue"?: ((val: string) => any) | undefined;
5346
5364
  "onClick:control"?: ((e: MouseEvent) => any) | undefined;
5347
5365
  "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
5348
- }, "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<{
5366
+ }, "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<{
5349
5367
  $: import("vue").ComponentInternalInstance;
5350
5368
  $data: {};
5351
5369
  $props: Partial<{
@@ -5577,6 +5595,7 @@ export declare const VSelect: {
5577
5595
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
5578
5596
  error: boolean;
5579
5597
  active: boolean;
5598
+ details: boolean;
5580
5599
  style: import("vue").StyleValue;
5581
5600
  disabled: boolean;
5582
5601
  focused: boolean;
@@ -5595,6 +5614,7 @@ export declare const VSelect: {
5595
5614
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
5596
5615
  error: boolean;
5597
5616
  active: boolean;
5617
+ details: boolean;
5598
5618
  style: import("vue").StyleValue;
5599
5619
  disabled: boolean;
5600
5620
  focused: boolean;
@@ -5622,7 +5642,7 @@ export declare const VSelect: {
5622
5642
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
5623
5643
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
5624
5644
  centerAffix?: boolean | undefined;
5625
- } & 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">;
5645
+ } & 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">;
5626
5646
  $attrs: {
5627
5647
  [x: string]: unknown;
5628
5648
  };
@@ -5653,6 +5673,7 @@ export declare const VSelect: {
5653
5673
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
5654
5674
  error: boolean;
5655
5675
  active: boolean;
5676
+ details: boolean;
5656
5677
  style: import("vue").StyleValue;
5657
5678
  disabled: boolean;
5658
5679
  focused: boolean;
@@ -5695,6 +5716,7 @@ export declare const VSelect: {
5695
5716
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
5696
5717
  error: boolean;
5697
5718
  active: boolean;
5719
+ details: boolean;
5698
5720
  style: import("vue").StyleValue;
5699
5721
  disabled: boolean;
5700
5722
  focused: boolean;
@@ -5745,6 +5767,7 @@ export declare const VSelect: {
5745
5767
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
5746
5768
  error: boolean;
5747
5769
  active: boolean;
5770
+ details: boolean;
5748
5771
  style: import("vue").StyleValue;
5749
5772
  disabled: boolean;
5750
5773
  focused: boolean;
@@ -5763,6 +5786,7 @@ export declare const VSelect: {
5763
5786
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
5764
5787
  error: boolean;
5765
5788
  active: boolean;
5789
+ details: boolean;
5766
5790
  style: import("vue").StyleValue;
5767
5791
  disabled: boolean;
5768
5792
  focused: boolean;
@@ -5793,13 +5817,13 @@ export declare const VSelect: {
5793
5817
  centerAffix?: boolean | undefined;
5794
5818
  } & {
5795
5819
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
5796
- }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
5820
+ }, ("flat" | "reverse" | "variant" | "error" | "active" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
5797
5821
  controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
5798
5822
  fieldIconColor: import("vue").ComputedRef<string | undefined>;
5799
5823
  }> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
5800
5824
  modelValue?: unknown;
5801
5825
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
5802
- }, 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}`> & {
5826
+ }, 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}`> & {
5803
5827
  _allExposed: {
5804
5828
  reset: () => Promise<void>;
5805
5829
  resetValidation: () => Promise<void>;
@@ -5810,7 +5834,7 @@ export declare const VSelect: {
5810
5834
  controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
5811
5835
  fieldIconColor: import("vue").ComputedRef<string | undefined>;
5812
5836
  } | {};
5813
- }> & {} & 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}`> & {
5837
+ }> & {} & 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}`> & {
5814
5838
  _allExposed: (Omit<Omit<{
5815
5839
  $: import("vue").ComponentInternalInstance;
5816
5840
  $data: {};
@@ -6043,6 +6067,7 @@ export declare const VSelect: {
6043
6067
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
6044
6068
  error: boolean;
6045
6069
  active: boolean;
6070
+ details: boolean;
6046
6071
  style: import("vue").StyleValue;
6047
6072
  disabled: boolean;
6048
6073
  focused: boolean;
@@ -6061,6 +6086,7 @@ export declare const VSelect: {
6061
6086
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
6062
6087
  error: boolean;
6063
6088
  active: boolean;
6089
+ details: boolean;
6064
6090
  style: import("vue").StyleValue;
6065
6091
  disabled: boolean;
6066
6092
  focused: boolean;
@@ -6088,7 +6114,7 @@ export declare const VSelect: {
6088
6114
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
6089
6115
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
6090
6116
  centerAffix?: boolean | undefined;
6091
- } & 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">;
6117
+ } & 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">;
6092
6118
  $attrs: {
6093
6119
  [x: string]: unknown;
6094
6120
  };
@@ -6119,6 +6145,7 @@ export declare const VSelect: {
6119
6145
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
6120
6146
  error: boolean;
6121
6147
  active: boolean;
6148
+ details: boolean;
6122
6149
  style: import("vue").StyleValue;
6123
6150
  disabled: boolean;
6124
6151
  focused: boolean;
@@ -6161,6 +6188,7 @@ export declare const VSelect: {
6161
6188
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
6162
6189
  error: boolean;
6163
6190
  active: boolean;
6191
+ details: boolean;
6164
6192
  style: import("vue").StyleValue;
6165
6193
  disabled: boolean;
6166
6194
  focused: boolean;
@@ -6211,6 +6239,7 @@ export declare const VSelect: {
6211
6239
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
6212
6240
  error: boolean;
6213
6241
  active: boolean;
6242
+ details: boolean;
6214
6243
  style: import("vue").StyleValue;
6215
6244
  disabled: boolean;
6216
6245
  focused: boolean;
@@ -6229,6 +6258,7 @@ export declare const VSelect: {
6229
6258
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
6230
6259
  error: boolean;
6231
6260
  active: boolean;
6261
+ details: boolean;
6232
6262
  style: import("vue").StyleValue;
6233
6263
  disabled: boolean;
6234
6264
  focused: boolean;
@@ -6259,13 +6289,13 @@ export declare const VSelect: {
6259
6289
  centerAffix?: boolean | undefined;
6260
6290
  } & {
6261
6291
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
6262
- }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
6292
+ }, ("flat" | "reverse" | "variant" | "error" | "active" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
6263
6293
  controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
6264
6294
  fieldIconColor: import("vue").ComputedRef<string | undefined>;
6265
6295
  }> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
6266
6296
  modelValue?: unknown;
6267
6297
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
6268
- }, 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}`> & {
6298
+ }, 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}`> & {
6269
6299
  _allExposed: {
6270
6300
  reset: () => Promise<void>;
6271
6301
  resetValidation: () => Promise<void>;
@@ -6298,6 +6328,7 @@ export declare const VSelect: {
6298
6328
  }) | {
6299
6329
  component: Component;
6300
6330
  } | null;
6331
+ details: boolean;
6301
6332
  menu: boolean;
6302
6333
  style: import("vue").StyleValue;
6303
6334
  role: string;
@@ -6395,6 +6426,7 @@ export declare const VSelect: {
6395
6426
  }) | {
6396
6427
  component: Component;
6397
6428
  } | null;
6429
+ details: boolean;
6398
6430
  menu: boolean;
6399
6431
  style: import("vue").StyleValue;
6400
6432
  role: string;
@@ -6862,6 +6894,7 @@ export declare const VSelect: {
6862
6894
  error: boolean;
6863
6895
  active: boolean;
6864
6896
  direction: "horizontal" | "vertical";
6897
+ details: boolean;
6865
6898
  style: import("vue").StyleValue;
6866
6899
  autofocus: boolean;
6867
6900
  disabled: boolean;
@@ -6893,6 +6926,7 @@ export declare const VSelect: {
6893
6926
  error: boolean;
6894
6927
  active: boolean;
6895
6928
  direction: "horizontal" | "vertical";
6929
+ details: boolean;
6896
6930
  style: import("vue").StyleValue;
6897
6931
  autofocus: boolean;
6898
6932
  disabled: boolean;
@@ -7006,7 +7040,7 @@ export declare const VSelect: {
7006
7040
  "onUpdate:modelValue"?: ((val: string) => any) | undefined;
7007
7041
  "onClick:control"?: ((e: MouseEvent) => any) | undefined;
7008
7042
  "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
7009
- } & 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">;
7043
+ } & 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">;
7010
7044
  $attrs: {
7011
7045
  [x: string]: unknown;
7012
7046
  };
@@ -7044,6 +7078,7 @@ export declare const VSelect: {
7044
7078
  error: boolean;
7045
7079
  active: boolean;
7046
7080
  direction: "horizontal" | "vertical";
7081
+ details: boolean;
7047
7082
  style: import("vue").StyleValue;
7048
7083
  autofocus: boolean;
7049
7084
  disabled: boolean;
@@ -7394,6 +7429,7 @@ export declare const VSelect: {
7394
7429
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
7395
7430
  error: boolean;
7396
7431
  active: boolean;
7432
+ details: boolean;
7397
7433
  style: import("vue").StyleValue;
7398
7434
  disabled: boolean;
7399
7435
  focused: boolean;
@@ -7412,6 +7448,7 @@ export declare const VSelect: {
7412
7448
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
7413
7449
  error: boolean;
7414
7450
  active: boolean;
7451
+ details: boolean;
7415
7452
  style: import("vue").StyleValue;
7416
7453
  disabled: boolean;
7417
7454
  focused: boolean;
@@ -7439,7 +7476,7 @@ export declare const VSelect: {
7439
7476
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
7440
7477
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
7441
7478
  centerAffix?: boolean | undefined;
7442
- } & 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">;
7479
+ } & 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">;
7443
7480
  $attrs: {
7444
7481
  [x: string]: unknown;
7445
7482
  };
@@ -7470,6 +7507,7 @@ export declare const VSelect: {
7470
7507
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
7471
7508
  error: boolean;
7472
7509
  active: boolean;
7510
+ details: boolean;
7473
7511
  style: import("vue").StyleValue;
7474
7512
  disabled: boolean;
7475
7513
  focused: boolean;
@@ -7512,6 +7550,7 @@ export declare const VSelect: {
7512
7550
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
7513
7551
  error: boolean;
7514
7552
  active: boolean;
7553
+ details: boolean;
7515
7554
  style: import("vue").StyleValue;
7516
7555
  disabled: boolean;
7517
7556
  focused: boolean;
@@ -7562,6 +7601,7 @@ export declare const VSelect: {
7562
7601
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
7563
7602
  error: boolean;
7564
7603
  active: boolean;
7604
+ details: boolean;
7565
7605
  style: import("vue").StyleValue;
7566
7606
  disabled: boolean;
7567
7607
  focused: boolean;
@@ -7580,6 +7620,7 @@ export declare const VSelect: {
7580
7620
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
7581
7621
  error: boolean;
7582
7622
  active: boolean;
7623
+ details: boolean;
7583
7624
  style: import("vue").StyleValue;
7584
7625
  disabled: boolean;
7585
7626
  focused: boolean;
@@ -7610,13 +7651,13 @@ export declare const VSelect: {
7610
7651
  centerAffix?: boolean | undefined;
7611
7652
  } & {
7612
7653
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
7613
- }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
7654
+ }, ("flat" | "reverse" | "variant" | "error" | "active" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
7614
7655
  controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
7615
7656
  fieldIconColor: import("vue").ComputedRef<string | undefined>;
7616
7657
  }> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
7617
7658
  modelValue?: unknown;
7618
7659
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
7619
- }, 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}`> & {
7660
+ }, 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}`> & {
7620
7661
  _allExposed: {
7621
7662
  reset: () => Promise<void>;
7622
7663
  resetValidation: () => Promise<void>;
@@ -7640,6 +7681,7 @@ export declare const VSelect: {
7640
7681
  error: boolean;
7641
7682
  active: boolean;
7642
7683
  direction: "horizontal" | "vertical";
7684
+ details: boolean;
7643
7685
  style: import("vue").StyleValue;
7644
7686
  autofocus: boolean;
7645
7687
  disabled: boolean;
@@ -7708,6 +7750,7 @@ export declare const VSelect: {
7708
7750
  error: boolean;
7709
7751
  active: boolean;
7710
7752
  direction: "horizontal" | "vertical";
7753
+ details: boolean;
7711
7754
  style: import("vue").StyleValue;
7712
7755
  autofocus: boolean;
7713
7756
  disabled: boolean;
@@ -7739,6 +7782,7 @@ export declare const VSelect: {
7739
7782
  error: boolean;
7740
7783
  active: boolean;
7741
7784
  direction: "horizontal" | "vertical";
7785
+ details: boolean;
7742
7786
  style: import("vue").StyleValue;
7743
7787
  autofocus: boolean;
7744
7788
  disabled: boolean;
@@ -7857,7 +7901,7 @@ export declare const VSelect: {
7857
7901
  "onUpdate:modelValue"?: ((val: string) => any) | undefined;
7858
7902
  "onClick:control"?: ((e: MouseEvent) => any) | undefined;
7859
7903
  "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
7860
- }, "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<{
7904
+ }, "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<{
7861
7905
  $: import("vue").ComponentInternalInstance;
7862
7906
  $data: {};
7863
7907
  $props: Partial<{
@@ -8089,6 +8133,7 @@ export declare const VSelect: {
8089
8133
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
8090
8134
  error: boolean;
8091
8135
  active: boolean;
8136
+ details: boolean;
8092
8137
  style: import("vue").StyleValue;
8093
8138
  disabled: boolean;
8094
8139
  focused: boolean;
@@ -8107,6 +8152,7 @@ export declare const VSelect: {
8107
8152
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
8108
8153
  error: boolean;
8109
8154
  active: boolean;
8155
+ details: boolean;
8110
8156
  style: import("vue").StyleValue;
8111
8157
  disabled: boolean;
8112
8158
  focused: boolean;
@@ -8134,7 +8180,7 @@ export declare const VSelect: {
8134
8180
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
8135
8181
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
8136
8182
  centerAffix?: boolean | undefined;
8137
- } & 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">;
8183
+ } & 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">;
8138
8184
  $attrs: {
8139
8185
  [x: string]: unknown;
8140
8186
  };
@@ -8165,6 +8211,7 @@ export declare const VSelect: {
8165
8211
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
8166
8212
  error: boolean;
8167
8213
  active: boolean;
8214
+ details: boolean;
8168
8215
  style: import("vue").StyleValue;
8169
8216
  disabled: boolean;
8170
8217
  focused: boolean;
@@ -8207,6 +8254,7 @@ export declare const VSelect: {
8207
8254
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
8208
8255
  error: boolean;
8209
8256
  active: boolean;
8257
+ details: boolean;
8210
8258
  style: import("vue").StyleValue;
8211
8259
  disabled: boolean;
8212
8260
  focused: boolean;
@@ -8257,6 +8305,7 @@ export declare const VSelect: {
8257
8305
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
8258
8306
  error: boolean;
8259
8307
  active: boolean;
8308
+ details: boolean;
8260
8309
  style: import("vue").StyleValue;
8261
8310
  disabled: boolean;
8262
8311
  focused: boolean;
@@ -8275,6 +8324,7 @@ export declare const VSelect: {
8275
8324
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
8276
8325
  error: boolean;
8277
8326
  active: boolean;
8327
+ details: boolean;
8278
8328
  style: import("vue").StyleValue;
8279
8329
  disabled: boolean;
8280
8330
  focused: boolean;
@@ -8305,13 +8355,13 @@ export declare const VSelect: {
8305
8355
  centerAffix?: boolean | undefined;
8306
8356
  } & {
8307
8357
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
8308
- }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
8358
+ }, ("flat" | "reverse" | "variant" | "error" | "active" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
8309
8359
  controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
8310
8360
  fieldIconColor: import("vue").ComputedRef<string | undefined>;
8311
8361
  }> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
8312
8362
  modelValue?: unknown;
8313
8363
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
8314
- }, 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}`> & {
8364
+ }, 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}`> & {
8315
8365
  _allExposed: {
8316
8366
  reset: () => Promise<void>;
8317
8367
  resetValidation: () => Promise<void>;
@@ -8322,7 +8372,7 @@ export declare const VSelect: {
8322
8372
  controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
8323
8373
  fieldIconColor: import("vue").ComputedRef<string | undefined>;
8324
8374
  } | {};
8325
- }> & {} & 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}`> & {
8375
+ }> & {} & 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}`> & {
8326
8376
  _allExposed: (Omit<Omit<{
8327
8377
  $: import("vue").ComponentInternalInstance;
8328
8378
  $data: {};
@@ -8555,6 +8605,7 @@ export declare const VSelect: {
8555
8605
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
8556
8606
  error: boolean;
8557
8607
  active: boolean;
8608
+ details: boolean;
8558
8609
  style: import("vue").StyleValue;
8559
8610
  disabled: boolean;
8560
8611
  focused: boolean;
@@ -8573,6 +8624,7 @@ export declare const VSelect: {
8573
8624
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
8574
8625
  error: boolean;
8575
8626
  active: boolean;
8627
+ details: boolean;
8576
8628
  style: import("vue").StyleValue;
8577
8629
  disabled: boolean;
8578
8630
  focused: boolean;
@@ -8600,7 +8652,7 @@ export declare const VSelect: {
8600
8652
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
8601
8653
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
8602
8654
  centerAffix?: boolean | undefined;
8603
- } & 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">;
8655
+ } & 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">;
8604
8656
  $attrs: {
8605
8657
  [x: string]: unknown;
8606
8658
  };
@@ -8631,6 +8683,7 @@ export declare const VSelect: {
8631
8683
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
8632
8684
  error: boolean;
8633
8685
  active: boolean;
8686
+ details: boolean;
8634
8687
  style: import("vue").StyleValue;
8635
8688
  disabled: boolean;
8636
8689
  focused: boolean;
@@ -8673,6 +8726,7 @@ export declare const VSelect: {
8673
8726
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
8674
8727
  error: boolean;
8675
8728
  active: boolean;
8729
+ details: boolean;
8676
8730
  style: import("vue").StyleValue;
8677
8731
  disabled: boolean;
8678
8732
  focused: boolean;
@@ -8723,6 +8777,7 @@ export declare const VSelect: {
8723
8777
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
8724
8778
  error: boolean;
8725
8779
  active: boolean;
8780
+ details: boolean;
8726
8781
  style: import("vue").StyleValue;
8727
8782
  disabled: boolean;
8728
8783
  focused: boolean;
@@ -8741,6 +8796,7 @@ export declare const VSelect: {
8741
8796
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
8742
8797
  error: boolean;
8743
8798
  active: boolean;
8799
+ details: boolean;
8744
8800
  style: import("vue").StyleValue;
8745
8801
  disabled: boolean;
8746
8802
  focused: boolean;
@@ -8771,13 +8827,13 @@ export declare const VSelect: {
8771
8827
  centerAffix?: boolean | undefined;
8772
8828
  } & {
8773
8829
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
8774
- }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
8830
+ }, ("flat" | "reverse" | "variant" | "error" | "active" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
8775
8831
  controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
8776
8832
  fieldIconColor: import("vue").ComputedRef<string | undefined>;
8777
8833
  }> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
8778
8834
  modelValue?: unknown;
8779
8835
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
8780
- }, 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}`> & {
8836
+ }, 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}`> & {
8781
8837
  _allExposed: {
8782
8838
  reset: () => Promise<void>;
8783
8839
  resetValidation: () => Promise<void>;
@@ -8806,6 +8862,7 @@ export declare const VSelect: {
8806
8862
  }) | {
8807
8863
  component: Component;
8808
8864
  } | null;
8865
+ details: boolean;
8809
8866
  menu: boolean;
8810
8867
  style: import("vue").StyleValue;
8811
8868
  role: string;
@@ -8860,6 +8917,7 @@ export declare const VSelect: {
8860
8917
  }) | {
8861
8918
  component: Component;
8862
8919
  } | null;
8920
+ details: boolean;
8863
8921
  menu: boolean;
8864
8922
  style: import("vue").StyleValue;
8865
8923
  role: string;
@@ -9327,6 +9385,7 @@ export declare const VSelect: {
9327
9385
  error: boolean;
9328
9386
  active: boolean;
9329
9387
  direction: "horizontal" | "vertical";
9388
+ details: boolean;
9330
9389
  style: import("vue").StyleValue;
9331
9390
  autofocus: boolean;
9332
9391
  disabled: boolean;
@@ -9358,6 +9417,7 @@ export declare const VSelect: {
9358
9417
  error: boolean;
9359
9418
  active: boolean;
9360
9419
  direction: "horizontal" | "vertical";
9420
+ details: boolean;
9361
9421
  style: import("vue").StyleValue;
9362
9422
  autofocus: boolean;
9363
9423
  disabled: boolean;
@@ -9471,7 +9531,7 @@ export declare const VSelect: {
9471
9531
  "onUpdate:modelValue"?: ((val: string) => any) | undefined;
9472
9532
  "onClick:control"?: ((e: MouseEvent) => any) | undefined;
9473
9533
  "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
9474
- } & 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">;
9534
+ } & 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">;
9475
9535
  $attrs: {
9476
9536
  [x: string]: unknown;
9477
9537
  };
@@ -9509,6 +9569,7 @@ export declare const VSelect: {
9509
9569
  error: boolean;
9510
9570
  active: boolean;
9511
9571
  direction: "horizontal" | "vertical";
9572
+ details: boolean;
9512
9573
  style: import("vue").StyleValue;
9513
9574
  autofocus: boolean;
9514
9575
  disabled: boolean;
@@ -9859,6 +9920,7 @@ export declare const VSelect: {
9859
9920
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
9860
9921
  error: boolean;
9861
9922
  active: boolean;
9923
+ details: boolean;
9862
9924
  style: import("vue").StyleValue;
9863
9925
  disabled: boolean;
9864
9926
  focused: boolean;
@@ -9877,6 +9939,7 @@ export declare const VSelect: {
9877
9939
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
9878
9940
  error: boolean;
9879
9941
  active: boolean;
9942
+ details: boolean;
9880
9943
  style: import("vue").StyleValue;
9881
9944
  disabled: boolean;
9882
9945
  focused: boolean;
@@ -9904,7 +9967,7 @@ export declare const VSelect: {
9904
9967
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
9905
9968
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
9906
9969
  centerAffix?: boolean | undefined;
9907
- } & 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">;
9970
+ } & 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">;
9908
9971
  $attrs: {
9909
9972
  [x: string]: unknown;
9910
9973
  };
@@ -9935,6 +9998,7 @@ export declare const VSelect: {
9935
9998
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
9936
9999
  error: boolean;
9937
10000
  active: boolean;
10001
+ details: boolean;
9938
10002
  style: import("vue").StyleValue;
9939
10003
  disabled: boolean;
9940
10004
  focused: boolean;
@@ -9977,6 +10041,7 @@ export declare const VSelect: {
9977
10041
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
9978
10042
  error: boolean;
9979
10043
  active: boolean;
10044
+ details: boolean;
9980
10045
  style: import("vue").StyleValue;
9981
10046
  disabled: boolean;
9982
10047
  focused: boolean;
@@ -10027,6 +10092,7 @@ export declare const VSelect: {
10027
10092
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
10028
10093
  error: boolean;
10029
10094
  active: boolean;
10095
+ details: boolean;
10030
10096
  style: import("vue").StyleValue;
10031
10097
  disabled: boolean;
10032
10098
  focused: boolean;
@@ -10045,6 +10111,7 @@ export declare const VSelect: {
10045
10111
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
10046
10112
  error: boolean;
10047
10113
  active: boolean;
10114
+ details: boolean;
10048
10115
  style: import("vue").StyleValue;
10049
10116
  disabled: boolean;
10050
10117
  focused: boolean;
@@ -10075,13 +10142,13 @@ export declare const VSelect: {
10075
10142
  centerAffix?: boolean | undefined;
10076
10143
  } & {
10077
10144
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
10078
- }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
10145
+ }, ("flat" | "reverse" | "variant" | "error" | "active" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
10079
10146
  controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
10080
10147
  fieldIconColor: import("vue").ComputedRef<string | undefined>;
10081
10148
  }> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
10082
10149
  modelValue?: unknown;
10083
10150
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
10084
- }, 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}`> & {
10151
+ }, 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}`> & {
10085
10152
  _allExposed: {
10086
10153
  reset: () => Promise<void>;
10087
10154
  resetValidation: () => Promise<void>;
@@ -10105,6 +10172,7 @@ export declare const VSelect: {
10105
10172
  error: boolean;
10106
10173
  active: boolean;
10107
10174
  direction: "horizontal" | "vertical";
10175
+ details: boolean;
10108
10176
  style: import("vue").StyleValue;
10109
10177
  autofocus: boolean;
10110
10178
  disabled: boolean;
@@ -10173,6 +10241,7 @@ export declare const VSelect: {
10173
10241
  error: boolean;
10174
10242
  active: boolean;
10175
10243
  direction: "horizontal" | "vertical";
10244
+ details: boolean;
10176
10245
  style: import("vue").StyleValue;
10177
10246
  autofocus: boolean;
10178
10247
  disabled: boolean;
@@ -10204,6 +10273,7 @@ export declare const VSelect: {
10204
10273
  error: boolean;
10205
10274
  active: boolean;
10206
10275
  direction: "horizontal" | "vertical";
10276
+ details: boolean;
10207
10277
  style: import("vue").StyleValue;
10208
10278
  autofocus: boolean;
10209
10279
  disabled: boolean;
@@ -10322,7 +10392,7 @@ export declare const VSelect: {
10322
10392
  "onUpdate:modelValue"?: ((val: string) => any) | undefined;
10323
10393
  "onClick:control"?: ((e: MouseEvent) => any) | undefined;
10324
10394
  "onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
10325
- }, "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<{
10395
+ }, "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<{
10326
10396
  $: import("vue").ComponentInternalInstance;
10327
10397
  $data: {};
10328
10398
  $props: Partial<{
@@ -10554,6 +10624,7 @@ export declare const VSelect: {
10554
10624
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
10555
10625
  error: boolean;
10556
10626
  active: boolean;
10627
+ details: boolean;
10557
10628
  style: import("vue").StyleValue;
10558
10629
  disabled: boolean;
10559
10630
  focused: boolean;
@@ -10572,6 +10643,7 @@ export declare const VSelect: {
10572
10643
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
10573
10644
  error: boolean;
10574
10645
  active: boolean;
10646
+ details: boolean;
10575
10647
  style: import("vue").StyleValue;
10576
10648
  disabled: boolean;
10577
10649
  focused: boolean;
@@ -10599,7 +10671,7 @@ export declare const VSelect: {
10599
10671
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
10600
10672
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
10601
10673
  centerAffix?: boolean | undefined;
10602
- } & 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">;
10674
+ } & 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">;
10603
10675
  $attrs: {
10604
10676
  [x: string]: unknown;
10605
10677
  };
@@ -10630,6 +10702,7 @@ export declare const VSelect: {
10630
10702
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
10631
10703
  error: boolean;
10632
10704
  active: boolean;
10705
+ details: boolean;
10633
10706
  style: import("vue").StyleValue;
10634
10707
  disabled: boolean;
10635
10708
  focused: boolean;
@@ -10672,6 +10745,7 @@ export declare const VSelect: {
10672
10745
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
10673
10746
  error: boolean;
10674
10747
  active: boolean;
10748
+ details: boolean;
10675
10749
  style: import("vue").StyleValue;
10676
10750
  disabled: boolean;
10677
10751
  focused: boolean;
@@ -10722,6 +10796,7 @@ export declare const VSelect: {
10722
10796
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
10723
10797
  error: boolean;
10724
10798
  active: boolean;
10799
+ details: boolean;
10725
10800
  style: import("vue").StyleValue;
10726
10801
  disabled: boolean;
10727
10802
  focused: boolean;
@@ -10740,6 +10815,7 @@ export declare const VSelect: {
10740
10815
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
10741
10816
  error: boolean;
10742
10817
  active: boolean;
10818
+ details: boolean;
10743
10819
  style: import("vue").StyleValue;
10744
10820
  disabled: boolean;
10745
10821
  focused: boolean;
@@ -10770,13 +10846,13 @@ export declare const VSelect: {
10770
10846
  centerAffix?: boolean | undefined;
10771
10847
  } & {
10772
10848
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
10773
- }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
10849
+ }, ("flat" | "reverse" | "variant" | "error" | "active" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
10774
10850
  controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
10775
10851
  fieldIconColor: import("vue").ComputedRef<string | undefined>;
10776
10852
  }> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
10777
10853
  modelValue?: unknown;
10778
10854
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
10779
- }, 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}`> & {
10855
+ }, 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}`> & {
10780
10856
  _allExposed: {
10781
10857
  reset: () => Promise<void>;
10782
10858
  resetValidation: () => Promise<void>;
@@ -10787,7 +10863,7 @@ export declare const VSelect: {
10787
10863
  controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
10788
10864
  fieldIconColor: import("vue").ComputedRef<string | undefined>;
10789
10865
  } | {};
10790
- }> & {} & 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}`> & {
10866
+ }> & {} & 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}`> & {
10791
10867
  _allExposed: (Omit<Omit<{
10792
10868
  $: import("vue").ComponentInternalInstance;
10793
10869
  $data: {};
@@ -11020,6 +11096,7 @@ export declare const VSelect: {
11020
11096
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
11021
11097
  error: boolean;
11022
11098
  active: boolean;
11099
+ details: boolean;
11023
11100
  style: import("vue").StyleValue;
11024
11101
  disabled: boolean;
11025
11102
  focused: boolean;
@@ -11038,6 +11115,7 @@ export declare const VSelect: {
11038
11115
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
11039
11116
  error: boolean;
11040
11117
  active: boolean;
11118
+ details: boolean;
11041
11119
  style: import("vue").StyleValue;
11042
11120
  disabled: boolean;
11043
11121
  focused: boolean;
@@ -11065,7 +11143,7 @@ export declare const VSelect: {
11065
11143
  'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
11066
11144
  'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
11067
11145
  centerAffix?: boolean | undefined;
11068
- } & 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">;
11146
+ } & 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">;
11069
11147
  $attrs: {
11070
11148
  [x: string]: unknown;
11071
11149
  };
@@ -11096,6 +11174,7 @@ export declare const VSelect: {
11096
11174
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
11097
11175
  error: boolean;
11098
11176
  active: boolean;
11177
+ details: boolean;
11099
11178
  style: import("vue").StyleValue;
11100
11179
  disabled: boolean;
11101
11180
  focused: boolean;
@@ -11138,6 +11217,7 @@ export declare const VSelect: {
11138
11217
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
11139
11218
  error: boolean;
11140
11219
  active: boolean;
11220
+ details: boolean;
11141
11221
  style: import("vue").StyleValue;
11142
11222
  disabled: boolean;
11143
11223
  focused: boolean;
@@ -11188,6 +11268,7 @@ export declare const VSelect: {
11188
11268
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
11189
11269
  error: boolean;
11190
11270
  active: boolean;
11271
+ details: boolean;
11191
11272
  style: import("vue").StyleValue;
11192
11273
  disabled: boolean;
11193
11274
  focused: boolean;
@@ -11206,6 +11287,7 @@ export declare const VSelect: {
11206
11287
  variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
11207
11288
  error: boolean;
11208
11289
  active: boolean;
11290
+ details: boolean;
11209
11291
  style: import("vue").StyleValue;
11210
11292
  disabled: boolean;
11211
11293
  focused: boolean;
@@ -11236,13 +11318,13 @@ export declare const VSelect: {
11236
11318
  centerAffix?: boolean | undefined;
11237
11319
  } & {
11238
11320
  "onUpdate:focused"?: ((focused: boolean) => any) | undefined;
11239
- }, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
11321
+ }, ("flat" | "reverse" | "variant" | "error" | "active" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
11240
11322
  controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
11241
11323
  fieldIconColor: import("vue").ComputedRef<string | undefined>;
11242
11324
  }> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
11243
11325
  modelValue?: unknown;
11244
11326
  'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
11245
- }, 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}`> & {
11327
+ }, 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}`> & {
11246
11328
  _allExposed: {
11247
11329
  reset: () => Promise<void>;
11248
11330
  resetValidation: () => Promise<void>;
@@ -11275,6 +11357,7 @@ export declare const VSelect: {
11275
11357
  }) | {
11276
11358
  component: Component;
11277
11359
  } | null;
11360
+ details: boolean;
11278
11361
  menu: boolean;
11279
11362
  style: import("vue").StyleValue;
11280
11363
  role: string;
@@ -11425,6 +11508,7 @@ export declare const VSelect: {
11425
11508
  maxWidth: (StringConstructor | NumberConstructor)[];
11426
11509
  minWidth: (StringConstructor | NumberConstructor)[];
11427
11510
  loading: (StringConstructor | BooleanConstructor)[];
11511
+ details: BooleanConstructor;
11428
11512
  label: StringConstructor;
11429
11513
  style: {
11430
11514
  type: PropType<import("vue").StyleValue>;
@@ -11612,6 +11696,7 @@ export declare const VSelect: {
11612
11696
  maxWidth: (StringConstructor | NumberConstructor)[];
11613
11697
  minWidth: (StringConstructor | NumberConstructor)[];
11614
11698
  loading: (StringConstructor | BooleanConstructor)[];
11699
+ details: BooleanConstructor;
11615
11700
  label: StringConstructor;
11616
11701
  style: {
11617
11702
  type: PropType<import("vue").StyleValue>;