@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
@@ -1962,14 +1962,14 @@ export declare const makeVSelectProps: <Defaults extends {
|
|
1962
1962
|
default: unknown extends Defaults["messages"] ? string | readonly string[] : NonNullable<string | readonly string[]> | Defaults["messages"];
|
1963
1963
|
};
|
1964
1964
|
rules: unknown extends Defaults["rules"] ? {
|
1965
|
-
type: PropType<readonly import("../../types.js").ValidationRule[]>;
|
1965
|
+
type: PropType<readonly (import("../../types.js").ValidationRule | import("../../labs/rules/index.js").ValidationAlias)[]>;
|
1966
1966
|
default: () => never[];
|
1967
1967
|
} : Omit<{
|
1968
|
-
type: PropType<readonly import("../../types.js").ValidationRule[]>;
|
1968
|
+
type: PropType<readonly (import("../../types.js").ValidationRule | import("../../labs/rules/index.js").ValidationAlias)[]>;
|
1969
1969
|
default: () => never[];
|
1970
1970
|
}, "type" | "default"> & {
|
1971
|
-
type: PropType<unknown extends Defaults["rules"] ? readonly import("../../
|
1972
|
-
default: unknown extends Defaults["rules"] ? readonly import("../../
|
1971
|
+
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"]>;
|
1972
|
+
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"];
|
1973
1973
|
};
|
1974
1974
|
counter: unknown extends Defaults["counter"] ? (StringConstructor | BooleanConstructor | NumberConstructor)[] : {
|
1975
1975
|
type: PropType<unknown extends Defaults["counter"] ? string | number | boolean : string | number | boolean | Defaults["counter"]>;
|
@@ -3828,7 +3828,7 @@ export declare const VSelect: {
|
|
3828
3828
|
readonly: boolean | null;
|
3829
3829
|
messages: string | readonly string[];
|
3830
3830
|
noDataText: string;
|
3831
|
-
rules: readonly import("../../
|
3831
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
3832
3832
|
focused: boolean;
|
3833
3833
|
errorMessages: string | readonly string[] | null;
|
3834
3834
|
maxErrors: string | number;
|
@@ -4285,7 +4285,7 @@ export declare const VSelect: {
|
|
4285
4285
|
disabled: boolean;
|
4286
4286
|
readonly: boolean | null;
|
4287
4287
|
messages: string | readonly string[];
|
4288
|
-
rules: readonly import("../../
|
4288
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
4289
4289
|
focused: boolean;
|
4290
4290
|
errorMessages: string | readonly string[] | null;
|
4291
4291
|
maxErrors: string | number;
|
@@ -4316,7 +4316,7 @@ export declare const VSelect: {
|
|
4316
4316
|
disabled: boolean;
|
4317
4317
|
readonly: boolean | null;
|
4318
4318
|
messages: string | readonly string[];
|
4319
|
-
rules: readonly import("../../
|
4319
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
4320
4320
|
focused: boolean;
|
4321
4321
|
errorMessages: string | readonly string[] | null;
|
4322
4322
|
maxErrors: string | number;
|
@@ -4467,7 +4467,7 @@ export declare const VSelect: {
|
|
4467
4467
|
disabled: boolean;
|
4468
4468
|
readonly: boolean | null;
|
4469
4469
|
messages: string | readonly string[];
|
4470
|
-
rules: readonly import("../../
|
4470
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
4471
4471
|
focused: boolean;
|
4472
4472
|
errorMessages: string | readonly string[] | null;
|
4473
4473
|
maxErrors: string | number;
|
@@ -4590,7 +4590,7 @@ export declare const VSelect: {
|
|
4590
4590
|
disabled: boolean | null;
|
4591
4591
|
readonly: boolean | null;
|
4592
4592
|
messages: string | readonly string[];
|
4593
|
-
rules: readonly import("../../
|
4593
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
4594
4594
|
focused: boolean;
|
4595
4595
|
errorMessages: string | readonly string[] | null;
|
4596
4596
|
maxErrors: string | number;
|
@@ -4606,7 +4606,7 @@ export declare const VSelect: {
|
|
4606
4606
|
disabled: boolean | null;
|
4607
4607
|
readonly: boolean | null;
|
4608
4608
|
messages: string | readonly string[];
|
4609
|
-
rules: readonly import("../../
|
4609
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
4610
4610
|
focused: boolean;
|
4611
4611
|
errorMessages: string | readonly string[] | null;
|
4612
4612
|
maxErrors: string | number;
|
@@ -4661,7 +4661,7 @@ export declare const VSelect: {
|
|
4661
4661
|
disabled: boolean | null;
|
4662
4662
|
readonly: boolean | null;
|
4663
4663
|
messages: string | readonly string[];
|
4664
|
-
rules: readonly import("../../
|
4664
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
4665
4665
|
focused: boolean;
|
4666
4666
|
errorMessages: string | readonly string[] | null;
|
4667
4667
|
maxErrors: string | number;
|
@@ -4706,7 +4706,7 @@ export declare const VSelect: {
|
|
4706
4706
|
disabled: boolean | null;
|
4707
4707
|
readonly: boolean | null;
|
4708
4708
|
messages: string | readonly string[];
|
4709
|
-
rules: readonly import("../../
|
4709
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
4710
4710
|
focused: boolean;
|
4711
4711
|
errorMessages: string | readonly string[] | null;
|
4712
4712
|
maxErrors: string | number;
|
@@ -4748,7 +4748,7 @@ export declare const VSelect: {
|
|
4748
4748
|
disabled: boolean | null;
|
4749
4749
|
readonly: boolean | null;
|
4750
4750
|
messages: string | readonly string[];
|
4751
|
-
rules: readonly import("../../
|
4751
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
4752
4752
|
focused: boolean;
|
4753
4753
|
errorMessages: string | readonly string[] | null;
|
4754
4754
|
maxErrors: string | number;
|
@@ -4764,7 +4764,7 @@ export declare const VSelect: {
|
|
4764
4764
|
disabled: boolean | null;
|
4765
4765
|
readonly: boolean | null;
|
4766
4766
|
messages: string | readonly string[];
|
4767
|
-
rules: readonly import("../../
|
4767
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
4768
4768
|
focused: boolean;
|
4769
4769
|
errorMessages: string | readonly string[] | null;
|
4770
4770
|
maxErrors: string | number;
|
@@ -5063,7 +5063,7 @@ export declare const VSelect: {
|
|
5063
5063
|
disabled: boolean;
|
5064
5064
|
readonly: boolean | null;
|
5065
5065
|
messages: string | readonly string[];
|
5066
|
-
rules: readonly import("../../
|
5066
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
5067
5067
|
focused: boolean;
|
5068
5068
|
errorMessages: string | readonly string[] | null;
|
5069
5069
|
maxErrors: string | number;
|
@@ -5131,7 +5131,7 @@ export declare const VSelect: {
|
|
5131
5131
|
disabled: boolean;
|
5132
5132
|
readonly: boolean | null;
|
5133
5133
|
messages: string | readonly string[];
|
5134
|
-
rules: readonly import("../../
|
5134
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
5135
5135
|
focused: boolean;
|
5136
5136
|
errorMessages: string | readonly string[] | null;
|
5137
5137
|
maxErrors: string | number;
|
@@ -5162,7 +5162,7 @@ export declare const VSelect: {
|
|
5162
5162
|
disabled: boolean;
|
5163
5163
|
readonly: boolean | null;
|
5164
5164
|
messages: string | readonly string[];
|
5165
|
-
rules: readonly import("../../
|
5165
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
5166
5166
|
focused: boolean;
|
5167
5167
|
errorMessages: string | readonly string[] | null;
|
5168
5168
|
maxErrors: string | number;
|
@@ -5285,7 +5285,7 @@ export declare const VSelect: {
|
|
5285
5285
|
disabled: boolean | null;
|
5286
5286
|
readonly: boolean | null;
|
5287
5287
|
messages: string | readonly string[];
|
5288
|
-
rules: readonly import("../../
|
5288
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
5289
5289
|
focused: boolean;
|
5290
5290
|
errorMessages: string | readonly string[] | null;
|
5291
5291
|
maxErrors: string | number;
|
@@ -5301,7 +5301,7 @@ export declare const VSelect: {
|
|
5301
5301
|
disabled: boolean | null;
|
5302
5302
|
readonly: boolean | null;
|
5303
5303
|
messages: string | readonly string[];
|
5304
|
-
rules: readonly import("../../
|
5304
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
5305
5305
|
focused: boolean;
|
5306
5306
|
errorMessages: string | readonly string[] | null;
|
5307
5307
|
maxErrors: string | number;
|
@@ -5356,7 +5356,7 @@ export declare const VSelect: {
|
|
5356
5356
|
disabled: boolean | null;
|
5357
5357
|
readonly: boolean | null;
|
5358
5358
|
messages: string | readonly string[];
|
5359
|
-
rules: readonly import("../../
|
5359
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
5360
5360
|
focused: boolean;
|
5361
5361
|
errorMessages: string | readonly string[] | null;
|
5362
5362
|
maxErrors: string | number;
|
@@ -5401,7 +5401,7 @@ export declare const VSelect: {
|
|
5401
5401
|
disabled: boolean | null;
|
5402
5402
|
readonly: boolean | null;
|
5403
5403
|
messages: string | readonly string[];
|
5404
|
-
rules: readonly import("../../
|
5404
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
5405
5405
|
focused: boolean;
|
5406
5406
|
errorMessages: string | readonly string[] | null;
|
5407
5407
|
maxErrors: string | number;
|
@@ -5443,7 +5443,7 @@ export declare const VSelect: {
|
|
5443
5443
|
disabled: boolean | null;
|
5444
5444
|
readonly: boolean | null;
|
5445
5445
|
messages: string | readonly string[];
|
5446
|
-
rules: readonly import("../../
|
5446
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
5447
5447
|
focused: boolean;
|
5448
5448
|
errorMessages: string | readonly string[] | null;
|
5449
5449
|
maxErrors: string | number;
|
@@ -5459,7 +5459,7 @@ export declare const VSelect: {
|
|
5459
5459
|
disabled: boolean | null;
|
5460
5460
|
readonly: boolean | null;
|
5461
5461
|
messages: string | readonly string[];
|
5462
|
-
rules: readonly import("../../
|
5462
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
5463
5463
|
focused: boolean;
|
5464
5464
|
errorMessages: string | readonly string[] | null;
|
5465
5465
|
maxErrors: string | number;
|
@@ -5751,7 +5751,7 @@ export declare const VSelect: {
|
|
5751
5751
|
disabled: boolean | null;
|
5752
5752
|
readonly: boolean | null;
|
5753
5753
|
messages: string | readonly string[];
|
5754
|
-
rules: readonly import("../../
|
5754
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
5755
5755
|
focused: boolean;
|
5756
5756
|
errorMessages: string | readonly string[] | null;
|
5757
5757
|
maxErrors: string | number;
|
@@ -5767,7 +5767,7 @@ export declare const VSelect: {
|
|
5767
5767
|
disabled: boolean | null;
|
5768
5768
|
readonly: boolean | null;
|
5769
5769
|
messages: string | readonly string[];
|
5770
|
-
rules: readonly import("../../
|
5770
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
5771
5771
|
focused: boolean;
|
5772
5772
|
errorMessages: string | readonly string[] | null;
|
5773
5773
|
maxErrors: string | number;
|
@@ -5822,7 +5822,7 @@ export declare const VSelect: {
|
|
5822
5822
|
disabled: boolean | null;
|
5823
5823
|
readonly: boolean | null;
|
5824
5824
|
messages: string | readonly string[];
|
5825
|
-
rules: readonly import("../../
|
5825
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
5826
5826
|
focused: boolean;
|
5827
5827
|
errorMessages: string | readonly string[] | null;
|
5828
5828
|
maxErrors: string | number;
|
@@ -5867,7 +5867,7 @@ export declare const VSelect: {
|
|
5867
5867
|
disabled: boolean | null;
|
5868
5868
|
readonly: boolean | null;
|
5869
5869
|
messages: string | readonly string[];
|
5870
|
-
rules: readonly import("../../
|
5870
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
5871
5871
|
focused: boolean;
|
5872
5872
|
errorMessages: string | readonly string[] | null;
|
5873
5873
|
maxErrors: string | number;
|
@@ -5909,7 +5909,7 @@ export declare const VSelect: {
|
|
5909
5909
|
disabled: boolean | null;
|
5910
5910
|
readonly: boolean | null;
|
5911
5911
|
messages: string | readonly string[];
|
5912
|
-
rules: readonly import("../../
|
5912
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
5913
5913
|
focused: boolean;
|
5914
5914
|
errorMessages: string | readonly string[] | null;
|
5915
5915
|
maxErrors: string | number;
|
@@ -5925,7 +5925,7 @@ export declare const VSelect: {
|
|
5925
5925
|
disabled: boolean | null;
|
5926
5926
|
readonly: boolean | null;
|
5927
5927
|
messages: string | readonly string[];
|
5928
|
-
rules: readonly import("../../
|
5928
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
5929
5929
|
focused: boolean;
|
5930
5930
|
errorMessages: string | readonly string[] | null;
|
5931
5931
|
maxErrors: string | number;
|
@@ -6237,7 +6237,7 @@ export declare const VSelect: {
|
|
6237
6237
|
readonly: boolean | null;
|
6238
6238
|
messages: string | readonly string[];
|
6239
6239
|
noDataText: string;
|
6240
|
-
rules: readonly import("../../
|
6240
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
6241
6241
|
focused: boolean;
|
6242
6242
|
errorMessages: string | readonly string[] | null;
|
6243
6243
|
maxErrors: string | number;
|
@@ -6324,7 +6324,7 @@ export declare const VSelect: {
|
|
6324
6324
|
readonly: boolean | null;
|
6325
6325
|
messages: string | readonly string[];
|
6326
6326
|
noDataText: string;
|
6327
|
-
rules: readonly import("../../
|
6327
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
6328
6328
|
focused: boolean;
|
6329
6329
|
errorMessages: string | readonly string[] | null;
|
6330
6330
|
maxErrors: string | number;
|
@@ -6781,7 +6781,7 @@ export declare const VSelect: {
|
|
6781
6781
|
disabled: boolean;
|
6782
6782
|
readonly: boolean | null;
|
6783
6783
|
messages: string | readonly string[];
|
6784
|
-
rules: readonly import("../../
|
6784
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
6785
6785
|
focused: boolean;
|
6786
6786
|
errorMessages: string | readonly string[] | null;
|
6787
6787
|
maxErrors: string | number;
|
@@ -6812,7 +6812,7 @@ export declare const VSelect: {
|
|
6812
6812
|
disabled: boolean;
|
6813
6813
|
readonly: boolean | null;
|
6814
6814
|
messages: string | readonly string[];
|
6815
|
-
rules: readonly import("../../
|
6815
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
6816
6816
|
focused: boolean;
|
6817
6817
|
errorMessages: string | readonly string[] | null;
|
6818
6818
|
maxErrors: string | number;
|
@@ -6963,7 +6963,7 @@ export declare const VSelect: {
|
|
6963
6963
|
disabled: boolean;
|
6964
6964
|
readonly: boolean | null;
|
6965
6965
|
messages: string | readonly string[];
|
6966
|
-
rules: readonly import("../../
|
6966
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
6967
6967
|
focused: boolean;
|
6968
6968
|
errorMessages: string | readonly string[] | null;
|
6969
6969
|
maxErrors: string | number;
|
@@ -7086,7 +7086,7 @@ export declare const VSelect: {
|
|
7086
7086
|
disabled: boolean | null;
|
7087
7087
|
readonly: boolean | null;
|
7088
7088
|
messages: string | readonly string[];
|
7089
|
-
rules: readonly import("../../
|
7089
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
7090
7090
|
focused: boolean;
|
7091
7091
|
errorMessages: string | readonly string[] | null;
|
7092
7092
|
maxErrors: string | number;
|
@@ -7102,7 +7102,7 @@ export declare const VSelect: {
|
|
7102
7102
|
disabled: boolean | null;
|
7103
7103
|
readonly: boolean | null;
|
7104
7104
|
messages: string | readonly string[];
|
7105
|
-
rules: readonly import("../../
|
7105
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
7106
7106
|
focused: boolean;
|
7107
7107
|
errorMessages: string | readonly string[] | null;
|
7108
7108
|
maxErrors: string | number;
|
@@ -7157,7 +7157,7 @@ export declare const VSelect: {
|
|
7157
7157
|
disabled: boolean | null;
|
7158
7158
|
readonly: boolean | null;
|
7159
7159
|
messages: string | readonly string[];
|
7160
|
-
rules: readonly import("../../
|
7160
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
7161
7161
|
focused: boolean;
|
7162
7162
|
errorMessages: string | readonly string[] | null;
|
7163
7163
|
maxErrors: string | number;
|
@@ -7202,7 +7202,7 @@ export declare const VSelect: {
|
|
7202
7202
|
disabled: boolean | null;
|
7203
7203
|
readonly: boolean | null;
|
7204
7204
|
messages: string | readonly 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
|
focused: boolean;
|
7207
7207
|
errorMessages: string | readonly string[] | null;
|
7208
7208
|
maxErrors: string | number;
|
@@ -7244,7 +7244,7 @@ export declare const VSelect: {
|
|
7244
7244
|
disabled: boolean | null;
|
7245
7245
|
readonly: boolean | null;
|
7246
7246
|
messages: string | readonly string[];
|
7247
|
-
rules: readonly import("../../
|
7247
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
7248
7248
|
focused: boolean;
|
7249
7249
|
errorMessages: string | readonly string[] | null;
|
7250
7250
|
maxErrors: string | number;
|
@@ -7260,7 +7260,7 @@ export declare const VSelect: {
|
|
7260
7260
|
disabled: boolean | null;
|
7261
7261
|
readonly: boolean | null;
|
7262
7262
|
messages: string | readonly string[];
|
7263
|
-
rules: readonly import("../../
|
7263
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
7264
7264
|
focused: boolean;
|
7265
7265
|
errorMessages: string | readonly string[] | null;
|
7266
7266
|
maxErrors: string | number;
|
@@ -7559,7 +7559,7 @@ export declare const VSelect: {
|
|
7559
7559
|
disabled: boolean;
|
7560
7560
|
readonly: boolean | null;
|
7561
7561
|
messages: string | readonly string[];
|
7562
|
-
rules: readonly import("../../
|
7562
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
7563
7563
|
focused: boolean;
|
7564
7564
|
errorMessages: string | readonly string[] | null;
|
7565
7565
|
maxErrors: string | number;
|
@@ -7627,7 +7627,7 @@ export declare const VSelect: {
|
|
7627
7627
|
disabled: boolean;
|
7628
7628
|
readonly: boolean | null;
|
7629
7629
|
messages: string | readonly string[];
|
7630
|
-
rules: readonly import("../../
|
7630
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
7631
7631
|
focused: boolean;
|
7632
7632
|
errorMessages: string | readonly string[] | null;
|
7633
7633
|
maxErrors: string | number;
|
@@ -7658,7 +7658,7 @@ export declare const VSelect: {
|
|
7658
7658
|
disabled: boolean;
|
7659
7659
|
readonly: boolean | null;
|
7660
7660
|
messages: string | readonly string[];
|
7661
|
-
rules: readonly import("../../
|
7661
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
7662
7662
|
focused: boolean;
|
7663
7663
|
errorMessages: string | readonly string[] | null;
|
7664
7664
|
maxErrors: string | number;
|
@@ -7781,7 +7781,7 @@ export declare const VSelect: {
|
|
7781
7781
|
disabled: boolean | null;
|
7782
7782
|
readonly: boolean | null;
|
7783
7783
|
messages: string | readonly string[];
|
7784
|
-
rules: readonly import("../../
|
7784
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
7785
7785
|
focused: boolean;
|
7786
7786
|
errorMessages: string | readonly string[] | null;
|
7787
7787
|
maxErrors: string | number;
|
@@ -7797,7 +7797,7 @@ export declare const VSelect: {
|
|
7797
7797
|
disabled: boolean | null;
|
7798
7798
|
readonly: boolean | null;
|
7799
7799
|
messages: string | readonly string[];
|
7800
|
-
rules: readonly import("../../
|
7800
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
7801
7801
|
focused: boolean;
|
7802
7802
|
errorMessages: string | readonly string[] | null;
|
7803
7803
|
maxErrors: string | number;
|
@@ -7852,7 +7852,7 @@ export declare const VSelect: {
|
|
7852
7852
|
disabled: boolean | null;
|
7853
7853
|
readonly: boolean | null;
|
7854
7854
|
messages: string | readonly string[];
|
7855
|
-
rules: readonly import("../../
|
7855
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
7856
7856
|
focused: boolean;
|
7857
7857
|
errorMessages: string | readonly string[] | null;
|
7858
7858
|
maxErrors: string | number;
|
@@ -7897,7 +7897,7 @@ export declare const VSelect: {
|
|
7897
7897
|
disabled: boolean | null;
|
7898
7898
|
readonly: boolean | null;
|
7899
7899
|
messages: string | readonly string[];
|
7900
|
-
rules: readonly import("../../
|
7900
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
7901
7901
|
focused: boolean;
|
7902
7902
|
errorMessages: string | readonly string[] | null;
|
7903
7903
|
maxErrors: string | number;
|
@@ -7939,7 +7939,7 @@ export declare const VSelect: {
|
|
7939
7939
|
disabled: boolean | null;
|
7940
7940
|
readonly: boolean | null;
|
7941
7941
|
messages: string | readonly string[];
|
7942
|
-
rules: readonly import("../../
|
7942
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
7943
7943
|
focused: boolean;
|
7944
7944
|
errorMessages: string | readonly string[] | null;
|
7945
7945
|
maxErrors: string | number;
|
@@ -7955,7 +7955,7 @@ export declare const VSelect: {
|
|
7955
7955
|
disabled: boolean | null;
|
7956
7956
|
readonly: boolean | null;
|
7957
7957
|
messages: string | readonly string[];
|
7958
|
-
rules: readonly import("../../
|
7958
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
7959
7959
|
focused: boolean;
|
7960
7960
|
errorMessages: string | readonly string[] | null;
|
7961
7961
|
maxErrors: string | number;
|
@@ -8247,7 +8247,7 @@ export declare const VSelect: {
|
|
8247
8247
|
disabled: boolean | null;
|
8248
8248
|
readonly: boolean | null;
|
8249
8249
|
messages: string | readonly string[];
|
8250
|
-
rules: readonly import("../../
|
8250
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
8251
8251
|
focused: boolean;
|
8252
8252
|
errorMessages: string | readonly string[] | null;
|
8253
8253
|
maxErrors: string | number;
|
@@ -8263,7 +8263,7 @@ export declare const VSelect: {
|
|
8263
8263
|
disabled: boolean | null;
|
8264
8264
|
readonly: boolean | null;
|
8265
8265
|
messages: string | readonly string[];
|
8266
|
-
rules: readonly import("../../
|
8266
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
8267
8267
|
focused: boolean;
|
8268
8268
|
errorMessages: string | readonly string[] | null;
|
8269
8269
|
maxErrors: string | number;
|
@@ -8318,7 +8318,7 @@ export declare const VSelect: {
|
|
8318
8318
|
disabled: boolean | null;
|
8319
8319
|
readonly: boolean | null;
|
8320
8320
|
messages: string | readonly string[];
|
8321
|
-
rules: readonly import("../../
|
8321
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
8322
8322
|
focused: boolean;
|
8323
8323
|
errorMessages: string | readonly string[] | null;
|
8324
8324
|
maxErrors: string | number;
|
@@ -8363,7 +8363,7 @@ export declare const VSelect: {
|
|
8363
8363
|
disabled: boolean | null;
|
8364
8364
|
readonly: boolean | null;
|
8365
8365
|
messages: string | readonly string[];
|
8366
|
-
rules: readonly import("../../
|
8366
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
8367
8367
|
focused: boolean;
|
8368
8368
|
errorMessages: string | readonly string[] | null;
|
8369
8369
|
maxErrors: string | number;
|
@@ -8405,7 +8405,7 @@ export declare const VSelect: {
|
|
8405
8405
|
disabled: boolean | null;
|
8406
8406
|
readonly: boolean | null;
|
8407
8407
|
messages: string | readonly string[];
|
8408
|
-
rules: readonly import("../../
|
8408
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
8409
8409
|
focused: boolean;
|
8410
8410
|
errorMessages: string | readonly string[] | null;
|
8411
8411
|
maxErrors: string | number;
|
@@ -8421,7 +8421,7 @@ export declare const VSelect: {
|
|
8421
8421
|
disabled: boolean | null;
|
8422
8422
|
readonly: boolean | null;
|
8423
8423
|
messages: string | readonly string[];
|
8424
|
-
rules: readonly import("../../
|
8424
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
8425
8425
|
focused: boolean;
|
8426
8426
|
errorMessages: string | readonly string[] | null;
|
8427
8427
|
maxErrors: string | number;
|
@@ -8729,7 +8729,7 @@ export declare const VSelect: {
|
|
8729
8729
|
readonly: boolean | null;
|
8730
8730
|
messages: string | readonly string[];
|
8731
8731
|
noDataText: string;
|
8732
|
-
rules: readonly import("../../
|
8732
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
8733
8733
|
focused: boolean;
|
8734
8734
|
errorMessages: string | readonly string[] | null;
|
8735
8735
|
maxErrors: string | number;
|
@@ -8781,7 +8781,7 @@ export declare const VSelect: {
|
|
8781
8781
|
readonly: boolean | null;
|
8782
8782
|
messages: string | readonly string[];
|
8783
8783
|
noDataText: string;
|
8784
|
-
rules: readonly import("../../
|
8784
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
8785
8785
|
focused: boolean;
|
8786
8786
|
errorMessages: string | readonly string[] | null;
|
8787
8787
|
maxErrors: string | number;
|
@@ -9238,7 +9238,7 @@ export declare const VSelect: {
|
|
9238
9238
|
disabled: boolean;
|
9239
9239
|
readonly: boolean | null;
|
9240
9240
|
messages: string | readonly string[];
|
9241
|
-
rules: readonly import("../../
|
9241
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
9242
9242
|
focused: boolean;
|
9243
9243
|
errorMessages: string | readonly string[] | null;
|
9244
9244
|
maxErrors: string | number;
|
@@ -9269,7 +9269,7 @@ export declare const VSelect: {
|
|
9269
9269
|
disabled: boolean;
|
9270
9270
|
readonly: boolean | null;
|
9271
9271
|
messages: string | readonly string[];
|
9272
|
-
rules: readonly import("../../
|
9272
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
9273
9273
|
focused: boolean;
|
9274
9274
|
errorMessages: string | readonly string[] | null;
|
9275
9275
|
maxErrors: string | number;
|
@@ -9420,7 +9420,7 @@ export declare const VSelect: {
|
|
9420
9420
|
disabled: boolean;
|
9421
9421
|
readonly: boolean | null;
|
9422
9422
|
messages: string | readonly string[];
|
9423
|
-
rules: readonly import("../../
|
9423
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
9424
9424
|
focused: boolean;
|
9425
9425
|
errorMessages: string | readonly string[] | null;
|
9426
9426
|
maxErrors: string | number;
|
@@ -9543,7 +9543,7 @@ export declare const VSelect: {
|
|
9543
9543
|
disabled: boolean | null;
|
9544
9544
|
readonly: boolean | null;
|
9545
9545
|
messages: string | readonly string[];
|
9546
|
-
rules: readonly import("../../
|
9546
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
9547
9547
|
focused: boolean;
|
9548
9548
|
errorMessages: string | readonly string[] | null;
|
9549
9549
|
maxErrors: string | number;
|
@@ -9559,7 +9559,7 @@ export declare const VSelect: {
|
|
9559
9559
|
disabled: boolean | null;
|
9560
9560
|
readonly: boolean | null;
|
9561
9561
|
messages: string | readonly string[];
|
9562
|
-
rules: readonly import("../../
|
9562
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
9563
9563
|
focused: boolean;
|
9564
9564
|
errorMessages: string | readonly string[] | null;
|
9565
9565
|
maxErrors: string | number;
|
@@ -9614,7 +9614,7 @@ export declare const VSelect: {
|
|
9614
9614
|
disabled: boolean | null;
|
9615
9615
|
readonly: boolean | null;
|
9616
9616
|
messages: string | readonly string[];
|
9617
|
-
rules: readonly import("../../
|
9617
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
9618
9618
|
focused: boolean;
|
9619
9619
|
errorMessages: string | readonly string[] | null;
|
9620
9620
|
maxErrors: string | number;
|
@@ -9659,7 +9659,7 @@ export declare const VSelect: {
|
|
9659
9659
|
disabled: boolean | null;
|
9660
9660
|
readonly: boolean | null;
|
9661
9661
|
messages: string | readonly string[];
|
9662
|
-
rules: readonly import("../../
|
9662
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
9663
9663
|
focused: boolean;
|
9664
9664
|
errorMessages: string | readonly string[] | null;
|
9665
9665
|
maxErrors: string | number;
|
@@ -9701,7 +9701,7 @@ export declare const VSelect: {
|
|
9701
9701
|
disabled: boolean | null;
|
9702
9702
|
readonly: boolean | null;
|
9703
9703
|
messages: string | readonly string[];
|
9704
|
-
rules: readonly import("../../
|
9704
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
9705
9705
|
focused: boolean;
|
9706
9706
|
errorMessages: string | readonly string[] | null;
|
9707
9707
|
maxErrors: string | number;
|
@@ -9717,7 +9717,7 @@ export declare const VSelect: {
|
|
9717
9717
|
disabled: boolean | null;
|
9718
9718
|
readonly: boolean | null;
|
9719
9719
|
messages: string | readonly string[];
|
9720
|
-
rules: readonly import("../../
|
9720
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
9721
9721
|
focused: boolean;
|
9722
9722
|
errorMessages: string | readonly string[] | null;
|
9723
9723
|
maxErrors: string | number;
|
@@ -10016,7 +10016,7 @@ export declare const VSelect: {
|
|
10016
10016
|
disabled: boolean;
|
10017
10017
|
readonly: boolean | null;
|
10018
10018
|
messages: string | readonly string[];
|
10019
|
-
rules: readonly import("../../
|
10019
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
10020
10020
|
focused: boolean;
|
10021
10021
|
errorMessages: string | readonly string[] | null;
|
10022
10022
|
maxErrors: string | number;
|
@@ -10084,7 +10084,7 @@ export declare const VSelect: {
|
|
10084
10084
|
disabled: boolean;
|
10085
10085
|
readonly: boolean | null;
|
10086
10086
|
messages: string | readonly string[];
|
10087
|
-
rules: readonly import("../../
|
10087
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
10088
10088
|
focused: boolean;
|
10089
10089
|
errorMessages: string | readonly string[] | null;
|
10090
10090
|
maxErrors: string | number;
|
@@ -10115,7 +10115,7 @@ export declare const VSelect: {
|
|
10115
10115
|
disabled: boolean;
|
10116
10116
|
readonly: boolean | null;
|
10117
10117
|
messages: string | readonly string[];
|
10118
|
-
rules: readonly import("../../
|
10118
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
10119
10119
|
focused: boolean;
|
10120
10120
|
errorMessages: string | readonly string[] | null;
|
10121
10121
|
maxErrors: string | number;
|
@@ -10238,7 +10238,7 @@ export declare const VSelect: {
|
|
10238
10238
|
disabled: boolean | null;
|
10239
10239
|
readonly: boolean | null;
|
10240
10240
|
messages: string | readonly string[];
|
10241
|
-
rules: readonly import("../../
|
10241
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
10242
10242
|
focused: boolean;
|
10243
10243
|
errorMessages: string | readonly string[] | null;
|
10244
10244
|
maxErrors: string | number;
|
@@ -10254,7 +10254,7 @@ export declare const VSelect: {
|
|
10254
10254
|
disabled: boolean | null;
|
10255
10255
|
readonly: boolean | null;
|
10256
10256
|
messages: string | readonly string[];
|
10257
|
-
rules: readonly import("../../
|
10257
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
10258
10258
|
focused: boolean;
|
10259
10259
|
errorMessages: string | readonly string[] | null;
|
10260
10260
|
maxErrors: string | number;
|
@@ -10309,7 +10309,7 @@ export declare const VSelect: {
|
|
10309
10309
|
disabled: boolean | null;
|
10310
10310
|
readonly: boolean | null;
|
10311
10311
|
messages: string | readonly string[];
|
10312
|
-
rules: readonly import("../../
|
10312
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
10313
10313
|
focused: boolean;
|
10314
10314
|
errorMessages: string | readonly string[] | null;
|
10315
10315
|
maxErrors: string | number;
|
@@ -10354,7 +10354,7 @@ export declare const VSelect: {
|
|
10354
10354
|
disabled: boolean | null;
|
10355
10355
|
readonly: boolean | null;
|
10356
10356
|
messages: string | readonly string[];
|
10357
|
-
rules: readonly import("../../
|
10357
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
10358
10358
|
focused: boolean;
|
10359
10359
|
errorMessages: string | readonly string[] | null;
|
10360
10360
|
maxErrors: string | number;
|
@@ -10396,7 +10396,7 @@ export declare const VSelect: {
|
|
10396
10396
|
disabled: boolean | null;
|
10397
10397
|
readonly: boolean | null;
|
10398
10398
|
messages: string | readonly string[];
|
10399
|
-
rules: readonly import("../../
|
10399
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
10400
10400
|
focused: boolean;
|
10401
10401
|
errorMessages: string | readonly string[] | null;
|
10402
10402
|
maxErrors: string | number;
|
@@ -10412,7 +10412,7 @@ export declare const VSelect: {
|
|
10412
10412
|
disabled: boolean | null;
|
10413
10413
|
readonly: boolean | null;
|
10414
10414
|
messages: string | readonly string[];
|
10415
|
-
rules: readonly import("../../
|
10415
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
10416
10416
|
focused: boolean;
|
10417
10417
|
errorMessages: string | readonly string[] | null;
|
10418
10418
|
maxErrors: string | number;
|
@@ -10704,7 +10704,7 @@ export declare const VSelect: {
|
|
10704
10704
|
disabled: boolean | null;
|
10705
10705
|
readonly: boolean | null;
|
10706
10706
|
messages: string | readonly string[];
|
10707
|
-
rules: readonly import("../../
|
10707
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
10708
10708
|
focused: boolean;
|
10709
10709
|
errorMessages: string | readonly string[] | null;
|
10710
10710
|
maxErrors: string | number;
|
@@ -10720,7 +10720,7 @@ export declare const VSelect: {
|
|
10720
10720
|
disabled: boolean | null;
|
10721
10721
|
readonly: boolean | null;
|
10722
10722
|
messages: string | readonly string[];
|
10723
|
-
rules: readonly import("../../
|
10723
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
10724
10724
|
focused: boolean;
|
10725
10725
|
errorMessages: string | readonly string[] | null;
|
10726
10726
|
maxErrors: string | number;
|
@@ -10775,7 +10775,7 @@ export declare const VSelect: {
|
|
10775
10775
|
disabled: boolean | null;
|
10776
10776
|
readonly: boolean | null;
|
10777
10777
|
messages: string | readonly string[];
|
10778
|
-
rules: readonly import("../../
|
10778
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
10779
10779
|
focused: boolean;
|
10780
10780
|
errorMessages: string | readonly string[] | null;
|
10781
10781
|
maxErrors: string | number;
|
@@ -10820,7 +10820,7 @@ export declare const VSelect: {
|
|
10820
10820
|
disabled: boolean | null;
|
10821
10821
|
readonly: boolean | null;
|
10822
10822
|
messages: string | readonly string[];
|
10823
|
-
rules: readonly import("../../
|
10823
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
10824
10824
|
focused: boolean;
|
10825
10825
|
errorMessages: string | readonly string[] | null;
|
10826
10826
|
maxErrors: string | number;
|
@@ -10862,7 +10862,7 @@ export declare const VSelect: {
|
|
10862
10862
|
disabled: boolean | null;
|
10863
10863
|
readonly: boolean | null;
|
10864
10864
|
messages: string | readonly string[];
|
10865
|
-
rules: readonly import("../../
|
10865
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
10866
10866
|
focused: boolean;
|
10867
10867
|
errorMessages: string | readonly string[] | null;
|
10868
10868
|
maxErrors: string | number;
|
@@ -10878,7 +10878,7 @@ export declare const VSelect: {
|
|
10878
10878
|
disabled: boolean | null;
|
10879
10879
|
readonly: boolean | null;
|
10880
10880
|
messages: string | readonly string[];
|
10881
|
-
rules: readonly import("../../
|
10881
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
10882
10882
|
focused: boolean;
|
10883
10883
|
errorMessages: string | readonly string[] | null;
|
10884
10884
|
maxErrors: string | number;
|
@@ -11190,7 +11190,7 @@ export declare const VSelect: {
|
|
11190
11190
|
readonly: boolean | null;
|
11191
11191
|
messages: string | readonly string[];
|
11192
11192
|
noDataText: string;
|
11193
|
-
rules: readonly import("../../
|
11193
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
11194
11194
|
focused: boolean;
|
11195
11195
|
errorMessages: string | readonly string[] | null;
|
11196
11196
|
maxErrors: string | number;
|
@@ -11340,7 +11340,7 @@ export declare const VSelect: {
|
|
11340
11340
|
default: () => never[];
|
11341
11341
|
};
|
11342
11342
|
rules: {
|
11343
|
-
type: PropType<readonly import("../../types.js").ValidationRule[]>;
|
11343
|
+
type: PropType<readonly (import("../../types.js").ValidationRule | import("../../labs/rules/index.js").ValidationAlias)[]>;
|
11344
11344
|
default: () => never[];
|
11345
11345
|
};
|
11346
11346
|
counter: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
@@ -11522,7 +11522,7 @@ export declare const VSelect: {
|
|
11522
11522
|
default: () => never[];
|
11523
11523
|
};
|
11524
11524
|
rules: {
|
11525
|
-
type: PropType<readonly import("../../types.js").ValidationRule[]>;
|
11525
|
+
type: PropType<readonly (import("../../types.js").ValidationRule | import("../../labs/rules/index.js").ValidationAlias)[]>;
|
11526
11526
|
default: () => never[];
|
11527
11527
|
};
|
11528
11528
|
counter: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|