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
|
@@ -44,7 +44,6 @@ export declare const makeVMaskInputProps: <Defaults extends {
|
|
|
44
44
|
centerAffix?: unknown;
|
|
45
45
|
color?: unknown;
|
|
46
46
|
baseColor?: unknown;
|
|
47
|
-
details?: unknown;
|
|
48
47
|
dirty?: unknown;
|
|
49
48
|
disabled?: unknown;
|
|
50
49
|
glow?: unknown;
|
|
@@ -304,10 +303,6 @@ export declare const makeVMaskInputProps: <Defaults extends {
|
|
|
304
303
|
type: import("vue").PropType<unknown extends Defaults["baseColor"] ? string : string | Defaults["baseColor"]>;
|
|
305
304
|
default: unknown extends Defaults["baseColor"] ? string : string | Defaults["baseColor"];
|
|
306
305
|
};
|
|
307
|
-
details: unknown extends Defaults["details"] ? BooleanConstructor : {
|
|
308
|
-
type: import("vue").PropType<unknown extends Defaults["details"] ? boolean : boolean | Defaults["details"]>;
|
|
309
|
-
default: unknown extends Defaults["details"] ? boolean : boolean | Defaults["details"];
|
|
310
|
-
};
|
|
311
306
|
dirty: unknown extends Defaults["dirty"] ? BooleanConstructor : {
|
|
312
307
|
type: import("vue").PropType<unknown extends Defaults["dirty"] ? boolean : boolean | Defaults["dirty"]>;
|
|
313
308
|
default: unknown extends Defaults["dirty"] ? boolean : boolean | Defaults["dirty"];
|
|
@@ -458,7 +453,6 @@ export declare const VMaskInput: {
|
|
|
458
453
|
clearable: boolean;
|
|
459
454
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
460
455
|
active: boolean;
|
|
461
|
-
details: boolean;
|
|
462
456
|
dirty: boolean;
|
|
463
457
|
disabled: boolean;
|
|
464
458
|
glow: boolean;
|
|
@@ -592,7 +586,6 @@ export declare const VMaskInput: {
|
|
|
592
586
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
593
587
|
active: boolean;
|
|
594
588
|
centerAffix: boolean;
|
|
595
|
-
details: boolean;
|
|
596
589
|
dirty: boolean;
|
|
597
590
|
disabled: boolean;
|
|
598
591
|
glow: boolean;
|
|
@@ -684,7 +677,6 @@ export declare const VMaskInput: {
|
|
|
684
677
|
centerAffix?: boolean | undefined;
|
|
685
678
|
color?: string | undefined;
|
|
686
679
|
baseColor?: string | undefined;
|
|
687
|
-
details: boolean;
|
|
688
680
|
dirty: boolean;
|
|
689
681
|
disabled: boolean;
|
|
690
682
|
glow: boolean;
|
|
@@ -731,7 +723,7 @@ export declare const VMaskInput: {
|
|
|
731
723
|
"v-slot:message"?: false | ((arg: import("../../components/VMessages/VMessages.js").VMessageSlot) => import("vue").VNodeChild) | undefined;
|
|
732
724
|
"v-slot:prepend"?: false | ((arg: import("../../components/VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
733
725
|
"v-slot:prepend-inner"?: false | ((arg: import("../../components/VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
734
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "active" | "autofocus" | "centerAffix" | "clearIcon" | "clearable" | "density" | "
|
|
726
|
+
} & 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">;
|
|
735
727
|
$attrs: {
|
|
736
728
|
[x: string]: unknown;
|
|
737
729
|
};
|
|
@@ -799,7 +791,6 @@ export declare const VMaskInput: {
|
|
|
799
791
|
clearable: boolean;
|
|
800
792
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
801
793
|
active: boolean;
|
|
802
|
-
details: boolean;
|
|
803
794
|
dirty: boolean;
|
|
804
795
|
disabled: boolean;
|
|
805
796
|
glow: boolean;
|
|
@@ -1168,7 +1159,6 @@ export declare const VMaskInput: {
|
|
|
1168
1159
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
1169
1160
|
active: boolean;
|
|
1170
1161
|
centerAffix: boolean;
|
|
1171
|
-
details: boolean;
|
|
1172
1162
|
dirty: boolean;
|
|
1173
1163
|
disabled: boolean;
|
|
1174
1164
|
glow: boolean;
|
|
@@ -1178,6 +1168,7 @@ export declare const VMaskInput: {
|
|
|
1178
1168
|
reverse: boolean;
|
|
1179
1169
|
singleLine: boolean;
|
|
1180
1170
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
1171
|
+
details: boolean;
|
|
1181
1172
|
}> & Omit<{
|
|
1182
1173
|
theme?: string | undefined;
|
|
1183
1174
|
class?: any;
|
|
@@ -1195,7 +1186,6 @@ export declare const VMaskInput: {
|
|
|
1195
1186
|
centerAffix?: boolean | undefined;
|
|
1196
1187
|
color?: string | undefined;
|
|
1197
1188
|
baseColor?: string | undefined;
|
|
1198
|
-
details: boolean;
|
|
1199
1189
|
dirty: boolean;
|
|
1200
1190
|
disabled: boolean;
|
|
1201
1191
|
glow: boolean;
|
|
@@ -1212,6 +1202,7 @@ export declare const VMaskInput: {
|
|
|
1212
1202
|
"onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
1213
1203
|
"onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
1214
1204
|
id?: string | undefined;
|
|
1205
|
+
details: boolean;
|
|
1215
1206
|
} & 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">;
|
|
1216
1207
|
$attrs: {
|
|
1217
1208
|
[x: string]: unknown;
|
|
@@ -1256,7 +1247,6 @@ export declare const VMaskInput: {
|
|
|
1256
1247
|
clearable: boolean;
|
|
1257
1248
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
1258
1249
|
active: boolean;
|
|
1259
|
-
details: boolean;
|
|
1260
1250
|
dirty: boolean;
|
|
1261
1251
|
disabled: boolean;
|
|
1262
1252
|
glow: boolean;
|
|
@@ -1266,6 +1256,7 @@ export declare const VMaskInput: {
|
|
|
1266
1256
|
reverse: boolean;
|
|
1267
1257
|
singleLine: boolean;
|
|
1268
1258
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
1259
|
+
details: boolean;
|
|
1269
1260
|
} & {
|
|
1270
1261
|
theme?: string | undefined;
|
|
1271
1262
|
class?: any;
|
|
@@ -1301,7 +1292,6 @@ export declare const VMaskInput: {
|
|
|
1301
1292
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
1302
1293
|
active: boolean;
|
|
1303
1294
|
centerAffix: boolean;
|
|
1304
|
-
details: boolean;
|
|
1305
1295
|
dirty: boolean;
|
|
1306
1296
|
disabled: boolean;
|
|
1307
1297
|
glow: boolean;
|
|
@@ -1311,6 +1301,7 @@ export declare const VMaskInput: {
|
|
|
1311
1301
|
reverse: boolean;
|
|
1312
1302
|
singleLine: boolean;
|
|
1313
1303
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
1304
|
+
details: boolean;
|
|
1314
1305
|
}, {}, string, import("vue").SlotsType<Partial<{
|
|
1315
1306
|
clear: (arg: import("../../components/VField/VField.js").DefaultInputSlot & {
|
|
1316
1307
|
props: Record<string, any>;
|
|
@@ -1364,7 +1355,6 @@ export declare const VMaskInput: {
|
|
|
1364
1355
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
1365
1356
|
active: boolean;
|
|
1366
1357
|
centerAffix: boolean;
|
|
1367
|
-
details: boolean;
|
|
1368
1358
|
dirty: boolean;
|
|
1369
1359
|
disabled: boolean;
|
|
1370
1360
|
glow: boolean;
|
|
@@ -1374,6 +1364,7 @@ export declare const VMaskInput: {
|
|
|
1374
1364
|
reverse: boolean;
|
|
1375
1365
|
singleLine: boolean;
|
|
1376
1366
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
1367
|
+
details: boolean;
|
|
1377
1368
|
}> & Omit<{
|
|
1378
1369
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
1379
1370
|
focused: boolean;
|
|
@@ -1381,7 +1372,6 @@ export declare const VMaskInput: {
|
|
|
1381
1372
|
clearable: boolean;
|
|
1382
1373
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
1383
1374
|
active: boolean;
|
|
1384
|
-
details: boolean;
|
|
1385
1375
|
dirty: boolean;
|
|
1386
1376
|
disabled: boolean;
|
|
1387
1377
|
glow: boolean;
|
|
@@ -1391,6 +1381,7 @@ export declare const VMaskInput: {
|
|
|
1391
1381
|
reverse: boolean;
|
|
1392
1382
|
singleLine: boolean;
|
|
1393
1383
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
1384
|
+
details: boolean;
|
|
1394
1385
|
} & {
|
|
1395
1386
|
theme?: string | undefined;
|
|
1396
1387
|
class?: any;
|
|
@@ -1451,7 +1442,6 @@ export declare const VMaskInput: {
|
|
|
1451
1442
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
1452
1443
|
active: boolean;
|
|
1453
1444
|
centerAffix: boolean;
|
|
1454
|
-
details: boolean;
|
|
1455
1445
|
dirty: boolean;
|
|
1456
1446
|
disabled: boolean;
|
|
1457
1447
|
glow: boolean;
|
|
@@ -1542,7 +1532,6 @@ export declare const VMaskInput: {
|
|
|
1542
1532
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
1543
1533
|
active: boolean;
|
|
1544
1534
|
centerAffix: boolean;
|
|
1545
|
-
details: boolean;
|
|
1546
1535
|
dirty: boolean;
|
|
1547
1536
|
disabled: boolean;
|
|
1548
1537
|
glow: boolean;
|
|
@@ -1572,7 +1561,6 @@ export declare const VMaskInput: {
|
|
|
1572
1561
|
clearable: boolean;
|
|
1573
1562
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
1574
1563
|
active: boolean;
|
|
1575
|
-
details: boolean;
|
|
1576
1564
|
dirty: boolean;
|
|
1577
1565
|
disabled: boolean;
|
|
1578
1566
|
glow: boolean;
|
|
@@ -1686,7 +1674,7 @@ export declare const VMaskInput: {
|
|
|
1686
1674
|
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
|
1687
1675
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
1688
1676
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
|
1689
|
-
}, "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" | "
|
|
1677
|
+
}, "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<{
|
|
1690
1678
|
$: import("vue").ComponentInternalInstance;
|
|
1691
1679
|
$data: {};
|
|
1692
1680
|
$props: Partial<{
|
|
@@ -1941,7 +1929,6 @@ export declare const VMaskInput: {
|
|
|
1941
1929
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
1942
1930
|
active: boolean;
|
|
1943
1931
|
centerAffix: boolean;
|
|
1944
|
-
details: boolean;
|
|
1945
1932
|
dirty: boolean;
|
|
1946
1933
|
disabled: boolean;
|
|
1947
1934
|
glow: boolean;
|
|
@@ -1951,6 +1938,7 @@ export declare const VMaskInput: {
|
|
|
1951
1938
|
reverse: boolean;
|
|
1952
1939
|
singleLine: boolean;
|
|
1953
1940
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
1941
|
+
details: boolean;
|
|
1954
1942
|
}> & Omit<{
|
|
1955
1943
|
theme?: string | undefined;
|
|
1956
1944
|
class?: any;
|
|
@@ -1968,7 +1956,6 @@ export declare const VMaskInput: {
|
|
|
1968
1956
|
centerAffix?: boolean | undefined;
|
|
1969
1957
|
color?: string | undefined;
|
|
1970
1958
|
baseColor?: string | undefined;
|
|
1971
|
-
details: boolean;
|
|
1972
1959
|
dirty: boolean;
|
|
1973
1960
|
disabled: boolean;
|
|
1974
1961
|
glow: boolean;
|
|
@@ -1985,6 +1972,7 @@ export declare const VMaskInput: {
|
|
|
1985
1972
|
"onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
1986
1973
|
"onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
1987
1974
|
id?: string | undefined;
|
|
1975
|
+
details: boolean;
|
|
1988
1976
|
} & 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">;
|
|
1989
1977
|
$attrs: {
|
|
1990
1978
|
[x: string]: unknown;
|
|
@@ -2029,7 +2017,6 @@ export declare const VMaskInput: {
|
|
|
2029
2017
|
clearable: boolean;
|
|
2030
2018
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
2031
2019
|
active: boolean;
|
|
2032
|
-
details: boolean;
|
|
2033
2020
|
dirty: boolean;
|
|
2034
2021
|
disabled: boolean;
|
|
2035
2022
|
glow: boolean;
|
|
@@ -2039,6 +2026,7 @@ export declare const VMaskInput: {
|
|
|
2039
2026
|
reverse: boolean;
|
|
2040
2027
|
singleLine: boolean;
|
|
2041
2028
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
2029
|
+
details: boolean;
|
|
2042
2030
|
} & {
|
|
2043
2031
|
theme?: string | undefined;
|
|
2044
2032
|
class?: any;
|
|
@@ -2074,7 +2062,6 @@ export declare const VMaskInput: {
|
|
|
2074
2062
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
2075
2063
|
active: boolean;
|
|
2076
2064
|
centerAffix: boolean;
|
|
2077
|
-
details: boolean;
|
|
2078
2065
|
dirty: boolean;
|
|
2079
2066
|
disabled: boolean;
|
|
2080
2067
|
glow: boolean;
|
|
@@ -2084,6 +2071,7 @@ export declare const VMaskInput: {
|
|
|
2084
2071
|
reverse: boolean;
|
|
2085
2072
|
singleLine: boolean;
|
|
2086
2073
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
2074
|
+
details: boolean;
|
|
2087
2075
|
}, {}, string, import("vue").SlotsType<Partial<{
|
|
2088
2076
|
clear: (arg: import("../../components/VField/VField.js").DefaultInputSlot & {
|
|
2089
2077
|
props: Record<string, any>;
|
|
@@ -2137,7 +2125,6 @@ export declare const VMaskInput: {
|
|
|
2137
2125
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
2138
2126
|
active: boolean;
|
|
2139
2127
|
centerAffix: boolean;
|
|
2140
|
-
details: boolean;
|
|
2141
2128
|
dirty: boolean;
|
|
2142
2129
|
disabled: boolean;
|
|
2143
2130
|
glow: boolean;
|
|
@@ -2147,6 +2134,7 @@ export declare const VMaskInput: {
|
|
|
2147
2134
|
reverse: boolean;
|
|
2148
2135
|
singleLine: boolean;
|
|
2149
2136
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
2137
|
+
details: boolean;
|
|
2150
2138
|
}> & Omit<{
|
|
2151
2139
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
2152
2140
|
focused: boolean;
|
|
@@ -2154,7 +2142,6 @@ export declare const VMaskInput: {
|
|
|
2154
2142
|
clearable: boolean;
|
|
2155
2143
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
2156
2144
|
active: boolean;
|
|
2157
|
-
details: boolean;
|
|
2158
2145
|
dirty: boolean;
|
|
2159
2146
|
disabled: boolean;
|
|
2160
2147
|
glow: boolean;
|
|
@@ -2164,6 +2151,7 @@ export declare const VMaskInput: {
|
|
|
2164
2151
|
reverse: boolean;
|
|
2165
2152
|
singleLine: boolean;
|
|
2166
2153
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
2154
|
+
details: boolean;
|
|
2167
2155
|
} & {
|
|
2168
2156
|
theme?: string | undefined;
|
|
2169
2157
|
class?: any;
|
|
@@ -2201,7 +2189,7 @@ export declare const VMaskInput: {
|
|
|
2201
2189
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
2202
2190
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
|
2203
2191
|
} | {};
|
|
2204
|
-
}> & {} & 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" | "
|
|
2192
|
+
}> & {} & 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}`> & {
|
|
2205
2193
|
_allExposed: {} | (HTMLInputElement & Omit<Omit<{
|
|
2206
2194
|
$: import("vue").ComponentInternalInstance;
|
|
2207
2195
|
$data: {};
|
|
@@ -2457,7 +2445,6 @@ export declare const VMaskInput: {
|
|
|
2457
2445
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
2458
2446
|
active: boolean;
|
|
2459
2447
|
centerAffix: boolean;
|
|
2460
|
-
details: boolean;
|
|
2461
2448
|
dirty: boolean;
|
|
2462
2449
|
disabled: boolean;
|
|
2463
2450
|
glow: boolean;
|
|
@@ -2467,6 +2454,7 @@ export declare const VMaskInput: {
|
|
|
2467
2454
|
reverse: boolean;
|
|
2468
2455
|
singleLine: boolean;
|
|
2469
2456
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
2457
|
+
details: boolean;
|
|
2470
2458
|
}> & Omit<{
|
|
2471
2459
|
theme?: string | undefined;
|
|
2472
2460
|
class?: any;
|
|
@@ -2484,7 +2472,6 @@ export declare const VMaskInput: {
|
|
|
2484
2472
|
centerAffix?: boolean | undefined;
|
|
2485
2473
|
color?: string | undefined;
|
|
2486
2474
|
baseColor?: string | undefined;
|
|
2487
|
-
details: boolean;
|
|
2488
2475
|
dirty: boolean;
|
|
2489
2476
|
disabled: boolean;
|
|
2490
2477
|
glow: boolean;
|
|
@@ -2501,6 +2488,7 @@ export declare const VMaskInput: {
|
|
|
2501
2488
|
"onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
2502
2489
|
"onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
2503
2490
|
id?: string | undefined;
|
|
2491
|
+
details: boolean;
|
|
2504
2492
|
} & 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">;
|
|
2505
2493
|
$attrs: {
|
|
2506
2494
|
[x: string]: unknown;
|
|
@@ -2545,7 +2533,6 @@ export declare const VMaskInput: {
|
|
|
2545
2533
|
clearable: boolean;
|
|
2546
2534
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
2547
2535
|
active: boolean;
|
|
2548
|
-
details: boolean;
|
|
2549
2536
|
dirty: boolean;
|
|
2550
2537
|
disabled: boolean;
|
|
2551
2538
|
glow: boolean;
|
|
@@ -2555,6 +2542,7 @@ export declare const VMaskInput: {
|
|
|
2555
2542
|
reverse: boolean;
|
|
2556
2543
|
singleLine: boolean;
|
|
2557
2544
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
2545
|
+
details: boolean;
|
|
2558
2546
|
} & {
|
|
2559
2547
|
theme?: string | undefined;
|
|
2560
2548
|
class?: any;
|
|
@@ -2590,7 +2578,6 @@ export declare const VMaskInput: {
|
|
|
2590
2578
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
2591
2579
|
active: boolean;
|
|
2592
2580
|
centerAffix: boolean;
|
|
2593
|
-
details: boolean;
|
|
2594
2581
|
dirty: boolean;
|
|
2595
2582
|
disabled: boolean;
|
|
2596
2583
|
glow: boolean;
|
|
@@ -2600,6 +2587,7 @@ export declare const VMaskInput: {
|
|
|
2600
2587
|
reverse: boolean;
|
|
2601
2588
|
singleLine: boolean;
|
|
2602
2589
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
2590
|
+
details: boolean;
|
|
2603
2591
|
}, {}, string, import("vue").SlotsType<Partial<{
|
|
2604
2592
|
clear: (arg: import("../../components/VField/VField.js").DefaultInputSlot & {
|
|
2605
2593
|
props: Record<string, any>;
|
|
@@ -2653,7 +2641,6 @@ export declare const VMaskInput: {
|
|
|
2653
2641
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
2654
2642
|
active: boolean;
|
|
2655
2643
|
centerAffix: boolean;
|
|
2656
|
-
details: boolean;
|
|
2657
2644
|
dirty: boolean;
|
|
2658
2645
|
disabled: boolean;
|
|
2659
2646
|
glow: boolean;
|
|
@@ -2663,6 +2650,7 @@ export declare const VMaskInput: {
|
|
|
2663
2650
|
reverse: boolean;
|
|
2664
2651
|
singleLine: boolean;
|
|
2665
2652
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
2653
|
+
details: boolean;
|
|
2666
2654
|
}> & Omit<{
|
|
2667
2655
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
2668
2656
|
focused: boolean;
|
|
@@ -2670,7 +2658,6 @@ export declare const VMaskInput: {
|
|
|
2670
2658
|
clearable: boolean;
|
|
2671
2659
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
2672
2660
|
active: boolean;
|
|
2673
|
-
details: boolean;
|
|
2674
2661
|
dirty: boolean;
|
|
2675
2662
|
disabled: boolean;
|
|
2676
2663
|
glow: boolean;
|
|
@@ -2680,6 +2667,7 @@ export declare const VMaskInput: {
|
|
|
2680
2667
|
reverse: boolean;
|
|
2681
2668
|
singleLine: boolean;
|
|
2682
2669
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
2670
|
+
details: boolean;
|
|
2683
2671
|
} & {
|
|
2684
2672
|
theme?: string | undefined;
|
|
2685
2673
|
class?: any;
|
|
@@ -2738,7 +2726,6 @@ export declare const VMaskInput: {
|
|
|
2738
2726
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
2739
2727
|
active: boolean;
|
|
2740
2728
|
centerAffix: boolean;
|
|
2741
|
-
details: boolean;
|
|
2742
2729
|
dirty: boolean;
|
|
2743
2730
|
disabled: boolean;
|
|
2744
2731
|
glow: boolean;
|
|
@@ -2815,7 +2802,6 @@ export declare const VMaskInput: {
|
|
|
2815
2802
|
clearable: boolean;
|
|
2816
2803
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
2817
2804
|
active: boolean;
|
|
2818
|
-
details: boolean;
|
|
2819
2805
|
dirty: boolean;
|
|
2820
2806
|
disabled: boolean;
|
|
2821
2807
|
glow: boolean;
|
|
@@ -2949,7 +2935,6 @@ export declare const VMaskInput: {
|
|
|
2949
2935
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
2950
2936
|
active: boolean;
|
|
2951
2937
|
centerAffix: boolean;
|
|
2952
|
-
details: boolean;
|
|
2953
2938
|
dirty: boolean;
|
|
2954
2939
|
disabled: boolean;
|
|
2955
2940
|
glow: boolean;
|
|
@@ -3041,7 +3026,6 @@ export declare const VMaskInput: {
|
|
|
3041
3026
|
centerAffix?: boolean | undefined;
|
|
3042
3027
|
color?: string | undefined;
|
|
3043
3028
|
baseColor?: string | undefined;
|
|
3044
|
-
details: boolean;
|
|
3045
3029
|
dirty: boolean;
|
|
3046
3030
|
disabled: boolean;
|
|
3047
3031
|
glow: boolean;
|
|
@@ -3088,7 +3072,7 @@ export declare const VMaskInput: {
|
|
|
3088
3072
|
"v-slot:message"?: false | ((arg: import("../../components/VMessages/VMessages.js").VMessageSlot) => import("vue").VNodeChild) | undefined;
|
|
3089
3073
|
"v-slot:prepend"?: false | ((arg: import("../../components/VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
3090
3074
|
"v-slot:prepend-inner"?: false | ((arg: import("../../components/VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
3091
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "active" | "autofocus" | "centerAffix" | "clearIcon" | "clearable" | "density" | "
|
|
3075
|
+
} & 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">;
|
|
3092
3076
|
$attrs: {
|
|
3093
3077
|
[x: string]: unknown;
|
|
3094
3078
|
};
|
|
@@ -3156,7 +3140,6 @@ export declare const VMaskInput: {
|
|
|
3156
3140
|
clearable: boolean;
|
|
3157
3141
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
3158
3142
|
active: boolean;
|
|
3159
|
-
details: boolean;
|
|
3160
3143
|
dirty: boolean;
|
|
3161
3144
|
disabled: boolean;
|
|
3162
3145
|
glow: boolean;
|
|
@@ -3525,7 +3508,6 @@ export declare const VMaskInput: {
|
|
|
3525
3508
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
3526
3509
|
active: boolean;
|
|
3527
3510
|
centerAffix: boolean;
|
|
3528
|
-
details: boolean;
|
|
3529
3511
|
dirty: boolean;
|
|
3530
3512
|
disabled: boolean;
|
|
3531
3513
|
glow: boolean;
|
|
@@ -3535,6 +3517,7 @@ export declare const VMaskInput: {
|
|
|
3535
3517
|
reverse: boolean;
|
|
3536
3518
|
singleLine: boolean;
|
|
3537
3519
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
3520
|
+
details: boolean;
|
|
3538
3521
|
}> & Omit<{
|
|
3539
3522
|
theme?: string | undefined;
|
|
3540
3523
|
class?: any;
|
|
@@ -3552,7 +3535,6 @@ export declare const VMaskInput: {
|
|
|
3552
3535
|
centerAffix?: boolean | undefined;
|
|
3553
3536
|
color?: string | undefined;
|
|
3554
3537
|
baseColor?: string | undefined;
|
|
3555
|
-
details: boolean;
|
|
3556
3538
|
dirty: boolean;
|
|
3557
3539
|
disabled: boolean;
|
|
3558
3540
|
glow: boolean;
|
|
@@ -3569,6 +3551,7 @@ export declare const VMaskInput: {
|
|
|
3569
3551
|
"onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
3570
3552
|
"onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
3571
3553
|
id?: string | undefined;
|
|
3554
|
+
details: boolean;
|
|
3572
3555
|
} & 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">;
|
|
3573
3556
|
$attrs: {
|
|
3574
3557
|
[x: string]: unknown;
|
|
@@ -3613,7 +3596,6 @@ export declare const VMaskInput: {
|
|
|
3613
3596
|
clearable: boolean;
|
|
3614
3597
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
3615
3598
|
active: boolean;
|
|
3616
|
-
details: boolean;
|
|
3617
3599
|
dirty: boolean;
|
|
3618
3600
|
disabled: boolean;
|
|
3619
3601
|
glow: boolean;
|
|
@@ -3623,6 +3605,7 @@ export declare const VMaskInput: {
|
|
|
3623
3605
|
reverse: boolean;
|
|
3624
3606
|
singleLine: boolean;
|
|
3625
3607
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
3608
|
+
details: boolean;
|
|
3626
3609
|
} & {
|
|
3627
3610
|
theme?: string | undefined;
|
|
3628
3611
|
class?: any;
|
|
@@ -3658,7 +3641,6 @@ export declare const VMaskInput: {
|
|
|
3658
3641
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
3659
3642
|
active: boolean;
|
|
3660
3643
|
centerAffix: boolean;
|
|
3661
|
-
details: boolean;
|
|
3662
3644
|
dirty: boolean;
|
|
3663
3645
|
disabled: boolean;
|
|
3664
3646
|
glow: boolean;
|
|
@@ -3668,6 +3650,7 @@ export declare const VMaskInput: {
|
|
|
3668
3650
|
reverse: boolean;
|
|
3669
3651
|
singleLine: boolean;
|
|
3670
3652
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
3653
|
+
details: boolean;
|
|
3671
3654
|
}, {}, string, import("vue").SlotsType<Partial<{
|
|
3672
3655
|
clear: (arg: import("../../components/VField/VField.js").DefaultInputSlot & {
|
|
3673
3656
|
props: Record<string, any>;
|
|
@@ -3721,7 +3704,6 @@ export declare const VMaskInput: {
|
|
|
3721
3704
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
3722
3705
|
active: boolean;
|
|
3723
3706
|
centerAffix: boolean;
|
|
3724
|
-
details: boolean;
|
|
3725
3707
|
dirty: boolean;
|
|
3726
3708
|
disabled: boolean;
|
|
3727
3709
|
glow: boolean;
|
|
@@ -3731,6 +3713,7 @@ export declare const VMaskInput: {
|
|
|
3731
3713
|
reverse: boolean;
|
|
3732
3714
|
singleLine: boolean;
|
|
3733
3715
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
3716
|
+
details: boolean;
|
|
3734
3717
|
}> & Omit<{
|
|
3735
3718
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
3736
3719
|
focused: boolean;
|
|
@@ -3738,7 +3721,6 @@ export declare const VMaskInput: {
|
|
|
3738
3721
|
clearable: boolean;
|
|
3739
3722
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
3740
3723
|
active: boolean;
|
|
3741
|
-
details: boolean;
|
|
3742
3724
|
dirty: boolean;
|
|
3743
3725
|
disabled: boolean;
|
|
3744
3726
|
glow: boolean;
|
|
@@ -3748,6 +3730,7 @@ export declare const VMaskInput: {
|
|
|
3748
3730
|
reverse: boolean;
|
|
3749
3731
|
singleLine: boolean;
|
|
3750
3732
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
3733
|
+
details: boolean;
|
|
3751
3734
|
} & {
|
|
3752
3735
|
theme?: string | undefined;
|
|
3753
3736
|
class?: any;
|
|
@@ -3808,7 +3791,6 @@ export declare const VMaskInput: {
|
|
|
3808
3791
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
3809
3792
|
active: boolean;
|
|
3810
3793
|
centerAffix: boolean;
|
|
3811
|
-
details: boolean;
|
|
3812
3794
|
dirty: boolean;
|
|
3813
3795
|
disabled: boolean;
|
|
3814
3796
|
glow: boolean;
|
|
@@ -3899,7 +3881,6 @@ export declare const VMaskInput: {
|
|
|
3899
3881
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
3900
3882
|
active: boolean;
|
|
3901
3883
|
centerAffix: boolean;
|
|
3902
|
-
details: boolean;
|
|
3903
3884
|
dirty: boolean;
|
|
3904
3885
|
disabled: boolean;
|
|
3905
3886
|
glow: boolean;
|
|
@@ -3929,7 +3910,6 @@ export declare const VMaskInput: {
|
|
|
3929
3910
|
clearable: boolean;
|
|
3930
3911
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
3931
3912
|
active: boolean;
|
|
3932
|
-
details: boolean;
|
|
3933
3913
|
dirty: boolean;
|
|
3934
3914
|
disabled: boolean;
|
|
3935
3915
|
glow: boolean;
|
|
@@ -4043,7 +4023,7 @@ export declare const VMaskInput: {
|
|
|
4043
4023
|
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
|
4044
4024
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
4045
4025
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
|
4046
|
-
}, "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" | "
|
|
4026
|
+
}, "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<{
|
|
4047
4027
|
$: import("vue").ComponentInternalInstance;
|
|
4048
4028
|
$data: {};
|
|
4049
4029
|
$props: Partial<{
|
|
@@ -4298,7 +4278,6 @@ export declare const VMaskInput: {
|
|
|
4298
4278
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
4299
4279
|
active: boolean;
|
|
4300
4280
|
centerAffix: boolean;
|
|
4301
|
-
details: boolean;
|
|
4302
4281
|
dirty: boolean;
|
|
4303
4282
|
disabled: boolean;
|
|
4304
4283
|
glow: boolean;
|
|
@@ -4308,6 +4287,7 @@ export declare const VMaskInput: {
|
|
|
4308
4287
|
reverse: boolean;
|
|
4309
4288
|
singleLine: boolean;
|
|
4310
4289
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
4290
|
+
details: boolean;
|
|
4311
4291
|
}> & Omit<{
|
|
4312
4292
|
theme?: string | undefined;
|
|
4313
4293
|
class?: any;
|
|
@@ -4325,7 +4305,6 @@ export declare const VMaskInput: {
|
|
|
4325
4305
|
centerAffix?: boolean | undefined;
|
|
4326
4306
|
color?: string | undefined;
|
|
4327
4307
|
baseColor?: string | undefined;
|
|
4328
|
-
details: boolean;
|
|
4329
4308
|
dirty: boolean;
|
|
4330
4309
|
disabled: boolean;
|
|
4331
4310
|
glow: boolean;
|
|
@@ -4342,6 +4321,7 @@ export declare const VMaskInput: {
|
|
|
4342
4321
|
"onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
4343
4322
|
"onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
4344
4323
|
id?: string | undefined;
|
|
4324
|
+
details: boolean;
|
|
4345
4325
|
} & 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">;
|
|
4346
4326
|
$attrs: {
|
|
4347
4327
|
[x: string]: unknown;
|
|
@@ -4386,7 +4366,6 @@ export declare const VMaskInput: {
|
|
|
4386
4366
|
clearable: boolean;
|
|
4387
4367
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
4388
4368
|
active: boolean;
|
|
4389
|
-
details: boolean;
|
|
4390
4369
|
dirty: boolean;
|
|
4391
4370
|
disabled: boolean;
|
|
4392
4371
|
glow: boolean;
|
|
@@ -4396,6 +4375,7 @@ export declare const VMaskInput: {
|
|
|
4396
4375
|
reverse: boolean;
|
|
4397
4376
|
singleLine: boolean;
|
|
4398
4377
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
4378
|
+
details: boolean;
|
|
4399
4379
|
} & {
|
|
4400
4380
|
theme?: string | undefined;
|
|
4401
4381
|
class?: any;
|
|
@@ -4431,7 +4411,6 @@ export declare const VMaskInput: {
|
|
|
4431
4411
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
4432
4412
|
active: boolean;
|
|
4433
4413
|
centerAffix: boolean;
|
|
4434
|
-
details: boolean;
|
|
4435
4414
|
dirty: boolean;
|
|
4436
4415
|
disabled: boolean;
|
|
4437
4416
|
glow: boolean;
|
|
@@ -4441,6 +4420,7 @@ export declare const VMaskInput: {
|
|
|
4441
4420
|
reverse: boolean;
|
|
4442
4421
|
singleLine: boolean;
|
|
4443
4422
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
4423
|
+
details: boolean;
|
|
4444
4424
|
}, {}, string, import("vue").SlotsType<Partial<{
|
|
4445
4425
|
clear: (arg: import("../../components/VField/VField.js").DefaultInputSlot & {
|
|
4446
4426
|
props: Record<string, any>;
|
|
@@ -4494,7 +4474,6 @@ export declare const VMaskInput: {
|
|
|
4494
4474
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
4495
4475
|
active: boolean;
|
|
4496
4476
|
centerAffix: boolean;
|
|
4497
|
-
details: boolean;
|
|
4498
4477
|
dirty: boolean;
|
|
4499
4478
|
disabled: boolean;
|
|
4500
4479
|
glow: boolean;
|
|
@@ -4504,6 +4483,7 @@ export declare const VMaskInput: {
|
|
|
4504
4483
|
reverse: boolean;
|
|
4505
4484
|
singleLine: boolean;
|
|
4506
4485
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
4486
|
+
details: boolean;
|
|
4507
4487
|
}> & Omit<{
|
|
4508
4488
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
4509
4489
|
focused: boolean;
|
|
@@ -4511,7 +4491,6 @@ export declare const VMaskInput: {
|
|
|
4511
4491
|
clearable: boolean;
|
|
4512
4492
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
4513
4493
|
active: boolean;
|
|
4514
|
-
details: boolean;
|
|
4515
4494
|
dirty: boolean;
|
|
4516
4495
|
disabled: boolean;
|
|
4517
4496
|
glow: boolean;
|
|
@@ -4521,6 +4500,7 @@ export declare const VMaskInput: {
|
|
|
4521
4500
|
reverse: boolean;
|
|
4522
4501
|
singleLine: boolean;
|
|
4523
4502
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
4503
|
+
details: boolean;
|
|
4524
4504
|
} & {
|
|
4525
4505
|
theme?: string | undefined;
|
|
4526
4506
|
class?: any;
|
|
@@ -4558,7 +4538,7 @@ export declare const VMaskInput: {
|
|
|
4558
4538
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
4559
4539
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
|
4560
4540
|
} | {};
|
|
4561
|
-
}> & {} & 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" | "
|
|
4541
|
+
}> & {} & 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}`> & {
|
|
4562
4542
|
_allExposed: {} | (HTMLInputElement & Omit<Omit<{
|
|
4563
4543
|
$: import("vue").ComponentInternalInstance;
|
|
4564
4544
|
$data: {};
|
|
@@ -4814,7 +4794,6 @@ export declare const VMaskInput: {
|
|
|
4814
4794
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
4815
4795
|
active: boolean;
|
|
4816
4796
|
centerAffix: boolean;
|
|
4817
|
-
details: boolean;
|
|
4818
4797
|
dirty: boolean;
|
|
4819
4798
|
disabled: boolean;
|
|
4820
4799
|
glow: boolean;
|
|
@@ -4824,6 +4803,7 @@ export declare const VMaskInput: {
|
|
|
4824
4803
|
reverse: boolean;
|
|
4825
4804
|
singleLine: boolean;
|
|
4826
4805
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
4806
|
+
details: boolean;
|
|
4827
4807
|
}> & Omit<{
|
|
4828
4808
|
theme?: string | undefined;
|
|
4829
4809
|
class?: any;
|
|
@@ -4841,7 +4821,6 @@ export declare const VMaskInput: {
|
|
|
4841
4821
|
centerAffix?: boolean | undefined;
|
|
4842
4822
|
color?: string | undefined;
|
|
4843
4823
|
baseColor?: string | undefined;
|
|
4844
|
-
details: boolean;
|
|
4845
4824
|
dirty: boolean;
|
|
4846
4825
|
disabled: boolean;
|
|
4847
4826
|
glow: boolean;
|
|
@@ -4858,6 +4837,7 @@ export declare const VMaskInput: {
|
|
|
4858
4837
|
"onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
4859
4838
|
"onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
4860
4839
|
id?: string | undefined;
|
|
4840
|
+
details: boolean;
|
|
4861
4841
|
} & 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">;
|
|
4862
4842
|
$attrs: {
|
|
4863
4843
|
[x: string]: unknown;
|
|
@@ -4902,7 +4882,6 @@ export declare const VMaskInput: {
|
|
|
4902
4882
|
clearable: boolean;
|
|
4903
4883
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
4904
4884
|
active: boolean;
|
|
4905
|
-
details: boolean;
|
|
4906
4885
|
dirty: boolean;
|
|
4907
4886
|
disabled: boolean;
|
|
4908
4887
|
glow: boolean;
|
|
@@ -4912,6 +4891,7 @@ export declare const VMaskInput: {
|
|
|
4912
4891
|
reverse: boolean;
|
|
4913
4892
|
singleLine: boolean;
|
|
4914
4893
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
4894
|
+
details: boolean;
|
|
4915
4895
|
} & {
|
|
4916
4896
|
theme?: string | undefined;
|
|
4917
4897
|
class?: any;
|
|
@@ -4947,7 +4927,6 @@ export declare const VMaskInput: {
|
|
|
4947
4927
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
4948
4928
|
active: boolean;
|
|
4949
4929
|
centerAffix: boolean;
|
|
4950
|
-
details: boolean;
|
|
4951
4930
|
dirty: boolean;
|
|
4952
4931
|
disabled: boolean;
|
|
4953
4932
|
glow: boolean;
|
|
@@ -4957,6 +4936,7 @@ export declare const VMaskInput: {
|
|
|
4957
4936
|
reverse: boolean;
|
|
4958
4937
|
singleLine: boolean;
|
|
4959
4938
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
4939
|
+
details: boolean;
|
|
4960
4940
|
}, {}, string, import("vue").SlotsType<Partial<{
|
|
4961
4941
|
clear: (arg: import("../../components/VField/VField.js").DefaultInputSlot & {
|
|
4962
4942
|
props: Record<string, any>;
|
|
@@ -5010,7 +4990,6 @@ export declare const VMaskInput: {
|
|
|
5010
4990
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
5011
4991
|
active: boolean;
|
|
5012
4992
|
centerAffix: boolean;
|
|
5013
|
-
details: boolean;
|
|
5014
4993
|
dirty: boolean;
|
|
5015
4994
|
disabled: boolean;
|
|
5016
4995
|
glow: boolean;
|
|
@@ -5020,6 +4999,7 @@ export declare const VMaskInput: {
|
|
|
5020
4999
|
reverse: boolean;
|
|
5021
5000
|
singleLine: boolean;
|
|
5022
5001
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
5002
|
+
details: boolean;
|
|
5023
5003
|
}> & Omit<{
|
|
5024
5004
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
5025
5005
|
focused: boolean;
|
|
@@ -5027,7 +5007,6 @@ export declare const VMaskInput: {
|
|
|
5027
5007
|
clearable: boolean;
|
|
5028
5008
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
5029
5009
|
active: boolean;
|
|
5030
|
-
details: boolean;
|
|
5031
5010
|
dirty: boolean;
|
|
5032
5011
|
disabled: boolean;
|
|
5033
5012
|
glow: boolean;
|
|
@@ -5037,6 +5016,7 @@ export declare const VMaskInput: {
|
|
|
5037
5016
|
reverse: boolean;
|
|
5038
5017
|
singleLine: boolean;
|
|
5039
5018
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
5019
|
+
details: boolean;
|
|
5040
5020
|
} & {
|
|
5041
5021
|
theme?: string | undefined;
|
|
5042
5022
|
class?: any;
|
|
@@ -5093,7 +5073,6 @@ export declare const VMaskInput: {
|
|
|
5093
5073
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
5094
5074
|
active: boolean;
|
|
5095
5075
|
centerAffix: boolean;
|
|
5096
|
-
details: boolean;
|
|
5097
5076
|
dirty: boolean;
|
|
5098
5077
|
disabled: boolean;
|
|
5099
5078
|
glow: boolean;
|
|
@@ -5128,7 +5107,6 @@ export declare const VMaskInput: {
|
|
|
5128
5107
|
clearable: boolean;
|
|
5129
5108
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
5130
5109
|
active: boolean;
|
|
5131
|
-
details: boolean;
|
|
5132
5110
|
dirty: boolean;
|
|
5133
5111
|
disabled: boolean;
|
|
5134
5112
|
glow: boolean;
|
|
@@ -5262,7 +5240,6 @@ export declare const VMaskInput: {
|
|
|
5262
5240
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
5263
5241
|
active: boolean;
|
|
5264
5242
|
centerAffix: boolean;
|
|
5265
|
-
details: boolean;
|
|
5266
5243
|
dirty: boolean;
|
|
5267
5244
|
disabled: boolean;
|
|
5268
5245
|
glow: boolean;
|
|
@@ -5354,7 +5331,6 @@ export declare const VMaskInput: {
|
|
|
5354
5331
|
centerAffix?: boolean | undefined;
|
|
5355
5332
|
color?: string | undefined;
|
|
5356
5333
|
baseColor?: string | undefined;
|
|
5357
|
-
details: boolean;
|
|
5358
5334
|
dirty: boolean;
|
|
5359
5335
|
disabled: boolean;
|
|
5360
5336
|
glow: boolean;
|
|
@@ -5401,7 +5377,7 @@ export declare const VMaskInput: {
|
|
|
5401
5377
|
"v-slot:message"?: false | ((arg: import("../../components/VMessages/VMessages.js").VMessageSlot) => import("vue").VNodeChild) | undefined;
|
|
5402
5378
|
"v-slot:prepend"?: false | ((arg: import("../../components/VInput/VInput.js").VInputSlot) => import("vue").VNodeChild) | undefined;
|
|
5403
5379
|
"v-slot:prepend-inner"?: false | ((arg: import("../../components/VField/VField.js").DefaultInputSlot) => import("vue").VNodeChild) | undefined;
|
|
5404
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "active" | "autofocus" | "centerAffix" | "clearIcon" | "clearable" | "density" | "
|
|
5380
|
+
} & 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">;
|
|
5405
5381
|
$attrs: {
|
|
5406
5382
|
[x: string]: unknown;
|
|
5407
5383
|
};
|
|
@@ -5469,7 +5445,6 @@ export declare const VMaskInput: {
|
|
|
5469
5445
|
clearable: boolean;
|
|
5470
5446
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
5471
5447
|
active: boolean;
|
|
5472
|
-
details: boolean;
|
|
5473
5448
|
dirty: boolean;
|
|
5474
5449
|
disabled: boolean;
|
|
5475
5450
|
glow: boolean;
|
|
@@ -5838,7 +5813,6 @@ export declare const VMaskInput: {
|
|
|
5838
5813
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
5839
5814
|
active: boolean;
|
|
5840
5815
|
centerAffix: boolean;
|
|
5841
|
-
details: boolean;
|
|
5842
5816
|
dirty: boolean;
|
|
5843
5817
|
disabled: boolean;
|
|
5844
5818
|
glow: boolean;
|
|
@@ -5848,6 +5822,7 @@ export declare const VMaskInput: {
|
|
|
5848
5822
|
reverse: boolean;
|
|
5849
5823
|
singleLine: boolean;
|
|
5850
5824
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
5825
|
+
details: boolean;
|
|
5851
5826
|
}> & Omit<{
|
|
5852
5827
|
theme?: string | undefined;
|
|
5853
5828
|
class?: any;
|
|
@@ -5865,7 +5840,6 @@ export declare const VMaskInput: {
|
|
|
5865
5840
|
centerAffix?: boolean | undefined;
|
|
5866
5841
|
color?: string | undefined;
|
|
5867
5842
|
baseColor?: string | undefined;
|
|
5868
|
-
details: boolean;
|
|
5869
5843
|
dirty: boolean;
|
|
5870
5844
|
disabled: boolean;
|
|
5871
5845
|
glow: boolean;
|
|
@@ -5882,6 +5856,7 @@ export declare const VMaskInput: {
|
|
|
5882
5856
|
"onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
5883
5857
|
"onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
5884
5858
|
id?: string | undefined;
|
|
5859
|
+
details: boolean;
|
|
5885
5860
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "active" | "centerAffix" | "clearIcon" | "clearable" | "details" | "dirty" | "disabled" | "error" | "flat" | "focused" | "glow" | "persistentClear" | "reverse" | "rounded" | "singleLine" | "style" | "tile" | "variant">;
|
|
5886
5861
|
$attrs: {
|
|
5887
5862
|
[x: string]: unknown;
|
|
@@ -5926,7 +5901,6 @@ export declare const VMaskInput: {
|
|
|
5926
5901
|
clearable: boolean;
|
|
5927
5902
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
5928
5903
|
active: boolean;
|
|
5929
|
-
details: boolean;
|
|
5930
5904
|
dirty: boolean;
|
|
5931
5905
|
disabled: boolean;
|
|
5932
5906
|
glow: boolean;
|
|
@@ -5936,6 +5910,7 @@ export declare const VMaskInput: {
|
|
|
5936
5910
|
reverse: boolean;
|
|
5937
5911
|
singleLine: boolean;
|
|
5938
5912
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
5913
|
+
details: boolean;
|
|
5939
5914
|
} & {
|
|
5940
5915
|
theme?: string | undefined;
|
|
5941
5916
|
class?: any;
|
|
@@ -5971,7 +5946,6 @@ export declare const VMaskInput: {
|
|
|
5971
5946
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
5972
5947
|
active: boolean;
|
|
5973
5948
|
centerAffix: boolean;
|
|
5974
|
-
details: boolean;
|
|
5975
5949
|
dirty: boolean;
|
|
5976
5950
|
disabled: boolean;
|
|
5977
5951
|
glow: boolean;
|
|
@@ -5981,6 +5955,7 @@ export declare const VMaskInput: {
|
|
|
5981
5955
|
reverse: boolean;
|
|
5982
5956
|
singleLine: boolean;
|
|
5983
5957
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
5958
|
+
details: boolean;
|
|
5984
5959
|
}, {}, string, import("vue").SlotsType<Partial<{
|
|
5985
5960
|
clear: (arg: import("../../components/VField/VField.js").DefaultInputSlot & {
|
|
5986
5961
|
props: Record<string, any>;
|
|
@@ -6034,7 +6009,6 @@ export declare const VMaskInput: {
|
|
|
6034
6009
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
6035
6010
|
active: boolean;
|
|
6036
6011
|
centerAffix: boolean;
|
|
6037
|
-
details: boolean;
|
|
6038
6012
|
dirty: boolean;
|
|
6039
6013
|
disabled: boolean;
|
|
6040
6014
|
glow: boolean;
|
|
@@ -6044,6 +6018,7 @@ export declare const VMaskInput: {
|
|
|
6044
6018
|
reverse: boolean;
|
|
6045
6019
|
singleLine: boolean;
|
|
6046
6020
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
6021
|
+
details: boolean;
|
|
6047
6022
|
}> & Omit<{
|
|
6048
6023
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
6049
6024
|
focused: boolean;
|
|
@@ -6051,7 +6026,6 @@ export declare const VMaskInput: {
|
|
|
6051
6026
|
clearable: boolean;
|
|
6052
6027
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
6053
6028
|
active: boolean;
|
|
6054
|
-
details: boolean;
|
|
6055
6029
|
dirty: boolean;
|
|
6056
6030
|
disabled: boolean;
|
|
6057
6031
|
glow: boolean;
|
|
@@ -6061,6 +6035,7 @@ export declare const VMaskInput: {
|
|
|
6061
6035
|
reverse: boolean;
|
|
6062
6036
|
singleLine: boolean;
|
|
6063
6037
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
6038
|
+
details: boolean;
|
|
6064
6039
|
} & {
|
|
6065
6040
|
theme?: string | undefined;
|
|
6066
6041
|
class?: any;
|
|
@@ -6121,7 +6096,6 @@ export declare const VMaskInput: {
|
|
|
6121
6096
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
6122
6097
|
active: boolean;
|
|
6123
6098
|
centerAffix: boolean;
|
|
6124
|
-
details: boolean;
|
|
6125
6099
|
dirty: boolean;
|
|
6126
6100
|
disabled: boolean;
|
|
6127
6101
|
glow: boolean;
|
|
@@ -6212,7 +6186,6 @@ export declare const VMaskInput: {
|
|
|
6212
6186
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
6213
6187
|
active: boolean;
|
|
6214
6188
|
centerAffix: boolean;
|
|
6215
|
-
details: boolean;
|
|
6216
6189
|
dirty: boolean;
|
|
6217
6190
|
disabled: boolean;
|
|
6218
6191
|
glow: boolean;
|
|
@@ -6242,7 +6215,6 @@ export declare const VMaskInput: {
|
|
|
6242
6215
|
clearable: boolean;
|
|
6243
6216
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
6244
6217
|
active: boolean;
|
|
6245
|
-
details: boolean;
|
|
6246
6218
|
dirty: boolean;
|
|
6247
6219
|
disabled: boolean;
|
|
6248
6220
|
glow: boolean;
|
|
@@ -6356,7 +6328,7 @@ export declare const VMaskInput: {
|
|
|
6356
6328
|
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
|
6357
6329
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
6358
6330
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
|
6359
|
-
}, "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" | "
|
|
6331
|
+
}, "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<{
|
|
6360
6332
|
$: import("vue").ComponentInternalInstance;
|
|
6361
6333
|
$data: {};
|
|
6362
6334
|
$props: Partial<{
|
|
@@ -6611,7 +6583,6 @@ export declare const VMaskInput: {
|
|
|
6611
6583
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
6612
6584
|
active: boolean;
|
|
6613
6585
|
centerAffix: boolean;
|
|
6614
|
-
details: boolean;
|
|
6615
6586
|
dirty: boolean;
|
|
6616
6587
|
disabled: boolean;
|
|
6617
6588
|
glow: boolean;
|
|
@@ -6621,6 +6592,7 @@ export declare const VMaskInput: {
|
|
|
6621
6592
|
reverse: boolean;
|
|
6622
6593
|
singleLine: boolean;
|
|
6623
6594
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
6595
|
+
details: boolean;
|
|
6624
6596
|
}> & Omit<{
|
|
6625
6597
|
theme?: string | undefined;
|
|
6626
6598
|
class?: any;
|
|
@@ -6638,7 +6610,6 @@ export declare const VMaskInput: {
|
|
|
6638
6610
|
centerAffix?: boolean | undefined;
|
|
6639
6611
|
color?: string | undefined;
|
|
6640
6612
|
baseColor?: string | undefined;
|
|
6641
|
-
details: boolean;
|
|
6642
6613
|
dirty: boolean;
|
|
6643
6614
|
disabled: boolean;
|
|
6644
6615
|
glow: boolean;
|
|
@@ -6655,6 +6626,7 @@ export declare const VMaskInput: {
|
|
|
6655
6626
|
"onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
6656
6627
|
"onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
6657
6628
|
id?: string | undefined;
|
|
6629
|
+
details: boolean;
|
|
6658
6630
|
} & 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">;
|
|
6659
6631
|
$attrs: {
|
|
6660
6632
|
[x: string]: unknown;
|
|
@@ -6699,7 +6671,6 @@ export declare const VMaskInput: {
|
|
|
6699
6671
|
clearable: boolean;
|
|
6700
6672
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
6701
6673
|
active: boolean;
|
|
6702
|
-
details: boolean;
|
|
6703
6674
|
dirty: boolean;
|
|
6704
6675
|
disabled: boolean;
|
|
6705
6676
|
glow: boolean;
|
|
@@ -6709,6 +6680,7 @@ export declare const VMaskInput: {
|
|
|
6709
6680
|
reverse: boolean;
|
|
6710
6681
|
singleLine: boolean;
|
|
6711
6682
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
6683
|
+
details: boolean;
|
|
6712
6684
|
} & {
|
|
6713
6685
|
theme?: string | undefined;
|
|
6714
6686
|
class?: any;
|
|
@@ -6744,7 +6716,6 @@ export declare const VMaskInput: {
|
|
|
6744
6716
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
6745
6717
|
active: boolean;
|
|
6746
6718
|
centerAffix: boolean;
|
|
6747
|
-
details: boolean;
|
|
6748
6719
|
dirty: boolean;
|
|
6749
6720
|
disabled: boolean;
|
|
6750
6721
|
glow: boolean;
|
|
@@ -6754,6 +6725,7 @@ export declare const VMaskInput: {
|
|
|
6754
6725
|
reverse: boolean;
|
|
6755
6726
|
singleLine: boolean;
|
|
6756
6727
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
6728
|
+
details: boolean;
|
|
6757
6729
|
}, {}, string, import("vue").SlotsType<Partial<{
|
|
6758
6730
|
clear: (arg: import("../../components/VField/VField.js").DefaultInputSlot & {
|
|
6759
6731
|
props: Record<string, any>;
|
|
@@ -6807,7 +6779,6 @@ export declare const VMaskInput: {
|
|
|
6807
6779
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
6808
6780
|
active: boolean;
|
|
6809
6781
|
centerAffix: boolean;
|
|
6810
|
-
details: boolean;
|
|
6811
6782
|
dirty: boolean;
|
|
6812
6783
|
disabled: boolean;
|
|
6813
6784
|
glow: boolean;
|
|
@@ -6817,6 +6788,7 @@ export declare const VMaskInput: {
|
|
|
6817
6788
|
reverse: boolean;
|
|
6818
6789
|
singleLine: boolean;
|
|
6819
6790
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
6791
|
+
details: boolean;
|
|
6820
6792
|
}> & Omit<{
|
|
6821
6793
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
6822
6794
|
focused: boolean;
|
|
@@ -6824,7 +6796,6 @@ export declare const VMaskInput: {
|
|
|
6824
6796
|
clearable: boolean;
|
|
6825
6797
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
6826
6798
|
active: boolean;
|
|
6827
|
-
details: boolean;
|
|
6828
6799
|
dirty: boolean;
|
|
6829
6800
|
disabled: boolean;
|
|
6830
6801
|
glow: boolean;
|
|
@@ -6834,6 +6805,7 @@ export declare const VMaskInput: {
|
|
|
6834
6805
|
reverse: boolean;
|
|
6835
6806
|
singleLine: boolean;
|
|
6836
6807
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
6808
|
+
details: boolean;
|
|
6837
6809
|
} & {
|
|
6838
6810
|
theme?: string | undefined;
|
|
6839
6811
|
class?: any;
|
|
@@ -6871,7 +6843,7 @@ export declare const VMaskInput: {
|
|
|
6871
6843
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
6872
6844
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
|
6873
6845
|
} | {};
|
|
6874
|
-
}> & {} & 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" | "
|
|
6846
|
+
}> & {} & 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}`> & {
|
|
6875
6847
|
_allExposed: {} | (HTMLInputElement & Omit<Omit<{
|
|
6876
6848
|
$: import("vue").ComponentInternalInstance;
|
|
6877
6849
|
$data: {};
|
|
@@ -7127,7 +7099,6 @@ export declare const VMaskInput: {
|
|
|
7127
7099
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
7128
7100
|
active: boolean;
|
|
7129
7101
|
centerAffix: boolean;
|
|
7130
|
-
details: boolean;
|
|
7131
7102
|
dirty: boolean;
|
|
7132
7103
|
disabled: boolean;
|
|
7133
7104
|
glow: boolean;
|
|
@@ -7137,6 +7108,7 @@ export declare const VMaskInput: {
|
|
|
7137
7108
|
reverse: boolean;
|
|
7138
7109
|
singleLine: boolean;
|
|
7139
7110
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
7111
|
+
details: boolean;
|
|
7140
7112
|
}> & Omit<{
|
|
7141
7113
|
theme?: string | undefined;
|
|
7142
7114
|
class?: any;
|
|
@@ -7154,7 +7126,6 @@ export declare const VMaskInput: {
|
|
|
7154
7126
|
centerAffix?: boolean | undefined;
|
|
7155
7127
|
color?: string | undefined;
|
|
7156
7128
|
baseColor?: string | undefined;
|
|
7157
|
-
details: boolean;
|
|
7158
7129
|
dirty: boolean;
|
|
7159
7130
|
disabled: boolean;
|
|
7160
7131
|
glow: boolean;
|
|
@@ -7171,6 +7142,7 @@ export declare const VMaskInput: {
|
|
|
7171
7142
|
"onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
7172
7143
|
"onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
7173
7144
|
id?: string | undefined;
|
|
7145
|
+
details: boolean;
|
|
7174
7146
|
} & 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">;
|
|
7175
7147
|
$attrs: {
|
|
7176
7148
|
[x: string]: unknown;
|
|
@@ -7215,7 +7187,6 @@ export declare const VMaskInput: {
|
|
|
7215
7187
|
clearable: boolean;
|
|
7216
7188
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
7217
7189
|
active: boolean;
|
|
7218
|
-
details: boolean;
|
|
7219
7190
|
dirty: boolean;
|
|
7220
7191
|
disabled: boolean;
|
|
7221
7192
|
glow: boolean;
|
|
@@ -7225,6 +7196,7 @@ export declare const VMaskInput: {
|
|
|
7225
7196
|
reverse: boolean;
|
|
7226
7197
|
singleLine: boolean;
|
|
7227
7198
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
7199
|
+
details: boolean;
|
|
7228
7200
|
} & {
|
|
7229
7201
|
theme?: string | undefined;
|
|
7230
7202
|
class?: any;
|
|
@@ -7260,7 +7232,6 @@ export declare const VMaskInput: {
|
|
|
7260
7232
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
7261
7233
|
active: boolean;
|
|
7262
7234
|
centerAffix: boolean;
|
|
7263
|
-
details: boolean;
|
|
7264
7235
|
dirty: boolean;
|
|
7265
7236
|
disabled: boolean;
|
|
7266
7237
|
glow: boolean;
|
|
@@ -7270,6 +7241,7 @@ export declare const VMaskInput: {
|
|
|
7270
7241
|
reverse: boolean;
|
|
7271
7242
|
singleLine: boolean;
|
|
7272
7243
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
7244
|
+
details: boolean;
|
|
7273
7245
|
}, {}, string, import("vue").SlotsType<Partial<{
|
|
7274
7246
|
clear: (arg: import("../../components/VField/VField.js").DefaultInputSlot & {
|
|
7275
7247
|
props: Record<string, any>;
|
|
@@ -7323,7 +7295,6 @@ export declare const VMaskInput: {
|
|
|
7323
7295
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
7324
7296
|
active: boolean;
|
|
7325
7297
|
centerAffix: boolean;
|
|
7326
|
-
details: boolean;
|
|
7327
7298
|
dirty: boolean;
|
|
7328
7299
|
disabled: boolean;
|
|
7329
7300
|
glow: boolean;
|
|
@@ -7333,6 +7304,7 @@ export declare const VMaskInput: {
|
|
|
7333
7304
|
reverse: boolean;
|
|
7334
7305
|
singleLine: boolean;
|
|
7335
7306
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
7307
|
+
details: boolean;
|
|
7336
7308
|
}> & Omit<{
|
|
7337
7309
|
style: string | false | import("vue").StyleValue[] | import("vue").CSSProperties | null;
|
|
7338
7310
|
focused: boolean;
|
|
@@ -7340,7 +7312,6 @@ export declare const VMaskInput: {
|
|
|
7340
7312
|
clearable: boolean;
|
|
7341
7313
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
7342
7314
|
active: boolean;
|
|
7343
|
-
details: boolean;
|
|
7344
7315
|
dirty: boolean;
|
|
7345
7316
|
disabled: boolean;
|
|
7346
7317
|
glow: boolean;
|
|
@@ -7350,6 +7321,7 @@ export declare const VMaskInput: {
|
|
|
7350
7321
|
reverse: boolean;
|
|
7351
7322
|
singleLine: boolean;
|
|
7352
7323
|
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
7324
|
+
details: boolean;
|
|
7353
7325
|
} & {
|
|
7354
7326
|
theme?: string | undefined;
|
|
7355
7327
|
class?: any;
|
|
@@ -7408,7 +7380,6 @@ export declare const VMaskInput: {
|
|
|
7408
7380
|
clearIcon: import("../../composables/icons.js").IconValue;
|
|
7409
7381
|
active: boolean;
|
|
7410
7382
|
centerAffix: boolean;
|
|
7411
|
-
details: boolean;
|
|
7412
7383
|
dirty: boolean;
|
|
7413
7384
|
disabled: boolean;
|
|
7414
7385
|
glow: boolean;
|
|
@@ -7538,7 +7509,6 @@ export declare const VMaskInput: {
|
|
|
7538
7509
|
};
|
|
7539
7510
|
color: StringConstructor;
|
|
7540
7511
|
baseColor: StringConstructor;
|
|
7541
|
-
details: BooleanConstructor;
|
|
7542
7512
|
dirty: BooleanConstructor;
|
|
7543
7513
|
disabled: {
|
|
7544
7514
|
type: BooleanConstructor;
|
|
@@ -7653,7 +7623,6 @@ export declare const VMaskInput: {
|
|
|
7653
7623
|
};
|
|
7654
7624
|
color: StringConstructor;
|
|
7655
7625
|
baseColor: StringConstructor;
|
|
7656
|
-
details: BooleanConstructor;
|
|
7657
7626
|
dirty: BooleanConstructor;
|
|
7658
7627
|
disabled: {
|
|
7659
7628
|
type: BooleanConstructor;
|