@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
@@ -567,14 +567,14 @@ export declare const makeVDateInputProps: <Defaults extends {
|
|
567
567
|
default: unknown extends Defaults["readonly"] ? boolean | null : NonNullable<boolean | null> | Defaults["readonly"];
|
568
568
|
};
|
569
569
|
rules: unknown extends Defaults["rules"] ? {
|
570
|
-
type: PropType<readonly import("../../types.js").ValidationRule[]>;
|
570
|
+
type: PropType<readonly (import("../../types.js").ValidationRule | import("../rules/index.js").ValidationAlias)[]>;
|
571
571
|
default: () => never[];
|
572
572
|
} : Omit<{
|
573
|
-
type: PropType<readonly import("../../types.js").ValidationRule[]>;
|
573
|
+
type: PropType<readonly (import("../../types.js").ValidationRule | import("../rules/index.js").ValidationAlias)[]>;
|
574
574
|
default: () => never[];
|
575
575
|
}, "type" | "default"> & {
|
576
|
-
type: PropType<unknown extends Defaults["rules"] ? readonly import("../../
|
577
|
-
default: unknown extends Defaults["rules"] ? readonly import("../../
|
576
|
+
type: PropType<unknown extends Defaults["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)?])[] : 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)?])[] | Defaults["rules"]>;
|
577
|
+
default: unknown extends Defaults["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)?])[] : 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)?])[] | Defaults["rules"];
|
578
578
|
};
|
579
579
|
validateOn: unknown extends Defaults["validateOn"] ? PropType<("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined> : {
|
580
580
|
type: PropType<unknown extends Defaults["validateOn"] ? ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined : ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | Defaults["validateOn"] | undefined>;
|
@@ -821,7 +821,7 @@ export declare const VDateInput: {
|
|
821
821
|
tag: string | import("../../util/index.js").JSXComponent;
|
822
822
|
landscape: boolean;
|
823
823
|
messages: string | readonly string[];
|
824
|
-
rules: readonly import("../../
|
824
|
+
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)?])[];
|
825
825
|
focused: boolean;
|
826
826
|
errorMessages: string | readonly string[] | null;
|
827
827
|
maxErrors: string | number;
|
@@ -988,7 +988,7 @@ export declare const VDateInput: {
|
|
988
988
|
disabled: boolean;
|
989
989
|
readonly: boolean | null;
|
990
990
|
messages: string | readonly string[];
|
991
|
-
rules: readonly import("../../
|
991
|
+
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)?])[];
|
992
992
|
focused: boolean;
|
993
993
|
errorMessages: string | readonly string[] | null;
|
994
994
|
maxErrors: string | number;
|
@@ -1019,7 +1019,7 @@ export declare const VDateInput: {
|
|
1019
1019
|
disabled: boolean;
|
1020
1020
|
readonly: boolean | null;
|
1021
1021
|
messages: string | readonly string[];
|
1022
|
-
rules: readonly import("../../
|
1022
|
+
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)?])[];
|
1023
1023
|
focused: boolean;
|
1024
1024
|
errorMessages: string | readonly string[] | null;
|
1025
1025
|
maxErrors: string | number;
|
@@ -1170,7 +1170,7 @@ export declare const VDateInput: {
|
|
1170
1170
|
disabled: boolean;
|
1171
1171
|
readonly: boolean | null;
|
1172
1172
|
messages: string | readonly string[];
|
1173
|
-
rules: readonly import("../../
|
1173
|
+
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)?])[];
|
1174
1174
|
focused: boolean;
|
1175
1175
|
errorMessages: string | readonly string[] | null;
|
1176
1176
|
maxErrors: string | number;
|
@@ -1293,7 +1293,7 @@ export declare const VDateInput: {
|
|
1293
1293
|
disabled: boolean | null;
|
1294
1294
|
readonly: boolean | null;
|
1295
1295
|
messages: string | readonly string[];
|
1296
|
-
rules: readonly import("../../
|
1296
|
+
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)?])[];
|
1297
1297
|
focused: boolean;
|
1298
1298
|
errorMessages: string | readonly string[] | null;
|
1299
1299
|
maxErrors: string | number;
|
@@ -1309,7 +1309,7 @@ export declare const VDateInput: {
|
|
1309
1309
|
disabled: boolean | null;
|
1310
1310
|
readonly: boolean | null;
|
1311
1311
|
messages: string | readonly string[];
|
1312
|
-
rules: readonly import("../../
|
1312
|
+
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)?])[];
|
1313
1313
|
focused: boolean;
|
1314
1314
|
errorMessages: string | readonly string[] | null;
|
1315
1315
|
maxErrors: string | number;
|
@@ -1364,7 +1364,7 @@ export declare const VDateInput: {
|
|
1364
1364
|
disabled: boolean | null;
|
1365
1365
|
readonly: boolean | null;
|
1366
1366
|
messages: string | readonly string[];
|
1367
|
-
rules: readonly import("../../
|
1367
|
+
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)?])[];
|
1368
1368
|
focused: boolean;
|
1369
1369
|
errorMessages: string | readonly string[] | null;
|
1370
1370
|
maxErrors: string | number;
|
@@ -1409,7 +1409,7 @@ export declare const VDateInput: {
|
|
1409
1409
|
disabled: boolean | null;
|
1410
1410
|
readonly: boolean | null;
|
1411
1411
|
messages: string | readonly string[];
|
1412
|
-
rules: readonly import("../../
|
1412
|
+
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)?])[];
|
1413
1413
|
focused: boolean;
|
1414
1414
|
errorMessages: string | readonly string[] | null;
|
1415
1415
|
maxErrors: string | number;
|
@@ -1451,7 +1451,7 @@ export declare const VDateInput: {
|
|
1451
1451
|
disabled: boolean | null;
|
1452
1452
|
readonly: boolean | null;
|
1453
1453
|
messages: string | readonly string[];
|
1454
|
-
rules: readonly import("../../
|
1454
|
+
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)?])[];
|
1455
1455
|
focused: boolean;
|
1456
1456
|
errorMessages: string | readonly string[] | null;
|
1457
1457
|
maxErrors: string | number;
|
@@ -1467,7 +1467,7 @@ export declare const VDateInput: {
|
|
1467
1467
|
disabled: boolean | null;
|
1468
1468
|
readonly: boolean | null;
|
1469
1469
|
messages: string | readonly string[];
|
1470
|
-
rules: readonly import("../../
|
1470
|
+
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)?])[];
|
1471
1471
|
focused: boolean;
|
1472
1472
|
errorMessages: string | readonly string[] | null;
|
1473
1473
|
maxErrors: string | number;
|
@@ -1766,7 +1766,7 @@ export declare const VDateInput: {
|
|
1766
1766
|
disabled: boolean;
|
1767
1767
|
readonly: boolean | null;
|
1768
1768
|
messages: string | readonly string[];
|
1769
|
-
rules: readonly import("../../
|
1769
|
+
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)?])[];
|
1770
1770
|
focused: boolean;
|
1771
1771
|
errorMessages: string | readonly string[] | null;
|
1772
1772
|
maxErrors: string | number;
|
@@ -1834,7 +1834,7 @@ export declare const VDateInput: {
|
|
1834
1834
|
disabled: boolean;
|
1835
1835
|
readonly: boolean | null;
|
1836
1836
|
messages: string | readonly string[];
|
1837
|
-
rules: readonly import("../../
|
1837
|
+
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)?])[];
|
1838
1838
|
focused: boolean;
|
1839
1839
|
errorMessages: string | readonly string[] | null;
|
1840
1840
|
maxErrors: string | number;
|
@@ -1865,7 +1865,7 @@ export declare const VDateInput: {
|
|
1865
1865
|
disabled: boolean;
|
1866
1866
|
readonly: boolean | null;
|
1867
1867
|
messages: string | readonly string[];
|
1868
|
-
rules: readonly import("../../
|
1868
|
+
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)?])[];
|
1869
1869
|
focused: boolean;
|
1870
1870
|
errorMessages: string | readonly string[] | null;
|
1871
1871
|
maxErrors: string | number;
|
@@ -1988,7 +1988,7 @@ export declare const VDateInput: {
|
|
1988
1988
|
disabled: boolean | null;
|
1989
1989
|
readonly: boolean | null;
|
1990
1990
|
messages: string | readonly string[];
|
1991
|
-
rules: readonly import("../../
|
1991
|
+
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)?])[];
|
1992
1992
|
focused: boolean;
|
1993
1993
|
errorMessages: string | readonly string[] | null;
|
1994
1994
|
maxErrors: string | number;
|
@@ -2004,7 +2004,7 @@ export declare const VDateInput: {
|
|
2004
2004
|
disabled: boolean | null;
|
2005
2005
|
readonly: boolean | null;
|
2006
2006
|
messages: string | readonly string[];
|
2007
|
-
rules: readonly import("../../
|
2007
|
+
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)?])[];
|
2008
2008
|
focused: boolean;
|
2009
2009
|
errorMessages: string | readonly string[] | null;
|
2010
2010
|
maxErrors: string | number;
|
@@ -2059,7 +2059,7 @@ export declare const VDateInput: {
|
|
2059
2059
|
disabled: boolean | null;
|
2060
2060
|
readonly: boolean | null;
|
2061
2061
|
messages: string | readonly string[];
|
2062
|
-
rules: readonly import("../../
|
2062
|
+
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)?])[];
|
2063
2063
|
focused: boolean;
|
2064
2064
|
errorMessages: string | readonly string[] | null;
|
2065
2065
|
maxErrors: string | number;
|
@@ -2104,7 +2104,7 @@ export declare const VDateInput: {
|
|
2104
2104
|
disabled: boolean | null;
|
2105
2105
|
readonly: boolean | null;
|
2106
2106
|
messages: string | readonly string[];
|
2107
|
-
rules: readonly import("../../
|
2107
|
+
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)?])[];
|
2108
2108
|
focused: boolean;
|
2109
2109
|
errorMessages: string | readonly string[] | null;
|
2110
2110
|
maxErrors: string | number;
|
@@ -2146,7 +2146,7 @@ export declare const VDateInput: {
|
|
2146
2146
|
disabled: boolean | null;
|
2147
2147
|
readonly: boolean | null;
|
2148
2148
|
messages: string | readonly string[];
|
2149
|
-
rules: readonly import("../../
|
2149
|
+
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)?])[];
|
2150
2150
|
focused: boolean;
|
2151
2151
|
errorMessages: string | readonly string[] | null;
|
2152
2152
|
maxErrors: string | number;
|
@@ -2162,7 +2162,7 @@ export declare const VDateInput: {
|
|
2162
2162
|
disabled: boolean | null;
|
2163
2163
|
readonly: boolean | null;
|
2164
2164
|
messages: string | readonly string[];
|
2165
|
-
rules: readonly import("../../
|
2165
|
+
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)?])[];
|
2166
2166
|
focused: boolean;
|
2167
2167
|
errorMessages: string | readonly string[] | null;
|
2168
2168
|
maxErrors: string | number;
|
@@ -2454,7 +2454,7 @@ export declare const VDateInput: {
|
|
2454
2454
|
disabled: boolean | null;
|
2455
2455
|
readonly: boolean | null;
|
2456
2456
|
messages: string | readonly string[];
|
2457
|
-
rules: readonly import("../../
|
2457
|
+
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)?])[];
|
2458
2458
|
focused: boolean;
|
2459
2459
|
errorMessages: string | readonly string[] | null;
|
2460
2460
|
maxErrors: string | number;
|
@@ -2470,7 +2470,7 @@ export declare const VDateInput: {
|
|
2470
2470
|
disabled: boolean | null;
|
2471
2471
|
readonly: boolean | null;
|
2472
2472
|
messages: string | readonly string[];
|
2473
|
-
rules: readonly import("../../
|
2473
|
+
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)?])[];
|
2474
2474
|
focused: boolean;
|
2475
2475
|
errorMessages: string | readonly string[] | null;
|
2476
2476
|
maxErrors: string | number;
|
@@ -2525,7 +2525,7 @@ export declare const VDateInput: {
|
|
2525
2525
|
disabled: boolean | null;
|
2526
2526
|
readonly: boolean | null;
|
2527
2527
|
messages: string | readonly string[];
|
2528
|
-
rules: readonly import("../../
|
2528
|
+
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)?])[];
|
2529
2529
|
focused: boolean;
|
2530
2530
|
errorMessages: string | readonly string[] | null;
|
2531
2531
|
maxErrors: string | number;
|
@@ -2570,7 +2570,7 @@ export declare const VDateInput: {
|
|
2570
2570
|
disabled: boolean | null;
|
2571
2571
|
readonly: boolean | null;
|
2572
2572
|
messages: string | readonly string[];
|
2573
|
-
rules: readonly import("../../
|
2573
|
+
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)?])[];
|
2574
2574
|
focused: boolean;
|
2575
2575
|
errorMessages: string | readonly string[] | null;
|
2576
2576
|
maxErrors: string | number;
|
@@ -2612,7 +2612,7 @@ export declare const VDateInput: {
|
|
2612
2612
|
disabled: boolean | null;
|
2613
2613
|
readonly: boolean | null;
|
2614
2614
|
messages: string | readonly string[];
|
2615
|
-
rules: readonly import("../../
|
2615
|
+
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)?])[];
|
2616
2616
|
focused: boolean;
|
2617
2617
|
errorMessages: string | readonly string[] | null;
|
2618
2618
|
maxErrors: string | number;
|
@@ -2628,7 +2628,7 @@ export declare const VDateInput: {
|
|
2628
2628
|
disabled: boolean | null;
|
2629
2629
|
readonly: boolean | null;
|
2630
2630
|
messages: string | readonly string[];
|
2631
|
-
rules: readonly import("../../
|
2631
|
+
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)?])[];
|
2632
2632
|
focused: boolean;
|
2633
2633
|
errorMessages: string | readonly string[] | null;
|
2634
2634
|
maxErrors: string | number;
|
@@ -2936,7 +2936,7 @@ export declare const VDateInput: {
|
|
2936
2936
|
tag: string | import("../../util/index.js").JSXComponent;
|
2937
2937
|
landscape: boolean;
|
2938
2938
|
messages: string | readonly string[];
|
2939
|
-
rules: readonly import("../../
|
2939
|
+
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)?])[];
|
2940
2940
|
focused: boolean;
|
2941
2941
|
errorMessages: string | readonly string[] | null;
|
2942
2942
|
maxErrors: string | number;
|
@@ -3018,7 +3018,7 @@ export declare const VDateInput: {
|
|
3018
3018
|
tag: string | import("../../util/index.js").JSXComponent;
|
3019
3019
|
landscape: boolean;
|
3020
3020
|
messages: string | readonly string[];
|
3021
|
-
rules: readonly import("../../
|
3021
|
+
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)?])[];
|
3022
3022
|
focused: boolean;
|
3023
3023
|
errorMessages: string | readonly string[] | null;
|
3024
3024
|
maxErrors: string | number;
|
@@ -3185,7 +3185,7 @@ export declare const VDateInput: {
|
|
3185
3185
|
disabled: boolean;
|
3186
3186
|
readonly: boolean | null;
|
3187
3187
|
messages: string | readonly string[];
|
3188
|
-
rules: readonly import("../../
|
3188
|
+
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)?])[];
|
3189
3189
|
focused: boolean;
|
3190
3190
|
errorMessages: string | readonly string[] | null;
|
3191
3191
|
maxErrors: string | number;
|
@@ -3216,7 +3216,7 @@ export declare const VDateInput: {
|
|
3216
3216
|
disabled: boolean;
|
3217
3217
|
readonly: boolean | null;
|
3218
3218
|
messages: string | readonly string[];
|
3219
|
-
rules: readonly import("../../
|
3219
|
+
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)?])[];
|
3220
3220
|
focused: boolean;
|
3221
3221
|
errorMessages: string | readonly string[] | null;
|
3222
3222
|
maxErrors: string | number;
|
@@ -3367,7 +3367,7 @@ export declare const VDateInput: {
|
|
3367
3367
|
disabled: boolean;
|
3368
3368
|
readonly: boolean | null;
|
3369
3369
|
messages: string | readonly string[];
|
3370
|
-
rules: readonly import("../../
|
3370
|
+
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)?])[];
|
3371
3371
|
focused: boolean;
|
3372
3372
|
errorMessages: string | readonly string[] | null;
|
3373
3373
|
maxErrors: string | number;
|
@@ -3490,7 +3490,7 @@ export declare const VDateInput: {
|
|
3490
3490
|
disabled: boolean | null;
|
3491
3491
|
readonly: boolean | null;
|
3492
3492
|
messages: string | readonly string[];
|
3493
|
-
rules: readonly import("../../
|
3493
|
+
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)?])[];
|
3494
3494
|
focused: boolean;
|
3495
3495
|
errorMessages: string | readonly string[] | null;
|
3496
3496
|
maxErrors: string | number;
|
@@ -3506,7 +3506,7 @@ export declare const VDateInput: {
|
|
3506
3506
|
disabled: boolean | null;
|
3507
3507
|
readonly: boolean | null;
|
3508
3508
|
messages: string | readonly string[];
|
3509
|
-
rules: readonly import("../../
|
3509
|
+
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)?])[];
|
3510
3510
|
focused: boolean;
|
3511
3511
|
errorMessages: string | readonly string[] | null;
|
3512
3512
|
maxErrors: string | number;
|
@@ -3561,7 +3561,7 @@ export declare const VDateInput: {
|
|
3561
3561
|
disabled: boolean | null;
|
3562
3562
|
readonly: boolean | null;
|
3563
3563
|
messages: string | readonly string[];
|
3564
|
-
rules: readonly import("../../
|
3564
|
+
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)?])[];
|
3565
3565
|
focused: boolean;
|
3566
3566
|
errorMessages: string | readonly string[] | null;
|
3567
3567
|
maxErrors: string | number;
|
@@ -3606,7 +3606,7 @@ export declare const VDateInput: {
|
|
3606
3606
|
disabled: boolean | null;
|
3607
3607
|
readonly: boolean | null;
|
3608
3608
|
messages: string | readonly string[];
|
3609
|
-
rules: readonly import("../../
|
3609
|
+
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)?])[];
|
3610
3610
|
focused: boolean;
|
3611
3611
|
errorMessages: string | readonly string[] | null;
|
3612
3612
|
maxErrors: string | number;
|
@@ -3648,7 +3648,7 @@ export declare const VDateInput: {
|
|
3648
3648
|
disabled: boolean | null;
|
3649
3649
|
readonly: boolean | null;
|
3650
3650
|
messages: string | readonly string[];
|
3651
|
-
rules: readonly import("../../
|
3651
|
+
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)?])[];
|
3652
3652
|
focused: boolean;
|
3653
3653
|
errorMessages: string | readonly string[] | null;
|
3654
3654
|
maxErrors: string | number;
|
@@ -3664,7 +3664,7 @@ export declare const VDateInput: {
|
|
3664
3664
|
disabled: boolean | null;
|
3665
3665
|
readonly: boolean | null;
|
3666
3666
|
messages: string | readonly string[];
|
3667
|
-
rules: readonly import("../../
|
3667
|
+
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)?])[];
|
3668
3668
|
focused: boolean;
|
3669
3669
|
errorMessages: string | readonly string[] | null;
|
3670
3670
|
maxErrors: string | number;
|
@@ -3963,7 +3963,7 @@ export declare const VDateInput: {
|
|
3963
3963
|
disabled: boolean;
|
3964
3964
|
readonly: boolean | null;
|
3965
3965
|
messages: string | readonly string[];
|
3966
|
-
rules: readonly import("../../
|
3966
|
+
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)?])[];
|
3967
3967
|
focused: boolean;
|
3968
3968
|
errorMessages: string | readonly string[] | null;
|
3969
3969
|
maxErrors: string | number;
|
@@ -4031,7 +4031,7 @@ export declare const VDateInput: {
|
|
4031
4031
|
disabled: boolean;
|
4032
4032
|
readonly: boolean | null;
|
4033
4033
|
messages: string | readonly string[];
|
4034
|
-
rules: readonly import("../../
|
4034
|
+
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)?])[];
|
4035
4035
|
focused: boolean;
|
4036
4036
|
errorMessages: string | readonly string[] | null;
|
4037
4037
|
maxErrors: string | number;
|
@@ -4062,7 +4062,7 @@ export declare const VDateInput: {
|
|
4062
4062
|
disabled: boolean;
|
4063
4063
|
readonly: boolean | null;
|
4064
4064
|
messages: string | readonly string[];
|
4065
|
-
rules: readonly import("../../
|
4065
|
+
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)?])[];
|
4066
4066
|
focused: boolean;
|
4067
4067
|
errorMessages: string | readonly string[] | null;
|
4068
4068
|
maxErrors: string | number;
|
@@ -4185,7 +4185,7 @@ export declare const VDateInput: {
|
|
4185
4185
|
disabled: boolean | null;
|
4186
4186
|
readonly: boolean | null;
|
4187
4187
|
messages: string | readonly string[];
|
4188
|
-
rules: readonly import("../../
|
4188
|
+
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)?])[];
|
4189
4189
|
focused: boolean;
|
4190
4190
|
errorMessages: string | readonly string[] | null;
|
4191
4191
|
maxErrors: string | number;
|
@@ -4201,7 +4201,7 @@ export declare const VDateInput: {
|
|
4201
4201
|
disabled: boolean | null;
|
4202
4202
|
readonly: boolean | null;
|
4203
4203
|
messages: string | readonly string[];
|
4204
|
-
rules: readonly import("../../
|
4204
|
+
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)?])[];
|
4205
4205
|
focused: boolean;
|
4206
4206
|
errorMessages: string | readonly string[] | null;
|
4207
4207
|
maxErrors: string | number;
|
@@ -4256,7 +4256,7 @@ export declare const VDateInput: {
|
|
4256
4256
|
disabled: boolean | null;
|
4257
4257
|
readonly: boolean | null;
|
4258
4258
|
messages: string | readonly string[];
|
4259
|
-
rules: readonly import("../../
|
4259
|
+
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)?])[];
|
4260
4260
|
focused: boolean;
|
4261
4261
|
errorMessages: string | readonly string[] | null;
|
4262
4262
|
maxErrors: string | number;
|
@@ -4301,7 +4301,7 @@ export declare const VDateInput: {
|
|
4301
4301
|
disabled: boolean | null;
|
4302
4302
|
readonly: boolean | null;
|
4303
4303
|
messages: string | readonly string[];
|
4304
|
-
rules: readonly import("../../
|
4304
|
+
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)?])[];
|
4305
4305
|
focused: boolean;
|
4306
4306
|
errorMessages: string | readonly string[] | null;
|
4307
4307
|
maxErrors: string | number;
|
@@ -4343,7 +4343,7 @@ export declare const VDateInput: {
|
|
4343
4343
|
disabled: boolean | null;
|
4344
4344
|
readonly: boolean | null;
|
4345
4345
|
messages: string | readonly string[];
|
4346
|
-
rules: readonly import("../../
|
4346
|
+
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)?])[];
|
4347
4347
|
focused: boolean;
|
4348
4348
|
errorMessages: string | readonly string[] | null;
|
4349
4349
|
maxErrors: string | number;
|
@@ -4359,7 +4359,7 @@ export declare const VDateInput: {
|
|
4359
4359
|
disabled: boolean | null;
|
4360
4360
|
readonly: boolean | null;
|
4361
4361
|
messages: string | readonly string[];
|
4362
|
-
rules: readonly import("../../
|
4362
|
+
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)?])[];
|
4363
4363
|
focused: boolean;
|
4364
4364
|
errorMessages: string | readonly string[] | null;
|
4365
4365
|
maxErrors: string | number;
|
@@ -4651,7 +4651,7 @@ export declare const VDateInput: {
|
|
4651
4651
|
disabled: boolean | null;
|
4652
4652
|
readonly: boolean | null;
|
4653
4653
|
messages: string | readonly string[];
|
4654
|
-
rules: readonly import("../../
|
4654
|
+
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)?])[];
|
4655
4655
|
focused: boolean;
|
4656
4656
|
errorMessages: string | readonly string[] | null;
|
4657
4657
|
maxErrors: string | number;
|
@@ -4667,7 +4667,7 @@ export declare const VDateInput: {
|
|
4667
4667
|
disabled: boolean | null;
|
4668
4668
|
readonly: boolean | null;
|
4669
4669
|
messages: string | readonly string[];
|
4670
|
-
rules: readonly import("../../
|
4670
|
+
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)?])[];
|
4671
4671
|
focused: boolean;
|
4672
4672
|
errorMessages: string | readonly string[] | null;
|
4673
4673
|
maxErrors: string | number;
|
@@ -4722,7 +4722,7 @@ export declare const VDateInput: {
|
|
4722
4722
|
disabled: boolean | null;
|
4723
4723
|
readonly: boolean | null;
|
4724
4724
|
messages: string | readonly string[];
|
4725
|
-
rules: readonly import("../../
|
4725
|
+
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)?])[];
|
4726
4726
|
focused: boolean;
|
4727
4727
|
errorMessages: string | readonly string[] | null;
|
4728
4728
|
maxErrors: string | number;
|
@@ -4767,7 +4767,7 @@ export declare const VDateInput: {
|
|
4767
4767
|
disabled: boolean | null;
|
4768
4768
|
readonly: boolean | null;
|
4769
4769
|
messages: string | readonly string[];
|
4770
|
-
rules: readonly import("../../
|
4770
|
+
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)?])[];
|
4771
4771
|
focused: boolean;
|
4772
4772
|
errorMessages: string | readonly string[] | null;
|
4773
4773
|
maxErrors: string | number;
|
@@ -4809,7 +4809,7 @@ export declare const VDateInput: {
|
|
4809
4809
|
disabled: boolean | null;
|
4810
4810
|
readonly: boolean | null;
|
4811
4811
|
messages: string | readonly string[];
|
4812
|
-
rules: readonly import("../../
|
4812
|
+
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)?])[];
|
4813
4813
|
focused: boolean;
|
4814
4814
|
errorMessages: string | readonly string[] | null;
|
4815
4815
|
maxErrors: string | number;
|
@@ -4825,7 +4825,7 @@ export declare const VDateInput: {
|
|
4825
4825
|
disabled: boolean | null;
|
4826
4826
|
readonly: boolean | null;
|
4827
4827
|
messages: string | readonly string[];
|
4828
|
-
rules: readonly import("../../
|
4828
|
+
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)?])[];
|
4829
4829
|
focused: boolean;
|
4830
4830
|
errorMessages: string | readonly string[] | null;
|
4831
4831
|
maxErrors: string | number;
|
@@ -5128,7 +5128,7 @@ export declare const VDateInput: {
|
|
5128
5128
|
tag: string | import("../../util/index.js").JSXComponent;
|
5129
5129
|
landscape: boolean;
|
5130
5130
|
messages: string | readonly string[];
|
5131
|
-
rules: readonly import("../../
|
5131
|
+
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)?])[];
|
5132
5132
|
focused: boolean;
|
5133
5133
|
errorMessages: string | readonly string[] | null;
|
5134
5134
|
maxErrors: string | number;
|
@@ -5189,7 +5189,7 @@ export declare const VDateInput: {
|
|
5189
5189
|
tag: string | import("../../util/index.js").JSXComponent;
|
5190
5190
|
landscape: boolean;
|
5191
5191
|
messages: string | readonly string[];
|
5192
|
-
rules: readonly import("../../
|
5192
|
+
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)?])[];
|
5193
5193
|
focused: boolean;
|
5194
5194
|
errorMessages: string | readonly string[] | null;
|
5195
5195
|
maxErrors: string | number;
|
@@ -5356,7 +5356,7 @@ export declare const VDateInput: {
|
|
5356
5356
|
disabled: boolean;
|
5357
5357
|
readonly: boolean | null;
|
5358
5358
|
messages: string | readonly string[];
|
5359
|
-
rules: readonly import("../../
|
5359
|
+
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)?])[];
|
5360
5360
|
focused: boolean;
|
5361
5361
|
errorMessages: string | readonly string[] | null;
|
5362
5362
|
maxErrors: string | number;
|
@@ -5387,7 +5387,7 @@ export declare const VDateInput: {
|
|
5387
5387
|
disabled: boolean;
|
5388
5388
|
readonly: boolean | null;
|
5389
5389
|
messages: string | readonly string[];
|
5390
|
-
rules: readonly import("../../
|
5390
|
+
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)?])[];
|
5391
5391
|
focused: boolean;
|
5392
5392
|
errorMessages: string | readonly string[] | null;
|
5393
5393
|
maxErrors: string | number;
|
@@ -5538,7 +5538,7 @@ export declare const VDateInput: {
|
|
5538
5538
|
disabled: boolean;
|
5539
5539
|
readonly: boolean | null;
|
5540
5540
|
messages: string | readonly string[];
|
5541
|
-
rules: readonly import("../../
|
5541
|
+
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)?])[];
|
5542
5542
|
focused: boolean;
|
5543
5543
|
errorMessages: string | readonly string[] | null;
|
5544
5544
|
maxErrors: string | number;
|
@@ -5661,7 +5661,7 @@ export declare const VDateInput: {
|
|
5661
5661
|
disabled: boolean | null;
|
5662
5662
|
readonly: boolean | null;
|
5663
5663
|
messages: string | readonly string[];
|
5664
|
-
rules: readonly import("../../
|
5664
|
+
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)?])[];
|
5665
5665
|
focused: boolean;
|
5666
5666
|
errorMessages: string | readonly string[] | null;
|
5667
5667
|
maxErrors: string | number;
|
@@ -5677,7 +5677,7 @@ export declare const VDateInput: {
|
|
5677
5677
|
disabled: boolean | null;
|
5678
5678
|
readonly: boolean | null;
|
5679
5679
|
messages: string | readonly string[];
|
5680
|
-
rules: readonly import("../../
|
5680
|
+
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)?])[];
|
5681
5681
|
focused: boolean;
|
5682
5682
|
errorMessages: string | readonly string[] | null;
|
5683
5683
|
maxErrors: string | number;
|
@@ -5732,7 +5732,7 @@ export declare const VDateInput: {
|
|
5732
5732
|
disabled: boolean | null;
|
5733
5733
|
readonly: boolean | null;
|
5734
5734
|
messages: string | readonly string[];
|
5735
|
-
rules: readonly import("../../
|
5735
|
+
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)?])[];
|
5736
5736
|
focused: boolean;
|
5737
5737
|
errorMessages: string | readonly string[] | null;
|
5738
5738
|
maxErrors: string | number;
|
@@ -5777,7 +5777,7 @@ export declare const VDateInput: {
|
|
5777
5777
|
disabled: boolean | null;
|
5778
5778
|
readonly: boolean | null;
|
5779
5779
|
messages: string | readonly string[];
|
5780
|
-
rules: readonly import("../../
|
5780
|
+
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)?])[];
|
5781
5781
|
focused: boolean;
|
5782
5782
|
errorMessages: string | readonly string[] | null;
|
5783
5783
|
maxErrors: string | number;
|
@@ -5819,7 +5819,7 @@ export declare const VDateInput: {
|
|
5819
5819
|
disabled: boolean | null;
|
5820
5820
|
readonly: boolean | null;
|
5821
5821
|
messages: string | readonly string[];
|
5822
|
-
rules: readonly import("../../
|
5822
|
+
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)?])[];
|
5823
5823
|
focused: boolean;
|
5824
5824
|
errorMessages: string | readonly string[] | null;
|
5825
5825
|
maxErrors: string | number;
|
@@ -5835,7 +5835,7 @@ export declare const VDateInput: {
|
|
5835
5835
|
disabled: boolean | null;
|
5836
5836
|
readonly: boolean | null;
|
5837
5837
|
messages: string | readonly string[];
|
5838
|
-
rules: readonly import("../../
|
5838
|
+
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)?])[];
|
5839
5839
|
focused: boolean;
|
5840
5840
|
errorMessages: string | readonly string[] | null;
|
5841
5841
|
maxErrors: string | number;
|
@@ -6134,7 +6134,7 @@ export declare const VDateInput: {
|
|
6134
6134
|
disabled: boolean;
|
6135
6135
|
readonly: boolean | null;
|
6136
6136
|
messages: string | readonly string[];
|
6137
|
-
rules: readonly import("../../
|
6137
|
+
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)?])[];
|
6138
6138
|
focused: boolean;
|
6139
6139
|
errorMessages: string | readonly string[] | null;
|
6140
6140
|
maxErrors: string | number;
|
@@ -6202,7 +6202,7 @@ export declare const VDateInput: {
|
|
6202
6202
|
disabled: boolean;
|
6203
6203
|
readonly: boolean | null;
|
6204
6204
|
messages: string | readonly string[];
|
6205
|
-
rules: readonly import("../../
|
6205
|
+
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)?])[];
|
6206
6206
|
focused: boolean;
|
6207
6207
|
errorMessages: string | readonly string[] | null;
|
6208
6208
|
maxErrors: string | number;
|
@@ -6233,7 +6233,7 @@ export declare const VDateInput: {
|
|
6233
6233
|
disabled: boolean;
|
6234
6234
|
readonly: boolean | null;
|
6235
6235
|
messages: string | readonly string[];
|
6236
|
-
rules: readonly import("../../
|
6236
|
+
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)?])[];
|
6237
6237
|
focused: boolean;
|
6238
6238
|
errorMessages: string | readonly string[] | null;
|
6239
6239
|
maxErrors: string | number;
|
@@ -6356,7 +6356,7 @@ export declare const VDateInput: {
|
|
6356
6356
|
disabled: boolean | null;
|
6357
6357
|
readonly: boolean | null;
|
6358
6358
|
messages: string | readonly string[];
|
6359
|
-
rules: readonly import("../../
|
6359
|
+
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)?])[];
|
6360
6360
|
focused: boolean;
|
6361
6361
|
errorMessages: string | readonly string[] | null;
|
6362
6362
|
maxErrors: string | number;
|
@@ -6372,7 +6372,7 @@ export declare const VDateInput: {
|
|
6372
6372
|
disabled: boolean | null;
|
6373
6373
|
readonly: boolean | null;
|
6374
6374
|
messages: string | readonly string[];
|
6375
|
-
rules: readonly import("../../
|
6375
|
+
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)?])[];
|
6376
6376
|
focused: boolean;
|
6377
6377
|
errorMessages: string | readonly string[] | null;
|
6378
6378
|
maxErrors: string | number;
|
@@ -6427,7 +6427,7 @@ export declare const VDateInput: {
|
|
6427
6427
|
disabled: boolean | null;
|
6428
6428
|
readonly: boolean | null;
|
6429
6429
|
messages: string | readonly string[];
|
6430
|
-
rules: readonly import("../../
|
6430
|
+
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)?])[];
|
6431
6431
|
focused: boolean;
|
6432
6432
|
errorMessages: string | readonly string[] | null;
|
6433
6433
|
maxErrors: string | number;
|
@@ -6472,7 +6472,7 @@ export declare const VDateInput: {
|
|
6472
6472
|
disabled: boolean | null;
|
6473
6473
|
readonly: boolean | null;
|
6474
6474
|
messages: string | readonly string[];
|
6475
|
-
rules: readonly import("../../
|
6475
|
+
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)?])[];
|
6476
6476
|
focused: boolean;
|
6477
6477
|
errorMessages: string | readonly string[] | null;
|
6478
6478
|
maxErrors: string | number;
|
@@ -6514,7 +6514,7 @@ export declare const VDateInput: {
|
|
6514
6514
|
disabled: boolean | null;
|
6515
6515
|
readonly: boolean | null;
|
6516
6516
|
messages: string | readonly string[];
|
6517
|
-
rules: readonly import("../../
|
6517
|
+
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)?])[];
|
6518
6518
|
focused: boolean;
|
6519
6519
|
errorMessages: string | readonly string[] | null;
|
6520
6520
|
maxErrors: string | number;
|
@@ -6530,7 +6530,7 @@ export declare const VDateInput: {
|
|
6530
6530
|
disabled: boolean | null;
|
6531
6531
|
readonly: boolean | null;
|
6532
6532
|
messages: string | readonly string[];
|
6533
|
-
rules: readonly import("../../
|
6533
|
+
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)?])[];
|
6534
6534
|
focused: boolean;
|
6535
6535
|
errorMessages: string | readonly string[] | null;
|
6536
6536
|
maxErrors: string | number;
|
@@ -6822,7 +6822,7 @@ export declare const VDateInput: {
|
|
6822
6822
|
disabled: boolean | null;
|
6823
6823
|
readonly: boolean | null;
|
6824
6824
|
messages: string | readonly string[];
|
6825
|
-
rules: readonly import("../../
|
6825
|
+
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)?])[];
|
6826
6826
|
focused: boolean;
|
6827
6827
|
errorMessages: string | readonly string[] | null;
|
6828
6828
|
maxErrors: string | number;
|
@@ -6838,7 +6838,7 @@ export declare const VDateInput: {
|
|
6838
6838
|
disabled: boolean | null;
|
6839
6839
|
readonly: boolean | null;
|
6840
6840
|
messages: string | readonly string[];
|
6841
|
-
rules: readonly import("../../
|
6841
|
+
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)?])[];
|
6842
6842
|
focused: boolean;
|
6843
6843
|
errorMessages: string | readonly string[] | null;
|
6844
6844
|
maxErrors: string | number;
|
@@ -6893,7 +6893,7 @@ export declare const VDateInput: {
|
|
6893
6893
|
disabled: boolean | null;
|
6894
6894
|
readonly: boolean | null;
|
6895
6895
|
messages: string | readonly string[];
|
6896
|
-
rules: readonly import("../../
|
6896
|
+
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)?])[];
|
6897
6897
|
focused: boolean;
|
6898
6898
|
errorMessages: string | readonly string[] | null;
|
6899
6899
|
maxErrors: string | number;
|
@@ -6938,7 +6938,7 @@ export declare const VDateInput: {
|
|
6938
6938
|
disabled: boolean | null;
|
6939
6939
|
readonly: boolean | null;
|
6940
6940
|
messages: string | readonly string[];
|
6941
|
-
rules: readonly import("../../
|
6941
|
+
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)?])[];
|
6942
6942
|
focused: boolean;
|
6943
6943
|
errorMessages: string | readonly string[] | null;
|
6944
6944
|
maxErrors: string | number;
|
@@ -6980,7 +6980,7 @@ export declare const VDateInput: {
|
|
6980
6980
|
disabled: boolean | null;
|
6981
6981
|
readonly: boolean | null;
|
6982
6982
|
messages: string | readonly string[];
|
6983
|
-
rules: readonly import("../../
|
6983
|
+
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)?])[];
|
6984
6984
|
focused: boolean;
|
6985
6985
|
errorMessages: string | readonly string[] | null;
|
6986
6986
|
maxErrors: string | number;
|
@@ -6996,7 +6996,7 @@ export declare const VDateInput: {
|
|
6996
6996
|
disabled: boolean | null;
|
6997
6997
|
readonly: boolean | null;
|
6998
6998
|
messages: string | readonly string[];
|
6999
|
-
rules: readonly import("../../
|
6999
|
+
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)?])[];
|
7000
7000
|
focused: boolean;
|
7001
7001
|
errorMessages: string | readonly string[] | null;
|
7002
7002
|
maxErrors: string | number;
|
@@ -7304,7 +7304,7 @@ export declare const VDateInput: {
|
|
7304
7304
|
tag: string | import("../../util/index.js").JSXComponent;
|
7305
7305
|
landscape: boolean;
|
7306
7306
|
messages: string | readonly string[];
|
7307
|
-
rules: readonly import("../../
|
7307
|
+
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)?])[];
|
7308
7308
|
focused: boolean;
|
7309
7309
|
errorMessages: string | readonly string[] | null;
|
7310
7310
|
maxErrors: string | number;
|
@@ -7511,7 +7511,7 @@ export declare const VDateInput: {
|
|
7511
7511
|
default: null;
|
7512
7512
|
};
|
7513
7513
|
rules: {
|
7514
|
-
type: PropType<readonly import("../../types.js").ValidationRule[]>;
|
7514
|
+
type: PropType<readonly (import("../../types.js").ValidationRule | import("../rules/index.js").ValidationAlias)[]>;
|
7515
7515
|
default: () => never[];
|
7516
7516
|
};
|
7517
7517
|
validateOn: PropType<import("../../composables/validation.js").ValidationProps["validateOn"]>;
|
@@ -7743,7 +7743,7 @@ export declare const VDateInput: {
|
|
7743
7743
|
default: null;
|
7744
7744
|
};
|
7745
7745
|
rules: {
|
7746
|
-
type: PropType<readonly import("../../types.js").ValidationRule[]>;
|
7746
|
+
type: PropType<readonly (import("../../types.js").ValidationRule | import("../rules/index.js").ValidationAlias)[]>;
|
7747
7747
|
default: () => never[];
|
7748
7748
|
};
|
7749
7749
|
validateOn: PropType<import("../../composables/validation.js").ValidationProps["validateOn"]>;
|