@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
@@ -284,14 +284,14 @@ export declare const makeVAutocompleteProps: <Defaults extends {
|
|
284
284
|
default: unknown extends Defaults["messages"] ? string | readonly string[] : NonNullable<string | readonly string[]> | Defaults["messages"];
|
285
285
|
};
|
286
286
|
rules: unknown extends Defaults["rules"] ? {
|
287
|
-
type: PropType<readonly import("../../types.js").ValidationRule[]>;
|
287
|
+
type: PropType<readonly (import("../../types.js").ValidationRule | import("../../labs/rules/index.js").ValidationAlias)[]>;
|
288
288
|
default: () => never[];
|
289
289
|
} : Omit<{
|
290
|
-
type: PropType<readonly import("../../types.js").ValidationRule[]>;
|
290
|
+
type: PropType<readonly (import("../../types.js").ValidationRule | import("../../labs/rules/index.js").ValidationAlias)[]>;
|
291
291
|
default: () => never[];
|
292
292
|
}, "type" | "default"> & {
|
293
|
-
type: PropType<unknown extends Defaults["rules"] ? readonly import("../../
|
294
|
-
default: unknown extends Defaults["rules"] ? readonly import("../../
|
293
|
+
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"]>;
|
294
|
+
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"];
|
295
295
|
};
|
296
296
|
counter: unknown extends Defaults["counter"] ? (StringConstructor | BooleanConstructor | NumberConstructor)[] : {
|
297
297
|
type: PropType<unknown extends Defaults["counter"] ? string | number | boolean : string | number | boolean | Defaults["counter"]>;
|
@@ -2196,7 +2196,7 @@ export declare const VAutocomplete: {
|
|
2196
2196
|
readonly: boolean | null;
|
2197
2197
|
messages: string | readonly string[];
|
2198
2198
|
noDataText: string;
|
2199
|
-
rules: readonly import("../../
|
2199
|
+
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)?])[];
|
2200
2200
|
filterMode: import("../../composables/filter.js").FilterMode;
|
2201
2201
|
noFilter: boolean;
|
2202
2202
|
filterKeys: import("../../composables/filter.js").FilterKeys;
|
@@ -2667,7 +2667,7 @@ export declare const VAutocomplete: {
|
|
2667
2667
|
disabled: boolean;
|
2668
2668
|
readonly: boolean | null;
|
2669
2669
|
messages: string | readonly string[];
|
2670
|
-
rules: readonly import("../../
|
2670
|
+
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)?])[];
|
2671
2671
|
focused: boolean;
|
2672
2672
|
errorMessages: string | readonly string[] | null;
|
2673
2673
|
maxErrors: string | number;
|
@@ -2698,7 +2698,7 @@ export declare const VAutocomplete: {
|
|
2698
2698
|
disabled: boolean;
|
2699
2699
|
readonly: boolean | null;
|
2700
2700
|
messages: string | readonly string[];
|
2701
|
-
rules: readonly import("../../
|
2701
|
+
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)?])[];
|
2702
2702
|
focused: boolean;
|
2703
2703
|
errorMessages: string | readonly string[] | null;
|
2704
2704
|
maxErrors: string | number;
|
@@ -2849,7 +2849,7 @@ export declare const VAutocomplete: {
|
|
2849
2849
|
disabled: boolean;
|
2850
2850
|
readonly: boolean | null;
|
2851
2851
|
messages: string | readonly string[];
|
2852
|
-
rules: readonly import("../../
|
2852
|
+
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)?])[];
|
2853
2853
|
focused: boolean;
|
2854
2854
|
errorMessages: string | readonly string[] | null;
|
2855
2855
|
maxErrors: string | number;
|
@@ -2972,7 +2972,7 @@ export declare const VAutocomplete: {
|
|
2972
2972
|
disabled: boolean | null;
|
2973
2973
|
readonly: boolean | null;
|
2974
2974
|
messages: string | readonly string[];
|
2975
|
-
rules: readonly import("../../
|
2975
|
+
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)?])[];
|
2976
2976
|
focused: boolean;
|
2977
2977
|
errorMessages: string | readonly string[] | null;
|
2978
2978
|
maxErrors: string | number;
|
@@ -2988,7 +2988,7 @@ export declare const VAutocomplete: {
|
|
2988
2988
|
disabled: boolean | null;
|
2989
2989
|
readonly: boolean | null;
|
2990
2990
|
messages: string | readonly string[];
|
2991
|
-
rules: readonly import("../../
|
2991
|
+
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)?])[];
|
2992
2992
|
focused: boolean;
|
2993
2993
|
errorMessages: string | readonly string[] | null;
|
2994
2994
|
maxErrors: string | number;
|
@@ -3043,7 +3043,7 @@ export declare const VAutocomplete: {
|
|
3043
3043
|
disabled: boolean | null;
|
3044
3044
|
readonly: boolean | null;
|
3045
3045
|
messages: string | readonly string[];
|
3046
|
-
rules: readonly import("../../
|
3046
|
+
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)?])[];
|
3047
3047
|
focused: boolean;
|
3048
3048
|
errorMessages: string | readonly string[] | null;
|
3049
3049
|
maxErrors: string | number;
|
@@ -3088,7 +3088,7 @@ export declare const VAutocomplete: {
|
|
3088
3088
|
disabled: boolean | null;
|
3089
3089
|
readonly: boolean | null;
|
3090
3090
|
messages: string | readonly string[];
|
3091
|
-
rules: readonly import("../../
|
3091
|
+
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)?])[];
|
3092
3092
|
focused: boolean;
|
3093
3093
|
errorMessages: string | readonly string[] | null;
|
3094
3094
|
maxErrors: string | number;
|
@@ -3130,7 +3130,7 @@ export declare const VAutocomplete: {
|
|
3130
3130
|
disabled: boolean | null;
|
3131
3131
|
readonly: boolean | null;
|
3132
3132
|
messages: string | readonly string[];
|
3133
|
-
rules: readonly import("../../
|
3133
|
+
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)?])[];
|
3134
3134
|
focused: boolean;
|
3135
3135
|
errorMessages: string | readonly string[] | null;
|
3136
3136
|
maxErrors: string | number;
|
@@ -3146,7 +3146,7 @@ export declare const VAutocomplete: {
|
|
3146
3146
|
disabled: boolean | null;
|
3147
3147
|
readonly: boolean | null;
|
3148
3148
|
messages: string | readonly string[];
|
3149
|
-
rules: readonly import("../../
|
3149
|
+
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)?])[];
|
3150
3150
|
focused: boolean;
|
3151
3151
|
errorMessages: string | readonly string[] | null;
|
3152
3152
|
maxErrors: string | number;
|
@@ -3445,7 +3445,7 @@ export declare const VAutocomplete: {
|
|
3445
3445
|
disabled: boolean;
|
3446
3446
|
readonly: boolean | null;
|
3447
3447
|
messages: string | readonly string[];
|
3448
|
-
rules: readonly import("../../
|
3448
|
+
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)?])[];
|
3449
3449
|
focused: boolean;
|
3450
3450
|
errorMessages: string | readonly string[] | null;
|
3451
3451
|
maxErrors: string | number;
|
@@ -3513,7 +3513,7 @@ export declare const VAutocomplete: {
|
|
3513
3513
|
disabled: boolean;
|
3514
3514
|
readonly: boolean | null;
|
3515
3515
|
messages: string | readonly string[];
|
3516
|
-
rules: readonly import("../../
|
3516
|
+
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)?])[];
|
3517
3517
|
focused: boolean;
|
3518
3518
|
errorMessages: string | readonly string[] | null;
|
3519
3519
|
maxErrors: string | number;
|
@@ -3544,7 +3544,7 @@ export declare const VAutocomplete: {
|
|
3544
3544
|
disabled: boolean;
|
3545
3545
|
readonly: boolean | null;
|
3546
3546
|
messages: string | readonly string[];
|
3547
|
-
rules: readonly import("../../
|
3547
|
+
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)?])[];
|
3548
3548
|
focused: boolean;
|
3549
3549
|
errorMessages: string | readonly string[] | null;
|
3550
3550
|
maxErrors: string | number;
|
@@ -3667,7 +3667,7 @@ export declare const VAutocomplete: {
|
|
3667
3667
|
disabled: boolean | null;
|
3668
3668
|
readonly: boolean | null;
|
3669
3669
|
messages: string | readonly string[];
|
3670
|
-
rules: readonly import("../../
|
3670
|
+
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)?])[];
|
3671
3671
|
focused: boolean;
|
3672
3672
|
errorMessages: string | readonly string[] | null;
|
3673
3673
|
maxErrors: string | number;
|
@@ -3683,7 +3683,7 @@ export declare const VAutocomplete: {
|
|
3683
3683
|
disabled: boolean | null;
|
3684
3684
|
readonly: boolean | null;
|
3685
3685
|
messages: string | readonly string[];
|
3686
|
-
rules: readonly import("../../
|
3686
|
+
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)?])[];
|
3687
3687
|
focused: boolean;
|
3688
3688
|
errorMessages: string | readonly string[] | null;
|
3689
3689
|
maxErrors: string | number;
|
@@ -3738,7 +3738,7 @@ export declare const VAutocomplete: {
|
|
3738
3738
|
disabled: boolean | null;
|
3739
3739
|
readonly: boolean | null;
|
3740
3740
|
messages: string | readonly string[];
|
3741
|
-
rules: readonly import("../../
|
3741
|
+
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)?])[];
|
3742
3742
|
focused: boolean;
|
3743
3743
|
errorMessages: string | readonly string[] | null;
|
3744
3744
|
maxErrors: string | number;
|
@@ -3783,7 +3783,7 @@ export declare const VAutocomplete: {
|
|
3783
3783
|
disabled: boolean | null;
|
3784
3784
|
readonly: boolean | null;
|
3785
3785
|
messages: string | readonly string[];
|
3786
|
-
rules: readonly import("../../
|
3786
|
+
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)?])[];
|
3787
3787
|
focused: boolean;
|
3788
3788
|
errorMessages: string | readonly string[] | null;
|
3789
3789
|
maxErrors: string | number;
|
@@ -3825,7 +3825,7 @@ export declare const VAutocomplete: {
|
|
3825
3825
|
disabled: boolean | null;
|
3826
3826
|
readonly: boolean | null;
|
3827
3827
|
messages: string | readonly string[];
|
3828
|
-
rules: readonly import("../../
|
3828
|
+
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)?])[];
|
3829
3829
|
focused: boolean;
|
3830
3830
|
errorMessages: string | readonly string[] | null;
|
3831
3831
|
maxErrors: string | number;
|
@@ -3841,7 +3841,7 @@ export declare const VAutocomplete: {
|
|
3841
3841
|
disabled: boolean | null;
|
3842
3842
|
readonly: boolean | null;
|
3843
3843
|
messages: string | readonly string[];
|
3844
|
-
rules: readonly import("../../
|
3844
|
+
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)?])[];
|
3845
3845
|
focused: boolean;
|
3846
3846
|
errorMessages: string | readonly string[] | null;
|
3847
3847
|
maxErrors: string | number;
|
@@ -4133,7 +4133,7 @@ export declare const VAutocomplete: {
|
|
4133
4133
|
disabled: boolean | null;
|
4134
4134
|
readonly: boolean | null;
|
4135
4135
|
messages: string | readonly string[];
|
4136
|
-
rules: readonly import("../../
|
4136
|
+
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)?])[];
|
4137
4137
|
focused: boolean;
|
4138
4138
|
errorMessages: string | readonly string[] | null;
|
4139
4139
|
maxErrors: string | number;
|
@@ -4149,7 +4149,7 @@ export declare const VAutocomplete: {
|
|
4149
4149
|
disabled: boolean | null;
|
4150
4150
|
readonly: boolean | null;
|
4151
4151
|
messages: string | readonly string[];
|
4152
|
-
rules: readonly import("../../
|
4152
|
+
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)?])[];
|
4153
4153
|
focused: boolean;
|
4154
4154
|
errorMessages: string | readonly string[] | null;
|
4155
4155
|
maxErrors: string | number;
|
@@ -4204,7 +4204,7 @@ export declare const VAutocomplete: {
|
|
4204
4204
|
disabled: boolean | null;
|
4205
4205
|
readonly: boolean | null;
|
4206
4206
|
messages: string | readonly string[];
|
4207
|
-
rules: readonly import("../../
|
4207
|
+
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)?])[];
|
4208
4208
|
focused: boolean;
|
4209
4209
|
errorMessages: string | readonly string[] | null;
|
4210
4210
|
maxErrors: string | number;
|
@@ -4249,7 +4249,7 @@ export declare const VAutocomplete: {
|
|
4249
4249
|
disabled: boolean | null;
|
4250
4250
|
readonly: boolean | null;
|
4251
4251
|
messages: string | readonly string[];
|
4252
|
-
rules: readonly import("../../
|
4252
|
+
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)?])[];
|
4253
4253
|
focused: boolean;
|
4254
4254
|
errorMessages: string | readonly string[] | null;
|
4255
4255
|
maxErrors: string | number;
|
@@ -4291,7 +4291,7 @@ export declare const VAutocomplete: {
|
|
4291
4291
|
disabled: boolean | null;
|
4292
4292
|
readonly: boolean | null;
|
4293
4293
|
messages: string | readonly string[];
|
4294
|
-
rules: readonly import("../../
|
4294
|
+
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)?])[];
|
4295
4295
|
focused: boolean;
|
4296
4296
|
errorMessages: string | readonly string[] | null;
|
4297
4297
|
maxErrors: string | number;
|
@@ -4307,7 +4307,7 @@ export declare const VAutocomplete: {
|
|
4307
4307
|
disabled: boolean | null;
|
4308
4308
|
readonly: boolean | null;
|
4309
4309
|
messages: string | readonly string[];
|
4310
|
-
rules: readonly import("../../
|
4310
|
+
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)?])[];
|
4311
4311
|
focused: boolean;
|
4312
4312
|
errorMessages: string | readonly string[] | null;
|
4313
4313
|
maxErrors: string | number;
|
@@ -4623,7 +4623,7 @@ export declare const VAutocomplete: {
|
|
4623
4623
|
readonly: boolean | null;
|
4624
4624
|
messages: string | readonly string[];
|
4625
4625
|
noDataText: string;
|
4626
|
-
rules: readonly import("../../
|
4626
|
+
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)?])[];
|
4627
4627
|
filterMode: import("../../composables/filter.js").FilterMode;
|
4628
4628
|
noFilter: boolean;
|
4629
4629
|
filterKeys: import("../../composables/filter.js").FilterKeys;
|
@@ -4712,7 +4712,7 @@ export declare const VAutocomplete: {
|
|
4712
4712
|
readonly: boolean | null;
|
4713
4713
|
messages: string | readonly string[];
|
4714
4714
|
noDataText: string;
|
4715
|
-
rules: readonly import("../../
|
4715
|
+
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)?])[];
|
4716
4716
|
filterMode: import("../../composables/filter.js").FilterMode;
|
4717
4717
|
noFilter: boolean;
|
4718
4718
|
filterKeys: import("../../composables/filter.js").FilterKeys;
|
@@ -5183,7 +5183,7 @@ export declare const VAutocomplete: {
|
|
5183
5183
|
disabled: boolean;
|
5184
5184
|
readonly: boolean | null;
|
5185
5185
|
messages: string | readonly string[];
|
5186
|
-
rules: readonly import("../../
|
5186
|
+
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)?])[];
|
5187
5187
|
focused: boolean;
|
5188
5188
|
errorMessages: string | readonly string[] | null;
|
5189
5189
|
maxErrors: string | number;
|
@@ -5214,7 +5214,7 @@ export declare const VAutocomplete: {
|
|
5214
5214
|
disabled: boolean;
|
5215
5215
|
readonly: boolean | null;
|
5216
5216
|
messages: string | readonly string[];
|
5217
|
-
rules: readonly import("../../
|
5217
|
+
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)?])[];
|
5218
5218
|
focused: boolean;
|
5219
5219
|
errorMessages: string | readonly string[] | null;
|
5220
5220
|
maxErrors: string | number;
|
@@ -5365,7 +5365,7 @@ export declare const VAutocomplete: {
|
|
5365
5365
|
disabled: boolean;
|
5366
5366
|
readonly: boolean | null;
|
5367
5367
|
messages: string | readonly string[];
|
5368
|
-
rules: readonly import("../../
|
5368
|
+
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)?])[];
|
5369
5369
|
focused: boolean;
|
5370
5370
|
errorMessages: string | readonly string[] | null;
|
5371
5371
|
maxErrors: string | number;
|
@@ -5488,7 +5488,7 @@ export declare const VAutocomplete: {
|
|
5488
5488
|
disabled: boolean | null;
|
5489
5489
|
readonly: boolean | null;
|
5490
5490
|
messages: string | readonly string[];
|
5491
|
-
rules: readonly import("../../
|
5491
|
+
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)?])[];
|
5492
5492
|
focused: boolean;
|
5493
5493
|
errorMessages: string | readonly string[] | null;
|
5494
5494
|
maxErrors: string | number;
|
@@ -5504,7 +5504,7 @@ export declare const VAutocomplete: {
|
|
5504
5504
|
disabled: boolean | null;
|
5505
5505
|
readonly: boolean | null;
|
5506
5506
|
messages: string | readonly string[];
|
5507
|
-
rules: readonly import("../../
|
5507
|
+
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)?])[];
|
5508
5508
|
focused: boolean;
|
5509
5509
|
errorMessages: string | readonly string[] | null;
|
5510
5510
|
maxErrors: string | number;
|
@@ -5559,7 +5559,7 @@ export declare const VAutocomplete: {
|
|
5559
5559
|
disabled: boolean | null;
|
5560
5560
|
readonly: boolean | null;
|
5561
5561
|
messages: string | readonly string[];
|
5562
|
-
rules: readonly import("../../
|
5562
|
+
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)?])[];
|
5563
5563
|
focused: boolean;
|
5564
5564
|
errorMessages: string | readonly string[] | null;
|
5565
5565
|
maxErrors: string | number;
|
@@ -5604,7 +5604,7 @@ export declare const VAutocomplete: {
|
|
5604
5604
|
disabled: boolean | null;
|
5605
5605
|
readonly: boolean | null;
|
5606
5606
|
messages: string | readonly string[];
|
5607
|
-
rules: readonly import("../../
|
5607
|
+
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)?])[];
|
5608
5608
|
focused: boolean;
|
5609
5609
|
errorMessages: string | readonly string[] | null;
|
5610
5610
|
maxErrors: string | number;
|
@@ -5646,7 +5646,7 @@ export declare const VAutocomplete: {
|
|
5646
5646
|
disabled: boolean | null;
|
5647
5647
|
readonly: boolean | null;
|
5648
5648
|
messages: string | readonly string[];
|
5649
|
-
rules: readonly import("../../
|
5649
|
+
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)?])[];
|
5650
5650
|
focused: boolean;
|
5651
5651
|
errorMessages: string | readonly string[] | null;
|
5652
5652
|
maxErrors: string | number;
|
@@ -5662,7 +5662,7 @@ export declare const VAutocomplete: {
|
|
5662
5662
|
disabled: boolean | null;
|
5663
5663
|
readonly: boolean | null;
|
5664
5664
|
messages: string | readonly string[];
|
5665
|
-
rules: readonly import("../../
|
5665
|
+
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)?])[];
|
5666
5666
|
focused: boolean;
|
5667
5667
|
errorMessages: string | readonly string[] | null;
|
5668
5668
|
maxErrors: string | number;
|
@@ -5961,7 +5961,7 @@ export declare const VAutocomplete: {
|
|
5961
5961
|
disabled: boolean;
|
5962
5962
|
readonly: boolean | null;
|
5963
5963
|
messages: string | readonly string[];
|
5964
|
-
rules: readonly import("../../
|
5964
|
+
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)?])[];
|
5965
5965
|
focused: boolean;
|
5966
5966
|
errorMessages: string | readonly string[] | null;
|
5967
5967
|
maxErrors: string | number;
|
@@ -6029,7 +6029,7 @@ export declare const VAutocomplete: {
|
|
6029
6029
|
disabled: boolean;
|
6030
6030
|
readonly: boolean | null;
|
6031
6031
|
messages: string | readonly string[];
|
6032
|
-
rules: readonly import("../../
|
6032
|
+
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)?])[];
|
6033
6033
|
focused: boolean;
|
6034
6034
|
errorMessages: string | readonly string[] | null;
|
6035
6035
|
maxErrors: string | number;
|
@@ -6060,7 +6060,7 @@ export declare const VAutocomplete: {
|
|
6060
6060
|
disabled: boolean;
|
6061
6061
|
readonly: boolean | null;
|
6062
6062
|
messages: string | readonly string[];
|
6063
|
-
rules: readonly import("../../
|
6063
|
+
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)?])[];
|
6064
6064
|
focused: boolean;
|
6065
6065
|
errorMessages: string | readonly string[] | null;
|
6066
6066
|
maxErrors: string | number;
|
@@ -6183,7 +6183,7 @@ export declare const VAutocomplete: {
|
|
6183
6183
|
disabled: boolean | null;
|
6184
6184
|
readonly: boolean | null;
|
6185
6185
|
messages: string | readonly string[];
|
6186
|
-
rules: readonly import("../../
|
6186
|
+
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)?])[];
|
6187
6187
|
focused: boolean;
|
6188
6188
|
errorMessages: string | readonly string[] | null;
|
6189
6189
|
maxErrors: string | number;
|
@@ -6199,7 +6199,7 @@ export declare const VAutocomplete: {
|
|
6199
6199
|
disabled: boolean | null;
|
6200
6200
|
readonly: boolean | null;
|
6201
6201
|
messages: string | readonly string[];
|
6202
|
-
rules: readonly import("../../
|
6202
|
+
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)?])[];
|
6203
6203
|
focused: boolean;
|
6204
6204
|
errorMessages: string | readonly string[] | null;
|
6205
6205
|
maxErrors: string | number;
|
@@ -6254,7 +6254,7 @@ export declare const VAutocomplete: {
|
|
6254
6254
|
disabled: boolean | null;
|
6255
6255
|
readonly: boolean | null;
|
6256
6256
|
messages: string | readonly string[];
|
6257
|
-
rules: readonly import("../../
|
6257
|
+
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)?])[];
|
6258
6258
|
focused: boolean;
|
6259
6259
|
errorMessages: string | readonly string[] | null;
|
6260
6260
|
maxErrors: string | number;
|
@@ -6299,7 +6299,7 @@ export declare const VAutocomplete: {
|
|
6299
6299
|
disabled: boolean | null;
|
6300
6300
|
readonly: boolean | null;
|
6301
6301
|
messages: string | readonly string[];
|
6302
|
-
rules: readonly import("../../
|
6302
|
+
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)?])[];
|
6303
6303
|
focused: boolean;
|
6304
6304
|
errorMessages: string | readonly string[] | null;
|
6305
6305
|
maxErrors: string | number;
|
@@ -6341,7 +6341,7 @@ export declare const VAutocomplete: {
|
|
6341
6341
|
disabled: boolean | null;
|
6342
6342
|
readonly: boolean | null;
|
6343
6343
|
messages: string | readonly string[];
|
6344
|
-
rules: readonly import("../../
|
6344
|
+
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)?])[];
|
6345
6345
|
focused: boolean;
|
6346
6346
|
errorMessages: string | readonly string[] | null;
|
6347
6347
|
maxErrors: string | number;
|
@@ -6357,7 +6357,7 @@ export declare const VAutocomplete: {
|
|
6357
6357
|
disabled: boolean | null;
|
6358
6358
|
readonly: boolean | null;
|
6359
6359
|
messages: string | readonly string[];
|
6360
|
-
rules: readonly import("../../
|
6360
|
+
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)?])[];
|
6361
6361
|
focused: boolean;
|
6362
6362
|
errorMessages: string | readonly string[] | null;
|
6363
6363
|
maxErrors: string | number;
|
@@ -6649,7 +6649,7 @@ export declare const VAutocomplete: {
|
|
6649
6649
|
disabled: boolean | null;
|
6650
6650
|
readonly: boolean | null;
|
6651
6651
|
messages: string | readonly string[];
|
6652
|
-
rules: readonly import("../../
|
6652
|
+
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)?])[];
|
6653
6653
|
focused: boolean;
|
6654
6654
|
errorMessages: string | readonly string[] | null;
|
6655
6655
|
maxErrors: string | number;
|
@@ -6665,7 +6665,7 @@ export declare const VAutocomplete: {
|
|
6665
6665
|
disabled: boolean | null;
|
6666
6666
|
readonly: boolean | null;
|
6667
6667
|
messages: string | readonly string[];
|
6668
|
-
rules: readonly import("../../
|
6668
|
+
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)?])[];
|
6669
6669
|
focused: boolean;
|
6670
6670
|
errorMessages: string | readonly string[] | null;
|
6671
6671
|
maxErrors: string | number;
|
@@ -6720,7 +6720,7 @@ export declare const VAutocomplete: {
|
|
6720
6720
|
disabled: boolean | null;
|
6721
6721
|
readonly: boolean | null;
|
6722
6722
|
messages: string | readonly string[];
|
6723
|
-
rules: readonly import("../../
|
6723
|
+
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)?])[];
|
6724
6724
|
focused: boolean;
|
6725
6725
|
errorMessages: string | readonly string[] | null;
|
6726
6726
|
maxErrors: string | number;
|
@@ -6765,7 +6765,7 @@ export declare const VAutocomplete: {
|
|
6765
6765
|
disabled: boolean | null;
|
6766
6766
|
readonly: boolean | null;
|
6767
6767
|
messages: string | readonly string[];
|
6768
|
-
rules: readonly import("../../
|
6768
|
+
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)?])[];
|
6769
6769
|
focused: boolean;
|
6770
6770
|
errorMessages: string | readonly string[] | null;
|
6771
6771
|
maxErrors: string | number;
|
@@ -6807,7 +6807,7 @@ export declare const VAutocomplete: {
|
|
6807
6807
|
disabled: boolean | null;
|
6808
6808
|
readonly: boolean | null;
|
6809
6809
|
messages: string | readonly string[];
|
6810
|
-
rules: readonly import("../../
|
6810
|
+
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)?])[];
|
6811
6811
|
focused: boolean;
|
6812
6812
|
errorMessages: string | readonly string[] | null;
|
6813
6813
|
maxErrors: string | number;
|
@@ -6823,7 +6823,7 @@ export declare const VAutocomplete: {
|
|
6823
6823
|
disabled: boolean | null;
|
6824
6824
|
readonly: boolean | null;
|
6825
6825
|
messages: string | readonly string[];
|
6826
|
-
rules: readonly import("../../
|
6826
|
+
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)?])[];
|
6827
6827
|
focused: boolean;
|
6828
6828
|
errorMessages: string | readonly string[] | null;
|
6829
6829
|
maxErrors: string | number;
|
@@ -7134,7 +7134,7 @@ export declare const VAutocomplete: {
|
|
7134
7134
|
readonly: boolean | null;
|
7135
7135
|
messages: string | readonly string[];
|
7136
7136
|
noDataText: string;
|
7137
|
-
rules: readonly import("../../
|
7137
|
+
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)?])[];
|
7138
7138
|
filterMode: import("../../composables/filter.js").FilterMode;
|
7139
7139
|
noFilter: boolean;
|
7140
7140
|
filterKeys: import("../../composables/filter.js").FilterKeys;
|
@@ -7188,7 +7188,7 @@ export declare const VAutocomplete: {
|
|
7188
7188
|
readonly: boolean | null;
|
7189
7189
|
messages: string | readonly string[];
|
7190
7190
|
noDataText: string;
|
7191
|
-
rules: readonly import("../../
|
7191
|
+
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)?])[];
|
7192
7192
|
filterMode: import("../../composables/filter.js").FilterMode;
|
7193
7193
|
noFilter: boolean;
|
7194
7194
|
filterKeys: import("../../composables/filter.js").FilterKeys;
|
@@ -7659,7 +7659,7 @@ export declare const VAutocomplete: {
|
|
7659
7659
|
disabled: boolean;
|
7660
7660
|
readonly: boolean | null;
|
7661
7661
|
messages: string | readonly string[];
|
7662
|
-
rules: readonly import("../../
|
7662
|
+
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)?])[];
|
7663
7663
|
focused: boolean;
|
7664
7664
|
errorMessages: string | readonly string[] | null;
|
7665
7665
|
maxErrors: string | number;
|
@@ -7690,7 +7690,7 @@ export declare const VAutocomplete: {
|
|
7690
7690
|
disabled: boolean;
|
7691
7691
|
readonly: boolean | null;
|
7692
7692
|
messages: string | readonly string[];
|
7693
|
-
rules: readonly import("../../
|
7693
|
+
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)?])[];
|
7694
7694
|
focused: boolean;
|
7695
7695
|
errorMessages: string | readonly string[] | null;
|
7696
7696
|
maxErrors: string | number;
|
@@ -7841,7 +7841,7 @@ export declare const VAutocomplete: {
|
|
7841
7841
|
disabled: boolean;
|
7842
7842
|
readonly: boolean | null;
|
7843
7843
|
messages: string | readonly string[];
|
7844
|
-
rules: readonly import("../../
|
7844
|
+
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)?])[];
|
7845
7845
|
focused: boolean;
|
7846
7846
|
errorMessages: string | readonly string[] | null;
|
7847
7847
|
maxErrors: string | number;
|
@@ -7964,7 +7964,7 @@ export declare const VAutocomplete: {
|
|
7964
7964
|
disabled: boolean | null;
|
7965
7965
|
readonly: boolean | null;
|
7966
7966
|
messages: string | readonly string[];
|
7967
|
-
rules: readonly import("../../
|
7967
|
+
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)?])[];
|
7968
7968
|
focused: boolean;
|
7969
7969
|
errorMessages: string | readonly string[] | null;
|
7970
7970
|
maxErrors: string | number;
|
@@ -7980,7 +7980,7 @@ export declare const VAutocomplete: {
|
|
7980
7980
|
disabled: boolean | null;
|
7981
7981
|
readonly: boolean | null;
|
7982
7982
|
messages: string | readonly string[];
|
7983
|
-
rules: readonly import("../../
|
7983
|
+
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)?])[];
|
7984
7984
|
focused: boolean;
|
7985
7985
|
errorMessages: string | readonly string[] | null;
|
7986
7986
|
maxErrors: string | number;
|
@@ -8035,7 +8035,7 @@ export declare const VAutocomplete: {
|
|
8035
8035
|
disabled: boolean | null;
|
8036
8036
|
readonly: boolean | null;
|
8037
8037
|
messages: string | readonly string[];
|
8038
|
-
rules: readonly import("../../
|
8038
|
+
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)?])[];
|
8039
8039
|
focused: boolean;
|
8040
8040
|
errorMessages: string | readonly string[] | null;
|
8041
8041
|
maxErrors: string | number;
|
@@ -8080,7 +8080,7 @@ export declare const VAutocomplete: {
|
|
8080
8080
|
disabled: boolean | null;
|
8081
8081
|
readonly: boolean | null;
|
8082
8082
|
messages: string | readonly string[];
|
8083
|
-
rules: readonly import("../../
|
8083
|
+
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)?])[];
|
8084
8084
|
focused: boolean;
|
8085
8085
|
errorMessages: string | readonly string[] | null;
|
8086
8086
|
maxErrors: string | number;
|
@@ -8122,7 +8122,7 @@ export declare const VAutocomplete: {
|
|
8122
8122
|
disabled: boolean | null;
|
8123
8123
|
readonly: boolean | null;
|
8124
8124
|
messages: string | readonly string[];
|
8125
|
-
rules: readonly import("../../
|
8125
|
+
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)?])[];
|
8126
8126
|
focused: boolean;
|
8127
8127
|
errorMessages: string | readonly string[] | null;
|
8128
8128
|
maxErrors: string | number;
|
@@ -8138,7 +8138,7 @@ export declare const VAutocomplete: {
|
|
8138
8138
|
disabled: boolean | null;
|
8139
8139
|
readonly: boolean | null;
|
8140
8140
|
messages: string | readonly string[];
|
8141
|
-
rules: readonly import("../../
|
8141
|
+
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)?])[];
|
8142
8142
|
focused: boolean;
|
8143
8143
|
errorMessages: string | readonly string[] | null;
|
8144
8144
|
maxErrors: string | number;
|
@@ -8437,7 +8437,7 @@ export declare const VAutocomplete: {
|
|
8437
8437
|
disabled: boolean;
|
8438
8438
|
readonly: boolean | null;
|
8439
8439
|
messages: string | readonly string[];
|
8440
|
-
rules: readonly import("../../
|
8440
|
+
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)?])[];
|
8441
8441
|
focused: boolean;
|
8442
8442
|
errorMessages: string | readonly string[] | null;
|
8443
8443
|
maxErrors: string | number;
|
@@ -8505,7 +8505,7 @@ export declare const VAutocomplete: {
|
|
8505
8505
|
disabled: boolean;
|
8506
8506
|
readonly: boolean | null;
|
8507
8507
|
messages: string | readonly string[];
|
8508
|
-
rules: readonly import("../../
|
8508
|
+
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)?])[];
|
8509
8509
|
focused: boolean;
|
8510
8510
|
errorMessages: string | readonly string[] | null;
|
8511
8511
|
maxErrors: string | number;
|
@@ -8536,7 +8536,7 @@ export declare const VAutocomplete: {
|
|
8536
8536
|
disabled: boolean;
|
8537
8537
|
readonly: boolean | null;
|
8538
8538
|
messages: string | readonly string[];
|
8539
|
-
rules: readonly import("../../
|
8539
|
+
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)?])[];
|
8540
8540
|
focused: boolean;
|
8541
8541
|
errorMessages: string | readonly string[] | null;
|
8542
8542
|
maxErrors: string | number;
|
@@ -8659,7 +8659,7 @@ export declare const VAutocomplete: {
|
|
8659
8659
|
disabled: boolean | null;
|
8660
8660
|
readonly: boolean | null;
|
8661
8661
|
messages: string | readonly string[];
|
8662
|
-
rules: readonly import("../../
|
8662
|
+
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)?])[];
|
8663
8663
|
focused: boolean;
|
8664
8664
|
errorMessages: string | readonly string[] | null;
|
8665
8665
|
maxErrors: string | number;
|
@@ -8675,7 +8675,7 @@ export declare const VAutocomplete: {
|
|
8675
8675
|
disabled: boolean | null;
|
8676
8676
|
readonly: boolean | null;
|
8677
8677
|
messages: string | readonly string[];
|
8678
|
-
rules: readonly import("../../
|
8678
|
+
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)?])[];
|
8679
8679
|
focused: boolean;
|
8680
8680
|
errorMessages: string | readonly string[] | null;
|
8681
8681
|
maxErrors: string | number;
|
@@ -8730,7 +8730,7 @@ export declare const VAutocomplete: {
|
|
8730
8730
|
disabled: boolean | null;
|
8731
8731
|
readonly: boolean | null;
|
8732
8732
|
messages: string | readonly string[];
|
8733
|
-
rules: readonly import("../../
|
8733
|
+
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)?])[];
|
8734
8734
|
focused: boolean;
|
8735
8735
|
errorMessages: string | readonly string[] | null;
|
8736
8736
|
maxErrors: string | number;
|
@@ -8775,7 +8775,7 @@ export declare const VAutocomplete: {
|
|
8775
8775
|
disabled: boolean | null;
|
8776
8776
|
readonly: boolean | null;
|
8777
8777
|
messages: string | readonly string[];
|
8778
|
-
rules: readonly import("../../
|
8778
|
+
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)?])[];
|
8779
8779
|
focused: boolean;
|
8780
8780
|
errorMessages: string | readonly string[] | null;
|
8781
8781
|
maxErrors: string | number;
|
@@ -8817,7 +8817,7 @@ export declare const VAutocomplete: {
|
|
8817
8817
|
disabled: boolean | null;
|
8818
8818
|
readonly: boolean | null;
|
8819
8819
|
messages: string | readonly string[];
|
8820
|
-
rules: readonly import("../../
|
8820
|
+
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)?])[];
|
8821
8821
|
focused: boolean;
|
8822
8822
|
errorMessages: string | readonly string[] | null;
|
8823
8823
|
maxErrors: string | number;
|
@@ -8833,7 +8833,7 @@ export declare const VAutocomplete: {
|
|
8833
8833
|
disabled: boolean | null;
|
8834
8834
|
readonly: boolean | null;
|
8835
8835
|
messages: string | readonly string[];
|
8836
|
-
rules: readonly import("../../
|
8836
|
+
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)?])[];
|
8837
8837
|
focused: boolean;
|
8838
8838
|
errorMessages: string | readonly string[] | null;
|
8839
8839
|
maxErrors: string | number;
|
@@ -9125,7 +9125,7 @@ export declare const VAutocomplete: {
|
|
9125
9125
|
disabled: boolean | null;
|
9126
9126
|
readonly: boolean | null;
|
9127
9127
|
messages: string | readonly string[];
|
9128
|
-
rules: readonly import("../../
|
9128
|
+
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)?])[];
|
9129
9129
|
focused: boolean;
|
9130
9130
|
errorMessages: string | readonly string[] | null;
|
9131
9131
|
maxErrors: string | number;
|
@@ -9141,7 +9141,7 @@ export declare const VAutocomplete: {
|
|
9141
9141
|
disabled: boolean | null;
|
9142
9142
|
readonly: boolean | null;
|
9143
9143
|
messages: string | readonly string[];
|
9144
|
-
rules: readonly import("../../
|
9144
|
+
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)?])[];
|
9145
9145
|
focused: boolean;
|
9146
9146
|
errorMessages: string | readonly string[] | null;
|
9147
9147
|
maxErrors: string | number;
|
@@ -9196,7 +9196,7 @@ export declare const VAutocomplete: {
|
|
9196
9196
|
disabled: boolean | null;
|
9197
9197
|
readonly: boolean | null;
|
9198
9198
|
messages: string | readonly string[];
|
9199
|
-
rules: readonly import("../../
|
9199
|
+
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)?])[];
|
9200
9200
|
focused: boolean;
|
9201
9201
|
errorMessages: string | readonly string[] | null;
|
9202
9202
|
maxErrors: string | number;
|
@@ -9241,7 +9241,7 @@ export declare const VAutocomplete: {
|
|
9241
9241
|
disabled: boolean | null;
|
9242
9242
|
readonly: boolean | null;
|
9243
9243
|
messages: string | readonly string[];
|
9244
|
-
rules: readonly import("../../
|
9244
|
+
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)?])[];
|
9245
9245
|
focused: boolean;
|
9246
9246
|
errorMessages: string | readonly string[] | null;
|
9247
9247
|
maxErrors: string | number;
|
@@ -9283,7 +9283,7 @@ export declare const VAutocomplete: {
|
|
9283
9283
|
disabled: boolean | null;
|
9284
9284
|
readonly: boolean | null;
|
9285
9285
|
messages: string | readonly string[];
|
9286
|
-
rules: readonly import("../../
|
9286
|
+
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)?])[];
|
9287
9287
|
focused: boolean;
|
9288
9288
|
errorMessages: string | readonly string[] | null;
|
9289
9289
|
maxErrors: string | number;
|
@@ -9299,7 +9299,7 @@ export declare const VAutocomplete: {
|
|
9299
9299
|
disabled: boolean | null;
|
9300
9300
|
readonly: boolean | null;
|
9301
9301
|
messages: string | readonly string[];
|
9302
|
-
rules: readonly import("../../
|
9302
|
+
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)?])[];
|
9303
9303
|
focused: boolean;
|
9304
9304
|
errorMessages: string | readonly string[] | null;
|
9305
9305
|
maxErrors: string | number;
|
@@ -9615,7 +9615,7 @@ export declare const VAutocomplete: {
|
|
9615
9615
|
readonly: boolean | null;
|
9616
9616
|
messages: string | readonly string[];
|
9617
9617
|
noDataText: string;
|
9618
|
-
rules: readonly import("../../
|
9618
|
+
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)?])[];
|
9619
9619
|
filterMode: import("../../composables/filter.js").FilterMode;
|
9620
9620
|
noFilter: boolean;
|
9621
9621
|
filterKeys: import("../../composables/filter.js").FilterKeys;
|
@@ -9765,7 +9765,7 @@ export declare const VAutocomplete: {
|
|
9765
9765
|
default: () => never[];
|
9766
9766
|
};
|
9767
9767
|
rules: {
|
9768
|
-
type: PropType<readonly import("../../types.js").ValidationRule[]>;
|
9768
|
+
type: PropType<readonly (import("../../types.js").ValidationRule | import("../../labs/rules/index.js").ValidationAlias)[]>;
|
9769
9769
|
default: () => never[];
|
9770
9770
|
};
|
9771
9771
|
counter: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
@@ -9959,7 +9959,7 @@ export declare const VAutocomplete: {
|
|
9959
9959
|
default: () => never[];
|
9960
9960
|
};
|
9961
9961
|
rules: {
|
9962
|
-
type: PropType<readonly import("../../types.js").ValidationRule[]>;
|
9962
|
+
type: PropType<readonly (import("../../types.js").ValidationRule | import("../../labs/rules/index.js").ValidationAlias)[]>;
|
9963
9963
|
default: () => never[];
|
9964
9964
|
};
|
9965
9965
|
counter: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|