@vuetify/nightly 3.8.5-master.2025-05-14 → 3.8.5-master.2025-05-15
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 +10 -3
- package/dist/json/attributes.json +3103 -3103
- package/dist/json/importMap-labs.json +6 -6
- package/dist/json/importMap.json +140 -140
- package/dist/json/web-types.json +5966 -5966
- package/dist/vuetify-labs.cjs +13 -31
- package/dist/vuetify-labs.css +3666 -3666
- package/dist/vuetify-labs.d.ts +590 -587
- package/dist/vuetify-labs.esm.js +13 -31
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +13 -31
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +13 -31
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +2923 -2923
- package/dist/vuetify.d.ts +502 -499
- package/dist/vuetify.esm.js +13 -31
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +13 -31
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +570 -568
- 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/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/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/framework.d.ts +44 -44
- package/lib/framework.js +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/package.json +1 -1
package/dist/vuetify.d.ts
CHANGED
@@ -660,6 +660,9 @@ interface InternalItem<T = any> {
|
|
660
660
|
raw: T;
|
661
661
|
}
|
662
662
|
|
663
|
+
type ValidationRuleParams = [any, string?];
|
664
|
+
type ValidationAlias = string | [string, ...ValidationRuleParams];
|
665
|
+
|
663
666
|
type ValidationResult = string | boolean;
|
664
667
|
type ValidationRule$1 = ValidationResult | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>);
|
665
668
|
type ValidateOnValue = 'blur' | 'input' | 'submit' | 'invalid-input';
|
@@ -673,7 +676,7 @@ interface ValidationProps {
|
|
673
676
|
name: string | undefined;
|
674
677
|
label: string | undefined;
|
675
678
|
readonly: boolean | null;
|
676
|
-
rules: readonly ValidationRule$1[];
|
679
|
+
rules: readonly (ValidationRule$1 | ValidationAlias)[];
|
677
680
|
modelValue: any;
|
678
681
|
'onUpdate:modelValue': EventProp | undefined;
|
679
682
|
validateOn?: ValidateOn;
|
@@ -5694,7 +5697,7 @@ declare const VInput: {
|
|
5694
5697
|
disabled: boolean | null;
|
5695
5698
|
readonly: boolean | null;
|
5696
5699
|
messages: string | readonly string[];
|
5697
|
-
rules: readonly
|
5700
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
5698
5701
|
focused: boolean;
|
5699
5702
|
errorMessages: string | readonly string[] | null;
|
5700
5703
|
maxErrors: string | number;
|
@@ -5739,7 +5742,7 @@ declare const VInput: {
|
|
5739
5742
|
disabled: boolean | null;
|
5740
5743
|
readonly: boolean | null;
|
5741
5744
|
messages: string | readonly string[];
|
5742
|
-
rules: readonly
|
5745
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
5743
5746
|
focused: boolean;
|
5744
5747
|
errorMessages: string | readonly string[] | null;
|
5745
5748
|
maxErrors: string | number;
|
@@ -5768,7 +5771,7 @@ declare const VInput: {
|
|
5768
5771
|
disabled: boolean | null;
|
5769
5772
|
readonly: boolean | null;
|
5770
5773
|
messages: string | readonly string[];
|
5771
|
-
rules: readonly
|
5774
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
5772
5775
|
focused: boolean;
|
5773
5776
|
errorMessages: string | readonly string[] | null;
|
5774
5777
|
maxErrors: string | number;
|
@@ -5811,7 +5814,7 @@ declare const VInput: {
|
|
5811
5814
|
disabled: boolean | null;
|
5812
5815
|
readonly: boolean | null;
|
5813
5816
|
messages: string | readonly string[];
|
5814
|
-
rules: readonly
|
5817
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
5815
5818
|
focused: boolean;
|
5816
5819
|
errorMessages: string | readonly string[] | null;
|
5817
5820
|
maxErrors: string | number;
|
@@ -5831,7 +5834,7 @@ declare const VInput: {
|
|
5831
5834
|
disabled: boolean | null;
|
5832
5835
|
readonly: boolean | null;
|
5833
5836
|
messages: string | readonly string[];
|
5834
|
-
rules: readonly
|
5837
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
5835
5838
|
focused: boolean;
|
5836
5839
|
errorMessages: string | readonly string[] | null;
|
5837
5840
|
maxErrors: string | number;
|
@@ -5876,7 +5879,7 @@ declare const VInput: {
|
|
5876
5879
|
disabled: boolean | null;
|
5877
5880
|
readonly: boolean | null;
|
5878
5881
|
messages: string | readonly string[];
|
5879
|
-
rules: readonly
|
5882
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
5880
5883
|
focused: boolean;
|
5881
5884
|
errorMessages: string | readonly string[] | null;
|
5882
5885
|
maxErrors: string | number;
|
@@ -5917,7 +5920,7 @@ declare const VInput: {
|
|
5917
5920
|
default: null;
|
5918
5921
|
};
|
5919
5922
|
rules: {
|
5920
|
-
type: PropType<readonly ValidationRule$1[]>;
|
5923
|
+
type: PropType<readonly (ValidationRule$1 | ValidationAlias)[]>;
|
5921
5924
|
default: () => never[];
|
5922
5925
|
};
|
5923
5926
|
modelValue: null;
|
@@ -5986,7 +5989,7 @@ declare const VInput: {
|
|
5986
5989
|
default: null;
|
5987
5990
|
};
|
5988
5991
|
rules: {
|
5989
|
-
type: PropType<readonly ValidationRule$1[]>;
|
5992
|
+
type: PropType<readonly (ValidationRule$1 | ValidationAlias)[]>;
|
5990
5993
|
default: () => never[];
|
5991
5994
|
};
|
5992
5995
|
modelValue: null;
|
@@ -10708,7 +10711,7 @@ declare const VAutocomplete: {
|
|
10708
10711
|
readonly: boolean | null;
|
10709
10712
|
messages: string | readonly string[];
|
10710
10713
|
noDataText: string;
|
10711
|
-
rules: readonly
|
10714
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
10712
10715
|
filterMode: FilterMode;
|
10713
10716
|
noFilter: boolean;
|
10714
10717
|
filterKeys: FilterKeys;
|
@@ -11179,7 +11182,7 @@ declare const VAutocomplete: {
|
|
11179
11182
|
disabled: boolean;
|
11180
11183
|
readonly: boolean | null;
|
11181
11184
|
messages: string | readonly string[];
|
11182
|
-
rules: readonly
|
11185
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
11183
11186
|
focused: boolean;
|
11184
11187
|
errorMessages: string | readonly string[] | null;
|
11185
11188
|
maxErrors: string | number;
|
@@ -11210,7 +11213,7 @@ declare const VAutocomplete: {
|
|
11210
11213
|
disabled: boolean;
|
11211
11214
|
readonly: boolean | null;
|
11212
11215
|
messages: string | readonly string[];
|
11213
|
-
rules: readonly
|
11216
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
11214
11217
|
focused: boolean;
|
11215
11218
|
errorMessages: string | readonly string[] | null;
|
11216
11219
|
maxErrors: string | number;
|
@@ -11361,7 +11364,7 @@ declare const VAutocomplete: {
|
|
11361
11364
|
disabled: boolean;
|
11362
11365
|
readonly: boolean | null;
|
11363
11366
|
messages: string | readonly string[];
|
11364
|
-
rules: readonly
|
11367
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
11365
11368
|
focused: boolean;
|
11366
11369
|
errorMessages: string | readonly string[] | null;
|
11367
11370
|
maxErrors: string | number;
|
@@ -11484,7 +11487,7 @@ declare const VAutocomplete: {
|
|
11484
11487
|
disabled: boolean | null;
|
11485
11488
|
readonly: boolean | null;
|
11486
11489
|
messages: string | readonly string[];
|
11487
|
-
rules: readonly
|
11490
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
11488
11491
|
focused: boolean;
|
11489
11492
|
errorMessages: string | readonly string[] | null;
|
11490
11493
|
maxErrors: string | number;
|
@@ -11500,7 +11503,7 @@ declare const VAutocomplete: {
|
|
11500
11503
|
disabled: boolean | null;
|
11501
11504
|
readonly: boolean | null;
|
11502
11505
|
messages: string | readonly string[];
|
11503
|
-
rules: readonly
|
11506
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
11504
11507
|
focused: boolean;
|
11505
11508
|
errorMessages: string | readonly string[] | null;
|
11506
11509
|
maxErrors: string | number;
|
@@ -11555,7 +11558,7 @@ declare const VAutocomplete: {
|
|
11555
11558
|
disabled: boolean | null;
|
11556
11559
|
readonly: boolean | null;
|
11557
11560
|
messages: string | readonly string[];
|
11558
|
-
rules: readonly
|
11561
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
11559
11562
|
focused: boolean;
|
11560
11563
|
errorMessages: string | readonly string[] | null;
|
11561
11564
|
maxErrors: string | number;
|
@@ -11600,7 +11603,7 @@ declare const VAutocomplete: {
|
|
11600
11603
|
disabled: boolean | null;
|
11601
11604
|
readonly: boolean | null;
|
11602
11605
|
messages: string | readonly string[];
|
11603
|
-
rules: readonly
|
11606
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
11604
11607
|
focused: boolean;
|
11605
11608
|
errorMessages: string | readonly string[] | null;
|
11606
11609
|
maxErrors: string | number;
|
@@ -11642,7 +11645,7 @@ declare const VAutocomplete: {
|
|
11642
11645
|
disabled: boolean | null;
|
11643
11646
|
readonly: boolean | null;
|
11644
11647
|
messages: string | readonly string[];
|
11645
|
-
rules: readonly
|
11648
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
11646
11649
|
focused: boolean;
|
11647
11650
|
errorMessages: string | readonly string[] | null;
|
11648
11651
|
maxErrors: string | number;
|
@@ -11658,7 +11661,7 @@ declare const VAutocomplete: {
|
|
11658
11661
|
disabled: boolean | null;
|
11659
11662
|
readonly: boolean | null;
|
11660
11663
|
messages: string | readonly string[];
|
11661
|
-
rules: readonly
|
11664
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
11662
11665
|
focused: boolean;
|
11663
11666
|
errorMessages: string | readonly string[] | null;
|
11664
11667
|
maxErrors: string | number;
|
@@ -11957,7 +11960,7 @@ declare const VAutocomplete: {
|
|
11957
11960
|
disabled: boolean;
|
11958
11961
|
readonly: boolean | null;
|
11959
11962
|
messages: string | readonly string[];
|
11960
|
-
rules: readonly
|
11963
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
11961
11964
|
focused: boolean;
|
11962
11965
|
errorMessages: string | readonly string[] | null;
|
11963
11966
|
maxErrors: string | number;
|
@@ -12025,7 +12028,7 @@ declare const VAutocomplete: {
|
|
12025
12028
|
disabled: boolean;
|
12026
12029
|
readonly: boolean | null;
|
12027
12030
|
messages: string | readonly string[];
|
12028
|
-
rules: readonly
|
12031
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
12029
12032
|
focused: boolean;
|
12030
12033
|
errorMessages: string | readonly string[] | null;
|
12031
12034
|
maxErrors: string | number;
|
@@ -12056,7 +12059,7 @@ declare const VAutocomplete: {
|
|
12056
12059
|
disabled: boolean;
|
12057
12060
|
readonly: boolean | null;
|
12058
12061
|
messages: string | readonly string[];
|
12059
|
-
rules: readonly
|
12062
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
12060
12063
|
focused: boolean;
|
12061
12064
|
errorMessages: string | readonly string[] | null;
|
12062
12065
|
maxErrors: string | number;
|
@@ -12179,7 +12182,7 @@ declare const VAutocomplete: {
|
|
12179
12182
|
disabled: boolean | null;
|
12180
12183
|
readonly: boolean | null;
|
12181
12184
|
messages: string | readonly string[];
|
12182
|
-
rules: readonly
|
12185
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
12183
12186
|
focused: boolean;
|
12184
12187
|
errorMessages: string | readonly string[] | null;
|
12185
12188
|
maxErrors: string | number;
|
@@ -12195,7 +12198,7 @@ declare const VAutocomplete: {
|
|
12195
12198
|
disabled: boolean | null;
|
12196
12199
|
readonly: boolean | null;
|
12197
12200
|
messages: string | readonly string[];
|
12198
|
-
rules: readonly
|
12201
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
12199
12202
|
focused: boolean;
|
12200
12203
|
errorMessages: string | readonly string[] | null;
|
12201
12204
|
maxErrors: string | number;
|
@@ -12250,7 +12253,7 @@ declare const VAutocomplete: {
|
|
12250
12253
|
disabled: boolean | null;
|
12251
12254
|
readonly: boolean | null;
|
12252
12255
|
messages: string | readonly string[];
|
12253
|
-
rules: readonly
|
12256
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
12254
12257
|
focused: boolean;
|
12255
12258
|
errorMessages: string | readonly string[] | null;
|
12256
12259
|
maxErrors: string | number;
|
@@ -12295,7 +12298,7 @@ declare const VAutocomplete: {
|
|
12295
12298
|
disabled: boolean | null;
|
12296
12299
|
readonly: boolean | null;
|
12297
12300
|
messages: string | readonly string[];
|
12298
|
-
rules: readonly
|
12301
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
12299
12302
|
focused: boolean;
|
12300
12303
|
errorMessages: string | readonly string[] | null;
|
12301
12304
|
maxErrors: string | number;
|
@@ -12337,7 +12340,7 @@ declare const VAutocomplete: {
|
|
12337
12340
|
disabled: boolean | null;
|
12338
12341
|
readonly: boolean | null;
|
12339
12342
|
messages: string | readonly string[];
|
12340
|
-
rules: readonly
|
12343
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
12341
12344
|
focused: boolean;
|
12342
12345
|
errorMessages: string | readonly string[] | null;
|
12343
12346
|
maxErrors: string | number;
|
@@ -12353,7 +12356,7 @@ declare const VAutocomplete: {
|
|
12353
12356
|
disabled: boolean | null;
|
12354
12357
|
readonly: boolean | null;
|
12355
12358
|
messages: string | readonly string[];
|
12356
|
-
rules: readonly
|
12359
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
12357
12360
|
focused: boolean;
|
12358
12361
|
errorMessages: string | readonly string[] | null;
|
12359
12362
|
maxErrors: string | number;
|
@@ -12645,7 +12648,7 @@ declare const VAutocomplete: {
|
|
12645
12648
|
disabled: boolean | null;
|
12646
12649
|
readonly: boolean | null;
|
12647
12650
|
messages: string | readonly string[];
|
12648
|
-
rules: readonly
|
12651
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
12649
12652
|
focused: boolean;
|
12650
12653
|
errorMessages: string | readonly string[] | null;
|
12651
12654
|
maxErrors: string | number;
|
@@ -12661,7 +12664,7 @@ declare const VAutocomplete: {
|
|
12661
12664
|
disabled: boolean | null;
|
12662
12665
|
readonly: boolean | null;
|
12663
12666
|
messages: string | readonly string[];
|
12664
|
-
rules: readonly
|
12667
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
12665
12668
|
focused: boolean;
|
12666
12669
|
errorMessages: string | readonly string[] | null;
|
12667
12670
|
maxErrors: string | number;
|
@@ -12716,7 +12719,7 @@ declare const VAutocomplete: {
|
|
12716
12719
|
disabled: boolean | null;
|
12717
12720
|
readonly: boolean | null;
|
12718
12721
|
messages: string | readonly string[];
|
12719
|
-
rules: readonly
|
12722
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
12720
12723
|
focused: boolean;
|
12721
12724
|
errorMessages: string | readonly string[] | null;
|
12722
12725
|
maxErrors: string | number;
|
@@ -12761,7 +12764,7 @@ declare const VAutocomplete: {
|
|
12761
12764
|
disabled: boolean | null;
|
12762
12765
|
readonly: boolean | null;
|
12763
12766
|
messages: string | readonly string[];
|
12764
|
-
rules: readonly
|
12767
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
12765
12768
|
focused: boolean;
|
12766
12769
|
errorMessages: string | readonly string[] | null;
|
12767
12770
|
maxErrors: string | number;
|
@@ -12803,7 +12806,7 @@ declare const VAutocomplete: {
|
|
12803
12806
|
disabled: boolean | null;
|
12804
12807
|
readonly: boolean | null;
|
12805
12808
|
messages: string | readonly string[];
|
12806
|
-
rules: readonly
|
12809
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
12807
12810
|
focused: boolean;
|
12808
12811
|
errorMessages: string | readonly string[] | null;
|
12809
12812
|
maxErrors: string | number;
|
@@ -12819,7 +12822,7 @@ declare const VAutocomplete: {
|
|
12819
12822
|
disabled: boolean | null;
|
12820
12823
|
readonly: boolean | null;
|
12821
12824
|
messages: string | readonly string[];
|
12822
|
-
rules: readonly
|
12825
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
12823
12826
|
focused: boolean;
|
12824
12827
|
errorMessages: string | readonly string[] | null;
|
12825
12828
|
maxErrors: string | number;
|
@@ -13135,7 +13138,7 @@ declare const VAutocomplete: {
|
|
13135
13138
|
readonly: boolean | null;
|
13136
13139
|
messages: string | readonly string[];
|
13137
13140
|
noDataText: string;
|
13138
|
-
rules: readonly
|
13141
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
13139
13142
|
filterMode: FilterMode;
|
13140
13143
|
noFilter: boolean;
|
13141
13144
|
filterKeys: FilterKeys;
|
@@ -13224,7 +13227,7 @@ declare const VAutocomplete: {
|
|
13224
13227
|
readonly: boolean | null;
|
13225
13228
|
messages: string | readonly string[];
|
13226
13229
|
noDataText: string;
|
13227
|
-
rules: readonly
|
13230
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
13228
13231
|
filterMode: FilterMode;
|
13229
13232
|
noFilter: boolean;
|
13230
13233
|
filterKeys: FilterKeys;
|
@@ -13695,7 +13698,7 @@ declare const VAutocomplete: {
|
|
13695
13698
|
disabled: boolean;
|
13696
13699
|
readonly: boolean | null;
|
13697
13700
|
messages: string | readonly string[];
|
13698
|
-
rules: readonly
|
13701
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
13699
13702
|
focused: boolean;
|
13700
13703
|
errorMessages: string | readonly string[] | null;
|
13701
13704
|
maxErrors: string | number;
|
@@ -13726,7 +13729,7 @@ declare const VAutocomplete: {
|
|
13726
13729
|
disabled: boolean;
|
13727
13730
|
readonly: boolean | null;
|
13728
13731
|
messages: string | readonly string[];
|
13729
|
-
rules: readonly
|
13732
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
13730
13733
|
focused: boolean;
|
13731
13734
|
errorMessages: string | readonly string[] | null;
|
13732
13735
|
maxErrors: string | number;
|
@@ -13877,7 +13880,7 @@ declare const VAutocomplete: {
|
|
13877
13880
|
disabled: boolean;
|
13878
13881
|
readonly: boolean | null;
|
13879
13882
|
messages: string | readonly string[];
|
13880
|
-
rules: readonly
|
13883
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
13881
13884
|
focused: boolean;
|
13882
13885
|
errorMessages: string | readonly string[] | null;
|
13883
13886
|
maxErrors: string | number;
|
@@ -14000,7 +14003,7 @@ declare const VAutocomplete: {
|
|
14000
14003
|
disabled: boolean | null;
|
14001
14004
|
readonly: boolean | null;
|
14002
14005
|
messages: string | readonly string[];
|
14003
|
-
rules: readonly
|
14006
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
14004
14007
|
focused: boolean;
|
14005
14008
|
errorMessages: string | readonly string[] | null;
|
14006
14009
|
maxErrors: string | number;
|
@@ -14016,7 +14019,7 @@ declare const VAutocomplete: {
|
|
14016
14019
|
disabled: boolean | null;
|
14017
14020
|
readonly: boolean | null;
|
14018
14021
|
messages: string | readonly string[];
|
14019
|
-
rules: readonly
|
14022
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
14020
14023
|
focused: boolean;
|
14021
14024
|
errorMessages: string | readonly string[] | null;
|
14022
14025
|
maxErrors: string | number;
|
@@ -14071,7 +14074,7 @@ declare const VAutocomplete: {
|
|
14071
14074
|
disabled: boolean | null;
|
14072
14075
|
readonly: boolean | null;
|
14073
14076
|
messages: string | readonly string[];
|
14074
|
-
rules: readonly
|
14077
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
14075
14078
|
focused: boolean;
|
14076
14079
|
errorMessages: string | readonly string[] | null;
|
14077
14080
|
maxErrors: string | number;
|
@@ -14116,7 +14119,7 @@ declare const VAutocomplete: {
|
|
14116
14119
|
disabled: boolean | null;
|
14117
14120
|
readonly: boolean | null;
|
14118
14121
|
messages: string | readonly string[];
|
14119
|
-
rules: readonly
|
14122
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
14120
14123
|
focused: boolean;
|
14121
14124
|
errorMessages: string | readonly string[] | null;
|
14122
14125
|
maxErrors: string | number;
|
@@ -14158,7 +14161,7 @@ declare const VAutocomplete: {
|
|
14158
14161
|
disabled: boolean | null;
|
14159
14162
|
readonly: boolean | null;
|
14160
14163
|
messages: string | readonly string[];
|
14161
|
-
rules: readonly
|
14164
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
14162
14165
|
focused: boolean;
|
14163
14166
|
errorMessages: string | readonly string[] | null;
|
14164
14167
|
maxErrors: string | number;
|
@@ -14174,7 +14177,7 @@ declare const VAutocomplete: {
|
|
14174
14177
|
disabled: boolean | null;
|
14175
14178
|
readonly: boolean | null;
|
14176
14179
|
messages: string | readonly string[];
|
14177
|
-
rules: readonly
|
14180
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
14178
14181
|
focused: boolean;
|
14179
14182
|
errorMessages: string | readonly string[] | null;
|
14180
14183
|
maxErrors: string | number;
|
@@ -14473,7 +14476,7 @@ declare const VAutocomplete: {
|
|
14473
14476
|
disabled: boolean;
|
14474
14477
|
readonly: boolean | null;
|
14475
14478
|
messages: string | readonly string[];
|
14476
|
-
rules: readonly
|
14479
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
14477
14480
|
focused: boolean;
|
14478
14481
|
errorMessages: string | readonly string[] | null;
|
14479
14482
|
maxErrors: string | number;
|
@@ -14541,7 +14544,7 @@ declare const VAutocomplete: {
|
|
14541
14544
|
disabled: boolean;
|
14542
14545
|
readonly: boolean | null;
|
14543
14546
|
messages: string | readonly string[];
|
14544
|
-
rules: readonly
|
14547
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
14545
14548
|
focused: boolean;
|
14546
14549
|
errorMessages: string | readonly string[] | null;
|
14547
14550
|
maxErrors: string | number;
|
@@ -14572,7 +14575,7 @@ declare const VAutocomplete: {
|
|
14572
14575
|
disabled: boolean;
|
14573
14576
|
readonly: boolean | null;
|
14574
14577
|
messages: string | readonly string[];
|
14575
|
-
rules: readonly
|
14578
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
14576
14579
|
focused: boolean;
|
14577
14580
|
errorMessages: string | readonly string[] | null;
|
14578
14581
|
maxErrors: string | number;
|
@@ -14695,7 +14698,7 @@ declare const VAutocomplete: {
|
|
14695
14698
|
disabled: boolean | null;
|
14696
14699
|
readonly: boolean | null;
|
14697
14700
|
messages: string | readonly string[];
|
14698
|
-
rules: readonly
|
14701
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
14699
14702
|
focused: boolean;
|
14700
14703
|
errorMessages: string | readonly string[] | null;
|
14701
14704
|
maxErrors: string | number;
|
@@ -14711,7 +14714,7 @@ declare const VAutocomplete: {
|
|
14711
14714
|
disabled: boolean | null;
|
14712
14715
|
readonly: boolean | null;
|
14713
14716
|
messages: string | readonly string[];
|
14714
|
-
rules: readonly
|
14717
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
14715
14718
|
focused: boolean;
|
14716
14719
|
errorMessages: string | readonly string[] | null;
|
14717
14720
|
maxErrors: string | number;
|
@@ -14766,7 +14769,7 @@ declare const VAutocomplete: {
|
|
14766
14769
|
disabled: boolean | null;
|
14767
14770
|
readonly: boolean | null;
|
14768
14771
|
messages: string | readonly string[];
|
14769
|
-
rules: readonly
|
14772
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
14770
14773
|
focused: boolean;
|
14771
14774
|
errorMessages: string | readonly string[] | null;
|
14772
14775
|
maxErrors: string | number;
|
@@ -14811,7 +14814,7 @@ declare const VAutocomplete: {
|
|
14811
14814
|
disabled: boolean | null;
|
14812
14815
|
readonly: boolean | null;
|
14813
14816
|
messages: string | readonly string[];
|
14814
|
-
rules: readonly
|
14817
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
14815
14818
|
focused: boolean;
|
14816
14819
|
errorMessages: string | readonly string[] | null;
|
14817
14820
|
maxErrors: string | number;
|
@@ -14853,7 +14856,7 @@ declare const VAutocomplete: {
|
|
14853
14856
|
disabled: boolean | null;
|
14854
14857
|
readonly: boolean | null;
|
14855
14858
|
messages: string | readonly string[];
|
14856
|
-
rules: readonly
|
14859
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
14857
14860
|
focused: boolean;
|
14858
14861
|
errorMessages: string | readonly string[] | null;
|
14859
14862
|
maxErrors: string | number;
|
@@ -14869,7 +14872,7 @@ declare const VAutocomplete: {
|
|
14869
14872
|
disabled: boolean | null;
|
14870
14873
|
readonly: boolean | null;
|
14871
14874
|
messages: string | readonly string[];
|
14872
|
-
rules: readonly
|
14875
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
14873
14876
|
focused: boolean;
|
14874
14877
|
errorMessages: string | readonly string[] | null;
|
14875
14878
|
maxErrors: string | number;
|
@@ -15161,7 +15164,7 @@ declare const VAutocomplete: {
|
|
15161
15164
|
disabled: boolean | null;
|
15162
15165
|
readonly: boolean | null;
|
15163
15166
|
messages: string | readonly string[];
|
15164
|
-
rules: readonly
|
15167
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
15165
15168
|
focused: boolean;
|
15166
15169
|
errorMessages: string | readonly string[] | null;
|
15167
15170
|
maxErrors: string | number;
|
@@ -15177,7 +15180,7 @@ declare const VAutocomplete: {
|
|
15177
15180
|
disabled: boolean | null;
|
15178
15181
|
readonly: boolean | null;
|
15179
15182
|
messages: string | readonly string[];
|
15180
|
-
rules: readonly
|
15183
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
15181
15184
|
focused: boolean;
|
15182
15185
|
errorMessages: string | readonly string[] | null;
|
15183
15186
|
maxErrors: string | number;
|
@@ -15232,7 +15235,7 @@ declare const VAutocomplete: {
|
|
15232
15235
|
disabled: boolean | null;
|
15233
15236
|
readonly: boolean | null;
|
15234
15237
|
messages: string | readonly string[];
|
15235
|
-
rules: readonly
|
15238
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
15236
15239
|
focused: boolean;
|
15237
15240
|
errorMessages: string | readonly string[] | null;
|
15238
15241
|
maxErrors: string | number;
|
@@ -15277,7 +15280,7 @@ declare const VAutocomplete: {
|
|
15277
15280
|
disabled: boolean | null;
|
15278
15281
|
readonly: boolean | null;
|
15279
15282
|
messages: string | readonly string[];
|
15280
|
-
rules: readonly
|
15283
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
15281
15284
|
focused: boolean;
|
15282
15285
|
errorMessages: string | readonly string[] | null;
|
15283
15286
|
maxErrors: string | number;
|
@@ -15319,7 +15322,7 @@ declare const VAutocomplete: {
|
|
15319
15322
|
disabled: boolean | null;
|
15320
15323
|
readonly: boolean | null;
|
15321
15324
|
messages: string | readonly string[];
|
15322
|
-
rules: readonly
|
15325
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
15323
15326
|
focused: boolean;
|
15324
15327
|
errorMessages: string | readonly string[] | null;
|
15325
15328
|
maxErrors: string | number;
|
@@ -15335,7 +15338,7 @@ declare const VAutocomplete: {
|
|
15335
15338
|
disabled: boolean | null;
|
15336
15339
|
readonly: boolean | null;
|
15337
15340
|
messages: string | readonly string[];
|
15338
|
-
rules: readonly
|
15341
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
15339
15342
|
focused: boolean;
|
15340
15343
|
errorMessages: string | readonly string[] | null;
|
15341
15344
|
maxErrors: string | number;
|
@@ -15646,7 +15649,7 @@ declare const VAutocomplete: {
|
|
15646
15649
|
readonly: boolean | null;
|
15647
15650
|
messages: string | readonly string[];
|
15648
15651
|
noDataText: string;
|
15649
|
-
rules: readonly
|
15652
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
15650
15653
|
filterMode: FilterMode;
|
15651
15654
|
noFilter: boolean;
|
15652
15655
|
filterKeys: FilterKeys;
|
@@ -15700,7 +15703,7 @@ declare const VAutocomplete: {
|
|
15700
15703
|
readonly: boolean | null;
|
15701
15704
|
messages: string | readonly string[];
|
15702
15705
|
noDataText: string;
|
15703
|
-
rules: readonly
|
15706
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
15704
15707
|
filterMode: FilterMode;
|
15705
15708
|
noFilter: boolean;
|
15706
15709
|
filterKeys: FilterKeys;
|
@@ -16171,7 +16174,7 @@ declare const VAutocomplete: {
|
|
16171
16174
|
disabled: boolean;
|
16172
16175
|
readonly: boolean | null;
|
16173
16176
|
messages: string | readonly string[];
|
16174
|
-
rules: readonly
|
16177
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
16175
16178
|
focused: boolean;
|
16176
16179
|
errorMessages: string | readonly string[] | null;
|
16177
16180
|
maxErrors: string | number;
|
@@ -16202,7 +16205,7 @@ declare const VAutocomplete: {
|
|
16202
16205
|
disabled: boolean;
|
16203
16206
|
readonly: boolean | null;
|
16204
16207
|
messages: string | readonly string[];
|
16205
|
-
rules: readonly
|
16208
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
16206
16209
|
focused: boolean;
|
16207
16210
|
errorMessages: string | readonly string[] | null;
|
16208
16211
|
maxErrors: string | number;
|
@@ -16353,7 +16356,7 @@ declare const VAutocomplete: {
|
|
16353
16356
|
disabled: boolean;
|
16354
16357
|
readonly: boolean | null;
|
16355
16358
|
messages: string | readonly string[];
|
16356
|
-
rules: readonly
|
16359
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
16357
16360
|
focused: boolean;
|
16358
16361
|
errorMessages: string | readonly string[] | null;
|
16359
16362
|
maxErrors: string | number;
|
@@ -16476,7 +16479,7 @@ declare const VAutocomplete: {
|
|
16476
16479
|
disabled: boolean | null;
|
16477
16480
|
readonly: boolean | null;
|
16478
16481
|
messages: string | readonly string[];
|
16479
|
-
rules: readonly
|
16482
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
16480
16483
|
focused: boolean;
|
16481
16484
|
errorMessages: string | readonly string[] | null;
|
16482
16485
|
maxErrors: string | number;
|
@@ -16492,7 +16495,7 @@ declare const VAutocomplete: {
|
|
16492
16495
|
disabled: boolean | null;
|
16493
16496
|
readonly: boolean | null;
|
16494
16497
|
messages: string | readonly string[];
|
16495
|
-
rules: readonly
|
16498
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
16496
16499
|
focused: boolean;
|
16497
16500
|
errorMessages: string | readonly string[] | null;
|
16498
16501
|
maxErrors: string | number;
|
@@ -16547,7 +16550,7 @@ declare const VAutocomplete: {
|
|
16547
16550
|
disabled: boolean | null;
|
16548
16551
|
readonly: boolean | null;
|
16549
16552
|
messages: string | readonly string[];
|
16550
|
-
rules: readonly
|
16553
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
16551
16554
|
focused: boolean;
|
16552
16555
|
errorMessages: string | readonly string[] | null;
|
16553
16556
|
maxErrors: string | number;
|
@@ -16592,7 +16595,7 @@ declare const VAutocomplete: {
|
|
16592
16595
|
disabled: boolean | null;
|
16593
16596
|
readonly: boolean | null;
|
16594
16597
|
messages: string | readonly string[];
|
16595
|
-
rules: readonly
|
16598
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
16596
16599
|
focused: boolean;
|
16597
16600
|
errorMessages: string | readonly string[] | null;
|
16598
16601
|
maxErrors: string | number;
|
@@ -16634,7 +16637,7 @@ declare const VAutocomplete: {
|
|
16634
16637
|
disabled: boolean | null;
|
16635
16638
|
readonly: boolean | null;
|
16636
16639
|
messages: string | readonly string[];
|
16637
|
-
rules: readonly
|
16640
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
16638
16641
|
focused: boolean;
|
16639
16642
|
errorMessages: string | readonly string[] | null;
|
16640
16643
|
maxErrors: string | number;
|
@@ -16650,7 +16653,7 @@ declare const VAutocomplete: {
|
|
16650
16653
|
disabled: boolean | null;
|
16651
16654
|
readonly: boolean | null;
|
16652
16655
|
messages: string | readonly string[];
|
16653
|
-
rules: readonly
|
16656
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
16654
16657
|
focused: boolean;
|
16655
16658
|
errorMessages: string | readonly string[] | null;
|
16656
16659
|
maxErrors: string | number;
|
@@ -16949,7 +16952,7 @@ declare const VAutocomplete: {
|
|
16949
16952
|
disabled: boolean;
|
16950
16953
|
readonly: boolean | null;
|
16951
16954
|
messages: string | readonly string[];
|
16952
|
-
rules: readonly
|
16955
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
16953
16956
|
focused: boolean;
|
16954
16957
|
errorMessages: string | readonly string[] | null;
|
16955
16958
|
maxErrors: string | number;
|
@@ -17017,7 +17020,7 @@ declare const VAutocomplete: {
|
|
17017
17020
|
disabled: boolean;
|
17018
17021
|
readonly: boolean | null;
|
17019
17022
|
messages: string | readonly string[];
|
17020
|
-
rules: readonly
|
17023
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
17021
17024
|
focused: boolean;
|
17022
17025
|
errorMessages: string | readonly string[] | null;
|
17023
17026
|
maxErrors: string | number;
|
@@ -17048,7 +17051,7 @@ declare const VAutocomplete: {
|
|
17048
17051
|
disabled: boolean;
|
17049
17052
|
readonly: boolean | null;
|
17050
17053
|
messages: string | readonly string[];
|
17051
|
-
rules: readonly
|
17054
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
17052
17055
|
focused: boolean;
|
17053
17056
|
errorMessages: string | readonly string[] | null;
|
17054
17057
|
maxErrors: string | number;
|
@@ -17171,7 +17174,7 @@ declare const VAutocomplete: {
|
|
17171
17174
|
disabled: boolean | null;
|
17172
17175
|
readonly: boolean | null;
|
17173
17176
|
messages: string | readonly string[];
|
17174
|
-
rules: readonly
|
17177
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
17175
17178
|
focused: boolean;
|
17176
17179
|
errorMessages: string | readonly string[] | null;
|
17177
17180
|
maxErrors: string | number;
|
@@ -17187,7 +17190,7 @@ declare const VAutocomplete: {
|
|
17187
17190
|
disabled: boolean | null;
|
17188
17191
|
readonly: boolean | null;
|
17189
17192
|
messages: string | readonly string[];
|
17190
|
-
rules: readonly
|
17193
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
17191
17194
|
focused: boolean;
|
17192
17195
|
errorMessages: string | readonly string[] | null;
|
17193
17196
|
maxErrors: string | number;
|
@@ -17242,7 +17245,7 @@ declare const VAutocomplete: {
|
|
17242
17245
|
disabled: boolean | null;
|
17243
17246
|
readonly: boolean | null;
|
17244
17247
|
messages: string | readonly string[];
|
17245
|
-
rules: readonly
|
17248
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
17246
17249
|
focused: boolean;
|
17247
17250
|
errorMessages: string | readonly string[] | null;
|
17248
17251
|
maxErrors: string | number;
|
@@ -17287,7 +17290,7 @@ declare const VAutocomplete: {
|
|
17287
17290
|
disabled: boolean | null;
|
17288
17291
|
readonly: boolean | null;
|
17289
17292
|
messages: string | readonly string[];
|
17290
|
-
rules: readonly
|
17293
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
17291
17294
|
focused: boolean;
|
17292
17295
|
errorMessages: string | readonly string[] | null;
|
17293
17296
|
maxErrors: string | number;
|
@@ -17329,7 +17332,7 @@ declare const VAutocomplete: {
|
|
17329
17332
|
disabled: boolean | null;
|
17330
17333
|
readonly: boolean | null;
|
17331
17334
|
messages: string | readonly string[];
|
17332
|
-
rules: readonly
|
17335
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
17333
17336
|
focused: boolean;
|
17334
17337
|
errorMessages: string | readonly string[] | null;
|
17335
17338
|
maxErrors: string | number;
|
@@ -17345,7 +17348,7 @@ declare const VAutocomplete: {
|
|
17345
17348
|
disabled: boolean | null;
|
17346
17349
|
readonly: boolean | null;
|
17347
17350
|
messages: string | readonly string[];
|
17348
|
-
rules: readonly
|
17351
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
17349
17352
|
focused: boolean;
|
17350
17353
|
errorMessages: string | readonly string[] | null;
|
17351
17354
|
maxErrors: string | number;
|
@@ -17637,7 +17640,7 @@ declare const VAutocomplete: {
|
|
17637
17640
|
disabled: boolean | null;
|
17638
17641
|
readonly: boolean | null;
|
17639
17642
|
messages: string | readonly string[];
|
17640
|
-
rules: readonly
|
17643
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
17641
17644
|
focused: boolean;
|
17642
17645
|
errorMessages: string | readonly string[] | null;
|
17643
17646
|
maxErrors: string | number;
|
@@ -17653,7 +17656,7 @@ declare const VAutocomplete: {
|
|
17653
17656
|
disabled: boolean | null;
|
17654
17657
|
readonly: boolean | null;
|
17655
17658
|
messages: string | readonly string[];
|
17656
|
-
rules: readonly
|
17659
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
17657
17660
|
focused: boolean;
|
17658
17661
|
errorMessages: string | readonly string[] | null;
|
17659
17662
|
maxErrors: string | number;
|
@@ -17708,7 +17711,7 @@ declare const VAutocomplete: {
|
|
17708
17711
|
disabled: boolean | null;
|
17709
17712
|
readonly: boolean | null;
|
17710
17713
|
messages: string | readonly string[];
|
17711
|
-
rules: readonly
|
17714
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
17712
17715
|
focused: boolean;
|
17713
17716
|
errorMessages: string | readonly string[] | null;
|
17714
17717
|
maxErrors: string | number;
|
@@ -17753,7 +17756,7 @@ declare const VAutocomplete: {
|
|
17753
17756
|
disabled: boolean | null;
|
17754
17757
|
readonly: boolean | null;
|
17755
17758
|
messages: string | readonly string[];
|
17756
|
-
rules: readonly
|
17759
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
17757
17760
|
focused: boolean;
|
17758
17761
|
errorMessages: string | readonly string[] | null;
|
17759
17762
|
maxErrors: string | number;
|
@@ -17795,7 +17798,7 @@ declare const VAutocomplete: {
|
|
17795
17798
|
disabled: boolean | null;
|
17796
17799
|
readonly: boolean | null;
|
17797
17800
|
messages: string | readonly string[];
|
17798
|
-
rules: readonly
|
17801
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
17799
17802
|
focused: boolean;
|
17800
17803
|
errorMessages: string | readonly string[] | null;
|
17801
17804
|
maxErrors: string | number;
|
@@ -17811,7 +17814,7 @@ declare const VAutocomplete: {
|
|
17811
17814
|
disabled: boolean | null;
|
17812
17815
|
readonly: boolean | null;
|
17813
17816
|
messages: string | readonly string[];
|
17814
|
-
rules: readonly
|
17817
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
17815
17818
|
focused: boolean;
|
17816
17819
|
errorMessages: string | readonly string[] | null;
|
17817
17820
|
maxErrors: string | number;
|
@@ -18127,7 +18130,7 @@ declare const VAutocomplete: {
|
|
18127
18130
|
readonly: boolean | null;
|
18128
18131
|
messages: string | readonly string[];
|
18129
18132
|
noDataText: string;
|
18130
|
-
rules: readonly
|
18133
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
18131
18134
|
filterMode: FilterMode;
|
18132
18135
|
noFilter: boolean;
|
18133
18136
|
filterKeys: FilterKeys;
|
@@ -18277,7 +18280,7 @@ declare const VAutocomplete: {
|
|
18277
18280
|
default: () => never[];
|
18278
18281
|
};
|
18279
18282
|
rules: {
|
18280
|
-
type: PropType<readonly ValidationRule$1[]>;
|
18283
|
+
type: PropType<readonly (ValidationRule$1 | ValidationAlias)[]>;
|
18281
18284
|
default: () => never[];
|
18282
18285
|
};
|
18283
18286
|
counter: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
@@ -18471,7 +18474,7 @@ declare const VAutocomplete: {
|
|
18471
18474
|
default: () => never[];
|
18472
18475
|
};
|
18473
18476
|
rules: {
|
18474
|
-
type: PropType<readonly ValidationRule$1[]>;
|
18477
|
+
type: PropType<readonly (ValidationRule$1 | ValidationAlias)[]>;
|
18475
18478
|
default: () => never[];
|
18476
18479
|
};
|
18477
18480
|
counter: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
@@ -25440,7 +25443,7 @@ declare const VCheckbox: {
|
|
25440
25443
|
readonly: boolean | null;
|
25441
25444
|
indeterminate: boolean;
|
25442
25445
|
messages: string | readonly string[];
|
25443
|
-
rules: readonly
|
25446
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
25444
25447
|
focused: boolean;
|
25445
25448
|
errorMessages: string | readonly string[] | null;
|
25446
25449
|
maxErrors: string | number;
|
@@ -25496,7 +25499,7 @@ declare const VCheckbox: {
|
|
25496
25499
|
readonly: boolean | null;
|
25497
25500
|
indeterminate: boolean;
|
25498
25501
|
messages: string | readonly string[];
|
25499
|
-
rules: readonly
|
25502
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
25500
25503
|
focused: boolean;
|
25501
25504
|
errorMessages: string | readonly string[] | null;
|
25502
25505
|
maxErrors: string | number;
|
@@ -25542,7 +25545,7 @@ declare const VCheckbox: {
|
|
25542
25545
|
readonly: boolean | null;
|
25543
25546
|
indeterminate: boolean;
|
25544
25547
|
messages: string | readonly string[];
|
25545
|
-
rules: readonly
|
25548
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
25546
25549
|
focused: boolean;
|
25547
25550
|
errorMessages: string | readonly string[] | null;
|
25548
25551
|
maxErrors: string | number;
|
@@ -25595,7 +25598,7 @@ declare const VCheckbox: {
|
|
25595
25598
|
readonly: boolean | null;
|
25596
25599
|
indeterminate: boolean;
|
25597
25600
|
messages: string | readonly string[];
|
25598
|
-
rules: readonly
|
25601
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
25599
25602
|
focused: boolean;
|
25600
25603
|
errorMessages: string | readonly string[] | null;
|
25601
25604
|
maxErrors: string | number;
|
@@ -25624,7 +25627,7 @@ declare const VCheckbox: {
|
|
25624
25627
|
readonly: boolean | null;
|
25625
25628
|
indeterminate: boolean;
|
25626
25629
|
messages: string | readonly string[];
|
25627
|
-
rules: readonly
|
25630
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
25628
25631
|
focused: boolean;
|
25629
25632
|
errorMessages: string | readonly string[] | null;
|
25630
25633
|
maxErrors: string | number;
|
@@ -25680,7 +25683,7 @@ declare const VCheckbox: {
|
|
25680
25683
|
readonly: boolean | null;
|
25681
25684
|
indeterminate: boolean;
|
25682
25685
|
messages: string | readonly string[];
|
25683
|
-
rules: readonly
|
25686
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
25684
25687
|
focused: boolean;
|
25685
25688
|
errorMessages: string | readonly string[] | null;
|
25686
25689
|
maxErrors: string | number;
|
@@ -25781,7 +25784,7 @@ declare const VCheckbox: {
|
|
25781
25784
|
default: number;
|
25782
25785
|
};
|
25783
25786
|
rules: {
|
25784
|
-
type: vue.PropType<readonly ValidationRule$1[]>;
|
25787
|
+
type: vue.PropType<readonly (ValidationRule$1 | ValidationAlias)[]>;
|
25785
25788
|
default: () => never[];
|
25786
25789
|
};
|
25787
25790
|
validateOn: vue.PropType<ValidationProps["validateOn"]>;
|
@@ -25880,7 +25883,7 @@ declare const VCheckbox: {
|
|
25880
25883
|
default: number;
|
25881
25884
|
};
|
25882
25885
|
rules: {
|
25883
|
-
type: vue.PropType<readonly ValidationRule$1[]>;
|
25886
|
+
type: vue.PropType<readonly (ValidationRule$1 | ValidationAlias)[]>;
|
25884
25887
|
default: () => never[];
|
25885
25888
|
};
|
25886
25889
|
validateOn: vue.PropType<ValidationProps["validateOn"]>;
|
@@ -27750,7 +27753,7 @@ declare const VCombobox: {
|
|
27750
27753
|
readonly: boolean | null;
|
27751
27754
|
messages: string | readonly string[];
|
27752
27755
|
noDataText: string;
|
27753
|
-
rules: readonly
|
27756
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
27754
27757
|
filterMode: FilterMode;
|
27755
27758
|
noFilter: boolean;
|
27756
27759
|
filterKeys: FilterKeys;
|
@@ -28220,7 +28223,7 @@ declare const VCombobox: {
|
|
28220
28223
|
disabled: boolean;
|
28221
28224
|
readonly: boolean | null;
|
28222
28225
|
messages: string | readonly string[];
|
28223
|
-
rules: readonly
|
28226
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
28224
28227
|
focused: boolean;
|
28225
28228
|
errorMessages: string | readonly string[] | null;
|
28226
28229
|
maxErrors: string | number;
|
@@ -28251,7 +28254,7 @@ declare const VCombobox: {
|
|
28251
28254
|
disabled: boolean;
|
28252
28255
|
readonly: boolean | null;
|
28253
28256
|
messages: string | readonly string[];
|
28254
|
-
rules: readonly
|
28257
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
28255
28258
|
focused: boolean;
|
28256
28259
|
errorMessages: string | readonly string[] | null;
|
28257
28260
|
maxErrors: string | number;
|
@@ -28402,7 +28405,7 @@ declare const VCombobox: {
|
|
28402
28405
|
disabled: boolean;
|
28403
28406
|
readonly: boolean | null;
|
28404
28407
|
messages: string | readonly string[];
|
28405
|
-
rules: readonly
|
28408
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
28406
28409
|
focused: boolean;
|
28407
28410
|
errorMessages: string | readonly string[] | null;
|
28408
28411
|
maxErrors: string | number;
|
@@ -28525,7 +28528,7 @@ declare const VCombobox: {
|
|
28525
28528
|
disabled: boolean | null;
|
28526
28529
|
readonly: boolean | null;
|
28527
28530
|
messages: string | readonly string[];
|
28528
|
-
rules: readonly
|
28531
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
28529
28532
|
focused: boolean;
|
28530
28533
|
errorMessages: string | readonly string[] | null;
|
28531
28534
|
maxErrors: string | number;
|
@@ -28541,7 +28544,7 @@ declare const VCombobox: {
|
|
28541
28544
|
disabled: boolean | null;
|
28542
28545
|
readonly: boolean | null;
|
28543
28546
|
messages: string | readonly string[];
|
28544
|
-
rules: readonly
|
28547
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
28545
28548
|
focused: boolean;
|
28546
28549
|
errorMessages: string | readonly string[] | null;
|
28547
28550
|
maxErrors: string | number;
|
@@ -28596,7 +28599,7 @@ declare const VCombobox: {
|
|
28596
28599
|
disabled: boolean | null;
|
28597
28600
|
readonly: boolean | null;
|
28598
28601
|
messages: string | readonly string[];
|
28599
|
-
rules: readonly
|
28602
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
28600
28603
|
focused: boolean;
|
28601
28604
|
errorMessages: string | readonly string[] | null;
|
28602
28605
|
maxErrors: string | number;
|
@@ -28641,7 +28644,7 @@ declare const VCombobox: {
|
|
28641
28644
|
disabled: boolean | null;
|
28642
28645
|
readonly: boolean | null;
|
28643
28646
|
messages: string | readonly string[];
|
28644
|
-
rules: readonly
|
28647
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
28645
28648
|
focused: boolean;
|
28646
28649
|
errorMessages: string | readonly string[] | null;
|
28647
28650
|
maxErrors: string | number;
|
@@ -28683,7 +28686,7 @@ declare const VCombobox: {
|
|
28683
28686
|
disabled: boolean | null;
|
28684
28687
|
readonly: boolean | null;
|
28685
28688
|
messages: string | readonly string[];
|
28686
|
-
rules: readonly
|
28689
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
28687
28690
|
focused: boolean;
|
28688
28691
|
errorMessages: string | readonly string[] | null;
|
28689
28692
|
maxErrors: string | number;
|
@@ -28699,7 +28702,7 @@ declare const VCombobox: {
|
|
28699
28702
|
disabled: boolean | null;
|
28700
28703
|
readonly: boolean | null;
|
28701
28704
|
messages: string | readonly string[];
|
28702
|
-
rules: readonly
|
28705
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
28703
28706
|
focused: boolean;
|
28704
28707
|
errorMessages: string | readonly string[] | null;
|
28705
28708
|
maxErrors: string | number;
|
@@ -28998,7 +29001,7 @@ declare const VCombobox: {
|
|
28998
29001
|
disabled: boolean;
|
28999
29002
|
readonly: boolean | null;
|
29000
29003
|
messages: string | readonly string[];
|
29001
|
-
rules: readonly
|
29004
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
29002
29005
|
focused: boolean;
|
29003
29006
|
errorMessages: string | readonly string[] | null;
|
29004
29007
|
maxErrors: string | number;
|
@@ -29066,7 +29069,7 @@ declare const VCombobox: {
|
|
29066
29069
|
disabled: boolean;
|
29067
29070
|
readonly: boolean | null;
|
29068
29071
|
messages: string | readonly string[];
|
29069
|
-
rules: readonly
|
29072
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
29070
29073
|
focused: boolean;
|
29071
29074
|
errorMessages: string | readonly string[] | null;
|
29072
29075
|
maxErrors: string | number;
|
@@ -29097,7 +29100,7 @@ declare const VCombobox: {
|
|
29097
29100
|
disabled: boolean;
|
29098
29101
|
readonly: boolean | null;
|
29099
29102
|
messages: string | readonly string[];
|
29100
|
-
rules: readonly
|
29103
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
29101
29104
|
focused: boolean;
|
29102
29105
|
errorMessages: string | readonly string[] | null;
|
29103
29106
|
maxErrors: string | number;
|
@@ -29220,7 +29223,7 @@ declare const VCombobox: {
|
|
29220
29223
|
disabled: boolean | null;
|
29221
29224
|
readonly: boolean | null;
|
29222
29225
|
messages: string | readonly string[];
|
29223
|
-
rules: readonly
|
29226
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
29224
29227
|
focused: boolean;
|
29225
29228
|
errorMessages: string | readonly string[] | null;
|
29226
29229
|
maxErrors: string | number;
|
@@ -29236,7 +29239,7 @@ declare const VCombobox: {
|
|
29236
29239
|
disabled: boolean | null;
|
29237
29240
|
readonly: boolean | null;
|
29238
29241
|
messages: string | readonly string[];
|
29239
|
-
rules: readonly
|
29242
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
29240
29243
|
focused: boolean;
|
29241
29244
|
errorMessages: string | readonly string[] | null;
|
29242
29245
|
maxErrors: string | number;
|
@@ -29291,7 +29294,7 @@ declare const VCombobox: {
|
|
29291
29294
|
disabled: boolean | null;
|
29292
29295
|
readonly: boolean | null;
|
29293
29296
|
messages: string | readonly string[];
|
29294
|
-
rules: readonly
|
29297
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
29295
29298
|
focused: boolean;
|
29296
29299
|
errorMessages: string | readonly string[] | null;
|
29297
29300
|
maxErrors: string | number;
|
@@ -29336,7 +29339,7 @@ declare const VCombobox: {
|
|
29336
29339
|
disabled: boolean | null;
|
29337
29340
|
readonly: boolean | null;
|
29338
29341
|
messages: string | readonly string[];
|
29339
|
-
rules: readonly
|
29342
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
29340
29343
|
focused: boolean;
|
29341
29344
|
errorMessages: string | readonly string[] | null;
|
29342
29345
|
maxErrors: string | number;
|
@@ -29378,7 +29381,7 @@ declare const VCombobox: {
|
|
29378
29381
|
disabled: boolean | null;
|
29379
29382
|
readonly: boolean | null;
|
29380
29383
|
messages: string | readonly string[];
|
29381
|
-
rules: readonly
|
29384
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
29382
29385
|
focused: boolean;
|
29383
29386
|
errorMessages: string | readonly string[] | null;
|
29384
29387
|
maxErrors: string | number;
|
@@ -29394,7 +29397,7 @@ declare const VCombobox: {
|
|
29394
29397
|
disabled: boolean | null;
|
29395
29398
|
readonly: boolean | null;
|
29396
29399
|
messages: string | readonly string[];
|
29397
|
-
rules: readonly
|
29400
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
29398
29401
|
focused: boolean;
|
29399
29402
|
errorMessages: string | readonly string[] | null;
|
29400
29403
|
maxErrors: string | number;
|
@@ -29686,7 +29689,7 @@ declare const VCombobox: {
|
|
29686
29689
|
disabled: boolean | null;
|
29687
29690
|
readonly: boolean | null;
|
29688
29691
|
messages: string | readonly string[];
|
29689
|
-
rules: readonly
|
29692
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
29690
29693
|
focused: boolean;
|
29691
29694
|
errorMessages: string | readonly string[] | null;
|
29692
29695
|
maxErrors: string | number;
|
@@ -29702,7 +29705,7 @@ declare const VCombobox: {
|
|
29702
29705
|
disabled: boolean | null;
|
29703
29706
|
readonly: boolean | null;
|
29704
29707
|
messages: string | readonly string[];
|
29705
|
-
rules: readonly
|
29708
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
29706
29709
|
focused: boolean;
|
29707
29710
|
errorMessages: string | readonly string[] | null;
|
29708
29711
|
maxErrors: string | number;
|
@@ -29757,7 +29760,7 @@ declare const VCombobox: {
|
|
29757
29760
|
disabled: boolean | null;
|
29758
29761
|
readonly: boolean | null;
|
29759
29762
|
messages: string | readonly string[];
|
29760
|
-
rules: readonly
|
29763
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
29761
29764
|
focused: boolean;
|
29762
29765
|
errorMessages: string | readonly string[] | null;
|
29763
29766
|
maxErrors: string | number;
|
@@ -29802,7 +29805,7 @@ declare const VCombobox: {
|
|
29802
29805
|
disabled: boolean | null;
|
29803
29806
|
readonly: boolean | null;
|
29804
29807
|
messages: string | readonly string[];
|
29805
|
-
rules: readonly
|
29808
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
29806
29809
|
focused: boolean;
|
29807
29810
|
errorMessages: string | readonly string[] | null;
|
29808
29811
|
maxErrors: string | number;
|
@@ -29844,7 +29847,7 @@ declare const VCombobox: {
|
|
29844
29847
|
disabled: boolean | null;
|
29845
29848
|
readonly: boolean | null;
|
29846
29849
|
messages: string | readonly string[];
|
29847
|
-
rules: readonly
|
29850
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
29848
29851
|
focused: boolean;
|
29849
29852
|
errorMessages: string | readonly string[] | null;
|
29850
29853
|
maxErrors: string | number;
|
@@ -29860,7 +29863,7 @@ declare const VCombobox: {
|
|
29860
29863
|
disabled: boolean | null;
|
29861
29864
|
readonly: boolean | null;
|
29862
29865
|
messages: string | readonly string[];
|
29863
|
-
rules: readonly
|
29866
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
29864
29867
|
focused: boolean;
|
29865
29868
|
errorMessages: string | readonly string[] | null;
|
29866
29869
|
maxErrors: string | number;
|
@@ -30175,7 +30178,7 @@ declare const VCombobox: {
|
|
30175
30178
|
readonly: boolean | null;
|
30176
30179
|
messages: string | readonly string[];
|
30177
30180
|
noDataText: string;
|
30178
|
-
rules: readonly
|
30181
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
30179
30182
|
filterMode: FilterMode;
|
30180
30183
|
noFilter: boolean;
|
30181
30184
|
filterKeys: FilterKeys;
|
@@ -30264,7 +30267,7 @@ declare const VCombobox: {
|
|
30264
30267
|
readonly: boolean | null;
|
30265
30268
|
messages: string | readonly string[];
|
30266
30269
|
noDataText: string;
|
30267
|
-
rules: readonly
|
30270
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
30268
30271
|
filterMode: FilterMode;
|
30269
30272
|
noFilter: boolean;
|
30270
30273
|
filterKeys: FilterKeys;
|
@@ -30734,7 +30737,7 @@ declare const VCombobox: {
|
|
30734
30737
|
disabled: boolean;
|
30735
30738
|
readonly: boolean | null;
|
30736
30739
|
messages: string | readonly string[];
|
30737
|
-
rules: readonly
|
30740
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
30738
30741
|
focused: boolean;
|
30739
30742
|
errorMessages: string | readonly string[] | null;
|
30740
30743
|
maxErrors: string | number;
|
@@ -30765,7 +30768,7 @@ declare const VCombobox: {
|
|
30765
30768
|
disabled: boolean;
|
30766
30769
|
readonly: boolean | null;
|
30767
30770
|
messages: string | readonly string[];
|
30768
|
-
rules: readonly
|
30771
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
30769
30772
|
focused: boolean;
|
30770
30773
|
errorMessages: string | readonly string[] | null;
|
30771
30774
|
maxErrors: string | number;
|
@@ -30916,7 +30919,7 @@ declare const VCombobox: {
|
|
30916
30919
|
disabled: boolean;
|
30917
30920
|
readonly: boolean | null;
|
30918
30921
|
messages: string | readonly string[];
|
30919
|
-
rules: readonly
|
30922
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
30920
30923
|
focused: boolean;
|
30921
30924
|
errorMessages: string | readonly string[] | null;
|
30922
30925
|
maxErrors: string | number;
|
@@ -31039,7 +31042,7 @@ declare const VCombobox: {
|
|
31039
31042
|
disabled: boolean | null;
|
31040
31043
|
readonly: boolean | null;
|
31041
31044
|
messages: string | readonly string[];
|
31042
|
-
rules: readonly
|
31045
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
31043
31046
|
focused: boolean;
|
31044
31047
|
errorMessages: string | readonly string[] | null;
|
31045
31048
|
maxErrors: string | number;
|
@@ -31055,7 +31058,7 @@ declare const VCombobox: {
|
|
31055
31058
|
disabled: boolean | null;
|
31056
31059
|
readonly: boolean | null;
|
31057
31060
|
messages: string | readonly string[];
|
31058
|
-
rules: readonly
|
31061
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
31059
31062
|
focused: boolean;
|
31060
31063
|
errorMessages: string | readonly string[] | null;
|
31061
31064
|
maxErrors: string | number;
|
@@ -31110,7 +31113,7 @@ declare const VCombobox: {
|
|
31110
31113
|
disabled: boolean | null;
|
31111
31114
|
readonly: boolean | null;
|
31112
31115
|
messages: string | readonly string[];
|
31113
|
-
rules: readonly
|
31116
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
31114
31117
|
focused: boolean;
|
31115
31118
|
errorMessages: string | readonly string[] | null;
|
31116
31119
|
maxErrors: string | number;
|
@@ -31155,7 +31158,7 @@ declare const VCombobox: {
|
|
31155
31158
|
disabled: boolean | null;
|
31156
31159
|
readonly: boolean | null;
|
31157
31160
|
messages: string | readonly string[];
|
31158
|
-
rules: readonly
|
31161
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
31159
31162
|
focused: boolean;
|
31160
31163
|
errorMessages: string | readonly string[] | null;
|
31161
31164
|
maxErrors: string | number;
|
@@ -31197,7 +31200,7 @@ declare const VCombobox: {
|
|
31197
31200
|
disabled: boolean | null;
|
31198
31201
|
readonly: boolean | null;
|
31199
31202
|
messages: string | readonly string[];
|
31200
|
-
rules: readonly
|
31203
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
31201
31204
|
focused: boolean;
|
31202
31205
|
errorMessages: string | readonly string[] | null;
|
31203
31206
|
maxErrors: string | number;
|
@@ -31213,7 +31216,7 @@ declare const VCombobox: {
|
|
31213
31216
|
disabled: boolean | null;
|
31214
31217
|
readonly: boolean | null;
|
31215
31218
|
messages: string | readonly string[];
|
31216
|
-
rules: readonly
|
31219
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
31217
31220
|
focused: boolean;
|
31218
31221
|
errorMessages: string | readonly string[] | null;
|
31219
31222
|
maxErrors: string | number;
|
@@ -31512,7 +31515,7 @@ declare const VCombobox: {
|
|
31512
31515
|
disabled: boolean;
|
31513
31516
|
readonly: boolean | null;
|
31514
31517
|
messages: string | readonly string[];
|
31515
|
-
rules: readonly
|
31518
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
31516
31519
|
focused: boolean;
|
31517
31520
|
errorMessages: string | readonly string[] | null;
|
31518
31521
|
maxErrors: string | number;
|
@@ -31580,7 +31583,7 @@ declare const VCombobox: {
|
|
31580
31583
|
disabled: boolean;
|
31581
31584
|
readonly: boolean | null;
|
31582
31585
|
messages: string | readonly string[];
|
31583
|
-
rules: readonly
|
31586
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
31584
31587
|
focused: boolean;
|
31585
31588
|
errorMessages: string | readonly string[] | null;
|
31586
31589
|
maxErrors: string | number;
|
@@ -31611,7 +31614,7 @@ declare const VCombobox: {
|
|
31611
31614
|
disabled: boolean;
|
31612
31615
|
readonly: boolean | null;
|
31613
31616
|
messages: string | readonly string[];
|
31614
|
-
rules: readonly
|
31617
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
31615
31618
|
focused: boolean;
|
31616
31619
|
errorMessages: string | readonly string[] | null;
|
31617
31620
|
maxErrors: string | number;
|
@@ -31734,7 +31737,7 @@ declare const VCombobox: {
|
|
31734
31737
|
disabled: boolean | null;
|
31735
31738
|
readonly: boolean | null;
|
31736
31739
|
messages: string | readonly string[];
|
31737
|
-
rules: readonly
|
31740
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
31738
31741
|
focused: boolean;
|
31739
31742
|
errorMessages: string | readonly string[] | null;
|
31740
31743
|
maxErrors: string | number;
|
@@ -31750,7 +31753,7 @@ declare const VCombobox: {
|
|
31750
31753
|
disabled: boolean | null;
|
31751
31754
|
readonly: boolean | null;
|
31752
31755
|
messages: string | readonly string[];
|
31753
|
-
rules: readonly
|
31756
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
31754
31757
|
focused: boolean;
|
31755
31758
|
errorMessages: string | readonly string[] | null;
|
31756
31759
|
maxErrors: string | number;
|
@@ -31805,7 +31808,7 @@ declare const VCombobox: {
|
|
31805
31808
|
disabled: boolean | null;
|
31806
31809
|
readonly: boolean | null;
|
31807
31810
|
messages: string | readonly string[];
|
31808
|
-
rules: readonly
|
31811
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
31809
31812
|
focused: boolean;
|
31810
31813
|
errorMessages: string | readonly string[] | null;
|
31811
31814
|
maxErrors: string | number;
|
@@ -31850,7 +31853,7 @@ declare const VCombobox: {
|
|
31850
31853
|
disabled: boolean | null;
|
31851
31854
|
readonly: boolean | null;
|
31852
31855
|
messages: string | readonly string[];
|
31853
|
-
rules: readonly
|
31856
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
31854
31857
|
focused: boolean;
|
31855
31858
|
errorMessages: string | readonly string[] | null;
|
31856
31859
|
maxErrors: string | number;
|
@@ -31892,7 +31895,7 @@ declare const VCombobox: {
|
|
31892
31895
|
disabled: boolean | null;
|
31893
31896
|
readonly: boolean | null;
|
31894
31897
|
messages: string | readonly string[];
|
31895
|
-
rules: readonly
|
31898
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
31896
31899
|
focused: boolean;
|
31897
31900
|
errorMessages: string | readonly string[] | null;
|
31898
31901
|
maxErrors: string | number;
|
@@ -31908,7 +31911,7 @@ declare const VCombobox: {
|
|
31908
31911
|
disabled: boolean | null;
|
31909
31912
|
readonly: boolean | null;
|
31910
31913
|
messages: string | readonly string[];
|
31911
|
-
rules: readonly
|
31914
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
31912
31915
|
focused: boolean;
|
31913
31916
|
errorMessages: string | readonly string[] | null;
|
31914
31917
|
maxErrors: string | number;
|
@@ -32200,7 +32203,7 @@ declare const VCombobox: {
|
|
32200
32203
|
disabled: boolean | null;
|
32201
32204
|
readonly: boolean | null;
|
32202
32205
|
messages: string | readonly string[];
|
32203
|
-
rules: readonly
|
32206
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
32204
32207
|
focused: boolean;
|
32205
32208
|
errorMessages: string | readonly string[] | null;
|
32206
32209
|
maxErrors: string | number;
|
@@ -32216,7 +32219,7 @@ declare const VCombobox: {
|
|
32216
32219
|
disabled: boolean | null;
|
32217
32220
|
readonly: boolean | null;
|
32218
32221
|
messages: string | readonly string[];
|
32219
|
-
rules: readonly
|
32222
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
32220
32223
|
focused: boolean;
|
32221
32224
|
errorMessages: string | readonly string[] | null;
|
32222
32225
|
maxErrors: string | number;
|
@@ -32271,7 +32274,7 @@ declare const VCombobox: {
|
|
32271
32274
|
disabled: boolean | null;
|
32272
32275
|
readonly: boolean | null;
|
32273
32276
|
messages: string | readonly string[];
|
32274
|
-
rules: readonly
|
32277
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
32275
32278
|
focused: boolean;
|
32276
32279
|
errorMessages: string | readonly string[] | null;
|
32277
32280
|
maxErrors: string | number;
|
@@ -32316,7 +32319,7 @@ declare const VCombobox: {
|
|
32316
32319
|
disabled: boolean | null;
|
32317
32320
|
readonly: boolean | null;
|
32318
32321
|
messages: string | readonly string[];
|
32319
|
-
rules: readonly
|
32322
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
32320
32323
|
focused: boolean;
|
32321
32324
|
errorMessages: string | readonly string[] | null;
|
32322
32325
|
maxErrors: string | number;
|
@@ -32358,7 +32361,7 @@ declare const VCombobox: {
|
|
32358
32361
|
disabled: boolean | null;
|
32359
32362
|
readonly: boolean | null;
|
32360
32363
|
messages: string | readonly string[];
|
32361
|
-
rules: readonly
|
32364
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
32362
32365
|
focused: boolean;
|
32363
32366
|
errorMessages: string | readonly string[] | null;
|
32364
32367
|
maxErrors: string | number;
|
@@ -32374,7 +32377,7 @@ declare const VCombobox: {
|
|
32374
32377
|
disabled: boolean | null;
|
32375
32378
|
readonly: boolean | null;
|
32376
32379
|
messages: string | readonly string[];
|
32377
|
-
rules: readonly
|
32380
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
32378
32381
|
focused: boolean;
|
32379
32382
|
errorMessages: string | readonly string[] | null;
|
32380
32383
|
maxErrors: string | number;
|
@@ -32684,7 +32687,7 @@ declare const VCombobox: {
|
|
32684
32687
|
readonly: boolean | null;
|
32685
32688
|
messages: string | readonly string[];
|
32686
32689
|
noDataText: string;
|
32687
|
-
rules: readonly
|
32690
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
32688
32691
|
filterMode: FilterMode;
|
32689
32692
|
noFilter: boolean;
|
32690
32693
|
filterKeys: FilterKeys;
|
@@ -32738,7 +32741,7 @@ declare const VCombobox: {
|
|
32738
32741
|
readonly: boolean | null;
|
32739
32742
|
messages: string | readonly string[];
|
32740
32743
|
noDataText: string;
|
32741
|
-
rules: readonly
|
32744
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
32742
32745
|
filterMode: FilterMode;
|
32743
32746
|
noFilter: boolean;
|
32744
32747
|
filterKeys: FilterKeys;
|
@@ -33208,7 +33211,7 @@ declare const VCombobox: {
|
|
33208
33211
|
disabled: boolean;
|
33209
33212
|
readonly: boolean | null;
|
33210
33213
|
messages: string | readonly string[];
|
33211
|
-
rules: readonly
|
33214
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
33212
33215
|
focused: boolean;
|
33213
33216
|
errorMessages: string | readonly string[] | null;
|
33214
33217
|
maxErrors: string | number;
|
@@ -33239,7 +33242,7 @@ declare const VCombobox: {
|
|
33239
33242
|
disabled: boolean;
|
33240
33243
|
readonly: boolean | null;
|
33241
33244
|
messages: string | readonly string[];
|
33242
|
-
rules: readonly
|
33245
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
33243
33246
|
focused: boolean;
|
33244
33247
|
errorMessages: string | readonly string[] | null;
|
33245
33248
|
maxErrors: string | number;
|
@@ -33390,7 +33393,7 @@ declare const VCombobox: {
|
|
33390
33393
|
disabled: boolean;
|
33391
33394
|
readonly: boolean | null;
|
33392
33395
|
messages: string | readonly string[];
|
33393
|
-
rules: readonly
|
33396
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
33394
33397
|
focused: boolean;
|
33395
33398
|
errorMessages: string | readonly string[] | null;
|
33396
33399
|
maxErrors: string | number;
|
@@ -33513,7 +33516,7 @@ declare const VCombobox: {
|
|
33513
33516
|
disabled: boolean | null;
|
33514
33517
|
readonly: boolean | null;
|
33515
33518
|
messages: string | readonly string[];
|
33516
|
-
rules: readonly
|
33519
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
33517
33520
|
focused: boolean;
|
33518
33521
|
errorMessages: string | readonly string[] | null;
|
33519
33522
|
maxErrors: string | number;
|
@@ -33529,7 +33532,7 @@ declare const VCombobox: {
|
|
33529
33532
|
disabled: boolean | null;
|
33530
33533
|
readonly: boolean | null;
|
33531
33534
|
messages: string | readonly string[];
|
33532
|
-
rules: readonly
|
33535
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
33533
33536
|
focused: boolean;
|
33534
33537
|
errorMessages: string | readonly string[] | null;
|
33535
33538
|
maxErrors: string | number;
|
@@ -33584,7 +33587,7 @@ declare const VCombobox: {
|
|
33584
33587
|
disabled: boolean | null;
|
33585
33588
|
readonly: boolean | null;
|
33586
33589
|
messages: string | readonly string[];
|
33587
|
-
rules: readonly
|
33590
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
33588
33591
|
focused: boolean;
|
33589
33592
|
errorMessages: string | readonly string[] | null;
|
33590
33593
|
maxErrors: string | number;
|
@@ -33629,7 +33632,7 @@ declare const VCombobox: {
|
|
33629
33632
|
disabled: boolean | null;
|
33630
33633
|
readonly: boolean | null;
|
33631
33634
|
messages: string | readonly string[];
|
33632
|
-
rules: readonly
|
33635
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
33633
33636
|
focused: boolean;
|
33634
33637
|
errorMessages: string | readonly string[] | null;
|
33635
33638
|
maxErrors: string | number;
|
@@ -33671,7 +33674,7 @@ declare const VCombobox: {
|
|
33671
33674
|
disabled: boolean | null;
|
33672
33675
|
readonly: boolean | null;
|
33673
33676
|
messages: string | readonly string[];
|
33674
|
-
rules: readonly
|
33677
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
33675
33678
|
focused: boolean;
|
33676
33679
|
errorMessages: string | readonly string[] | null;
|
33677
33680
|
maxErrors: string | number;
|
@@ -33687,7 +33690,7 @@ declare const VCombobox: {
|
|
33687
33690
|
disabled: boolean | null;
|
33688
33691
|
readonly: boolean | null;
|
33689
33692
|
messages: string | readonly string[];
|
33690
|
-
rules: readonly
|
33693
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
33691
33694
|
focused: boolean;
|
33692
33695
|
errorMessages: string | readonly string[] | null;
|
33693
33696
|
maxErrors: string | number;
|
@@ -33986,7 +33989,7 @@ declare const VCombobox: {
|
|
33986
33989
|
disabled: boolean;
|
33987
33990
|
readonly: boolean | null;
|
33988
33991
|
messages: string | readonly string[];
|
33989
|
-
rules: readonly
|
33992
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
33990
33993
|
focused: boolean;
|
33991
33994
|
errorMessages: string | readonly string[] | null;
|
33992
33995
|
maxErrors: string | number;
|
@@ -34054,7 +34057,7 @@ declare const VCombobox: {
|
|
34054
34057
|
disabled: boolean;
|
34055
34058
|
readonly: boolean | null;
|
34056
34059
|
messages: string | readonly string[];
|
34057
|
-
rules: readonly
|
34060
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
34058
34061
|
focused: boolean;
|
34059
34062
|
errorMessages: string | readonly string[] | null;
|
34060
34063
|
maxErrors: string | number;
|
@@ -34085,7 +34088,7 @@ declare const VCombobox: {
|
|
34085
34088
|
disabled: boolean;
|
34086
34089
|
readonly: boolean | null;
|
34087
34090
|
messages: string | readonly string[];
|
34088
|
-
rules: readonly
|
34091
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
34089
34092
|
focused: boolean;
|
34090
34093
|
errorMessages: string | readonly string[] | null;
|
34091
34094
|
maxErrors: string | number;
|
@@ -34208,7 +34211,7 @@ declare const VCombobox: {
|
|
34208
34211
|
disabled: boolean | null;
|
34209
34212
|
readonly: boolean | null;
|
34210
34213
|
messages: string | readonly string[];
|
34211
|
-
rules: readonly
|
34214
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
34212
34215
|
focused: boolean;
|
34213
34216
|
errorMessages: string | readonly string[] | null;
|
34214
34217
|
maxErrors: string | number;
|
@@ -34224,7 +34227,7 @@ declare const VCombobox: {
|
|
34224
34227
|
disabled: boolean | null;
|
34225
34228
|
readonly: boolean | null;
|
34226
34229
|
messages: string | readonly string[];
|
34227
|
-
rules: readonly
|
34230
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
34228
34231
|
focused: boolean;
|
34229
34232
|
errorMessages: string | readonly string[] | null;
|
34230
34233
|
maxErrors: string | number;
|
@@ -34279,7 +34282,7 @@ declare const VCombobox: {
|
|
34279
34282
|
disabled: boolean | null;
|
34280
34283
|
readonly: boolean | null;
|
34281
34284
|
messages: string | readonly string[];
|
34282
|
-
rules: readonly
|
34285
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
34283
34286
|
focused: boolean;
|
34284
34287
|
errorMessages: string | readonly string[] | null;
|
34285
34288
|
maxErrors: string | number;
|
@@ -34324,7 +34327,7 @@ declare const VCombobox: {
|
|
34324
34327
|
disabled: boolean | null;
|
34325
34328
|
readonly: boolean | null;
|
34326
34329
|
messages: string | readonly string[];
|
34327
|
-
rules: readonly
|
34330
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
34328
34331
|
focused: boolean;
|
34329
34332
|
errorMessages: string | readonly string[] | null;
|
34330
34333
|
maxErrors: string | number;
|
@@ -34366,7 +34369,7 @@ declare const VCombobox: {
|
|
34366
34369
|
disabled: boolean | null;
|
34367
34370
|
readonly: boolean | null;
|
34368
34371
|
messages: string | readonly string[];
|
34369
|
-
rules: readonly
|
34372
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
34370
34373
|
focused: boolean;
|
34371
34374
|
errorMessages: string | readonly string[] | null;
|
34372
34375
|
maxErrors: string | number;
|
@@ -34382,7 +34385,7 @@ declare const VCombobox: {
|
|
34382
34385
|
disabled: boolean | null;
|
34383
34386
|
readonly: boolean | null;
|
34384
34387
|
messages: string | readonly string[];
|
34385
|
-
rules: readonly
|
34388
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
34386
34389
|
focused: boolean;
|
34387
34390
|
errorMessages: string | readonly string[] | null;
|
34388
34391
|
maxErrors: string | number;
|
@@ -34674,7 +34677,7 @@ declare const VCombobox: {
|
|
34674
34677
|
disabled: boolean | null;
|
34675
34678
|
readonly: boolean | null;
|
34676
34679
|
messages: string | readonly string[];
|
34677
|
-
rules: readonly
|
34680
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
34678
34681
|
focused: boolean;
|
34679
34682
|
errorMessages: string | readonly string[] | null;
|
34680
34683
|
maxErrors: string | number;
|
@@ -34690,7 +34693,7 @@ declare const VCombobox: {
|
|
34690
34693
|
disabled: boolean | null;
|
34691
34694
|
readonly: boolean | null;
|
34692
34695
|
messages: string | readonly string[];
|
34693
|
-
rules: readonly
|
34696
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
34694
34697
|
focused: boolean;
|
34695
34698
|
errorMessages: string | readonly string[] | null;
|
34696
34699
|
maxErrors: string | number;
|
@@ -34745,7 +34748,7 @@ declare const VCombobox: {
|
|
34745
34748
|
disabled: boolean | null;
|
34746
34749
|
readonly: boolean | null;
|
34747
34750
|
messages: string | readonly string[];
|
34748
|
-
rules: readonly
|
34751
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
34749
34752
|
focused: boolean;
|
34750
34753
|
errorMessages: string | readonly string[] | null;
|
34751
34754
|
maxErrors: string | number;
|
@@ -34790,7 +34793,7 @@ declare const VCombobox: {
|
|
34790
34793
|
disabled: boolean | null;
|
34791
34794
|
readonly: boolean | null;
|
34792
34795
|
messages: string | readonly string[];
|
34793
|
-
rules: readonly
|
34796
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
34794
34797
|
focused: boolean;
|
34795
34798
|
errorMessages: string | readonly string[] | null;
|
34796
34799
|
maxErrors: string | number;
|
@@ -34832,7 +34835,7 @@ declare const VCombobox: {
|
|
34832
34835
|
disabled: boolean | null;
|
34833
34836
|
readonly: boolean | null;
|
34834
34837
|
messages: string | readonly string[];
|
34835
|
-
rules: readonly
|
34838
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
34836
34839
|
focused: boolean;
|
34837
34840
|
errorMessages: string | readonly string[] | null;
|
34838
34841
|
maxErrors: string | number;
|
@@ -34848,7 +34851,7 @@ declare const VCombobox: {
|
|
34848
34851
|
disabled: boolean | null;
|
34849
34852
|
readonly: boolean | null;
|
34850
34853
|
messages: string | readonly string[];
|
34851
|
-
rules: readonly
|
34854
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
34852
34855
|
focused: boolean;
|
34853
34856
|
errorMessages: string | readonly string[] | null;
|
34854
34857
|
maxErrors: string | number;
|
@@ -35163,7 +35166,7 @@ declare const VCombobox: {
|
|
35163
35166
|
readonly: boolean | null;
|
35164
35167
|
messages: string | readonly string[];
|
35165
35168
|
noDataText: string;
|
35166
|
-
rules: readonly
|
35169
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
35167
35170
|
filterMode: FilterMode;
|
35168
35171
|
noFilter: boolean;
|
35169
35172
|
filterKeys: FilterKeys;
|
@@ -35313,7 +35316,7 @@ declare const VCombobox: {
|
|
35313
35316
|
default: () => never[];
|
35314
35317
|
};
|
35315
35318
|
rules: {
|
35316
|
-
type: PropType<readonly ValidationRule$1[]>;
|
35319
|
+
type: PropType<readonly (ValidationRule$1 | ValidationAlias)[]>;
|
35317
35320
|
default: () => never[];
|
35318
35321
|
};
|
35319
35322
|
counter: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
@@ -35516,7 +35519,7 @@ declare const VCombobox: {
|
|
35516
35519
|
default: () => never[];
|
35517
35520
|
};
|
35518
35521
|
rules: {
|
35519
|
-
type: PropType<readonly ValidationRule$1[]>;
|
35522
|
+
type: PropType<readonly (ValidationRule$1 | ValidationAlias)[]>;
|
35520
35523
|
default: () => never[];
|
35521
35524
|
};
|
35522
35525
|
counter: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
@@ -45272,7 +45275,7 @@ declare const VFileInput: {
|
|
45272
45275
|
multiple: boolean;
|
45273
45276
|
readonly: boolean | null;
|
45274
45277
|
messages: string | readonly string[];
|
45275
|
-
rules: readonly
|
45278
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
45276
45279
|
counter: boolean;
|
45277
45280
|
focused: boolean;
|
45278
45281
|
errorMessages: string | readonly string[] | null;
|
@@ -45407,7 +45410,7 @@ declare const VFileInput: {
|
|
45407
45410
|
disabled: boolean | null;
|
45408
45411
|
readonly: boolean | null;
|
45409
45412
|
messages: string | readonly string[];
|
45410
|
-
rules: readonly
|
45413
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
45411
45414
|
focused: boolean;
|
45412
45415
|
errorMessages: string | readonly string[] | null;
|
45413
45416
|
maxErrors: string | number;
|
@@ -45423,7 +45426,7 @@ declare const VFileInput: {
|
|
45423
45426
|
disabled: boolean | null;
|
45424
45427
|
readonly: boolean | null;
|
45425
45428
|
messages: string | readonly string[];
|
45426
|
-
rules: readonly
|
45429
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
45427
45430
|
focused: boolean;
|
45428
45431
|
errorMessages: string | readonly string[] | null;
|
45429
45432
|
maxErrors: string | number;
|
@@ -45478,7 +45481,7 @@ declare const VFileInput: {
|
|
45478
45481
|
disabled: boolean | null;
|
45479
45482
|
readonly: boolean | null;
|
45480
45483
|
messages: string | readonly string[];
|
45481
|
-
rules: readonly
|
45484
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
45482
45485
|
focused: boolean;
|
45483
45486
|
errorMessages: string | readonly string[] | null;
|
45484
45487
|
maxErrors: string | number;
|
@@ -45523,7 +45526,7 @@ declare const VFileInput: {
|
|
45523
45526
|
disabled: boolean | null;
|
45524
45527
|
readonly: boolean | null;
|
45525
45528
|
messages: string | readonly string[];
|
45526
|
-
rules: readonly
|
45529
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
45527
45530
|
focused: boolean;
|
45528
45531
|
errorMessages: string | readonly string[] | null;
|
45529
45532
|
maxErrors: string | number;
|
@@ -45565,7 +45568,7 @@ declare const VFileInput: {
|
|
45565
45568
|
disabled: boolean | null;
|
45566
45569
|
readonly: boolean | null;
|
45567
45570
|
messages: string | readonly string[];
|
45568
|
-
rules: readonly
|
45571
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
45569
45572
|
focused: boolean;
|
45570
45573
|
errorMessages: string | readonly string[] | null;
|
45571
45574
|
maxErrors: string | number;
|
@@ -45581,7 +45584,7 @@ declare const VFileInput: {
|
|
45581
45584
|
disabled: boolean | null;
|
45582
45585
|
readonly: boolean | null;
|
45583
45586
|
messages: string | readonly string[];
|
45584
|
-
rules: readonly
|
45587
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
45585
45588
|
focused: boolean;
|
45586
45589
|
errorMessages: string | readonly string[] | null;
|
45587
45590
|
maxErrors: string | number;
|
@@ -45645,7 +45648,7 @@ declare const VFileInput: {
|
|
45645
45648
|
multiple: boolean;
|
45646
45649
|
readonly: boolean | null;
|
45647
45650
|
messages: string | readonly string[];
|
45648
|
-
rules: readonly
|
45651
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
45649
45652
|
counter: boolean;
|
45650
45653
|
focused: boolean;
|
45651
45654
|
errorMessages: string | readonly string[] | null;
|
@@ -45710,7 +45713,7 @@ declare const VFileInput: {
|
|
45710
45713
|
multiple: boolean;
|
45711
45714
|
readonly: boolean | null;
|
45712
45715
|
messages: string | readonly string[];
|
45713
|
-
rules: readonly
|
45716
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
45714
45717
|
counter: boolean;
|
45715
45718
|
focused: boolean;
|
45716
45719
|
errorMessages: string | readonly string[] | null;
|
@@ -45845,7 +45848,7 @@ declare const VFileInput: {
|
|
45845
45848
|
disabled: boolean | null;
|
45846
45849
|
readonly: boolean | null;
|
45847
45850
|
messages: string | readonly string[];
|
45848
|
-
rules: readonly
|
45851
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
45849
45852
|
focused: boolean;
|
45850
45853
|
errorMessages: string | readonly string[] | null;
|
45851
45854
|
maxErrors: string | number;
|
@@ -45861,7 +45864,7 @@ declare const VFileInput: {
|
|
45861
45864
|
disabled: boolean | null;
|
45862
45865
|
readonly: boolean | null;
|
45863
45866
|
messages: string | readonly string[];
|
45864
|
-
rules: readonly
|
45867
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
45865
45868
|
focused: boolean;
|
45866
45869
|
errorMessages: string | readonly string[] | null;
|
45867
45870
|
maxErrors: string | number;
|
@@ -45916,7 +45919,7 @@ declare const VFileInput: {
|
|
45916
45919
|
disabled: boolean | null;
|
45917
45920
|
readonly: boolean | null;
|
45918
45921
|
messages: string | readonly string[];
|
45919
|
-
rules: readonly
|
45922
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
45920
45923
|
focused: boolean;
|
45921
45924
|
errorMessages: string | readonly string[] | null;
|
45922
45925
|
maxErrors: string | number;
|
@@ -45961,7 +45964,7 @@ declare const VFileInput: {
|
|
45961
45964
|
disabled: boolean | null;
|
45962
45965
|
readonly: boolean | null;
|
45963
45966
|
messages: string | readonly string[];
|
45964
|
-
rules: readonly
|
45967
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
45965
45968
|
focused: boolean;
|
45966
45969
|
errorMessages: string | readonly string[] | null;
|
45967
45970
|
maxErrors: string | number;
|
@@ -46003,7 +46006,7 @@ declare const VFileInput: {
|
|
46003
46006
|
disabled: boolean | null;
|
46004
46007
|
readonly: boolean | null;
|
46005
46008
|
messages: string | readonly string[];
|
46006
|
-
rules: readonly
|
46009
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
46007
46010
|
focused: boolean;
|
46008
46011
|
errorMessages: string | readonly string[] | null;
|
46009
46012
|
maxErrors: string | number;
|
@@ -46019,7 +46022,7 @@ declare const VFileInput: {
|
|
46019
46022
|
disabled: boolean | null;
|
46020
46023
|
readonly: boolean | null;
|
46021
46024
|
messages: string | readonly string[];
|
46022
|
-
rules: readonly
|
46025
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
46023
46026
|
focused: boolean;
|
46024
46027
|
errorMessages: string | readonly string[] | null;
|
46025
46028
|
maxErrors: string | number;
|
@@ -46078,7 +46081,7 @@ declare const VFileInput: {
|
|
46078
46081
|
multiple: boolean;
|
46079
46082
|
readonly: boolean | null;
|
46080
46083
|
messages: string | readonly string[];
|
46081
|
-
rules: readonly
|
46084
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
46082
46085
|
counter: boolean;
|
46083
46086
|
focused: boolean;
|
46084
46087
|
errorMessages: string | readonly string[] | null;
|
@@ -46118,7 +46121,7 @@ declare const VFileInput: {
|
|
46118
46121
|
multiple: boolean;
|
46119
46122
|
readonly: boolean | null;
|
46120
46123
|
messages: string | readonly string[];
|
46121
|
-
rules: readonly
|
46124
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
46122
46125
|
counter: boolean;
|
46123
46126
|
focused: boolean;
|
46124
46127
|
errorMessages: string | readonly string[] | null;
|
@@ -46253,7 +46256,7 @@ declare const VFileInput: {
|
|
46253
46256
|
disabled: boolean | null;
|
46254
46257
|
readonly: boolean | null;
|
46255
46258
|
messages: string | readonly string[];
|
46256
|
-
rules: readonly
|
46259
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
46257
46260
|
focused: boolean;
|
46258
46261
|
errorMessages: string | readonly string[] | null;
|
46259
46262
|
maxErrors: string | number;
|
@@ -46269,7 +46272,7 @@ declare const VFileInput: {
|
|
46269
46272
|
disabled: boolean | null;
|
46270
46273
|
readonly: boolean | null;
|
46271
46274
|
messages: string | readonly string[];
|
46272
|
-
rules: readonly
|
46275
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
46273
46276
|
focused: boolean;
|
46274
46277
|
errorMessages: string | readonly string[] | null;
|
46275
46278
|
maxErrors: string | number;
|
@@ -46324,7 +46327,7 @@ declare const VFileInput: {
|
|
46324
46327
|
disabled: boolean | null;
|
46325
46328
|
readonly: boolean | null;
|
46326
46329
|
messages: string | readonly string[];
|
46327
|
-
rules: readonly
|
46330
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
46328
46331
|
focused: boolean;
|
46329
46332
|
errorMessages: string | readonly string[] | null;
|
46330
46333
|
maxErrors: string | number;
|
@@ -46369,7 +46372,7 @@ declare const VFileInput: {
|
|
46369
46372
|
disabled: boolean | null;
|
46370
46373
|
readonly: boolean | null;
|
46371
46374
|
messages: string | readonly string[];
|
46372
|
-
rules: readonly
|
46375
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
46373
46376
|
focused: boolean;
|
46374
46377
|
errorMessages: string | readonly string[] | null;
|
46375
46378
|
maxErrors: string | number;
|
@@ -46411,7 +46414,7 @@ declare const VFileInput: {
|
|
46411
46414
|
disabled: boolean | null;
|
46412
46415
|
readonly: boolean | null;
|
46413
46416
|
messages: string | readonly string[];
|
46414
|
-
rules: readonly
|
46417
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
46415
46418
|
focused: boolean;
|
46416
46419
|
errorMessages: string | readonly string[] | null;
|
46417
46420
|
maxErrors: string | number;
|
@@ -46427,7 +46430,7 @@ declare const VFileInput: {
|
|
46427
46430
|
disabled: boolean | null;
|
46428
46431
|
readonly: boolean | null;
|
46429
46432
|
messages: string | readonly string[];
|
46430
|
-
rules: readonly
|
46433
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
46431
46434
|
focused: boolean;
|
46432
46435
|
errorMessages: string | readonly string[] | null;
|
46433
46436
|
maxErrors: string | number;
|
@@ -46491,7 +46494,7 @@ declare const VFileInput: {
|
|
46491
46494
|
multiple: boolean;
|
46492
46495
|
readonly: boolean | null;
|
46493
46496
|
messages: string | readonly string[];
|
46494
|
-
rules: readonly
|
46497
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
46495
46498
|
counter: boolean;
|
46496
46499
|
focused: boolean;
|
46497
46500
|
errorMessages: string | readonly string[] | null;
|
@@ -46610,7 +46613,7 @@ declare const VFileInput: {
|
|
46610
46613
|
default: null;
|
46611
46614
|
};
|
46612
46615
|
rules: {
|
46613
|
-
type: PropType<readonly ValidationRule$1[]>;
|
46616
|
+
type: PropType<readonly (ValidationRule$1 | ValidationAlias)[]>;
|
46614
46617
|
default: () => never[];
|
46615
46618
|
};
|
46616
46619
|
validateOn: PropType<ValidationProps["validateOn"]>;
|
@@ -46734,7 +46737,7 @@ declare const VFileInput: {
|
|
46734
46737
|
default: null;
|
46735
46738
|
};
|
46736
46739
|
rules: {
|
46737
|
-
type: PropType<readonly ValidationRule$1[]>;
|
46740
|
+
type: PropType<readonly (ValidationRule$1 | ValidationAlias)[]>;
|
46738
46741
|
default: () => never[];
|
46739
46742
|
};
|
46740
46743
|
validateOn: PropType<ValidationProps["validateOn"]>;
|
@@ -50931,7 +50934,7 @@ declare const VNumberInput: {
|
|
50931
50934
|
readonly: boolean | null;
|
50932
50935
|
step: number;
|
50933
50936
|
messages: string | readonly string[];
|
50934
|
-
rules: readonly
|
50937
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
50935
50938
|
focused: boolean;
|
50936
50939
|
errorMessages: string | readonly string[] | null;
|
50937
50940
|
maxErrors: string | number;
|
@@ -51062,7 +51065,7 @@ declare const VNumberInput: {
|
|
51062
51065
|
disabled: boolean;
|
51063
51066
|
readonly: boolean | null;
|
51064
51067
|
messages: string | readonly string[];
|
51065
|
-
rules: readonly
|
51068
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
51066
51069
|
focused: boolean;
|
51067
51070
|
errorMessages: string | readonly string[] | null;
|
51068
51071
|
maxErrors: string | number;
|
@@ -51093,7 +51096,7 @@ declare const VNumberInput: {
|
|
51093
51096
|
disabled: boolean;
|
51094
51097
|
readonly: boolean | null;
|
51095
51098
|
messages: string | readonly string[];
|
51096
|
-
rules: readonly
|
51099
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
51097
51100
|
focused: boolean;
|
51098
51101
|
errorMessages: string | readonly string[] | null;
|
51099
51102
|
maxErrors: string | number;
|
@@ -51244,7 +51247,7 @@ declare const VNumberInput: {
|
|
51244
51247
|
disabled: boolean;
|
51245
51248
|
readonly: boolean | null;
|
51246
51249
|
messages: string | readonly string[];
|
51247
|
-
rules: readonly
|
51250
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
51248
51251
|
focused: boolean;
|
51249
51252
|
errorMessages: string | readonly string[] | null;
|
51250
51253
|
maxErrors: string | number;
|
@@ -51367,7 +51370,7 @@ declare const VNumberInput: {
|
|
51367
51370
|
disabled: boolean | null;
|
51368
51371
|
readonly: boolean | null;
|
51369
51372
|
messages: string | readonly string[];
|
51370
|
-
rules: readonly
|
51373
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
51371
51374
|
focused: boolean;
|
51372
51375
|
errorMessages: string | readonly string[] | null;
|
51373
51376
|
maxErrors: string | number;
|
@@ -51383,7 +51386,7 @@ declare const VNumberInput: {
|
|
51383
51386
|
disabled: boolean | null;
|
51384
51387
|
readonly: boolean | null;
|
51385
51388
|
messages: string | readonly string[];
|
51386
|
-
rules: readonly
|
51389
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
51387
51390
|
focused: boolean;
|
51388
51391
|
errorMessages: string | readonly string[] | null;
|
51389
51392
|
maxErrors: string | number;
|
@@ -51438,7 +51441,7 @@ declare const VNumberInput: {
|
|
51438
51441
|
disabled: boolean | null;
|
51439
51442
|
readonly: boolean | null;
|
51440
51443
|
messages: string | readonly string[];
|
51441
|
-
rules: readonly
|
51444
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
51442
51445
|
focused: boolean;
|
51443
51446
|
errorMessages: string | readonly string[] | null;
|
51444
51447
|
maxErrors: string | number;
|
@@ -51483,7 +51486,7 @@ declare const VNumberInput: {
|
|
51483
51486
|
disabled: boolean | null;
|
51484
51487
|
readonly: boolean | null;
|
51485
51488
|
messages: string | readonly string[];
|
51486
|
-
rules: readonly
|
51489
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
51487
51490
|
focused: boolean;
|
51488
51491
|
errorMessages: string | readonly string[] | null;
|
51489
51492
|
maxErrors: string | number;
|
@@ -51525,7 +51528,7 @@ declare const VNumberInput: {
|
|
51525
51528
|
disabled: boolean | null;
|
51526
51529
|
readonly: boolean | null;
|
51527
51530
|
messages: string | readonly string[];
|
51528
|
-
rules: readonly
|
51531
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
51529
51532
|
focused: boolean;
|
51530
51533
|
errorMessages: string | readonly string[] | null;
|
51531
51534
|
maxErrors: string | number;
|
@@ -51541,7 +51544,7 @@ declare const VNumberInput: {
|
|
51541
51544
|
disabled: boolean | null;
|
51542
51545
|
readonly: boolean | null;
|
51543
51546
|
messages: string | readonly string[];
|
51544
|
-
rules: readonly
|
51547
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
51545
51548
|
focused: boolean;
|
51546
51549
|
errorMessages: string | readonly string[] | null;
|
51547
51550
|
maxErrors: string | number;
|
@@ -51840,7 +51843,7 @@ declare const VNumberInput: {
|
|
51840
51843
|
disabled: boolean;
|
51841
51844
|
readonly: boolean | null;
|
51842
51845
|
messages: string | readonly string[];
|
51843
|
-
rules: readonly
|
51846
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
51844
51847
|
focused: boolean;
|
51845
51848
|
errorMessages: string | readonly string[] | null;
|
51846
51849
|
maxErrors: string | number;
|
@@ -51908,7 +51911,7 @@ declare const VNumberInput: {
|
|
51908
51911
|
disabled: boolean;
|
51909
51912
|
readonly: boolean | null;
|
51910
51913
|
messages: string | readonly string[];
|
51911
|
-
rules: readonly
|
51914
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
51912
51915
|
focused: boolean;
|
51913
51916
|
errorMessages: string | readonly string[] | null;
|
51914
51917
|
maxErrors: string | number;
|
@@ -51939,7 +51942,7 @@ declare const VNumberInput: {
|
|
51939
51942
|
disabled: boolean;
|
51940
51943
|
readonly: boolean | null;
|
51941
51944
|
messages: string | readonly string[];
|
51942
|
-
rules: readonly
|
51945
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
51943
51946
|
focused: boolean;
|
51944
51947
|
errorMessages: string | readonly string[] | null;
|
51945
51948
|
maxErrors: string | number;
|
@@ -52062,7 +52065,7 @@ declare const VNumberInput: {
|
|
52062
52065
|
disabled: boolean | null;
|
52063
52066
|
readonly: boolean | null;
|
52064
52067
|
messages: string | readonly string[];
|
52065
|
-
rules: readonly
|
52068
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
52066
52069
|
focused: boolean;
|
52067
52070
|
errorMessages: string | readonly string[] | null;
|
52068
52071
|
maxErrors: string | number;
|
@@ -52078,7 +52081,7 @@ declare const VNumberInput: {
|
|
52078
52081
|
disabled: boolean | null;
|
52079
52082
|
readonly: boolean | null;
|
52080
52083
|
messages: string | readonly string[];
|
52081
|
-
rules: readonly
|
52084
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
52082
52085
|
focused: boolean;
|
52083
52086
|
errorMessages: string | readonly string[] | null;
|
52084
52087
|
maxErrors: string | number;
|
@@ -52133,7 +52136,7 @@ declare const VNumberInput: {
|
|
52133
52136
|
disabled: boolean | null;
|
52134
52137
|
readonly: boolean | null;
|
52135
52138
|
messages: string | readonly string[];
|
52136
|
-
rules: readonly
|
52139
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
52137
52140
|
focused: boolean;
|
52138
52141
|
errorMessages: string | readonly string[] | null;
|
52139
52142
|
maxErrors: string | number;
|
@@ -52178,7 +52181,7 @@ declare const VNumberInput: {
|
|
52178
52181
|
disabled: boolean | null;
|
52179
52182
|
readonly: boolean | null;
|
52180
52183
|
messages: string | readonly string[];
|
52181
|
-
rules: readonly
|
52184
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
52182
52185
|
focused: boolean;
|
52183
52186
|
errorMessages: string | readonly string[] | null;
|
52184
52187
|
maxErrors: string | number;
|
@@ -52220,7 +52223,7 @@ declare const VNumberInput: {
|
|
52220
52223
|
disabled: boolean | null;
|
52221
52224
|
readonly: boolean | null;
|
52222
52225
|
messages: string | readonly string[];
|
52223
|
-
rules: readonly
|
52226
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
52224
52227
|
focused: boolean;
|
52225
52228
|
errorMessages: string | readonly string[] | null;
|
52226
52229
|
maxErrors: string | number;
|
@@ -52236,7 +52239,7 @@ declare const VNumberInput: {
|
|
52236
52239
|
disabled: boolean | null;
|
52237
52240
|
readonly: boolean | null;
|
52238
52241
|
messages: string | readonly string[];
|
52239
|
-
rules: readonly
|
52242
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
52240
52243
|
focused: boolean;
|
52241
52244
|
errorMessages: string | readonly string[] | null;
|
52242
52245
|
maxErrors: string | number;
|
@@ -52528,7 +52531,7 @@ declare const VNumberInput: {
|
|
52528
52531
|
disabled: boolean | null;
|
52529
52532
|
readonly: boolean | null;
|
52530
52533
|
messages: string | readonly string[];
|
52531
|
-
rules: readonly
|
52534
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
52532
52535
|
focused: boolean;
|
52533
52536
|
errorMessages: string | readonly string[] | null;
|
52534
52537
|
maxErrors: string | number;
|
@@ -52544,7 +52547,7 @@ declare const VNumberInput: {
|
|
52544
52547
|
disabled: boolean | null;
|
52545
52548
|
readonly: boolean | null;
|
52546
52549
|
messages: string | readonly string[];
|
52547
|
-
rules: readonly
|
52550
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
52548
52551
|
focused: boolean;
|
52549
52552
|
errorMessages: string | readonly string[] | null;
|
52550
52553
|
maxErrors: string | number;
|
@@ -52599,7 +52602,7 @@ declare const VNumberInput: {
|
|
52599
52602
|
disabled: boolean | null;
|
52600
52603
|
readonly: boolean | null;
|
52601
52604
|
messages: string | readonly string[];
|
52602
|
-
rules: readonly
|
52605
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
52603
52606
|
focused: boolean;
|
52604
52607
|
errorMessages: string | readonly string[] | null;
|
52605
52608
|
maxErrors: string | number;
|
@@ -52644,7 +52647,7 @@ declare const VNumberInput: {
|
|
52644
52647
|
disabled: boolean | null;
|
52645
52648
|
readonly: boolean | null;
|
52646
52649
|
messages: string | readonly string[];
|
52647
|
-
rules: readonly
|
52650
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
52648
52651
|
focused: boolean;
|
52649
52652
|
errorMessages: string | readonly string[] | null;
|
52650
52653
|
maxErrors: string | number;
|
@@ -52686,7 +52689,7 @@ declare const VNumberInput: {
|
|
52686
52689
|
disabled: boolean | null;
|
52687
52690
|
readonly: boolean | null;
|
52688
52691
|
messages: string | readonly string[];
|
52689
|
-
rules: readonly
|
52692
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
52690
52693
|
focused: boolean;
|
52691
52694
|
errorMessages: string | readonly string[] | null;
|
52692
52695
|
maxErrors: string | number;
|
@@ -52702,7 +52705,7 @@ declare const VNumberInput: {
|
|
52702
52705
|
disabled: boolean | null;
|
52703
52706
|
readonly: boolean | null;
|
52704
52707
|
messages: string | readonly string[];
|
52705
|
-
rules: readonly
|
52708
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
52706
52709
|
focused: boolean;
|
52707
52710
|
errorMessages: string | readonly string[] | null;
|
52708
52711
|
maxErrors: string | number;
|
@@ -53003,7 +53006,7 @@ declare const VNumberInput: {
|
|
53003
53006
|
readonly: boolean | null;
|
53004
53007
|
step: number;
|
53005
53008
|
messages: string | readonly string[];
|
53006
|
-
rules: readonly
|
53009
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
53007
53010
|
focused: boolean;
|
53008
53011
|
errorMessages: string | readonly string[] | null;
|
53009
53012
|
maxErrors: string | number;
|
@@ -53067,7 +53070,7 @@ declare const VNumberInput: {
|
|
53067
53070
|
readonly: boolean | null;
|
53068
53071
|
step: number;
|
53069
53072
|
messages: string | readonly string[];
|
53070
|
-
rules: readonly
|
53073
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
53071
53074
|
focused: boolean;
|
53072
53075
|
errorMessages: string | readonly string[] | null;
|
53073
53076
|
maxErrors: string | number;
|
@@ -53198,7 +53201,7 @@ declare const VNumberInput: {
|
|
53198
53201
|
disabled: boolean;
|
53199
53202
|
readonly: boolean | null;
|
53200
53203
|
messages: string | readonly string[];
|
53201
|
-
rules: readonly
|
53204
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
53202
53205
|
focused: boolean;
|
53203
53206
|
errorMessages: string | readonly string[] | null;
|
53204
53207
|
maxErrors: string | number;
|
@@ -53229,7 +53232,7 @@ declare const VNumberInput: {
|
|
53229
53232
|
disabled: boolean;
|
53230
53233
|
readonly: boolean | null;
|
53231
53234
|
messages: string | readonly string[];
|
53232
|
-
rules: readonly
|
53235
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
53233
53236
|
focused: boolean;
|
53234
53237
|
errorMessages: string | readonly string[] | null;
|
53235
53238
|
maxErrors: string | number;
|
@@ -53380,7 +53383,7 @@ declare const VNumberInput: {
|
|
53380
53383
|
disabled: boolean;
|
53381
53384
|
readonly: boolean | null;
|
53382
53385
|
messages: string | readonly string[];
|
53383
|
-
rules: readonly
|
53386
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
53384
53387
|
focused: boolean;
|
53385
53388
|
errorMessages: string | readonly string[] | null;
|
53386
53389
|
maxErrors: string | number;
|
@@ -53503,7 +53506,7 @@ declare const VNumberInput: {
|
|
53503
53506
|
disabled: boolean | null;
|
53504
53507
|
readonly: boolean | null;
|
53505
53508
|
messages: string | readonly string[];
|
53506
|
-
rules: readonly
|
53509
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
53507
53510
|
focused: boolean;
|
53508
53511
|
errorMessages: string | readonly string[] | null;
|
53509
53512
|
maxErrors: string | number;
|
@@ -53519,7 +53522,7 @@ declare const VNumberInput: {
|
|
53519
53522
|
disabled: boolean | null;
|
53520
53523
|
readonly: boolean | null;
|
53521
53524
|
messages: string | readonly string[];
|
53522
|
-
rules: readonly
|
53525
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
53523
53526
|
focused: boolean;
|
53524
53527
|
errorMessages: string | readonly string[] | null;
|
53525
53528
|
maxErrors: string | number;
|
@@ -53574,7 +53577,7 @@ declare const VNumberInput: {
|
|
53574
53577
|
disabled: boolean | null;
|
53575
53578
|
readonly: boolean | null;
|
53576
53579
|
messages: string | readonly string[];
|
53577
|
-
rules: readonly
|
53580
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
53578
53581
|
focused: boolean;
|
53579
53582
|
errorMessages: string | readonly string[] | null;
|
53580
53583
|
maxErrors: string | number;
|
@@ -53619,7 +53622,7 @@ declare const VNumberInput: {
|
|
53619
53622
|
disabled: boolean | null;
|
53620
53623
|
readonly: boolean | null;
|
53621
53624
|
messages: string | readonly string[];
|
53622
|
-
rules: readonly
|
53625
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
53623
53626
|
focused: boolean;
|
53624
53627
|
errorMessages: string | readonly string[] | null;
|
53625
53628
|
maxErrors: string | number;
|
@@ -53661,7 +53664,7 @@ declare const VNumberInput: {
|
|
53661
53664
|
disabled: boolean | null;
|
53662
53665
|
readonly: boolean | null;
|
53663
53666
|
messages: string | readonly string[];
|
53664
|
-
rules: readonly
|
53667
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
53665
53668
|
focused: boolean;
|
53666
53669
|
errorMessages: string | readonly string[] | null;
|
53667
53670
|
maxErrors: string | number;
|
@@ -53677,7 +53680,7 @@ declare const VNumberInput: {
|
|
53677
53680
|
disabled: boolean | null;
|
53678
53681
|
readonly: boolean | null;
|
53679
53682
|
messages: string | readonly string[];
|
53680
|
-
rules: readonly
|
53683
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
53681
53684
|
focused: boolean;
|
53682
53685
|
errorMessages: string | readonly string[] | null;
|
53683
53686
|
maxErrors: string | number;
|
@@ -53976,7 +53979,7 @@ declare const VNumberInput: {
|
|
53976
53979
|
disabled: boolean;
|
53977
53980
|
readonly: boolean | null;
|
53978
53981
|
messages: string | readonly string[];
|
53979
|
-
rules: readonly
|
53982
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
53980
53983
|
focused: boolean;
|
53981
53984
|
errorMessages: string | readonly string[] | null;
|
53982
53985
|
maxErrors: string | number;
|
@@ -54044,7 +54047,7 @@ declare const VNumberInput: {
|
|
54044
54047
|
disabled: boolean;
|
54045
54048
|
readonly: boolean | null;
|
54046
54049
|
messages: string | readonly string[];
|
54047
|
-
rules: readonly
|
54050
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
54048
54051
|
focused: boolean;
|
54049
54052
|
errorMessages: string | readonly string[] | null;
|
54050
54053
|
maxErrors: string | number;
|
@@ -54075,7 +54078,7 @@ declare const VNumberInput: {
|
|
54075
54078
|
disabled: boolean;
|
54076
54079
|
readonly: boolean | null;
|
54077
54080
|
messages: string | readonly string[];
|
54078
|
-
rules: readonly
|
54081
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
54079
54082
|
focused: boolean;
|
54080
54083
|
errorMessages: string | readonly string[] | null;
|
54081
54084
|
maxErrors: string | number;
|
@@ -54198,7 +54201,7 @@ declare const VNumberInput: {
|
|
54198
54201
|
disabled: boolean | null;
|
54199
54202
|
readonly: boolean | null;
|
54200
54203
|
messages: string | readonly string[];
|
54201
|
-
rules: readonly
|
54204
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
54202
54205
|
focused: boolean;
|
54203
54206
|
errorMessages: string | readonly string[] | null;
|
54204
54207
|
maxErrors: string | number;
|
@@ -54214,7 +54217,7 @@ declare const VNumberInput: {
|
|
54214
54217
|
disabled: boolean | null;
|
54215
54218
|
readonly: boolean | null;
|
54216
54219
|
messages: string | readonly string[];
|
54217
|
-
rules: readonly
|
54220
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
54218
54221
|
focused: boolean;
|
54219
54222
|
errorMessages: string | readonly string[] | null;
|
54220
54223
|
maxErrors: string | number;
|
@@ -54269,7 +54272,7 @@ declare const VNumberInput: {
|
|
54269
54272
|
disabled: boolean | null;
|
54270
54273
|
readonly: boolean | null;
|
54271
54274
|
messages: string | readonly string[];
|
54272
|
-
rules: readonly
|
54275
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
54273
54276
|
focused: boolean;
|
54274
54277
|
errorMessages: string | readonly string[] | null;
|
54275
54278
|
maxErrors: string | number;
|
@@ -54314,7 +54317,7 @@ declare const VNumberInput: {
|
|
54314
54317
|
disabled: boolean | null;
|
54315
54318
|
readonly: boolean | null;
|
54316
54319
|
messages: string | readonly string[];
|
54317
|
-
rules: readonly
|
54320
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
54318
54321
|
focused: boolean;
|
54319
54322
|
errorMessages: string | readonly string[] | null;
|
54320
54323
|
maxErrors: string | number;
|
@@ -54356,7 +54359,7 @@ declare const VNumberInput: {
|
|
54356
54359
|
disabled: boolean | null;
|
54357
54360
|
readonly: boolean | null;
|
54358
54361
|
messages: string | readonly string[];
|
54359
|
-
rules: readonly
|
54362
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
54360
54363
|
focused: boolean;
|
54361
54364
|
errorMessages: string | readonly string[] | null;
|
54362
54365
|
maxErrors: string | number;
|
@@ -54372,7 +54375,7 @@ declare const VNumberInput: {
|
|
54372
54375
|
disabled: boolean | null;
|
54373
54376
|
readonly: boolean | null;
|
54374
54377
|
messages: string | readonly string[];
|
54375
|
-
rules: readonly
|
54378
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
54376
54379
|
focused: boolean;
|
54377
54380
|
errorMessages: string | readonly string[] | null;
|
54378
54381
|
maxErrors: string | number;
|
@@ -54664,7 +54667,7 @@ declare const VNumberInput: {
|
|
54664
54667
|
disabled: boolean | null;
|
54665
54668
|
readonly: boolean | null;
|
54666
54669
|
messages: string | readonly string[];
|
54667
|
-
rules: readonly
|
54670
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
54668
54671
|
focused: boolean;
|
54669
54672
|
errorMessages: string | readonly string[] | null;
|
54670
54673
|
maxErrors: string | number;
|
@@ -54680,7 +54683,7 @@ declare const VNumberInput: {
|
|
54680
54683
|
disabled: boolean | null;
|
54681
54684
|
readonly: boolean | null;
|
54682
54685
|
messages: string | readonly string[];
|
54683
|
-
rules: readonly
|
54686
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
54684
54687
|
focused: boolean;
|
54685
54688
|
errorMessages: string | readonly string[] | null;
|
54686
54689
|
maxErrors: string | number;
|
@@ -54735,7 +54738,7 @@ declare const VNumberInput: {
|
|
54735
54738
|
disabled: boolean | null;
|
54736
54739
|
readonly: boolean | null;
|
54737
54740
|
messages: string | readonly string[];
|
54738
|
-
rules: readonly
|
54741
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
54739
54742
|
focused: boolean;
|
54740
54743
|
errorMessages: string | readonly string[] | null;
|
54741
54744
|
maxErrors: string | number;
|
@@ -54780,7 +54783,7 @@ declare const VNumberInput: {
|
|
54780
54783
|
disabled: boolean | null;
|
54781
54784
|
readonly: boolean | null;
|
54782
54785
|
messages: string | readonly string[];
|
54783
|
-
rules: readonly
|
54786
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
54784
54787
|
focused: boolean;
|
54785
54788
|
errorMessages: string | readonly string[] | null;
|
54786
54789
|
maxErrors: string | number;
|
@@ -54822,7 +54825,7 @@ declare const VNumberInput: {
|
|
54822
54825
|
disabled: boolean | null;
|
54823
54826
|
readonly: boolean | null;
|
54824
54827
|
messages: string | readonly string[];
|
54825
|
-
rules: readonly
|
54828
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
54826
54829
|
focused: boolean;
|
54827
54830
|
errorMessages: string | readonly string[] | null;
|
54828
54831
|
maxErrors: string | number;
|
@@ -54838,7 +54841,7 @@ declare const VNumberInput: {
|
|
54838
54841
|
disabled: boolean | null;
|
54839
54842
|
readonly: boolean | null;
|
54840
54843
|
messages: string | readonly string[];
|
54841
|
-
rules: readonly
|
54844
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
54842
54845
|
focused: boolean;
|
54843
54846
|
errorMessages: string | readonly string[] | null;
|
54844
54847
|
maxErrors: string | number;
|
@@ -55137,7 +55140,7 @@ declare const VNumberInput: {
|
|
55137
55140
|
readonly: boolean | null;
|
55138
55141
|
step: number;
|
55139
55142
|
messages: string | readonly string[];
|
55140
|
-
rules: readonly
|
55143
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
55141
55144
|
focused: boolean;
|
55142
55145
|
errorMessages: string | readonly string[] | null;
|
55143
55146
|
maxErrors: string | number;
|
@@ -55180,7 +55183,7 @@ declare const VNumberInput: {
|
|
55180
55183
|
readonly: boolean | null;
|
55181
55184
|
step: number;
|
55182
55185
|
messages: string | readonly string[];
|
55183
|
-
rules: readonly
|
55186
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
55184
55187
|
focused: boolean;
|
55185
55188
|
errorMessages: string | readonly string[] | null;
|
55186
55189
|
maxErrors: string | number;
|
@@ -55311,7 +55314,7 @@ declare const VNumberInput: {
|
|
55311
55314
|
disabled: boolean;
|
55312
55315
|
readonly: boolean | null;
|
55313
55316
|
messages: string | readonly string[];
|
55314
|
-
rules: readonly
|
55317
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
55315
55318
|
focused: boolean;
|
55316
55319
|
errorMessages: string | readonly string[] | null;
|
55317
55320
|
maxErrors: string | number;
|
@@ -55342,7 +55345,7 @@ declare const VNumberInput: {
|
|
55342
55345
|
disabled: boolean;
|
55343
55346
|
readonly: boolean | null;
|
55344
55347
|
messages: string | readonly string[];
|
55345
|
-
rules: readonly
|
55348
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
55346
55349
|
focused: boolean;
|
55347
55350
|
errorMessages: string | readonly string[] | null;
|
55348
55351
|
maxErrors: string | number;
|
@@ -55493,7 +55496,7 @@ declare const VNumberInput: {
|
|
55493
55496
|
disabled: boolean;
|
55494
55497
|
readonly: boolean | null;
|
55495
55498
|
messages: string | readonly string[];
|
55496
|
-
rules: readonly
|
55499
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
55497
55500
|
focused: boolean;
|
55498
55501
|
errorMessages: string | readonly string[] | null;
|
55499
55502
|
maxErrors: string | number;
|
@@ -55616,7 +55619,7 @@ declare const VNumberInput: {
|
|
55616
55619
|
disabled: boolean | null;
|
55617
55620
|
readonly: boolean | null;
|
55618
55621
|
messages: string | readonly string[];
|
55619
|
-
rules: readonly
|
55622
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
55620
55623
|
focused: boolean;
|
55621
55624
|
errorMessages: string | readonly string[] | null;
|
55622
55625
|
maxErrors: string | number;
|
@@ -55632,7 +55635,7 @@ declare const VNumberInput: {
|
|
55632
55635
|
disabled: boolean | null;
|
55633
55636
|
readonly: boolean | null;
|
55634
55637
|
messages: string | readonly string[];
|
55635
|
-
rules: readonly
|
55638
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
55636
55639
|
focused: boolean;
|
55637
55640
|
errorMessages: string | readonly string[] | null;
|
55638
55641
|
maxErrors: string | number;
|
@@ -55687,7 +55690,7 @@ declare const VNumberInput: {
|
|
55687
55690
|
disabled: boolean | null;
|
55688
55691
|
readonly: boolean | null;
|
55689
55692
|
messages: string | readonly string[];
|
55690
|
-
rules: readonly
|
55693
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
55691
55694
|
focused: boolean;
|
55692
55695
|
errorMessages: string | readonly string[] | null;
|
55693
55696
|
maxErrors: string | number;
|
@@ -55732,7 +55735,7 @@ declare const VNumberInput: {
|
|
55732
55735
|
disabled: boolean | null;
|
55733
55736
|
readonly: boolean | null;
|
55734
55737
|
messages: string | readonly string[];
|
55735
|
-
rules: readonly
|
55738
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
55736
55739
|
focused: boolean;
|
55737
55740
|
errorMessages: string | readonly string[] | null;
|
55738
55741
|
maxErrors: string | number;
|
@@ -55774,7 +55777,7 @@ declare const VNumberInput: {
|
|
55774
55777
|
disabled: boolean | null;
|
55775
55778
|
readonly: boolean | null;
|
55776
55779
|
messages: string | readonly string[];
|
55777
|
-
rules: readonly
|
55780
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
55778
55781
|
focused: boolean;
|
55779
55782
|
errorMessages: string | readonly string[] | null;
|
55780
55783
|
maxErrors: string | number;
|
@@ -55790,7 +55793,7 @@ declare const VNumberInput: {
|
|
55790
55793
|
disabled: boolean | null;
|
55791
55794
|
readonly: boolean | null;
|
55792
55795
|
messages: string | readonly string[];
|
55793
|
-
rules: readonly
|
55796
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
55794
55797
|
focused: boolean;
|
55795
55798
|
errorMessages: string | readonly string[] | null;
|
55796
55799
|
maxErrors: string | number;
|
@@ -56089,7 +56092,7 @@ declare const VNumberInput: {
|
|
56089
56092
|
disabled: boolean;
|
56090
56093
|
readonly: boolean | null;
|
56091
56094
|
messages: string | readonly string[];
|
56092
|
-
rules: readonly
|
56095
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
56093
56096
|
focused: boolean;
|
56094
56097
|
errorMessages: string | readonly string[] | null;
|
56095
56098
|
maxErrors: string | number;
|
@@ -56157,7 +56160,7 @@ declare const VNumberInput: {
|
|
56157
56160
|
disabled: boolean;
|
56158
56161
|
readonly: boolean | null;
|
56159
56162
|
messages: string | readonly string[];
|
56160
|
-
rules: readonly
|
56163
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
56161
56164
|
focused: boolean;
|
56162
56165
|
errorMessages: string | readonly string[] | null;
|
56163
56166
|
maxErrors: string | number;
|
@@ -56188,7 +56191,7 @@ declare const VNumberInput: {
|
|
56188
56191
|
disabled: boolean;
|
56189
56192
|
readonly: boolean | null;
|
56190
56193
|
messages: string | readonly string[];
|
56191
|
-
rules: readonly
|
56194
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
56192
56195
|
focused: boolean;
|
56193
56196
|
errorMessages: string | readonly string[] | null;
|
56194
56197
|
maxErrors: string | number;
|
@@ -56311,7 +56314,7 @@ declare const VNumberInput: {
|
|
56311
56314
|
disabled: boolean | null;
|
56312
56315
|
readonly: boolean | null;
|
56313
56316
|
messages: string | readonly string[];
|
56314
|
-
rules: readonly
|
56317
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
56315
56318
|
focused: boolean;
|
56316
56319
|
errorMessages: string | readonly string[] | null;
|
56317
56320
|
maxErrors: string | number;
|
@@ -56327,7 +56330,7 @@ declare const VNumberInput: {
|
|
56327
56330
|
disabled: boolean | null;
|
56328
56331
|
readonly: boolean | null;
|
56329
56332
|
messages: string | readonly string[];
|
56330
|
-
rules: readonly
|
56333
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
56331
56334
|
focused: boolean;
|
56332
56335
|
errorMessages: string | readonly string[] | null;
|
56333
56336
|
maxErrors: string | number;
|
@@ -56382,7 +56385,7 @@ declare const VNumberInput: {
|
|
56382
56385
|
disabled: boolean | null;
|
56383
56386
|
readonly: boolean | null;
|
56384
56387
|
messages: string | readonly string[];
|
56385
|
-
rules: readonly
|
56388
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
56386
56389
|
focused: boolean;
|
56387
56390
|
errorMessages: string | readonly string[] | null;
|
56388
56391
|
maxErrors: string | number;
|
@@ -56427,7 +56430,7 @@ declare const VNumberInput: {
|
|
56427
56430
|
disabled: boolean | null;
|
56428
56431
|
readonly: boolean | null;
|
56429
56432
|
messages: string | readonly string[];
|
56430
|
-
rules: readonly
|
56433
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
56431
56434
|
focused: boolean;
|
56432
56435
|
errorMessages: string | readonly string[] | null;
|
56433
56436
|
maxErrors: string | number;
|
@@ -56469,7 +56472,7 @@ declare const VNumberInput: {
|
|
56469
56472
|
disabled: boolean | null;
|
56470
56473
|
readonly: boolean | null;
|
56471
56474
|
messages: string | readonly string[];
|
56472
|
-
rules: readonly
|
56475
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
56473
56476
|
focused: boolean;
|
56474
56477
|
errorMessages: string | readonly string[] | null;
|
56475
56478
|
maxErrors: string | number;
|
@@ -56485,7 +56488,7 @@ declare const VNumberInput: {
|
|
56485
56488
|
disabled: boolean | null;
|
56486
56489
|
readonly: boolean | null;
|
56487
56490
|
messages: string | readonly string[];
|
56488
|
-
rules: readonly
|
56491
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
56489
56492
|
focused: boolean;
|
56490
56493
|
errorMessages: string | readonly string[] | null;
|
56491
56494
|
maxErrors: string | number;
|
@@ -56777,7 +56780,7 @@ declare const VNumberInput: {
|
|
56777
56780
|
disabled: boolean | null;
|
56778
56781
|
readonly: boolean | null;
|
56779
56782
|
messages: string | readonly string[];
|
56780
|
-
rules: readonly
|
56783
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
56781
56784
|
focused: boolean;
|
56782
56785
|
errorMessages: string | readonly string[] | null;
|
56783
56786
|
maxErrors: string | number;
|
@@ -56793,7 +56796,7 @@ declare const VNumberInput: {
|
|
56793
56796
|
disabled: boolean | null;
|
56794
56797
|
readonly: boolean | null;
|
56795
56798
|
messages: string | readonly string[];
|
56796
|
-
rules: readonly
|
56799
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
56797
56800
|
focused: boolean;
|
56798
56801
|
errorMessages: string | readonly string[] | null;
|
56799
56802
|
maxErrors: string | number;
|
@@ -56848,7 +56851,7 @@ declare const VNumberInput: {
|
|
56848
56851
|
disabled: boolean | null;
|
56849
56852
|
readonly: boolean | null;
|
56850
56853
|
messages: string | readonly string[];
|
56851
|
-
rules: readonly
|
56854
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
56852
56855
|
focused: boolean;
|
56853
56856
|
errorMessages: string | readonly string[] | null;
|
56854
56857
|
maxErrors: string | number;
|
@@ -56893,7 +56896,7 @@ declare const VNumberInput: {
|
|
56893
56896
|
disabled: boolean | null;
|
56894
56897
|
readonly: boolean | null;
|
56895
56898
|
messages: string | readonly string[];
|
56896
|
-
rules: readonly
|
56899
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
56897
56900
|
focused: boolean;
|
56898
56901
|
errorMessages: string | readonly string[] | null;
|
56899
56902
|
maxErrors: string | number;
|
@@ -56935,7 +56938,7 @@ declare const VNumberInput: {
|
|
56935
56938
|
disabled: boolean | null;
|
56936
56939
|
readonly: boolean | null;
|
56937
56940
|
messages: string | readonly string[];
|
56938
|
-
rules: readonly
|
56941
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
56939
56942
|
focused: boolean;
|
56940
56943
|
errorMessages: string | readonly string[] | null;
|
56941
56944
|
maxErrors: string | number;
|
@@ -56951,7 +56954,7 @@ declare const VNumberInput: {
|
|
56951
56954
|
disabled: boolean | null;
|
56952
56955
|
readonly: boolean | null;
|
56953
56956
|
messages: string | readonly string[];
|
56954
|
-
rules: readonly
|
56957
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
56955
56958
|
focused: boolean;
|
56956
56959
|
errorMessages: string | readonly string[] | null;
|
56957
56960
|
maxErrors: string | number;
|
@@ -57252,7 +57255,7 @@ declare const VNumberInput: {
|
|
57252
57255
|
readonly: boolean | null;
|
57253
57256
|
step: number;
|
57254
57257
|
messages: string | readonly string[];
|
57255
|
-
rules: readonly
|
57258
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
57256
57259
|
focused: boolean;
|
57257
57260
|
errorMessages: string | readonly string[] | null;
|
57258
57261
|
maxErrors: string | number;
|
@@ -57342,7 +57345,7 @@ declare const VNumberInput: {
|
|
57342
57345
|
default: () => never[];
|
57343
57346
|
};
|
57344
57347
|
rules: {
|
57345
|
-
type: PropType<readonly ValidationRule$1[]>;
|
57348
|
+
type: PropType<readonly (ValidationRule$1 | ValidationAlias)[]>;
|
57346
57349
|
default: () => never[];
|
57347
57350
|
};
|
57348
57351
|
counter: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
@@ -57477,7 +57480,7 @@ declare const VNumberInput: {
|
|
57477
57480
|
default: () => never[];
|
57478
57481
|
};
|
57479
57482
|
rules: {
|
57480
|
-
type: PropType<readonly ValidationRule$1[]>;
|
57483
|
+
type: PropType<readonly (ValidationRule$1 | ValidationAlias)[]>;
|
57481
57484
|
default: () => never[];
|
57482
57485
|
};
|
57483
57486
|
counter: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
@@ -60012,7 +60015,7 @@ declare const VRadioGroup: {
|
|
60012
60015
|
disabled: boolean | null;
|
60013
60016
|
readonly: boolean | null;
|
60014
60017
|
messages: string | readonly string[];
|
60015
|
-
rules: readonly
|
60018
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
60016
60019
|
focused: boolean;
|
60017
60020
|
errorMessages: string | readonly string[] | null;
|
60018
60021
|
maxErrors: string | number;
|
@@ -60061,7 +60064,7 @@ declare const VRadioGroup: {
|
|
60061
60064
|
disabled: boolean | null;
|
60062
60065
|
readonly: boolean | null;
|
60063
60066
|
messages: string | readonly string[];
|
60064
|
-
rules: readonly
|
60067
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
60065
60068
|
focused: boolean;
|
60066
60069
|
errorMessages: string | readonly string[] | null;
|
60067
60070
|
maxErrors: string | number;
|
@@ -60103,7 +60106,7 @@ declare const VRadioGroup: {
|
|
60103
60106
|
disabled: boolean | null;
|
60104
60107
|
readonly: boolean | null;
|
60105
60108
|
messages: string | readonly string[];
|
60106
|
-
rules: readonly
|
60109
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
60107
60110
|
focused: boolean;
|
60108
60111
|
errorMessages: string | readonly string[] | null;
|
60109
60112
|
maxErrors: string | number;
|
@@ -60150,7 +60153,7 @@ declare const VRadioGroup: {
|
|
60150
60153
|
disabled: boolean | null;
|
60151
60154
|
readonly: boolean | null;
|
60152
60155
|
messages: string | readonly string[];
|
60153
|
-
rules: readonly
|
60156
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
60154
60157
|
focused: boolean;
|
60155
60158
|
errorMessages: string | readonly string[] | null;
|
60156
60159
|
maxErrors: string | number;
|
@@ -60179,7 +60182,7 @@ declare const VRadioGroup: {
|
|
60179
60182
|
disabled: boolean | null;
|
60180
60183
|
readonly: boolean | null;
|
60181
60184
|
messages: string | readonly string[];
|
60182
|
-
rules: readonly
|
60185
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
60183
60186
|
focused: boolean;
|
60184
60187
|
errorMessages: string | readonly string[] | null;
|
60185
60188
|
maxErrors: string | number;
|
@@ -60228,7 +60231,7 @@ declare const VRadioGroup: {
|
|
60228
60231
|
disabled: boolean | null;
|
60229
60232
|
readonly: boolean | null;
|
60230
60233
|
messages: string | readonly string[];
|
60231
|
-
rules: readonly
|
60234
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
60232
60235
|
focused: boolean;
|
60233
60236
|
errorMessages: string | readonly string[] | null;
|
60234
60237
|
maxErrors: string | number;
|
@@ -60315,7 +60318,7 @@ declare const VRadioGroup: {
|
|
60315
60318
|
};
|
60316
60319
|
label: StringConstructor;
|
60317
60320
|
rules: {
|
60318
|
-
type: vue.PropType<readonly ValidationRule$1[]>;
|
60321
|
+
type: vue.PropType<readonly (ValidationRule$1 | ValidationAlias)[]>;
|
60319
60322
|
default: () => never[];
|
60320
60323
|
};
|
60321
60324
|
validateOn: vue.PropType<ValidationProps["validateOn"]>;
|
@@ -60410,7 +60413,7 @@ declare const VRadioGroup: {
|
|
60410
60413
|
};
|
60411
60414
|
label: StringConstructor;
|
60412
60415
|
rules: {
|
60413
|
-
type: vue.PropType<readonly ValidationRule$1[]>;
|
60416
|
+
type: vue.PropType<readonly (ValidationRule$1 | ValidationAlias)[]>;
|
60414
60417
|
default: () => never[];
|
60415
60418
|
};
|
60416
60419
|
validateOn: vue.PropType<ValidationProps["validateOn"]>;
|
@@ -60469,7 +60472,7 @@ declare const VRangeSlider: {
|
|
60469
60472
|
step: string | number;
|
60470
60473
|
elevation: string | number;
|
60471
60474
|
messages: string | readonly string[];
|
60472
|
-
rules: readonly
|
60475
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
60473
60476
|
focused: boolean;
|
60474
60477
|
errorMessages: string | readonly string[] | null;
|
60475
60478
|
maxErrors: string | number;
|
@@ -60580,7 +60583,7 @@ declare const VRangeSlider: {
|
|
60580
60583
|
step: string | number;
|
60581
60584
|
elevation: string | number;
|
60582
60585
|
messages: string | readonly string[];
|
60583
|
-
rules: readonly
|
60586
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
60584
60587
|
focused: boolean;
|
60585
60588
|
errorMessages: string | readonly string[] | null;
|
60586
60589
|
maxErrors: string | number;
|
@@ -60632,7 +60635,7 @@ declare const VRangeSlider: {
|
|
60632
60635
|
step: string | number;
|
60633
60636
|
elevation: string | number;
|
60634
60637
|
messages: string | readonly string[];
|
60635
|
-
rules: readonly
|
60638
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
60636
60639
|
focused: boolean;
|
60637
60640
|
errorMessages: string | readonly string[] | null;
|
60638
60641
|
maxErrors: string | number;
|
@@ -60738,7 +60741,7 @@ declare const VRangeSlider: {
|
|
60738
60741
|
step: string | number;
|
60739
60742
|
elevation: string | number;
|
60740
60743
|
messages: string | readonly string[];
|
60741
|
-
rules: readonly
|
60744
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
60742
60745
|
focused: boolean;
|
60743
60746
|
errorMessages: string | readonly string[] | null;
|
60744
60747
|
maxErrors: string | number;
|
@@ -60773,7 +60776,7 @@ declare const VRangeSlider: {
|
|
60773
60776
|
step: string | number;
|
60774
60777
|
elevation: string | number;
|
60775
60778
|
messages: string | readonly string[];
|
60776
|
-
rules: readonly
|
60779
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
60777
60780
|
focused: boolean;
|
60778
60781
|
errorMessages: string | readonly string[] | null;
|
60779
60782
|
maxErrors: string | number;
|
@@ -60884,7 +60887,7 @@ declare const VRangeSlider: {
|
|
60884
60887
|
step: string | number;
|
60885
60888
|
elevation: string | number;
|
60886
60889
|
messages: string | readonly string[];
|
60887
|
-
rules: readonly
|
60890
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
60888
60891
|
focused: boolean;
|
60889
60892
|
errorMessages: string | readonly string[] | null;
|
60890
60893
|
maxErrors: string | number;
|
@@ -61007,7 +61010,7 @@ declare const VRangeSlider: {
|
|
61007
61010
|
name: StringConstructor;
|
61008
61011
|
label: StringConstructor;
|
61009
61012
|
rules: {
|
61010
|
-
type: PropType<readonly ValidationRule$1[]>;
|
61013
|
+
type: PropType<readonly (ValidationRule$1 | ValidationAlias)[]>;
|
61011
61014
|
default: () => never[];
|
61012
61015
|
};
|
61013
61016
|
validateOn: PropType<ValidationProps["validateOn"]>;
|
@@ -61137,7 +61140,7 @@ declare const VRangeSlider: {
|
|
61137
61140
|
name: StringConstructor;
|
61138
61141
|
label: StringConstructor;
|
61139
61142
|
rules: {
|
61140
|
-
type: PropType<readonly ValidationRule$1[]>;
|
61143
|
+
type: PropType<readonly (ValidationRule$1 | ValidationAlias)[]>;
|
61141
61144
|
default: () => never[];
|
61142
61145
|
};
|
61143
61146
|
validateOn: PropType<ValidationProps["validateOn"]>;
|
@@ -61656,7 +61659,7 @@ declare const VSelect: {
|
|
61656
61659
|
readonly: boolean | null;
|
61657
61660
|
messages: string | readonly string[];
|
61658
61661
|
noDataText: string;
|
61659
|
-
rules: readonly
|
61662
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
61660
61663
|
focused: boolean;
|
61661
61664
|
errorMessages: string | readonly string[] | null;
|
61662
61665
|
maxErrors: string | number;
|
@@ -62113,7 +62116,7 @@ declare const VSelect: {
|
|
62113
62116
|
disabled: boolean;
|
62114
62117
|
readonly: boolean | null;
|
62115
62118
|
messages: string | readonly string[];
|
62116
|
-
rules: readonly
|
62119
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
62117
62120
|
focused: boolean;
|
62118
62121
|
errorMessages: string | readonly string[] | null;
|
62119
62122
|
maxErrors: string | number;
|
@@ -62144,7 +62147,7 @@ declare const VSelect: {
|
|
62144
62147
|
disabled: boolean;
|
62145
62148
|
readonly: boolean | null;
|
62146
62149
|
messages: string | readonly string[];
|
62147
|
-
rules: readonly
|
62150
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
62148
62151
|
focused: boolean;
|
62149
62152
|
errorMessages: string | readonly string[] | null;
|
62150
62153
|
maxErrors: string | number;
|
@@ -62295,7 +62298,7 @@ declare const VSelect: {
|
|
62295
62298
|
disabled: boolean;
|
62296
62299
|
readonly: boolean | null;
|
62297
62300
|
messages: string | readonly string[];
|
62298
|
-
rules: readonly
|
62301
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
62299
62302
|
focused: boolean;
|
62300
62303
|
errorMessages: string | readonly string[] | null;
|
62301
62304
|
maxErrors: string | number;
|
@@ -62418,7 +62421,7 @@ declare const VSelect: {
|
|
62418
62421
|
disabled: boolean | null;
|
62419
62422
|
readonly: boolean | null;
|
62420
62423
|
messages: string | readonly string[];
|
62421
|
-
rules: readonly
|
62424
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
62422
62425
|
focused: boolean;
|
62423
62426
|
errorMessages: string | readonly string[] | null;
|
62424
62427
|
maxErrors: string | number;
|
@@ -62434,7 +62437,7 @@ declare const VSelect: {
|
|
62434
62437
|
disabled: boolean | null;
|
62435
62438
|
readonly: boolean | null;
|
62436
62439
|
messages: string | readonly string[];
|
62437
|
-
rules: readonly
|
62440
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
62438
62441
|
focused: boolean;
|
62439
62442
|
errorMessages: string | readonly string[] | null;
|
62440
62443
|
maxErrors: string | number;
|
@@ -62489,7 +62492,7 @@ declare const VSelect: {
|
|
62489
62492
|
disabled: boolean | null;
|
62490
62493
|
readonly: boolean | null;
|
62491
62494
|
messages: string | readonly string[];
|
62492
|
-
rules: readonly
|
62495
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
62493
62496
|
focused: boolean;
|
62494
62497
|
errorMessages: string | readonly string[] | null;
|
62495
62498
|
maxErrors: string | number;
|
@@ -62534,7 +62537,7 @@ declare const VSelect: {
|
|
62534
62537
|
disabled: boolean | null;
|
62535
62538
|
readonly: boolean | null;
|
62536
62539
|
messages: string | readonly string[];
|
62537
|
-
rules: readonly
|
62540
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
62538
62541
|
focused: boolean;
|
62539
62542
|
errorMessages: string | readonly string[] | null;
|
62540
62543
|
maxErrors: string | number;
|
@@ -62576,7 +62579,7 @@ declare const VSelect: {
|
|
62576
62579
|
disabled: boolean | null;
|
62577
62580
|
readonly: boolean | null;
|
62578
62581
|
messages: string | readonly string[];
|
62579
|
-
rules: readonly
|
62582
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
62580
62583
|
focused: boolean;
|
62581
62584
|
errorMessages: string | readonly string[] | null;
|
62582
62585
|
maxErrors: string | number;
|
@@ -62592,7 +62595,7 @@ declare const VSelect: {
|
|
62592
62595
|
disabled: boolean | null;
|
62593
62596
|
readonly: boolean | null;
|
62594
62597
|
messages: string | readonly string[];
|
62595
|
-
rules: readonly
|
62598
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
62596
62599
|
focused: boolean;
|
62597
62600
|
errorMessages: string | readonly string[] | null;
|
62598
62601
|
maxErrors: string | number;
|
@@ -62891,7 +62894,7 @@ declare const VSelect: {
|
|
62891
62894
|
disabled: boolean;
|
62892
62895
|
readonly: boolean | null;
|
62893
62896
|
messages: string | readonly string[];
|
62894
|
-
rules: readonly
|
62897
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
62895
62898
|
focused: boolean;
|
62896
62899
|
errorMessages: string | readonly string[] | null;
|
62897
62900
|
maxErrors: string | number;
|
@@ -62959,7 +62962,7 @@ declare const VSelect: {
|
|
62959
62962
|
disabled: boolean;
|
62960
62963
|
readonly: boolean | null;
|
62961
62964
|
messages: string | readonly string[];
|
62962
|
-
rules: readonly
|
62965
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
62963
62966
|
focused: boolean;
|
62964
62967
|
errorMessages: string | readonly string[] | null;
|
62965
62968
|
maxErrors: string | number;
|
@@ -62990,7 +62993,7 @@ declare const VSelect: {
|
|
62990
62993
|
disabled: boolean;
|
62991
62994
|
readonly: boolean | null;
|
62992
62995
|
messages: string | readonly string[];
|
62993
|
-
rules: readonly
|
62996
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
62994
62997
|
focused: boolean;
|
62995
62998
|
errorMessages: string | readonly string[] | null;
|
62996
62999
|
maxErrors: string | number;
|
@@ -63113,7 +63116,7 @@ declare const VSelect: {
|
|
63113
63116
|
disabled: boolean | null;
|
63114
63117
|
readonly: boolean | null;
|
63115
63118
|
messages: string | readonly string[];
|
63116
|
-
rules: readonly
|
63119
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
63117
63120
|
focused: boolean;
|
63118
63121
|
errorMessages: string | readonly string[] | null;
|
63119
63122
|
maxErrors: string | number;
|
@@ -63129,7 +63132,7 @@ declare const VSelect: {
|
|
63129
63132
|
disabled: boolean | null;
|
63130
63133
|
readonly: boolean | null;
|
63131
63134
|
messages: string | readonly string[];
|
63132
|
-
rules: readonly
|
63135
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
63133
63136
|
focused: boolean;
|
63134
63137
|
errorMessages: string | readonly string[] | null;
|
63135
63138
|
maxErrors: string | number;
|
@@ -63184,7 +63187,7 @@ declare const VSelect: {
|
|
63184
63187
|
disabled: boolean | null;
|
63185
63188
|
readonly: boolean | null;
|
63186
63189
|
messages: string | readonly string[];
|
63187
|
-
rules: readonly
|
63190
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
63188
63191
|
focused: boolean;
|
63189
63192
|
errorMessages: string | readonly string[] | null;
|
63190
63193
|
maxErrors: string | number;
|
@@ -63229,7 +63232,7 @@ declare const VSelect: {
|
|
63229
63232
|
disabled: boolean | null;
|
63230
63233
|
readonly: boolean | null;
|
63231
63234
|
messages: string | readonly string[];
|
63232
|
-
rules: readonly
|
63235
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
63233
63236
|
focused: boolean;
|
63234
63237
|
errorMessages: string | readonly string[] | null;
|
63235
63238
|
maxErrors: string | number;
|
@@ -63271,7 +63274,7 @@ declare const VSelect: {
|
|
63271
63274
|
disabled: boolean | null;
|
63272
63275
|
readonly: boolean | null;
|
63273
63276
|
messages: string | readonly string[];
|
63274
|
-
rules: readonly
|
63277
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
63275
63278
|
focused: boolean;
|
63276
63279
|
errorMessages: string | readonly string[] | null;
|
63277
63280
|
maxErrors: string | number;
|
@@ -63287,7 +63290,7 @@ declare const VSelect: {
|
|
63287
63290
|
disabled: boolean | null;
|
63288
63291
|
readonly: boolean | null;
|
63289
63292
|
messages: string | readonly string[];
|
63290
|
-
rules: readonly
|
63293
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
63291
63294
|
focused: boolean;
|
63292
63295
|
errorMessages: string | readonly string[] | null;
|
63293
63296
|
maxErrors: string | number;
|
@@ -63579,7 +63582,7 @@ declare const VSelect: {
|
|
63579
63582
|
disabled: boolean | null;
|
63580
63583
|
readonly: boolean | null;
|
63581
63584
|
messages: string | readonly string[];
|
63582
|
-
rules: readonly
|
63585
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
63583
63586
|
focused: boolean;
|
63584
63587
|
errorMessages: string | readonly string[] | null;
|
63585
63588
|
maxErrors: string | number;
|
@@ -63595,7 +63598,7 @@ declare const VSelect: {
|
|
63595
63598
|
disabled: boolean | null;
|
63596
63599
|
readonly: boolean | null;
|
63597
63600
|
messages: string | readonly string[];
|
63598
|
-
rules: readonly
|
63601
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
63599
63602
|
focused: boolean;
|
63600
63603
|
errorMessages: string | readonly string[] | null;
|
63601
63604
|
maxErrors: string | number;
|
@@ -63650,7 +63653,7 @@ declare const VSelect: {
|
|
63650
63653
|
disabled: boolean | null;
|
63651
63654
|
readonly: boolean | null;
|
63652
63655
|
messages: string | readonly string[];
|
63653
|
-
rules: readonly
|
63656
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
63654
63657
|
focused: boolean;
|
63655
63658
|
errorMessages: string | readonly string[] | null;
|
63656
63659
|
maxErrors: string | number;
|
@@ -63695,7 +63698,7 @@ declare const VSelect: {
|
|
63695
63698
|
disabled: boolean | null;
|
63696
63699
|
readonly: boolean | null;
|
63697
63700
|
messages: string | readonly string[];
|
63698
|
-
rules: readonly
|
63701
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
63699
63702
|
focused: boolean;
|
63700
63703
|
errorMessages: string | readonly string[] | null;
|
63701
63704
|
maxErrors: string | number;
|
@@ -63737,7 +63740,7 @@ declare const VSelect: {
|
|
63737
63740
|
disabled: boolean | null;
|
63738
63741
|
readonly: boolean | null;
|
63739
63742
|
messages: string | readonly string[];
|
63740
|
-
rules: readonly
|
63743
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
63741
63744
|
focused: boolean;
|
63742
63745
|
errorMessages: string | readonly string[] | null;
|
63743
63746
|
maxErrors: string | number;
|
@@ -63753,7 +63756,7 @@ declare const VSelect: {
|
|
63753
63756
|
disabled: boolean | null;
|
63754
63757
|
readonly: boolean | null;
|
63755
63758
|
messages: string | readonly string[];
|
63756
|
-
rules: readonly
|
63759
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
63757
63760
|
focused: boolean;
|
63758
63761
|
errorMessages: string | readonly string[] | null;
|
63759
63762
|
maxErrors: string | number;
|
@@ -64065,7 +64068,7 @@ declare const VSelect: {
|
|
64065
64068
|
readonly: boolean | null;
|
64066
64069
|
messages: string | readonly string[];
|
64067
64070
|
noDataText: string;
|
64068
|
-
rules: readonly
|
64071
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
64069
64072
|
focused: boolean;
|
64070
64073
|
errorMessages: string | readonly string[] | null;
|
64071
64074
|
maxErrors: string | number;
|
@@ -64152,7 +64155,7 @@ declare const VSelect: {
|
|
64152
64155
|
readonly: boolean | null;
|
64153
64156
|
messages: string | readonly string[];
|
64154
64157
|
noDataText: string;
|
64155
|
-
rules: readonly
|
64158
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
64156
64159
|
focused: boolean;
|
64157
64160
|
errorMessages: string | readonly string[] | null;
|
64158
64161
|
maxErrors: string | number;
|
@@ -64609,7 +64612,7 @@ declare const VSelect: {
|
|
64609
64612
|
disabled: boolean;
|
64610
64613
|
readonly: boolean | null;
|
64611
64614
|
messages: string | readonly string[];
|
64612
|
-
rules: readonly
|
64615
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
64613
64616
|
focused: boolean;
|
64614
64617
|
errorMessages: string | readonly string[] | null;
|
64615
64618
|
maxErrors: string | number;
|
@@ -64640,7 +64643,7 @@ declare const VSelect: {
|
|
64640
64643
|
disabled: boolean;
|
64641
64644
|
readonly: boolean | null;
|
64642
64645
|
messages: string | readonly string[];
|
64643
|
-
rules: readonly
|
64646
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
64644
64647
|
focused: boolean;
|
64645
64648
|
errorMessages: string | readonly string[] | null;
|
64646
64649
|
maxErrors: string | number;
|
@@ -64791,7 +64794,7 @@ declare const VSelect: {
|
|
64791
64794
|
disabled: boolean;
|
64792
64795
|
readonly: boolean | null;
|
64793
64796
|
messages: string | readonly string[];
|
64794
|
-
rules: readonly
|
64797
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
64795
64798
|
focused: boolean;
|
64796
64799
|
errorMessages: string | readonly string[] | null;
|
64797
64800
|
maxErrors: string | number;
|
@@ -64914,7 +64917,7 @@ declare const VSelect: {
|
|
64914
64917
|
disabled: boolean | null;
|
64915
64918
|
readonly: boolean | null;
|
64916
64919
|
messages: string | readonly string[];
|
64917
|
-
rules: readonly
|
64920
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
64918
64921
|
focused: boolean;
|
64919
64922
|
errorMessages: string | readonly string[] | null;
|
64920
64923
|
maxErrors: string | number;
|
@@ -64930,7 +64933,7 @@ declare const VSelect: {
|
|
64930
64933
|
disabled: boolean | null;
|
64931
64934
|
readonly: boolean | null;
|
64932
64935
|
messages: string | readonly string[];
|
64933
|
-
rules: readonly
|
64936
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
64934
64937
|
focused: boolean;
|
64935
64938
|
errorMessages: string | readonly string[] | null;
|
64936
64939
|
maxErrors: string | number;
|
@@ -64985,7 +64988,7 @@ declare const VSelect: {
|
|
64985
64988
|
disabled: boolean | null;
|
64986
64989
|
readonly: boolean | null;
|
64987
64990
|
messages: string | readonly string[];
|
64988
|
-
rules: readonly
|
64991
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
64989
64992
|
focused: boolean;
|
64990
64993
|
errorMessages: string | readonly string[] | null;
|
64991
64994
|
maxErrors: string | number;
|
@@ -65030,7 +65033,7 @@ declare const VSelect: {
|
|
65030
65033
|
disabled: boolean | null;
|
65031
65034
|
readonly: boolean | null;
|
65032
65035
|
messages: string | readonly string[];
|
65033
|
-
rules: readonly
|
65036
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
65034
65037
|
focused: boolean;
|
65035
65038
|
errorMessages: string | readonly string[] | null;
|
65036
65039
|
maxErrors: string | number;
|
@@ -65072,7 +65075,7 @@ declare const VSelect: {
|
|
65072
65075
|
disabled: boolean | null;
|
65073
65076
|
readonly: boolean | null;
|
65074
65077
|
messages: string | readonly string[];
|
65075
|
-
rules: readonly
|
65078
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
65076
65079
|
focused: boolean;
|
65077
65080
|
errorMessages: string | readonly string[] | null;
|
65078
65081
|
maxErrors: string | number;
|
@@ -65088,7 +65091,7 @@ declare const VSelect: {
|
|
65088
65091
|
disabled: boolean | null;
|
65089
65092
|
readonly: boolean | null;
|
65090
65093
|
messages: string | readonly string[];
|
65091
|
-
rules: readonly
|
65094
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
65092
65095
|
focused: boolean;
|
65093
65096
|
errorMessages: string | readonly string[] | null;
|
65094
65097
|
maxErrors: string | number;
|
@@ -65387,7 +65390,7 @@ declare const VSelect: {
|
|
65387
65390
|
disabled: boolean;
|
65388
65391
|
readonly: boolean | null;
|
65389
65392
|
messages: string | readonly string[];
|
65390
|
-
rules: readonly
|
65393
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
65391
65394
|
focused: boolean;
|
65392
65395
|
errorMessages: string | readonly string[] | null;
|
65393
65396
|
maxErrors: string | number;
|
@@ -65455,7 +65458,7 @@ declare const VSelect: {
|
|
65455
65458
|
disabled: boolean;
|
65456
65459
|
readonly: boolean | null;
|
65457
65460
|
messages: string | readonly string[];
|
65458
|
-
rules: readonly
|
65461
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
65459
65462
|
focused: boolean;
|
65460
65463
|
errorMessages: string | readonly string[] | null;
|
65461
65464
|
maxErrors: string | number;
|
@@ -65486,7 +65489,7 @@ declare const VSelect: {
|
|
65486
65489
|
disabled: boolean;
|
65487
65490
|
readonly: boolean | null;
|
65488
65491
|
messages: string | readonly string[];
|
65489
|
-
rules: readonly
|
65492
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
65490
65493
|
focused: boolean;
|
65491
65494
|
errorMessages: string | readonly string[] | null;
|
65492
65495
|
maxErrors: string | number;
|
@@ -65609,7 +65612,7 @@ declare const VSelect: {
|
|
65609
65612
|
disabled: boolean | null;
|
65610
65613
|
readonly: boolean | null;
|
65611
65614
|
messages: string | readonly string[];
|
65612
|
-
rules: readonly
|
65615
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
65613
65616
|
focused: boolean;
|
65614
65617
|
errorMessages: string | readonly string[] | null;
|
65615
65618
|
maxErrors: string | number;
|
@@ -65625,7 +65628,7 @@ declare const VSelect: {
|
|
65625
65628
|
disabled: boolean | null;
|
65626
65629
|
readonly: boolean | null;
|
65627
65630
|
messages: string | readonly string[];
|
65628
|
-
rules: readonly
|
65631
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
65629
65632
|
focused: boolean;
|
65630
65633
|
errorMessages: string | readonly string[] | null;
|
65631
65634
|
maxErrors: string | number;
|
@@ -65680,7 +65683,7 @@ declare const VSelect: {
|
|
65680
65683
|
disabled: boolean | null;
|
65681
65684
|
readonly: boolean | null;
|
65682
65685
|
messages: string | readonly string[];
|
65683
|
-
rules: readonly
|
65686
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
65684
65687
|
focused: boolean;
|
65685
65688
|
errorMessages: string | readonly string[] | null;
|
65686
65689
|
maxErrors: string | number;
|
@@ -65725,7 +65728,7 @@ declare const VSelect: {
|
|
65725
65728
|
disabled: boolean | null;
|
65726
65729
|
readonly: boolean | null;
|
65727
65730
|
messages: string | readonly string[];
|
65728
|
-
rules: readonly
|
65731
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
65729
65732
|
focused: boolean;
|
65730
65733
|
errorMessages: string | readonly string[] | null;
|
65731
65734
|
maxErrors: string | number;
|
@@ -65767,7 +65770,7 @@ declare const VSelect: {
|
|
65767
65770
|
disabled: boolean | null;
|
65768
65771
|
readonly: boolean | null;
|
65769
65772
|
messages: string | readonly string[];
|
65770
|
-
rules: readonly
|
65773
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
65771
65774
|
focused: boolean;
|
65772
65775
|
errorMessages: string | readonly string[] | null;
|
65773
65776
|
maxErrors: string | number;
|
@@ -65783,7 +65786,7 @@ declare const VSelect: {
|
|
65783
65786
|
disabled: boolean | null;
|
65784
65787
|
readonly: boolean | null;
|
65785
65788
|
messages: string | readonly string[];
|
65786
|
-
rules: readonly
|
65789
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
65787
65790
|
focused: boolean;
|
65788
65791
|
errorMessages: string | readonly string[] | null;
|
65789
65792
|
maxErrors: string | number;
|
@@ -66075,7 +66078,7 @@ declare const VSelect: {
|
|
66075
66078
|
disabled: boolean | null;
|
66076
66079
|
readonly: boolean | null;
|
66077
66080
|
messages: string | readonly string[];
|
66078
|
-
rules: readonly
|
66081
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
66079
66082
|
focused: boolean;
|
66080
66083
|
errorMessages: string | readonly string[] | null;
|
66081
66084
|
maxErrors: string | number;
|
@@ -66091,7 +66094,7 @@ declare const VSelect: {
|
|
66091
66094
|
disabled: boolean | null;
|
66092
66095
|
readonly: boolean | null;
|
66093
66096
|
messages: string | readonly string[];
|
66094
|
-
rules: readonly
|
66097
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
66095
66098
|
focused: boolean;
|
66096
66099
|
errorMessages: string | readonly string[] | null;
|
66097
66100
|
maxErrors: string | number;
|
@@ -66146,7 +66149,7 @@ declare const VSelect: {
|
|
66146
66149
|
disabled: boolean | null;
|
66147
66150
|
readonly: boolean | null;
|
66148
66151
|
messages: string | readonly string[];
|
66149
|
-
rules: readonly
|
66152
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
66150
66153
|
focused: boolean;
|
66151
66154
|
errorMessages: string | readonly string[] | null;
|
66152
66155
|
maxErrors: string | number;
|
@@ -66191,7 +66194,7 @@ declare const VSelect: {
|
|
66191
66194
|
disabled: boolean | null;
|
66192
66195
|
readonly: boolean | null;
|
66193
66196
|
messages: string | readonly string[];
|
66194
|
-
rules: readonly
|
66197
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
66195
66198
|
focused: boolean;
|
66196
66199
|
errorMessages: string | readonly string[] | null;
|
66197
66200
|
maxErrors: string | number;
|
@@ -66233,7 +66236,7 @@ declare const VSelect: {
|
|
66233
66236
|
disabled: boolean | null;
|
66234
66237
|
readonly: boolean | null;
|
66235
66238
|
messages: string | readonly string[];
|
66236
|
-
rules: readonly
|
66239
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
66237
66240
|
focused: boolean;
|
66238
66241
|
errorMessages: string | readonly string[] | null;
|
66239
66242
|
maxErrors: string | number;
|
@@ -66249,7 +66252,7 @@ declare const VSelect: {
|
|
66249
66252
|
disabled: boolean | null;
|
66250
66253
|
readonly: boolean | null;
|
66251
66254
|
messages: string | readonly string[];
|
66252
|
-
rules: readonly
|
66255
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
66253
66256
|
focused: boolean;
|
66254
66257
|
errorMessages: string | readonly string[] | null;
|
66255
66258
|
maxErrors: string | number;
|
@@ -66557,7 +66560,7 @@ declare const VSelect: {
|
|
66557
66560
|
readonly: boolean | null;
|
66558
66561
|
messages: string | readonly string[];
|
66559
66562
|
noDataText: string;
|
66560
|
-
rules: readonly
|
66563
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
66561
66564
|
focused: boolean;
|
66562
66565
|
errorMessages: string | readonly string[] | null;
|
66563
66566
|
maxErrors: string | number;
|
@@ -66609,7 +66612,7 @@ declare const VSelect: {
|
|
66609
66612
|
readonly: boolean | null;
|
66610
66613
|
messages: string | readonly string[];
|
66611
66614
|
noDataText: string;
|
66612
|
-
rules: readonly
|
66615
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
66613
66616
|
focused: boolean;
|
66614
66617
|
errorMessages: string | readonly string[] | null;
|
66615
66618
|
maxErrors: string | number;
|
@@ -67066,7 +67069,7 @@ declare const VSelect: {
|
|
67066
67069
|
disabled: boolean;
|
67067
67070
|
readonly: boolean | null;
|
67068
67071
|
messages: string | readonly string[];
|
67069
|
-
rules: readonly
|
67072
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
67070
67073
|
focused: boolean;
|
67071
67074
|
errorMessages: string | readonly string[] | null;
|
67072
67075
|
maxErrors: string | number;
|
@@ -67097,7 +67100,7 @@ declare const VSelect: {
|
|
67097
67100
|
disabled: boolean;
|
67098
67101
|
readonly: boolean | null;
|
67099
67102
|
messages: string | readonly string[];
|
67100
|
-
rules: readonly
|
67103
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
67101
67104
|
focused: boolean;
|
67102
67105
|
errorMessages: string | readonly string[] | null;
|
67103
67106
|
maxErrors: string | number;
|
@@ -67248,7 +67251,7 @@ declare const VSelect: {
|
|
67248
67251
|
disabled: boolean;
|
67249
67252
|
readonly: boolean | null;
|
67250
67253
|
messages: string | readonly string[];
|
67251
|
-
rules: readonly
|
67254
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
67252
67255
|
focused: boolean;
|
67253
67256
|
errorMessages: string | readonly string[] | null;
|
67254
67257
|
maxErrors: string | number;
|
@@ -67371,7 +67374,7 @@ declare const VSelect: {
|
|
67371
67374
|
disabled: boolean | null;
|
67372
67375
|
readonly: boolean | null;
|
67373
67376
|
messages: string | readonly string[];
|
67374
|
-
rules: readonly
|
67377
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
67375
67378
|
focused: boolean;
|
67376
67379
|
errorMessages: string | readonly string[] | null;
|
67377
67380
|
maxErrors: string | number;
|
@@ -67387,7 +67390,7 @@ declare const VSelect: {
|
|
67387
67390
|
disabled: boolean | null;
|
67388
67391
|
readonly: boolean | null;
|
67389
67392
|
messages: string | readonly string[];
|
67390
|
-
rules: readonly
|
67393
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
67391
67394
|
focused: boolean;
|
67392
67395
|
errorMessages: string | readonly string[] | null;
|
67393
67396
|
maxErrors: string | number;
|
@@ -67442,7 +67445,7 @@ declare const VSelect: {
|
|
67442
67445
|
disabled: boolean | null;
|
67443
67446
|
readonly: boolean | null;
|
67444
67447
|
messages: string | readonly string[];
|
67445
|
-
rules: readonly
|
67448
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
67446
67449
|
focused: boolean;
|
67447
67450
|
errorMessages: string | readonly string[] | null;
|
67448
67451
|
maxErrors: string | number;
|
@@ -67487,7 +67490,7 @@ declare const VSelect: {
|
|
67487
67490
|
disabled: boolean | null;
|
67488
67491
|
readonly: boolean | null;
|
67489
67492
|
messages: string | readonly string[];
|
67490
|
-
rules: readonly
|
67493
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
67491
67494
|
focused: boolean;
|
67492
67495
|
errorMessages: string | readonly string[] | null;
|
67493
67496
|
maxErrors: string | number;
|
@@ -67529,7 +67532,7 @@ declare const VSelect: {
|
|
67529
67532
|
disabled: boolean | null;
|
67530
67533
|
readonly: boolean | null;
|
67531
67534
|
messages: string | readonly string[];
|
67532
|
-
rules: readonly
|
67535
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
67533
67536
|
focused: boolean;
|
67534
67537
|
errorMessages: string | readonly string[] | null;
|
67535
67538
|
maxErrors: string | number;
|
@@ -67545,7 +67548,7 @@ declare const VSelect: {
|
|
67545
67548
|
disabled: boolean | null;
|
67546
67549
|
readonly: boolean | null;
|
67547
67550
|
messages: string | readonly string[];
|
67548
|
-
rules: readonly
|
67551
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
67549
67552
|
focused: boolean;
|
67550
67553
|
errorMessages: string | readonly string[] | null;
|
67551
67554
|
maxErrors: string | number;
|
@@ -67844,7 +67847,7 @@ declare const VSelect: {
|
|
67844
67847
|
disabled: boolean;
|
67845
67848
|
readonly: boolean | null;
|
67846
67849
|
messages: string | readonly string[];
|
67847
|
-
rules: readonly
|
67850
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
67848
67851
|
focused: boolean;
|
67849
67852
|
errorMessages: string | readonly string[] | null;
|
67850
67853
|
maxErrors: string | number;
|
@@ -67912,7 +67915,7 @@ declare const VSelect: {
|
|
67912
67915
|
disabled: boolean;
|
67913
67916
|
readonly: boolean | null;
|
67914
67917
|
messages: string | readonly string[];
|
67915
|
-
rules: readonly
|
67918
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
67916
67919
|
focused: boolean;
|
67917
67920
|
errorMessages: string | readonly string[] | null;
|
67918
67921
|
maxErrors: string | number;
|
@@ -67943,7 +67946,7 @@ declare const VSelect: {
|
|
67943
67946
|
disabled: boolean;
|
67944
67947
|
readonly: boolean | null;
|
67945
67948
|
messages: string | readonly string[];
|
67946
|
-
rules: readonly
|
67949
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
67947
67950
|
focused: boolean;
|
67948
67951
|
errorMessages: string | readonly string[] | null;
|
67949
67952
|
maxErrors: string | number;
|
@@ -68066,7 +68069,7 @@ declare const VSelect: {
|
|
68066
68069
|
disabled: boolean | null;
|
68067
68070
|
readonly: boolean | null;
|
68068
68071
|
messages: string | readonly string[];
|
68069
|
-
rules: readonly
|
68072
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
68070
68073
|
focused: boolean;
|
68071
68074
|
errorMessages: string | readonly string[] | null;
|
68072
68075
|
maxErrors: string | number;
|
@@ -68082,7 +68085,7 @@ declare const VSelect: {
|
|
68082
68085
|
disabled: boolean | null;
|
68083
68086
|
readonly: boolean | null;
|
68084
68087
|
messages: string | readonly string[];
|
68085
|
-
rules: readonly
|
68088
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
68086
68089
|
focused: boolean;
|
68087
68090
|
errorMessages: string | readonly string[] | null;
|
68088
68091
|
maxErrors: string | number;
|
@@ -68137,7 +68140,7 @@ declare const VSelect: {
|
|
68137
68140
|
disabled: boolean | null;
|
68138
68141
|
readonly: boolean | null;
|
68139
68142
|
messages: string | readonly string[];
|
68140
|
-
rules: readonly
|
68143
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
68141
68144
|
focused: boolean;
|
68142
68145
|
errorMessages: string | readonly string[] | null;
|
68143
68146
|
maxErrors: string | number;
|
@@ -68182,7 +68185,7 @@ declare const VSelect: {
|
|
68182
68185
|
disabled: boolean | null;
|
68183
68186
|
readonly: boolean | null;
|
68184
68187
|
messages: string | readonly string[];
|
68185
|
-
rules: readonly
|
68188
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
68186
68189
|
focused: boolean;
|
68187
68190
|
errorMessages: string | readonly string[] | null;
|
68188
68191
|
maxErrors: string | number;
|
@@ -68224,7 +68227,7 @@ declare const VSelect: {
|
|
68224
68227
|
disabled: boolean | null;
|
68225
68228
|
readonly: boolean | null;
|
68226
68229
|
messages: string | readonly string[];
|
68227
|
-
rules: readonly
|
68230
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
68228
68231
|
focused: boolean;
|
68229
68232
|
errorMessages: string | readonly string[] | null;
|
68230
68233
|
maxErrors: string | number;
|
@@ -68240,7 +68243,7 @@ declare const VSelect: {
|
|
68240
68243
|
disabled: boolean | null;
|
68241
68244
|
readonly: boolean | null;
|
68242
68245
|
messages: string | readonly string[];
|
68243
|
-
rules: readonly
|
68246
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
68244
68247
|
focused: boolean;
|
68245
68248
|
errorMessages: string | readonly string[] | null;
|
68246
68249
|
maxErrors: string | number;
|
@@ -68532,7 +68535,7 @@ declare const VSelect: {
|
|
68532
68535
|
disabled: boolean | null;
|
68533
68536
|
readonly: boolean | null;
|
68534
68537
|
messages: string | readonly string[];
|
68535
|
-
rules: readonly
|
68538
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
68536
68539
|
focused: boolean;
|
68537
68540
|
errorMessages: string | readonly string[] | null;
|
68538
68541
|
maxErrors: string | number;
|
@@ -68548,7 +68551,7 @@ declare const VSelect: {
|
|
68548
68551
|
disabled: boolean | null;
|
68549
68552
|
readonly: boolean | null;
|
68550
68553
|
messages: string | readonly string[];
|
68551
|
-
rules: readonly
|
68554
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
68552
68555
|
focused: boolean;
|
68553
68556
|
errorMessages: string | readonly string[] | null;
|
68554
68557
|
maxErrors: string | number;
|
@@ -68603,7 +68606,7 @@ declare const VSelect: {
|
|
68603
68606
|
disabled: boolean | null;
|
68604
68607
|
readonly: boolean | null;
|
68605
68608
|
messages: string | readonly string[];
|
68606
|
-
rules: readonly
|
68609
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
68607
68610
|
focused: boolean;
|
68608
68611
|
errorMessages: string | readonly string[] | null;
|
68609
68612
|
maxErrors: string | number;
|
@@ -68648,7 +68651,7 @@ declare const VSelect: {
|
|
68648
68651
|
disabled: boolean | null;
|
68649
68652
|
readonly: boolean | null;
|
68650
68653
|
messages: string | readonly string[];
|
68651
|
-
rules: readonly
|
68654
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
68652
68655
|
focused: boolean;
|
68653
68656
|
errorMessages: string | readonly string[] | null;
|
68654
68657
|
maxErrors: string | number;
|
@@ -68690,7 +68693,7 @@ declare const VSelect: {
|
|
68690
68693
|
disabled: boolean | null;
|
68691
68694
|
readonly: boolean | null;
|
68692
68695
|
messages: string | readonly string[];
|
68693
|
-
rules: readonly
|
68696
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
68694
68697
|
focused: boolean;
|
68695
68698
|
errorMessages: string | readonly string[] | null;
|
68696
68699
|
maxErrors: string | number;
|
@@ -68706,7 +68709,7 @@ declare const VSelect: {
|
|
68706
68709
|
disabled: boolean | null;
|
68707
68710
|
readonly: boolean | null;
|
68708
68711
|
messages: string | readonly string[];
|
68709
|
-
rules: readonly
|
68712
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
68710
68713
|
focused: boolean;
|
68711
68714
|
errorMessages: string | readonly string[] | null;
|
68712
68715
|
maxErrors: string | number;
|
@@ -69018,7 +69021,7 @@ declare const VSelect: {
|
|
69018
69021
|
readonly: boolean | null;
|
69019
69022
|
messages: string | readonly string[];
|
69020
69023
|
noDataText: string;
|
69021
|
-
rules: readonly
|
69024
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
69022
69025
|
focused: boolean;
|
69023
69026
|
errorMessages: string | readonly string[] | null;
|
69024
69027
|
maxErrors: string | number;
|
@@ -69168,7 +69171,7 @@ declare const VSelect: {
|
|
69168
69171
|
default: () => never[];
|
69169
69172
|
};
|
69170
69173
|
rules: {
|
69171
|
-
type: PropType<readonly ValidationRule$1[]>;
|
69174
|
+
type: PropType<readonly (ValidationRule$1 | ValidationAlias)[]>;
|
69172
69175
|
default: () => never[];
|
69173
69176
|
};
|
69174
69177
|
counter: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
@@ -69350,7 +69353,7 @@ declare const VSelect: {
|
|
69350
69353
|
default: () => never[];
|
69351
69354
|
};
|
69352
69355
|
rules: {
|
69353
|
-
type: PropType<readonly ValidationRule$1[]>;
|
69356
|
+
type: PropType<readonly (ValidationRule$1 | ValidationAlias)[]>;
|
69354
69357
|
default: () => never[];
|
69355
69358
|
};
|
69356
69359
|
counter: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
@@ -70278,7 +70281,7 @@ declare const VSlider: {
|
|
70278
70281
|
step: string | number;
|
70279
70282
|
elevation: string | number;
|
70280
70283
|
messages: string | readonly string[];
|
70281
|
-
rules: readonly
|
70284
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
70282
70285
|
focused: boolean;
|
70283
70286
|
errorMessages: string | readonly string[] | null;
|
70284
70287
|
maxErrors: string | number;
|
@@ -70388,7 +70391,7 @@ declare const VSlider: {
|
|
70388
70391
|
step: string | number;
|
70389
70392
|
elevation: string | number;
|
70390
70393
|
messages: string | readonly string[];
|
70391
|
-
rules: readonly
|
70394
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
70392
70395
|
focused: boolean;
|
70393
70396
|
errorMessages: string | readonly string[] | null;
|
70394
70397
|
maxErrors: string | number;
|
@@ -70439,7 +70442,7 @@ declare const VSlider: {
|
|
70439
70442
|
step: string | number;
|
70440
70443
|
elevation: string | number;
|
70441
70444
|
messages: string | readonly string[];
|
70442
|
-
rules: readonly
|
70445
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
70443
70446
|
focused: boolean;
|
70444
70447
|
errorMessages: string | readonly string[] | null;
|
70445
70448
|
maxErrors: string | number;
|
@@ -70544,7 +70547,7 @@ declare const VSlider: {
|
|
70544
70547
|
step: string | number;
|
70545
70548
|
elevation: string | number;
|
70546
70549
|
messages: string | readonly string[];
|
70547
|
-
rules: readonly
|
70550
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
70548
70551
|
focused: boolean;
|
70549
70552
|
errorMessages: string | readonly string[] | null;
|
70550
70553
|
maxErrors: string | number;
|
@@ -70578,7 +70581,7 @@ declare const VSlider: {
|
|
70578
70581
|
step: string | number;
|
70579
70582
|
elevation: string | number;
|
70580
70583
|
messages: string | readonly string[];
|
70581
|
-
rules: readonly
|
70584
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
70582
70585
|
focused: boolean;
|
70583
70586
|
errorMessages: string | readonly string[] | null;
|
70584
70587
|
maxErrors: string | number;
|
@@ -70688,7 +70691,7 @@ declare const VSlider: {
|
|
70688
70691
|
step: string | number;
|
70689
70692
|
elevation: string | number;
|
70690
70693
|
messages: string | readonly string[];
|
70691
|
-
rules: readonly
|
70694
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
70692
70695
|
focused: boolean;
|
70693
70696
|
errorMessages: string | readonly string[] | null;
|
70694
70697
|
maxErrors: string | number;
|
@@ -70747,7 +70750,7 @@ declare const VSlider: {
|
|
70747
70750
|
default: null;
|
70748
70751
|
};
|
70749
70752
|
rules: {
|
70750
|
-
type: vue.PropType<readonly ValidationRule$1[]>;
|
70753
|
+
type: vue.PropType<readonly (ValidationRule$1 | ValidationAlias)[]>;
|
70751
70754
|
default: () => never[];
|
70752
70755
|
};
|
70753
70756
|
validateOn: vue.PropType<ValidationProps["validateOn"]>;
|
@@ -70876,7 +70879,7 @@ declare const VSlider: {
|
|
70876
70879
|
default: null;
|
70877
70880
|
};
|
70878
70881
|
rules: {
|
70879
|
-
type: vue.PropType<readonly ValidationRule$1[]>;
|
70882
|
+
type: vue.PropType<readonly (ValidationRule$1 | ValidationAlias)[]>;
|
70880
70883
|
default: () => never[];
|
70881
70884
|
};
|
70882
70885
|
validateOn: vue.PropType<ValidationProps["validateOn"]>;
|
@@ -74118,7 +74121,7 @@ declare const VSwitch: {
|
|
74118
74121
|
readonly: boolean | null;
|
74119
74122
|
indeterminate: boolean;
|
74120
74123
|
messages: string | readonly string[];
|
74121
|
-
rules: readonly
|
74124
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
74122
74125
|
focused: boolean;
|
74123
74126
|
errorMessages: string | readonly string[] | null;
|
74124
74127
|
maxErrors: string | number;
|
@@ -74179,7 +74182,7 @@ declare const VSwitch: {
|
|
74179
74182
|
readonly: boolean | null;
|
74180
74183
|
indeterminate: boolean;
|
74181
74184
|
messages: string | readonly string[];
|
74182
|
-
rules: readonly
|
74185
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
74183
74186
|
focused: boolean;
|
74184
74187
|
errorMessages: string | readonly string[] | null;
|
74185
74188
|
maxErrors: string | number;
|
@@ -74232,7 +74235,7 @@ declare const VSwitch: {
|
|
74232
74235
|
readonly: boolean | null;
|
74233
74236
|
indeterminate: boolean;
|
74234
74237
|
messages: string | readonly string[];
|
74235
|
-
rules: readonly
|
74238
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
74236
74239
|
focused: boolean;
|
74237
74240
|
errorMessages: string | readonly string[] | null;
|
74238
74241
|
maxErrors: string | number;
|
@@ -74289,7 +74292,7 @@ declare const VSwitch: {
|
|
74289
74292
|
readonly: boolean | null;
|
74290
74293
|
indeterminate: boolean;
|
74291
74294
|
messages: string | readonly string[];
|
74292
|
-
rules: readonly
|
74295
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
74293
74296
|
focused: boolean;
|
74294
74297
|
errorMessages: string | readonly string[] | null;
|
74295
74298
|
maxErrors: string | number;
|
@@ -74319,7 +74322,7 @@ declare const VSwitch: {
|
|
74319
74322
|
readonly: boolean | null;
|
74320
74323
|
indeterminate: boolean;
|
74321
74324
|
messages: string | readonly string[];
|
74322
|
-
rules: readonly
|
74325
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
74323
74326
|
focused: boolean;
|
74324
74327
|
errorMessages: string | readonly string[] | null;
|
74325
74328
|
maxErrors: string | number;
|
@@ -74380,7 +74383,7 @@ declare const VSwitch: {
|
|
74380
74383
|
readonly: boolean | null;
|
74381
74384
|
indeterminate: boolean;
|
74382
74385
|
messages: string | readonly string[];
|
74383
|
-
rules: readonly
|
74386
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
74384
74387
|
focused: boolean;
|
74385
74388
|
errorMessages: string | readonly string[] | null;
|
74386
74389
|
maxErrors: string | number;
|
@@ -74474,7 +74477,7 @@ declare const VSwitch: {
|
|
74474
74477
|
default: number;
|
74475
74478
|
};
|
74476
74479
|
rules: {
|
74477
|
-
type: vue.PropType<readonly ValidationRule$1[]>;
|
74480
|
+
type: vue.PropType<readonly (ValidationRule$1 | ValidationAlias)[]>;
|
74478
74481
|
default: () => never[];
|
74479
74482
|
};
|
74480
74483
|
validateOn: vue.PropType<ValidationProps["validateOn"]>;
|
@@ -74570,7 +74573,7 @@ declare const VSwitch: {
|
|
74570
74573
|
default: number;
|
74571
74574
|
};
|
74572
74575
|
rules: {
|
74573
|
-
type: vue.PropType<readonly ValidationRule$1[]>;
|
74576
|
+
type: vue.PropType<readonly (ValidationRule$1 | ValidationAlias)[]>;
|
74574
74577
|
default: () => never[];
|
74575
74578
|
};
|
74576
74579
|
validateOn: vue.PropType<ValidationProps["validateOn"]>;
|
@@ -77049,7 +77052,7 @@ declare const VTextarea: {
|
|
77049
77052
|
disabled: boolean;
|
77050
77053
|
readonly: boolean | null;
|
77051
77054
|
messages: string | readonly string[];
|
77052
|
-
rules: readonly
|
77055
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
77053
77056
|
focused: boolean;
|
77054
77057
|
errorMessages: string | readonly string[] | null;
|
77055
77058
|
maxErrors: string | number;
|
@@ -77172,7 +77175,7 @@ declare const VTextarea: {
|
|
77172
77175
|
disabled: boolean | null;
|
77173
77176
|
readonly: boolean | null;
|
77174
77177
|
messages: string | readonly string[];
|
77175
|
-
rules: readonly
|
77178
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
77176
77179
|
focused: boolean;
|
77177
77180
|
errorMessages: string | readonly string[] | null;
|
77178
77181
|
maxErrors: string | number;
|
@@ -77188,7 +77191,7 @@ declare const VTextarea: {
|
|
77188
77191
|
disabled: boolean | null;
|
77189
77192
|
readonly: boolean | null;
|
77190
77193
|
messages: string | readonly string[];
|
77191
|
-
rules: readonly
|
77194
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
77192
77195
|
focused: boolean;
|
77193
77196
|
errorMessages: string | readonly string[] | null;
|
77194
77197
|
maxErrors: string | number;
|
@@ -77243,7 +77246,7 @@ declare const VTextarea: {
|
|
77243
77246
|
disabled: boolean | null;
|
77244
77247
|
readonly: boolean | null;
|
77245
77248
|
messages: string | readonly string[];
|
77246
|
-
rules: readonly
|
77249
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
77247
77250
|
focused: boolean;
|
77248
77251
|
errorMessages: string | readonly string[] | null;
|
77249
77252
|
maxErrors: string | number;
|
@@ -77288,7 +77291,7 @@ declare const VTextarea: {
|
|
77288
77291
|
disabled: boolean | null;
|
77289
77292
|
readonly: boolean | null;
|
77290
77293
|
messages: string | readonly string[];
|
77291
|
-
rules: readonly
|
77294
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
77292
77295
|
focused: boolean;
|
77293
77296
|
errorMessages: string | readonly string[] | null;
|
77294
77297
|
maxErrors: string | number;
|
@@ -77330,7 +77333,7 @@ declare const VTextarea: {
|
|
77330
77333
|
disabled: boolean | null;
|
77331
77334
|
readonly: boolean | null;
|
77332
77335
|
messages: string | readonly string[];
|
77333
|
-
rules: readonly
|
77336
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
77334
77337
|
focused: boolean;
|
77335
77338
|
errorMessages: string | readonly string[] | null;
|
77336
77339
|
maxErrors: string | number;
|
@@ -77346,7 +77349,7 @@ declare const VTextarea: {
|
|
77346
77349
|
disabled: boolean | null;
|
77347
77350
|
readonly: boolean | null;
|
77348
77351
|
messages: string | readonly string[];
|
77349
|
-
rules: readonly
|
77352
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
77350
77353
|
focused: boolean;
|
77351
77354
|
errorMessages: string | readonly string[] | null;
|
77352
77355
|
maxErrors: string | number;
|
@@ -77410,7 +77413,7 @@ declare const VTextarea: {
|
|
77410
77413
|
disabled: boolean;
|
77411
77414
|
readonly: boolean | null;
|
77412
77415
|
messages: string | readonly string[];
|
77413
|
-
rules: readonly
|
77416
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
77414
77417
|
focused: boolean;
|
77415
77418
|
errorMessages: string | readonly string[] | null;
|
77416
77419
|
maxErrors: string | number;
|
@@ -77466,7 +77469,7 @@ declare const VTextarea: {
|
|
77466
77469
|
disabled: boolean;
|
77467
77470
|
readonly: boolean | null;
|
77468
77471
|
messages: string | readonly string[];
|
77469
|
-
rules: readonly
|
77472
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
77470
77473
|
focused: boolean;
|
77471
77474
|
errorMessages: string | readonly string[] | null;
|
77472
77475
|
maxErrors: string | number;
|
@@ -77589,7 +77592,7 @@ declare const VTextarea: {
|
|
77589
77592
|
disabled: boolean | null;
|
77590
77593
|
readonly: boolean | null;
|
77591
77594
|
messages: string | readonly string[];
|
77592
|
-
rules: readonly
|
77595
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
77593
77596
|
focused: boolean;
|
77594
77597
|
errorMessages: string | readonly string[] | null;
|
77595
77598
|
maxErrors: string | number;
|
@@ -77605,7 +77608,7 @@ declare const VTextarea: {
|
|
77605
77608
|
disabled: boolean | null;
|
77606
77609
|
readonly: boolean | null;
|
77607
77610
|
messages: string | readonly string[];
|
77608
|
-
rules: readonly
|
77611
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
77609
77612
|
focused: boolean;
|
77610
77613
|
errorMessages: string | readonly string[] | null;
|
77611
77614
|
maxErrors: string | number;
|
@@ -77660,7 +77663,7 @@ declare const VTextarea: {
|
|
77660
77663
|
disabled: boolean | null;
|
77661
77664
|
readonly: boolean | null;
|
77662
77665
|
messages: string | readonly string[];
|
77663
|
-
rules: readonly
|
77666
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
77664
77667
|
focused: boolean;
|
77665
77668
|
errorMessages: string | readonly string[] | null;
|
77666
77669
|
maxErrors: string | number;
|
@@ -77705,7 +77708,7 @@ declare const VTextarea: {
|
|
77705
77708
|
disabled: boolean | null;
|
77706
77709
|
readonly: boolean | null;
|
77707
77710
|
messages: string | readonly string[];
|
77708
|
-
rules: readonly
|
77711
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
77709
77712
|
focused: boolean;
|
77710
77713
|
errorMessages: string | readonly string[] | null;
|
77711
77714
|
maxErrors: string | number;
|
@@ -77747,7 +77750,7 @@ declare const VTextarea: {
|
|
77747
77750
|
disabled: boolean | null;
|
77748
77751
|
readonly: boolean | null;
|
77749
77752
|
messages: string | readonly string[];
|
77750
|
-
rules: readonly
|
77753
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
77751
77754
|
focused: boolean;
|
77752
77755
|
errorMessages: string | readonly string[] | null;
|
77753
77756
|
maxErrors: string | number;
|
@@ -77763,7 +77766,7 @@ declare const VTextarea: {
|
|
77763
77766
|
disabled: boolean | null;
|
77764
77767
|
readonly: boolean | null;
|
77765
77768
|
messages: string | readonly string[];
|
77766
|
-
rules: readonly
|
77769
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
77767
77770
|
focused: boolean;
|
77768
77771
|
errorMessages: string | readonly string[] | null;
|
77769
77772
|
maxErrors: string | number;
|
@@ -77822,7 +77825,7 @@ declare const VTextarea: {
|
|
77822
77825
|
disabled: boolean;
|
77823
77826
|
readonly: boolean | null;
|
77824
77827
|
messages: string | readonly string[];
|
77825
|
-
rules: readonly
|
77828
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
77826
77829
|
focused: boolean;
|
77827
77830
|
errorMessages: string | readonly string[] | null;
|
77828
77831
|
maxErrors: string | number;
|
@@ -77859,7 +77862,7 @@ declare const VTextarea: {
|
|
77859
77862
|
disabled: boolean;
|
77860
77863
|
readonly: boolean | null;
|
77861
77864
|
messages: string | readonly string[];
|
77862
|
-
rules: readonly
|
77865
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
77863
77866
|
focused: boolean;
|
77864
77867
|
errorMessages: string | readonly string[] | null;
|
77865
77868
|
maxErrors: string | number;
|
@@ -77982,7 +77985,7 @@ declare const VTextarea: {
|
|
77982
77985
|
disabled: boolean | null;
|
77983
77986
|
readonly: boolean | null;
|
77984
77987
|
messages: string | readonly string[];
|
77985
|
-
rules: readonly
|
77988
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
77986
77989
|
focused: boolean;
|
77987
77990
|
errorMessages: string | readonly string[] | null;
|
77988
77991
|
maxErrors: string | number;
|
@@ -77998,7 +78001,7 @@ declare const VTextarea: {
|
|
77998
78001
|
disabled: boolean | null;
|
77999
78002
|
readonly: boolean | null;
|
78000
78003
|
messages: string | readonly string[];
|
78001
|
-
rules: readonly
|
78004
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
78002
78005
|
focused: boolean;
|
78003
78006
|
errorMessages: string | readonly string[] | null;
|
78004
78007
|
maxErrors: string | number;
|
@@ -78053,7 +78056,7 @@ declare const VTextarea: {
|
|
78053
78056
|
disabled: boolean | null;
|
78054
78057
|
readonly: boolean | null;
|
78055
78058
|
messages: string | readonly string[];
|
78056
|
-
rules: readonly
|
78059
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
78057
78060
|
focused: boolean;
|
78058
78061
|
errorMessages: string | readonly string[] | null;
|
78059
78062
|
maxErrors: string | number;
|
@@ -78098,7 +78101,7 @@ declare const VTextarea: {
|
|
78098
78101
|
disabled: boolean | null;
|
78099
78102
|
readonly: boolean | null;
|
78100
78103
|
messages: string | readonly string[];
|
78101
|
-
rules: readonly
|
78104
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
78102
78105
|
focused: boolean;
|
78103
78106
|
errorMessages: string | readonly string[] | null;
|
78104
78107
|
maxErrors: string | number;
|
@@ -78140,7 +78143,7 @@ declare const VTextarea: {
|
|
78140
78143
|
disabled: boolean | null;
|
78141
78144
|
readonly: boolean | null;
|
78142
78145
|
messages: string | readonly string[];
|
78143
|
-
rules: readonly
|
78146
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
78144
78147
|
focused: boolean;
|
78145
78148
|
errorMessages: string | readonly string[] | null;
|
78146
78149
|
maxErrors: string | number;
|
@@ -78156,7 +78159,7 @@ declare const VTextarea: {
|
|
78156
78159
|
disabled: boolean | null;
|
78157
78160
|
readonly: boolean | null;
|
78158
78161
|
messages: string | readonly string[];
|
78159
|
-
rules: readonly
|
78162
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
78160
78163
|
focused: boolean;
|
78161
78164
|
errorMessages: string | readonly string[] | null;
|
78162
78165
|
maxErrors: string | number;
|
@@ -78220,7 +78223,7 @@ declare const VTextarea: {
|
|
78220
78223
|
disabled: boolean;
|
78221
78224
|
readonly: boolean | null;
|
78222
78225
|
messages: string | readonly string[];
|
78223
|
-
rules: readonly
|
78226
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
78224
78227
|
focused: boolean;
|
78225
78228
|
errorMessages: string | readonly string[] | null;
|
78226
78229
|
maxErrors: string | number;
|
@@ -78322,7 +78325,7 @@ declare const VTextarea: {
|
|
78322
78325
|
default: null;
|
78323
78326
|
};
|
78324
78327
|
rules: {
|
78325
|
-
type: PropType<readonly ValidationRule$1[]>;
|
78328
|
+
type: PropType<readonly (ValidationRule$1 | ValidationAlias)[]>;
|
78326
78329
|
default: () => never[];
|
78327
78330
|
};
|
78328
78331
|
modelValue: null;
|
@@ -78439,7 +78442,7 @@ declare const VTextarea: {
|
|
78439
78442
|
default: null;
|
78440
78443
|
};
|
78441
78444
|
rules: {
|
78442
|
-
type: PropType<readonly ValidationRule$1[]>;
|
78445
|
+
type: PropType<readonly (ValidationRule$1 | ValidationAlias)[]>;
|
78443
78446
|
default: () => never[];
|
78444
78447
|
};
|
78445
78448
|
modelValue: null;
|
@@ -78508,7 +78511,7 @@ declare const VTextField: {
|
|
78508
78511
|
disabled: boolean;
|
78509
78512
|
readonly: boolean | null;
|
78510
78513
|
messages: string | readonly string[];
|
78511
|
-
rules: readonly
|
78514
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
78512
78515
|
focused: boolean;
|
78513
78516
|
errorMessages: string | readonly string[] | null;
|
78514
78517
|
maxErrors: string | number;
|
@@ -78631,7 +78634,7 @@ declare const VTextField: {
|
|
78631
78634
|
disabled: boolean | null;
|
78632
78635
|
readonly: boolean | null;
|
78633
78636
|
messages: string | readonly string[];
|
78634
|
-
rules: readonly
|
78637
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
78635
78638
|
focused: boolean;
|
78636
78639
|
errorMessages: string | readonly string[] | null;
|
78637
78640
|
maxErrors: string | number;
|
@@ -78647,7 +78650,7 @@ declare const VTextField: {
|
|
78647
78650
|
disabled: boolean | null;
|
78648
78651
|
readonly: boolean | null;
|
78649
78652
|
messages: string | readonly string[];
|
78650
|
-
rules: readonly
|
78653
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
78651
78654
|
focused: boolean;
|
78652
78655
|
errorMessages: string | readonly string[] | null;
|
78653
78656
|
maxErrors: string | number;
|
@@ -78702,7 +78705,7 @@ declare const VTextField: {
|
|
78702
78705
|
disabled: boolean | null;
|
78703
78706
|
readonly: boolean | null;
|
78704
78707
|
messages: string | readonly string[];
|
78705
|
-
rules: readonly
|
78708
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
78706
78709
|
focused: boolean;
|
78707
78710
|
errorMessages: string | readonly string[] | null;
|
78708
78711
|
maxErrors: string | number;
|
@@ -78747,7 +78750,7 @@ declare const VTextField: {
|
|
78747
78750
|
disabled: boolean | null;
|
78748
78751
|
readonly: boolean | null;
|
78749
78752
|
messages: string | readonly string[];
|
78750
|
-
rules: readonly
|
78753
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
78751
78754
|
focused: boolean;
|
78752
78755
|
errorMessages: string | readonly string[] | null;
|
78753
78756
|
maxErrors: string | number;
|
@@ -78789,7 +78792,7 @@ declare const VTextField: {
|
|
78789
78792
|
disabled: boolean | null;
|
78790
78793
|
readonly: boolean | null;
|
78791
78794
|
messages: string | readonly string[];
|
78792
|
-
rules: readonly
|
78795
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
78793
78796
|
focused: boolean;
|
78794
78797
|
errorMessages: string | readonly string[] | null;
|
78795
78798
|
maxErrors: string | number;
|
@@ -78805,7 +78808,7 @@ declare const VTextField: {
|
|
78805
78808
|
disabled: boolean | null;
|
78806
78809
|
readonly: boolean | null;
|
78807
78810
|
messages: string | readonly string[];
|
78808
|
-
rules: readonly
|
78811
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
78809
78812
|
focused: boolean;
|
78810
78813
|
errorMessages: string | readonly string[] | null;
|
78811
78814
|
maxErrors: string | number;
|
@@ -79104,7 +79107,7 @@ declare const VTextField: {
|
|
79104
79107
|
disabled: boolean;
|
79105
79108
|
readonly: boolean | null;
|
79106
79109
|
messages: string | readonly string[];
|
79107
|
-
rules: readonly
|
79110
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
79108
79111
|
focused: boolean;
|
79109
79112
|
errorMessages: string | readonly string[] | null;
|
79110
79113
|
maxErrors: string | number;
|
@@ -79159,7 +79162,7 @@ declare const VTextField: {
|
|
79159
79162
|
disabled: boolean;
|
79160
79163
|
readonly: boolean | null;
|
79161
79164
|
messages: string | readonly string[];
|
79162
|
-
rules: readonly
|
79165
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
79163
79166
|
focused: boolean;
|
79164
79167
|
errorMessages: string | readonly string[] | null;
|
79165
79168
|
maxErrors: string | number;
|
@@ -79282,7 +79285,7 @@ declare const VTextField: {
|
|
79282
79285
|
disabled: boolean | null;
|
79283
79286
|
readonly: boolean | null;
|
79284
79287
|
messages: string | readonly string[];
|
79285
|
-
rules: readonly
|
79288
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
79286
79289
|
focused: boolean;
|
79287
79290
|
errorMessages: string | readonly string[] | null;
|
79288
79291
|
maxErrors: string | number;
|
@@ -79298,7 +79301,7 @@ declare const VTextField: {
|
|
79298
79301
|
disabled: boolean | null;
|
79299
79302
|
readonly: boolean | null;
|
79300
79303
|
messages: string | readonly string[];
|
79301
|
-
rules: readonly
|
79304
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
79302
79305
|
focused: boolean;
|
79303
79306
|
errorMessages: string | readonly string[] | null;
|
79304
79307
|
maxErrors: string | number;
|
@@ -79353,7 +79356,7 @@ declare const VTextField: {
|
|
79353
79356
|
disabled: boolean | null;
|
79354
79357
|
readonly: boolean | null;
|
79355
79358
|
messages: string | readonly string[];
|
79356
|
-
rules: readonly
|
79359
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
79357
79360
|
focused: boolean;
|
79358
79361
|
errorMessages: string | readonly string[] | null;
|
79359
79362
|
maxErrors: string | number;
|
@@ -79398,7 +79401,7 @@ declare const VTextField: {
|
|
79398
79401
|
disabled: boolean | null;
|
79399
79402
|
readonly: boolean | null;
|
79400
79403
|
messages: string | readonly string[];
|
79401
|
-
rules: readonly
|
79404
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
79402
79405
|
focused: boolean;
|
79403
79406
|
errorMessages: string | readonly string[] | null;
|
79404
79407
|
maxErrors: string | number;
|
@@ -79440,7 +79443,7 @@ declare const VTextField: {
|
|
79440
79443
|
disabled: boolean | null;
|
79441
79444
|
readonly: boolean | null;
|
79442
79445
|
messages: string | readonly string[];
|
79443
|
-
rules: readonly
|
79446
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
79444
79447
|
focused: boolean;
|
79445
79448
|
errorMessages: string | readonly string[] | null;
|
79446
79449
|
maxErrors: string | number;
|
@@ -79456,7 +79459,7 @@ declare const VTextField: {
|
|
79456
79459
|
disabled: boolean | null;
|
79457
79460
|
readonly: boolean | null;
|
79458
79461
|
messages: string | readonly string[];
|
79459
|
-
rules: readonly
|
79462
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
79460
79463
|
focused: boolean;
|
79461
79464
|
errorMessages: string | readonly string[] | null;
|
79462
79465
|
maxErrors: string | number;
|
@@ -79750,7 +79753,7 @@ declare const VTextField: {
|
|
79750
79753
|
disabled: boolean;
|
79751
79754
|
readonly: boolean | null;
|
79752
79755
|
messages: string | readonly string[];
|
79753
|
-
rules: readonly
|
79756
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
79754
79757
|
focused: boolean;
|
79755
79758
|
errorMessages: string | readonly string[] | null;
|
79756
79759
|
maxErrors: string | number;
|
@@ -79785,7 +79788,7 @@ declare const VTextField: {
|
|
79785
79788
|
disabled: boolean;
|
79786
79789
|
readonly: boolean | null;
|
79787
79790
|
messages: string | readonly string[];
|
79788
|
-
rules: readonly
|
79791
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
79789
79792
|
focused: boolean;
|
79790
79793
|
errorMessages: string | readonly string[] | null;
|
79791
79794
|
maxErrors: string | number;
|
@@ -79908,7 +79911,7 @@ declare const VTextField: {
|
|
79908
79911
|
disabled: boolean | null;
|
79909
79912
|
readonly: boolean | null;
|
79910
79913
|
messages: string | readonly string[];
|
79911
|
-
rules: readonly
|
79914
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
79912
79915
|
focused: boolean;
|
79913
79916
|
errorMessages: string | readonly string[] | null;
|
79914
79917
|
maxErrors: string | number;
|
@@ -79924,7 +79927,7 @@ declare const VTextField: {
|
|
79924
79927
|
disabled: boolean | null;
|
79925
79928
|
readonly: boolean | null;
|
79926
79929
|
messages: string | readonly string[];
|
79927
|
-
rules: readonly
|
79930
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
79928
79931
|
focused: boolean;
|
79929
79932
|
errorMessages: string | readonly string[] | null;
|
79930
79933
|
maxErrors: string | number;
|
@@ -79979,7 +79982,7 @@ declare const VTextField: {
|
|
79979
79982
|
disabled: boolean | null;
|
79980
79983
|
readonly: boolean | null;
|
79981
79984
|
messages: string | readonly string[];
|
79982
|
-
rules: readonly
|
79985
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
79983
79986
|
focused: boolean;
|
79984
79987
|
errorMessages: string | readonly string[] | null;
|
79985
79988
|
maxErrors: string | number;
|
@@ -80024,7 +80027,7 @@ declare const VTextField: {
|
|
80024
80027
|
disabled: boolean | null;
|
80025
80028
|
readonly: boolean | null;
|
80026
80029
|
messages: string | readonly string[];
|
80027
|
-
rules: readonly
|
80030
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
80028
80031
|
focused: boolean;
|
80029
80032
|
errorMessages: string | readonly string[] | null;
|
80030
80033
|
maxErrors: string | number;
|
@@ -80066,7 +80069,7 @@ declare const VTextField: {
|
|
80066
80069
|
disabled: boolean | null;
|
80067
80070
|
readonly: boolean | null;
|
80068
80071
|
messages: string | readonly string[];
|
80069
|
-
rules: readonly
|
80072
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
80070
80073
|
focused: boolean;
|
80071
80074
|
errorMessages: string | readonly string[] | null;
|
80072
80075
|
maxErrors: string | number;
|
@@ -80082,7 +80085,7 @@ declare const VTextField: {
|
|
80082
80085
|
disabled: boolean | null;
|
80083
80086
|
readonly: boolean | null;
|
80084
80087
|
messages: string | readonly string[];
|
80085
|
-
rules: readonly
|
80088
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
80086
80089
|
focused: boolean;
|
80087
80090
|
errorMessages: string | readonly string[] | null;
|
80088
80091
|
maxErrors: string | number;
|
@@ -80381,7 +80384,7 @@ declare const VTextField: {
|
|
80381
80384
|
disabled: boolean;
|
80382
80385
|
readonly: boolean | null;
|
80383
80386
|
messages: string | readonly string[];
|
80384
|
-
rules: readonly
|
80387
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
80385
80388
|
focused: boolean;
|
80386
80389
|
errorMessages: string | readonly string[] | null;
|
80387
80390
|
maxErrors: string | number;
|
@@ -80481,7 +80484,7 @@ declare const VTextField: {
|
|
80481
80484
|
default: null;
|
80482
80485
|
};
|
80483
80486
|
rules: {
|
80484
|
-
type: PropType<readonly ValidationRule$1[]>;
|
80487
|
+
type: PropType<readonly (ValidationRule$1 | ValidationAlias)[]>;
|
80485
80488
|
default: () => never[];
|
80486
80489
|
};
|
80487
80490
|
modelValue: null;
|
@@ -80592,7 +80595,7 @@ declare const VTextField: {
|
|
80592
80595
|
default: null;
|
80593
80596
|
};
|
80594
80597
|
rules: {
|
80595
|
-
type: PropType<readonly ValidationRule$1[]>;
|
80598
|
+
type: PropType<readonly (ValidationRule$1 | ValidationAlias)[]>;
|
80596
80599
|
default: () => never[];
|
80597
80600
|
};
|
80598
80601
|
modelValue: null;
|
@@ -83202,7 +83205,7 @@ declare const VValidation: {
|
|
83202
83205
|
error: boolean;
|
83203
83206
|
disabled: boolean | null;
|
83204
83207
|
readonly: boolean | null;
|
83205
|
-
rules: readonly
|
83208
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
83206
83209
|
focused: boolean;
|
83207
83210
|
errorMessages: string | readonly string[] | null;
|
83208
83211
|
maxErrors: string | number;
|
@@ -83220,7 +83223,7 @@ declare const VValidation: {
|
|
83220
83223
|
error: boolean;
|
83221
83224
|
disabled: boolean | null;
|
83222
83225
|
readonly: boolean | null;
|
83223
|
-
rules: readonly
|
83226
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
83224
83227
|
focused: boolean;
|
83225
83228
|
errorMessages: string | readonly string[] | null;
|
83226
83229
|
maxErrors: string | number;
|
@@ -83251,7 +83254,7 @@ declare const VValidation: {
|
|
83251
83254
|
error: boolean;
|
83252
83255
|
disabled: boolean | null;
|
83253
83256
|
readonly: boolean | null;
|
83254
|
-
rules: readonly
|
83257
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
83255
83258
|
focused: boolean;
|
83256
83259
|
errorMessages: string | readonly string[] | null;
|
83257
83260
|
maxErrors: string | number;
|
@@ -83267,7 +83270,7 @@ declare const VValidation: {
|
|
83267
83270
|
error: boolean;
|
83268
83271
|
disabled: boolean | null;
|
83269
83272
|
readonly: boolean | null;
|
83270
|
-
rules: readonly
|
83273
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
83271
83274
|
focused: boolean;
|
83272
83275
|
errorMessages: string | readonly string[] | null;
|
83273
83276
|
maxErrors: string | number;
|
@@ -83279,7 +83282,7 @@ declare const VValidation: {
|
|
83279
83282
|
error: boolean;
|
83280
83283
|
disabled: boolean | null;
|
83281
83284
|
readonly: boolean | null;
|
83282
|
-
rules: readonly
|
83285
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
83283
83286
|
focused: boolean;
|
83284
83287
|
errorMessages: string | readonly string[] | null;
|
83285
83288
|
maxErrors: string | number;
|
@@ -83297,7 +83300,7 @@ declare const VValidation: {
|
|
83297
83300
|
error: boolean;
|
83298
83301
|
disabled: boolean | null;
|
83299
83302
|
readonly: boolean | null;
|
83300
|
-
rules: readonly
|
83303
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
83301
83304
|
focused: boolean;
|
83302
83305
|
errorMessages: string | readonly string[] | null;
|
83303
83306
|
maxErrors: string | number;
|
@@ -83343,7 +83346,7 @@ declare const VValidation: {
|
|
83343
83346
|
default: null;
|
83344
83347
|
};
|
83345
83348
|
rules: {
|
83346
|
-
type: vue.PropType<readonly ValidationRule$1[]>;
|
83349
|
+
type: vue.PropType<readonly (ValidationRule$1 | ValidationAlias)[]>;
|
83347
83350
|
default: () => never[];
|
83348
83351
|
};
|
83349
83352
|
modelValue: null;
|
@@ -83372,7 +83375,7 @@ declare const VValidation: {
|
|
83372
83375
|
default: null;
|
83373
83376
|
};
|
83374
83377
|
rules: {
|
83375
|
-
type: vue.PropType<readonly ValidationRule$1[]>;
|
83378
|
+
type: vue.PropType<readonly (ValidationRule$1 | ValidationAlias)[]>;
|
83376
83379
|
default: () => never[];
|
83377
83380
|
};
|
83378
83381
|
modelValue: null;
|
@@ -85874,24 +85877,25 @@ declare module 'vue' {
|
|
85874
85877
|
$children?: VNodeChild
|
85875
85878
|
}
|
85876
85879
|
export interface GlobalComponents {
|
85877
|
-
VAutocomplete: VAutocomplete
|
85878
|
-
VAppBar: VAppBar
|
85879
|
-
VAppBarNavIcon: VAppBarNavIcon
|
85880
|
-
VAppBarTitle: VAppBarTitle
|
85881
85880
|
VApp: VApp
|
85881
|
+
VAvatar: VAvatar
|
85882
85882
|
VAlert: VAlert
|
85883
85883
|
VAlertTitle: VAlertTitle
|
85884
|
-
|
85885
|
-
|
85884
|
+
VAppBar: VAppBar
|
85885
|
+
VAppBarNavIcon: VAppBarNavIcon
|
85886
|
+
VAppBarTitle: VAppBarTitle
|
85887
|
+
VAutocomplete: VAutocomplete
|
85886
85888
|
VBanner: VBanner
|
85887
85889
|
VBannerActions: VBannerActions
|
85888
85890
|
VBannerText: VBannerText
|
85891
|
+
VBadge: VBadge
|
85889
85892
|
VBottomSheet: VBottomSheet
|
85890
85893
|
VBreadcrumbs: VBreadcrumbs
|
85891
85894
|
VBreadcrumbsItem: VBreadcrumbsItem
|
85892
85895
|
VBreadcrumbsDivider: VBreadcrumbsDivider
|
85893
|
-
VBtnGroup: VBtnGroup
|
85894
85896
|
VBtnToggle: VBtnToggle
|
85897
|
+
VBottomNavigation: VBottomNavigation
|
85898
|
+
VBtnGroup: VBtnGroup
|
85895
85899
|
VCard: VCard
|
85896
85900
|
VCardActions: VCardActions
|
85897
85901
|
VCardItem: VCardItem
|
@@ -85900,16 +85904,12 @@ declare module 'vue' {
|
|
85900
85904
|
VCardTitle: VCardTitle
|
85901
85905
|
VCarousel: VCarousel
|
85902
85906
|
VCarouselItem: VCarouselItem
|
85903
|
-
VBottomNavigation: VBottomNavigation
|
85904
|
-
VChipGroup: VChipGroup
|
85905
|
-
VBtn: VBtn
|
85906
85907
|
VChip: VChip
|
85907
|
-
|
85908
|
-
|
85909
|
-
VColorPicker: VColorPicker
|
85908
|
+
VBtn: VBtn
|
85909
|
+
VChipGroup: VChipGroup
|
85910
85910
|
VCode: VCode
|
85911
85911
|
VCombobox: VCombobox
|
85912
|
-
|
85912
|
+
VColorPicker: VColorPicker
|
85913
85913
|
VDataTable: VDataTable
|
85914
85914
|
VDataTableHeaders: VDataTableHeaders
|
85915
85915
|
VDataTableFooter: VDataTableFooter
|
@@ -85917,34 +85917,36 @@ declare module 'vue' {
|
|
85917
85917
|
VDataTableRow: VDataTableRow
|
85918
85918
|
VDataTableVirtual: VDataTableVirtual
|
85919
85919
|
VDataTableServer: VDataTableServer
|
85920
|
+
VCheckbox: VCheckbox
|
85921
|
+
VCheckboxBtn: VCheckboxBtn
|
85922
|
+
VEmptyState: VEmptyState
|
85920
85923
|
VDatePicker: VDatePicker
|
85921
85924
|
VDatePickerControls: VDatePickerControls
|
85922
85925
|
VDatePickerHeader: VDatePickerHeader
|
85923
85926
|
VDatePickerMonth: VDatePickerMonth
|
85924
85927
|
VDatePickerMonths: VDatePickerMonths
|
85925
85928
|
VDatePickerYears: VDatePickerYears
|
85926
|
-
|
85927
|
-
VDialog: VDialog
|
85928
|
-
VFab: VFab
|
85929
|
-
VEmptyState: VEmptyState
|
85930
|
-
VField: VField
|
85931
|
-
VFieldLabel: VFieldLabel
|
85929
|
+
VCounter: VCounter
|
85932
85930
|
VExpansionPanels: VExpansionPanels
|
85933
85931
|
VExpansionPanel: VExpansionPanel
|
85934
85932
|
VExpansionPanelText: VExpansionPanelText
|
85935
85933
|
VExpansionPanelTitle: VExpansionPanelTitle
|
85936
|
-
|
85934
|
+
VFab: VFab
|
85935
|
+
VDivider: VDivider
|
85937
85936
|
VFileInput: VFileInput
|
85938
|
-
|
85937
|
+
VField: VField
|
85938
|
+
VFieldLabel: VFieldLabel
|
85939
|
+
VFooter: VFooter
|
85940
|
+
VDialog: VDialog
|
85939
85941
|
VIcon: VIcon
|
85940
85942
|
VComponentIcon: VComponentIcon
|
85941
85943
|
VSvgIcon: VSvgIcon
|
85942
85944
|
VLigatureIcon: VLigatureIcon
|
85943
85945
|
VClassIcon: VClassIcon
|
85944
85946
|
VImg: VImg
|
85945
|
-
|
85947
|
+
VInfiniteScroll: VInfiniteScroll
|
85946
85948
|
VInput: VInput
|
85947
|
-
|
85949
|
+
VKbd: VKbd
|
85948
85950
|
VItemGroup: VItemGroup
|
85949
85951
|
VItem: VItem
|
85950
85952
|
VList: VList
|
@@ -85957,24 +85959,24 @@ declare module 'vue' {
|
|
85957
85959
|
VListItemTitle: VListItemTitle
|
85958
85960
|
VListSubheader: VListSubheader
|
85959
85961
|
VMain: VMain
|
85962
|
+
VLabel: VLabel
|
85960
85963
|
VMessages: VMessages
|
85961
85964
|
VMenu: VMenu
|
85962
85965
|
VNavigationDrawer: VNavigationDrawer
|
85963
|
-
VNumberInput: VNumberInput
|
85964
85966
|
VOverlay: VOverlay
|
85965
85967
|
VOtpInput: VOtpInput
|
85968
|
+
VNumberInput: VNumberInput
|
85966
85969
|
VPagination: VPagination
|
85967
|
-
VRadioGroup: VRadioGroup
|
85968
|
-
VProgressCircular: VProgressCircular
|
85969
85970
|
VProgressLinear: VProgressLinear
|
85970
85971
|
VRating: VRating
|
85971
85972
|
VSelect: VSelect
|
85972
|
-
|
85973
|
+
VRadioGroup: VRadioGroup
|
85974
|
+
VProgressCircular: VProgressCircular
|
85973
85975
|
VSelectionControl: VSelectionControl
|
85974
85976
|
VSlider: VSlider
|
85975
85977
|
VSheet: VSheet
|
85976
|
-
VSnackbar: VSnackbar
|
85977
85978
|
VSkeletonLoader: VSkeletonLoader
|
85979
|
+
VSnackbar: VSnackbar
|
85978
85980
|
VSlideGroup: VSlideGroup
|
85979
85981
|
VSlideGroupItem: VSlideGroupItem
|
85980
85982
|
VStepper: VStepper
|
@@ -85983,46 +85985,48 @@ declare module 'vue' {
|
|
85983
85985
|
VStepperItem: VStepperItem
|
85984
85986
|
VStepperWindow: VStepperWindow
|
85985
85987
|
VStepperWindowItem: VStepperWindowItem
|
85988
|
+
VSelectionControlGroup: VSelectionControlGroup
|
85986
85989
|
VSwitch: VSwitch
|
85990
|
+
VTab: VTab
|
85991
|
+
VTabs: VTabs
|
85992
|
+
VTabsWindow: VTabsWindow
|
85993
|
+
VTabsWindowItem: VTabsWindowItem
|
85987
85994
|
VSystemBar: VSystemBar
|
85988
|
-
VTextField: VTextField
|
85989
85995
|
VTextarea: VTextarea
|
85990
85996
|
VTable: VTable
|
85991
85997
|
VTimeline: VTimeline
|
85992
85998
|
VTimelineItem: VTimelineItem
|
85993
|
-
VTooltip: VTooltip
|
85994
85999
|
VToolbar: VToolbar
|
85995
86000
|
VToolbarTitle: VToolbarTitle
|
85996
86001
|
VToolbarItems: VToolbarItems
|
86002
|
+
VTextField: VTextField
|
85997
86003
|
VWindow: VWindow
|
85998
86004
|
VWindowItem: VWindowItem
|
85999
|
-
|
86000
|
-
VTabs: VTabs
|
86001
|
-
VTabsWindow: VTabsWindow
|
86002
|
-
VTabsWindowItem: VTabsWindowItem
|
86005
|
+
VTooltip: VTooltip
|
86003
86006
|
VConfirmEdit: VConfirmEdit
|
86004
86007
|
VDataIterator: VDataIterator
|
86005
86008
|
VDefaultsProvider: VDefaultsProvider
|
86006
|
-
VForm: VForm
|
86007
|
-
VHover: VHover
|
86008
86009
|
VContainer: VContainer
|
86009
86010
|
VCol: VCol
|
86010
86011
|
VRow: VRow
|
86011
86012
|
VSpacer: VSpacer
|
86012
|
-
|
86013
|
+
VHover: VHover
|
86013
86014
|
VLayout: VLayout
|
86014
86015
|
VLayoutItem: VLayoutItem
|
86016
|
+
VLazy: VLazy
|
86015
86017
|
VLocaleProvider: VLocaleProvider
|
86016
86018
|
VNoSsr: VNoSsr
|
86017
86019
|
VParallax: VParallax
|
86018
|
-
|
86020
|
+
VRadio: VRadio
|
86019
86021
|
VResponsive: VResponsive
|
86022
|
+
VRangeSlider: VRangeSlider
|
86023
|
+
VForm: VForm
|
86020
86024
|
VSparkline: VSparkline
|
86021
|
-
VSnackbarQueue: VSnackbarQueue
|
86022
86025
|
VSpeedDial: VSpeedDial
|
86026
|
+
VSnackbarQueue: VSnackbarQueue
|
86023
86027
|
VThemeProvider: VThemeProvider
|
86024
|
-
VValidation: VValidation
|
86025
86028
|
VVirtualScroll: VVirtualScroll
|
86029
|
+
VValidation: VValidation
|
86026
86030
|
VFabTransition: VFabTransition
|
86027
86031
|
VDialogBottomTransition: VDialogBottomTransition
|
86028
86032
|
VDialogTopTransition: VDialogTopTransition
|
@@ -86039,17 +86043,16 @@ declare module 'vue' {
|
|
86039
86043
|
VExpandTransition: VExpandTransition
|
86040
86044
|
VExpandXTransition: VExpandXTransition
|
86041
86045
|
VDialogTransition: VDialogTransition
|
86042
|
-
|
86046
|
+
VColorInput: VColorInput
|
86043
86047
|
VCalendar: VCalendar
|
86044
86048
|
VCalendarDay: VCalendarDay
|
86045
86049
|
VCalendarHeader: VCalendarHeader
|
86046
86050
|
VCalendarInterval: VCalendarInterval
|
86047
86051
|
VCalendarIntervalEvent: VCalendarIntervalEvent
|
86048
86052
|
VCalendarMonthDay: VCalendarMonthDay
|
86049
|
-
|
86053
|
+
VIconBtn: VIconBtn
|
86050
86054
|
VPicker: VPicker
|
86051
86055
|
VPickerTitle: VPickerTitle
|
86052
|
-
VIconBtn: VIconBtn
|
86053
86056
|
VFileUpload: VFileUpload
|
86054
86057
|
VFileUploadItem: VFileUploadItem
|
86055
86058
|
VStepperVertical: VStepperVertical
|