vuetify 3.10.10 → 3.10.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/json/attributes.json +3270 -3310
- package/dist/json/importMap-labs.json +22 -22
- package/dist/json/importMap.json +170 -170
- package/dist/json/tags.json +0 -10
- package/dist/json/web-types.json +6161 -6261
- package/dist/vuetify-labs.cjs +23 -10
- package/dist/vuetify-labs.css +4368 -4362
- package/dist/vuetify-labs.d.ts +465 -653
- package/dist/vuetify-labs.esm.js +23 -10
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +23 -10
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +23 -10
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +3098 -3092
- package/dist/vuetify.d.ts +339 -467
- package/dist/vuetify.esm.js +23 -10
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +23 -10
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +25 -25
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.d.ts +63 -94
- package/lib/components/VCombobox/VCombobox.d.ts +63 -94
- package/lib/components/VField/VField.css +6 -1
- package/lib/components/VField/VField.d.ts +8 -13
- package/lib/components/VField/VField.js +1 -1
- package/lib/components/VField/VField.js.map +1 -1
- package/lib/components/VField/VField.sass +5 -0
- package/lib/components/VFileInput/VFileInput.d.ts +0 -13
- package/lib/components/VNumberInput/VNumberInput.d.ts +63 -89
- package/lib/components/VSelect/VSelect.d.ts +63 -94
- package/lib/components/VSelect/VSelect.js +14 -3
- package/lib/components/VSelect/VSelect.js.map +1 -1
- package/lib/components/VTabs/VTab.css +3 -2
- package/lib/components/VTabs/VTab.sass +2 -1
- package/lib/components/VTextField/VTextField.d.ts +18 -31
- package/lib/components/VTextarea/VTextarea.d.ts +0 -13
- package/lib/components/VWindow/VWindow.js +2 -2
- package/lib/components/VWindow/VWindow.js.map +1 -1
- package/lib/composables/autocomplete.js +1 -0
- package/lib/composables/autocomplete.js.map +1 -1
- package/lib/directives/tooltip/index.js +5 -2
- package/lib/directives/tooltip/index.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +61 -61
- package/lib/framework.js +1 -1
- package/lib/labs/VColorInput/VColorInput.d.ts +0 -13
- package/lib/labs/VDateInput/VDateInput.d.ts +63 -94
- package/lib/labs/VMaskInput/VMaskInput.d.ts +63 -94
- package/lib/util/helpers.js +1 -1
- package/lib/util/helpers.js.map +1 -1
- package/package.json +1 -1
|
@@ -63,7 +63,6 @@ export declare const makeVAutocompleteProps: <Defaults extends {
|
|
|
63
63
|
centerAffix?: unknown;
|
|
64
64
|
color?: unknown;
|
|
65
65
|
baseColor?: unknown;
|
|
66
|
-
details?: unknown;
|
|
67
66
|
disabled?: unknown;
|
|
68
67
|
glow?: unknown;
|
|
69
68
|
error?: unknown;
|
|
@@ -440,10 +439,6 @@ export declare const makeVAutocompleteProps: <Defaults extends {
|
|
|
440
439
|
type: PropType<unknown extends Defaults["baseColor"] ? string : string | Defaults["baseColor"]>;
|
|
441
440
|
default: unknown extends Defaults["baseColor"] ? string : string | Defaults["baseColor"];
|
|
442
441
|
};
|
|
443
|
-
details: unknown extends Defaults["details"] ? BooleanConstructor : {
|
|
444
|
-
type: PropType<unknown extends Defaults["details"] ? boolean : boolean | Defaults["details"]>;
|
|
445
|
-
default: unknown extends Defaults["details"] ? boolean : boolean | Defaults["details"];
|
|
446
|
-
};
|
|
447
442
|
disabled: unknown extends Defaults["disabled"] ? {
|
|
448
443
|
type: BooleanConstructor;
|
|
449
444
|
default: null;
|
|
@@ -3410,7 +3405,6 @@ export declare const VAutocomplete: {
|
|
|
3410
3405
|
clearable: boolean;
|
|
3411
3406
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
3412
3407
|
active: boolean;
|
|
3413
|
-
details: boolean;
|
|
3414
3408
|
disabled: boolean;
|
|
3415
3409
|
glow: boolean;
|
|
3416
3410
|
error: boolean;
|
|
@@ -3964,7 +3958,6 @@ export declare const VAutocomplete: {
|
|
|
3964
3958
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
3965
3959
|
active: boolean;
|
|
3966
3960
|
centerAffix: boolean;
|
|
3967
|
-
details: boolean;
|
|
3968
3961
|
dirty: boolean;
|
|
3969
3962
|
disabled: boolean;
|
|
3970
3963
|
glow: boolean;
|
|
@@ -4056,7 +4049,6 @@ export declare const VAutocomplete: {
|
|
|
4056
4049
|
centerAffix?: boolean | undefined;
|
|
4057
4050
|
color?: string | undefined;
|
|
4058
4051
|
baseColor?: string | undefined;
|
|
4059
|
-
details: boolean;
|
|
4060
4052
|
dirty: boolean;
|
|
4061
4053
|
disabled: boolean;
|
|
4062
4054
|
glow: boolean;
|
|
@@ -4103,7 +4095,7 @@ export declare const VAutocomplete: {
|
|
|
4103
4095
|
"v-slot:message"?: false | ((arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNodeChild) | undefined;
|
|
4104
4096
|
"v-slot:prepend"?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
4105
4097
|
"v-slot:prepend-inner"?: false | ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
4106
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "active" | "autofocus" | "centerAffix" | "clearIcon" | "clearable" | "density" | "
|
|
4098
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "active" | "autofocus" | "centerAffix" | "clearIcon" | "clearable" | "density" | "direction" | "dirty" | "disabled" | "error" | "errorMessages" | "flat" | "focused" | "glow" | "hideSpinButtons" | "maxErrors" | "messages" | "persistentClear" | "persistentCounter" | "persistentHint" | "persistentPlaceholder" | "readonly" | "reverse" | "rounded" | "rules" | "singleLine" | "style" | "tile" | "type" | "variant">;
|
|
4107
4099
|
$attrs: {
|
|
4108
4100
|
[x: string]: unknown;
|
|
4109
4101
|
};
|
|
@@ -4171,7 +4163,6 @@ export declare const VAutocomplete: {
|
|
|
4171
4163
|
clearable: boolean;
|
|
4172
4164
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
4173
4165
|
active: boolean;
|
|
4174
|
-
details: boolean;
|
|
4175
4166
|
dirty: boolean;
|
|
4176
4167
|
disabled: boolean;
|
|
4177
4168
|
glow: boolean;
|
|
@@ -4540,7 +4531,6 @@ export declare const VAutocomplete: {
|
|
|
4540
4531
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
4541
4532
|
active: boolean;
|
|
4542
4533
|
centerAffix: boolean;
|
|
4543
|
-
details: boolean;
|
|
4544
4534
|
dirty: boolean;
|
|
4545
4535
|
disabled: boolean;
|
|
4546
4536
|
glow: boolean;
|
|
@@ -4550,6 +4540,7 @@ export declare const VAutocomplete: {
|
|
|
4550
4540
|
reverse: boolean;
|
|
4551
4541
|
singleLine: boolean;
|
|
4552
4542
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
4543
|
+
details: boolean;
|
|
4553
4544
|
}> & Omit<{
|
|
4554
4545
|
theme?: string | undefined;
|
|
4555
4546
|
class?: any;
|
|
@@ -4567,7 +4558,6 @@ export declare const VAutocomplete: {
|
|
|
4567
4558
|
centerAffix?: boolean | undefined;
|
|
4568
4559
|
color?: string | undefined;
|
|
4569
4560
|
baseColor?: string | undefined;
|
|
4570
|
-
details: boolean;
|
|
4571
4561
|
dirty: boolean;
|
|
4572
4562
|
disabled: boolean;
|
|
4573
4563
|
glow: boolean;
|
|
@@ -4584,6 +4574,7 @@ export declare const VAutocomplete: {
|
|
|
4584
4574
|
"onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
4585
4575
|
"onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
4586
4576
|
id?: string | undefined;
|
|
4577
|
+
details: boolean;
|
|
4587
4578
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "active" | "centerAffix" | "clearIcon" | "clearable" | "details" | "dirty" | "disabled" | "error" | "flat" | "focused" | "glow" | "persistentClear" | "reverse" | "rounded" | "singleLine" | "style" | "tile" | "variant">;
|
|
4588
4579
|
$attrs: {
|
|
4589
4580
|
[x: string]: unknown;
|
|
@@ -4628,7 +4619,6 @@ export declare const VAutocomplete: {
|
|
|
4628
4619
|
clearable: boolean;
|
|
4629
4620
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
4630
4621
|
active: boolean;
|
|
4631
|
-
details: boolean;
|
|
4632
4622
|
dirty: boolean;
|
|
4633
4623
|
disabled: boolean;
|
|
4634
4624
|
glow: boolean;
|
|
@@ -4638,6 +4628,7 @@ export declare const VAutocomplete: {
|
|
|
4638
4628
|
reverse: boolean;
|
|
4639
4629
|
singleLine: boolean;
|
|
4640
4630
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
4631
|
+
details: boolean;
|
|
4641
4632
|
} & {
|
|
4642
4633
|
theme?: string | undefined;
|
|
4643
4634
|
class?: any;
|
|
@@ -4673,7 +4664,6 @@ export declare const VAutocomplete: {
|
|
|
4673
4664
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
4674
4665
|
active: boolean;
|
|
4675
4666
|
centerAffix: boolean;
|
|
4676
|
-
details: boolean;
|
|
4677
4667
|
dirty: boolean;
|
|
4678
4668
|
disabled: boolean;
|
|
4679
4669
|
glow: boolean;
|
|
@@ -4683,6 +4673,7 @@ export declare const VAutocomplete: {
|
|
|
4683
4673
|
reverse: boolean;
|
|
4684
4674
|
singleLine: boolean;
|
|
4685
4675
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
4676
|
+
details: boolean;
|
|
4686
4677
|
}, {}, string, import("vue").SlotsType<Partial<{
|
|
4687
4678
|
clear: (arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
4688
4679
|
props: Record<string, any>;
|
|
@@ -4736,7 +4727,6 @@ export declare const VAutocomplete: {
|
|
|
4736
4727
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
4737
4728
|
active: boolean;
|
|
4738
4729
|
centerAffix: boolean;
|
|
4739
|
-
details: boolean;
|
|
4740
4730
|
dirty: boolean;
|
|
4741
4731
|
disabled: boolean;
|
|
4742
4732
|
glow: boolean;
|
|
@@ -4746,6 +4736,7 @@ export declare const VAutocomplete: {
|
|
|
4746
4736
|
reverse: boolean;
|
|
4747
4737
|
singleLine: boolean;
|
|
4748
4738
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
4739
|
+
details: boolean;
|
|
4749
4740
|
}> & Omit<{
|
|
4750
4741
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
4751
4742
|
focused: boolean;
|
|
@@ -4753,7 +4744,6 @@ export declare const VAutocomplete: {
|
|
|
4753
4744
|
clearable: boolean;
|
|
4754
4745
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
4755
4746
|
active: boolean;
|
|
4756
|
-
details: boolean;
|
|
4757
4747
|
dirty: boolean;
|
|
4758
4748
|
disabled: boolean;
|
|
4759
4749
|
glow: boolean;
|
|
@@ -4763,6 +4753,7 @@ export declare const VAutocomplete: {
|
|
|
4763
4753
|
reverse: boolean;
|
|
4764
4754
|
singleLine: boolean;
|
|
4765
4755
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
4756
|
+
details: boolean;
|
|
4766
4757
|
} & {
|
|
4767
4758
|
theme?: string | undefined;
|
|
4768
4759
|
class?: any;
|
|
@@ -4823,7 +4814,6 @@ export declare const VAutocomplete: {
|
|
|
4823
4814
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
4824
4815
|
active: boolean;
|
|
4825
4816
|
centerAffix: boolean;
|
|
4826
|
-
details: boolean;
|
|
4827
4817
|
dirty: boolean;
|
|
4828
4818
|
disabled: boolean;
|
|
4829
4819
|
glow: boolean;
|
|
@@ -4914,7 +4904,6 @@ export declare const VAutocomplete: {
|
|
|
4914
4904
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
4915
4905
|
active: boolean;
|
|
4916
4906
|
centerAffix: boolean;
|
|
4917
|
-
details: boolean;
|
|
4918
4907
|
dirty: boolean;
|
|
4919
4908
|
disabled: boolean;
|
|
4920
4909
|
glow: boolean;
|
|
@@ -4944,7 +4933,6 @@ export declare const VAutocomplete: {
|
|
|
4944
4933
|
clearable: boolean;
|
|
4945
4934
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
4946
4935
|
active: boolean;
|
|
4947
|
-
details: boolean;
|
|
4948
4936
|
dirty: boolean;
|
|
4949
4937
|
disabled: boolean;
|
|
4950
4938
|
glow: boolean;
|
|
@@ -5058,7 +5046,7 @@ export declare const VAutocomplete: {
|
|
|
5058
5046
|
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
|
5059
5047
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
5060
5048
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
|
5061
|
-
}, "ATTRIBUTE_NODE" | "CDATA_SECTION_NODE" | "COMMENT_NODE" | "DOCUMENT_FRAGMENT_NODE" | "DOCUMENT_NODE" | "DOCUMENT_POSITION_CONTAINED_BY" | "DOCUMENT_POSITION_CONTAINS" | "DOCUMENT_POSITION_DISCONNECTED" | "DOCUMENT_POSITION_FOLLOWING" | "DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC" | "DOCUMENT_POSITION_PRECEDING" | "DOCUMENT_TYPE_NODE" | "ELEMENT_NODE" | "ENTITY_NODE" | "ENTITY_REFERENCE_NODE" | "NOTATION_NODE" | "PROCESSING_INSTRUCTION_NODE" | "TEXT_NODE" | "_" | "_allExposed" | "_clickOutside" | "_mutate" | "_observe" | "_onResize" | "_onScroll" | "_ripple" | "_touchHandlers" | "_transitionInitialStyles" | "accept" | "accessKey" | "accessKeyLabel" | "active" | "addEventListener" | "after" | "align" | "alt" | "animate" | "append" | "appendChild" | "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" | "assignedSlot" | "attachInternals" | "attachShadow" | "attributeStyleMap" | "attributes" | "autocapitalize" | "autocomplete" | "autofocus" | "baseURI" | "before" | "blur" | "capture" | "centerAffix" | "checkValidity" | "checkVisibility" | "checked" | "childElementCount" | "childNodes" | "children" | "classList" | "className" | "clearIcon" | "clearable" | "click" | "clientHeight" | "clientLeft" | "clientTop" | "clientWidth" | "cloneNode" | "closest" | "compareDocumentPosition" | "computedStyleMap" | "contains" | "contentEditable" | "controlRef" | "currentCSSZoom" | "dataset" | "defaultChecked" | "defaultValue" | "density" | "
|
|
5049
|
+
}, "ATTRIBUTE_NODE" | "CDATA_SECTION_NODE" | "COMMENT_NODE" | "DOCUMENT_FRAGMENT_NODE" | "DOCUMENT_NODE" | "DOCUMENT_POSITION_CONTAINED_BY" | "DOCUMENT_POSITION_CONTAINS" | "DOCUMENT_POSITION_DISCONNECTED" | "DOCUMENT_POSITION_FOLLOWING" | "DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC" | "DOCUMENT_POSITION_PRECEDING" | "DOCUMENT_TYPE_NODE" | "ELEMENT_NODE" | "ENTITY_NODE" | "ENTITY_REFERENCE_NODE" | "NOTATION_NODE" | "PROCESSING_INSTRUCTION_NODE" | "TEXT_NODE" | "_" | "_allExposed" | "_clickOutside" | "_mutate" | "_observe" | "_onResize" | "_onScroll" | "_ripple" | "_touchHandlers" | "_transitionInitialStyles" | "accept" | "accessKey" | "accessKeyLabel" | "active" | "addEventListener" | "after" | "align" | "alt" | "animate" | "append" | "appendChild" | "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" | "assignedSlot" | "attachInternals" | "attachShadow" | "attributeStyleMap" | "attributes" | "autocapitalize" | "autocomplete" | "autofocus" | "baseURI" | "before" | "blur" | "capture" | "centerAffix" | "checkValidity" | "checkVisibility" | "checked" | "childElementCount" | "childNodes" | "children" | "classList" | "className" | "clearIcon" | "clearable" | "click" | "clientHeight" | "clientLeft" | "clientTop" | "clientWidth" | "cloneNode" | "closest" | "compareDocumentPosition" | "computedStyleMap" | "contains" | "contentEditable" | "controlRef" | "currentCSSZoom" | "dataset" | "defaultChecked" | "defaultValue" | "density" | "dir" | "dirName" | "direction" | "dirty" | "disabled" | "dispatchEvent" | "draggable" | "enterKeyHint" | "error" | "errorMessages" | "fieldIconColor" | "files" | "firstChild" | "firstElementChild" | "flat" | "focus" | "focused" | "form" | "formAction" | "formEnctype" | "formMethod" | "formNoValidate" | "formTarget" | "getAnimations" | "getAttribute" | "getAttributeNS" | "getAttributeNames" | "getAttributeNode" | "getAttributeNodeNS" | "getBoundingClientRect" | "getClientRects" | "getElementsByClassName" | "getElementsByTagName" | "getElementsByTagNameNS" | "getHTML" | "getRootNode" | "glow" | "hasAttribute" | "hasAttributeNS" | "hasAttributes" | "hasChildNodes" | "hasPointerCapture" | "height" | "hidden" | "hidePopover" | "hideSpinButtons" | "id" | "indeterminate" | "inert" | "innerHTML" | "innerText" | "inputMode" | "insertAdjacentElement" | "insertAdjacentHTML" | "insertAdjacentText" | "insertBefore" | "isConnected" | "isContentEditable" | "isDefaultNamespace" | "isEqualNode" | "isSameNode" | "isValid" | "labels" | "lang" | "lastChild" | "lastElementChild" | "list" | "localName" | "lookupNamespaceURI" | "lookupPrefix" | "matches" | "max" | "maxErrors" | "maxLength" | "messages" | "min" | "minLength" | "multiple" | "name" | "namespaceURI" | "nextElementSibling" | "nextSibling" | "nodeName" | "nodeType" | "nodeValue" | "nonce" | "normalize" | "offsetHeight" | "offsetLeft" | "offsetParent" | "offsetTop" | "offsetWidth" | "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" | "onfullscreenchange" | "onfullscreenerror" | "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" | "outerHTML" | "outerText" | "ownerDocument" | "parentElement" | "parentNode" | "part" | "pattern" | "persistentClear" | "persistentCounter" | "persistentHint" | "persistentPlaceholder" | "placeholder" | "popover" | "popoverTargetAction" | "popoverTargetElement" | "prefix" | "prepend" | "previousElementSibling" | "previousSibling" | "querySelector" | "querySelectorAll" | "readOnly" | "readonly" | "releasePointerCapture" | "remove" | "removeAttribute" | "removeAttributeNS" | "removeAttributeNode" | "removeChild" | "removeEventListener" | "replaceChild" | "replaceChildren" | "replaceWith" | "reportValidity" | "requestFullscreen" | "requestPointerLock" | "required" | "reset" | "resetValidation" | "reverse" | "role" | "rounded" | "rules" | "scroll" | "scrollBy" | "scrollHeight" | "scrollIntoView" | "scrollLeft" | "scrollTo" | "scrollTop" | "scrollWidth" | "select" | "selectionDirection" | "selectionEnd" | "selectionStart" | "setAttribute" | "setAttributeNS" | "setAttributeNode" | "setAttributeNodeNS" | "setCustomValidity" | "setHTMLUnsafe" | "setPointerCapture" | "setRangeText" | "setSelectionRange" | "shadowRoot" | "showPicker" | "showPopover" | "singleLine" | "size" | "slot" | "spellcheck" | "src" | "step" | "stepDown" | "stepUp" | "style" | "tabIndex" | "tagName" | "textContent" | "tile" | "title" | "toggleAttribute" | "togglePopover" | "translate" | "type" | "useMap" | "validate" | "validationMessage" | "validity" | "value" | "valueAsDate" | "valueAsNumber" | "variant" | "webkitEntries" | "webkitMatchesSelector" | "webkitdirectory" | "width" | "willValidate" | "writingSuggestions"> & import("vue").ShallowUnwrapRef<HTMLInputElement & Omit<Omit<{
|
|
5062
5050
|
$: import("vue").ComponentInternalInstance;
|
|
5063
5051
|
$data: {};
|
|
5064
5052
|
$props: Partial<{
|
|
@@ -5313,7 +5301,6 @@ export declare const VAutocomplete: {
|
|
|
5313
5301
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
5314
5302
|
active: boolean;
|
|
5315
5303
|
centerAffix: boolean;
|
|
5316
|
-
details: boolean;
|
|
5317
5304
|
dirty: boolean;
|
|
5318
5305
|
disabled: boolean;
|
|
5319
5306
|
glow: boolean;
|
|
@@ -5323,6 +5310,7 @@ export declare const VAutocomplete: {
|
|
|
5323
5310
|
reverse: boolean;
|
|
5324
5311
|
singleLine: boolean;
|
|
5325
5312
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
5313
|
+
details: boolean;
|
|
5326
5314
|
}> & Omit<{
|
|
5327
5315
|
theme?: string | undefined;
|
|
5328
5316
|
class?: any;
|
|
@@ -5340,7 +5328,6 @@ export declare const VAutocomplete: {
|
|
|
5340
5328
|
centerAffix?: boolean | undefined;
|
|
5341
5329
|
color?: string | undefined;
|
|
5342
5330
|
baseColor?: string | undefined;
|
|
5343
|
-
details: boolean;
|
|
5344
5331
|
dirty: boolean;
|
|
5345
5332
|
disabled: boolean;
|
|
5346
5333
|
glow: boolean;
|
|
@@ -5357,6 +5344,7 @@ export declare const VAutocomplete: {
|
|
|
5357
5344
|
"onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
5358
5345
|
"onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
5359
5346
|
id?: string | undefined;
|
|
5347
|
+
details: boolean;
|
|
5360
5348
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "active" | "centerAffix" | "clearIcon" | "clearable" | "details" | "dirty" | "disabled" | "error" | "flat" | "focused" | "glow" | "persistentClear" | "reverse" | "rounded" | "singleLine" | "style" | "tile" | "variant">;
|
|
5361
5349
|
$attrs: {
|
|
5362
5350
|
[x: string]: unknown;
|
|
@@ -5401,7 +5389,6 @@ export declare const VAutocomplete: {
|
|
|
5401
5389
|
clearable: boolean;
|
|
5402
5390
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
5403
5391
|
active: boolean;
|
|
5404
|
-
details: boolean;
|
|
5405
5392
|
dirty: boolean;
|
|
5406
5393
|
disabled: boolean;
|
|
5407
5394
|
glow: boolean;
|
|
@@ -5411,6 +5398,7 @@ export declare const VAutocomplete: {
|
|
|
5411
5398
|
reverse: boolean;
|
|
5412
5399
|
singleLine: boolean;
|
|
5413
5400
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
5401
|
+
details: boolean;
|
|
5414
5402
|
} & {
|
|
5415
5403
|
theme?: string | undefined;
|
|
5416
5404
|
class?: any;
|
|
@@ -5446,7 +5434,6 @@ export declare const VAutocomplete: {
|
|
|
5446
5434
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
5447
5435
|
active: boolean;
|
|
5448
5436
|
centerAffix: boolean;
|
|
5449
|
-
details: boolean;
|
|
5450
5437
|
dirty: boolean;
|
|
5451
5438
|
disabled: boolean;
|
|
5452
5439
|
glow: boolean;
|
|
@@ -5456,6 +5443,7 @@ export declare const VAutocomplete: {
|
|
|
5456
5443
|
reverse: boolean;
|
|
5457
5444
|
singleLine: boolean;
|
|
5458
5445
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
5446
|
+
details: boolean;
|
|
5459
5447
|
}, {}, string, import("vue").SlotsType<Partial<{
|
|
5460
5448
|
clear: (arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
5461
5449
|
props: Record<string, any>;
|
|
@@ -5509,7 +5497,6 @@ export declare const VAutocomplete: {
|
|
|
5509
5497
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
5510
5498
|
active: boolean;
|
|
5511
5499
|
centerAffix: boolean;
|
|
5512
|
-
details: boolean;
|
|
5513
5500
|
dirty: boolean;
|
|
5514
5501
|
disabled: boolean;
|
|
5515
5502
|
glow: boolean;
|
|
@@ -5519,6 +5506,7 @@ export declare const VAutocomplete: {
|
|
|
5519
5506
|
reverse: boolean;
|
|
5520
5507
|
singleLine: boolean;
|
|
5521
5508
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
5509
|
+
details: boolean;
|
|
5522
5510
|
}> & Omit<{
|
|
5523
5511
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
5524
5512
|
focused: boolean;
|
|
@@ -5526,7 +5514,6 @@ export declare const VAutocomplete: {
|
|
|
5526
5514
|
clearable: boolean;
|
|
5527
5515
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
5528
5516
|
active: boolean;
|
|
5529
|
-
details: boolean;
|
|
5530
5517
|
dirty: boolean;
|
|
5531
5518
|
disabled: boolean;
|
|
5532
5519
|
glow: boolean;
|
|
@@ -5536,6 +5523,7 @@ export declare const VAutocomplete: {
|
|
|
5536
5523
|
reverse: boolean;
|
|
5537
5524
|
singleLine: boolean;
|
|
5538
5525
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
5526
|
+
details: boolean;
|
|
5539
5527
|
} & {
|
|
5540
5528
|
theme?: string | undefined;
|
|
5541
5529
|
class?: any;
|
|
@@ -5573,7 +5561,7 @@ export declare const VAutocomplete: {
|
|
|
5573
5561
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
5574
5562
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
|
5575
5563
|
} | {};
|
|
5576
|
-
}> & {} & import("vue").ComponentCustomProperties & {}, "$children" | "appendIcon" | "appendInnerIcon" | "autocomplete" | "baseColor" | "bgColor" | "class" | "color" | "counter" | "counterValue" | "hideDetails" | "hint" | "iconColor" | "id" | "label" | "loading" | "maxWidth" | "minWidth" | "modelModifiers" | "modelValue" | "name" | "onClick:append" | "onClick:appendInner" | "onClick:clear" | "onClick:control" | "onClick:prepend" | "onClick:prependInner" | "onMousedown:control" | "onUpdate:focused" | "onUpdate:modelValue" | "placeholder" | "prefix" | "prependIcon" | "prependInnerIcon" | "role" | "suffix" | "theme" | "v-slot:append" | "v-slot:append-inner" | "v-slot:clear" | "v-slot:counter" | "v-slot:default" | "v-slot:details" | "v-slot:label" | "v-slot:loader" | "v-slot:message" | "v-slot:prepend" | "v-slot:prepend-inner" | "v-slots" | "validateOn" | "validationValue" | "width" | ("active" | "autofocus" | "centerAffix" | "clearIcon" | "clearable" | "density" | "
|
|
5564
|
+
}> & {} & import("vue").ComponentCustomProperties & {}, "$children" | "appendIcon" | "appendInnerIcon" | "autocomplete" | "baseColor" | "bgColor" | "class" | "color" | "counter" | "counterValue" | "hideDetails" | "hint" | "iconColor" | "id" | "label" | "loading" | "maxWidth" | "minWidth" | "modelModifiers" | "modelValue" | "name" | "onClick:append" | "onClick:appendInner" | "onClick:clear" | "onClick:control" | "onClick:prepend" | "onClick:prependInner" | "onMousedown:control" | "onUpdate:focused" | "onUpdate:modelValue" | "placeholder" | "prefix" | "prependIcon" | "prependInnerIcon" | "role" | "suffix" | "theme" | "v-slot:append" | "v-slot:append-inner" | "v-slot:clear" | "v-slot:counter" | "v-slot:default" | "v-slot:details" | "v-slot:label" | "v-slot:loader" | "v-slot:message" | "v-slot:prepend" | "v-slot:prepend-inner" | "v-slots" | "validateOn" | "validationValue" | "width" | ("active" | "autofocus" | "centerAffix" | "clearIcon" | "clearable" | "density" | "direction" | "dirty" | "disabled" | "error" | "errorMessages" | "flat" | "focused" | "glow" | "hideSpinButtons" | "maxErrors" | "messages" | "persistentClear" | "persistentCounter" | "persistentHint" | "persistentPlaceholder" | "readonly" | "reverse" | "rounded" | "rules" | "singleLine" | "style" | "tile" | "type" | "variant") | keyof import("vue").VNodeProps>, `$${any}`> & {
|
|
5577
5565
|
_allExposed: {
|
|
5578
5566
|
isFocused: import("vue").ShallowRef<boolean, boolean>;
|
|
5579
5567
|
isPristine: import("vue").ShallowRef<boolean, boolean>;
|
|
@@ -5838,7 +5826,6 @@ export declare const VAutocomplete: {
|
|
|
5838
5826
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
5839
5827
|
active: boolean;
|
|
5840
5828
|
centerAffix: boolean;
|
|
5841
|
-
details: boolean;
|
|
5842
5829
|
dirty: boolean;
|
|
5843
5830
|
disabled: boolean;
|
|
5844
5831
|
glow: boolean;
|
|
@@ -5848,6 +5835,7 @@ export declare const VAutocomplete: {
|
|
|
5848
5835
|
reverse: boolean;
|
|
5849
5836
|
singleLine: boolean;
|
|
5850
5837
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
5838
|
+
details: boolean;
|
|
5851
5839
|
}> & Omit<{
|
|
5852
5840
|
theme?: string | undefined;
|
|
5853
5841
|
class?: any;
|
|
@@ -5865,7 +5853,6 @@ export declare const VAutocomplete: {
|
|
|
5865
5853
|
centerAffix?: boolean | undefined;
|
|
5866
5854
|
color?: string | undefined;
|
|
5867
5855
|
baseColor?: string | undefined;
|
|
5868
|
-
details: boolean;
|
|
5869
5856
|
dirty: boolean;
|
|
5870
5857
|
disabled: boolean;
|
|
5871
5858
|
glow: boolean;
|
|
@@ -5882,6 +5869,7 @@ export declare const VAutocomplete: {
|
|
|
5882
5869
|
"onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
5883
5870
|
"onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
5884
5871
|
id?: string | undefined;
|
|
5872
|
+
details: boolean;
|
|
5885
5873
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "active" | "centerAffix" | "clearIcon" | "clearable" | "details" | "dirty" | "disabled" | "error" | "flat" | "focused" | "glow" | "persistentClear" | "reverse" | "rounded" | "singleLine" | "style" | "tile" | "variant">;
|
|
5886
5874
|
$attrs: {
|
|
5887
5875
|
[x: string]: unknown;
|
|
@@ -5926,7 +5914,6 @@ export declare const VAutocomplete: {
|
|
|
5926
5914
|
clearable: boolean;
|
|
5927
5915
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
5928
5916
|
active: boolean;
|
|
5929
|
-
details: boolean;
|
|
5930
5917
|
dirty: boolean;
|
|
5931
5918
|
disabled: boolean;
|
|
5932
5919
|
glow: boolean;
|
|
@@ -5936,6 +5923,7 @@ export declare const VAutocomplete: {
|
|
|
5936
5923
|
reverse: boolean;
|
|
5937
5924
|
singleLine: boolean;
|
|
5938
5925
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
5926
|
+
details: boolean;
|
|
5939
5927
|
} & {
|
|
5940
5928
|
theme?: string | undefined;
|
|
5941
5929
|
class?: any;
|
|
@@ -5971,7 +5959,6 @@ export declare const VAutocomplete: {
|
|
|
5971
5959
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
5972
5960
|
active: boolean;
|
|
5973
5961
|
centerAffix: boolean;
|
|
5974
|
-
details: boolean;
|
|
5975
5962
|
dirty: boolean;
|
|
5976
5963
|
disabled: boolean;
|
|
5977
5964
|
glow: boolean;
|
|
@@ -5981,6 +5968,7 @@ export declare const VAutocomplete: {
|
|
|
5981
5968
|
reverse: boolean;
|
|
5982
5969
|
singleLine: boolean;
|
|
5983
5970
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
5971
|
+
details: boolean;
|
|
5984
5972
|
}, {}, string, import("vue").SlotsType<Partial<{
|
|
5985
5973
|
clear: (arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
5986
5974
|
props: Record<string, any>;
|
|
@@ -6034,7 +6022,6 @@ export declare const VAutocomplete: {
|
|
|
6034
6022
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
6035
6023
|
active: boolean;
|
|
6036
6024
|
centerAffix: boolean;
|
|
6037
|
-
details: boolean;
|
|
6038
6025
|
dirty: boolean;
|
|
6039
6026
|
disabled: boolean;
|
|
6040
6027
|
glow: boolean;
|
|
@@ -6044,6 +6031,7 @@ export declare const VAutocomplete: {
|
|
|
6044
6031
|
reverse: boolean;
|
|
6045
6032
|
singleLine: boolean;
|
|
6046
6033
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
6034
|
+
details: boolean;
|
|
6047
6035
|
}> & Omit<{
|
|
6048
6036
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
6049
6037
|
focused: boolean;
|
|
@@ -6051,7 +6039,6 @@ export declare const VAutocomplete: {
|
|
|
6051
6039
|
clearable: boolean;
|
|
6052
6040
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
6053
6041
|
active: boolean;
|
|
6054
|
-
details: boolean;
|
|
6055
6042
|
dirty: boolean;
|
|
6056
6043
|
disabled: boolean;
|
|
6057
6044
|
glow: boolean;
|
|
@@ -6061,6 +6048,7 @@ export declare const VAutocomplete: {
|
|
|
6061
6048
|
reverse: boolean;
|
|
6062
6049
|
singleLine: boolean;
|
|
6063
6050
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
6051
|
+
details: boolean;
|
|
6064
6052
|
} & {
|
|
6065
6053
|
theme?: string | undefined;
|
|
6066
6054
|
class?: any;
|
|
@@ -6127,7 +6115,6 @@ export declare const VAutocomplete: {
|
|
|
6127
6115
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
6128
6116
|
active: boolean;
|
|
6129
6117
|
centerAffix: boolean;
|
|
6130
|
-
details: boolean;
|
|
6131
6118
|
disabled: boolean;
|
|
6132
6119
|
glow: boolean;
|
|
6133
6120
|
error: boolean;
|
|
@@ -6256,7 +6243,6 @@ export declare const VAutocomplete: {
|
|
|
6256
6243
|
clearable: boolean;
|
|
6257
6244
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
6258
6245
|
active: boolean;
|
|
6259
|
-
details: boolean;
|
|
6260
6246
|
disabled: boolean;
|
|
6261
6247
|
glow: boolean;
|
|
6262
6248
|
error: boolean;
|
|
@@ -6810,7 +6796,6 @@ export declare const VAutocomplete: {
|
|
|
6810
6796
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
6811
6797
|
active: boolean;
|
|
6812
6798
|
centerAffix: boolean;
|
|
6813
|
-
details: boolean;
|
|
6814
6799
|
dirty: boolean;
|
|
6815
6800
|
disabled: boolean;
|
|
6816
6801
|
glow: boolean;
|
|
@@ -6902,7 +6887,6 @@ export declare const VAutocomplete: {
|
|
|
6902
6887
|
centerAffix?: boolean | undefined;
|
|
6903
6888
|
color?: string | undefined;
|
|
6904
6889
|
baseColor?: string | undefined;
|
|
6905
|
-
details: boolean;
|
|
6906
6890
|
dirty: boolean;
|
|
6907
6891
|
disabled: boolean;
|
|
6908
6892
|
glow: boolean;
|
|
@@ -6949,7 +6933,7 @@ export declare const VAutocomplete: {
|
|
|
6949
6933
|
"v-slot:message"?: false | ((arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNodeChild) | undefined;
|
|
6950
6934
|
"v-slot:prepend"?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
6951
6935
|
"v-slot:prepend-inner"?: false | ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
6952
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "active" | "autofocus" | "centerAffix" | "clearIcon" | "clearable" | "density" | "
|
|
6936
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "active" | "autofocus" | "centerAffix" | "clearIcon" | "clearable" | "density" | "direction" | "dirty" | "disabled" | "error" | "errorMessages" | "flat" | "focused" | "glow" | "hideSpinButtons" | "maxErrors" | "messages" | "persistentClear" | "persistentCounter" | "persistentHint" | "persistentPlaceholder" | "readonly" | "reverse" | "rounded" | "rules" | "singleLine" | "style" | "tile" | "type" | "variant">;
|
|
6953
6937
|
$attrs: {
|
|
6954
6938
|
[x: string]: unknown;
|
|
6955
6939
|
};
|
|
@@ -7017,7 +7001,6 @@ export declare const VAutocomplete: {
|
|
|
7017
7001
|
clearable: boolean;
|
|
7018
7002
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
7019
7003
|
active: boolean;
|
|
7020
|
-
details: boolean;
|
|
7021
7004
|
dirty: boolean;
|
|
7022
7005
|
disabled: boolean;
|
|
7023
7006
|
glow: boolean;
|
|
@@ -7386,7 +7369,6 @@ export declare const VAutocomplete: {
|
|
|
7386
7369
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
7387
7370
|
active: boolean;
|
|
7388
7371
|
centerAffix: boolean;
|
|
7389
|
-
details: boolean;
|
|
7390
7372
|
dirty: boolean;
|
|
7391
7373
|
disabled: boolean;
|
|
7392
7374
|
glow: boolean;
|
|
@@ -7396,6 +7378,7 @@ export declare const VAutocomplete: {
|
|
|
7396
7378
|
reverse: boolean;
|
|
7397
7379
|
singleLine: boolean;
|
|
7398
7380
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
7381
|
+
details: boolean;
|
|
7399
7382
|
}> & Omit<{
|
|
7400
7383
|
theme?: string | undefined;
|
|
7401
7384
|
class?: any;
|
|
@@ -7413,7 +7396,6 @@ export declare const VAutocomplete: {
|
|
|
7413
7396
|
centerAffix?: boolean | undefined;
|
|
7414
7397
|
color?: string | undefined;
|
|
7415
7398
|
baseColor?: string | undefined;
|
|
7416
|
-
details: boolean;
|
|
7417
7399
|
dirty: boolean;
|
|
7418
7400
|
disabled: boolean;
|
|
7419
7401
|
glow: boolean;
|
|
@@ -7430,6 +7412,7 @@ export declare const VAutocomplete: {
|
|
|
7430
7412
|
"onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
7431
7413
|
"onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
7432
7414
|
id?: string | undefined;
|
|
7415
|
+
details: boolean;
|
|
7433
7416
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "active" | "centerAffix" | "clearIcon" | "clearable" | "details" | "dirty" | "disabled" | "error" | "flat" | "focused" | "glow" | "persistentClear" | "reverse" | "rounded" | "singleLine" | "style" | "tile" | "variant">;
|
|
7434
7417
|
$attrs: {
|
|
7435
7418
|
[x: string]: unknown;
|
|
@@ -7474,7 +7457,6 @@ export declare const VAutocomplete: {
|
|
|
7474
7457
|
clearable: boolean;
|
|
7475
7458
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
7476
7459
|
active: boolean;
|
|
7477
|
-
details: boolean;
|
|
7478
7460
|
dirty: boolean;
|
|
7479
7461
|
disabled: boolean;
|
|
7480
7462
|
glow: boolean;
|
|
@@ -7484,6 +7466,7 @@ export declare const VAutocomplete: {
|
|
|
7484
7466
|
reverse: boolean;
|
|
7485
7467
|
singleLine: boolean;
|
|
7486
7468
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
7469
|
+
details: boolean;
|
|
7487
7470
|
} & {
|
|
7488
7471
|
theme?: string | undefined;
|
|
7489
7472
|
class?: any;
|
|
@@ -7519,7 +7502,6 @@ export declare const VAutocomplete: {
|
|
|
7519
7502
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
7520
7503
|
active: boolean;
|
|
7521
7504
|
centerAffix: boolean;
|
|
7522
|
-
details: boolean;
|
|
7523
7505
|
dirty: boolean;
|
|
7524
7506
|
disabled: boolean;
|
|
7525
7507
|
glow: boolean;
|
|
@@ -7529,6 +7511,7 @@ export declare const VAutocomplete: {
|
|
|
7529
7511
|
reverse: boolean;
|
|
7530
7512
|
singleLine: boolean;
|
|
7531
7513
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
7514
|
+
details: boolean;
|
|
7532
7515
|
}, {}, string, import("vue").SlotsType<Partial<{
|
|
7533
7516
|
clear: (arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
7534
7517
|
props: Record<string, any>;
|
|
@@ -7582,7 +7565,6 @@ export declare const VAutocomplete: {
|
|
|
7582
7565
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
7583
7566
|
active: boolean;
|
|
7584
7567
|
centerAffix: boolean;
|
|
7585
|
-
details: boolean;
|
|
7586
7568
|
dirty: boolean;
|
|
7587
7569
|
disabled: boolean;
|
|
7588
7570
|
glow: boolean;
|
|
@@ -7592,6 +7574,7 @@ export declare const VAutocomplete: {
|
|
|
7592
7574
|
reverse: boolean;
|
|
7593
7575
|
singleLine: boolean;
|
|
7594
7576
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
7577
|
+
details: boolean;
|
|
7595
7578
|
}> & Omit<{
|
|
7596
7579
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
7597
7580
|
focused: boolean;
|
|
@@ -7599,7 +7582,6 @@ export declare const VAutocomplete: {
|
|
|
7599
7582
|
clearable: boolean;
|
|
7600
7583
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
7601
7584
|
active: boolean;
|
|
7602
|
-
details: boolean;
|
|
7603
7585
|
dirty: boolean;
|
|
7604
7586
|
disabled: boolean;
|
|
7605
7587
|
glow: boolean;
|
|
@@ -7609,6 +7591,7 @@ export declare const VAutocomplete: {
|
|
|
7609
7591
|
reverse: boolean;
|
|
7610
7592
|
singleLine: boolean;
|
|
7611
7593
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
7594
|
+
details: boolean;
|
|
7612
7595
|
} & {
|
|
7613
7596
|
theme?: string | undefined;
|
|
7614
7597
|
class?: any;
|
|
@@ -7669,7 +7652,6 @@ export declare const VAutocomplete: {
|
|
|
7669
7652
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
7670
7653
|
active: boolean;
|
|
7671
7654
|
centerAffix: boolean;
|
|
7672
|
-
details: boolean;
|
|
7673
7655
|
dirty: boolean;
|
|
7674
7656
|
disabled: boolean;
|
|
7675
7657
|
glow: boolean;
|
|
@@ -7760,7 +7742,6 @@ export declare const VAutocomplete: {
|
|
|
7760
7742
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
7761
7743
|
active: boolean;
|
|
7762
7744
|
centerAffix: boolean;
|
|
7763
|
-
details: boolean;
|
|
7764
7745
|
dirty: boolean;
|
|
7765
7746
|
disabled: boolean;
|
|
7766
7747
|
glow: boolean;
|
|
@@ -7790,7 +7771,6 @@ export declare const VAutocomplete: {
|
|
|
7790
7771
|
clearable: boolean;
|
|
7791
7772
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
7792
7773
|
active: boolean;
|
|
7793
|
-
details: boolean;
|
|
7794
7774
|
dirty: boolean;
|
|
7795
7775
|
disabled: boolean;
|
|
7796
7776
|
glow: boolean;
|
|
@@ -7904,7 +7884,7 @@ export declare const VAutocomplete: {
|
|
|
7904
7884
|
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
|
7905
7885
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
7906
7886
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
|
7907
|
-
}, "ATTRIBUTE_NODE" | "CDATA_SECTION_NODE" | "COMMENT_NODE" | "DOCUMENT_FRAGMENT_NODE" | "DOCUMENT_NODE" | "DOCUMENT_POSITION_CONTAINED_BY" | "DOCUMENT_POSITION_CONTAINS" | "DOCUMENT_POSITION_DISCONNECTED" | "DOCUMENT_POSITION_FOLLOWING" | "DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC" | "DOCUMENT_POSITION_PRECEDING" | "DOCUMENT_TYPE_NODE" | "ELEMENT_NODE" | "ENTITY_NODE" | "ENTITY_REFERENCE_NODE" | "NOTATION_NODE" | "PROCESSING_INSTRUCTION_NODE" | "TEXT_NODE" | "_" | "_allExposed" | "_clickOutside" | "_mutate" | "_observe" | "_onResize" | "_onScroll" | "_ripple" | "_touchHandlers" | "_transitionInitialStyles" | "accept" | "accessKey" | "accessKeyLabel" | "active" | "addEventListener" | "after" | "align" | "alt" | "animate" | "append" | "appendChild" | "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" | "assignedSlot" | "attachInternals" | "attachShadow" | "attributeStyleMap" | "attributes" | "autocapitalize" | "autocomplete" | "autofocus" | "baseURI" | "before" | "blur" | "capture" | "centerAffix" | "checkValidity" | "checkVisibility" | "checked" | "childElementCount" | "childNodes" | "children" | "classList" | "className" | "clearIcon" | "clearable" | "click" | "clientHeight" | "clientLeft" | "clientTop" | "clientWidth" | "cloneNode" | "closest" | "compareDocumentPosition" | "computedStyleMap" | "contains" | "contentEditable" | "controlRef" | "currentCSSZoom" | "dataset" | "defaultChecked" | "defaultValue" | "density" | "
|
|
7887
|
+
}, "ATTRIBUTE_NODE" | "CDATA_SECTION_NODE" | "COMMENT_NODE" | "DOCUMENT_FRAGMENT_NODE" | "DOCUMENT_NODE" | "DOCUMENT_POSITION_CONTAINED_BY" | "DOCUMENT_POSITION_CONTAINS" | "DOCUMENT_POSITION_DISCONNECTED" | "DOCUMENT_POSITION_FOLLOWING" | "DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC" | "DOCUMENT_POSITION_PRECEDING" | "DOCUMENT_TYPE_NODE" | "ELEMENT_NODE" | "ENTITY_NODE" | "ENTITY_REFERENCE_NODE" | "NOTATION_NODE" | "PROCESSING_INSTRUCTION_NODE" | "TEXT_NODE" | "_" | "_allExposed" | "_clickOutside" | "_mutate" | "_observe" | "_onResize" | "_onScroll" | "_ripple" | "_touchHandlers" | "_transitionInitialStyles" | "accept" | "accessKey" | "accessKeyLabel" | "active" | "addEventListener" | "after" | "align" | "alt" | "animate" | "append" | "appendChild" | "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" | "assignedSlot" | "attachInternals" | "attachShadow" | "attributeStyleMap" | "attributes" | "autocapitalize" | "autocomplete" | "autofocus" | "baseURI" | "before" | "blur" | "capture" | "centerAffix" | "checkValidity" | "checkVisibility" | "checked" | "childElementCount" | "childNodes" | "children" | "classList" | "className" | "clearIcon" | "clearable" | "click" | "clientHeight" | "clientLeft" | "clientTop" | "clientWidth" | "cloneNode" | "closest" | "compareDocumentPosition" | "computedStyleMap" | "contains" | "contentEditable" | "controlRef" | "currentCSSZoom" | "dataset" | "defaultChecked" | "defaultValue" | "density" | "dir" | "dirName" | "direction" | "dirty" | "disabled" | "dispatchEvent" | "draggable" | "enterKeyHint" | "error" | "errorMessages" | "fieldIconColor" | "files" | "firstChild" | "firstElementChild" | "flat" | "focus" | "focused" | "form" | "formAction" | "formEnctype" | "formMethod" | "formNoValidate" | "formTarget" | "getAnimations" | "getAttribute" | "getAttributeNS" | "getAttributeNames" | "getAttributeNode" | "getAttributeNodeNS" | "getBoundingClientRect" | "getClientRects" | "getElementsByClassName" | "getElementsByTagName" | "getElementsByTagNameNS" | "getHTML" | "getRootNode" | "glow" | "hasAttribute" | "hasAttributeNS" | "hasAttributes" | "hasChildNodes" | "hasPointerCapture" | "height" | "hidden" | "hidePopover" | "hideSpinButtons" | "id" | "indeterminate" | "inert" | "innerHTML" | "innerText" | "inputMode" | "insertAdjacentElement" | "insertAdjacentHTML" | "insertAdjacentText" | "insertBefore" | "isConnected" | "isContentEditable" | "isDefaultNamespace" | "isEqualNode" | "isSameNode" | "isValid" | "labels" | "lang" | "lastChild" | "lastElementChild" | "list" | "localName" | "lookupNamespaceURI" | "lookupPrefix" | "matches" | "max" | "maxErrors" | "maxLength" | "messages" | "min" | "minLength" | "multiple" | "name" | "namespaceURI" | "nextElementSibling" | "nextSibling" | "nodeName" | "nodeType" | "nodeValue" | "nonce" | "normalize" | "offsetHeight" | "offsetLeft" | "offsetParent" | "offsetTop" | "offsetWidth" | "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" | "onfullscreenchange" | "onfullscreenerror" | "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" | "outerHTML" | "outerText" | "ownerDocument" | "parentElement" | "parentNode" | "part" | "pattern" | "persistentClear" | "persistentCounter" | "persistentHint" | "persistentPlaceholder" | "placeholder" | "popover" | "popoverTargetAction" | "popoverTargetElement" | "prefix" | "prepend" | "previousElementSibling" | "previousSibling" | "querySelector" | "querySelectorAll" | "readOnly" | "readonly" | "releasePointerCapture" | "remove" | "removeAttribute" | "removeAttributeNS" | "removeAttributeNode" | "removeChild" | "removeEventListener" | "replaceChild" | "replaceChildren" | "replaceWith" | "reportValidity" | "requestFullscreen" | "requestPointerLock" | "required" | "reset" | "resetValidation" | "reverse" | "role" | "rounded" | "rules" | "scroll" | "scrollBy" | "scrollHeight" | "scrollIntoView" | "scrollLeft" | "scrollTo" | "scrollTop" | "scrollWidth" | "select" | "selectionDirection" | "selectionEnd" | "selectionStart" | "setAttribute" | "setAttributeNS" | "setAttributeNode" | "setAttributeNodeNS" | "setCustomValidity" | "setHTMLUnsafe" | "setPointerCapture" | "setRangeText" | "setSelectionRange" | "shadowRoot" | "showPicker" | "showPopover" | "singleLine" | "size" | "slot" | "spellcheck" | "src" | "step" | "stepDown" | "stepUp" | "style" | "tabIndex" | "tagName" | "textContent" | "tile" | "title" | "toggleAttribute" | "togglePopover" | "translate" | "type" | "useMap" | "validate" | "validationMessage" | "validity" | "value" | "valueAsDate" | "valueAsNumber" | "variant" | "webkitEntries" | "webkitMatchesSelector" | "webkitdirectory" | "width" | "willValidate" | "writingSuggestions"> & import("vue").ShallowUnwrapRef<HTMLInputElement & Omit<Omit<{
|
|
7908
7888
|
$: import("vue").ComponentInternalInstance;
|
|
7909
7889
|
$data: {};
|
|
7910
7890
|
$props: Partial<{
|
|
@@ -8159,7 +8139,6 @@ export declare const VAutocomplete: {
|
|
|
8159
8139
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
8160
8140
|
active: boolean;
|
|
8161
8141
|
centerAffix: boolean;
|
|
8162
|
-
details: boolean;
|
|
8163
8142
|
dirty: boolean;
|
|
8164
8143
|
disabled: boolean;
|
|
8165
8144
|
glow: boolean;
|
|
@@ -8169,6 +8148,7 @@ export declare const VAutocomplete: {
|
|
|
8169
8148
|
reverse: boolean;
|
|
8170
8149
|
singleLine: boolean;
|
|
8171
8150
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
8151
|
+
details: boolean;
|
|
8172
8152
|
}> & Omit<{
|
|
8173
8153
|
theme?: string | undefined;
|
|
8174
8154
|
class?: any;
|
|
@@ -8186,7 +8166,6 @@ export declare const VAutocomplete: {
|
|
|
8186
8166
|
centerAffix?: boolean | undefined;
|
|
8187
8167
|
color?: string | undefined;
|
|
8188
8168
|
baseColor?: string | undefined;
|
|
8189
|
-
details: boolean;
|
|
8190
8169
|
dirty: boolean;
|
|
8191
8170
|
disabled: boolean;
|
|
8192
8171
|
glow: boolean;
|
|
@@ -8203,6 +8182,7 @@ export declare const VAutocomplete: {
|
|
|
8203
8182
|
"onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
8204
8183
|
"onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
8205
8184
|
id?: string | undefined;
|
|
8185
|
+
details: boolean;
|
|
8206
8186
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "active" | "centerAffix" | "clearIcon" | "clearable" | "details" | "dirty" | "disabled" | "error" | "flat" | "focused" | "glow" | "persistentClear" | "reverse" | "rounded" | "singleLine" | "style" | "tile" | "variant">;
|
|
8207
8187
|
$attrs: {
|
|
8208
8188
|
[x: string]: unknown;
|
|
@@ -8247,7 +8227,6 @@ export declare const VAutocomplete: {
|
|
|
8247
8227
|
clearable: boolean;
|
|
8248
8228
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
8249
8229
|
active: boolean;
|
|
8250
|
-
details: boolean;
|
|
8251
8230
|
dirty: boolean;
|
|
8252
8231
|
disabled: boolean;
|
|
8253
8232
|
glow: boolean;
|
|
@@ -8257,6 +8236,7 @@ export declare const VAutocomplete: {
|
|
|
8257
8236
|
reverse: boolean;
|
|
8258
8237
|
singleLine: boolean;
|
|
8259
8238
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
8239
|
+
details: boolean;
|
|
8260
8240
|
} & {
|
|
8261
8241
|
theme?: string | undefined;
|
|
8262
8242
|
class?: any;
|
|
@@ -8292,7 +8272,6 @@ export declare const VAutocomplete: {
|
|
|
8292
8272
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
8293
8273
|
active: boolean;
|
|
8294
8274
|
centerAffix: boolean;
|
|
8295
|
-
details: boolean;
|
|
8296
8275
|
dirty: boolean;
|
|
8297
8276
|
disabled: boolean;
|
|
8298
8277
|
glow: boolean;
|
|
@@ -8302,6 +8281,7 @@ export declare const VAutocomplete: {
|
|
|
8302
8281
|
reverse: boolean;
|
|
8303
8282
|
singleLine: boolean;
|
|
8304
8283
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
8284
|
+
details: boolean;
|
|
8305
8285
|
}, {}, string, import("vue").SlotsType<Partial<{
|
|
8306
8286
|
clear: (arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
8307
8287
|
props: Record<string, any>;
|
|
@@ -8355,7 +8335,6 @@ export declare const VAutocomplete: {
|
|
|
8355
8335
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
8356
8336
|
active: boolean;
|
|
8357
8337
|
centerAffix: boolean;
|
|
8358
|
-
details: boolean;
|
|
8359
8338
|
dirty: boolean;
|
|
8360
8339
|
disabled: boolean;
|
|
8361
8340
|
glow: boolean;
|
|
@@ -8365,6 +8344,7 @@ export declare const VAutocomplete: {
|
|
|
8365
8344
|
reverse: boolean;
|
|
8366
8345
|
singleLine: boolean;
|
|
8367
8346
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
8347
|
+
details: boolean;
|
|
8368
8348
|
}> & Omit<{
|
|
8369
8349
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
8370
8350
|
focused: boolean;
|
|
@@ -8372,7 +8352,6 @@ export declare const VAutocomplete: {
|
|
|
8372
8352
|
clearable: boolean;
|
|
8373
8353
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
8374
8354
|
active: boolean;
|
|
8375
|
-
details: boolean;
|
|
8376
8355
|
dirty: boolean;
|
|
8377
8356
|
disabled: boolean;
|
|
8378
8357
|
glow: boolean;
|
|
@@ -8382,6 +8361,7 @@ export declare const VAutocomplete: {
|
|
|
8382
8361
|
reverse: boolean;
|
|
8383
8362
|
singleLine: boolean;
|
|
8384
8363
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
8364
|
+
details: boolean;
|
|
8385
8365
|
} & {
|
|
8386
8366
|
theme?: string | undefined;
|
|
8387
8367
|
class?: any;
|
|
@@ -8419,7 +8399,7 @@ export declare const VAutocomplete: {
|
|
|
8419
8399
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
8420
8400
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
|
8421
8401
|
} | {};
|
|
8422
|
-
}> & {} & import("vue").ComponentCustomProperties & {}, "$children" | "appendIcon" | "appendInnerIcon" | "autocomplete" | "baseColor" | "bgColor" | "class" | "color" | "counter" | "counterValue" | "hideDetails" | "hint" | "iconColor" | "id" | "label" | "loading" | "maxWidth" | "minWidth" | "modelModifiers" | "modelValue" | "name" | "onClick:append" | "onClick:appendInner" | "onClick:clear" | "onClick:control" | "onClick:prepend" | "onClick:prependInner" | "onMousedown:control" | "onUpdate:focused" | "onUpdate:modelValue" | "placeholder" | "prefix" | "prependIcon" | "prependInnerIcon" | "role" | "suffix" | "theme" | "v-slot:append" | "v-slot:append-inner" | "v-slot:clear" | "v-slot:counter" | "v-slot:default" | "v-slot:details" | "v-slot:label" | "v-slot:loader" | "v-slot:message" | "v-slot:prepend" | "v-slot:prepend-inner" | "v-slots" | "validateOn" | "validationValue" | "width" | ("active" | "autofocus" | "centerAffix" | "clearIcon" | "clearable" | "density" | "
|
|
8402
|
+
}> & {} & import("vue").ComponentCustomProperties & {}, "$children" | "appendIcon" | "appendInnerIcon" | "autocomplete" | "baseColor" | "bgColor" | "class" | "color" | "counter" | "counterValue" | "hideDetails" | "hint" | "iconColor" | "id" | "label" | "loading" | "maxWidth" | "minWidth" | "modelModifiers" | "modelValue" | "name" | "onClick:append" | "onClick:appendInner" | "onClick:clear" | "onClick:control" | "onClick:prepend" | "onClick:prependInner" | "onMousedown:control" | "onUpdate:focused" | "onUpdate:modelValue" | "placeholder" | "prefix" | "prependIcon" | "prependInnerIcon" | "role" | "suffix" | "theme" | "v-slot:append" | "v-slot:append-inner" | "v-slot:clear" | "v-slot:counter" | "v-slot:default" | "v-slot:details" | "v-slot:label" | "v-slot:loader" | "v-slot:message" | "v-slot:prepend" | "v-slot:prepend-inner" | "v-slots" | "validateOn" | "validationValue" | "width" | ("active" | "autofocus" | "centerAffix" | "clearIcon" | "clearable" | "density" | "direction" | "dirty" | "disabled" | "error" | "errorMessages" | "flat" | "focused" | "glow" | "hideSpinButtons" | "maxErrors" | "messages" | "persistentClear" | "persistentCounter" | "persistentHint" | "persistentPlaceholder" | "readonly" | "reverse" | "rounded" | "rules" | "singleLine" | "style" | "tile" | "type" | "variant") | keyof import("vue").VNodeProps>, `$${any}`> & {
|
|
8423
8403
|
_allExposed: {
|
|
8424
8404
|
isFocused: import("vue").ShallowRef<boolean, boolean>;
|
|
8425
8405
|
isPristine: import("vue").ShallowRef<boolean, boolean>;
|
|
@@ -8684,7 +8664,6 @@ export declare const VAutocomplete: {
|
|
|
8684
8664
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
8685
8665
|
active: boolean;
|
|
8686
8666
|
centerAffix: boolean;
|
|
8687
|
-
details: boolean;
|
|
8688
8667
|
dirty: boolean;
|
|
8689
8668
|
disabled: boolean;
|
|
8690
8669
|
glow: boolean;
|
|
@@ -8694,6 +8673,7 @@ export declare const VAutocomplete: {
|
|
|
8694
8673
|
reverse: boolean;
|
|
8695
8674
|
singleLine: boolean;
|
|
8696
8675
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
8676
|
+
details: boolean;
|
|
8697
8677
|
}> & Omit<{
|
|
8698
8678
|
theme?: string | undefined;
|
|
8699
8679
|
class?: any;
|
|
@@ -8711,7 +8691,6 @@ export declare const VAutocomplete: {
|
|
|
8711
8691
|
centerAffix?: boolean | undefined;
|
|
8712
8692
|
color?: string | undefined;
|
|
8713
8693
|
baseColor?: string | undefined;
|
|
8714
|
-
details: boolean;
|
|
8715
8694
|
dirty: boolean;
|
|
8716
8695
|
disabled: boolean;
|
|
8717
8696
|
glow: boolean;
|
|
@@ -8728,6 +8707,7 @@ export declare const VAutocomplete: {
|
|
|
8728
8707
|
"onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
8729
8708
|
"onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
8730
8709
|
id?: string | undefined;
|
|
8710
|
+
details: boolean;
|
|
8731
8711
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "active" | "centerAffix" | "clearIcon" | "clearable" | "details" | "dirty" | "disabled" | "error" | "flat" | "focused" | "glow" | "persistentClear" | "reverse" | "rounded" | "singleLine" | "style" | "tile" | "variant">;
|
|
8732
8712
|
$attrs: {
|
|
8733
8713
|
[x: string]: unknown;
|
|
@@ -8772,7 +8752,6 @@ export declare const VAutocomplete: {
|
|
|
8772
8752
|
clearable: boolean;
|
|
8773
8753
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
8774
8754
|
active: boolean;
|
|
8775
|
-
details: boolean;
|
|
8776
8755
|
dirty: boolean;
|
|
8777
8756
|
disabled: boolean;
|
|
8778
8757
|
glow: boolean;
|
|
@@ -8782,6 +8761,7 @@ export declare const VAutocomplete: {
|
|
|
8782
8761
|
reverse: boolean;
|
|
8783
8762
|
singleLine: boolean;
|
|
8784
8763
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
8764
|
+
details: boolean;
|
|
8785
8765
|
} & {
|
|
8786
8766
|
theme?: string | undefined;
|
|
8787
8767
|
class?: any;
|
|
@@ -8817,7 +8797,6 @@ export declare const VAutocomplete: {
|
|
|
8817
8797
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
8818
8798
|
active: boolean;
|
|
8819
8799
|
centerAffix: boolean;
|
|
8820
|
-
details: boolean;
|
|
8821
8800
|
dirty: boolean;
|
|
8822
8801
|
disabled: boolean;
|
|
8823
8802
|
glow: boolean;
|
|
@@ -8827,6 +8806,7 @@ export declare const VAutocomplete: {
|
|
|
8827
8806
|
reverse: boolean;
|
|
8828
8807
|
singleLine: boolean;
|
|
8829
8808
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
8809
|
+
details: boolean;
|
|
8830
8810
|
}, {}, string, import("vue").SlotsType<Partial<{
|
|
8831
8811
|
clear: (arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
8832
8812
|
props: Record<string, any>;
|
|
@@ -8880,7 +8860,6 @@ export declare const VAutocomplete: {
|
|
|
8880
8860
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
8881
8861
|
active: boolean;
|
|
8882
8862
|
centerAffix: boolean;
|
|
8883
|
-
details: boolean;
|
|
8884
8863
|
dirty: boolean;
|
|
8885
8864
|
disabled: boolean;
|
|
8886
8865
|
glow: boolean;
|
|
@@ -8890,6 +8869,7 @@ export declare const VAutocomplete: {
|
|
|
8890
8869
|
reverse: boolean;
|
|
8891
8870
|
singleLine: boolean;
|
|
8892
8871
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
8872
|
+
details: boolean;
|
|
8893
8873
|
}> & Omit<{
|
|
8894
8874
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
8895
8875
|
focused: boolean;
|
|
@@ -8897,7 +8877,6 @@ export declare const VAutocomplete: {
|
|
|
8897
8877
|
clearable: boolean;
|
|
8898
8878
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
8899
8879
|
active: boolean;
|
|
8900
|
-
details: boolean;
|
|
8901
8880
|
dirty: boolean;
|
|
8902
8881
|
disabled: boolean;
|
|
8903
8882
|
glow: boolean;
|
|
@@ -8907,6 +8886,7 @@ export declare const VAutocomplete: {
|
|
|
8907
8886
|
reverse: boolean;
|
|
8908
8887
|
singleLine: boolean;
|
|
8909
8888
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
8889
|
+
details: boolean;
|
|
8910
8890
|
} & {
|
|
8911
8891
|
theme?: string | undefined;
|
|
8912
8892
|
class?: any;
|
|
@@ -8968,7 +8948,6 @@ export declare const VAutocomplete: {
|
|
|
8968
8948
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
8969
8949
|
active: boolean;
|
|
8970
8950
|
centerAffix: boolean;
|
|
8971
|
-
details: boolean;
|
|
8972
8951
|
disabled: boolean;
|
|
8973
8952
|
glow: boolean;
|
|
8974
8953
|
error: boolean;
|
|
@@ -9020,7 +8999,6 @@ export declare const VAutocomplete: {
|
|
|
9020
8999
|
clearable: boolean;
|
|
9021
9000
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
9022
9001
|
active: boolean;
|
|
9023
|
-
details: boolean;
|
|
9024
9002
|
disabled: boolean;
|
|
9025
9003
|
glow: boolean;
|
|
9026
9004
|
error: boolean;
|
|
@@ -9574,7 +9552,6 @@ export declare const VAutocomplete: {
|
|
|
9574
9552
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
9575
9553
|
active: boolean;
|
|
9576
9554
|
centerAffix: boolean;
|
|
9577
|
-
details: boolean;
|
|
9578
9555
|
dirty: boolean;
|
|
9579
9556
|
disabled: boolean;
|
|
9580
9557
|
glow: boolean;
|
|
@@ -9666,7 +9643,6 @@ export declare const VAutocomplete: {
|
|
|
9666
9643
|
centerAffix?: boolean | undefined;
|
|
9667
9644
|
color?: string | undefined;
|
|
9668
9645
|
baseColor?: string | undefined;
|
|
9669
|
-
details: boolean;
|
|
9670
9646
|
dirty: boolean;
|
|
9671
9647
|
disabled: boolean;
|
|
9672
9648
|
glow: boolean;
|
|
@@ -9713,7 +9689,7 @@ export declare const VAutocomplete: {
|
|
|
9713
9689
|
"v-slot:message"?: false | ((arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNodeChild) | undefined;
|
|
9714
9690
|
"v-slot:prepend"?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
9715
9691
|
"v-slot:prepend-inner"?: false | ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
9716
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "active" | "autofocus" | "centerAffix" | "clearIcon" | "clearable" | "density" | "
|
|
9692
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "active" | "autofocus" | "centerAffix" | "clearIcon" | "clearable" | "density" | "direction" | "dirty" | "disabled" | "error" | "errorMessages" | "flat" | "focused" | "glow" | "hideSpinButtons" | "maxErrors" | "messages" | "persistentClear" | "persistentCounter" | "persistentHint" | "persistentPlaceholder" | "readonly" | "reverse" | "rounded" | "rules" | "singleLine" | "style" | "tile" | "type" | "variant">;
|
|
9717
9693
|
$attrs: {
|
|
9718
9694
|
[x: string]: unknown;
|
|
9719
9695
|
};
|
|
@@ -9781,7 +9757,6 @@ export declare const VAutocomplete: {
|
|
|
9781
9757
|
clearable: boolean;
|
|
9782
9758
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
9783
9759
|
active: boolean;
|
|
9784
|
-
details: boolean;
|
|
9785
9760
|
dirty: boolean;
|
|
9786
9761
|
disabled: boolean;
|
|
9787
9762
|
glow: boolean;
|
|
@@ -10150,7 +10125,6 @@ export declare const VAutocomplete: {
|
|
|
10150
10125
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
10151
10126
|
active: boolean;
|
|
10152
10127
|
centerAffix: boolean;
|
|
10153
|
-
details: boolean;
|
|
10154
10128
|
dirty: boolean;
|
|
10155
10129
|
disabled: boolean;
|
|
10156
10130
|
glow: boolean;
|
|
@@ -10160,6 +10134,7 @@ export declare const VAutocomplete: {
|
|
|
10160
10134
|
reverse: boolean;
|
|
10161
10135
|
singleLine: boolean;
|
|
10162
10136
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
10137
|
+
details: boolean;
|
|
10163
10138
|
}> & Omit<{
|
|
10164
10139
|
theme?: string | undefined;
|
|
10165
10140
|
class?: any;
|
|
@@ -10177,7 +10152,6 @@ export declare const VAutocomplete: {
|
|
|
10177
10152
|
centerAffix?: boolean | undefined;
|
|
10178
10153
|
color?: string | undefined;
|
|
10179
10154
|
baseColor?: string | undefined;
|
|
10180
|
-
details: boolean;
|
|
10181
10155
|
dirty: boolean;
|
|
10182
10156
|
disabled: boolean;
|
|
10183
10157
|
glow: boolean;
|
|
@@ -10194,6 +10168,7 @@ export declare const VAutocomplete: {
|
|
|
10194
10168
|
"onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
10195
10169
|
"onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
10196
10170
|
id?: string | undefined;
|
|
10171
|
+
details: boolean;
|
|
10197
10172
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "active" | "centerAffix" | "clearIcon" | "clearable" | "details" | "dirty" | "disabled" | "error" | "flat" | "focused" | "glow" | "persistentClear" | "reverse" | "rounded" | "singleLine" | "style" | "tile" | "variant">;
|
|
10198
10173
|
$attrs: {
|
|
10199
10174
|
[x: string]: unknown;
|
|
@@ -10238,7 +10213,6 @@ export declare const VAutocomplete: {
|
|
|
10238
10213
|
clearable: boolean;
|
|
10239
10214
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
10240
10215
|
active: boolean;
|
|
10241
|
-
details: boolean;
|
|
10242
10216
|
dirty: boolean;
|
|
10243
10217
|
disabled: boolean;
|
|
10244
10218
|
glow: boolean;
|
|
@@ -10248,6 +10222,7 @@ export declare const VAutocomplete: {
|
|
|
10248
10222
|
reverse: boolean;
|
|
10249
10223
|
singleLine: boolean;
|
|
10250
10224
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
10225
|
+
details: boolean;
|
|
10251
10226
|
} & {
|
|
10252
10227
|
theme?: string | undefined;
|
|
10253
10228
|
class?: any;
|
|
@@ -10283,7 +10258,6 @@ export declare const VAutocomplete: {
|
|
|
10283
10258
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
10284
10259
|
active: boolean;
|
|
10285
10260
|
centerAffix: boolean;
|
|
10286
|
-
details: boolean;
|
|
10287
10261
|
dirty: boolean;
|
|
10288
10262
|
disabled: boolean;
|
|
10289
10263
|
glow: boolean;
|
|
@@ -10293,6 +10267,7 @@ export declare const VAutocomplete: {
|
|
|
10293
10267
|
reverse: boolean;
|
|
10294
10268
|
singleLine: boolean;
|
|
10295
10269
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
10270
|
+
details: boolean;
|
|
10296
10271
|
}, {}, string, import("vue").SlotsType<Partial<{
|
|
10297
10272
|
clear: (arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
10298
10273
|
props: Record<string, any>;
|
|
@@ -10346,7 +10321,6 @@ export declare const VAutocomplete: {
|
|
|
10346
10321
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
10347
10322
|
active: boolean;
|
|
10348
10323
|
centerAffix: boolean;
|
|
10349
|
-
details: boolean;
|
|
10350
10324
|
dirty: boolean;
|
|
10351
10325
|
disabled: boolean;
|
|
10352
10326
|
glow: boolean;
|
|
@@ -10356,6 +10330,7 @@ export declare const VAutocomplete: {
|
|
|
10356
10330
|
reverse: boolean;
|
|
10357
10331
|
singleLine: boolean;
|
|
10358
10332
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
10333
|
+
details: boolean;
|
|
10359
10334
|
}> & Omit<{
|
|
10360
10335
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
10361
10336
|
focused: boolean;
|
|
@@ -10363,7 +10338,6 @@ export declare const VAutocomplete: {
|
|
|
10363
10338
|
clearable: boolean;
|
|
10364
10339
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
10365
10340
|
active: boolean;
|
|
10366
|
-
details: boolean;
|
|
10367
10341
|
dirty: boolean;
|
|
10368
10342
|
disabled: boolean;
|
|
10369
10343
|
glow: boolean;
|
|
@@ -10373,6 +10347,7 @@ export declare const VAutocomplete: {
|
|
|
10373
10347
|
reverse: boolean;
|
|
10374
10348
|
singleLine: boolean;
|
|
10375
10349
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
10350
|
+
details: boolean;
|
|
10376
10351
|
} & {
|
|
10377
10352
|
theme?: string | undefined;
|
|
10378
10353
|
class?: any;
|
|
@@ -10433,7 +10408,6 @@ export declare const VAutocomplete: {
|
|
|
10433
10408
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
10434
10409
|
active: boolean;
|
|
10435
10410
|
centerAffix: boolean;
|
|
10436
|
-
details: boolean;
|
|
10437
10411
|
dirty: boolean;
|
|
10438
10412
|
disabled: boolean;
|
|
10439
10413
|
glow: boolean;
|
|
@@ -10524,7 +10498,6 @@ export declare const VAutocomplete: {
|
|
|
10524
10498
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
10525
10499
|
active: boolean;
|
|
10526
10500
|
centerAffix: boolean;
|
|
10527
|
-
details: boolean;
|
|
10528
10501
|
dirty: boolean;
|
|
10529
10502
|
disabled: boolean;
|
|
10530
10503
|
glow: boolean;
|
|
@@ -10554,7 +10527,6 @@ export declare const VAutocomplete: {
|
|
|
10554
10527
|
clearable: boolean;
|
|
10555
10528
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
10556
10529
|
active: boolean;
|
|
10557
|
-
details: boolean;
|
|
10558
10530
|
dirty: boolean;
|
|
10559
10531
|
disabled: boolean;
|
|
10560
10532
|
glow: boolean;
|
|
@@ -10668,7 +10640,7 @@ export declare const VAutocomplete: {
|
|
|
10668
10640
|
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
|
10669
10641
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
10670
10642
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
|
10671
|
-
}, "ATTRIBUTE_NODE" | "CDATA_SECTION_NODE" | "COMMENT_NODE" | "DOCUMENT_FRAGMENT_NODE" | "DOCUMENT_NODE" | "DOCUMENT_POSITION_CONTAINED_BY" | "DOCUMENT_POSITION_CONTAINS" | "DOCUMENT_POSITION_DISCONNECTED" | "DOCUMENT_POSITION_FOLLOWING" | "DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC" | "DOCUMENT_POSITION_PRECEDING" | "DOCUMENT_TYPE_NODE" | "ELEMENT_NODE" | "ENTITY_NODE" | "ENTITY_REFERENCE_NODE" | "NOTATION_NODE" | "PROCESSING_INSTRUCTION_NODE" | "TEXT_NODE" | "_" | "_allExposed" | "_clickOutside" | "_mutate" | "_observe" | "_onResize" | "_onScroll" | "_ripple" | "_touchHandlers" | "_transitionInitialStyles" | "accept" | "accessKey" | "accessKeyLabel" | "active" | "addEventListener" | "after" | "align" | "alt" | "animate" | "append" | "appendChild" | "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" | "assignedSlot" | "attachInternals" | "attachShadow" | "attributeStyleMap" | "attributes" | "autocapitalize" | "autocomplete" | "autofocus" | "baseURI" | "before" | "blur" | "capture" | "centerAffix" | "checkValidity" | "checkVisibility" | "checked" | "childElementCount" | "childNodes" | "children" | "classList" | "className" | "clearIcon" | "clearable" | "click" | "clientHeight" | "clientLeft" | "clientTop" | "clientWidth" | "cloneNode" | "closest" | "compareDocumentPosition" | "computedStyleMap" | "contains" | "contentEditable" | "controlRef" | "currentCSSZoom" | "dataset" | "defaultChecked" | "defaultValue" | "density" | "
|
|
10643
|
+
}, "ATTRIBUTE_NODE" | "CDATA_SECTION_NODE" | "COMMENT_NODE" | "DOCUMENT_FRAGMENT_NODE" | "DOCUMENT_NODE" | "DOCUMENT_POSITION_CONTAINED_BY" | "DOCUMENT_POSITION_CONTAINS" | "DOCUMENT_POSITION_DISCONNECTED" | "DOCUMENT_POSITION_FOLLOWING" | "DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC" | "DOCUMENT_POSITION_PRECEDING" | "DOCUMENT_TYPE_NODE" | "ELEMENT_NODE" | "ENTITY_NODE" | "ENTITY_REFERENCE_NODE" | "NOTATION_NODE" | "PROCESSING_INSTRUCTION_NODE" | "TEXT_NODE" | "_" | "_allExposed" | "_clickOutside" | "_mutate" | "_observe" | "_onResize" | "_onScroll" | "_ripple" | "_touchHandlers" | "_transitionInitialStyles" | "accept" | "accessKey" | "accessKeyLabel" | "active" | "addEventListener" | "after" | "align" | "alt" | "animate" | "append" | "appendChild" | "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" | "assignedSlot" | "attachInternals" | "attachShadow" | "attributeStyleMap" | "attributes" | "autocapitalize" | "autocomplete" | "autofocus" | "baseURI" | "before" | "blur" | "capture" | "centerAffix" | "checkValidity" | "checkVisibility" | "checked" | "childElementCount" | "childNodes" | "children" | "classList" | "className" | "clearIcon" | "clearable" | "click" | "clientHeight" | "clientLeft" | "clientTop" | "clientWidth" | "cloneNode" | "closest" | "compareDocumentPosition" | "computedStyleMap" | "contains" | "contentEditable" | "controlRef" | "currentCSSZoom" | "dataset" | "defaultChecked" | "defaultValue" | "density" | "dir" | "dirName" | "direction" | "dirty" | "disabled" | "dispatchEvent" | "draggable" | "enterKeyHint" | "error" | "errorMessages" | "fieldIconColor" | "files" | "firstChild" | "firstElementChild" | "flat" | "focus" | "focused" | "form" | "formAction" | "formEnctype" | "formMethod" | "formNoValidate" | "formTarget" | "getAnimations" | "getAttribute" | "getAttributeNS" | "getAttributeNames" | "getAttributeNode" | "getAttributeNodeNS" | "getBoundingClientRect" | "getClientRects" | "getElementsByClassName" | "getElementsByTagName" | "getElementsByTagNameNS" | "getHTML" | "getRootNode" | "glow" | "hasAttribute" | "hasAttributeNS" | "hasAttributes" | "hasChildNodes" | "hasPointerCapture" | "height" | "hidden" | "hidePopover" | "hideSpinButtons" | "id" | "indeterminate" | "inert" | "innerHTML" | "innerText" | "inputMode" | "insertAdjacentElement" | "insertAdjacentHTML" | "insertAdjacentText" | "insertBefore" | "isConnected" | "isContentEditable" | "isDefaultNamespace" | "isEqualNode" | "isSameNode" | "isValid" | "labels" | "lang" | "lastChild" | "lastElementChild" | "list" | "localName" | "lookupNamespaceURI" | "lookupPrefix" | "matches" | "max" | "maxErrors" | "maxLength" | "messages" | "min" | "minLength" | "multiple" | "name" | "namespaceURI" | "nextElementSibling" | "nextSibling" | "nodeName" | "nodeType" | "nodeValue" | "nonce" | "normalize" | "offsetHeight" | "offsetLeft" | "offsetParent" | "offsetTop" | "offsetWidth" | "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" | "onfullscreenchange" | "onfullscreenerror" | "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" | "outerHTML" | "outerText" | "ownerDocument" | "parentElement" | "parentNode" | "part" | "pattern" | "persistentClear" | "persistentCounter" | "persistentHint" | "persistentPlaceholder" | "placeholder" | "popover" | "popoverTargetAction" | "popoverTargetElement" | "prefix" | "prepend" | "previousElementSibling" | "previousSibling" | "querySelector" | "querySelectorAll" | "readOnly" | "readonly" | "releasePointerCapture" | "remove" | "removeAttribute" | "removeAttributeNS" | "removeAttributeNode" | "removeChild" | "removeEventListener" | "replaceChild" | "replaceChildren" | "replaceWith" | "reportValidity" | "requestFullscreen" | "requestPointerLock" | "required" | "reset" | "resetValidation" | "reverse" | "role" | "rounded" | "rules" | "scroll" | "scrollBy" | "scrollHeight" | "scrollIntoView" | "scrollLeft" | "scrollTo" | "scrollTop" | "scrollWidth" | "select" | "selectionDirection" | "selectionEnd" | "selectionStart" | "setAttribute" | "setAttributeNS" | "setAttributeNode" | "setAttributeNodeNS" | "setCustomValidity" | "setHTMLUnsafe" | "setPointerCapture" | "setRangeText" | "setSelectionRange" | "shadowRoot" | "showPicker" | "showPopover" | "singleLine" | "size" | "slot" | "spellcheck" | "src" | "step" | "stepDown" | "stepUp" | "style" | "tabIndex" | "tagName" | "textContent" | "tile" | "title" | "toggleAttribute" | "togglePopover" | "translate" | "type" | "useMap" | "validate" | "validationMessage" | "validity" | "value" | "valueAsDate" | "valueAsNumber" | "variant" | "webkitEntries" | "webkitMatchesSelector" | "webkitdirectory" | "width" | "willValidate" | "writingSuggestions"> & import("vue").ShallowUnwrapRef<HTMLInputElement & Omit<Omit<{
|
|
10672
10644
|
$: import("vue").ComponentInternalInstance;
|
|
10673
10645
|
$data: {};
|
|
10674
10646
|
$props: Partial<{
|
|
@@ -10923,7 +10895,6 @@ export declare const VAutocomplete: {
|
|
|
10923
10895
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
10924
10896
|
active: boolean;
|
|
10925
10897
|
centerAffix: boolean;
|
|
10926
|
-
details: boolean;
|
|
10927
10898
|
dirty: boolean;
|
|
10928
10899
|
disabled: boolean;
|
|
10929
10900
|
glow: boolean;
|
|
@@ -10933,6 +10904,7 @@ export declare const VAutocomplete: {
|
|
|
10933
10904
|
reverse: boolean;
|
|
10934
10905
|
singleLine: boolean;
|
|
10935
10906
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
10907
|
+
details: boolean;
|
|
10936
10908
|
}> & Omit<{
|
|
10937
10909
|
theme?: string | undefined;
|
|
10938
10910
|
class?: any;
|
|
@@ -10950,7 +10922,6 @@ export declare const VAutocomplete: {
|
|
|
10950
10922
|
centerAffix?: boolean | undefined;
|
|
10951
10923
|
color?: string | undefined;
|
|
10952
10924
|
baseColor?: string | undefined;
|
|
10953
|
-
details: boolean;
|
|
10954
10925
|
dirty: boolean;
|
|
10955
10926
|
disabled: boolean;
|
|
10956
10927
|
glow: boolean;
|
|
@@ -10967,6 +10938,7 @@ export declare const VAutocomplete: {
|
|
|
10967
10938
|
"onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
10968
10939
|
"onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
10969
10940
|
id?: string | undefined;
|
|
10941
|
+
details: boolean;
|
|
10970
10942
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "active" | "centerAffix" | "clearIcon" | "clearable" | "details" | "dirty" | "disabled" | "error" | "flat" | "focused" | "glow" | "persistentClear" | "reverse" | "rounded" | "singleLine" | "style" | "tile" | "variant">;
|
|
10971
10943
|
$attrs: {
|
|
10972
10944
|
[x: string]: unknown;
|
|
@@ -11011,7 +10983,6 @@ export declare const VAutocomplete: {
|
|
|
11011
10983
|
clearable: boolean;
|
|
11012
10984
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
11013
10985
|
active: boolean;
|
|
11014
|
-
details: boolean;
|
|
11015
10986
|
dirty: boolean;
|
|
11016
10987
|
disabled: boolean;
|
|
11017
10988
|
glow: boolean;
|
|
@@ -11021,6 +10992,7 @@ export declare const VAutocomplete: {
|
|
|
11021
10992
|
reverse: boolean;
|
|
11022
10993
|
singleLine: boolean;
|
|
11023
10994
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
10995
|
+
details: boolean;
|
|
11024
10996
|
} & {
|
|
11025
10997
|
theme?: string | undefined;
|
|
11026
10998
|
class?: any;
|
|
@@ -11056,7 +11028,6 @@ export declare const VAutocomplete: {
|
|
|
11056
11028
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
11057
11029
|
active: boolean;
|
|
11058
11030
|
centerAffix: boolean;
|
|
11059
|
-
details: boolean;
|
|
11060
11031
|
dirty: boolean;
|
|
11061
11032
|
disabled: boolean;
|
|
11062
11033
|
glow: boolean;
|
|
@@ -11066,6 +11037,7 @@ export declare const VAutocomplete: {
|
|
|
11066
11037
|
reverse: boolean;
|
|
11067
11038
|
singleLine: boolean;
|
|
11068
11039
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
11040
|
+
details: boolean;
|
|
11069
11041
|
}, {}, string, import("vue").SlotsType<Partial<{
|
|
11070
11042
|
clear: (arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
11071
11043
|
props: Record<string, any>;
|
|
@@ -11119,7 +11091,6 @@ export declare const VAutocomplete: {
|
|
|
11119
11091
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
11120
11092
|
active: boolean;
|
|
11121
11093
|
centerAffix: boolean;
|
|
11122
|
-
details: boolean;
|
|
11123
11094
|
dirty: boolean;
|
|
11124
11095
|
disabled: boolean;
|
|
11125
11096
|
glow: boolean;
|
|
@@ -11129,6 +11100,7 @@ export declare const VAutocomplete: {
|
|
|
11129
11100
|
reverse: boolean;
|
|
11130
11101
|
singleLine: boolean;
|
|
11131
11102
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
11103
|
+
details: boolean;
|
|
11132
11104
|
}> & Omit<{
|
|
11133
11105
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
11134
11106
|
focused: boolean;
|
|
@@ -11136,7 +11108,6 @@ export declare const VAutocomplete: {
|
|
|
11136
11108
|
clearable: boolean;
|
|
11137
11109
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
11138
11110
|
active: boolean;
|
|
11139
|
-
details: boolean;
|
|
11140
11111
|
dirty: boolean;
|
|
11141
11112
|
disabled: boolean;
|
|
11142
11113
|
glow: boolean;
|
|
@@ -11146,6 +11117,7 @@ export declare const VAutocomplete: {
|
|
|
11146
11117
|
reverse: boolean;
|
|
11147
11118
|
singleLine: boolean;
|
|
11148
11119
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
11120
|
+
details: boolean;
|
|
11149
11121
|
} & {
|
|
11150
11122
|
theme?: string | undefined;
|
|
11151
11123
|
class?: any;
|
|
@@ -11183,7 +11155,7 @@ export declare const VAutocomplete: {
|
|
|
11183
11155
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
11184
11156
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
|
11185
11157
|
} | {};
|
|
11186
|
-
}> & {} & import("vue").ComponentCustomProperties & {}, "$children" | "appendIcon" | "appendInnerIcon" | "autocomplete" | "baseColor" | "bgColor" | "class" | "color" | "counter" | "counterValue" | "hideDetails" | "hint" | "iconColor" | "id" | "label" | "loading" | "maxWidth" | "minWidth" | "modelModifiers" | "modelValue" | "name" | "onClick:append" | "onClick:appendInner" | "onClick:clear" | "onClick:control" | "onClick:prepend" | "onClick:prependInner" | "onMousedown:control" | "onUpdate:focused" | "onUpdate:modelValue" | "placeholder" | "prefix" | "prependIcon" | "prependInnerIcon" | "role" | "suffix" | "theme" | "v-slot:append" | "v-slot:append-inner" | "v-slot:clear" | "v-slot:counter" | "v-slot:default" | "v-slot:details" | "v-slot:label" | "v-slot:loader" | "v-slot:message" | "v-slot:prepend" | "v-slot:prepend-inner" | "v-slots" | "validateOn" | "validationValue" | "width" | ("active" | "autofocus" | "centerAffix" | "clearIcon" | "clearable" | "density" | "
|
|
11158
|
+
}> & {} & import("vue").ComponentCustomProperties & {}, "$children" | "appendIcon" | "appendInnerIcon" | "autocomplete" | "baseColor" | "bgColor" | "class" | "color" | "counter" | "counterValue" | "hideDetails" | "hint" | "iconColor" | "id" | "label" | "loading" | "maxWidth" | "minWidth" | "modelModifiers" | "modelValue" | "name" | "onClick:append" | "onClick:appendInner" | "onClick:clear" | "onClick:control" | "onClick:prepend" | "onClick:prependInner" | "onMousedown:control" | "onUpdate:focused" | "onUpdate:modelValue" | "placeholder" | "prefix" | "prependIcon" | "prependInnerIcon" | "role" | "suffix" | "theme" | "v-slot:append" | "v-slot:append-inner" | "v-slot:clear" | "v-slot:counter" | "v-slot:default" | "v-slot:details" | "v-slot:label" | "v-slot:loader" | "v-slot:message" | "v-slot:prepend" | "v-slot:prepend-inner" | "v-slots" | "validateOn" | "validationValue" | "width" | ("active" | "autofocus" | "centerAffix" | "clearIcon" | "clearable" | "density" | "direction" | "dirty" | "disabled" | "error" | "errorMessages" | "flat" | "focused" | "glow" | "hideSpinButtons" | "maxErrors" | "messages" | "persistentClear" | "persistentCounter" | "persistentHint" | "persistentPlaceholder" | "readonly" | "reverse" | "rounded" | "rules" | "singleLine" | "style" | "tile" | "type" | "variant") | keyof import("vue").VNodeProps>, `$${any}`> & {
|
|
11187
11159
|
_allExposed: {
|
|
11188
11160
|
isFocused: import("vue").ShallowRef<boolean, boolean>;
|
|
11189
11161
|
isPristine: import("vue").ShallowRef<boolean, boolean>;
|
|
@@ -11448,7 +11420,6 @@ export declare const VAutocomplete: {
|
|
|
11448
11420
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
11449
11421
|
active: boolean;
|
|
11450
11422
|
centerAffix: boolean;
|
|
11451
|
-
details: boolean;
|
|
11452
11423
|
dirty: boolean;
|
|
11453
11424
|
disabled: boolean;
|
|
11454
11425
|
glow: boolean;
|
|
@@ -11458,6 +11429,7 @@ export declare const VAutocomplete: {
|
|
|
11458
11429
|
reverse: boolean;
|
|
11459
11430
|
singleLine: boolean;
|
|
11460
11431
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
11432
|
+
details: boolean;
|
|
11461
11433
|
}> & Omit<{
|
|
11462
11434
|
theme?: string | undefined;
|
|
11463
11435
|
class?: any;
|
|
@@ -11475,7 +11447,6 @@ export declare const VAutocomplete: {
|
|
|
11475
11447
|
centerAffix?: boolean | undefined;
|
|
11476
11448
|
color?: string | undefined;
|
|
11477
11449
|
baseColor?: string | undefined;
|
|
11478
|
-
details: boolean;
|
|
11479
11450
|
dirty: boolean;
|
|
11480
11451
|
disabled: boolean;
|
|
11481
11452
|
glow: boolean;
|
|
@@ -11492,6 +11463,7 @@ export declare const VAutocomplete: {
|
|
|
11492
11463
|
"onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
11493
11464
|
"onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
11494
11465
|
id?: string | undefined;
|
|
11466
|
+
details: boolean;
|
|
11495
11467
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "active" | "centerAffix" | "clearIcon" | "clearable" | "details" | "dirty" | "disabled" | "error" | "flat" | "focused" | "glow" | "persistentClear" | "reverse" | "rounded" | "singleLine" | "style" | "tile" | "variant">;
|
|
11496
11468
|
$attrs: {
|
|
11497
11469
|
[x: string]: unknown;
|
|
@@ -11536,7 +11508,6 @@ export declare const VAutocomplete: {
|
|
|
11536
11508
|
clearable: boolean;
|
|
11537
11509
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
11538
11510
|
active: boolean;
|
|
11539
|
-
details: boolean;
|
|
11540
11511
|
dirty: boolean;
|
|
11541
11512
|
disabled: boolean;
|
|
11542
11513
|
glow: boolean;
|
|
@@ -11546,6 +11517,7 @@ export declare const VAutocomplete: {
|
|
|
11546
11517
|
reverse: boolean;
|
|
11547
11518
|
singleLine: boolean;
|
|
11548
11519
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
11520
|
+
details: boolean;
|
|
11549
11521
|
} & {
|
|
11550
11522
|
theme?: string | undefined;
|
|
11551
11523
|
class?: any;
|
|
@@ -11581,7 +11553,6 @@ export declare const VAutocomplete: {
|
|
|
11581
11553
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
11582
11554
|
active: boolean;
|
|
11583
11555
|
centerAffix: boolean;
|
|
11584
|
-
details: boolean;
|
|
11585
11556
|
dirty: boolean;
|
|
11586
11557
|
disabled: boolean;
|
|
11587
11558
|
glow: boolean;
|
|
@@ -11591,6 +11562,7 @@ export declare const VAutocomplete: {
|
|
|
11591
11562
|
reverse: boolean;
|
|
11592
11563
|
singleLine: boolean;
|
|
11593
11564
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
11565
|
+
details: boolean;
|
|
11594
11566
|
}, {}, string, import("vue").SlotsType<Partial<{
|
|
11595
11567
|
clear: (arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
11596
11568
|
props: Record<string, any>;
|
|
@@ -11644,7 +11616,6 @@ export declare const VAutocomplete: {
|
|
|
11644
11616
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
11645
11617
|
active: boolean;
|
|
11646
11618
|
centerAffix: boolean;
|
|
11647
|
-
details: boolean;
|
|
11648
11619
|
dirty: boolean;
|
|
11649
11620
|
disabled: boolean;
|
|
11650
11621
|
glow: boolean;
|
|
@@ -11654,6 +11625,7 @@ export declare const VAutocomplete: {
|
|
|
11654
11625
|
reverse: boolean;
|
|
11655
11626
|
singleLine: boolean;
|
|
11656
11627
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
11628
|
+
details: boolean;
|
|
11657
11629
|
}> & Omit<{
|
|
11658
11630
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
11659
11631
|
focused: boolean;
|
|
@@ -11661,7 +11633,6 @@ export declare const VAutocomplete: {
|
|
|
11661
11633
|
clearable: boolean;
|
|
11662
11634
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
11663
11635
|
active: boolean;
|
|
11664
|
-
details: boolean;
|
|
11665
11636
|
dirty: boolean;
|
|
11666
11637
|
disabled: boolean;
|
|
11667
11638
|
glow: boolean;
|
|
@@ -11671,6 +11642,7 @@ export declare const VAutocomplete: {
|
|
|
11671
11642
|
reverse: boolean;
|
|
11672
11643
|
singleLine: boolean;
|
|
11673
11644
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
11645
|
+
details: boolean;
|
|
11674
11646
|
} & {
|
|
11675
11647
|
theme?: string | undefined;
|
|
11676
11648
|
class?: any;
|
|
@@ -11737,7 +11709,6 @@ export declare const VAutocomplete: {
|
|
|
11737
11709
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
11738
11710
|
active: boolean;
|
|
11739
11711
|
centerAffix: boolean;
|
|
11740
|
-
details: boolean;
|
|
11741
11712
|
disabled: boolean;
|
|
11742
11713
|
glow: boolean;
|
|
11743
11714
|
error: boolean;
|
|
@@ -12024,7 +11995,6 @@ export declare const VAutocomplete: {
|
|
|
12024
11995
|
};
|
|
12025
11996
|
color: StringConstructor;
|
|
12026
11997
|
baseColor: StringConstructor;
|
|
12027
|
-
details: BooleanConstructor;
|
|
12028
11998
|
disabled: {
|
|
12029
11999
|
type: BooleanConstructor;
|
|
12030
12000
|
default: null;
|
|
@@ -12667,7 +12637,6 @@ export declare const VAutocomplete: {
|
|
|
12667
12637
|
};
|
|
12668
12638
|
color: StringConstructor;
|
|
12669
12639
|
baseColor: StringConstructor;
|
|
12670
|
-
details: BooleanConstructor;
|
|
12671
12640
|
disabled: {
|
|
12672
12641
|
type: BooleanConstructor;
|
|
12673
12642
|
default: null;
|