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
|
@@ -25,7 +25,6 @@ export declare const VNumberInput: {
|
|
|
25
25
|
clearable: boolean;
|
|
26
26
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
27
27
|
active: boolean;
|
|
28
|
-
details: boolean;
|
|
29
28
|
dirty: boolean;
|
|
30
29
|
disabled: boolean;
|
|
31
30
|
glow: boolean;
|
|
@@ -169,7 +168,6 @@ export declare const VNumberInput: {
|
|
|
169
168
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
170
169
|
active: boolean;
|
|
171
170
|
centerAffix: boolean;
|
|
172
|
-
details: boolean;
|
|
173
171
|
dirty: boolean;
|
|
174
172
|
disabled: boolean;
|
|
175
173
|
glow: boolean;
|
|
@@ -261,7 +259,6 @@ export declare const VNumberInput: {
|
|
|
261
259
|
centerAffix?: boolean | undefined;
|
|
262
260
|
color?: string | undefined;
|
|
263
261
|
baseColor?: string | undefined;
|
|
264
|
-
details: boolean;
|
|
265
262
|
dirty: boolean;
|
|
266
263
|
disabled: boolean;
|
|
267
264
|
glow: boolean;
|
|
@@ -308,7 +305,7 @@ export declare const VNumberInput: {
|
|
|
308
305
|
"v-slot:message"?: false | ((arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNodeChild) | undefined;
|
|
309
306
|
"v-slot:prepend"?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
310
307
|
"v-slot:prepend-inner"?: false | ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
311
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "active" | "autofocus" | "centerAffix" | "clearIcon" | "clearable" | "density" | "
|
|
308
|
+
} & 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">;
|
|
312
309
|
$attrs: {
|
|
313
310
|
[x: string]: unknown;
|
|
314
311
|
};
|
|
@@ -376,7 +373,6 @@ export declare const VNumberInput: {
|
|
|
376
373
|
clearable: boolean;
|
|
377
374
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
378
375
|
active: boolean;
|
|
379
|
-
details: boolean;
|
|
380
376
|
dirty: boolean;
|
|
381
377
|
disabled: boolean;
|
|
382
378
|
glow: boolean;
|
|
@@ -745,7 +741,6 @@ export declare const VNumberInput: {
|
|
|
745
741
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
746
742
|
active: boolean;
|
|
747
743
|
centerAffix: boolean;
|
|
748
|
-
details: boolean;
|
|
749
744
|
dirty: boolean;
|
|
750
745
|
disabled: boolean;
|
|
751
746
|
glow: boolean;
|
|
@@ -755,6 +750,7 @@ export declare const VNumberInput: {
|
|
|
755
750
|
reverse: boolean;
|
|
756
751
|
singleLine: boolean;
|
|
757
752
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
753
|
+
details: boolean;
|
|
758
754
|
}> & Omit<{
|
|
759
755
|
theme?: string | undefined;
|
|
760
756
|
class?: any;
|
|
@@ -772,7 +768,6 @@ export declare const VNumberInput: {
|
|
|
772
768
|
centerAffix?: boolean | undefined;
|
|
773
769
|
color?: string | undefined;
|
|
774
770
|
baseColor?: string | undefined;
|
|
775
|
-
details: boolean;
|
|
776
771
|
dirty: boolean;
|
|
777
772
|
disabled: boolean;
|
|
778
773
|
glow: boolean;
|
|
@@ -789,6 +784,7 @@ export declare const VNumberInput: {
|
|
|
789
784
|
"onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
790
785
|
"onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
791
786
|
id?: string | undefined;
|
|
787
|
+
details: boolean;
|
|
792
788
|
} & 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">;
|
|
793
789
|
$attrs: {
|
|
794
790
|
[x: string]: unknown;
|
|
@@ -833,7 +829,6 @@ export declare const VNumberInput: {
|
|
|
833
829
|
clearable: boolean;
|
|
834
830
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
835
831
|
active: boolean;
|
|
836
|
-
details: boolean;
|
|
837
832
|
dirty: boolean;
|
|
838
833
|
disabled: boolean;
|
|
839
834
|
glow: boolean;
|
|
@@ -843,6 +838,7 @@ export declare const VNumberInput: {
|
|
|
843
838
|
reverse: boolean;
|
|
844
839
|
singleLine: boolean;
|
|
845
840
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
841
|
+
details: boolean;
|
|
846
842
|
} & {
|
|
847
843
|
theme?: string | undefined;
|
|
848
844
|
class?: any;
|
|
@@ -878,7 +874,6 @@ export declare const VNumberInput: {
|
|
|
878
874
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
879
875
|
active: boolean;
|
|
880
876
|
centerAffix: boolean;
|
|
881
|
-
details: boolean;
|
|
882
877
|
dirty: boolean;
|
|
883
878
|
disabled: boolean;
|
|
884
879
|
glow: boolean;
|
|
@@ -888,6 +883,7 @@ export declare const VNumberInput: {
|
|
|
888
883
|
reverse: boolean;
|
|
889
884
|
singleLine: boolean;
|
|
890
885
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
886
|
+
details: boolean;
|
|
891
887
|
}, {}, string, import("vue").SlotsType<Partial<{
|
|
892
888
|
clear: (arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
893
889
|
props: Record<string, any>;
|
|
@@ -941,7 +937,6 @@ export declare const VNumberInput: {
|
|
|
941
937
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
942
938
|
active: boolean;
|
|
943
939
|
centerAffix: boolean;
|
|
944
|
-
details: boolean;
|
|
945
940
|
dirty: boolean;
|
|
946
941
|
disabled: boolean;
|
|
947
942
|
glow: boolean;
|
|
@@ -951,6 +946,7 @@ export declare const VNumberInput: {
|
|
|
951
946
|
reverse: boolean;
|
|
952
947
|
singleLine: boolean;
|
|
953
948
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
949
|
+
details: boolean;
|
|
954
950
|
}> & Omit<{
|
|
955
951
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
956
952
|
focused: boolean;
|
|
@@ -958,7 +954,6 @@ export declare const VNumberInput: {
|
|
|
958
954
|
clearable: boolean;
|
|
959
955
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
960
956
|
active: boolean;
|
|
961
|
-
details: boolean;
|
|
962
957
|
dirty: boolean;
|
|
963
958
|
disabled: boolean;
|
|
964
959
|
glow: boolean;
|
|
@@ -968,6 +963,7 @@ export declare const VNumberInput: {
|
|
|
968
963
|
reverse: boolean;
|
|
969
964
|
singleLine: boolean;
|
|
970
965
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
966
|
+
details: boolean;
|
|
971
967
|
} & {
|
|
972
968
|
theme?: string | undefined;
|
|
973
969
|
class?: any;
|
|
@@ -1028,7 +1024,6 @@ export declare const VNumberInput: {
|
|
|
1028
1024
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
1029
1025
|
active: boolean;
|
|
1030
1026
|
centerAffix: boolean;
|
|
1031
|
-
details: boolean;
|
|
1032
1027
|
dirty: boolean;
|
|
1033
1028
|
disabled: boolean;
|
|
1034
1029
|
glow: boolean;
|
|
@@ -1119,7 +1114,6 @@ export declare const VNumberInput: {
|
|
|
1119
1114
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
1120
1115
|
active: boolean;
|
|
1121
1116
|
centerAffix: boolean;
|
|
1122
|
-
details: boolean;
|
|
1123
1117
|
dirty: boolean;
|
|
1124
1118
|
disabled: boolean;
|
|
1125
1119
|
glow: boolean;
|
|
@@ -1149,7 +1143,6 @@ export declare const VNumberInput: {
|
|
|
1149
1143
|
clearable: boolean;
|
|
1150
1144
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
1151
1145
|
active: boolean;
|
|
1152
|
-
details: boolean;
|
|
1153
1146
|
dirty: boolean;
|
|
1154
1147
|
disabled: boolean;
|
|
1155
1148
|
glow: boolean;
|
|
@@ -1263,7 +1256,7 @@ export declare const VNumberInput: {
|
|
|
1263
1256
|
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
|
1264
1257
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
1265
1258
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
|
1266
|
-
}, "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" | "
|
|
1259
|
+
}, "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<{
|
|
1267
1260
|
$: import("vue").ComponentInternalInstance;
|
|
1268
1261
|
$data: {};
|
|
1269
1262
|
$props: Partial<{
|
|
@@ -1518,7 +1511,6 @@ export declare const VNumberInput: {
|
|
|
1518
1511
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
1519
1512
|
active: boolean;
|
|
1520
1513
|
centerAffix: boolean;
|
|
1521
|
-
details: boolean;
|
|
1522
1514
|
dirty: boolean;
|
|
1523
1515
|
disabled: boolean;
|
|
1524
1516
|
glow: boolean;
|
|
@@ -1528,6 +1520,7 @@ export declare const VNumberInput: {
|
|
|
1528
1520
|
reverse: boolean;
|
|
1529
1521
|
singleLine: boolean;
|
|
1530
1522
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
1523
|
+
details: boolean;
|
|
1531
1524
|
}> & Omit<{
|
|
1532
1525
|
theme?: string | undefined;
|
|
1533
1526
|
class?: any;
|
|
@@ -1545,7 +1538,6 @@ export declare const VNumberInput: {
|
|
|
1545
1538
|
centerAffix?: boolean | undefined;
|
|
1546
1539
|
color?: string | undefined;
|
|
1547
1540
|
baseColor?: string | undefined;
|
|
1548
|
-
details: boolean;
|
|
1549
1541
|
dirty: boolean;
|
|
1550
1542
|
disabled: boolean;
|
|
1551
1543
|
glow: boolean;
|
|
@@ -1562,6 +1554,7 @@ export declare const VNumberInput: {
|
|
|
1562
1554
|
"onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
1563
1555
|
"onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
1564
1556
|
id?: string | undefined;
|
|
1557
|
+
details: boolean;
|
|
1565
1558
|
} & 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">;
|
|
1566
1559
|
$attrs: {
|
|
1567
1560
|
[x: string]: unknown;
|
|
@@ -1606,7 +1599,6 @@ export declare const VNumberInput: {
|
|
|
1606
1599
|
clearable: boolean;
|
|
1607
1600
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
1608
1601
|
active: boolean;
|
|
1609
|
-
details: boolean;
|
|
1610
1602
|
dirty: boolean;
|
|
1611
1603
|
disabled: boolean;
|
|
1612
1604
|
glow: boolean;
|
|
@@ -1616,6 +1608,7 @@ export declare const VNumberInput: {
|
|
|
1616
1608
|
reverse: boolean;
|
|
1617
1609
|
singleLine: boolean;
|
|
1618
1610
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
1611
|
+
details: boolean;
|
|
1619
1612
|
} & {
|
|
1620
1613
|
theme?: string | undefined;
|
|
1621
1614
|
class?: any;
|
|
@@ -1651,7 +1644,6 @@ export declare const VNumberInput: {
|
|
|
1651
1644
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
1652
1645
|
active: boolean;
|
|
1653
1646
|
centerAffix: boolean;
|
|
1654
|
-
details: boolean;
|
|
1655
1647
|
dirty: boolean;
|
|
1656
1648
|
disabled: boolean;
|
|
1657
1649
|
glow: boolean;
|
|
@@ -1661,6 +1653,7 @@ export declare const VNumberInput: {
|
|
|
1661
1653
|
reverse: boolean;
|
|
1662
1654
|
singleLine: boolean;
|
|
1663
1655
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
1656
|
+
details: boolean;
|
|
1664
1657
|
}, {}, string, import("vue").SlotsType<Partial<{
|
|
1665
1658
|
clear: (arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
1666
1659
|
props: Record<string, any>;
|
|
@@ -1714,7 +1707,6 @@ export declare const VNumberInput: {
|
|
|
1714
1707
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
1715
1708
|
active: boolean;
|
|
1716
1709
|
centerAffix: boolean;
|
|
1717
|
-
details: boolean;
|
|
1718
1710
|
dirty: boolean;
|
|
1719
1711
|
disabled: boolean;
|
|
1720
1712
|
glow: boolean;
|
|
@@ -1724,6 +1716,7 @@ export declare const VNumberInput: {
|
|
|
1724
1716
|
reverse: boolean;
|
|
1725
1717
|
singleLine: boolean;
|
|
1726
1718
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
1719
|
+
details: boolean;
|
|
1727
1720
|
}> & Omit<{
|
|
1728
1721
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
1729
1722
|
focused: boolean;
|
|
@@ -1731,7 +1724,6 @@ export declare const VNumberInput: {
|
|
|
1731
1724
|
clearable: boolean;
|
|
1732
1725
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
1733
1726
|
active: boolean;
|
|
1734
|
-
details: boolean;
|
|
1735
1727
|
dirty: boolean;
|
|
1736
1728
|
disabled: boolean;
|
|
1737
1729
|
glow: boolean;
|
|
@@ -1741,6 +1733,7 @@ export declare const VNumberInput: {
|
|
|
1741
1733
|
reverse: boolean;
|
|
1742
1734
|
singleLine: boolean;
|
|
1743
1735
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
1736
|
+
details: boolean;
|
|
1744
1737
|
} & {
|
|
1745
1738
|
theme?: string | undefined;
|
|
1746
1739
|
class?: any;
|
|
@@ -1778,7 +1771,7 @@ export declare const VNumberInput: {
|
|
|
1778
1771
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
1779
1772
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
|
1780
1773
|
} | {};
|
|
1781
|
-
}> & {} & 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" | "
|
|
1774
|
+
}> & {} & 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}`> & {
|
|
1782
1775
|
_allExposed: {} | (HTMLInputElement & Omit<Omit<{
|
|
1783
1776
|
$: import("vue").ComponentInternalInstance;
|
|
1784
1777
|
$data: {};
|
|
@@ -2034,7 +2027,6 @@ export declare const VNumberInput: {
|
|
|
2034
2027
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
2035
2028
|
active: boolean;
|
|
2036
2029
|
centerAffix: boolean;
|
|
2037
|
-
details: boolean;
|
|
2038
2030
|
dirty: boolean;
|
|
2039
2031
|
disabled: boolean;
|
|
2040
2032
|
glow: boolean;
|
|
@@ -2044,6 +2036,7 @@ export declare const VNumberInput: {
|
|
|
2044
2036
|
reverse: boolean;
|
|
2045
2037
|
singleLine: boolean;
|
|
2046
2038
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
2039
|
+
details: boolean;
|
|
2047
2040
|
}> & Omit<{
|
|
2048
2041
|
theme?: string | undefined;
|
|
2049
2042
|
class?: any;
|
|
@@ -2061,7 +2054,6 @@ export declare const VNumberInput: {
|
|
|
2061
2054
|
centerAffix?: boolean | undefined;
|
|
2062
2055
|
color?: string | undefined;
|
|
2063
2056
|
baseColor?: string | undefined;
|
|
2064
|
-
details: boolean;
|
|
2065
2057
|
dirty: boolean;
|
|
2066
2058
|
disabled: boolean;
|
|
2067
2059
|
glow: boolean;
|
|
@@ -2078,6 +2070,7 @@ export declare const VNumberInput: {
|
|
|
2078
2070
|
"onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
2079
2071
|
"onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
2080
2072
|
id?: string | undefined;
|
|
2073
|
+
details: boolean;
|
|
2081
2074
|
} & 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">;
|
|
2082
2075
|
$attrs: {
|
|
2083
2076
|
[x: string]: unknown;
|
|
@@ -2122,7 +2115,6 @@ export declare const VNumberInput: {
|
|
|
2122
2115
|
clearable: boolean;
|
|
2123
2116
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
2124
2117
|
active: boolean;
|
|
2125
|
-
details: boolean;
|
|
2126
2118
|
dirty: boolean;
|
|
2127
2119
|
disabled: boolean;
|
|
2128
2120
|
glow: boolean;
|
|
@@ -2132,6 +2124,7 @@ export declare const VNumberInput: {
|
|
|
2132
2124
|
reverse: boolean;
|
|
2133
2125
|
singleLine: boolean;
|
|
2134
2126
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
2127
|
+
details: boolean;
|
|
2135
2128
|
} & {
|
|
2136
2129
|
theme?: string | undefined;
|
|
2137
2130
|
class?: any;
|
|
@@ -2167,7 +2160,6 @@ export declare const VNumberInput: {
|
|
|
2167
2160
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
2168
2161
|
active: boolean;
|
|
2169
2162
|
centerAffix: boolean;
|
|
2170
|
-
details: boolean;
|
|
2171
2163
|
dirty: boolean;
|
|
2172
2164
|
disabled: boolean;
|
|
2173
2165
|
glow: boolean;
|
|
@@ -2177,6 +2169,7 @@ export declare const VNumberInput: {
|
|
|
2177
2169
|
reverse: boolean;
|
|
2178
2170
|
singleLine: boolean;
|
|
2179
2171
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
2172
|
+
details: boolean;
|
|
2180
2173
|
}, {}, string, import("vue").SlotsType<Partial<{
|
|
2181
2174
|
clear: (arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
2182
2175
|
props: Record<string, any>;
|
|
@@ -2230,7 +2223,6 @@ export declare const VNumberInput: {
|
|
|
2230
2223
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
2231
2224
|
active: boolean;
|
|
2232
2225
|
centerAffix: boolean;
|
|
2233
|
-
details: boolean;
|
|
2234
2226
|
dirty: boolean;
|
|
2235
2227
|
disabled: boolean;
|
|
2236
2228
|
glow: boolean;
|
|
@@ -2240,6 +2232,7 @@ export declare const VNumberInput: {
|
|
|
2240
2232
|
reverse: boolean;
|
|
2241
2233
|
singleLine: boolean;
|
|
2242
2234
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
2235
|
+
details: boolean;
|
|
2243
2236
|
}> & Omit<{
|
|
2244
2237
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
2245
2238
|
focused: boolean;
|
|
@@ -2247,7 +2240,6 @@ export declare const VNumberInput: {
|
|
|
2247
2240
|
clearable: boolean;
|
|
2248
2241
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
2249
2242
|
active: boolean;
|
|
2250
|
-
details: boolean;
|
|
2251
2243
|
dirty: boolean;
|
|
2252
2244
|
disabled: boolean;
|
|
2253
2245
|
glow: boolean;
|
|
@@ -2257,6 +2249,7 @@ export declare const VNumberInput: {
|
|
|
2257
2249
|
reverse: boolean;
|
|
2258
2250
|
singleLine: boolean;
|
|
2259
2251
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
2252
|
+
details: boolean;
|
|
2260
2253
|
} & {
|
|
2261
2254
|
theme?: string | undefined;
|
|
2262
2255
|
class?: any;
|
|
@@ -2316,7 +2309,6 @@ export declare const VNumberInput: {
|
|
|
2316
2309
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
2317
2310
|
active: boolean;
|
|
2318
2311
|
centerAffix: boolean;
|
|
2319
|
-
details: boolean;
|
|
2320
2312
|
dirty: boolean;
|
|
2321
2313
|
disabled: boolean;
|
|
2322
2314
|
glow: boolean;
|
|
@@ -2404,7 +2396,6 @@ export declare const VNumberInput: {
|
|
|
2404
2396
|
clearable: boolean;
|
|
2405
2397
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
2406
2398
|
active: boolean;
|
|
2407
|
-
details: boolean;
|
|
2408
2399
|
dirty: boolean;
|
|
2409
2400
|
disabled: boolean;
|
|
2410
2401
|
glow: boolean;
|
|
@@ -2548,7 +2539,6 @@ export declare const VNumberInput: {
|
|
|
2548
2539
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
2549
2540
|
active: boolean;
|
|
2550
2541
|
centerAffix: boolean;
|
|
2551
|
-
details: boolean;
|
|
2552
2542
|
dirty: boolean;
|
|
2553
2543
|
disabled: boolean;
|
|
2554
2544
|
glow: boolean;
|
|
@@ -2640,7 +2630,6 @@ export declare const VNumberInput: {
|
|
|
2640
2630
|
centerAffix?: boolean | undefined;
|
|
2641
2631
|
color?: string | undefined;
|
|
2642
2632
|
baseColor?: string | undefined;
|
|
2643
|
-
details: boolean;
|
|
2644
2633
|
dirty: boolean;
|
|
2645
2634
|
disabled: boolean;
|
|
2646
2635
|
glow: boolean;
|
|
@@ -2687,7 +2676,7 @@ export declare const VNumberInput: {
|
|
|
2687
2676
|
"v-slot:message"?: false | ((arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNodeChild) | undefined;
|
|
2688
2677
|
"v-slot:prepend"?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
2689
2678
|
"v-slot:prepend-inner"?: false | ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
2690
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "active" | "autofocus" | "centerAffix" | "clearIcon" | "clearable" | "density" | "
|
|
2679
|
+
} & 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">;
|
|
2691
2680
|
$attrs: {
|
|
2692
2681
|
[x: string]: unknown;
|
|
2693
2682
|
};
|
|
@@ -2755,7 +2744,6 @@ export declare const VNumberInput: {
|
|
|
2755
2744
|
clearable: boolean;
|
|
2756
2745
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
2757
2746
|
active: boolean;
|
|
2758
|
-
details: boolean;
|
|
2759
2747
|
dirty: boolean;
|
|
2760
2748
|
disabled: boolean;
|
|
2761
2749
|
glow: boolean;
|
|
@@ -3124,7 +3112,6 @@ export declare const VNumberInput: {
|
|
|
3124
3112
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
3125
3113
|
active: boolean;
|
|
3126
3114
|
centerAffix: boolean;
|
|
3127
|
-
details: boolean;
|
|
3128
3115
|
dirty: boolean;
|
|
3129
3116
|
disabled: boolean;
|
|
3130
3117
|
glow: boolean;
|
|
@@ -3134,6 +3121,7 @@ export declare const VNumberInput: {
|
|
|
3134
3121
|
reverse: boolean;
|
|
3135
3122
|
singleLine: boolean;
|
|
3136
3123
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
3124
|
+
details: boolean;
|
|
3137
3125
|
}> & Omit<{
|
|
3138
3126
|
theme?: string | undefined;
|
|
3139
3127
|
class?: any;
|
|
@@ -3151,7 +3139,6 @@ export declare const VNumberInput: {
|
|
|
3151
3139
|
centerAffix?: boolean | undefined;
|
|
3152
3140
|
color?: string | undefined;
|
|
3153
3141
|
baseColor?: string | undefined;
|
|
3154
|
-
details: boolean;
|
|
3155
3142
|
dirty: boolean;
|
|
3156
3143
|
disabled: boolean;
|
|
3157
3144
|
glow: boolean;
|
|
@@ -3168,6 +3155,7 @@ export declare const VNumberInput: {
|
|
|
3168
3155
|
"onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
3169
3156
|
"onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
3170
3157
|
id?: string | undefined;
|
|
3158
|
+
details: boolean;
|
|
3171
3159
|
} & 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">;
|
|
3172
3160
|
$attrs: {
|
|
3173
3161
|
[x: string]: unknown;
|
|
@@ -3212,7 +3200,6 @@ export declare const VNumberInput: {
|
|
|
3212
3200
|
clearable: boolean;
|
|
3213
3201
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
3214
3202
|
active: boolean;
|
|
3215
|
-
details: boolean;
|
|
3216
3203
|
dirty: boolean;
|
|
3217
3204
|
disabled: boolean;
|
|
3218
3205
|
glow: boolean;
|
|
@@ -3222,6 +3209,7 @@ export declare const VNumberInput: {
|
|
|
3222
3209
|
reverse: boolean;
|
|
3223
3210
|
singleLine: boolean;
|
|
3224
3211
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
3212
|
+
details: boolean;
|
|
3225
3213
|
} & {
|
|
3226
3214
|
theme?: string | undefined;
|
|
3227
3215
|
class?: any;
|
|
@@ -3257,7 +3245,6 @@ export declare const VNumberInput: {
|
|
|
3257
3245
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
3258
3246
|
active: boolean;
|
|
3259
3247
|
centerAffix: boolean;
|
|
3260
|
-
details: boolean;
|
|
3261
3248
|
dirty: boolean;
|
|
3262
3249
|
disabled: boolean;
|
|
3263
3250
|
glow: boolean;
|
|
@@ -3267,6 +3254,7 @@ export declare const VNumberInput: {
|
|
|
3267
3254
|
reverse: boolean;
|
|
3268
3255
|
singleLine: boolean;
|
|
3269
3256
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
3257
|
+
details: boolean;
|
|
3270
3258
|
}, {}, string, import("vue").SlotsType<Partial<{
|
|
3271
3259
|
clear: (arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
3272
3260
|
props: Record<string, any>;
|
|
@@ -3320,7 +3308,6 @@ export declare const VNumberInput: {
|
|
|
3320
3308
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
3321
3309
|
active: boolean;
|
|
3322
3310
|
centerAffix: boolean;
|
|
3323
|
-
details: boolean;
|
|
3324
3311
|
dirty: boolean;
|
|
3325
3312
|
disabled: boolean;
|
|
3326
3313
|
glow: boolean;
|
|
@@ -3330,6 +3317,7 @@ export declare const VNumberInput: {
|
|
|
3330
3317
|
reverse: boolean;
|
|
3331
3318
|
singleLine: boolean;
|
|
3332
3319
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
3320
|
+
details: boolean;
|
|
3333
3321
|
}> & Omit<{
|
|
3334
3322
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
3335
3323
|
focused: boolean;
|
|
@@ -3337,7 +3325,6 @@ export declare const VNumberInput: {
|
|
|
3337
3325
|
clearable: boolean;
|
|
3338
3326
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
3339
3327
|
active: boolean;
|
|
3340
|
-
details: boolean;
|
|
3341
3328
|
dirty: boolean;
|
|
3342
3329
|
disabled: boolean;
|
|
3343
3330
|
glow: boolean;
|
|
@@ -3347,6 +3334,7 @@ export declare const VNumberInput: {
|
|
|
3347
3334
|
reverse: boolean;
|
|
3348
3335
|
singleLine: boolean;
|
|
3349
3336
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
3337
|
+
details: boolean;
|
|
3350
3338
|
} & {
|
|
3351
3339
|
theme?: string | undefined;
|
|
3352
3340
|
class?: any;
|
|
@@ -3407,7 +3395,6 @@ export declare const VNumberInput: {
|
|
|
3407
3395
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
3408
3396
|
active: boolean;
|
|
3409
3397
|
centerAffix: boolean;
|
|
3410
|
-
details: boolean;
|
|
3411
3398
|
dirty: boolean;
|
|
3412
3399
|
disabled: boolean;
|
|
3413
3400
|
glow: boolean;
|
|
@@ -3498,7 +3485,6 @@ export declare const VNumberInput: {
|
|
|
3498
3485
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
3499
3486
|
active: boolean;
|
|
3500
3487
|
centerAffix: boolean;
|
|
3501
|
-
details: boolean;
|
|
3502
3488
|
dirty: boolean;
|
|
3503
3489
|
disabled: boolean;
|
|
3504
3490
|
glow: boolean;
|
|
@@ -3528,7 +3514,6 @@ export declare const VNumberInput: {
|
|
|
3528
3514
|
clearable: boolean;
|
|
3529
3515
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
3530
3516
|
active: boolean;
|
|
3531
|
-
details: boolean;
|
|
3532
3517
|
dirty: boolean;
|
|
3533
3518
|
disabled: boolean;
|
|
3534
3519
|
glow: boolean;
|
|
@@ -3642,7 +3627,7 @@ export declare const VNumberInput: {
|
|
|
3642
3627
|
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
|
3643
3628
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
3644
3629
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
|
3645
|
-
}, "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" | "
|
|
3630
|
+
}, "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<{
|
|
3646
3631
|
$: import("vue").ComponentInternalInstance;
|
|
3647
3632
|
$data: {};
|
|
3648
3633
|
$props: Partial<{
|
|
@@ -3897,7 +3882,6 @@ export declare const VNumberInput: {
|
|
|
3897
3882
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
3898
3883
|
active: boolean;
|
|
3899
3884
|
centerAffix: boolean;
|
|
3900
|
-
details: boolean;
|
|
3901
3885
|
dirty: boolean;
|
|
3902
3886
|
disabled: boolean;
|
|
3903
3887
|
glow: boolean;
|
|
@@ -3907,6 +3891,7 @@ export declare const VNumberInput: {
|
|
|
3907
3891
|
reverse: boolean;
|
|
3908
3892
|
singleLine: boolean;
|
|
3909
3893
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
3894
|
+
details: boolean;
|
|
3910
3895
|
}> & Omit<{
|
|
3911
3896
|
theme?: string | undefined;
|
|
3912
3897
|
class?: any;
|
|
@@ -3924,7 +3909,6 @@ export declare const VNumberInput: {
|
|
|
3924
3909
|
centerAffix?: boolean | undefined;
|
|
3925
3910
|
color?: string | undefined;
|
|
3926
3911
|
baseColor?: string | undefined;
|
|
3927
|
-
details: boolean;
|
|
3928
3912
|
dirty: boolean;
|
|
3929
3913
|
disabled: boolean;
|
|
3930
3914
|
glow: boolean;
|
|
@@ -3941,6 +3925,7 @@ export declare const VNumberInput: {
|
|
|
3941
3925
|
"onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
3942
3926
|
"onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
3943
3927
|
id?: string | undefined;
|
|
3928
|
+
details: boolean;
|
|
3944
3929
|
} & 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">;
|
|
3945
3930
|
$attrs: {
|
|
3946
3931
|
[x: string]: unknown;
|
|
@@ -3985,7 +3970,6 @@ export declare const VNumberInput: {
|
|
|
3985
3970
|
clearable: boolean;
|
|
3986
3971
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
3987
3972
|
active: boolean;
|
|
3988
|
-
details: boolean;
|
|
3989
3973
|
dirty: boolean;
|
|
3990
3974
|
disabled: boolean;
|
|
3991
3975
|
glow: boolean;
|
|
@@ -3995,6 +3979,7 @@ export declare const VNumberInput: {
|
|
|
3995
3979
|
reverse: boolean;
|
|
3996
3980
|
singleLine: boolean;
|
|
3997
3981
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
3982
|
+
details: boolean;
|
|
3998
3983
|
} & {
|
|
3999
3984
|
theme?: string | undefined;
|
|
4000
3985
|
class?: any;
|
|
@@ -4030,7 +4015,6 @@ export declare const VNumberInput: {
|
|
|
4030
4015
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
4031
4016
|
active: boolean;
|
|
4032
4017
|
centerAffix: boolean;
|
|
4033
|
-
details: boolean;
|
|
4034
4018
|
dirty: boolean;
|
|
4035
4019
|
disabled: boolean;
|
|
4036
4020
|
glow: boolean;
|
|
@@ -4040,6 +4024,7 @@ export declare const VNumberInput: {
|
|
|
4040
4024
|
reverse: boolean;
|
|
4041
4025
|
singleLine: boolean;
|
|
4042
4026
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
4027
|
+
details: boolean;
|
|
4043
4028
|
}, {}, string, import("vue").SlotsType<Partial<{
|
|
4044
4029
|
clear: (arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
4045
4030
|
props: Record<string, any>;
|
|
@@ -4093,7 +4078,6 @@ export declare const VNumberInput: {
|
|
|
4093
4078
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
4094
4079
|
active: boolean;
|
|
4095
4080
|
centerAffix: boolean;
|
|
4096
|
-
details: boolean;
|
|
4097
4081
|
dirty: boolean;
|
|
4098
4082
|
disabled: boolean;
|
|
4099
4083
|
glow: boolean;
|
|
@@ -4103,6 +4087,7 @@ export declare const VNumberInput: {
|
|
|
4103
4087
|
reverse: boolean;
|
|
4104
4088
|
singleLine: boolean;
|
|
4105
4089
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
4090
|
+
details: boolean;
|
|
4106
4091
|
}> & Omit<{
|
|
4107
4092
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
4108
4093
|
focused: boolean;
|
|
@@ -4110,7 +4095,6 @@ export declare const VNumberInput: {
|
|
|
4110
4095
|
clearable: boolean;
|
|
4111
4096
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
4112
4097
|
active: boolean;
|
|
4113
|
-
details: boolean;
|
|
4114
4098
|
dirty: boolean;
|
|
4115
4099
|
disabled: boolean;
|
|
4116
4100
|
glow: boolean;
|
|
@@ -4120,6 +4104,7 @@ export declare const VNumberInput: {
|
|
|
4120
4104
|
reverse: boolean;
|
|
4121
4105
|
singleLine: boolean;
|
|
4122
4106
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
4107
|
+
details: boolean;
|
|
4123
4108
|
} & {
|
|
4124
4109
|
theme?: string | undefined;
|
|
4125
4110
|
class?: any;
|
|
@@ -4157,7 +4142,7 @@ export declare const VNumberInput: {
|
|
|
4157
4142
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
4158
4143
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
|
4159
4144
|
} | {};
|
|
4160
|
-
}> & {} & 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" | "
|
|
4145
|
+
}> & {} & 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}`> & {
|
|
4161
4146
|
_allExposed: {} | (HTMLInputElement & Omit<Omit<{
|
|
4162
4147
|
$: import("vue").ComponentInternalInstance;
|
|
4163
4148
|
$data: {};
|
|
@@ -4413,7 +4398,6 @@ export declare const VNumberInput: {
|
|
|
4413
4398
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
4414
4399
|
active: boolean;
|
|
4415
4400
|
centerAffix: boolean;
|
|
4416
|
-
details: boolean;
|
|
4417
4401
|
dirty: boolean;
|
|
4418
4402
|
disabled: boolean;
|
|
4419
4403
|
glow: boolean;
|
|
@@ -4423,6 +4407,7 @@ export declare const VNumberInput: {
|
|
|
4423
4407
|
reverse: boolean;
|
|
4424
4408
|
singleLine: boolean;
|
|
4425
4409
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
4410
|
+
details: boolean;
|
|
4426
4411
|
}> & Omit<{
|
|
4427
4412
|
theme?: string | undefined;
|
|
4428
4413
|
class?: any;
|
|
@@ -4440,7 +4425,6 @@ export declare const VNumberInput: {
|
|
|
4440
4425
|
centerAffix?: boolean | undefined;
|
|
4441
4426
|
color?: string | undefined;
|
|
4442
4427
|
baseColor?: string | undefined;
|
|
4443
|
-
details: boolean;
|
|
4444
4428
|
dirty: boolean;
|
|
4445
4429
|
disabled: boolean;
|
|
4446
4430
|
glow: boolean;
|
|
@@ -4457,6 +4441,7 @@ export declare const VNumberInput: {
|
|
|
4457
4441
|
"onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
4458
4442
|
"onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
4459
4443
|
id?: string | undefined;
|
|
4444
|
+
details: boolean;
|
|
4460
4445
|
} & 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">;
|
|
4461
4446
|
$attrs: {
|
|
4462
4447
|
[x: string]: unknown;
|
|
@@ -4501,7 +4486,6 @@ export declare const VNumberInput: {
|
|
|
4501
4486
|
clearable: boolean;
|
|
4502
4487
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
4503
4488
|
active: boolean;
|
|
4504
|
-
details: boolean;
|
|
4505
4489
|
dirty: boolean;
|
|
4506
4490
|
disabled: boolean;
|
|
4507
4491
|
glow: boolean;
|
|
@@ -4511,6 +4495,7 @@ export declare const VNumberInput: {
|
|
|
4511
4495
|
reverse: boolean;
|
|
4512
4496
|
singleLine: boolean;
|
|
4513
4497
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
4498
|
+
details: boolean;
|
|
4514
4499
|
} & {
|
|
4515
4500
|
theme?: string | undefined;
|
|
4516
4501
|
class?: any;
|
|
@@ -4546,7 +4531,6 @@ export declare const VNumberInput: {
|
|
|
4546
4531
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
4547
4532
|
active: boolean;
|
|
4548
4533
|
centerAffix: boolean;
|
|
4549
|
-
details: boolean;
|
|
4550
4534
|
dirty: boolean;
|
|
4551
4535
|
disabled: boolean;
|
|
4552
4536
|
glow: boolean;
|
|
@@ -4556,6 +4540,7 @@ export declare const VNumberInput: {
|
|
|
4556
4540
|
reverse: boolean;
|
|
4557
4541
|
singleLine: boolean;
|
|
4558
4542
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
4543
|
+
details: boolean;
|
|
4559
4544
|
}, {}, string, import("vue").SlotsType<Partial<{
|
|
4560
4545
|
clear: (arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
4561
4546
|
props: Record<string, any>;
|
|
@@ -4609,7 +4594,6 @@ export declare const VNumberInput: {
|
|
|
4609
4594
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
4610
4595
|
active: boolean;
|
|
4611
4596
|
centerAffix: boolean;
|
|
4612
|
-
details: boolean;
|
|
4613
4597
|
dirty: boolean;
|
|
4614
4598
|
disabled: boolean;
|
|
4615
4599
|
glow: boolean;
|
|
@@ -4619,6 +4603,7 @@ export declare const VNumberInput: {
|
|
|
4619
4603
|
reverse: boolean;
|
|
4620
4604
|
singleLine: boolean;
|
|
4621
4605
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
4606
|
+
details: boolean;
|
|
4622
4607
|
}> & Omit<{
|
|
4623
4608
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
4624
4609
|
focused: boolean;
|
|
@@ -4626,7 +4611,6 @@ export declare const VNumberInput: {
|
|
|
4626
4611
|
clearable: boolean;
|
|
4627
4612
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
4628
4613
|
active: boolean;
|
|
4629
|
-
details: boolean;
|
|
4630
4614
|
dirty: boolean;
|
|
4631
4615
|
disabled: boolean;
|
|
4632
4616
|
glow: boolean;
|
|
@@ -4636,6 +4620,7 @@ export declare const VNumberInput: {
|
|
|
4636
4620
|
reverse: boolean;
|
|
4637
4621
|
singleLine: boolean;
|
|
4638
4622
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
4623
|
+
details: boolean;
|
|
4639
4624
|
} & {
|
|
4640
4625
|
theme?: string | undefined;
|
|
4641
4626
|
class?: any;
|
|
@@ -4692,7 +4677,6 @@ export declare const VNumberInput: {
|
|
|
4692
4677
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
4693
4678
|
active: boolean;
|
|
4694
4679
|
centerAffix: boolean;
|
|
4695
|
-
details: boolean;
|
|
4696
4680
|
dirty: boolean;
|
|
4697
4681
|
disabled: boolean;
|
|
4698
4682
|
glow: boolean;
|
|
@@ -4735,7 +4719,6 @@ export declare const VNumberInput: {
|
|
|
4735
4719
|
clearable: boolean;
|
|
4736
4720
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
4737
4721
|
active: boolean;
|
|
4738
|
-
details: boolean;
|
|
4739
4722
|
dirty: boolean;
|
|
4740
4723
|
disabled: boolean;
|
|
4741
4724
|
glow: boolean;
|
|
@@ -4879,7 +4862,6 @@ export declare const VNumberInput: {
|
|
|
4879
4862
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
4880
4863
|
active: boolean;
|
|
4881
4864
|
centerAffix: boolean;
|
|
4882
|
-
details: boolean;
|
|
4883
4865
|
dirty: boolean;
|
|
4884
4866
|
disabled: boolean;
|
|
4885
4867
|
glow: boolean;
|
|
@@ -4971,7 +4953,6 @@ export declare const VNumberInput: {
|
|
|
4971
4953
|
centerAffix?: boolean | undefined;
|
|
4972
4954
|
color?: string | undefined;
|
|
4973
4955
|
baseColor?: string | undefined;
|
|
4974
|
-
details: boolean;
|
|
4975
4956
|
dirty: boolean;
|
|
4976
4957
|
disabled: boolean;
|
|
4977
4958
|
glow: boolean;
|
|
@@ -5018,7 +4999,7 @@ export declare const VNumberInput: {
|
|
|
5018
4999
|
"v-slot:message"?: false | ((arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNodeChild) | undefined;
|
|
5019
5000
|
"v-slot:prepend"?: false | ((arg: import("../VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
5020
5001
|
"v-slot:prepend-inner"?: false | ((arg: import("../VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
5021
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "active" | "autofocus" | "centerAffix" | "clearIcon" | "clearable" | "density" | "
|
|
5002
|
+
} & 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">;
|
|
5022
5003
|
$attrs: {
|
|
5023
5004
|
[x: string]: unknown;
|
|
5024
5005
|
};
|
|
@@ -5086,7 +5067,6 @@ export declare const VNumberInput: {
|
|
|
5086
5067
|
clearable: boolean;
|
|
5087
5068
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
5088
5069
|
active: boolean;
|
|
5089
|
-
details: boolean;
|
|
5090
5070
|
dirty: boolean;
|
|
5091
5071
|
disabled: boolean;
|
|
5092
5072
|
glow: boolean;
|
|
@@ -5455,7 +5435,6 @@ export declare const VNumberInput: {
|
|
|
5455
5435
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
5456
5436
|
active: boolean;
|
|
5457
5437
|
centerAffix: boolean;
|
|
5458
|
-
details: boolean;
|
|
5459
5438
|
dirty: boolean;
|
|
5460
5439
|
disabled: boolean;
|
|
5461
5440
|
glow: boolean;
|
|
@@ -5465,6 +5444,7 @@ export declare const VNumberInput: {
|
|
|
5465
5444
|
reverse: boolean;
|
|
5466
5445
|
singleLine: boolean;
|
|
5467
5446
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
5447
|
+
details: boolean;
|
|
5468
5448
|
}> & Omit<{
|
|
5469
5449
|
theme?: string | undefined;
|
|
5470
5450
|
class?: any;
|
|
@@ -5482,7 +5462,6 @@ export declare const VNumberInput: {
|
|
|
5482
5462
|
centerAffix?: boolean | undefined;
|
|
5483
5463
|
color?: string | undefined;
|
|
5484
5464
|
baseColor?: string | undefined;
|
|
5485
|
-
details: boolean;
|
|
5486
5465
|
dirty: boolean;
|
|
5487
5466
|
disabled: boolean;
|
|
5488
5467
|
glow: boolean;
|
|
@@ -5499,6 +5478,7 @@ export declare const VNumberInput: {
|
|
|
5499
5478
|
"onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
5500
5479
|
"onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
5501
5480
|
id?: string | undefined;
|
|
5481
|
+
details: boolean;
|
|
5502
5482
|
} & 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">;
|
|
5503
5483
|
$attrs: {
|
|
5504
5484
|
[x: string]: unknown;
|
|
@@ -5543,7 +5523,6 @@ export declare const VNumberInput: {
|
|
|
5543
5523
|
clearable: boolean;
|
|
5544
5524
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
5545
5525
|
active: boolean;
|
|
5546
|
-
details: boolean;
|
|
5547
5526
|
dirty: boolean;
|
|
5548
5527
|
disabled: boolean;
|
|
5549
5528
|
glow: boolean;
|
|
@@ -5553,6 +5532,7 @@ export declare const VNumberInput: {
|
|
|
5553
5532
|
reverse: boolean;
|
|
5554
5533
|
singleLine: boolean;
|
|
5555
5534
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
5535
|
+
details: boolean;
|
|
5556
5536
|
} & {
|
|
5557
5537
|
theme?: string | undefined;
|
|
5558
5538
|
class?: any;
|
|
@@ -5588,7 +5568,6 @@ export declare const VNumberInput: {
|
|
|
5588
5568
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
5589
5569
|
active: boolean;
|
|
5590
5570
|
centerAffix: boolean;
|
|
5591
|
-
details: boolean;
|
|
5592
5571
|
dirty: boolean;
|
|
5593
5572
|
disabled: boolean;
|
|
5594
5573
|
glow: boolean;
|
|
@@ -5598,6 +5577,7 @@ export declare const VNumberInput: {
|
|
|
5598
5577
|
reverse: boolean;
|
|
5599
5578
|
singleLine: boolean;
|
|
5600
5579
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
5580
|
+
details: boolean;
|
|
5601
5581
|
}, {}, string, import("vue").SlotsType<Partial<{
|
|
5602
5582
|
clear: (arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
5603
5583
|
props: Record<string, any>;
|
|
@@ -5651,7 +5631,6 @@ export declare const VNumberInput: {
|
|
|
5651
5631
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
5652
5632
|
active: boolean;
|
|
5653
5633
|
centerAffix: boolean;
|
|
5654
|
-
details: boolean;
|
|
5655
5634
|
dirty: boolean;
|
|
5656
5635
|
disabled: boolean;
|
|
5657
5636
|
glow: boolean;
|
|
@@ -5661,6 +5640,7 @@ export declare const VNumberInput: {
|
|
|
5661
5640
|
reverse: boolean;
|
|
5662
5641
|
singleLine: boolean;
|
|
5663
5642
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
5643
|
+
details: boolean;
|
|
5664
5644
|
}> & Omit<{
|
|
5665
5645
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
5666
5646
|
focused: boolean;
|
|
@@ -5668,7 +5648,6 @@ export declare const VNumberInput: {
|
|
|
5668
5648
|
clearable: boolean;
|
|
5669
5649
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
5670
5650
|
active: boolean;
|
|
5671
|
-
details: boolean;
|
|
5672
5651
|
dirty: boolean;
|
|
5673
5652
|
disabled: boolean;
|
|
5674
5653
|
glow: boolean;
|
|
@@ -5678,6 +5657,7 @@ export declare const VNumberInput: {
|
|
|
5678
5657
|
reverse: boolean;
|
|
5679
5658
|
singleLine: boolean;
|
|
5680
5659
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
5660
|
+
details: boolean;
|
|
5681
5661
|
} & {
|
|
5682
5662
|
theme?: string | undefined;
|
|
5683
5663
|
class?: any;
|
|
@@ -5738,7 +5718,6 @@ export declare const VNumberInput: {
|
|
|
5738
5718
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
5739
5719
|
active: boolean;
|
|
5740
5720
|
centerAffix: boolean;
|
|
5741
|
-
details: boolean;
|
|
5742
5721
|
dirty: boolean;
|
|
5743
5722
|
disabled: boolean;
|
|
5744
5723
|
glow: boolean;
|
|
@@ -5829,7 +5808,6 @@ export declare const VNumberInput: {
|
|
|
5829
5808
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
5830
5809
|
active: boolean;
|
|
5831
5810
|
centerAffix: boolean;
|
|
5832
|
-
details: boolean;
|
|
5833
5811
|
dirty: boolean;
|
|
5834
5812
|
disabled: boolean;
|
|
5835
5813
|
glow: boolean;
|
|
@@ -5859,7 +5837,6 @@ export declare const VNumberInput: {
|
|
|
5859
5837
|
clearable: boolean;
|
|
5860
5838
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
5861
5839
|
active: boolean;
|
|
5862
|
-
details: boolean;
|
|
5863
5840
|
dirty: boolean;
|
|
5864
5841
|
disabled: boolean;
|
|
5865
5842
|
glow: boolean;
|
|
@@ -5973,7 +5950,7 @@ export declare const VNumberInput: {
|
|
|
5973
5950
|
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
|
5974
5951
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
5975
5952
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
|
5976
|
-
}, "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" | "
|
|
5953
|
+
}, "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<{
|
|
5977
5954
|
$: import("vue").ComponentInternalInstance;
|
|
5978
5955
|
$data: {};
|
|
5979
5956
|
$props: Partial<{
|
|
@@ -6228,7 +6205,6 @@ export declare const VNumberInput: {
|
|
|
6228
6205
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
6229
6206
|
active: boolean;
|
|
6230
6207
|
centerAffix: boolean;
|
|
6231
|
-
details: boolean;
|
|
6232
6208
|
dirty: boolean;
|
|
6233
6209
|
disabled: boolean;
|
|
6234
6210
|
glow: boolean;
|
|
@@ -6238,6 +6214,7 @@ export declare const VNumberInput: {
|
|
|
6238
6214
|
reverse: boolean;
|
|
6239
6215
|
singleLine: boolean;
|
|
6240
6216
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
6217
|
+
details: boolean;
|
|
6241
6218
|
}> & Omit<{
|
|
6242
6219
|
theme?: string | undefined;
|
|
6243
6220
|
class?: any;
|
|
@@ -6255,7 +6232,6 @@ export declare const VNumberInput: {
|
|
|
6255
6232
|
centerAffix?: boolean | undefined;
|
|
6256
6233
|
color?: string | undefined;
|
|
6257
6234
|
baseColor?: string | undefined;
|
|
6258
|
-
details: boolean;
|
|
6259
6235
|
dirty: boolean;
|
|
6260
6236
|
disabled: boolean;
|
|
6261
6237
|
glow: boolean;
|
|
@@ -6272,6 +6248,7 @@ export declare const VNumberInput: {
|
|
|
6272
6248
|
"onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
6273
6249
|
"onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
6274
6250
|
id?: string | undefined;
|
|
6251
|
+
details: boolean;
|
|
6275
6252
|
} & 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">;
|
|
6276
6253
|
$attrs: {
|
|
6277
6254
|
[x: string]: unknown;
|
|
@@ -6316,7 +6293,6 @@ export declare const VNumberInput: {
|
|
|
6316
6293
|
clearable: boolean;
|
|
6317
6294
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
6318
6295
|
active: boolean;
|
|
6319
|
-
details: boolean;
|
|
6320
6296
|
dirty: boolean;
|
|
6321
6297
|
disabled: boolean;
|
|
6322
6298
|
glow: boolean;
|
|
@@ -6326,6 +6302,7 @@ export declare const VNumberInput: {
|
|
|
6326
6302
|
reverse: boolean;
|
|
6327
6303
|
singleLine: boolean;
|
|
6328
6304
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
6305
|
+
details: boolean;
|
|
6329
6306
|
} & {
|
|
6330
6307
|
theme?: string | undefined;
|
|
6331
6308
|
class?: any;
|
|
@@ -6361,7 +6338,6 @@ export declare const VNumberInput: {
|
|
|
6361
6338
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
6362
6339
|
active: boolean;
|
|
6363
6340
|
centerAffix: boolean;
|
|
6364
|
-
details: boolean;
|
|
6365
6341
|
dirty: boolean;
|
|
6366
6342
|
disabled: boolean;
|
|
6367
6343
|
glow: boolean;
|
|
@@ -6371,6 +6347,7 @@ export declare const VNumberInput: {
|
|
|
6371
6347
|
reverse: boolean;
|
|
6372
6348
|
singleLine: boolean;
|
|
6373
6349
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
6350
|
+
details: boolean;
|
|
6374
6351
|
}, {}, string, import("vue").SlotsType<Partial<{
|
|
6375
6352
|
clear: (arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
6376
6353
|
props: Record<string, any>;
|
|
@@ -6424,7 +6401,6 @@ export declare const VNumberInput: {
|
|
|
6424
6401
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
6425
6402
|
active: boolean;
|
|
6426
6403
|
centerAffix: boolean;
|
|
6427
|
-
details: boolean;
|
|
6428
6404
|
dirty: boolean;
|
|
6429
6405
|
disabled: boolean;
|
|
6430
6406
|
glow: boolean;
|
|
@@ -6434,6 +6410,7 @@ export declare const VNumberInput: {
|
|
|
6434
6410
|
reverse: boolean;
|
|
6435
6411
|
singleLine: boolean;
|
|
6436
6412
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
6413
|
+
details: boolean;
|
|
6437
6414
|
}> & Omit<{
|
|
6438
6415
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
6439
6416
|
focused: boolean;
|
|
@@ -6441,7 +6418,6 @@ export declare const VNumberInput: {
|
|
|
6441
6418
|
clearable: boolean;
|
|
6442
6419
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
6443
6420
|
active: boolean;
|
|
6444
|
-
details: boolean;
|
|
6445
6421
|
dirty: boolean;
|
|
6446
6422
|
disabled: boolean;
|
|
6447
6423
|
glow: boolean;
|
|
@@ -6451,6 +6427,7 @@ export declare const VNumberInput: {
|
|
|
6451
6427
|
reverse: boolean;
|
|
6452
6428
|
singleLine: boolean;
|
|
6453
6429
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
6430
|
+
details: boolean;
|
|
6454
6431
|
} & {
|
|
6455
6432
|
theme?: string | undefined;
|
|
6456
6433
|
class?: any;
|
|
@@ -6488,7 +6465,7 @@ export declare const VNumberInput: {
|
|
|
6488
6465
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
6489
6466
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
|
6490
6467
|
} | {};
|
|
6491
|
-
}> & {} & 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" | "
|
|
6468
|
+
}> & {} & 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}`> & {
|
|
6492
6469
|
_allExposed: {} | (HTMLInputElement & Omit<Omit<{
|
|
6493
6470
|
$: import("vue").ComponentInternalInstance;
|
|
6494
6471
|
$data: {};
|
|
@@ -6744,7 +6721,6 @@ export declare const VNumberInput: {
|
|
|
6744
6721
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
6745
6722
|
active: boolean;
|
|
6746
6723
|
centerAffix: boolean;
|
|
6747
|
-
details: boolean;
|
|
6748
6724
|
dirty: boolean;
|
|
6749
6725
|
disabled: boolean;
|
|
6750
6726
|
glow: boolean;
|
|
@@ -6754,6 +6730,7 @@ export declare const VNumberInput: {
|
|
|
6754
6730
|
reverse: boolean;
|
|
6755
6731
|
singleLine: boolean;
|
|
6756
6732
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
6733
|
+
details: boolean;
|
|
6757
6734
|
}> & Omit<{
|
|
6758
6735
|
theme?: string | undefined;
|
|
6759
6736
|
class?: any;
|
|
@@ -6771,7 +6748,6 @@ export declare const VNumberInput: {
|
|
|
6771
6748
|
centerAffix?: boolean | undefined;
|
|
6772
6749
|
color?: string | undefined;
|
|
6773
6750
|
baseColor?: string | undefined;
|
|
6774
|
-
details: boolean;
|
|
6775
6751
|
dirty: boolean;
|
|
6776
6752
|
disabled: boolean;
|
|
6777
6753
|
glow: boolean;
|
|
@@ -6788,6 +6764,7 @@ export declare const VNumberInput: {
|
|
|
6788
6764
|
"onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
6789
6765
|
"onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
6790
6766
|
id?: string | undefined;
|
|
6767
|
+
details: boolean;
|
|
6791
6768
|
} & 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">;
|
|
6792
6769
|
$attrs: {
|
|
6793
6770
|
[x: string]: unknown;
|
|
@@ -6832,7 +6809,6 @@ export declare const VNumberInput: {
|
|
|
6832
6809
|
clearable: boolean;
|
|
6833
6810
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
6834
6811
|
active: boolean;
|
|
6835
|
-
details: boolean;
|
|
6836
6812
|
dirty: boolean;
|
|
6837
6813
|
disabled: boolean;
|
|
6838
6814
|
glow: boolean;
|
|
@@ -6842,6 +6818,7 @@ export declare const VNumberInput: {
|
|
|
6842
6818
|
reverse: boolean;
|
|
6843
6819
|
singleLine: boolean;
|
|
6844
6820
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
6821
|
+
details: boolean;
|
|
6845
6822
|
} & {
|
|
6846
6823
|
theme?: string | undefined;
|
|
6847
6824
|
class?: any;
|
|
@@ -6877,7 +6854,6 @@ export declare const VNumberInput: {
|
|
|
6877
6854
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
6878
6855
|
active: boolean;
|
|
6879
6856
|
centerAffix: boolean;
|
|
6880
|
-
details: boolean;
|
|
6881
6857
|
dirty: boolean;
|
|
6882
6858
|
disabled: boolean;
|
|
6883
6859
|
glow: boolean;
|
|
@@ -6887,6 +6863,7 @@ export declare const VNumberInput: {
|
|
|
6887
6863
|
reverse: boolean;
|
|
6888
6864
|
singleLine: boolean;
|
|
6889
6865
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
6866
|
+
details: boolean;
|
|
6890
6867
|
}, {}, string, import("vue").SlotsType<Partial<{
|
|
6891
6868
|
clear: (arg: import("../VField/VField.js").DefaultInputSlot & {
|
|
6892
6869
|
props: Record<string, any>;
|
|
@@ -6940,7 +6917,6 @@ export declare const VNumberInput: {
|
|
|
6940
6917
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
6941
6918
|
active: boolean;
|
|
6942
6919
|
centerAffix: boolean;
|
|
6943
|
-
details: boolean;
|
|
6944
6920
|
dirty: boolean;
|
|
6945
6921
|
disabled: boolean;
|
|
6946
6922
|
glow: boolean;
|
|
@@ -6950,6 +6926,7 @@ export declare const VNumberInput: {
|
|
|
6950
6926
|
reverse: boolean;
|
|
6951
6927
|
singleLine: boolean;
|
|
6952
6928
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
6929
|
+
details: boolean;
|
|
6953
6930
|
}> & Omit<{
|
|
6954
6931
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
6955
6932
|
focused: boolean;
|
|
@@ -6957,7 +6934,6 @@ export declare const VNumberInput: {
|
|
|
6957
6934
|
clearable: boolean;
|
|
6958
6935
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
6959
6936
|
active: boolean;
|
|
6960
|
-
details: boolean;
|
|
6961
6937
|
dirty: boolean;
|
|
6962
6938
|
disabled: boolean;
|
|
6963
6939
|
glow: boolean;
|
|
@@ -6967,6 +6943,7 @@ export declare const VNumberInput: {
|
|
|
6967
6943
|
reverse: boolean;
|
|
6968
6944
|
singleLine: boolean;
|
|
6969
6945
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
6946
|
+
details: boolean;
|
|
6970
6947
|
} & {
|
|
6971
6948
|
theme?: string | undefined;
|
|
6972
6949
|
class?: any;
|
|
@@ -7026,7 +7003,6 @@ export declare const VNumberInput: {
|
|
|
7026
7003
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
7027
7004
|
active: boolean;
|
|
7028
7005
|
centerAffix: boolean;
|
|
7029
|
-
details: boolean;
|
|
7030
7006
|
dirty: boolean;
|
|
7031
7007
|
disabled: boolean;
|
|
7032
7008
|
glow: boolean;
|
|
@@ -7164,7 +7140,6 @@ export declare const VNumberInput: {
|
|
|
7164
7140
|
};
|
|
7165
7141
|
color: StringConstructor;
|
|
7166
7142
|
baseColor: StringConstructor;
|
|
7167
|
-
details: BooleanConstructor;
|
|
7168
7143
|
dirty: BooleanConstructor;
|
|
7169
7144
|
disabled: {
|
|
7170
7145
|
type: BooleanConstructor;
|
|
@@ -7309,7 +7284,6 @@ export declare const VNumberInput: {
|
|
|
7309
7284
|
};
|
|
7310
7285
|
color: StringConstructor;
|
|
7311
7286
|
baseColor: StringConstructor;
|
|
7312
|
-
details: BooleanConstructor;
|
|
7313
7287
|
dirty: BooleanConstructor;
|
|
7314
7288
|
disabled: {
|
|
7315
7289
|
type: BooleanConstructor;
|