@vuetify/nightly 3.8.5-master.2025-05-14 → 3.8.5-pr-21419.3ae3440
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +17 -3
- package/dist/json/attributes.json +3653 -3653
- package/dist/json/importMap-labs.json +26 -26
- package/dist/json/importMap.json +150 -150
- package/dist/json/web-types.json +6400 -6400
- package/dist/vuetify-labs.cjs +53 -37
- package/dist/vuetify-labs.css +3989 -3989
- package/dist/vuetify-labs.d.ts +605 -602
- package/dist/vuetify-labs.esm.js +53 -37
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +53 -37
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +53 -37
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +4937 -4937
- package/dist/vuetify.d.ts +517 -514
- package/dist/vuetify.esm.js +53 -37
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +53 -37
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +589 -583
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.d.ts +84 -84
- package/lib/components/VCheckbox/VCheckbox.d.ts +12 -12
- package/lib/components/VCombobox/VCombobox.d.ts +84 -84
- package/lib/components/VFileInput/VFileInput.d.ts +30 -30
- package/lib/components/VInput/VInput.d.ts +12 -12
- package/lib/components/VList/VList.d.ts +3 -3
- package/lib/components/VList/VList.js.map +1 -1
- package/lib/components/VNumberInput/VNumberInput.d.ts +80 -80
- package/lib/components/VRadioGroup/VRadioGroup.d.ts +12 -12
- package/lib/components/VRangeSlider/VRangeSlider.d.ts +12 -12
- package/lib/components/VSelect/VSelect.d.ts +84 -84
- package/lib/components/VSelect/VSelect.js +39 -5
- package/lib/components/VSelect/VSelect.js.map +1 -1
- package/lib/components/VSlider/VSlider.d.ts +12 -12
- package/lib/components/VSwitch/VSwitch.d.ts +12 -12
- package/lib/components/VTextField/VTextField.d.ts +30 -30
- package/lib/components/VTextarea/VTextarea.d.ts +30 -30
- package/lib/components/VValidation/VValidation.d.ts +8 -8
- package/lib/composables/validation.d.ts +6 -5
- package/lib/composables/validation.js +4 -29
- package/lib/composables/validation.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/entry-bundler.js.map +1 -1
- package/lib/framework.d.ts +56 -56
- package/lib/framework.js +1 -1
- package/lib/framework.js.map +1 -1
- package/lib/labs/VColorInput/VColorInput.d.ts +12 -12
- package/lib/labs/VDateInput/VDateInput.d.ts +84 -84
- package/lib/labs/rules/rules.d.ts +9 -5
- package/lib/labs/rules/rules.js +73 -51
- package/lib/labs/rules/rules.js.map +1 -1
- package/lib/util/helpers.js +1 -1
- package/lib/util/helpers.js.map +1 -1
- package/package.json +1 -1
@@ -22,7 +22,7 @@ export declare const VNumberInput: {
|
|
22
22
|
readonly: boolean | null;
|
23
23
|
step: number;
|
24
24
|
messages: string | readonly string[];
|
25
|
-
rules: readonly import("../../
|
25
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
26
26
|
focused: boolean;
|
27
27
|
errorMessages: string | readonly string[] | null;
|
28
28
|
maxErrors: string | number;
|
@@ -153,7 +153,7 @@ export declare const VNumberInput: {
|
|
153
153
|
disabled: boolean;
|
154
154
|
readonly: boolean | null;
|
155
155
|
messages: string | readonly string[];
|
156
|
-
rules: readonly import("../../
|
156
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
157
157
|
focused: boolean;
|
158
158
|
errorMessages: string | readonly string[] | null;
|
159
159
|
maxErrors: string | number;
|
@@ -184,7 +184,7 @@ export declare const VNumberInput: {
|
|
184
184
|
disabled: boolean;
|
185
185
|
readonly: boolean | null;
|
186
186
|
messages: string | readonly string[];
|
187
|
-
rules: readonly import("../../
|
187
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
188
188
|
focused: boolean;
|
189
189
|
errorMessages: string | readonly string[] | null;
|
190
190
|
maxErrors: string | number;
|
@@ -335,7 +335,7 @@ export declare const VNumberInput: {
|
|
335
335
|
disabled: boolean;
|
336
336
|
readonly: boolean | null;
|
337
337
|
messages: string | readonly string[];
|
338
|
-
rules: readonly import("../../
|
338
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
339
339
|
focused: boolean;
|
340
340
|
errorMessages: string | readonly string[] | null;
|
341
341
|
maxErrors: string | number;
|
@@ -458,7 +458,7 @@ export declare const VNumberInput: {
|
|
458
458
|
disabled: boolean | null;
|
459
459
|
readonly: boolean | null;
|
460
460
|
messages: string | readonly string[];
|
461
|
-
rules: readonly import("../../
|
461
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
462
462
|
focused: boolean;
|
463
463
|
errorMessages: string | readonly string[] | null;
|
464
464
|
maxErrors: string | number;
|
@@ -474,7 +474,7 @@ export declare const VNumberInput: {
|
|
474
474
|
disabled: boolean | null;
|
475
475
|
readonly: boolean | null;
|
476
476
|
messages: string | readonly string[];
|
477
|
-
rules: readonly import("../../
|
477
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
478
478
|
focused: boolean;
|
479
479
|
errorMessages: string | readonly string[] | null;
|
480
480
|
maxErrors: string | number;
|
@@ -529,7 +529,7 @@ export declare const VNumberInput: {
|
|
529
529
|
disabled: boolean | null;
|
530
530
|
readonly: boolean | null;
|
531
531
|
messages: string | readonly string[];
|
532
|
-
rules: readonly import("../../
|
532
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
533
533
|
focused: boolean;
|
534
534
|
errorMessages: string | readonly string[] | null;
|
535
535
|
maxErrors: string | number;
|
@@ -574,7 +574,7 @@ export declare const VNumberInput: {
|
|
574
574
|
disabled: boolean | null;
|
575
575
|
readonly: boolean | null;
|
576
576
|
messages: string | readonly string[];
|
577
|
-
rules: readonly import("../../
|
577
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
578
578
|
focused: boolean;
|
579
579
|
errorMessages: string | readonly string[] | null;
|
580
580
|
maxErrors: string | number;
|
@@ -616,7 +616,7 @@ export declare const VNumberInput: {
|
|
616
616
|
disabled: boolean | null;
|
617
617
|
readonly: boolean | null;
|
618
618
|
messages: string | readonly string[];
|
619
|
-
rules: readonly import("../../
|
619
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
620
620
|
focused: boolean;
|
621
621
|
errorMessages: string | readonly string[] | null;
|
622
622
|
maxErrors: string | number;
|
@@ -632,7 +632,7 @@ export declare const VNumberInput: {
|
|
632
632
|
disabled: boolean | null;
|
633
633
|
readonly: boolean | null;
|
634
634
|
messages: string | readonly string[];
|
635
|
-
rules: readonly import("../../
|
635
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
636
636
|
focused: boolean;
|
637
637
|
errorMessages: string | readonly string[] | null;
|
638
638
|
maxErrors: string | number;
|
@@ -931,7 +931,7 @@ export declare const VNumberInput: {
|
|
931
931
|
disabled: boolean;
|
932
932
|
readonly: boolean | null;
|
933
933
|
messages: string | readonly string[];
|
934
|
-
rules: readonly import("../../
|
934
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
935
935
|
focused: boolean;
|
936
936
|
errorMessages: string | readonly string[] | null;
|
937
937
|
maxErrors: string | number;
|
@@ -999,7 +999,7 @@ export declare const VNumberInput: {
|
|
999
999
|
disabled: boolean;
|
1000
1000
|
readonly: boolean | null;
|
1001
1001
|
messages: string | readonly string[];
|
1002
|
-
rules: readonly import("../../
|
1002
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
1003
1003
|
focused: boolean;
|
1004
1004
|
errorMessages: string | readonly string[] | null;
|
1005
1005
|
maxErrors: string | number;
|
@@ -1030,7 +1030,7 @@ export declare const VNumberInput: {
|
|
1030
1030
|
disabled: boolean;
|
1031
1031
|
readonly: boolean | null;
|
1032
1032
|
messages: string | readonly string[];
|
1033
|
-
rules: readonly import("../../
|
1033
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
1034
1034
|
focused: boolean;
|
1035
1035
|
errorMessages: string | readonly string[] | null;
|
1036
1036
|
maxErrors: string | number;
|
@@ -1153,7 +1153,7 @@ export declare const VNumberInput: {
|
|
1153
1153
|
disabled: boolean | null;
|
1154
1154
|
readonly: boolean | null;
|
1155
1155
|
messages: string | readonly string[];
|
1156
|
-
rules: readonly import("../../
|
1156
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
1157
1157
|
focused: boolean;
|
1158
1158
|
errorMessages: string | readonly string[] | null;
|
1159
1159
|
maxErrors: string | number;
|
@@ -1169,7 +1169,7 @@ export declare const VNumberInput: {
|
|
1169
1169
|
disabled: boolean | null;
|
1170
1170
|
readonly: boolean | null;
|
1171
1171
|
messages: string | readonly string[];
|
1172
|
-
rules: readonly import("../../
|
1172
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
1173
1173
|
focused: boolean;
|
1174
1174
|
errorMessages: string | readonly string[] | null;
|
1175
1175
|
maxErrors: string | number;
|
@@ -1224,7 +1224,7 @@ export declare const VNumberInput: {
|
|
1224
1224
|
disabled: boolean | null;
|
1225
1225
|
readonly: boolean | null;
|
1226
1226
|
messages: string | readonly string[];
|
1227
|
-
rules: readonly import("../../
|
1227
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
1228
1228
|
focused: boolean;
|
1229
1229
|
errorMessages: string | readonly string[] | null;
|
1230
1230
|
maxErrors: string | number;
|
@@ -1269,7 +1269,7 @@ export declare const VNumberInput: {
|
|
1269
1269
|
disabled: boolean | null;
|
1270
1270
|
readonly: boolean | null;
|
1271
1271
|
messages: string | readonly string[];
|
1272
|
-
rules: readonly import("../../
|
1272
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
1273
1273
|
focused: boolean;
|
1274
1274
|
errorMessages: string | readonly string[] | null;
|
1275
1275
|
maxErrors: string | number;
|
@@ -1311,7 +1311,7 @@ export declare const VNumberInput: {
|
|
1311
1311
|
disabled: boolean | null;
|
1312
1312
|
readonly: boolean | null;
|
1313
1313
|
messages: string | readonly string[];
|
1314
|
-
rules: readonly import("../../
|
1314
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
1315
1315
|
focused: boolean;
|
1316
1316
|
errorMessages: string | readonly string[] | null;
|
1317
1317
|
maxErrors: string | number;
|
@@ -1327,7 +1327,7 @@ export declare const VNumberInput: {
|
|
1327
1327
|
disabled: boolean | null;
|
1328
1328
|
readonly: boolean | null;
|
1329
1329
|
messages: string | readonly string[];
|
1330
|
-
rules: readonly import("../../
|
1330
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
1331
1331
|
focused: boolean;
|
1332
1332
|
errorMessages: string | readonly string[] | null;
|
1333
1333
|
maxErrors: string | number;
|
@@ -1619,7 +1619,7 @@ export declare const VNumberInput: {
|
|
1619
1619
|
disabled: boolean | null;
|
1620
1620
|
readonly: boolean | null;
|
1621
1621
|
messages: string | readonly string[];
|
1622
|
-
rules: readonly import("../../
|
1622
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
1623
1623
|
focused: boolean;
|
1624
1624
|
errorMessages: string | readonly string[] | null;
|
1625
1625
|
maxErrors: string | number;
|
@@ -1635,7 +1635,7 @@ export declare const VNumberInput: {
|
|
1635
1635
|
disabled: boolean | null;
|
1636
1636
|
readonly: boolean | null;
|
1637
1637
|
messages: string | readonly string[];
|
1638
|
-
rules: readonly import("../../
|
1638
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
1639
1639
|
focused: boolean;
|
1640
1640
|
errorMessages: string | readonly string[] | null;
|
1641
1641
|
maxErrors: string | number;
|
@@ -1690,7 +1690,7 @@ export declare const VNumberInput: {
|
|
1690
1690
|
disabled: boolean | null;
|
1691
1691
|
readonly: boolean | null;
|
1692
1692
|
messages: string | readonly string[];
|
1693
|
-
rules: readonly import("../../
|
1693
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
1694
1694
|
focused: boolean;
|
1695
1695
|
errorMessages: string | readonly string[] | null;
|
1696
1696
|
maxErrors: string | number;
|
@@ -1735,7 +1735,7 @@ export declare const VNumberInput: {
|
|
1735
1735
|
disabled: boolean | null;
|
1736
1736
|
readonly: boolean | null;
|
1737
1737
|
messages: string | readonly string[];
|
1738
|
-
rules: readonly import("../../
|
1738
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
1739
1739
|
focused: boolean;
|
1740
1740
|
errorMessages: string | readonly string[] | null;
|
1741
1741
|
maxErrors: string | number;
|
@@ -1777,7 +1777,7 @@ export declare const VNumberInput: {
|
|
1777
1777
|
disabled: boolean | null;
|
1778
1778
|
readonly: boolean | null;
|
1779
1779
|
messages: string | readonly string[];
|
1780
|
-
rules: readonly import("../../
|
1780
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
1781
1781
|
focused: boolean;
|
1782
1782
|
errorMessages: string | readonly string[] | null;
|
1783
1783
|
maxErrors: string | number;
|
@@ -1793,7 +1793,7 @@ export declare const VNumberInput: {
|
|
1793
1793
|
disabled: boolean | null;
|
1794
1794
|
readonly: boolean | null;
|
1795
1795
|
messages: string | readonly string[];
|
1796
|
-
rules: readonly import("../../
|
1796
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
1797
1797
|
focused: boolean;
|
1798
1798
|
errorMessages: string | readonly string[] | null;
|
1799
1799
|
maxErrors: string | number;
|
@@ -2094,7 +2094,7 @@ export declare const VNumberInput: {
|
|
2094
2094
|
readonly: boolean | null;
|
2095
2095
|
step: number;
|
2096
2096
|
messages: string | readonly string[];
|
2097
|
-
rules: readonly import("../../
|
2097
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
2098
2098
|
focused: boolean;
|
2099
2099
|
errorMessages: string | readonly string[] | null;
|
2100
2100
|
maxErrors: string | number;
|
@@ -2158,7 +2158,7 @@ export declare const VNumberInput: {
|
|
2158
2158
|
readonly: boolean | null;
|
2159
2159
|
step: number;
|
2160
2160
|
messages: string | readonly string[];
|
2161
|
-
rules: readonly import("../../
|
2161
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
2162
2162
|
focused: boolean;
|
2163
2163
|
errorMessages: string | readonly string[] | null;
|
2164
2164
|
maxErrors: string | number;
|
@@ -2289,7 +2289,7 @@ export declare const VNumberInput: {
|
|
2289
2289
|
disabled: boolean;
|
2290
2290
|
readonly: boolean | null;
|
2291
2291
|
messages: string | readonly string[];
|
2292
|
-
rules: readonly import("../../
|
2292
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
2293
2293
|
focused: boolean;
|
2294
2294
|
errorMessages: string | readonly string[] | null;
|
2295
2295
|
maxErrors: string | number;
|
@@ -2320,7 +2320,7 @@ export declare const VNumberInput: {
|
|
2320
2320
|
disabled: boolean;
|
2321
2321
|
readonly: boolean | null;
|
2322
2322
|
messages: string | readonly string[];
|
2323
|
-
rules: readonly import("../../
|
2323
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
2324
2324
|
focused: boolean;
|
2325
2325
|
errorMessages: string | readonly string[] | null;
|
2326
2326
|
maxErrors: string | number;
|
@@ -2471,7 +2471,7 @@ export declare const VNumberInput: {
|
|
2471
2471
|
disabled: boolean;
|
2472
2472
|
readonly: boolean | null;
|
2473
2473
|
messages: string | readonly string[];
|
2474
|
-
rules: readonly import("../../
|
2474
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
2475
2475
|
focused: boolean;
|
2476
2476
|
errorMessages: string | readonly string[] | null;
|
2477
2477
|
maxErrors: string | number;
|
@@ -2594,7 +2594,7 @@ export declare const VNumberInput: {
|
|
2594
2594
|
disabled: boolean | null;
|
2595
2595
|
readonly: boolean | null;
|
2596
2596
|
messages: string | readonly string[];
|
2597
|
-
rules: readonly import("../../
|
2597
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
2598
2598
|
focused: boolean;
|
2599
2599
|
errorMessages: string | readonly string[] | null;
|
2600
2600
|
maxErrors: string | number;
|
@@ -2610,7 +2610,7 @@ export declare const VNumberInput: {
|
|
2610
2610
|
disabled: boolean | null;
|
2611
2611
|
readonly: boolean | null;
|
2612
2612
|
messages: string | readonly string[];
|
2613
|
-
rules: readonly import("../../
|
2613
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
2614
2614
|
focused: boolean;
|
2615
2615
|
errorMessages: string | readonly string[] | null;
|
2616
2616
|
maxErrors: string | number;
|
@@ -2665,7 +2665,7 @@ export declare const VNumberInput: {
|
|
2665
2665
|
disabled: boolean | null;
|
2666
2666
|
readonly: boolean | null;
|
2667
2667
|
messages: string | readonly string[];
|
2668
|
-
rules: readonly import("../../
|
2668
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
2669
2669
|
focused: boolean;
|
2670
2670
|
errorMessages: string | readonly string[] | null;
|
2671
2671
|
maxErrors: string | number;
|
@@ -2710,7 +2710,7 @@ export declare const VNumberInput: {
|
|
2710
2710
|
disabled: boolean | null;
|
2711
2711
|
readonly: boolean | null;
|
2712
2712
|
messages: string | readonly string[];
|
2713
|
-
rules: readonly import("../../
|
2713
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
2714
2714
|
focused: boolean;
|
2715
2715
|
errorMessages: string | readonly string[] | null;
|
2716
2716
|
maxErrors: string | number;
|
@@ -2752,7 +2752,7 @@ export declare const VNumberInput: {
|
|
2752
2752
|
disabled: boolean | null;
|
2753
2753
|
readonly: boolean | null;
|
2754
2754
|
messages: string | readonly string[];
|
2755
|
-
rules: readonly import("../../
|
2755
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
2756
2756
|
focused: boolean;
|
2757
2757
|
errorMessages: string | readonly string[] | null;
|
2758
2758
|
maxErrors: string | number;
|
@@ -2768,7 +2768,7 @@ export declare const VNumberInput: {
|
|
2768
2768
|
disabled: boolean | null;
|
2769
2769
|
readonly: boolean | null;
|
2770
2770
|
messages: string | readonly string[];
|
2771
|
-
rules: readonly import("../../
|
2771
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
2772
2772
|
focused: boolean;
|
2773
2773
|
errorMessages: string | readonly string[] | null;
|
2774
2774
|
maxErrors: string | number;
|
@@ -3067,7 +3067,7 @@ export declare const VNumberInput: {
|
|
3067
3067
|
disabled: boolean;
|
3068
3068
|
readonly: boolean | null;
|
3069
3069
|
messages: string | readonly string[];
|
3070
|
-
rules: readonly import("../../
|
3070
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
3071
3071
|
focused: boolean;
|
3072
3072
|
errorMessages: string | readonly string[] | null;
|
3073
3073
|
maxErrors: string | number;
|
@@ -3135,7 +3135,7 @@ export declare const VNumberInput: {
|
|
3135
3135
|
disabled: boolean;
|
3136
3136
|
readonly: boolean | null;
|
3137
3137
|
messages: string | readonly string[];
|
3138
|
-
rules: readonly import("../../
|
3138
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
3139
3139
|
focused: boolean;
|
3140
3140
|
errorMessages: string | readonly string[] | null;
|
3141
3141
|
maxErrors: string | number;
|
@@ -3166,7 +3166,7 @@ export declare const VNumberInput: {
|
|
3166
3166
|
disabled: boolean;
|
3167
3167
|
readonly: boolean | null;
|
3168
3168
|
messages: string | readonly string[];
|
3169
|
-
rules: readonly import("../../
|
3169
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
3170
3170
|
focused: boolean;
|
3171
3171
|
errorMessages: string | readonly string[] | null;
|
3172
3172
|
maxErrors: string | number;
|
@@ -3289,7 +3289,7 @@ export declare const VNumberInput: {
|
|
3289
3289
|
disabled: boolean | null;
|
3290
3290
|
readonly: boolean | null;
|
3291
3291
|
messages: string | readonly string[];
|
3292
|
-
rules: readonly import("../../
|
3292
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
3293
3293
|
focused: boolean;
|
3294
3294
|
errorMessages: string | readonly string[] | null;
|
3295
3295
|
maxErrors: string | number;
|
@@ -3305,7 +3305,7 @@ export declare const VNumberInput: {
|
|
3305
3305
|
disabled: boolean | null;
|
3306
3306
|
readonly: boolean | null;
|
3307
3307
|
messages: string | readonly string[];
|
3308
|
-
rules: readonly import("../../
|
3308
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
3309
3309
|
focused: boolean;
|
3310
3310
|
errorMessages: string | readonly string[] | null;
|
3311
3311
|
maxErrors: string | number;
|
@@ -3360,7 +3360,7 @@ export declare const VNumberInput: {
|
|
3360
3360
|
disabled: boolean | null;
|
3361
3361
|
readonly: boolean | null;
|
3362
3362
|
messages: string | readonly string[];
|
3363
|
-
rules: readonly import("../../
|
3363
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
3364
3364
|
focused: boolean;
|
3365
3365
|
errorMessages: string | readonly string[] | null;
|
3366
3366
|
maxErrors: string | number;
|
@@ -3405,7 +3405,7 @@ export declare const VNumberInput: {
|
|
3405
3405
|
disabled: boolean | null;
|
3406
3406
|
readonly: boolean | null;
|
3407
3407
|
messages: string | readonly string[];
|
3408
|
-
rules: readonly import("../../
|
3408
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
3409
3409
|
focused: boolean;
|
3410
3410
|
errorMessages: string | readonly string[] | null;
|
3411
3411
|
maxErrors: string | number;
|
@@ -3447,7 +3447,7 @@ export declare const VNumberInput: {
|
|
3447
3447
|
disabled: boolean | null;
|
3448
3448
|
readonly: boolean | null;
|
3449
3449
|
messages: string | readonly string[];
|
3450
|
-
rules: readonly import("../../
|
3450
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
3451
3451
|
focused: boolean;
|
3452
3452
|
errorMessages: string | readonly string[] | null;
|
3453
3453
|
maxErrors: string | number;
|
@@ -3463,7 +3463,7 @@ export declare const VNumberInput: {
|
|
3463
3463
|
disabled: boolean | null;
|
3464
3464
|
readonly: boolean | null;
|
3465
3465
|
messages: string | readonly string[];
|
3466
|
-
rules: readonly import("../../
|
3466
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
3467
3467
|
focused: boolean;
|
3468
3468
|
errorMessages: string | readonly string[] | null;
|
3469
3469
|
maxErrors: string | number;
|
@@ -3755,7 +3755,7 @@ export declare const VNumberInput: {
|
|
3755
3755
|
disabled: boolean | null;
|
3756
3756
|
readonly: boolean | null;
|
3757
3757
|
messages: string | readonly string[];
|
3758
|
-
rules: readonly import("../../
|
3758
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
3759
3759
|
focused: boolean;
|
3760
3760
|
errorMessages: string | readonly string[] | null;
|
3761
3761
|
maxErrors: string | number;
|
@@ -3771,7 +3771,7 @@ export declare const VNumberInput: {
|
|
3771
3771
|
disabled: boolean | null;
|
3772
3772
|
readonly: boolean | null;
|
3773
3773
|
messages: string | readonly string[];
|
3774
|
-
rules: readonly import("../../
|
3774
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
3775
3775
|
focused: boolean;
|
3776
3776
|
errorMessages: string | readonly string[] | null;
|
3777
3777
|
maxErrors: string | number;
|
@@ -3826,7 +3826,7 @@ export declare const VNumberInput: {
|
|
3826
3826
|
disabled: boolean | null;
|
3827
3827
|
readonly: boolean | null;
|
3828
3828
|
messages: string | readonly string[];
|
3829
|
-
rules: readonly import("../../
|
3829
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
3830
3830
|
focused: boolean;
|
3831
3831
|
errorMessages: string | readonly string[] | null;
|
3832
3832
|
maxErrors: string | number;
|
@@ -3871,7 +3871,7 @@ export declare const VNumberInput: {
|
|
3871
3871
|
disabled: boolean | null;
|
3872
3872
|
readonly: boolean | null;
|
3873
3873
|
messages: string | readonly string[];
|
3874
|
-
rules: readonly import("../../
|
3874
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
3875
3875
|
focused: boolean;
|
3876
3876
|
errorMessages: string | readonly string[] | null;
|
3877
3877
|
maxErrors: string | number;
|
@@ -3913,7 +3913,7 @@ export declare const VNumberInput: {
|
|
3913
3913
|
disabled: boolean | null;
|
3914
3914
|
readonly: boolean | null;
|
3915
3915
|
messages: string | readonly string[];
|
3916
|
-
rules: readonly import("../../
|
3916
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
3917
3917
|
focused: boolean;
|
3918
3918
|
errorMessages: string | readonly string[] | null;
|
3919
3919
|
maxErrors: string | number;
|
@@ -3929,7 +3929,7 @@ export declare const VNumberInput: {
|
|
3929
3929
|
disabled: boolean | null;
|
3930
3930
|
readonly: boolean | null;
|
3931
3931
|
messages: string | readonly string[];
|
3932
|
-
rules: readonly import("../../
|
3932
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
3933
3933
|
focused: boolean;
|
3934
3934
|
errorMessages: string | readonly string[] | null;
|
3935
3935
|
maxErrors: string | number;
|
@@ -4228,7 +4228,7 @@ export declare const VNumberInput: {
|
|
4228
4228
|
readonly: boolean | null;
|
4229
4229
|
step: number;
|
4230
4230
|
messages: string | readonly string[];
|
4231
|
-
rules: readonly import("../../
|
4231
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
4232
4232
|
focused: boolean;
|
4233
4233
|
errorMessages: string | readonly string[] | null;
|
4234
4234
|
maxErrors: string | number;
|
@@ -4271,7 +4271,7 @@ export declare const VNumberInput: {
|
|
4271
4271
|
readonly: boolean | null;
|
4272
4272
|
step: number;
|
4273
4273
|
messages: string | readonly string[];
|
4274
|
-
rules: readonly import("../../
|
4274
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
4275
4275
|
focused: boolean;
|
4276
4276
|
errorMessages: string | readonly string[] | null;
|
4277
4277
|
maxErrors: string | number;
|
@@ -4402,7 +4402,7 @@ export declare const VNumberInput: {
|
|
4402
4402
|
disabled: boolean;
|
4403
4403
|
readonly: boolean | null;
|
4404
4404
|
messages: string | readonly string[];
|
4405
|
-
rules: readonly import("../../
|
4405
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
4406
4406
|
focused: boolean;
|
4407
4407
|
errorMessages: string | readonly string[] | null;
|
4408
4408
|
maxErrors: string | number;
|
@@ -4433,7 +4433,7 @@ export declare const VNumberInput: {
|
|
4433
4433
|
disabled: boolean;
|
4434
4434
|
readonly: boolean | null;
|
4435
4435
|
messages: string | readonly string[];
|
4436
|
-
rules: readonly import("../../
|
4436
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
4437
4437
|
focused: boolean;
|
4438
4438
|
errorMessages: string | readonly string[] | null;
|
4439
4439
|
maxErrors: string | number;
|
@@ -4584,7 +4584,7 @@ export declare const VNumberInput: {
|
|
4584
4584
|
disabled: boolean;
|
4585
4585
|
readonly: boolean | null;
|
4586
4586
|
messages: string | readonly string[];
|
4587
|
-
rules: readonly import("../../
|
4587
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
4588
4588
|
focused: boolean;
|
4589
4589
|
errorMessages: string | readonly string[] | null;
|
4590
4590
|
maxErrors: string | number;
|
@@ -4707,7 +4707,7 @@ export declare const VNumberInput: {
|
|
4707
4707
|
disabled: boolean | null;
|
4708
4708
|
readonly: boolean | null;
|
4709
4709
|
messages: string | readonly string[];
|
4710
|
-
rules: readonly import("../../
|
4710
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
4711
4711
|
focused: boolean;
|
4712
4712
|
errorMessages: string | readonly string[] | null;
|
4713
4713
|
maxErrors: string | number;
|
@@ -4723,7 +4723,7 @@ export declare const VNumberInput: {
|
|
4723
4723
|
disabled: boolean | null;
|
4724
4724
|
readonly: boolean | null;
|
4725
4725
|
messages: string | readonly string[];
|
4726
|
-
rules: readonly import("../../
|
4726
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
4727
4727
|
focused: boolean;
|
4728
4728
|
errorMessages: string | readonly string[] | null;
|
4729
4729
|
maxErrors: string | number;
|
@@ -4778,7 +4778,7 @@ export declare const VNumberInput: {
|
|
4778
4778
|
disabled: boolean | null;
|
4779
4779
|
readonly: boolean | null;
|
4780
4780
|
messages: string | readonly string[];
|
4781
|
-
rules: readonly import("../../
|
4781
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
4782
4782
|
focused: boolean;
|
4783
4783
|
errorMessages: string | readonly string[] | null;
|
4784
4784
|
maxErrors: string | number;
|
@@ -4823,7 +4823,7 @@ export declare const VNumberInput: {
|
|
4823
4823
|
disabled: boolean | null;
|
4824
4824
|
readonly: boolean | null;
|
4825
4825
|
messages: string | readonly string[];
|
4826
|
-
rules: readonly import("../../
|
4826
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
4827
4827
|
focused: boolean;
|
4828
4828
|
errorMessages: string | readonly string[] | null;
|
4829
4829
|
maxErrors: string | number;
|
@@ -4865,7 +4865,7 @@ export declare const VNumberInput: {
|
|
4865
4865
|
disabled: boolean | null;
|
4866
4866
|
readonly: boolean | null;
|
4867
4867
|
messages: string | readonly string[];
|
4868
|
-
rules: readonly import("../../
|
4868
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
4869
4869
|
focused: boolean;
|
4870
4870
|
errorMessages: string | readonly string[] | null;
|
4871
4871
|
maxErrors: string | number;
|
@@ -4881,7 +4881,7 @@ export declare const VNumberInput: {
|
|
4881
4881
|
disabled: boolean | null;
|
4882
4882
|
readonly: boolean | null;
|
4883
4883
|
messages: string | readonly string[];
|
4884
|
-
rules: readonly import("../../
|
4884
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
4885
4885
|
focused: boolean;
|
4886
4886
|
errorMessages: string | readonly string[] | null;
|
4887
4887
|
maxErrors: string | number;
|
@@ -5180,7 +5180,7 @@ export declare const VNumberInput: {
|
|
5180
5180
|
disabled: boolean;
|
5181
5181
|
readonly: boolean | null;
|
5182
5182
|
messages: string | readonly string[];
|
5183
|
-
rules: readonly import("../../
|
5183
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
5184
5184
|
focused: boolean;
|
5185
5185
|
errorMessages: string | readonly string[] | null;
|
5186
5186
|
maxErrors: string | number;
|
@@ -5248,7 +5248,7 @@ export declare const VNumberInput: {
|
|
5248
5248
|
disabled: boolean;
|
5249
5249
|
readonly: boolean | null;
|
5250
5250
|
messages: string | readonly string[];
|
5251
|
-
rules: readonly import("../../
|
5251
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
5252
5252
|
focused: boolean;
|
5253
5253
|
errorMessages: string | readonly string[] | null;
|
5254
5254
|
maxErrors: string | number;
|
@@ -5279,7 +5279,7 @@ export declare const VNumberInput: {
|
|
5279
5279
|
disabled: boolean;
|
5280
5280
|
readonly: boolean | null;
|
5281
5281
|
messages: string | readonly string[];
|
5282
|
-
rules: readonly import("../../
|
5282
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
5283
5283
|
focused: boolean;
|
5284
5284
|
errorMessages: string | readonly string[] | null;
|
5285
5285
|
maxErrors: string | number;
|
@@ -5402,7 +5402,7 @@ export declare const VNumberInput: {
|
|
5402
5402
|
disabled: boolean | null;
|
5403
5403
|
readonly: boolean | null;
|
5404
5404
|
messages: string | readonly string[];
|
5405
|
-
rules: readonly import("../../
|
5405
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
5406
5406
|
focused: boolean;
|
5407
5407
|
errorMessages: string | readonly string[] | null;
|
5408
5408
|
maxErrors: string | number;
|
@@ -5418,7 +5418,7 @@ export declare const VNumberInput: {
|
|
5418
5418
|
disabled: boolean | null;
|
5419
5419
|
readonly: boolean | null;
|
5420
5420
|
messages: string | readonly string[];
|
5421
|
-
rules: readonly import("../../
|
5421
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
5422
5422
|
focused: boolean;
|
5423
5423
|
errorMessages: string | readonly string[] | null;
|
5424
5424
|
maxErrors: string | number;
|
@@ -5473,7 +5473,7 @@ export declare const VNumberInput: {
|
|
5473
5473
|
disabled: boolean | null;
|
5474
5474
|
readonly: boolean | null;
|
5475
5475
|
messages: string | readonly string[];
|
5476
|
-
rules: readonly import("../../
|
5476
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
5477
5477
|
focused: boolean;
|
5478
5478
|
errorMessages: string | readonly string[] | null;
|
5479
5479
|
maxErrors: string | number;
|
@@ -5518,7 +5518,7 @@ export declare const VNumberInput: {
|
|
5518
5518
|
disabled: boolean | null;
|
5519
5519
|
readonly: boolean | null;
|
5520
5520
|
messages: string | readonly string[];
|
5521
|
-
rules: readonly import("../../
|
5521
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
5522
5522
|
focused: boolean;
|
5523
5523
|
errorMessages: string | readonly string[] | null;
|
5524
5524
|
maxErrors: string | number;
|
@@ -5560,7 +5560,7 @@ export declare const VNumberInput: {
|
|
5560
5560
|
disabled: boolean | null;
|
5561
5561
|
readonly: boolean | null;
|
5562
5562
|
messages: string | readonly string[];
|
5563
|
-
rules: readonly import("../../
|
5563
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
5564
5564
|
focused: boolean;
|
5565
5565
|
errorMessages: string | readonly string[] | null;
|
5566
5566
|
maxErrors: string | number;
|
@@ -5576,7 +5576,7 @@ export declare const VNumberInput: {
|
|
5576
5576
|
disabled: boolean | null;
|
5577
5577
|
readonly: boolean | null;
|
5578
5578
|
messages: string | readonly string[];
|
5579
|
-
rules: readonly import("../../
|
5579
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
5580
5580
|
focused: boolean;
|
5581
5581
|
errorMessages: string | readonly string[] | null;
|
5582
5582
|
maxErrors: string | number;
|
@@ -5868,7 +5868,7 @@ export declare const VNumberInput: {
|
|
5868
5868
|
disabled: boolean | null;
|
5869
5869
|
readonly: boolean | null;
|
5870
5870
|
messages: string | readonly string[];
|
5871
|
-
rules: readonly import("../../
|
5871
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
5872
5872
|
focused: boolean;
|
5873
5873
|
errorMessages: string | readonly string[] | null;
|
5874
5874
|
maxErrors: string | number;
|
@@ -5884,7 +5884,7 @@ export declare const VNumberInput: {
|
|
5884
5884
|
disabled: boolean | null;
|
5885
5885
|
readonly: boolean | null;
|
5886
5886
|
messages: string | readonly string[];
|
5887
|
-
rules: readonly import("../../
|
5887
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
5888
5888
|
focused: boolean;
|
5889
5889
|
errorMessages: string | readonly string[] | null;
|
5890
5890
|
maxErrors: string | number;
|
@@ -5939,7 +5939,7 @@ export declare const VNumberInput: {
|
|
5939
5939
|
disabled: boolean | null;
|
5940
5940
|
readonly: boolean | null;
|
5941
5941
|
messages: string | readonly string[];
|
5942
|
-
rules: readonly import("../../
|
5942
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
5943
5943
|
focused: boolean;
|
5944
5944
|
errorMessages: string | readonly string[] | null;
|
5945
5945
|
maxErrors: string | number;
|
@@ -5984,7 +5984,7 @@ export declare const VNumberInput: {
|
|
5984
5984
|
disabled: boolean | null;
|
5985
5985
|
readonly: boolean | null;
|
5986
5986
|
messages: string | readonly string[];
|
5987
|
-
rules: readonly import("../../
|
5987
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
5988
5988
|
focused: boolean;
|
5989
5989
|
errorMessages: string | readonly string[] | null;
|
5990
5990
|
maxErrors: string | number;
|
@@ -6026,7 +6026,7 @@ export declare const VNumberInput: {
|
|
6026
6026
|
disabled: boolean | null;
|
6027
6027
|
readonly: boolean | null;
|
6028
6028
|
messages: string | readonly string[];
|
6029
|
-
rules: readonly import("../../
|
6029
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
6030
6030
|
focused: boolean;
|
6031
6031
|
errorMessages: string | readonly string[] | null;
|
6032
6032
|
maxErrors: string | number;
|
@@ -6042,7 +6042,7 @@ export declare const VNumberInput: {
|
|
6042
6042
|
disabled: boolean | null;
|
6043
6043
|
readonly: boolean | null;
|
6044
6044
|
messages: string | readonly string[];
|
6045
|
-
rules: readonly import("../../
|
6045
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
6046
6046
|
focused: boolean;
|
6047
6047
|
errorMessages: string | readonly string[] | null;
|
6048
6048
|
maxErrors: string | number;
|
@@ -6343,7 +6343,7 @@ export declare const VNumberInput: {
|
|
6343
6343
|
readonly: boolean | null;
|
6344
6344
|
step: number;
|
6345
6345
|
messages: string | readonly string[];
|
6346
|
-
rules: readonly import("../../
|
6346
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
6347
6347
|
focused: boolean;
|
6348
6348
|
errorMessages: string | readonly string[] | null;
|
6349
6349
|
maxErrors: string | number;
|
@@ -6433,7 +6433,7 @@ export declare const VNumberInput: {
|
|
6433
6433
|
default: () => never[];
|
6434
6434
|
};
|
6435
6435
|
rules: {
|
6436
|
-
type: PropType<readonly import("../../types.js").ValidationRule[]>;
|
6436
|
+
type: PropType<readonly (import("../../types.js").ValidationRule | import("../../labs/rules/index.js").ValidationAlias)[]>;
|
6437
6437
|
default: () => never[];
|
6438
6438
|
};
|
6439
6439
|
counter: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
@@ -6568,7 +6568,7 @@ export declare const VNumberInput: {
|
|
6568
6568
|
default: () => never[];
|
6569
6569
|
};
|
6570
6570
|
rules: {
|
6571
|
-
type: PropType<readonly import("../../types.js").ValidationRule[]>;
|
6571
|
+
type: PropType<readonly (import("../../types.js").ValidationRule | import("../../labs/rules/index.js").ValidationAlias)[]>;
|
6572
6572
|
default: () => never[];
|
6573
6573
|
};
|
6574
6574
|
counter: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|