@vuetify/nightly 3.9.0-master.2025-07-11 → 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.
- package/CHANGELOG.md +7 -3
- package/dist/json/attributes.json +1721 -1677
- package/dist/json/importMap-labs.json +20 -20
- package/dist/json/importMap.json +164 -164
- package/dist/json/tags.json +11 -0
- package/dist/json/web-types.json +3223 -2901
- package/dist/vuetify-labs.cjs +35 -22
- package/dist/vuetify-labs.css +5286 -5286
- package/dist/vuetify-labs.d.ts +834 -286
- package/dist/vuetify-labs.esm.js +35 -22
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +35 -22
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +28 -20
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +4118 -4118
- package/dist/vuetify.d.ts +580 -209
- package/dist/vuetify.esm.js +28 -20
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +28 -20
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +14 -14
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.d.ts +121 -36
- package/lib/components/VCombobox/VCombobox.d.ts +121 -36
- package/lib/components/VField/VField.d.ts +13 -0
- package/lib/components/VField/VField.js +2 -1
- package/lib/components/VField/VField.js.map +1 -1
- package/lib/components/VFileInput/VFileInput.d.ts +13 -0
- package/lib/components/VFileInput/VFileInput.js +3 -1
- package/lib/components/VFileInput/VFileInput.js.map +1 -1
- package/lib/components/VInput/VInput.d.ts +2 -1
- package/lib/components/VInput/VInput.js +15 -14
- package/lib/components/VInput/VInput.js.map +1 -1
- package/lib/components/VNumberInput/VNumberInput.d.ts +116 -36
- package/lib/components/VSelect/VSelect.d.ts +121 -36
- package/lib/components/VTextField/VTextField.d.ts +40 -9
- package/lib/components/VTextField/VTextField.js +2 -0
- package/lib/components/VTextField/VTextField.js.map +1 -1
- package/lib/components/VTextarea/VTextarea.d.ts +13 -0
- package/lib/components/VTextarea/VTextarea.js +3 -1
- package/lib/components/VTextarea/VTextarea.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +55 -55
- package/lib/framework.js +1 -1
- package/lib/labs/VColorInput/VColorInput.d.ts +13 -0
- package/lib/labs/VDateInput/VDateInput.d.ts +145 -44
- package/lib/labs/VDateInput/VDateInput.js +4 -1
- package/lib/labs/VDateInput/VDateInput.js.map +1 -1
- package/lib/labs/VMaskInput/VMaskInput.d.ts +121 -36
- package/lib/labs/VMaskInput/VMaskInput.js +4 -2
- package/lib/labs/VMaskInput/VMaskInput.js.map +1 -1
- package/package.json +1 -1
@@ -26,6 +26,7 @@ export declare const makeVAutocompleteProps: <Defaults extends {
|
|
26
26
|
maxWidth?: unknown;
|
27
27
|
minWidth?: unknown;
|
28
28
|
loading?: unknown;
|
29
|
+
details?: unknown;
|
29
30
|
label?: unknown;
|
30
31
|
style?: unknown;
|
31
32
|
prefix?: unknown;
|
@@ -211,6 +212,10 @@ export declare const makeVAutocompleteProps: <Defaults extends {
|
|
211
212
|
type: PropType<unknown extends Defaults["loading"] ? string | boolean : string | boolean | Defaults["loading"]>;
|
212
213
|
default: unknown extends Defaults["loading"] ? string | boolean : NonNullable<string | boolean> | Defaults["loading"];
|
213
214
|
};
|
215
|
+
details: unknown extends Defaults["details"] ? BooleanConstructor : {
|
216
|
+
type: PropType<unknown extends Defaults["details"] ? boolean : boolean | Defaults["details"]>;
|
217
|
+
default: unknown extends Defaults["details"] ? boolean : boolean | Defaults["details"];
|
218
|
+
};
|
214
219
|
label: unknown extends Defaults["label"] ? StringConstructor : {
|
215
220
|
type: PropType<unknown extends Defaults["label"] ? string : string | Defaults["label"]>;
|
216
221
|
default: unknown extends Defaults["label"] ? string : string | Defaults["label"];
|
@@ -2219,6 +2224,7 @@ export declare const VAutocomplete: {
|
|
2219
2224
|
transition: string | boolean | (import("vue").TransitionProps & {
|
2220
2225
|
component?: import("vue").Component;
|
2221
2226
|
}) | null;
|
2227
|
+
details: boolean;
|
2222
2228
|
menu: boolean;
|
2223
2229
|
style: import("vue").StyleValue;
|
2224
2230
|
role: string;
|
@@ -2700,6 +2706,7 @@ export declare const VAutocomplete: {
|
|
2700
2706
|
error: boolean;
|
2701
2707
|
active: boolean;
|
2702
2708
|
direction: "horizontal" | "vertical";
|
2709
|
+
details: boolean;
|
2703
2710
|
style: import("vue").StyleValue;
|
2704
2711
|
autofocus: boolean;
|
2705
2712
|
disabled: boolean;
|
@@ -2731,6 +2738,7 @@ export declare const VAutocomplete: {
|
|
2731
2738
|
error: boolean;
|
2732
2739
|
active: boolean;
|
2733
2740
|
direction: "horizontal" | "vertical";
|
2741
|
+
details: boolean;
|
2734
2742
|
style: import("vue").StyleValue;
|
2735
2743
|
autofocus: boolean;
|
2736
2744
|
disabled: boolean;
|
@@ -2844,7 +2852,7 @@ export declare const VAutocomplete: {
|
|
2844
2852
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
2845
2853
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
2846
2854
|
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
2847
|
-
} & 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">;
|
2855
|
+
} & 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">;
|
2848
2856
|
$attrs: {
|
2849
2857
|
[x: string]: unknown;
|
2850
2858
|
};
|
@@ -2882,6 +2890,7 @@ export declare const VAutocomplete: {
|
|
2882
2890
|
error: boolean;
|
2883
2891
|
active: boolean;
|
2884
2892
|
direction: "horizontal" | "vertical";
|
2893
|
+
details: boolean;
|
2885
2894
|
style: import("vue").StyleValue;
|
2886
2895
|
autofocus: boolean;
|
2887
2896
|
disabled: boolean;
|
@@ -3232,6 +3241,7 @@ export declare const VAutocomplete: {
|
|
3232
3241
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
3233
3242
|
error: boolean;
|
3234
3243
|
active: boolean;
|
3244
|
+
details: boolean;
|
3235
3245
|
style: import("vue").StyleValue;
|
3236
3246
|
disabled: boolean;
|
3237
3247
|
focused: boolean;
|
@@ -3250,6 +3260,7 @@ export declare const VAutocomplete: {
|
|
3250
3260
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
3251
3261
|
error: boolean;
|
3252
3262
|
active: boolean;
|
3263
|
+
details: boolean;
|
3253
3264
|
style: import("vue").StyleValue;
|
3254
3265
|
disabled: boolean;
|
3255
3266
|
focused: boolean;
|
@@ -3277,7 +3288,7 @@ export declare const VAutocomplete: {
|
|
3277
3288
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3278
3289
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3279
3290
|
centerAffix?: boolean | undefined;
|
3280
|
-
} & 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">;
|
3291
|
+
} & 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">;
|
3281
3292
|
$attrs: {
|
3282
3293
|
[x: string]: unknown;
|
3283
3294
|
};
|
@@ -3308,6 +3319,7 @@ export declare const VAutocomplete: {
|
|
3308
3319
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
3309
3320
|
error: boolean;
|
3310
3321
|
active: boolean;
|
3322
|
+
details: boolean;
|
3311
3323
|
style: import("vue").StyleValue;
|
3312
3324
|
disabled: boolean;
|
3313
3325
|
focused: boolean;
|
@@ -3350,6 +3362,7 @@ export declare const VAutocomplete: {
|
|
3350
3362
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
3351
3363
|
error: boolean;
|
3352
3364
|
active: boolean;
|
3365
|
+
details: boolean;
|
3353
3366
|
style: import("vue").StyleValue;
|
3354
3367
|
disabled: boolean;
|
3355
3368
|
focused: boolean;
|
@@ -3400,6 +3413,7 @@ export declare const VAutocomplete: {
|
|
3400
3413
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
3401
3414
|
error: boolean;
|
3402
3415
|
active: boolean;
|
3416
|
+
details: boolean;
|
3403
3417
|
style: import("vue").StyleValue;
|
3404
3418
|
disabled: boolean;
|
3405
3419
|
focused: boolean;
|
@@ -3418,6 +3432,7 @@ export declare const VAutocomplete: {
|
|
3418
3432
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
3419
3433
|
error: boolean;
|
3420
3434
|
active: boolean;
|
3435
|
+
details: boolean;
|
3421
3436
|
style: import("vue").StyleValue;
|
3422
3437
|
disabled: boolean;
|
3423
3438
|
focused: boolean;
|
@@ -3448,13 +3463,13 @@ export declare const VAutocomplete: {
|
|
3448
3463
|
centerAffix?: boolean | undefined;
|
3449
3464
|
} & {
|
3450
3465
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
3451
|
-
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
3466
|
+
}, ("flat" | "reverse" | "variant" | "error" | "active" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
3452
3467
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
3453
3468
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
3454
3469
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
3455
3470
|
modelValue?: unknown;
|
3456
3471
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
3457
|
-
}, 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}`> & {
|
3472
|
+
}, 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}`> & {
|
3458
3473
|
_allExposed: {
|
3459
3474
|
reset: () => Promise<void>;
|
3460
3475
|
resetValidation: () => Promise<void>;
|
@@ -3478,6 +3493,7 @@ export declare const VAutocomplete: {
|
|
3478
3493
|
error: boolean;
|
3479
3494
|
active: boolean;
|
3480
3495
|
direction: "horizontal" | "vertical";
|
3496
|
+
details: boolean;
|
3481
3497
|
style: import("vue").StyleValue;
|
3482
3498
|
autofocus: boolean;
|
3483
3499
|
disabled: boolean;
|
@@ -3546,6 +3562,7 @@ export declare const VAutocomplete: {
|
|
3546
3562
|
error: boolean;
|
3547
3563
|
active: boolean;
|
3548
3564
|
direction: "horizontal" | "vertical";
|
3565
|
+
details: boolean;
|
3549
3566
|
style: import("vue").StyleValue;
|
3550
3567
|
autofocus: boolean;
|
3551
3568
|
disabled: boolean;
|
@@ -3577,6 +3594,7 @@ export declare const VAutocomplete: {
|
|
3577
3594
|
error: boolean;
|
3578
3595
|
active: boolean;
|
3579
3596
|
direction: "horizontal" | "vertical";
|
3597
|
+
details: boolean;
|
3580
3598
|
style: import("vue").StyleValue;
|
3581
3599
|
autofocus: boolean;
|
3582
3600
|
disabled: boolean;
|
@@ -3695,7 +3713,7 @@ export declare const VAutocomplete: {
|
|
3695
3713
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
3696
3714
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
3697
3715
|
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
3698
|
-
}, "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<{
|
3716
|
+
}, "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<{
|
3699
3717
|
$: import("vue").ComponentInternalInstance;
|
3700
3718
|
$data: {};
|
3701
3719
|
$props: Partial<{
|
@@ -3927,6 +3945,7 @@ export declare const VAutocomplete: {
|
|
3927
3945
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
3928
3946
|
error: boolean;
|
3929
3947
|
active: boolean;
|
3948
|
+
details: boolean;
|
3930
3949
|
style: import("vue").StyleValue;
|
3931
3950
|
disabled: boolean;
|
3932
3951
|
focused: boolean;
|
@@ -3945,6 +3964,7 @@ export declare const VAutocomplete: {
|
|
3945
3964
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
3946
3965
|
error: boolean;
|
3947
3966
|
active: boolean;
|
3967
|
+
details: boolean;
|
3948
3968
|
style: import("vue").StyleValue;
|
3949
3969
|
disabled: boolean;
|
3950
3970
|
focused: boolean;
|
@@ -3972,7 +3992,7 @@ export declare const VAutocomplete: {
|
|
3972
3992
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3973
3993
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3974
3994
|
centerAffix?: boolean | undefined;
|
3975
|
-
} & 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">;
|
3995
|
+
} & 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">;
|
3976
3996
|
$attrs: {
|
3977
3997
|
[x: string]: unknown;
|
3978
3998
|
};
|
@@ -4003,6 +4023,7 @@ export declare const VAutocomplete: {
|
|
4003
4023
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
4004
4024
|
error: boolean;
|
4005
4025
|
active: boolean;
|
4026
|
+
details: boolean;
|
4006
4027
|
style: import("vue").StyleValue;
|
4007
4028
|
disabled: boolean;
|
4008
4029
|
focused: boolean;
|
@@ -4045,6 +4066,7 @@ export declare const VAutocomplete: {
|
|
4045
4066
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
4046
4067
|
error: boolean;
|
4047
4068
|
active: boolean;
|
4069
|
+
details: boolean;
|
4048
4070
|
style: import("vue").StyleValue;
|
4049
4071
|
disabled: boolean;
|
4050
4072
|
focused: boolean;
|
@@ -4095,6 +4117,7 @@ export declare const VAutocomplete: {
|
|
4095
4117
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
4096
4118
|
error: boolean;
|
4097
4119
|
active: boolean;
|
4120
|
+
details: boolean;
|
4098
4121
|
style: import("vue").StyleValue;
|
4099
4122
|
disabled: boolean;
|
4100
4123
|
focused: boolean;
|
@@ -4113,6 +4136,7 @@ export declare const VAutocomplete: {
|
|
4113
4136
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
4114
4137
|
error: boolean;
|
4115
4138
|
active: boolean;
|
4139
|
+
details: boolean;
|
4116
4140
|
style: import("vue").StyleValue;
|
4117
4141
|
disabled: boolean;
|
4118
4142
|
focused: boolean;
|
@@ -4143,13 +4167,13 @@ export declare const VAutocomplete: {
|
|
4143
4167
|
centerAffix?: boolean | undefined;
|
4144
4168
|
} & {
|
4145
4169
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
4146
|
-
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
4170
|
+
}, ("flat" | "reverse" | "variant" | "error" | "active" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
4147
4171
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
4148
4172
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
4149
4173
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
4150
4174
|
modelValue?: unknown;
|
4151
4175
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
4152
|
-
}, 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}`> & {
|
4176
|
+
}, 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}`> & {
|
4153
4177
|
_allExposed: {
|
4154
4178
|
reset: () => Promise<void>;
|
4155
4179
|
resetValidation: () => Promise<void>;
|
@@ -4160,7 +4184,7 @@ export declare const VAutocomplete: {
|
|
4160
4184
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
4161
4185
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
4162
4186
|
} | {};
|
4163
|
-
}> & {} & 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}`> & {
|
4187
|
+
}> & {} & 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}`> & {
|
4164
4188
|
_allExposed: (Omit<Omit<{
|
4165
4189
|
$: import("vue").ComponentInternalInstance;
|
4166
4190
|
$data: {};
|
@@ -4393,6 +4417,7 @@ export declare const VAutocomplete: {
|
|
4393
4417
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
4394
4418
|
error: boolean;
|
4395
4419
|
active: boolean;
|
4420
|
+
details: boolean;
|
4396
4421
|
style: import("vue").StyleValue;
|
4397
4422
|
disabled: boolean;
|
4398
4423
|
focused: boolean;
|
@@ -4411,6 +4436,7 @@ export declare const VAutocomplete: {
|
|
4411
4436
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
4412
4437
|
error: boolean;
|
4413
4438
|
active: boolean;
|
4439
|
+
details: boolean;
|
4414
4440
|
style: import("vue").StyleValue;
|
4415
4441
|
disabled: boolean;
|
4416
4442
|
focused: boolean;
|
@@ -4438,7 +4464,7 @@ export declare const VAutocomplete: {
|
|
4438
4464
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4439
4465
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4440
4466
|
centerAffix?: boolean | undefined;
|
4441
|
-
} & 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">;
|
4467
|
+
} & 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">;
|
4442
4468
|
$attrs: {
|
4443
4469
|
[x: string]: unknown;
|
4444
4470
|
};
|
@@ -4469,6 +4495,7 @@ export declare const VAutocomplete: {
|
|
4469
4495
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
4470
4496
|
error: boolean;
|
4471
4497
|
active: boolean;
|
4498
|
+
details: boolean;
|
4472
4499
|
style: import("vue").StyleValue;
|
4473
4500
|
disabled: boolean;
|
4474
4501
|
focused: boolean;
|
@@ -4511,6 +4538,7 @@ export declare const VAutocomplete: {
|
|
4511
4538
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
4512
4539
|
error: boolean;
|
4513
4540
|
active: boolean;
|
4541
|
+
details: boolean;
|
4514
4542
|
style: import("vue").StyleValue;
|
4515
4543
|
disabled: boolean;
|
4516
4544
|
focused: boolean;
|
@@ -4561,6 +4589,7 @@ export declare const VAutocomplete: {
|
|
4561
4589
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
4562
4590
|
error: boolean;
|
4563
4591
|
active: boolean;
|
4592
|
+
details: boolean;
|
4564
4593
|
style: import("vue").StyleValue;
|
4565
4594
|
disabled: boolean;
|
4566
4595
|
focused: boolean;
|
@@ -4579,6 +4608,7 @@ export declare const VAutocomplete: {
|
|
4579
4608
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
4580
4609
|
error: boolean;
|
4581
4610
|
active: boolean;
|
4611
|
+
details: boolean;
|
4582
4612
|
style: import("vue").StyleValue;
|
4583
4613
|
disabled: boolean;
|
4584
4614
|
focused: boolean;
|
@@ -4609,13 +4639,13 @@ export declare const VAutocomplete: {
|
|
4609
4639
|
centerAffix?: boolean | undefined;
|
4610
4640
|
} & {
|
4611
4641
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
4612
|
-
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
4642
|
+
}, ("flat" | "reverse" | "variant" | "error" | "active" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
4613
4643
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
4614
4644
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
4615
4645
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
4616
4646
|
modelValue?: unknown;
|
4617
4647
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
4618
|
-
}, 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}`> & {
|
4648
|
+
}, 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}`> & {
|
4619
4649
|
_allExposed: {
|
4620
4650
|
reset: () => Promise<void>;
|
4621
4651
|
resetValidation: () => Promise<void>;
|
@@ -4652,6 +4682,7 @@ export declare const VAutocomplete: {
|
|
4652
4682
|
transition: string | boolean | (import("vue").TransitionProps & {
|
4653
4683
|
component?: import("vue").Component;
|
4654
4684
|
}) | null;
|
4685
|
+
details: boolean;
|
4655
4686
|
menu: boolean;
|
4656
4687
|
style: import("vue").StyleValue;
|
4657
4688
|
role: string;
|
@@ -4751,6 +4782,7 @@ export declare const VAutocomplete: {
|
|
4751
4782
|
transition: string | boolean | (import("vue").TransitionProps & {
|
4752
4783
|
component?: import("vue").Component;
|
4753
4784
|
}) | null;
|
4785
|
+
details: boolean;
|
4754
4786
|
menu: boolean;
|
4755
4787
|
style: import("vue").StyleValue;
|
4756
4788
|
role: string;
|
@@ -5232,6 +5264,7 @@ export declare const VAutocomplete: {
|
|
5232
5264
|
error: boolean;
|
5233
5265
|
active: boolean;
|
5234
5266
|
direction: "horizontal" | "vertical";
|
5267
|
+
details: boolean;
|
5235
5268
|
style: import("vue").StyleValue;
|
5236
5269
|
autofocus: boolean;
|
5237
5270
|
disabled: boolean;
|
@@ -5263,6 +5296,7 @@ export declare const VAutocomplete: {
|
|
5263
5296
|
error: boolean;
|
5264
5297
|
active: boolean;
|
5265
5298
|
direction: "horizontal" | "vertical";
|
5299
|
+
details: boolean;
|
5266
5300
|
style: import("vue").StyleValue;
|
5267
5301
|
autofocus: boolean;
|
5268
5302
|
disabled: boolean;
|
@@ -5376,7 +5410,7 @@ export declare const VAutocomplete: {
|
|
5376
5410
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
5377
5411
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
5378
5412
|
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
5379
|
-
} & 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">;
|
5413
|
+
} & 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">;
|
5380
5414
|
$attrs: {
|
5381
5415
|
[x: string]: unknown;
|
5382
5416
|
};
|
@@ -5414,6 +5448,7 @@ export declare const VAutocomplete: {
|
|
5414
5448
|
error: boolean;
|
5415
5449
|
active: boolean;
|
5416
5450
|
direction: "horizontal" | "vertical";
|
5451
|
+
details: boolean;
|
5417
5452
|
style: import("vue").StyleValue;
|
5418
5453
|
autofocus: boolean;
|
5419
5454
|
disabled: boolean;
|
@@ -5764,6 +5799,7 @@ export declare const VAutocomplete: {
|
|
5764
5799
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
5765
5800
|
error: boolean;
|
5766
5801
|
active: boolean;
|
5802
|
+
details: boolean;
|
5767
5803
|
style: import("vue").StyleValue;
|
5768
5804
|
disabled: boolean;
|
5769
5805
|
focused: boolean;
|
@@ -5782,6 +5818,7 @@ export declare const VAutocomplete: {
|
|
5782
5818
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
5783
5819
|
error: boolean;
|
5784
5820
|
active: boolean;
|
5821
|
+
details: boolean;
|
5785
5822
|
style: import("vue").StyleValue;
|
5786
5823
|
disabled: boolean;
|
5787
5824
|
focused: boolean;
|
@@ -5809,7 +5846,7 @@ export declare const VAutocomplete: {
|
|
5809
5846
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5810
5847
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5811
5848
|
centerAffix?: boolean | undefined;
|
5812
|
-
} & 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">;
|
5849
|
+
} & 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">;
|
5813
5850
|
$attrs: {
|
5814
5851
|
[x: string]: unknown;
|
5815
5852
|
};
|
@@ -5840,6 +5877,7 @@ export declare const VAutocomplete: {
|
|
5840
5877
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
5841
5878
|
error: boolean;
|
5842
5879
|
active: boolean;
|
5880
|
+
details: boolean;
|
5843
5881
|
style: import("vue").StyleValue;
|
5844
5882
|
disabled: boolean;
|
5845
5883
|
focused: boolean;
|
@@ -5882,6 +5920,7 @@ export declare const VAutocomplete: {
|
|
5882
5920
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
5883
5921
|
error: boolean;
|
5884
5922
|
active: boolean;
|
5923
|
+
details: boolean;
|
5885
5924
|
style: import("vue").StyleValue;
|
5886
5925
|
disabled: boolean;
|
5887
5926
|
focused: boolean;
|
@@ -5932,6 +5971,7 @@ export declare const VAutocomplete: {
|
|
5932
5971
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
5933
5972
|
error: boolean;
|
5934
5973
|
active: boolean;
|
5974
|
+
details: boolean;
|
5935
5975
|
style: import("vue").StyleValue;
|
5936
5976
|
disabled: boolean;
|
5937
5977
|
focused: boolean;
|
@@ -5950,6 +5990,7 @@ export declare const VAutocomplete: {
|
|
5950
5990
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
5951
5991
|
error: boolean;
|
5952
5992
|
active: boolean;
|
5993
|
+
details: boolean;
|
5953
5994
|
style: import("vue").StyleValue;
|
5954
5995
|
disabled: boolean;
|
5955
5996
|
focused: boolean;
|
@@ -5980,13 +6021,13 @@ export declare const VAutocomplete: {
|
|
5980
6021
|
centerAffix?: boolean | undefined;
|
5981
6022
|
} & {
|
5982
6023
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
5983
|
-
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
6024
|
+
}, ("flat" | "reverse" | "variant" | "error" | "active" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
5984
6025
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
5985
6026
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
5986
6027
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
5987
6028
|
modelValue?: unknown;
|
5988
6029
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
5989
|
-
}, 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}`> & {
|
6030
|
+
}, 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}`> & {
|
5990
6031
|
_allExposed: {
|
5991
6032
|
reset: () => Promise<void>;
|
5992
6033
|
resetValidation: () => Promise<void>;
|
@@ -6010,6 +6051,7 @@ export declare const VAutocomplete: {
|
|
6010
6051
|
error: boolean;
|
6011
6052
|
active: boolean;
|
6012
6053
|
direction: "horizontal" | "vertical";
|
6054
|
+
details: boolean;
|
6013
6055
|
style: import("vue").StyleValue;
|
6014
6056
|
autofocus: boolean;
|
6015
6057
|
disabled: boolean;
|
@@ -6078,6 +6120,7 @@ export declare const VAutocomplete: {
|
|
6078
6120
|
error: boolean;
|
6079
6121
|
active: boolean;
|
6080
6122
|
direction: "horizontal" | "vertical";
|
6123
|
+
details: boolean;
|
6081
6124
|
style: import("vue").StyleValue;
|
6082
6125
|
autofocus: boolean;
|
6083
6126
|
disabled: boolean;
|
@@ -6109,6 +6152,7 @@ export declare const VAutocomplete: {
|
|
6109
6152
|
error: boolean;
|
6110
6153
|
active: boolean;
|
6111
6154
|
direction: "horizontal" | "vertical";
|
6155
|
+
details: boolean;
|
6112
6156
|
style: import("vue").StyleValue;
|
6113
6157
|
autofocus: boolean;
|
6114
6158
|
disabled: boolean;
|
@@ -6227,7 +6271,7 @@ export declare const VAutocomplete: {
|
|
6227
6271
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
6228
6272
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
6229
6273
|
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
6230
|
-
}, "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<{
|
6274
|
+
}, "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<{
|
6231
6275
|
$: import("vue").ComponentInternalInstance;
|
6232
6276
|
$data: {};
|
6233
6277
|
$props: Partial<{
|
@@ -6459,6 +6503,7 @@ export declare const VAutocomplete: {
|
|
6459
6503
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
6460
6504
|
error: boolean;
|
6461
6505
|
active: boolean;
|
6506
|
+
details: boolean;
|
6462
6507
|
style: import("vue").StyleValue;
|
6463
6508
|
disabled: boolean;
|
6464
6509
|
focused: boolean;
|
@@ -6477,6 +6522,7 @@ export declare const VAutocomplete: {
|
|
6477
6522
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
6478
6523
|
error: boolean;
|
6479
6524
|
active: boolean;
|
6525
|
+
details: boolean;
|
6480
6526
|
style: import("vue").StyleValue;
|
6481
6527
|
disabled: boolean;
|
6482
6528
|
focused: boolean;
|
@@ -6504,7 +6550,7 @@ export declare const VAutocomplete: {
|
|
6504
6550
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6505
6551
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6506
6552
|
centerAffix?: boolean | undefined;
|
6507
|
-
} & 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">;
|
6553
|
+
} & 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">;
|
6508
6554
|
$attrs: {
|
6509
6555
|
[x: string]: unknown;
|
6510
6556
|
};
|
@@ -6535,6 +6581,7 @@ export declare const VAutocomplete: {
|
|
6535
6581
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
6536
6582
|
error: boolean;
|
6537
6583
|
active: boolean;
|
6584
|
+
details: boolean;
|
6538
6585
|
style: import("vue").StyleValue;
|
6539
6586
|
disabled: boolean;
|
6540
6587
|
focused: boolean;
|
@@ -6577,6 +6624,7 @@ export declare const VAutocomplete: {
|
|
6577
6624
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
6578
6625
|
error: boolean;
|
6579
6626
|
active: boolean;
|
6627
|
+
details: boolean;
|
6580
6628
|
style: import("vue").StyleValue;
|
6581
6629
|
disabled: boolean;
|
6582
6630
|
focused: boolean;
|
@@ -6627,6 +6675,7 @@ export declare const VAutocomplete: {
|
|
6627
6675
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
6628
6676
|
error: boolean;
|
6629
6677
|
active: boolean;
|
6678
|
+
details: boolean;
|
6630
6679
|
style: import("vue").StyleValue;
|
6631
6680
|
disabled: boolean;
|
6632
6681
|
focused: boolean;
|
@@ -6645,6 +6694,7 @@ export declare const VAutocomplete: {
|
|
6645
6694
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
6646
6695
|
error: boolean;
|
6647
6696
|
active: boolean;
|
6697
|
+
details: boolean;
|
6648
6698
|
style: import("vue").StyleValue;
|
6649
6699
|
disabled: boolean;
|
6650
6700
|
focused: boolean;
|
@@ -6675,13 +6725,13 @@ export declare const VAutocomplete: {
|
|
6675
6725
|
centerAffix?: boolean | undefined;
|
6676
6726
|
} & {
|
6677
6727
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
6678
|
-
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
6728
|
+
}, ("flat" | "reverse" | "variant" | "error" | "active" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
6679
6729
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
6680
6730
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
6681
6731
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
6682
6732
|
modelValue?: unknown;
|
6683
6733
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
6684
|
-
}, 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}`> & {
|
6734
|
+
}, 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}`> & {
|
6685
6735
|
_allExposed: {
|
6686
6736
|
reset: () => Promise<void>;
|
6687
6737
|
resetValidation: () => Promise<void>;
|
@@ -6692,7 +6742,7 @@ export declare const VAutocomplete: {
|
|
6692
6742
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
6693
6743
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
6694
6744
|
} | {};
|
6695
|
-
}> & {} & 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}`> & {
|
6745
|
+
}> & {} & 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}`> & {
|
6696
6746
|
_allExposed: (Omit<Omit<{
|
6697
6747
|
$: import("vue").ComponentInternalInstance;
|
6698
6748
|
$data: {};
|
@@ -6925,6 +6975,7 @@ export declare const VAutocomplete: {
|
|
6925
6975
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
6926
6976
|
error: boolean;
|
6927
6977
|
active: boolean;
|
6978
|
+
details: boolean;
|
6928
6979
|
style: import("vue").StyleValue;
|
6929
6980
|
disabled: boolean;
|
6930
6981
|
focused: boolean;
|
@@ -6943,6 +6994,7 @@ export declare const VAutocomplete: {
|
|
6943
6994
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
6944
6995
|
error: boolean;
|
6945
6996
|
active: boolean;
|
6997
|
+
details: boolean;
|
6946
6998
|
style: import("vue").StyleValue;
|
6947
6999
|
disabled: boolean;
|
6948
7000
|
focused: boolean;
|
@@ -6970,7 +7022,7 @@ export declare const VAutocomplete: {
|
|
6970
7022
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6971
7023
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6972
7024
|
centerAffix?: boolean | undefined;
|
6973
|
-
} & 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">;
|
7025
|
+
} & 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">;
|
6974
7026
|
$attrs: {
|
6975
7027
|
[x: string]: unknown;
|
6976
7028
|
};
|
@@ -7001,6 +7053,7 @@ export declare const VAutocomplete: {
|
|
7001
7053
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
7002
7054
|
error: boolean;
|
7003
7055
|
active: boolean;
|
7056
|
+
details: boolean;
|
7004
7057
|
style: import("vue").StyleValue;
|
7005
7058
|
disabled: boolean;
|
7006
7059
|
focused: boolean;
|
@@ -7043,6 +7096,7 @@ export declare const VAutocomplete: {
|
|
7043
7096
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
7044
7097
|
error: boolean;
|
7045
7098
|
active: boolean;
|
7099
|
+
details: boolean;
|
7046
7100
|
style: import("vue").StyleValue;
|
7047
7101
|
disabled: boolean;
|
7048
7102
|
focused: boolean;
|
@@ -7093,6 +7147,7 @@ export declare const VAutocomplete: {
|
|
7093
7147
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
7094
7148
|
error: boolean;
|
7095
7149
|
active: boolean;
|
7150
|
+
details: boolean;
|
7096
7151
|
style: import("vue").StyleValue;
|
7097
7152
|
disabled: boolean;
|
7098
7153
|
focused: boolean;
|
@@ -7111,6 +7166,7 @@ export declare const VAutocomplete: {
|
|
7111
7166
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
7112
7167
|
error: boolean;
|
7113
7168
|
active: boolean;
|
7169
|
+
details: boolean;
|
7114
7170
|
style: import("vue").StyleValue;
|
7115
7171
|
disabled: boolean;
|
7116
7172
|
focused: boolean;
|
@@ -7141,13 +7197,13 @@ export declare const VAutocomplete: {
|
|
7141
7197
|
centerAffix?: boolean | undefined;
|
7142
7198
|
} & {
|
7143
7199
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
7144
|
-
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
7200
|
+
}, ("flat" | "reverse" | "variant" | "error" | "active" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
7145
7201
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
7146
7202
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
7147
7203
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
7148
7204
|
modelValue?: unknown;
|
7149
7205
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
7150
|
-
}, 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}`> & {
|
7206
|
+
}, 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}`> & {
|
7151
7207
|
_allExposed: {
|
7152
7208
|
reset: () => Promise<void>;
|
7153
7209
|
resetValidation: () => Promise<void>;
|
@@ -7179,6 +7235,7 @@ export declare const VAutocomplete: {
|
|
7179
7235
|
transition: string | boolean | (import("vue").TransitionProps & {
|
7180
7236
|
component?: import("vue").Component;
|
7181
7237
|
}) | null;
|
7238
|
+
details: boolean;
|
7182
7239
|
menu: boolean;
|
7183
7240
|
style: import("vue").StyleValue;
|
7184
7241
|
role: string;
|
@@ -7235,6 +7292,7 @@ export declare const VAutocomplete: {
|
|
7235
7292
|
transition: string | boolean | (import("vue").TransitionProps & {
|
7236
7293
|
component?: import("vue").Component;
|
7237
7294
|
}) | null;
|
7295
|
+
details: boolean;
|
7238
7296
|
menu: boolean;
|
7239
7297
|
style: import("vue").StyleValue;
|
7240
7298
|
role: string;
|
@@ -7716,6 +7774,7 @@ export declare const VAutocomplete: {
|
|
7716
7774
|
error: boolean;
|
7717
7775
|
active: boolean;
|
7718
7776
|
direction: "horizontal" | "vertical";
|
7777
|
+
details: boolean;
|
7719
7778
|
style: import("vue").StyleValue;
|
7720
7779
|
autofocus: boolean;
|
7721
7780
|
disabled: boolean;
|
@@ -7747,6 +7806,7 @@ export declare const VAutocomplete: {
|
|
7747
7806
|
error: boolean;
|
7748
7807
|
active: boolean;
|
7749
7808
|
direction: "horizontal" | "vertical";
|
7809
|
+
details: boolean;
|
7750
7810
|
style: import("vue").StyleValue;
|
7751
7811
|
autofocus: boolean;
|
7752
7812
|
disabled: boolean;
|
@@ -7860,7 +7920,7 @@ export declare const VAutocomplete: {
|
|
7860
7920
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
7861
7921
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
7862
7922
|
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
7863
|
-
} & 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">;
|
7923
|
+
} & 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">;
|
7864
7924
|
$attrs: {
|
7865
7925
|
[x: string]: unknown;
|
7866
7926
|
};
|
@@ -7898,6 +7958,7 @@ export declare const VAutocomplete: {
|
|
7898
7958
|
error: boolean;
|
7899
7959
|
active: boolean;
|
7900
7960
|
direction: "horizontal" | "vertical";
|
7961
|
+
details: boolean;
|
7901
7962
|
style: import("vue").StyleValue;
|
7902
7963
|
autofocus: boolean;
|
7903
7964
|
disabled: boolean;
|
@@ -8248,6 +8309,7 @@ export declare const VAutocomplete: {
|
|
8248
8309
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
8249
8310
|
error: boolean;
|
8250
8311
|
active: boolean;
|
8312
|
+
details: boolean;
|
8251
8313
|
style: import("vue").StyleValue;
|
8252
8314
|
disabled: boolean;
|
8253
8315
|
focused: boolean;
|
@@ -8266,6 +8328,7 @@ export declare const VAutocomplete: {
|
|
8266
8328
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
8267
8329
|
error: boolean;
|
8268
8330
|
active: boolean;
|
8331
|
+
details: boolean;
|
8269
8332
|
style: import("vue").StyleValue;
|
8270
8333
|
disabled: boolean;
|
8271
8334
|
focused: boolean;
|
@@ -8293,7 +8356,7 @@ export declare const VAutocomplete: {
|
|
8293
8356
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8294
8357
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8295
8358
|
centerAffix?: boolean | undefined;
|
8296
|
-
} & 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">;
|
8359
|
+
} & 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">;
|
8297
8360
|
$attrs: {
|
8298
8361
|
[x: string]: unknown;
|
8299
8362
|
};
|
@@ -8324,6 +8387,7 @@ export declare const VAutocomplete: {
|
|
8324
8387
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
8325
8388
|
error: boolean;
|
8326
8389
|
active: boolean;
|
8390
|
+
details: boolean;
|
8327
8391
|
style: import("vue").StyleValue;
|
8328
8392
|
disabled: boolean;
|
8329
8393
|
focused: boolean;
|
@@ -8366,6 +8430,7 @@ export declare const VAutocomplete: {
|
|
8366
8430
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
8367
8431
|
error: boolean;
|
8368
8432
|
active: boolean;
|
8433
|
+
details: boolean;
|
8369
8434
|
style: import("vue").StyleValue;
|
8370
8435
|
disabled: boolean;
|
8371
8436
|
focused: boolean;
|
@@ -8416,6 +8481,7 @@ export declare const VAutocomplete: {
|
|
8416
8481
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
8417
8482
|
error: boolean;
|
8418
8483
|
active: boolean;
|
8484
|
+
details: boolean;
|
8419
8485
|
style: import("vue").StyleValue;
|
8420
8486
|
disabled: boolean;
|
8421
8487
|
focused: boolean;
|
@@ -8434,6 +8500,7 @@ export declare const VAutocomplete: {
|
|
8434
8500
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
8435
8501
|
error: boolean;
|
8436
8502
|
active: boolean;
|
8503
|
+
details: boolean;
|
8437
8504
|
style: import("vue").StyleValue;
|
8438
8505
|
disabled: boolean;
|
8439
8506
|
focused: boolean;
|
@@ -8464,13 +8531,13 @@ export declare const VAutocomplete: {
|
|
8464
8531
|
centerAffix?: boolean | undefined;
|
8465
8532
|
} & {
|
8466
8533
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
8467
|
-
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
8534
|
+
}, ("flat" | "reverse" | "variant" | "error" | "active" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
8468
8535
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
8469
8536
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
8470
8537
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
8471
8538
|
modelValue?: unknown;
|
8472
8539
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
8473
|
-
}, 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}`> & {
|
8540
|
+
}, 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}`> & {
|
8474
8541
|
_allExposed: {
|
8475
8542
|
reset: () => Promise<void>;
|
8476
8543
|
resetValidation: () => Promise<void>;
|
@@ -8494,6 +8561,7 @@ export declare const VAutocomplete: {
|
|
8494
8561
|
error: boolean;
|
8495
8562
|
active: boolean;
|
8496
8563
|
direction: "horizontal" | "vertical";
|
8564
|
+
details: boolean;
|
8497
8565
|
style: import("vue").StyleValue;
|
8498
8566
|
autofocus: boolean;
|
8499
8567
|
disabled: boolean;
|
@@ -8562,6 +8630,7 @@ export declare const VAutocomplete: {
|
|
8562
8630
|
error: boolean;
|
8563
8631
|
active: boolean;
|
8564
8632
|
direction: "horizontal" | "vertical";
|
8633
|
+
details: boolean;
|
8565
8634
|
style: import("vue").StyleValue;
|
8566
8635
|
autofocus: boolean;
|
8567
8636
|
disabled: boolean;
|
@@ -8593,6 +8662,7 @@ export declare const VAutocomplete: {
|
|
8593
8662
|
error: boolean;
|
8594
8663
|
active: boolean;
|
8595
8664
|
direction: "horizontal" | "vertical";
|
8665
|
+
details: boolean;
|
8596
8666
|
style: import("vue").StyleValue;
|
8597
8667
|
autofocus: boolean;
|
8598
8668
|
disabled: boolean;
|
@@ -8711,7 +8781,7 @@ export declare const VAutocomplete: {
|
|
8711
8781
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
8712
8782
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
8713
8783
|
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
8714
|
-
}, "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<{
|
8784
|
+
}, "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<{
|
8715
8785
|
$: import("vue").ComponentInternalInstance;
|
8716
8786
|
$data: {};
|
8717
8787
|
$props: Partial<{
|
@@ -8943,6 +9013,7 @@ export declare const VAutocomplete: {
|
|
8943
9013
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
8944
9014
|
error: boolean;
|
8945
9015
|
active: boolean;
|
9016
|
+
details: boolean;
|
8946
9017
|
style: import("vue").StyleValue;
|
8947
9018
|
disabled: boolean;
|
8948
9019
|
focused: boolean;
|
@@ -8961,6 +9032,7 @@ export declare const VAutocomplete: {
|
|
8961
9032
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
8962
9033
|
error: boolean;
|
8963
9034
|
active: boolean;
|
9035
|
+
details: boolean;
|
8964
9036
|
style: import("vue").StyleValue;
|
8965
9037
|
disabled: boolean;
|
8966
9038
|
focused: boolean;
|
@@ -8988,7 +9060,7 @@ export declare const VAutocomplete: {
|
|
8988
9060
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8989
9061
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8990
9062
|
centerAffix?: boolean | undefined;
|
8991
|
-
} & 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">;
|
9063
|
+
} & 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">;
|
8992
9064
|
$attrs: {
|
8993
9065
|
[x: string]: unknown;
|
8994
9066
|
};
|
@@ -9019,6 +9091,7 @@ export declare const VAutocomplete: {
|
|
9019
9091
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
9020
9092
|
error: boolean;
|
9021
9093
|
active: boolean;
|
9094
|
+
details: boolean;
|
9022
9095
|
style: import("vue").StyleValue;
|
9023
9096
|
disabled: boolean;
|
9024
9097
|
focused: boolean;
|
@@ -9061,6 +9134,7 @@ export declare const VAutocomplete: {
|
|
9061
9134
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
9062
9135
|
error: boolean;
|
9063
9136
|
active: boolean;
|
9137
|
+
details: boolean;
|
9064
9138
|
style: import("vue").StyleValue;
|
9065
9139
|
disabled: boolean;
|
9066
9140
|
focused: boolean;
|
@@ -9111,6 +9185,7 @@ export declare const VAutocomplete: {
|
|
9111
9185
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
9112
9186
|
error: boolean;
|
9113
9187
|
active: boolean;
|
9188
|
+
details: boolean;
|
9114
9189
|
style: import("vue").StyleValue;
|
9115
9190
|
disabled: boolean;
|
9116
9191
|
focused: boolean;
|
@@ -9129,6 +9204,7 @@ export declare const VAutocomplete: {
|
|
9129
9204
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
9130
9205
|
error: boolean;
|
9131
9206
|
active: boolean;
|
9207
|
+
details: boolean;
|
9132
9208
|
style: import("vue").StyleValue;
|
9133
9209
|
disabled: boolean;
|
9134
9210
|
focused: boolean;
|
@@ -9159,13 +9235,13 @@ export declare const VAutocomplete: {
|
|
9159
9235
|
centerAffix?: boolean | undefined;
|
9160
9236
|
} & {
|
9161
9237
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
9162
|
-
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
9238
|
+
}, ("flat" | "reverse" | "variant" | "error" | "active" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
9163
9239
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
9164
9240
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
9165
9241
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
9166
9242
|
modelValue?: unknown;
|
9167
9243
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
9168
|
-
}, 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}`> & {
|
9244
|
+
}, 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}`> & {
|
9169
9245
|
_allExposed: {
|
9170
9246
|
reset: () => Promise<void>;
|
9171
9247
|
resetValidation: () => Promise<void>;
|
@@ -9176,7 +9252,7 @@ export declare const VAutocomplete: {
|
|
9176
9252
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
9177
9253
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
9178
9254
|
} | {};
|
9179
|
-
}> & {} & 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}`> & {
|
9255
|
+
}> & {} & 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}`> & {
|
9180
9256
|
_allExposed: (Omit<Omit<{
|
9181
9257
|
$: import("vue").ComponentInternalInstance;
|
9182
9258
|
$data: {};
|
@@ -9409,6 +9485,7 @@ export declare const VAutocomplete: {
|
|
9409
9485
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
9410
9486
|
error: boolean;
|
9411
9487
|
active: boolean;
|
9488
|
+
details: boolean;
|
9412
9489
|
style: import("vue").StyleValue;
|
9413
9490
|
disabled: boolean;
|
9414
9491
|
focused: boolean;
|
@@ -9427,6 +9504,7 @@ export declare const VAutocomplete: {
|
|
9427
9504
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
9428
9505
|
error: boolean;
|
9429
9506
|
active: boolean;
|
9507
|
+
details: boolean;
|
9430
9508
|
style: import("vue").StyleValue;
|
9431
9509
|
disabled: boolean;
|
9432
9510
|
focused: boolean;
|
@@ -9454,7 +9532,7 @@ export declare const VAutocomplete: {
|
|
9454
9532
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9455
9533
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9456
9534
|
centerAffix?: boolean | undefined;
|
9457
|
-
} & 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">;
|
9535
|
+
} & 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">;
|
9458
9536
|
$attrs: {
|
9459
9537
|
[x: string]: unknown;
|
9460
9538
|
};
|
@@ -9485,6 +9563,7 @@ export declare const VAutocomplete: {
|
|
9485
9563
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
9486
9564
|
error: boolean;
|
9487
9565
|
active: boolean;
|
9566
|
+
details: boolean;
|
9488
9567
|
style: import("vue").StyleValue;
|
9489
9568
|
disabled: boolean;
|
9490
9569
|
focused: boolean;
|
@@ -9527,6 +9606,7 @@ export declare const VAutocomplete: {
|
|
9527
9606
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
9528
9607
|
error: boolean;
|
9529
9608
|
active: boolean;
|
9609
|
+
details: boolean;
|
9530
9610
|
style: import("vue").StyleValue;
|
9531
9611
|
disabled: boolean;
|
9532
9612
|
focused: boolean;
|
@@ -9577,6 +9657,7 @@ export declare const VAutocomplete: {
|
|
9577
9657
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
9578
9658
|
error: boolean;
|
9579
9659
|
active: boolean;
|
9660
|
+
details: boolean;
|
9580
9661
|
style: import("vue").StyleValue;
|
9581
9662
|
disabled: boolean;
|
9582
9663
|
focused: boolean;
|
@@ -9595,6 +9676,7 @@ export declare const VAutocomplete: {
|
|
9595
9676
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
9596
9677
|
error: boolean;
|
9597
9678
|
active: boolean;
|
9679
|
+
details: boolean;
|
9598
9680
|
style: import("vue").StyleValue;
|
9599
9681
|
disabled: boolean;
|
9600
9682
|
focused: boolean;
|
@@ -9625,13 +9707,13 @@ export declare const VAutocomplete: {
|
|
9625
9707
|
centerAffix?: boolean | undefined;
|
9626
9708
|
} & {
|
9627
9709
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
9628
|
-
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
9710
|
+
}, ("flat" | "reverse" | "variant" | "error" | "active" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
9629
9711
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
9630
9712
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
9631
9713
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
9632
9714
|
modelValue?: unknown;
|
9633
9715
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
9634
|
-
}, 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}`> & {
|
9716
|
+
}, 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}`> & {
|
9635
9717
|
_allExposed: {
|
9636
9718
|
reset: () => Promise<void>;
|
9637
9719
|
resetValidation: () => Promise<void>;
|
@@ -9668,6 +9750,7 @@ export declare const VAutocomplete: {
|
|
9668
9750
|
transition: string | boolean | (import("vue").TransitionProps & {
|
9669
9751
|
component?: import("vue").Component;
|
9670
9752
|
}) | null;
|
9753
|
+
details: boolean;
|
9671
9754
|
menu: boolean;
|
9672
9755
|
style: import("vue").StyleValue;
|
9673
9756
|
role: string;
|
@@ -9818,6 +9901,7 @@ export declare const VAutocomplete: {
|
|
9818
9901
|
maxWidth: (StringConstructor | NumberConstructor)[];
|
9819
9902
|
minWidth: (StringConstructor | NumberConstructor)[];
|
9820
9903
|
loading: (StringConstructor | BooleanConstructor)[];
|
9904
|
+
details: BooleanConstructor;
|
9821
9905
|
label: StringConstructor;
|
9822
9906
|
style: {
|
9823
9907
|
type: PropType<import("vue").StyleValue>;
|
@@ -10017,6 +10101,7 @@ export declare const VAutocomplete: {
|
|
10017
10101
|
maxWidth: (StringConstructor | NumberConstructor)[];
|
10018
10102
|
minWidth: (StringConstructor | NumberConstructor)[];
|
10019
10103
|
loading: (StringConstructor | BooleanConstructor)[];
|
10104
|
+
details: BooleanConstructor;
|
10020
10105
|
label: StringConstructor;
|
10021
10106
|
style: {
|
10022
10107
|
type: PropType<import("vue").StyleValue>;
|