@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 makeVComboboxProps: <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"]>;
|
@@ -2214,7 +2214,7 @@ export declare const VCombobox: {
|
|
2214
2214
|
readonly: boolean | null;
|
2215
2215
|
messages: string | readonly string[];
|
2216
2216
|
noDataText: string;
|
2217
|
-
rules: readonly import("../../
|
2217
|
+
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)?])[];
|
2218
2218
|
filterMode: import("../../composables/filter.js").FilterMode;
|
2219
2219
|
noFilter: boolean;
|
2220
2220
|
filterKeys: import("../../composables/filter.js").FilterKeys;
|
@@ -2684,7 +2684,7 @@ export declare const VCombobox: {
|
|
2684
2684
|
disabled: boolean;
|
2685
2685
|
readonly: boolean | null;
|
2686
2686
|
messages: string | readonly string[];
|
2687
|
-
rules: readonly import("../../
|
2687
|
+
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)?])[];
|
2688
2688
|
focused: boolean;
|
2689
2689
|
errorMessages: string | readonly string[] | null;
|
2690
2690
|
maxErrors: string | number;
|
@@ -2715,7 +2715,7 @@ export declare const VCombobox: {
|
|
2715
2715
|
disabled: boolean;
|
2716
2716
|
readonly: boolean | null;
|
2717
2717
|
messages: string | readonly string[];
|
2718
|
-
rules: readonly import("../../
|
2718
|
+
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)?])[];
|
2719
2719
|
focused: boolean;
|
2720
2720
|
errorMessages: string | readonly string[] | null;
|
2721
2721
|
maxErrors: string | number;
|
@@ -2866,7 +2866,7 @@ export declare const VCombobox: {
|
|
2866
2866
|
disabled: boolean;
|
2867
2867
|
readonly: boolean | null;
|
2868
2868
|
messages: string | readonly string[];
|
2869
|
-
rules: readonly import("../../
|
2869
|
+
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)?])[];
|
2870
2870
|
focused: boolean;
|
2871
2871
|
errorMessages: string | readonly string[] | null;
|
2872
2872
|
maxErrors: string | number;
|
@@ -2989,7 +2989,7 @@ export declare const VCombobox: {
|
|
2989
2989
|
disabled: boolean | null;
|
2990
2990
|
readonly: boolean | null;
|
2991
2991
|
messages: string | readonly string[];
|
2992
|
-
rules: readonly import("../../
|
2992
|
+
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)?])[];
|
2993
2993
|
focused: boolean;
|
2994
2994
|
errorMessages: string | readonly string[] | null;
|
2995
2995
|
maxErrors: string | number;
|
@@ -3005,7 +3005,7 @@ export declare const VCombobox: {
|
|
3005
3005
|
disabled: boolean | null;
|
3006
3006
|
readonly: boolean | null;
|
3007
3007
|
messages: string | readonly string[];
|
3008
|
-
rules: readonly import("../../
|
3008
|
+
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)?])[];
|
3009
3009
|
focused: boolean;
|
3010
3010
|
errorMessages: string | readonly string[] | null;
|
3011
3011
|
maxErrors: string | number;
|
@@ -3060,7 +3060,7 @@ export declare const VCombobox: {
|
|
3060
3060
|
disabled: boolean | null;
|
3061
3061
|
readonly: boolean | null;
|
3062
3062
|
messages: string | readonly string[];
|
3063
|
-
rules: readonly import("../../
|
3063
|
+
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)?])[];
|
3064
3064
|
focused: boolean;
|
3065
3065
|
errorMessages: string | readonly string[] | null;
|
3066
3066
|
maxErrors: string | number;
|
@@ -3105,7 +3105,7 @@ export declare const VCombobox: {
|
|
3105
3105
|
disabled: boolean | null;
|
3106
3106
|
readonly: boolean | null;
|
3107
3107
|
messages: string | readonly string[];
|
3108
|
-
rules: readonly import("../../
|
3108
|
+
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)?])[];
|
3109
3109
|
focused: boolean;
|
3110
3110
|
errorMessages: string | readonly string[] | null;
|
3111
3111
|
maxErrors: string | number;
|
@@ -3147,7 +3147,7 @@ export declare const VCombobox: {
|
|
3147
3147
|
disabled: boolean | null;
|
3148
3148
|
readonly: boolean | null;
|
3149
3149
|
messages: string | readonly string[];
|
3150
|
-
rules: readonly import("../../
|
3150
|
+
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)?])[];
|
3151
3151
|
focused: boolean;
|
3152
3152
|
errorMessages: string | readonly string[] | null;
|
3153
3153
|
maxErrors: string | number;
|
@@ -3163,7 +3163,7 @@ export declare const VCombobox: {
|
|
3163
3163
|
disabled: boolean | null;
|
3164
3164
|
readonly: boolean | null;
|
3165
3165
|
messages: string | readonly string[];
|
3166
|
-
rules: readonly import("../../
|
3166
|
+
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)?])[];
|
3167
3167
|
focused: boolean;
|
3168
3168
|
errorMessages: string | readonly string[] | null;
|
3169
3169
|
maxErrors: string | number;
|
@@ -3462,7 +3462,7 @@ export declare const VCombobox: {
|
|
3462
3462
|
disabled: boolean;
|
3463
3463
|
readonly: boolean | null;
|
3464
3464
|
messages: string | readonly string[];
|
3465
|
-
rules: readonly import("../../
|
3465
|
+
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)?])[];
|
3466
3466
|
focused: boolean;
|
3467
3467
|
errorMessages: string | readonly string[] | null;
|
3468
3468
|
maxErrors: string | number;
|
@@ -3530,7 +3530,7 @@ export declare const VCombobox: {
|
|
3530
3530
|
disabled: boolean;
|
3531
3531
|
readonly: boolean | null;
|
3532
3532
|
messages: string | readonly string[];
|
3533
|
-
rules: readonly import("../../
|
3533
|
+
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)?])[];
|
3534
3534
|
focused: boolean;
|
3535
3535
|
errorMessages: string | readonly string[] | null;
|
3536
3536
|
maxErrors: string | number;
|
@@ -3561,7 +3561,7 @@ export declare const VCombobox: {
|
|
3561
3561
|
disabled: boolean;
|
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;
|
@@ -3684,7 +3684,7 @@ export declare const VCombobox: {
|
|
3684
3684
|
disabled: boolean | null;
|
3685
3685
|
readonly: boolean | null;
|
3686
3686
|
messages: string | readonly string[];
|
3687
|
-
rules: readonly import("../../
|
3687
|
+
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)?])[];
|
3688
3688
|
focused: boolean;
|
3689
3689
|
errorMessages: string | readonly string[] | null;
|
3690
3690
|
maxErrors: string | number;
|
@@ -3700,7 +3700,7 @@ export declare const VCombobox: {
|
|
3700
3700
|
disabled: boolean | null;
|
3701
3701
|
readonly: boolean | null;
|
3702
3702
|
messages: string | readonly string[];
|
3703
|
-
rules: readonly import("../../
|
3703
|
+
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)?])[];
|
3704
3704
|
focused: boolean;
|
3705
3705
|
errorMessages: string | readonly string[] | null;
|
3706
3706
|
maxErrors: string | number;
|
@@ -3755,7 +3755,7 @@ export declare const VCombobox: {
|
|
3755
3755
|
disabled: boolean | null;
|
3756
3756
|
readonly: boolean | null;
|
3757
3757
|
messages: string | readonly string[];
|
3758
|
-
rules: readonly import("../../
|
3758
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
3759
3759
|
focused: boolean;
|
3760
3760
|
errorMessages: string | readonly string[] | null;
|
3761
3761
|
maxErrors: string | number;
|
@@ -3800,7 +3800,7 @@ export declare const VCombobox: {
|
|
3800
3800
|
disabled: boolean | null;
|
3801
3801
|
readonly: boolean | null;
|
3802
3802
|
messages: string | readonly string[];
|
3803
|
-
rules: readonly import("../../
|
3803
|
+
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)?])[];
|
3804
3804
|
focused: boolean;
|
3805
3805
|
errorMessages: string | readonly string[] | null;
|
3806
3806
|
maxErrors: string | number;
|
@@ -3842,7 +3842,7 @@ export declare const VCombobox: {
|
|
3842
3842
|
disabled: boolean | null;
|
3843
3843
|
readonly: boolean | null;
|
3844
3844
|
messages: string | readonly string[];
|
3845
|
-
rules: readonly import("../../
|
3845
|
+
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)?])[];
|
3846
3846
|
focused: boolean;
|
3847
3847
|
errorMessages: string | readonly string[] | null;
|
3848
3848
|
maxErrors: string | number;
|
@@ -3858,7 +3858,7 @@ export declare const VCombobox: {
|
|
3858
3858
|
disabled: boolean | null;
|
3859
3859
|
readonly: boolean | null;
|
3860
3860
|
messages: string | readonly string[];
|
3861
|
-
rules: readonly import("../../
|
3861
|
+
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)?])[];
|
3862
3862
|
focused: boolean;
|
3863
3863
|
errorMessages: string | readonly string[] | null;
|
3864
3864
|
maxErrors: string | number;
|
@@ -4150,7 +4150,7 @@ export declare const VCombobox: {
|
|
4150
4150
|
disabled: boolean | null;
|
4151
4151
|
readonly: boolean | null;
|
4152
4152
|
messages: string | readonly string[];
|
4153
|
-
rules: readonly import("../../
|
4153
|
+
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)?])[];
|
4154
4154
|
focused: boolean;
|
4155
4155
|
errorMessages: string | readonly string[] | null;
|
4156
4156
|
maxErrors: string | number;
|
@@ -4166,7 +4166,7 @@ export declare const VCombobox: {
|
|
4166
4166
|
disabled: boolean | null;
|
4167
4167
|
readonly: boolean | null;
|
4168
4168
|
messages: string | readonly string[];
|
4169
|
-
rules: readonly import("../../
|
4169
|
+
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)?])[];
|
4170
4170
|
focused: boolean;
|
4171
4171
|
errorMessages: string | readonly string[] | null;
|
4172
4172
|
maxErrors: string | number;
|
@@ -4221,7 +4221,7 @@ export declare const VCombobox: {
|
|
4221
4221
|
disabled: boolean | null;
|
4222
4222
|
readonly: boolean | null;
|
4223
4223
|
messages: string | readonly string[];
|
4224
|
-
rules: readonly import("../../
|
4224
|
+
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)?])[];
|
4225
4225
|
focused: boolean;
|
4226
4226
|
errorMessages: string | readonly string[] | null;
|
4227
4227
|
maxErrors: string | number;
|
@@ -4266,7 +4266,7 @@ export declare const VCombobox: {
|
|
4266
4266
|
disabled: boolean | null;
|
4267
4267
|
readonly: boolean | null;
|
4268
4268
|
messages: string | readonly string[];
|
4269
|
-
rules: readonly import("../../
|
4269
|
+
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)?])[];
|
4270
4270
|
focused: boolean;
|
4271
4271
|
errorMessages: string | readonly string[] | null;
|
4272
4272
|
maxErrors: string | number;
|
@@ -4308,7 +4308,7 @@ export declare const VCombobox: {
|
|
4308
4308
|
disabled: boolean | null;
|
4309
4309
|
readonly: boolean | null;
|
4310
4310
|
messages: string | readonly string[];
|
4311
|
-
rules: readonly import("../../
|
4311
|
+
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)?])[];
|
4312
4312
|
focused: boolean;
|
4313
4313
|
errorMessages: string | readonly string[] | null;
|
4314
4314
|
maxErrors: string | number;
|
@@ -4324,7 +4324,7 @@ export declare const VCombobox: {
|
|
4324
4324
|
disabled: boolean | null;
|
4325
4325
|
readonly: boolean | null;
|
4326
4326
|
messages: string | readonly string[];
|
4327
|
-
rules: readonly import("../../
|
4327
|
+
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)?])[];
|
4328
4328
|
focused: boolean;
|
4329
4329
|
errorMessages: string | readonly string[] | null;
|
4330
4330
|
maxErrors: string | number;
|
@@ -4639,7 +4639,7 @@ export declare const VCombobox: {
|
|
4639
4639
|
readonly: boolean | null;
|
4640
4640
|
messages: string | readonly string[];
|
4641
4641
|
noDataText: string;
|
4642
|
-
rules: readonly import("../../
|
4642
|
+
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)?])[];
|
4643
4643
|
filterMode: import("../../composables/filter.js").FilterMode;
|
4644
4644
|
noFilter: boolean;
|
4645
4645
|
filterKeys: import("../../composables/filter.js").FilterKeys;
|
@@ -4728,7 +4728,7 @@ export declare const VCombobox: {
|
|
4728
4728
|
readonly: boolean | null;
|
4729
4729
|
messages: string | readonly string[];
|
4730
4730
|
noDataText: string;
|
4731
|
-
rules: readonly import("../../
|
4731
|
+
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)?])[];
|
4732
4732
|
filterMode: import("../../composables/filter.js").FilterMode;
|
4733
4733
|
noFilter: boolean;
|
4734
4734
|
filterKeys: import("../../composables/filter.js").FilterKeys;
|
@@ -5198,7 +5198,7 @@ export declare const VCombobox: {
|
|
5198
5198
|
disabled: boolean;
|
5199
5199
|
readonly: boolean | null;
|
5200
5200
|
messages: string | readonly string[];
|
5201
|
-
rules: readonly import("../../
|
5201
|
+
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)?])[];
|
5202
5202
|
focused: boolean;
|
5203
5203
|
errorMessages: string | readonly string[] | null;
|
5204
5204
|
maxErrors: string | number;
|
@@ -5229,7 +5229,7 @@ export declare const VCombobox: {
|
|
5229
5229
|
disabled: boolean;
|
5230
5230
|
readonly: boolean | null;
|
5231
5231
|
messages: string | readonly string[];
|
5232
|
-
rules: readonly import("../../
|
5232
|
+
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)?])[];
|
5233
5233
|
focused: boolean;
|
5234
5234
|
errorMessages: string | readonly string[] | null;
|
5235
5235
|
maxErrors: string | number;
|
@@ -5380,7 +5380,7 @@ export declare const VCombobox: {
|
|
5380
5380
|
disabled: boolean;
|
5381
5381
|
readonly: boolean | null;
|
5382
5382
|
messages: string | readonly string[];
|
5383
|
-
rules: readonly import("../../
|
5383
|
+
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)?])[];
|
5384
5384
|
focused: boolean;
|
5385
5385
|
errorMessages: string | readonly string[] | null;
|
5386
5386
|
maxErrors: string | number;
|
@@ -5503,7 +5503,7 @@ export declare const VCombobox: {
|
|
5503
5503
|
disabled: boolean | null;
|
5504
5504
|
readonly: boolean | null;
|
5505
5505
|
messages: string | readonly string[];
|
5506
|
-
rules: readonly import("../../
|
5506
|
+
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)?])[];
|
5507
5507
|
focused: boolean;
|
5508
5508
|
errorMessages: string | readonly string[] | null;
|
5509
5509
|
maxErrors: string | number;
|
@@ -5519,7 +5519,7 @@ export declare const VCombobox: {
|
|
5519
5519
|
disabled: boolean | null;
|
5520
5520
|
readonly: boolean | null;
|
5521
5521
|
messages: string | readonly string[];
|
5522
|
-
rules: readonly import("../../
|
5522
|
+
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)?])[];
|
5523
5523
|
focused: boolean;
|
5524
5524
|
errorMessages: string | readonly string[] | null;
|
5525
5525
|
maxErrors: string | number;
|
@@ -5574,7 +5574,7 @@ export declare const VCombobox: {
|
|
5574
5574
|
disabled: boolean | null;
|
5575
5575
|
readonly: boolean | null;
|
5576
5576
|
messages: string | readonly string[];
|
5577
|
-
rules: readonly import("../../
|
5577
|
+
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)?])[];
|
5578
5578
|
focused: boolean;
|
5579
5579
|
errorMessages: string | readonly string[] | null;
|
5580
5580
|
maxErrors: string | number;
|
@@ -5619,7 +5619,7 @@ export declare const VCombobox: {
|
|
5619
5619
|
disabled: boolean | null;
|
5620
5620
|
readonly: boolean | null;
|
5621
5621
|
messages: string | readonly string[];
|
5622
|
-
rules: readonly import("../../
|
5622
|
+
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)?])[];
|
5623
5623
|
focused: boolean;
|
5624
5624
|
errorMessages: string | readonly string[] | null;
|
5625
5625
|
maxErrors: string | number;
|
@@ -5661,7 +5661,7 @@ export declare const VCombobox: {
|
|
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 VCombobox: {
|
|
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;
|
@@ -5976,7 +5976,7 @@ export declare const VCombobox: {
|
|
5976
5976
|
disabled: boolean;
|
5977
5977
|
readonly: boolean | null;
|
5978
5978
|
messages: string | readonly string[];
|
5979
|
-
rules: readonly import("../../
|
5979
|
+
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)?])[];
|
5980
5980
|
focused: boolean;
|
5981
5981
|
errorMessages: string | readonly string[] | null;
|
5982
5982
|
maxErrors: string | number;
|
@@ -6044,7 +6044,7 @@ export declare const VCombobox: {
|
|
6044
6044
|
disabled: boolean;
|
6045
6045
|
readonly: boolean | null;
|
6046
6046
|
messages: string | readonly string[];
|
6047
|
-
rules: readonly import("../../
|
6047
|
+
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)?])[];
|
6048
6048
|
focused: boolean;
|
6049
6049
|
errorMessages: string | readonly string[] | null;
|
6050
6050
|
maxErrors: string | number;
|
@@ -6075,7 +6075,7 @@ export declare const VCombobox: {
|
|
6075
6075
|
disabled: boolean;
|
6076
6076
|
readonly: boolean | null;
|
6077
6077
|
messages: string | readonly string[];
|
6078
|
-
rules: readonly import("../../
|
6078
|
+
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)?])[];
|
6079
6079
|
focused: boolean;
|
6080
6080
|
errorMessages: string | readonly string[] | null;
|
6081
6081
|
maxErrors: string | number;
|
@@ -6198,7 +6198,7 @@ export declare const VCombobox: {
|
|
6198
6198
|
disabled: boolean | null;
|
6199
6199
|
readonly: boolean | null;
|
6200
6200
|
messages: string | readonly string[];
|
6201
|
-
rules: readonly import("../../
|
6201
|
+
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)?])[];
|
6202
6202
|
focused: boolean;
|
6203
6203
|
errorMessages: string | readonly string[] | null;
|
6204
6204
|
maxErrors: string | number;
|
@@ -6214,7 +6214,7 @@ export declare const VCombobox: {
|
|
6214
6214
|
disabled: boolean | null;
|
6215
6215
|
readonly: boolean | null;
|
6216
6216
|
messages: string | readonly string[];
|
6217
|
-
rules: readonly import("../../
|
6217
|
+
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)?])[];
|
6218
6218
|
focused: boolean;
|
6219
6219
|
errorMessages: string | readonly string[] | null;
|
6220
6220
|
maxErrors: string | number;
|
@@ -6269,7 +6269,7 @@ export declare const VCombobox: {
|
|
6269
6269
|
disabled: boolean | null;
|
6270
6270
|
readonly: boolean | null;
|
6271
6271
|
messages: string | readonly string[];
|
6272
|
-
rules: readonly import("../../
|
6272
|
+
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)?])[];
|
6273
6273
|
focused: boolean;
|
6274
6274
|
errorMessages: string | readonly string[] | null;
|
6275
6275
|
maxErrors: string | number;
|
@@ -6314,7 +6314,7 @@ export declare const VCombobox: {
|
|
6314
6314
|
disabled: boolean | null;
|
6315
6315
|
readonly: boolean | null;
|
6316
6316
|
messages: string | readonly string[];
|
6317
|
-
rules: readonly import("../../
|
6317
|
+
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)?])[];
|
6318
6318
|
focused: boolean;
|
6319
6319
|
errorMessages: string | readonly string[] | null;
|
6320
6320
|
maxErrors: string | number;
|
@@ -6356,7 +6356,7 @@ export declare const VCombobox: {
|
|
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 VCombobox: {
|
|
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;
|
@@ -6664,7 +6664,7 @@ export declare const VCombobox: {
|
|
6664
6664
|
disabled: boolean | null;
|
6665
6665
|
readonly: boolean | null;
|
6666
6666
|
messages: string | readonly string[];
|
6667
|
-
rules: readonly import("../../
|
6667
|
+
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)?])[];
|
6668
6668
|
focused: boolean;
|
6669
6669
|
errorMessages: string | readonly string[] | null;
|
6670
6670
|
maxErrors: string | number;
|
@@ -6680,7 +6680,7 @@ export declare const VCombobox: {
|
|
6680
6680
|
disabled: boolean | null;
|
6681
6681
|
readonly: boolean | null;
|
6682
6682
|
messages: string | readonly string[];
|
6683
|
-
rules: readonly import("../../
|
6683
|
+
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)?])[];
|
6684
6684
|
focused: boolean;
|
6685
6685
|
errorMessages: string | readonly string[] | null;
|
6686
6686
|
maxErrors: string | number;
|
@@ -6735,7 +6735,7 @@ export declare const VCombobox: {
|
|
6735
6735
|
disabled: boolean | null;
|
6736
6736
|
readonly: boolean | null;
|
6737
6737
|
messages: string | readonly string[];
|
6738
|
-
rules: readonly import("../../
|
6738
|
+
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)?])[];
|
6739
6739
|
focused: boolean;
|
6740
6740
|
errorMessages: string | readonly string[] | null;
|
6741
6741
|
maxErrors: string | number;
|
@@ -6780,7 +6780,7 @@ export declare const VCombobox: {
|
|
6780
6780
|
disabled: boolean | null;
|
6781
6781
|
readonly: boolean | null;
|
6782
6782
|
messages: string | readonly string[];
|
6783
|
-
rules: readonly import("../../
|
6783
|
+
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)?])[];
|
6784
6784
|
focused: boolean;
|
6785
6785
|
errorMessages: string | readonly string[] | null;
|
6786
6786
|
maxErrors: string | number;
|
@@ -6822,7 +6822,7 @@ export declare const VCombobox: {
|
|
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 VCombobox: {
|
|
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;
|
@@ -7148,7 +7148,7 @@ export declare const VCombobox: {
|
|
7148
7148
|
readonly: boolean | null;
|
7149
7149
|
messages: string | readonly string[];
|
7150
7150
|
noDataText: string;
|
7151
|
-
rules: readonly import("../../
|
7151
|
+
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)?])[];
|
7152
7152
|
filterMode: import("../../composables/filter.js").FilterMode;
|
7153
7153
|
noFilter: boolean;
|
7154
7154
|
filterKeys: import("../../composables/filter.js").FilterKeys;
|
@@ -7202,7 +7202,7 @@ export declare const VCombobox: {
|
|
7202
7202
|
readonly: boolean | null;
|
7203
7203
|
messages: string | readonly string[];
|
7204
7204
|
noDataText: string;
|
7205
|
-
rules: readonly import("../../
|
7205
|
+
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)?])[];
|
7206
7206
|
filterMode: import("../../composables/filter.js").FilterMode;
|
7207
7207
|
noFilter: boolean;
|
7208
7208
|
filterKeys: import("../../composables/filter.js").FilterKeys;
|
@@ -7672,7 +7672,7 @@ export declare const VCombobox: {
|
|
7672
7672
|
disabled: boolean;
|
7673
7673
|
readonly: boolean | null;
|
7674
7674
|
messages: string | readonly string[];
|
7675
|
-
rules: readonly import("../../
|
7675
|
+
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)?])[];
|
7676
7676
|
focused: boolean;
|
7677
7677
|
errorMessages: string | readonly string[] | null;
|
7678
7678
|
maxErrors: string | number;
|
@@ -7703,7 +7703,7 @@ export declare const VCombobox: {
|
|
7703
7703
|
disabled: boolean;
|
7704
7704
|
readonly: boolean | null;
|
7705
7705
|
messages: string | readonly string[];
|
7706
|
-
rules: readonly import("../../
|
7706
|
+
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)?])[];
|
7707
7707
|
focused: boolean;
|
7708
7708
|
errorMessages: string | readonly string[] | null;
|
7709
7709
|
maxErrors: string | number;
|
@@ -7854,7 +7854,7 @@ export declare const VCombobox: {
|
|
7854
7854
|
disabled: boolean;
|
7855
7855
|
readonly: boolean | null;
|
7856
7856
|
messages: string | readonly string[];
|
7857
|
-
rules: readonly import("../../
|
7857
|
+
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)?])[];
|
7858
7858
|
focused: boolean;
|
7859
7859
|
errorMessages: string | readonly string[] | null;
|
7860
7860
|
maxErrors: string | number;
|
@@ -7977,7 +7977,7 @@ export declare const VCombobox: {
|
|
7977
7977
|
disabled: boolean | null;
|
7978
7978
|
readonly: boolean | null;
|
7979
7979
|
messages: string | readonly string[];
|
7980
|
-
rules: readonly import("../../
|
7980
|
+
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)?])[];
|
7981
7981
|
focused: boolean;
|
7982
7982
|
errorMessages: string | readonly string[] | null;
|
7983
7983
|
maxErrors: string | number;
|
@@ -7993,7 +7993,7 @@ export declare const VCombobox: {
|
|
7993
7993
|
disabled: boolean | null;
|
7994
7994
|
readonly: boolean | null;
|
7995
7995
|
messages: string | readonly string[];
|
7996
|
-
rules: readonly import("../../
|
7996
|
+
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)?])[];
|
7997
7997
|
focused: boolean;
|
7998
7998
|
errorMessages: string | readonly string[] | null;
|
7999
7999
|
maxErrors: string | number;
|
@@ -8048,7 +8048,7 @@ export declare const VCombobox: {
|
|
8048
8048
|
disabled: boolean | null;
|
8049
8049
|
readonly: boolean | null;
|
8050
8050
|
messages: string | readonly string[];
|
8051
|
-
rules: readonly import("../../
|
8051
|
+
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)?])[];
|
8052
8052
|
focused: boolean;
|
8053
8053
|
errorMessages: string | readonly string[] | null;
|
8054
8054
|
maxErrors: string | number;
|
@@ -8093,7 +8093,7 @@ export declare const VCombobox: {
|
|
8093
8093
|
disabled: boolean | null;
|
8094
8094
|
readonly: boolean | null;
|
8095
8095
|
messages: string | readonly string[];
|
8096
|
-
rules: readonly import("../../
|
8096
|
+
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)?])[];
|
8097
8097
|
focused: boolean;
|
8098
8098
|
errorMessages: string | readonly string[] | null;
|
8099
8099
|
maxErrors: string | number;
|
@@ -8135,7 +8135,7 @@ export declare const VCombobox: {
|
|
8135
8135
|
disabled: boolean | null;
|
8136
8136
|
readonly: boolean | null;
|
8137
8137
|
messages: string | readonly string[];
|
8138
|
-
rules: readonly import("../../
|
8138
|
+
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)?])[];
|
8139
8139
|
focused: boolean;
|
8140
8140
|
errorMessages: string | readonly string[] | null;
|
8141
8141
|
maxErrors: string | number;
|
@@ -8151,7 +8151,7 @@ export declare const VCombobox: {
|
|
8151
8151
|
disabled: boolean | null;
|
8152
8152
|
readonly: boolean | null;
|
8153
8153
|
messages: string | readonly string[];
|
8154
|
-
rules: readonly import("../../
|
8154
|
+
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)?])[];
|
8155
8155
|
focused: boolean;
|
8156
8156
|
errorMessages: string | readonly string[] | null;
|
8157
8157
|
maxErrors: string | number;
|
@@ -8450,7 +8450,7 @@ export declare const VCombobox: {
|
|
8450
8450
|
disabled: boolean;
|
8451
8451
|
readonly: boolean | null;
|
8452
8452
|
messages: string | readonly string[];
|
8453
|
-
rules: readonly import("../../
|
8453
|
+
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)?])[];
|
8454
8454
|
focused: boolean;
|
8455
8455
|
errorMessages: string | readonly string[] | null;
|
8456
8456
|
maxErrors: string | number;
|
@@ -8518,7 +8518,7 @@ export declare const VCombobox: {
|
|
8518
8518
|
disabled: boolean;
|
8519
8519
|
readonly: boolean | null;
|
8520
8520
|
messages: string | readonly string[];
|
8521
|
-
rules: readonly import("../../
|
8521
|
+
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)?])[];
|
8522
8522
|
focused: boolean;
|
8523
8523
|
errorMessages: string | readonly string[] | null;
|
8524
8524
|
maxErrors: string | number;
|
@@ -8549,7 +8549,7 @@ export declare const VCombobox: {
|
|
8549
8549
|
disabled: boolean;
|
8550
8550
|
readonly: boolean | null;
|
8551
8551
|
messages: string | readonly string[];
|
8552
|
-
rules: readonly import("../../
|
8552
|
+
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)?])[];
|
8553
8553
|
focused: boolean;
|
8554
8554
|
errorMessages: string | readonly string[] | null;
|
8555
8555
|
maxErrors: string | number;
|
@@ -8672,7 +8672,7 @@ export declare const VCombobox: {
|
|
8672
8672
|
disabled: boolean | null;
|
8673
8673
|
readonly: boolean | null;
|
8674
8674
|
messages: string | readonly string[];
|
8675
|
-
rules: readonly import("../../
|
8675
|
+
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)?])[];
|
8676
8676
|
focused: boolean;
|
8677
8677
|
errorMessages: string | readonly string[] | null;
|
8678
8678
|
maxErrors: string | number;
|
@@ -8688,7 +8688,7 @@ export declare const VCombobox: {
|
|
8688
8688
|
disabled: boolean | null;
|
8689
8689
|
readonly: boolean | null;
|
8690
8690
|
messages: string | readonly string[];
|
8691
|
-
rules: readonly import("../../
|
8691
|
+
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)?])[];
|
8692
8692
|
focused: boolean;
|
8693
8693
|
errorMessages: string | readonly string[] | null;
|
8694
8694
|
maxErrors: string | number;
|
@@ -8743,7 +8743,7 @@ export declare const VCombobox: {
|
|
8743
8743
|
disabled: boolean | null;
|
8744
8744
|
readonly: boolean | null;
|
8745
8745
|
messages: string | readonly string[];
|
8746
|
-
rules: readonly import("../../
|
8746
|
+
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)?])[];
|
8747
8747
|
focused: boolean;
|
8748
8748
|
errorMessages: string | readonly string[] | null;
|
8749
8749
|
maxErrors: string | number;
|
@@ -8788,7 +8788,7 @@ export declare const VCombobox: {
|
|
8788
8788
|
disabled: boolean | null;
|
8789
8789
|
readonly: boolean | null;
|
8790
8790
|
messages: string | readonly string[];
|
8791
|
-
rules: readonly import("../../
|
8791
|
+
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)?])[];
|
8792
8792
|
focused: boolean;
|
8793
8793
|
errorMessages: string | readonly string[] | null;
|
8794
8794
|
maxErrors: string | number;
|
@@ -8830,7 +8830,7 @@ export declare const VCombobox: {
|
|
8830
8830
|
disabled: boolean | null;
|
8831
8831
|
readonly: boolean | null;
|
8832
8832
|
messages: string | readonly string[];
|
8833
|
-
rules: readonly import("../../
|
8833
|
+
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)?])[];
|
8834
8834
|
focused: boolean;
|
8835
8835
|
errorMessages: string | readonly string[] | null;
|
8836
8836
|
maxErrors: string | number;
|
@@ -8846,7 +8846,7 @@ export declare const VCombobox: {
|
|
8846
8846
|
disabled: boolean | null;
|
8847
8847
|
readonly: boolean | null;
|
8848
8848
|
messages: string | readonly string[];
|
8849
|
-
rules: readonly import("../../
|
8849
|
+
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)?])[];
|
8850
8850
|
focused: boolean;
|
8851
8851
|
errorMessages: string | readonly string[] | null;
|
8852
8852
|
maxErrors: string | number;
|
@@ -9138,7 +9138,7 @@ export declare const VCombobox: {
|
|
9138
9138
|
disabled: boolean | null;
|
9139
9139
|
readonly: boolean | null;
|
9140
9140
|
messages: string | readonly string[];
|
9141
|
-
rules: readonly import("../../
|
9141
|
+
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)?])[];
|
9142
9142
|
focused: boolean;
|
9143
9143
|
errorMessages: string | readonly string[] | null;
|
9144
9144
|
maxErrors: string | number;
|
@@ -9154,7 +9154,7 @@ export declare const VCombobox: {
|
|
9154
9154
|
disabled: boolean | null;
|
9155
9155
|
readonly: boolean | null;
|
9156
9156
|
messages: string | readonly string[];
|
9157
|
-
rules: readonly import("../../
|
9157
|
+
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)?])[];
|
9158
9158
|
focused: boolean;
|
9159
9159
|
errorMessages: string | readonly string[] | null;
|
9160
9160
|
maxErrors: string | number;
|
@@ -9209,7 +9209,7 @@ export declare const VCombobox: {
|
|
9209
9209
|
disabled: boolean | null;
|
9210
9210
|
readonly: boolean | null;
|
9211
9211
|
messages: string | readonly string[];
|
9212
|
-
rules: readonly import("../../
|
9212
|
+
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)?])[];
|
9213
9213
|
focused: boolean;
|
9214
9214
|
errorMessages: string | readonly string[] | null;
|
9215
9215
|
maxErrors: string | number;
|
@@ -9254,7 +9254,7 @@ export declare const VCombobox: {
|
|
9254
9254
|
disabled: boolean | null;
|
9255
9255
|
readonly: boolean | null;
|
9256
9256
|
messages: string | readonly string[];
|
9257
|
-
rules: readonly import("../../
|
9257
|
+
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)?])[];
|
9258
9258
|
focused: boolean;
|
9259
9259
|
errorMessages: string | readonly string[] | null;
|
9260
9260
|
maxErrors: string | number;
|
@@ -9296,7 +9296,7 @@ export declare const VCombobox: {
|
|
9296
9296
|
disabled: boolean | null;
|
9297
9297
|
readonly: boolean | null;
|
9298
9298
|
messages: string | readonly string[];
|
9299
|
-
rules: readonly import("../../
|
9299
|
+
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)?])[];
|
9300
9300
|
focused: boolean;
|
9301
9301
|
errorMessages: string | readonly string[] | null;
|
9302
9302
|
maxErrors: string | number;
|
@@ -9312,7 +9312,7 @@ export declare const VCombobox: {
|
|
9312
9312
|
disabled: boolean | null;
|
9313
9313
|
readonly: boolean | null;
|
9314
9314
|
messages: string | readonly string[];
|
9315
|
-
rules: readonly import("../../
|
9315
|
+
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)?])[];
|
9316
9316
|
focused: boolean;
|
9317
9317
|
errorMessages: string | readonly string[] | null;
|
9318
9318
|
maxErrors: string | number;
|
@@ -9627,7 +9627,7 @@ export declare const VCombobox: {
|
|
9627
9627
|
readonly: boolean | null;
|
9628
9628
|
messages: string | readonly string[];
|
9629
9629
|
noDataText: string;
|
9630
|
-
rules: readonly import("../../
|
9630
|
+
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)?])[];
|
9631
9631
|
filterMode: import("../../composables/filter.js").FilterMode;
|
9632
9632
|
noFilter: boolean;
|
9633
9633
|
filterKeys: import("../../composables/filter.js").FilterKeys;
|
@@ -9777,7 +9777,7 @@ export declare const VCombobox: {
|
|
9777
9777
|
default: () => never[];
|
9778
9778
|
};
|
9779
9779
|
rules: {
|
9780
|
-
type: PropType<readonly import("../../types.js").ValidationRule[]>;
|
9780
|
+
type: PropType<readonly (import("../../types.js").ValidationRule | import("../../labs/rules/index.js").ValidationAlias)[]>;
|
9781
9781
|
default: () => never[];
|
9782
9782
|
};
|
9783
9783
|
counter: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
@@ -9980,7 +9980,7 @@ export declare const VCombobox: {
|
|
9980
9980
|
default: () => never[];
|
9981
9981
|
};
|
9982
9982
|
rules: {
|
9983
|
-
type: PropType<readonly import("../../types.js").ValidationRule[]>;
|
9983
|
+
type: PropType<readonly (import("../../types.js").ValidationRule | import("../../labs/rules/index.js").ValidationAlias)[]>;
|
9984
9984
|
default: () => never[];
|
9985
9985
|
};
|
9986
9986
|
counter: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|