@vuetify/nightly 3.9.0-master.2025-07-11 → 3.9.0-master.2025-07-13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -3
- package/dist/json/attributes.json +2382 -2338
- package/dist/json/importMap-labs.json +14 -14
- package/dist/json/importMap.json +158 -158
- package/dist/json/tags.json +11 -0
- package/dist/json/web-types.json +4453 -4131
- package/dist/vuetify-labs.cjs +49 -28
- package/dist/vuetify-labs.css +5886 -5886
- package/dist/vuetify-labs.d.ts +831 -283
- package/dist/vuetify-labs.esm.js +49 -28
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +49 -28
- 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 +3262 -3262
- package/dist/vuetify.d.ts +577 -206
- 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 +52 -52
- package/lib/framework.js +1 -1
- package/lib/labs/VColorInput/VColorInput.d.ts +13 -0
- package/lib/labs/VColorInput/VColorInput.js +14 -6
- package/lib/labs/VColorInput/VColorInput.js.map +1 -1
- 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 makeVComboboxProps: <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 makeVComboboxProps: <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"];
|
@@ -2237,6 +2242,7 @@ export declare const VCombobox: {
|
|
2237
2242
|
transition: string | boolean | (import("vue").TransitionProps & {
|
2238
2243
|
component?: import("vue").Component;
|
2239
2244
|
}) | null;
|
2245
|
+
details: boolean;
|
2240
2246
|
menu: boolean;
|
2241
2247
|
style: import("vue").StyleValue;
|
2242
2248
|
role: string;
|
@@ -2717,6 +2723,7 @@ export declare const VCombobox: {
|
|
2717
2723
|
error: boolean;
|
2718
2724
|
active: boolean;
|
2719
2725
|
direction: "horizontal" | "vertical";
|
2726
|
+
details: boolean;
|
2720
2727
|
style: import("vue").StyleValue;
|
2721
2728
|
autofocus: boolean;
|
2722
2729
|
disabled: boolean;
|
@@ -2748,6 +2755,7 @@ export declare const VCombobox: {
|
|
2748
2755
|
error: boolean;
|
2749
2756
|
active: boolean;
|
2750
2757
|
direction: "horizontal" | "vertical";
|
2758
|
+
details: boolean;
|
2751
2759
|
style: import("vue").StyleValue;
|
2752
2760
|
autofocus: boolean;
|
2753
2761
|
disabled: boolean;
|
@@ -2861,7 +2869,7 @@ export declare const VCombobox: {
|
|
2861
2869
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
2862
2870
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
2863
2871
|
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
2864
|
-
} & 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">;
|
2872
|
+
} & 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">;
|
2865
2873
|
$attrs: {
|
2866
2874
|
[x: string]: unknown;
|
2867
2875
|
};
|
@@ -2899,6 +2907,7 @@ export declare const VCombobox: {
|
|
2899
2907
|
error: boolean;
|
2900
2908
|
active: boolean;
|
2901
2909
|
direction: "horizontal" | "vertical";
|
2910
|
+
details: boolean;
|
2902
2911
|
style: import("vue").StyleValue;
|
2903
2912
|
autofocus: boolean;
|
2904
2913
|
disabled: boolean;
|
@@ -3249,6 +3258,7 @@ export declare const VCombobox: {
|
|
3249
3258
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
3250
3259
|
error: boolean;
|
3251
3260
|
active: boolean;
|
3261
|
+
details: boolean;
|
3252
3262
|
style: import("vue").StyleValue;
|
3253
3263
|
disabled: boolean;
|
3254
3264
|
focused: boolean;
|
@@ -3267,6 +3277,7 @@ export declare const VCombobox: {
|
|
3267
3277
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
3268
3278
|
error: boolean;
|
3269
3279
|
active: boolean;
|
3280
|
+
details: boolean;
|
3270
3281
|
style: import("vue").StyleValue;
|
3271
3282
|
disabled: boolean;
|
3272
3283
|
focused: boolean;
|
@@ -3294,7 +3305,7 @@ export declare const VCombobox: {
|
|
3294
3305
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3295
3306
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3296
3307
|
centerAffix?: boolean | undefined;
|
3297
|
-
} & 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">;
|
3308
|
+
} & 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">;
|
3298
3309
|
$attrs: {
|
3299
3310
|
[x: string]: unknown;
|
3300
3311
|
};
|
@@ -3325,6 +3336,7 @@ export declare const VCombobox: {
|
|
3325
3336
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
3326
3337
|
error: boolean;
|
3327
3338
|
active: boolean;
|
3339
|
+
details: boolean;
|
3328
3340
|
style: import("vue").StyleValue;
|
3329
3341
|
disabled: boolean;
|
3330
3342
|
focused: boolean;
|
@@ -3367,6 +3379,7 @@ export declare const VCombobox: {
|
|
3367
3379
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
3368
3380
|
error: boolean;
|
3369
3381
|
active: boolean;
|
3382
|
+
details: boolean;
|
3370
3383
|
style: import("vue").StyleValue;
|
3371
3384
|
disabled: boolean;
|
3372
3385
|
focused: boolean;
|
@@ -3417,6 +3430,7 @@ export declare const VCombobox: {
|
|
3417
3430
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
3418
3431
|
error: boolean;
|
3419
3432
|
active: boolean;
|
3433
|
+
details: boolean;
|
3420
3434
|
style: import("vue").StyleValue;
|
3421
3435
|
disabled: boolean;
|
3422
3436
|
focused: boolean;
|
@@ -3435,6 +3449,7 @@ export declare const VCombobox: {
|
|
3435
3449
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
3436
3450
|
error: boolean;
|
3437
3451
|
active: boolean;
|
3452
|
+
details: boolean;
|
3438
3453
|
style: import("vue").StyleValue;
|
3439
3454
|
disabled: boolean;
|
3440
3455
|
focused: boolean;
|
@@ -3465,13 +3480,13 @@ export declare const VCombobox: {
|
|
3465
3480
|
centerAffix?: boolean | undefined;
|
3466
3481
|
} & {
|
3467
3482
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
3468
|
-
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
3483
|
+
}, ("flat" | "reverse" | "variant" | "error" | "active" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
3469
3484
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
3470
3485
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
3471
3486
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
3472
3487
|
modelValue?: unknown;
|
3473
3488
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
3474
|
-
}, 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}`> & {
|
3489
|
+
}, 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}`> & {
|
3475
3490
|
_allExposed: {
|
3476
3491
|
reset: () => Promise<void>;
|
3477
3492
|
resetValidation: () => Promise<void>;
|
@@ -3495,6 +3510,7 @@ export declare const VCombobox: {
|
|
3495
3510
|
error: boolean;
|
3496
3511
|
active: boolean;
|
3497
3512
|
direction: "horizontal" | "vertical";
|
3513
|
+
details: boolean;
|
3498
3514
|
style: import("vue").StyleValue;
|
3499
3515
|
autofocus: boolean;
|
3500
3516
|
disabled: boolean;
|
@@ -3563,6 +3579,7 @@ export declare const VCombobox: {
|
|
3563
3579
|
error: boolean;
|
3564
3580
|
active: boolean;
|
3565
3581
|
direction: "horizontal" | "vertical";
|
3582
|
+
details: boolean;
|
3566
3583
|
style: import("vue").StyleValue;
|
3567
3584
|
autofocus: boolean;
|
3568
3585
|
disabled: boolean;
|
@@ -3594,6 +3611,7 @@ export declare const VCombobox: {
|
|
3594
3611
|
error: boolean;
|
3595
3612
|
active: boolean;
|
3596
3613
|
direction: "horizontal" | "vertical";
|
3614
|
+
details: boolean;
|
3597
3615
|
style: import("vue").StyleValue;
|
3598
3616
|
autofocus: boolean;
|
3599
3617
|
disabled: boolean;
|
@@ -3712,7 +3730,7 @@ export declare const VCombobox: {
|
|
3712
3730
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
3713
3731
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
3714
3732
|
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
3715
|
-
}, "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<{
|
3733
|
+
}, "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<{
|
3716
3734
|
$: import("vue").ComponentInternalInstance;
|
3717
3735
|
$data: {};
|
3718
3736
|
$props: Partial<{
|
@@ -3944,6 +3962,7 @@ export declare const VCombobox: {
|
|
3944
3962
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
3945
3963
|
error: boolean;
|
3946
3964
|
active: boolean;
|
3965
|
+
details: boolean;
|
3947
3966
|
style: import("vue").StyleValue;
|
3948
3967
|
disabled: boolean;
|
3949
3968
|
focused: boolean;
|
@@ -3962,6 +3981,7 @@ export declare const VCombobox: {
|
|
3962
3981
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
3963
3982
|
error: boolean;
|
3964
3983
|
active: boolean;
|
3984
|
+
details: boolean;
|
3965
3985
|
style: import("vue").StyleValue;
|
3966
3986
|
disabled: boolean;
|
3967
3987
|
focused: boolean;
|
@@ -3989,7 +4009,7 @@ export declare const VCombobox: {
|
|
3989
4009
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3990
4010
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3991
4011
|
centerAffix?: boolean | undefined;
|
3992
|
-
} & 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">;
|
4012
|
+
} & 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">;
|
3993
4013
|
$attrs: {
|
3994
4014
|
[x: string]: unknown;
|
3995
4015
|
};
|
@@ -4020,6 +4040,7 @@ export declare const VCombobox: {
|
|
4020
4040
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
4021
4041
|
error: boolean;
|
4022
4042
|
active: boolean;
|
4043
|
+
details: boolean;
|
4023
4044
|
style: import("vue").StyleValue;
|
4024
4045
|
disabled: boolean;
|
4025
4046
|
focused: boolean;
|
@@ -4062,6 +4083,7 @@ export declare const VCombobox: {
|
|
4062
4083
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
4063
4084
|
error: boolean;
|
4064
4085
|
active: boolean;
|
4086
|
+
details: boolean;
|
4065
4087
|
style: import("vue").StyleValue;
|
4066
4088
|
disabled: boolean;
|
4067
4089
|
focused: boolean;
|
@@ -4112,6 +4134,7 @@ export declare const VCombobox: {
|
|
4112
4134
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
4113
4135
|
error: boolean;
|
4114
4136
|
active: boolean;
|
4137
|
+
details: boolean;
|
4115
4138
|
style: import("vue").StyleValue;
|
4116
4139
|
disabled: boolean;
|
4117
4140
|
focused: boolean;
|
@@ -4130,6 +4153,7 @@ export declare const VCombobox: {
|
|
4130
4153
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
4131
4154
|
error: boolean;
|
4132
4155
|
active: boolean;
|
4156
|
+
details: boolean;
|
4133
4157
|
style: import("vue").StyleValue;
|
4134
4158
|
disabled: boolean;
|
4135
4159
|
focused: boolean;
|
@@ -4160,13 +4184,13 @@ export declare const VCombobox: {
|
|
4160
4184
|
centerAffix?: boolean | undefined;
|
4161
4185
|
} & {
|
4162
4186
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
4163
|
-
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
4187
|
+
}, ("flat" | "reverse" | "variant" | "error" | "active" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
4164
4188
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
4165
4189
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
4166
4190
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
4167
4191
|
modelValue?: unknown;
|
4168
4192
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
4169
|
-
}, 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}`> & {
|
4193
|
+
}, 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}`> & {
|
4170
4194
|
_allExposed: {
|
4171
4195
|
reset: () => Promise<void>;
|
4172
4196
|
resetValidation: () => Promise<void>;
|
@@ -4177,7 +4201,7 @@ export declare const VCombobox: {
|
|
4177
4201
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
4178
4202
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
4179
4203
|
} | {};
|
4180
|
-
}> & {} & 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}`> & {
|
4204
|
+
}> & {} & 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}`> & {
|
4181
4205
|
_allExposed: (Omit<Omit<{
|
4182
4206
|
$: import("vue").ComponentInternalInstance;
|
4183
4207
|
$data: {};
|
@@ -4410,6 +4434,7 @@ export declare const VCombobox: {
|
|
4410
4434
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
4411
4435
|
error: boolean;
|
4412
4436
|
active: boolean;
|
4437
|
+
details: boolean;
|
4413
4438
|
style: import("vue").StyleValue;
|
4414
4439
|
disabled: boolean;
|
4415
4440
|
focused: boolean;
|
@@ -4428,6 +4453,7 @@ export declare const VCombobox: {
|
|
4428
4453
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
4429
4454
|
error: boolean;
|
4430
4455
|
active: boolean;
|
4456
|
+
details: boolean;
|
4431
4457
|
style: import("vue").StyleValue;
|
4432
4458
|
disabled: boolean;
|
4433
4459
|
focused: boolean;
|
@@ -4455,7 +4481,7 @@ export declare const VCombobox: {
|
|
4455
4481
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4456
4482
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4457
4483
|
centerAffix?: boolean | undefined;
|
4458
|
-
} & 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">;
|
4484
|
+
} & 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">;
|
4459
4485
|
$attrs: {
|
4460
4486
|
[x: string]: unknown;
|
4461
4487
|
};
|
@@ -4486,6 +4512,7 @@ export declare const VCombobox: {
|
|
4486
4512
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
4487
4513
|
error: boolean;
|
4488
4514
|
active: boolean;
|
4515
|
+
details: boolean;
|
4489
4516
|
style: import("vue").StyleValue;
|
4490
4517
|
disabled: boolean;
|
4491
4518
|
focused: boolean;
|
@@ -4528,6 +4555,7 @@ export declare const VCombobox: {
|
|
4528
4555
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
4529
4556
|
error: boolean;
|
4530
4557
|
active: boolean;
|
4558
|
+
details: boolean;
|
4531
4559
|
style: import("vue").StyleValue;
|
4532
4560
|
disabled: boolean;
|
4533
4561
|
focused: boolean;
|
@@ -4578,6 +4606,7 @@ export declare const VCombobox: {
|
|
4578
4606
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
4579
4607
|
error: boolean;
|
4580
4608
|
active: boolean;
|
4609
|
+
details: boolean;
|
4581
4610
|
style: import("vue").StyleValue;
|
4582
4611
|
disabled: boolean;
|
4583
4612
|
focused: boolean;
|
@@ -4596,6 +4625,7 @@ export declare const VCombobox: {
|
|
4596
4625
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
4597
4626
|
error: boolean;
|
4598
4627
|
active: boolean;
|
4628
|
+
details: boolean;
|
4599
4629
|
style: import("vue").StyleValue;
|
4600
4630
|
disabled: boolean;
|
4601
4631
|
focused: boolean;
|
@@ -4626,13 +4656,13 @@ export declare const VCombobox: {
|
|
4626
4656
|
centerAffix?: boolean | undefined;
|
4627
4657
|
} & {
|
4628
4658
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
4629
|
-
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
4659
|
+
}, ("flat" | "reverse" | "variant" | "error" | "active" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
4630
4660
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
4631
4661
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
4632
4662
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
4633
4663
|
modelValue?: unknown;
|
4634
4664
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
4635
|
-
}, 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}`> & {
|
4665
|
+
}, 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}`> & {
|
4636
4666
|
_allExposed: {
|
4637
4667
|
reset: () => Promise<void>;
|
4638
4668
|
resetValidation: () => Promise<void>;
|
@@ -4668,6 +4698,7 @@ export declare const VCombobox: {
|
|
4668
4698
|
transition: string | boolean | (import("vue").TransitionProps & {
|
4669
4699
|
component?: import("vue").Component;
|
4670
4700
|
}) | null;
|
4701
|
+
details: boolean;
|
4671
4702
|
menu: boolean;
|
4672
4703
|
style: import("vue").StyleValue;
|
4673
4704
|
role: string;
|
@@ -4767,6 +4798,7 @@ export declare const VCombobox: {
|
|
4767
4798
|
transition: string | boolean | (import("vue").TransitionProps & {
|
4768
4799
|
component?: import("vue").Component;
|
4769
4800
|
}) | null;
|
4801
|
+
details: boolean;
|
4770
4802
|
menu: boolean;
|
4771
4803
|
style: import("vue").StyleValue;
|
4772
4804
|
role: string;
|
@@ -5247,6 +5279,7 @@ export declare const VCombobox: {
|
|
5247
5279
|
error: boolean;
|
5248
5280
|
active: boolean;
|
5249
5281
|
direction: "horizontal" | "vertical";
|
5282
|
+
details: boolean;
|
5250
5283
|
style: import("vue").StyleValue;
|
5251
5284
|
autofocus: boolean;
|
5252
5285
|
disabled: boolean;
|
@@ -5278,6 +5311,7 @@ export declare const VCombobox: {
|
|
5278
5311
|
error: boolean;
|
5279
5312
|
active: boolean;
|
5280
5313
|
direction: "horizontal" | "vertical";
|
5314
|
+
details: boolean;
|
5281
5315
|
style: import("vue").StyleValue;
|
5282
5316
|
autofocus: boolean;
|
5283
5317
|
disabled: boolean;
|
@@ -5391,7 +5425,7 @@ export declare const VCombobox: {
|
|
5391
5425
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
5392
5426
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
5393
5427
|
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
5394
|
-
} & 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">;
|
5428
|
+
} & 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">;
|
5395
5429
|
$attrs: {
|
5396
5430
|
[x: string]: unknown;
|
5397
5431
|
};
|
@@ -5429,6 +5463,7 @@ export declare const VCombobox: {
|
|
5429
5463
|
error: boolean;
|
5430
5464
|
active: boolean;
|
5431
5465
|
direction: "horizontal" | "vertical";
|
5466
|
+
details: boolean;
|
5432
5467
|
style: import("vue").StyleValue;
|
5433
5468
|
autofocus: boolean;
|
5434
5469
|
disabled: boolean;
|
@@ -5779,6 +5814,7 @@ export declare const VCombobox: {
|
|
5779
5814
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
5780
5815
|
error: boolean;
|
5781
5816
|
active: boolean;
|
5817
|
+
details: boolean;
|
5782
5818
|
style: import("vue").StyleValue;
|
5783
5819
|
disabled: boolean;
|
5784
5820
|
focused: boolean;
|
@@ -5797,6 +5833,7 @@ export declare const VCombobox: {
|
|
5797
5833
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
5798
5834
|
error: boolean;
|
5799
5835
|
active: boolean;
|
5836
|
+
details: boolean;
|
5800
5837
|
style: import("vue").StyleValue;
|
5801
5838
|
disabled: boolean;
|
5802
5839
|
focused: boolean;
|
@@ -5824,7 +5861,7 @@ export declare const VCombobox: {
|
|
5824
5861
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5825
5862
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5826
5863
|
centerAffix?: boolean | undefined;
|
5827
|
-
} & 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">;
|
5864
|
+
} & 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">;
|
5828
5865
|
$attrs: {
|
5829
5866
|
[x: string]: unknown;
|
5830
5867
|
};
|
@@ -5855,6 +5892,7 @@ export declare const VCombobox: {
|
|
5855
5892
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
5856
5893
|
error: boolean;
|
5857
5894
|
active: boolean;
|
5895
|
+
details: boolean;
|
5858
5896
|
style: import("vue").StyleValue;
|
5859
5897
|
disabled: boolean;
|
5860
5898
|
focused: boolean;
|
@@ -5897,6 +5935,7 @@ export declare const VCombobox: {
|
|
5897
5935
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
5898
5936
|
error: boolean;
|
5899
5937
|
active: boolean;
|
5938
|
+
details: boolean;
|
5900
5939
|
style: import("vue").StyleValue;
|
5901
5940
|
disabled: boolean;
|
5902
5941
|
focused: boolean;
|
@@ -5947,6 +5986,7 @@ export declare const VCombobox: {
|
|
5947
5986
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
5948
5987
|
error: boolean;
|
5949
5988
|
active: boolean;
|
5989
|
+
details: boolean;
|
5950
5990
|
style: import("vue").StyleValue;
|
5951
5991
|
disabled: boolean;
|
5952
5992
|
focused: boolean;
|
@@ -5965,6 +6005,7 @@ export declare const VCombobox: {
|
|
5965
6005
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
5966
6006
|
error: boolean;
|
5967
6007
|
active: boolean;
|
6008
|
+
details: boolean;
|
5968
6009
|
style: import("vue").StyleValue;
|
5969
6010
|
disabled: boolean;
|
5970
6011
|
focused: boolean;
|
@@ -5995,13 +6036,13 @@ export declare const VCombobox: {
|
|
5995
6036
|
centerAffix?: boolean | undefined;
|
5996
6037
|
} & {
|
5997
6038
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
5998
|
-
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
6039
|
+
}, ("flat" | "reverse" | "variant" | "error" | "active" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
5999
6040
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
6000
6041
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
6001
6042
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
6002
6043
|
modelValue?: unknown;
|
6003
6044
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
6004
|
-
}, 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}`> & {
|
6045
|
+
}, 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}`> & {
|
6005
6046
|
_allExposed: {
|
6006
6047
|
reset: () => Promise<void>;
|
6007
6048
|
resetValidation: () => Promise<void>;
|
@@ -6025,6 +6066,7 @@ export declare const VCombobox: {
|
|
6025
6066
|
error: boolean;
|
6026
6067
|
active: boolean;
|
6027
6068
|
direction: "horizontal" | "vertical";
|
6069
|
+
details: boolean;
|
6028
6070
|
style: import("vue").StyleValue;
|
6029
6071
|
autofocus: boolean;
|
6030
6072
|
disabled: boolean;
|
@@ -6093,6 +6135,7 @@ export declare const VCombobox: {
|
|
6093
6135
|
error: boolean;
|
6094
6136
|
active: boolean;
|
6095
6137
|
direction: "horizontal" | "vertical";
|
6138
|
+
details: boolean;
|
6096
6139
|
style: import("vue").StyleValue;
|
6097
6140
|
autofocus: boolean;
|
6098
6141
|
disabled: boolean;
|
@@ -6124,6 +6167,7 @@ export declare const VCombobox: {
|
|
6124
6167
|
error: boolean;
|
6125
6168
|
active: boolean;
|
6126
6169
|
direction: "horizontal" | "vertical";
|
6170
|
+
details: boolean;
|
6127
6171
|
style: import("vue").StyleValue;
|
6128
6172
|
autofocus: boolean;
|
6129
6173
|
disabled: boolean;
|
@@ -6242,7 +6286,7 @@ export declare const VCombobox: {
|
|
6242
6286
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
6243
6287
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
6244
6288
|
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
6245
|
-
}, "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<{
|
6289
|
+
}, "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<{
|
6246
6290
|
$: import("vue").ComponentInternalInstance;
|
6247
6291
|
$data: {};
|
6248
6292
|
$props: Partial<{
|
@@ -6474,6 +6518,7 @@ export declare const VCombobox: {
|
|
6474
6518
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
6475
6519
|
error: boolean;
|
6476
6520
|
active: boolean;
|
6521
|
+
details: boolean;
|
6477
6522
|
style: import("vue").StyleValue;
|
6478
6523
|
disabled: boolean;
|
6479
6524
|
focused: boolean;
|
@@ -6492,6 +6537,7 @@ export declare const VCombobox: {
|
|
6492
6537
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
6493
6538
|
error: boolean;
|
6494
6539
|
active: boolean;
|
6540
|
+
details: boolean;
|
6495
6541
|
style: import("vue").StyleValue;
|
6496
6542
|
disabled: boolean;
|
6497
6543
|
focused: boolean;
|
@@ -6519,7 +6565,7 @@ export declare const VCombobox: {
|
|
6519
6565
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6520
6566
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6521
6567
|
centerAffix?: boolean | undefined;
|
6522
|
-
} & 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">;
|
6568
|
+
} & 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">;
|
6523
6569
|
$attrs: {
|
6524
6570
|
[x: string]: unknown;
|
6525
6571
|
};
|
@@ -6550,6 +6596,7 @@ export declare const VCombobox: {
|
|
6550
6596
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
6551
6597
|
error: boolean;
|
6552
6598
|
active: boolean;
|
6599
|
+
details: boolean;
|
6553
6600
|
style: import("vue").StyleValue;
|
6554
6601
|
disabled: boolean;
|
6555
6602
|
focused: boolean;
|
@@ -6592,6 +6639,7 @@ export declare const VCombobox: {
|
|
6592
6639
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
6593
6640
|
error: boolean;
|
6594
6641
|
active: boolean;
|
6642
|
+
details: boolean;
|
6595
6643
|
style: import("vue").StyleValue;
|
6596
6644
|
disabled: boolean;
|
6597
6645
|
focused: boolean;
|
@@ -6642,6 +6690,7 @@ export declare const VCombobox: {
|
|
6642
6690
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
6643
6691
|
error: boolean;
|
6644
6692
|
active: boolean;
|
6693
|
+
details: boolean;
|
6645
6694
|
style: import("vue").StyleValue;
|
6646
6695
|
disabled: boolean;
|
6647
6696
|
focused: boolean;
|
@@ -6660,6 +6709,7 @@ export declare const VCombobox: {
|
|
6660
6709
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
6661
6710
|
error: boolean;
|
6662
6711
|
active: boolean;
|
6712
|
+
details: boolean;
|
6663
6713
|
style: import("vue").StyleValue;
|
6664
6714
|
disabled: boolean;
|
6665
6715
|
focused: boolean;
|
@@ -6690,13 +6740,13 @@ export declare const VCombobox: {
|
|
6690
6740
|
centerAffix?: boolean | undefined;
|
6691
6741
|
} & {
|
6692
6742
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
6693
|
-
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
6743
|
+
}, ("flat" | "reverse" | "variant" | "error" | "active" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
6694
6744
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
6695
6745
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
6696
6746
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
6697
6747
|
modelValue?: unknown;
|
6698
6748
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
6699
|
-
}, 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}`> & {
|
6749
|
+
}, 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}`> & {
|
6700
6750
|
_allExposed: {
|
6701
6751
|
reset: () => Promise<void>;
|
6702
6752
|
resetValidation: () => Promise<void>;
|
@@ -6707,7 +6757,7 @@ export declare const VCombobox: {
|
|
6707
6757
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
6708
6758
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
6709
6759
|
} | {};
|
6710
|
-
}> & {} & 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}`> & {
|
6760
|
+
}> & {} & 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}`> & {
|
6711
6761
|
_allExposed: (Omit<Omit<{
|
6712
6762
|
$: import("vue").ComponentInternalInstance;
|
6713
6763
|
$data: {};
|
@@ -6940,6 +6990,7 @@ export declare const VCombobox: {
|
|
6940
6990
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
6941
6991
|
error: boolean;
|
6942
6992
|
active: boolean;
|
6993
|
+
details: boolean;
|
6943
6994
|
style: import("vue").StyleValue;
|
6944
6995
|
disabled: boolean;
|
6945
6996
|
focused: boolean;
|
@@ -6958,6 +7009,7 @@ export declare const VCombobox: {
|
|
6958
7009
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
6959
7010
|
error: boolean;
|
6960
7011
|
active: boolean;
|
7012
|
+
details: boolean;
|
6961
7013
|
style: import("vue").StyleValue;
|
6962
7014
|
disabled: boolean;
|
6963
7015
|
focused: boolean;
|
@@ -6985,7 +7037,7 @@ export declare const VCombobox: {
|
|
6985
7037
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6986
7038
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6987
7039
|
centerAffix?: boolean | undefined;
|
6988
|
-
} & 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">;
|
7040
|
+
} & 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">;
|
6989
7041
|
$attrs: {
|
6990
7042
|
[x: string]: unknown;
|
6991
7043
|
};
|
@@ -7016,6 +7068,7 @@ export declare const VCombobox: {
|
|
7016
7068
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
7017
7069
|
error: boolean;
|
7018
7070
|
active: boolean;
|
7071
|
+
details: boolean;
|
7019
7072
|
style: import("vue").StyleValue;
|
7020
7073
|
disabled: boolean;
|
7021
7074
|
focused: boolean;
|
@@ -7058,6 +7111,7 @@ export declare const VCombobox: {
|
|
7058
7111
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
7059
7112
|
error: boolean;
|
7060
7113
|
active: boolean;
|
7114
|
+
details: boolean;
|
7061
7115
|
style: import("vue").StyleValue;
|
7062
7116
|
disabled: boolean;
|
7063
7117
|
focused: boolean;
|
@@ -7108,6 +7162,7 @@ export declare const VCombobox: {
|
|
7108
7162
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
7109
7163
|
error: boolean;
|
7110
7164
|
active: boolean;
|
7165
|
+
details: boolean;
|
7111
7166
|
style: import("vue").StyleValue;
|
7112
7167
|
disabled: boolean;
|
7113
7168
|
focused: boolean;
|
@@ -7126,6 +7181,7 @@ export declare const VCombobox: {
|
|
7126
7181
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
7127
7182
|
error: boolean;
|
7128
7183
|
active: boolean;
|
7184
|
+
details: boolean;
|
7129
7185
|
style: import("vue").StyleValue;
|
7130
7186
|
disabled: boolean;
|
7131
7187
|
focused: boolean;
|
@@ -7156,13 +7212,13 @@ export declare const VCombobox: {
|
|
7156
7212
|
centerAffix?: boolean | undefined;
|
7157
7213
|
} & {
|
7158
7214
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
7159
|
-
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
7215
|
+
}, ("flat" | "reverse" | "variant" | "error" | "active" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
7160
7216
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
7161
7217
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
7162
7218
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
7163
7219
|
modelValue?: unknown;
|
7164
7220
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
7165
|
-
}, 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}`> & {
|
7221
|
+
}, 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}`> & {
|
7166
7222
|
_allExposed: {
|
7167
7223
|
reset: () => Promise<void>;
|
7168
7224
|
resetValidation: () => Promise<void>;
|
@@ -7193,6 +7249,7 @@ export declare const VCombobox: {
|
|
7193
7249
|
transition: string | boolean | (import("vue").TransitionProps & {
|
7194
7250
|
component?: import("vue").Component;
|
7195
7251
|
}) | null;
|
7252
|
+
details: boolean;
|
7196
7253
|
menu: boolean;
|
7197
7254
|
style: import("vue").StyleValue;
|
7198
7255
|
role: string;
|
@@ -7249,6 +7306,7 @@ export declare const VCombobox: {
|
|
7249
7306
|
transition: string | boolean | (import("vue").TransitionProps & {
|
7250
7307
|
component?: import("vue").Component;
|
7251
7308
|
}) | null;
|
7309
|
+
details: boolean;
|
7252
7310
|
menu: boolean;
|
7253
7311
|
style: import("vue").StyleValue;
|
7254
7312
|
role: string;
|
@@ -7729,6 +7787,7 @@ export declare const VCombobox: {
|
|
7729
7787
|
error: boolean;
|
7730
7788
|
active: boolean;
|
7731
7789
|
direction: "horizontal" | "vertical";
|
7790
|
+
details: boolean;
|
7732
7791
|
style: import("vue").StyleValue;
|
7733
7792
|
autofocus: boolean;
|
7734
7793
|
disabled: boolean;
|
@@ -7760,6 +7819,7 @@ export declare const VCombobox: {
|
|
7760
7819
|
error: boolean;
|
7761
7820
|
active: boolean;
|
7762
7821
|
direction: "horizontal" | "vertical";
|
7822
|
+
details: boolean;
|
7763
7823
|
style: import("vue").StyleValue;
|
7764
7824
|
autofocus: boolean;
|
7765
7825
|
disabled: boolean;
|
@@ -7873,7 +7933,7 @@ export declare const VCombobox: {
|
|
7873
7933
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
7874
7934
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
7875
7935
|
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
7876
|
-
} & 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">;
|
7936
|
+
} & 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">;
|
7877
7937
|
$attrs: {
|
7878
7938
|
[x: string]: unknown;
|
7879
7939
|
};
|
@@ -7911,6 +7971,7 @@ export declare const VCombobox: {
|
|
7911
7971
|
error: boolean;
|
7912
7972
|
active: boolean;
|
7913
7973
|
direction: "horizontal" | "vertical";
|
7974
|
+
details: boolean;
|
7914
7975
|
style: import("vue").StyleValue;
|
7915
7976
|
autofocus: boolean;
|
7916
7977
|
disabled: boolean;
|
@@ -8261,6 +8322,7 @@ export declare const VCombobox: {
|
|
8261
8322
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
8262
8323
|
error: boolean;
|
8263
8324
|
active: boolean;
|
8325
|
+
details: boolean;
|
8264
8326
|
style: import("vue").StyleValue;
|
8265
8327
|
disabled: boolean;
|
8266
8328
|
focused: boolean;
|
@@ -8279,6 +8341,7 @@ export declare const VCombobox: {
|
|
8279
8341
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
8280
8342
|
error: boolean;
|
8281
8343
|
active: boolean;
|
8344
|
+
details: boolean;
|
8282
8345
|
style: import("vue").StyleValue;
|
8283
8346
|
disabled: boolean;
|
8284
8347
|
focused: boolean;
|
@@ -8306,7 +8369,7 @@ export declare const VCombobox: {
|
|
8306
8369
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8307
8370
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8308
8371
|
centerAffix?: boolean | undefined;
|
8309
|
-
} & 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">;
|
8372
|
+
} & 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">;
|
8310
8373
|
$attrs: {
|
8311
8374
|
[x: string]: unknown;
|
8312
8375
|
};
|
@@ -8337,6 +8400,7 @@ export declare const VCombobox: {
|
|
8337
8400
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
8338
8401
|
error: boolean;
|
8339
8402
|
active: boolean;
|
8403
|
+
details: boolean;
|
8340
8404
|
style: import("vue").StyleValue;
|
8341
8405
|
disabled: boolean;
|
8342
8406
|
focused: boolean;
|
@@ -8379,6 +8443,7 @@ export declare const VCombobox: {
|
|
8379
8443
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
8380
8444
|
error: boolean;
|
8381
8445
|
active: boolean;
|
8446
|
+
details: boolean;
|
8382
8447
|
style: import("vue").StyleValue;
|
8383
8448
|
disabled: boolean;
|
8384
8449
|
focused: boolean;
|
@@ -8429,6 +8494,7 @@ export declare const VCombobox: {
|
|
8429
8494
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
8430
8495
|
error: boolean;
|
8431
8496
|
active: boolean;
|
8497
|
+
details: boolean;
|
8432
8498
|
style: import("vue").StyleValue;
|
8433
8499
|
disabled: boolean;
|
8434
8500
|
focused: boolean;
|
@@ -8447,6 +8513,7 @@ export declare const VCombobox: {
|
|
8447
8513
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
8448
8514
|
error: boolean;
|
8449
8515
|
active: boolean;
|
8516
|
+
details: boolean;
|
8450
8517
|
style: import("vue").StyleValue;
|
8451
8518
|
disabled: boolean;
|
8452
8519
|
focused: boolean;
|
@@ -8477,13 +8544,13 @@ export declare const VCombobox: {
|
|
8477
8544
|
centerAffix?: boolean | undefined;
|
8478
8545
|
} & {
|
8479
8546
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
8480
|
-
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
8547
|
+
}, ("flat" | "reverse" | "variant" | "error" | "active" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
8481
8548
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
8482
8549
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
8483
8550
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
8484
8551
|
modelValue?: unknown;
|
8485
8552
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
8486
|
-
}, 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}`> & {
|
8553
|
+
}, 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}`> & {
|
8487
8554
|
_allExposed: {
|
8488
8555
|
reset: () => Promise<void>;
|
8489
8556
|
resetValidation: () => Promise<void>;
|
@@ -8507,6 +8574,7 @@ export declare const VCombobox: {
|
|
8507
8574
|
error: boolean;
|
8508
8575
|
active: boolean;
|
8509
8576
|
direction: "horizontal" | "vertical";
|
8577
|
+
details: boolean;
|
8510
8578
|
style: import("vue").StyleValue;
|
8511
8579
|
autofocus: boolean;
|
8512
8580
|
disabled: boolean;
|
@@ -8575,6 +8643,7 @@ export declare const VCombobox: {
|
|
8575
8643
|
error: boolean;
|
8576
8644
|
active: boolean;
|
8577
8645
|
direction: "horizontal" | "vertical";
|
8646
|
+
details: boolean;
|
8578
8647
|
style: import("vue").StyleValue;
|
8579
8648
|
autofocus: boolean;
|
8580
8649
|
disabled: boolean;
|
@@ -8606,6 +8675,7 @@ export declare const VCombobox: {
|
|
8606
8675
|
error: boolean;
|
8607
8676
|
active: boolean;
|
8608
8677
|
direction: "horizontal" | "vertical";
|
8678
|
+
details: boolean;
|
8609
8679
|
style: import("vue").StyleValue;
|
8610
8680
|
autofocus: boolean;
|
8611
8681
|
disabled: boolean;
|
@@ -8724,7 +8794,7 @@ export declare const VCombobox: {
|
|
8724
8794
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
8725
8795
|
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
8726
8796
|
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
8727
|
-
}, "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<{
|
8797
|
+
}, "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<{
|
8728
8798
|
$: import("vue").ComponentInternalInstance;
|
8729
8799
|
$data: {};
|
8730
8800
|
$props: Partial<{
|
@@ -8956,6 +9026,7 @@ export declare const VCombobox: {
|
|
8956
9026
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
8957
9027
|
error: boolean;
|
8958
9028
|
active: boolean;
|
9029
|
+
details: boolean;
|
8959
9030
|
style: import("vue").StyleValue;
|
8960
9031
|
disabled: boolean;
|
8961
9032
|
focused: boolean;
|
@@ -8974,6 +9045,7 @@ export declare const VCombobox: {
|
|
8974
9045
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
8975
9046
|
error: boolean;
|
8976
9047
|
active: boolean;
|
9048
|
+
details: boolean;
|
8977
9049
|
style: import("vue").StyleValue;
|
8978
9050
|
disabled: boolean;
|
8979
9051
|
focused: boolean;
|
@@ -9001,7 +9073,7 @@ export declare const VCombobox: {
|
|
9001
9073
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9002
9074
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9003
9075
|
centerAffix?: boolean | undefined;
|
9004
|
-
} & 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">;
|
9076
|
+
} & 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">;
|
9005
9077
|
$attrs: {
|
9006
9078
|
[x: string]: unknown;
|
9007
9079
|
};
|
@@ -9032,6 +9104,7 @@ export declare const VCombobox: {
|
|
9032
9104
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
9033
9105
|
error: boolean;
|
9034
9106
|
active: boolean;
|
9107
|
+
details: boolean;
|
9035
9108
|
style: import("vue").StyleValue;
|
9036
9109
|
disabled: boolean;
|
9037
9110
|
focused: boolean;
|
@@ -9074,6 +9147,7 @@ export declare const VCombobox: {
|
|
9074
9147
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
9075
9148
|
error: boolean;
|
9076
9149
|
active: boolean;
|
9150
|
+
details: boolean;
|
9077
9151
|
style: import("vue").StyleValue;
|
9078
9152
|
disabled: boolean;
|
9079
9153
|
focused: boolean;
|
@@ -9124,6 +9198,7 @@ export declare const VCombobox: {
|
|
9124
9198
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
9125
9199
|
error: boolean;
|
9126
9200
|
active: boolean;
|
9201
|
+
details: boolean;
|
9127
9202
|
style: import("vue").StyleValue;
|
9128
9203
|
disabled: boolean;
|
9129
9204
|
focused: boolean;
|
@@ -9142,6 +9217,7 @@ export declare const VCombobox: {
|
|
9142
9217
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
9143
9218
|
error: boolean;
|
9144
9219
|
active: boolean;
|
9220
|
+
details: boolean;
|
9145
9221
|
style: import("vue").StyleValue;
|
9146
9222
|
disabled: boolean;
|
9147
9223
|
focused: boolean;
|
@@ -9172,13 +9248,13 @@ export declare const VCombobox: {
|
|
9172
9248
|
centerAffix?: boolean | undefined;
|
9173
9249
|
} & {
|
9174
9250
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
9175
|
-
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
9251
|
+
}, ("flat" | "reverse" | "variant" | "error" | "active" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
9176
9252
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
9177
9253
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
9178
9254
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
9179
9255
|
modelValue?: unknown;
|
9180
9256
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
9181
|
-
}, 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}`> & {
|
9257
|
+
}, 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}`> & {
|
9182
9258
|
_allExposed: {
|
9183
9259
|
reset: () => Promise<void>;
|
9184
9260
|
resetValidation: () => Promise<void>;
|
@@ -9189,7 +9265,7 @@ export declare const VCombobox: {
|
|
9189
9265
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
9190
9266
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
9191
9267
|
} | {};
|
9192
|
-
}> & {} & 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}`> & {
|
9268
|
+
}> & {} & 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}`> & {
|
9193
9269
|
_allExposed: (Omit<Omit<{
|
9194
9270
|
$: import("vue").ComponentInternalInstance;
|
9195
9271
|
$data: {};
|
@@ -9422,6 +9498,7 @@ export declare const VCombobox: {
|
|
9422
9498
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
9423
9499
|
error: boolean;
|
9424
9500
|
active: boolean;
|
9501
|
+
details: boolean;
|
9425
9502
|
style: import("vue").StyleValue;
|
9426
9503
|
disabled: boolean;
|
9427
9504
|
focused: boolean;
|
@@ -9440,6 +9517,7 @@ export declare const VCombobox: {
|
|
9440
9517
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
9441
9518
|
error: boolean;
|
9442
9519
|
active: boolean;
|
9520
|
+
details: boolean;
|
9443
9521
|
style: import("vue").StyleValue;
|
9444
9522
|
disabled: boolean;
|
9445
9523
|
focused: boolean;
|
@@ -9467,7 +9545,7 @@ export declare const VCombobox: {
|
|
9467
9545
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9468
9546
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9469
9547
|
centerAffix?: boolean | undefined;
|
9470
|
-
} & 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">;
|
9548
|
+
} & 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">;
|
9471
9549
|
$attrs: {
|
9472
9550
|
[x: string]: unknown;
|
9473
9551
|
};
|
@@ -9498,6 +9576,7 @@ export declare const VCombobox: {
|
|
9498
9576
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
9499
9577
|
error: boolean;
|
9500
9578
|
active: boolean;
|
9579
|
+
details: boolean;
|
9501
9580
|
style: import("vue").StyleValue;
|
9502
9581
|
disabled: boolean;
|
9503
9582
|
focused: boolean;
|
@@ -9540,6 +9619,7 @@ export declare const VCombobox: {
|
|
9540
9619
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
9541
9620
|
error: boolean;
|
9542
9621
|
active: boolean;
|
9622
|
+
details: boolean;
|
9543
9623
|
style: import("vue").StyleValue;
|
9544
9624
|
disabled: boolean;
|
9545
9625
|
focused: boolean;
|
@@ -9590,6 +9670,7 @@ export declare const VCombobox: {
|
|
9590
9670
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
9591
9671
|
error: boolean;
|
9592
9672
|
active: boolean;
|
9673
|
+
details: boolean;
|
9593
9674
|
style: import("vue").StyleValue;
|
9594
9675
|
disabled: boolean;
|
9595
9676
|
focused: boolean;
|
@@ -9608,6 +9689,7 @@ export declare const VCombobox: {
|
|
9608
9689
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
9609
9690
|
error: boolean;
|
9610
9691
|
active: boolean;
|
9692
|
+
details: boolean;
|
9611
9693
|
style: import("vue").StyleValue;
|
9612
9694
|
disabled: boolean;
|
9613
9695
|
focused: boolean;
|
@@ -9638,13 +9720,13 @@ export declare const VCombobox: {
|
|
9638
9720
|
centerAffix?: boolean | undefined;
|
9639
9721
|
} & {
|
9640
9722
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
9641
|
-
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
9723
|
+
}, ("flat" | "reverse" | "variant" | "error" | "active" | "details" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
9642
9724
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
9643
9725
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
9644
9726
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
9645
9727
|
modelValue?: unknown;
|
9646
9728
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
9647
|
-
}, 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}`> & {
|
9729
|
+
}, 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}`> & {
|
9648
9730
|
_allExposed: {
|
9649
9731
|
reset: () => Promise<void>;
|
9650
9732
|
resetValidation: () => Promise<void>;
|
@@ -9680,6 +9762,7 @@ export declare const VCombobox: {
|
|
9680
9762
|
transition: string | boolean | (import("vue").TransitionProps & {
|
9681
9763
|
component?: import("vue").Component;
|
9682
9764
|
}) | null;
|
9765
|
+
details: boolean;
|
9683
9766
|
menu: boolean;
|
9684
9767
|
style: import("vue").StyleValue;
|
9685
9768
|
role: string;
|
@@ -9830,6 +9913,7 @@ export declare const VCombobox: {
|
|
9830
9913
|
maxWidth: (StringConstructor | NumberConstructor)[];
|
9831
9914
|
minWidth: (StringConstructor | NumberConstructor)[];
|
9832
9915
|
loading: (StringConstructor | BooleanConstructor)[];
|
9916
|
+
details: BooleanConstructor;
|
9833
9917
|
label: StringConstructor;
|
9834
9918
|
style: {
|
9835
9919
|
type: PropType<import("vue").StyleValue>;
|
@@ -10038,6 +10122,7 @@ export declare const VCombobox: {
|
|
10038
10122
|
maxWidth: (StringConstructor | NumberConstructor)[];
|
10039
10123
|
minWidth: (StringConstructor | NumberConstructor)[];
|
10040
10124
|
loading: (StringConstructor | BooleanConstructor)[];
|
10125
|
+
details: BooleanConstructor;
|
10041
10126
|
label: StringConstructor;
|
10042
10127
|
style: {
|
10043
10128
|
type: PropType<import("vue").StyleValue>;
|