@vuetify/nightly 3.8.5-dev.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 +6 -19
- package/dist/json/attributes.json +3205 -3221
- package/dist/json/importMap-labs.json +12 -12
- package/dist/json/importMap.json +136 -136
- package/dist/json/tags.json +0 -4
- package/dist/json/web-types.json +6164 -6203
- package/dist/vuetify-labs.cjs +61 -183
- package/dist/vuetify-labs.css +3924 -3952
- package/dist/vuetify-labs.d.ts +1479 -1528
- package/dist/vuetify-labs.esm.js +62 -184
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +61 -183
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +50 -177
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +4149 -4177
- package/dist/vuetify.d.ts +947 -998
- package/dist/vuetify.esm.js +51 -178
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +50 -177
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +1178 -1184
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAlert/VAlert.css +1 -6
- package/lib/components/VAlert/VAlert.d.ts +0 -35
- package/lib/components/VAlert/VAlert.js +9 -14
- package/lib/components/VAlert/VAlert.js.map +1 -1
- package/lib/components/VAlert/VAlert.sass +1 -7
- package/lib/components/VAutocomplete/VAutocomplete.d.ts +178 -178
- package/lib/components/VBtnGroup/VBtnGroup.css +7 -30
- package/lib/components/VBtnGroup/VBtnGroup.d.ts +32 -58
- package/lib/components/VBtnGroup/VBtnGroup.js +3 -7
- package/lib/components/VBtnGroup/VBtnGroup.js.map +1 -1
- package/lib/components/VBtnGroup/VBtnGroup.sass +17 -44
- package/lib/components/VBtnToggle/VBtnToggle.d.ts +0 -25
- package/lib/components/VCheckbox/VCheckbox.d.ts +15 -15
- package/lib/components/VCombobox/VCombobox.d.ts +178 -178
- package/lib/components/VField/VField.d.ts +3 -3
- package/lib/components/VFileInput/VFileInput.d.ts +45 -45
- package/lib/components/VInput/VInput.d.ts +16 -16
- package/lib/components/VNumberInput/VNumberInput.d.ts +169 -169
- package/lib/components/VOverlay/VOverlay.css +1 -1
- package/lib/components/VOverlay/_variables.scss +1 -1
- package/lib/components/VRadioGroup/VRadioGroup.d.ts +15 -15
- package/lib/components/VRangeSlider/VRangeSlider.d.ts +15 -15
- package/lib/components/VSelect/VSelect.d.ts +178 -178
- package/lib/components/VSlider/VSlider.d.ts +15 -15
- package/lib/components/VSwitch/VSwitch.d.ts +15 -15
- package/lib/components/VTextField/VTextField.d.ts +57 -57
- package/lib/components/VTextarea/VTextarea.d.ts +45 -45
- package/lib/components/VValidation/VValidation.d.ts +8 -8
- package/lib/composables/calendar.d.ts +0 -1
- package/lib/composables/calendar.js.map +1 -1
- package/lib/composables/theme.d.ts +1 -6
- package/lib/composables/theme.js +26 -94
- package/lib/composables/theme.js.map +1 -1
- 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/composables/virtual.js +1 -6
- package/lib/composables/virtual.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/entry-bundler.js.map +1 -1
- package/lib/framework.d.ts +45 -50
- package/lib/framework.js +1 -1
- package/lib/framework.js.map +1 -1
- package/lib/labs/VColorInput/VColorInput.d.ts +15 -15
- package/lib/labs/VDateInput/VDateInput.d.ts +171 -171
- package/lib/labs/VIconBtn/VIconBtn.d.ts +29 -29
- package/lib/labs/VIconBtn/VIconBtn.js +11 -7
- package/lib/labs/VIconBtn/VIconBtn.js.map +1 -1
- package/lib/labs/rules/rules.d.ts +9 -5
- package/lib/labs/rules/rules.js +73 -51
- package/lib/labs/rules/rules.js.map +1 -1
- package/lib/util/globals.d.ts +0 -1
- package/lib/util/globals.js +0 -1
- package/lib/util/globals.js.map +1 -1
- package/package.json +1 -2
- package/lib/composables/iconSizes.d.ts +0 -28
- package/lib/composables/iconSizes.js +0 -23
- package/lib/composables/iconSizes.js.map +0 -1
@@ -267,14 +267,14 @@ export declare const makeVTextFieldProps: <Defaults extends {
|
|
267
267
|
default: unknown extends Defaults["readonly"] ? boolean | null : NonNullable<boolean | null> | Defaults["readonly"];
|
268
268
|
};
|
269
269
|
rules: unknown extends Defaults["rules"] ? {
|
270
|
-
type: PropType<readonly import("../../types.js").ValidationRule[]>;
|
270
|
+
type: PropType<readonly (import("../../types.js").ValidationRule | import("../../labs/rules/index.js").ValidationAlias)[]>;
|
271
271
|
default: () => never[];
|
272
272
|
} : Omit<{
|
273
|
-
type: PropType<readonly import("../../types.js").ValidationRule[]>;
|
273
|
+
type: PropType<readonly (import("../../types.js").ValidationRule | import("../../labs/rules/index.js").ValidationAlias)[]>;
|
274
274
|
default: () => never[];
|
275
275
|
}, "type" | "default"> & {
|
276
|
-
type: PropType<unknown extends Defaults["rules"] ? readonly import("../../
|
277
|
-
default: unknown extends Defaults["rules"] ? readonly import("../../
|
276
|
+
type: PropType<unknown extends Defaults["rules"] ? readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[] : readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[] | Defaults["rules"]>;
|
277
|
+
default: unknown extends Defaults["rules"] ? readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[] : readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[] | Defaults["rules"];
|
278
278
|
};
|
279
279
|
modelValue: unknown extends Defaults["modelValue"] ? null : {
|
280
280
|
type: PropType<unknown extends Defaults["modelValue"] ? any : any>;
|
@@ -439,7 +439,7 @@ export declare const VTextField: {
|
|
439
439
|
disabled: boolean;
|
440
440
|
readonly: boolean | null;
|
441
441
|
messages: string | readonly string[];
|
442
|
-
rules: readonly import("../../
|
442
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
443
443
|
focused: boolean;
|
444
444
|
errorMessages: string | readonly string[] | null;
|
445
445
|
maxErrors: string | number;
|
@@ -479,7 +479,6 @@ export declare const VTextField: {
|
|
479
479
|
bgColor?: string | undefined;
|
480
480
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
481
481
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
482
|
-
iconColor?: string | boolean | undefined;
|
483
482
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
484
483
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
485
484
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -488,6 +487,7 @@ export declare const VTextField: {
|
|
488
487
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
489
488
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
490
489
|
centerAffix?: boolean | undefined;
|
490
|
+
iconColor?: string | boolean | undefined;
|
491
491
|
hint?: string | undefined;
|
492
492
|
hideDetails?: boolean | "auto" | undefined;
|
493
493
|
suffix?: string | undefined;
|
@@ -562,7 +562,7 @@ export declare const VTextField: {
|
|
562
562
|
disabled: boolean | null;
|
563
563
|
readonly: boolean | null;
|
564
564
|
messages: string | readonly string[];
|
565
|
-
rules: readonly import("../../
|
565
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
566
566
|
focused: boolean;
|
567
567
|
errorMessages: string | readonly string[] | null;
|
568
568
|
maxErrors: string | number;
|
@@ -578,7 +578,7 @@ export declare const VTextField: {
|
|
578
578
|
disabled: boolean | null;
|
579
579
|
readonly: boolean | null;
|
580
580
|
messages: string | readonly string[];
|
581
|
-
rules: readonly import("../../
|
581
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
582
582
|
focused: boolean;
|
583
583
|
errorMessages: string | readonly string[] | null;
|
584
584
|
maxErrors: string | number;
|
@@ -602,9 +602,9 @@ export declare const VTextField: {
|
|
602
602
|
baseColor?: string | undefined;
|
603
603
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
604
604
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
605
|
-
iconColor?: string | boolean | undefined;
|
606
605
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
607
606
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
607
|
+
iconColor?: string | boolean | undefined;
|
608
608
|
hint?: string | undefined;
|
609
609
|
hideDetails?: boolean | "auto" | undefined;
|
610
610
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -633,7 +633,7 @@ export declare const VTextField: {
|
|
633
633
|
disabled: boolean | null;
|
634
634
|
readonly: boolean | null;
|
635
635
|
messages: string | readonly string[];
|
636
|
-
rules: readonly import("../../
|
636
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
637
637
|
focused: boolean;
|
638
638
|
errorMessages: string | readonly string[] | null;
|
639
639
|
maxErrors: string | number;
|
@@ -658,9 +658,9 @@ export declare const VTextField: {
|
|
658
658
|
baseColor?: string | undefined;
|
659
659
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
660
660
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
661
|
-
iconColor?: string | boolean | undefined;
|
662
661
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
663
662
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
663
|
+
iconColor?: string | boolean | undefined;
|
664
664
|
hint?: string | undefined;
|
665
665
|
hideDetails?: boolean | "auto" | undefined;
|
666
666
|
} & {}, {
|
@@ -678,7 +678,7 @@ export declare const VTextField: {
|
|
678
678
|
disabled: boolean | null;
|
679
679
|
readonly: boolean | null;
|
680
680
|
messages: string | readonly string[];
|
681
|
-
rules: readonly import("../../
|
681
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
682
682
|
focused: boolean;
|
683
683
|
errorMessages: string | readonly string[] | null;
|
684
684
|
maxErrors: string | number;
|
@@ -720,7 +720,7 @@ export declare const VTextField: {
|
|
720
720
|
disabled: boolean | null;
|
721
721
|
readonly: boolean | null;
|
722
722
|
messages: string | readonly string[];
|
723
|
-
rules: readonly import("../../
|
723
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
724
724
|
focused: boolean;
|
725
725
|
errorMessages: string | readonly string[] | null;
|
726
726
|
maxErrors: string | number;
|
@@ -736,7 +736,7 @@ export declare const VTextField: {
|
|
736
736
|
disabled: boolean | null;
|
737
737
|
readonly: boolean | null;
|
738
738
|
messages: string | readonly string[];
|
739
|
-
rules: readonly import("../../
|
739
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
740
740
|
focused: boolean;
|
741
741
|
errorMessages: string | readonly string[] | null;
|
742
742
|
maxErrors: string | number;
|
@@ -761,9 +761,9 @@ export declare const VTextField: {
|
|
761
761
|
baseColor?: string | undefined;
|
762
762
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
763
763
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
764
|
-
iconColor?: string | boolean | undefined;
|
765
764
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
766
765
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
766
|
+
iconColor?: string | boolean | undefined;
|
767
767
|
hint?: string | undefined;
|
768
768
|
hideDetails?: boolean | "auto" | undefined;
|
769
769
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -775,7 +775,7 @@ export declare const VTextField: {
|
|
775
775
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
776
776
|
modelValue?: unknown;
|
777
777
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
778
|
-
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "
|
778
|
+
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "iconColor" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
779
779
|
$: import("vue").ComponentInternalInstance;
|
780
780
|
$data: {};
|
781
781
|
$props: Partial<{
|
@@ -822,13 +822,13 @@ export declare const VTextField: {
|
|
822
822
|
rounded?: string | number | boolean | undefined;
|
823
823
|
baseColor?: string | undefined;
|
824
824
|
bgColor?: string | undefined;
|
825
|
-
iconColor?: string | boolean | undefined;
|
826
825
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
827
826
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
828
827
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
829
828
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
830
829
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
831
830
|
centerAffix?: boolean | undefined;
|
831
|
+
iconColor?: string | boolean | undefined;
|
832
832
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
833
833
|
$attrs: {
|
834
834
|
[x: string]: unknown;
|
@@ -881,13 +881,13 @@ export declare const VTextField: {
|
|
881
881
|
rounded?: string | number | boolean | undefined;
|
882
882
|
baseColor?: string | undefined;
|
883
883
|
bgColor?: string | undefined;
|
884
|
-
iconColor?: string | boolean | undefined;
|
885
884
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
886
885
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
887
886
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
888
887
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
889
888
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
890
889
|
centerAffix?: boolean | undefined;
|
890
|
+
iconColor?: string | boolean | undefined;
|
891
891
|
} & {
|
892
892
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
893
893
|
}, {
|
@@ -991,13 +991,13 @@ export declare const VTextField: {
|
|
991
991
|
rounded?: string | number | boolean | undefined;
|
992
992
|
baseColor?: string | undefined;
|
993
993
|
bgColor?: string | undefined;
|
994
|
-
iconColor?: string | boolean | undefined;
|
995
994
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
996
995
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
997
996
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
998
997
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
999
998
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1000
999
|
centerAffix?: boolean | undefined;
|
1000
|
+
iconColor?: string | boolean | undefined;
|
1001
1001
|
} & {
|
1002
1002
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
1003
1003
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -1006,7 +1006,7 @@ export declare const VTextField: {
|
|
1006
1006
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
1007
1007
|
modelValue?: unknown;
|
1008
1008
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
1009
|
-
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "
|
1009
|
+
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "iconColor" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
|
1010
1010
|
_allExposed: {
|
1011
1011
|
reset: () => Promise<void>;
|
1012
1012
|
resetValidation: () => Promise<void>;
|
@@ -1035,7 +1035,7 @@ export declare const VTextField: {
|
|
1035
1035
|
disabled: boolean;
|
1036
1036
|
readonly: boolean | null;
|
1037
1037
|
messages: string | readonly string[];
|
1038
|
-
rules: readonly import("../../
|
1038
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
1039
1039
|
focused: boolean;
|
1040
1040
|
errorMessages: string | readonly string[] | null;
|
1041
1041
|
maxErrors: string | number;
|
@@ -1090,7 +1090,7 @@ export declare const VTextField: {
|
|
1090
1090
|
disabled: boolean;
|
1091
1091
|
readonly: boolean | null;
|
1092
1092
|
messages: string | readonly string[];
|
1093
|
-
rules: readonly import("../../
|
1093
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
1094
1094
|
focused: boolean;
|
1095
1095
|
errorMessages: string | readonly string[] | null;
|
1096
1096
|
maxErrors: string | number;
|
@@ -1130,7 +1130,6 @@ export declare const VTextField: {
|
|
1130
1130
|
bgColor?: string | undefined;
|
1131
1131
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1132
1132
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1133
|
-
iconColor?: string | boolean | undefined;
|
1134
1133
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1135
1134
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1136
1135
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -1139,6 +1138,7 @@ export declare const VTextField: {
|
|
1139
1138
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1140
1139
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1141
1140
|
centerAffix?: boolean | undefined;
|
1141
|
+
iconColor?: string | boolean | undefined;
|
1142
1142
|
hint?: string | undefined;
|
1143
1143
|
hideDetails?: boolean | "auto" | undefined;
|
1144
1144
|
suffix?: string | undefined;
|
@@ -1213,7 +1213,7 @@ export declare const VTextField: {
|
|
1213
1213
|
disabled: boolean | null;
|
1214
1214
|
readonly: boolean | null;
|
1215
1215
|
messages: string | readonly string[];
|
1216
|
-
rules: readonly import("../../
|
1216
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
1217
1217
|
focused: boolean;
|
1218
1218
|
errorMessages: string | readonly string[] | null;
|
1219
1219
|
maxErrors: string | number;
|
@@ -1229,7 +1229,7 @@ export declare const VTextField: {
|
|
1229
1229
|
disabled: boolean | null;
|
1230
1230
|
readonly: boolean | null;
|
1231
1231
|
messages: string | readonly string[];
|
1232
|
-
rules: readonly import("../../
|
1232
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
1233
1233
|
focused: boolean;
|
1234
1234
|
errorMessages: string | readonly string[] | null;
|
1235
1235
|
maxErrors: string | number;
|
@@ -1253,9 +1253,9 @@ export declare const VTextField: {
|
|
1253
1253
|
baseColor?: string | undefined;
|
1254
1254
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1255
1255
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1256
|
-
iconColor?: string | boolean | undefined;
|
1257
1256
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
1258
1257
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
1258
|
+
iconColor?: string | boolean | undefined;
|
1259
1259
|
hint?: string | undefined;
|
1260
1260
|
hideDetails?: boolean | "auto" | undefined;
|
1261
1261
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -1284,7 +1284,7 @@ export declare const VTextField: {
|
|
1284
1284
|
disabled: boolean | null;
|
1285
1285
|
readonly: boolean | null;
|
1286
1286
|
messages: string | readonly string[];
|
1287
|
-
rules: readonly import("../../
|
1287
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
1288
1288
|
focused: boolean;
|
1289
1289
|
errorMessages: string | readonly string[] | null;
|
1290
1290
|
maxErrors: string | number;
|
@@ -1309,9 +1309,9 @@ export declare const VTextField: {
|
|
1309
1309
|
baseColor?: string | undefined;
|
1310
1310
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1311
1311
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1312
|
-
iconColor?: string | boolean | undefined;
|
1313
1312
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
1314
1313
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
1314
|
+
iconColor?: string | boolean | undefined;
|
1315
1315
|
hint?: string | undefined;
|
1316
1316
|
hideDetails?: boolean | "auto" | undefined;
|
1317
1317
|
} & {}, {
|
@@ -1329,7 +1329,7 @@ export declare const VTextField: {
|
|
1329
1329
|
disabled: boolean | null;
|
1330
1330
|
readonly: boolean | null;
|
1331
1331
|
messages: string | readonly string[];
|
1332
|
-
rules: readonly import("../../
|
1332
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
1333
1333
|
focused: boolean;
|
1334
1334
|
errorMessages: string | readonly string[] | null;
|
1335
1335
|
maxErrors: string | number;
|
@@ -1371,7 +1371,7 @@ export declare const VTextField: {
|
|
1371
1371
|
disabled: boolean | null;
|
1372
1372
|
readonly: boolean | null;
|
1373
1373
|
messages: string | readonly string[];
|
1374
|
-
rules: readonly import("../../
|
1374
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
1375
1375
|
focused: boolean;
|
1376
1376
|
errorMessages: string | readonly string[] | null;
|
1377
1377
|
maxErrors: string | number;
|
@@ -1387,7 +1387,7 @@ export declare const VTextField: {
|
|
1387
1387
|
disabled: boolean | null;
|
1388
1388
|
readonly: boolean | null;
|
1389
1389
|
messages: string | readonly string[];
|
1390
|
-
rules: readonly import("../../
|
1390
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
1391
1391
|
focused: boolean;
|
1392
1392
|
errorMessages: string | readonly string[] | null;
|
1393
1393
|
maxErrors: string | number;
|
@@ -1412,9 +1412,9 @@ export declare const VTextField: {
|
|
1412
1412
|
baseColor?: string | undefined;
|
1413
1413
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1414
1414
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1415
|
-
iconColor?: string | boolean | undefined;
|
1416
1415
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
1417
1416
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
1417
|
+
iconColor?: string | boolean | undefined;
|
1418
1418
|
hint?: string | undefined;
|
1419
1419
|
hideDetails?: boolean | "auto" | undefined;
|
1420
1420
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -1426,7 +1426,7 @@ export declare const VTextField: {
|
|
1426
1426
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
1427
1427
|
modelValue?: unknown;
|
1428
1428
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
1429
|
-
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "
|
1429
|
+
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "iconColor" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
1430
1430
|
$: import("vue").ComponentInternalInstance;
|
1431
1431
|
$data: {};
|
1432
1432
|
$props: Partial<{
|
@@ -1473,13 +1473,13 @@ export declare const VTextField: {
|
|
1473
1473
|
rounded?: string | number | boolean | undefined;
|
1474
1474
|
baseColor?: string | undefined;
|
1475
1475
|
bgColor?: string | undefined;
|
1476
|
-
iconColor?: string | boolean | undefined;
|
1477
1476
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1478
1477
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1479
1478
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
1480
1479
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1481
1480
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1482
1481
|
centerAffix?: boolean | undefined;
|
1482
|
+
iconColor?: string | boolean | undefined;
|
1483
1483
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
1484
1484
|
$attrs: {
|
1485
1485
|
[x: string]: unknown;
|
@@ -1532,13 +1532,13 @@ export declare const VTextField: {
|
|
1532
1532
|
rounded?: string | number | boolean | undefined;
|
1533
1533
|
baseColor?: string | undefined;
|
1534
1534
|
bgColor?: string | undefined;
|
1535
|
-
iconColor?: string | boolean | undefined;
|
1536
1535
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1537
1536
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1538
1537
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
1539
1538
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1540
1539
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1541
1540
|
centerAffix?: boolean | undefined;
|
1541
|
+
iconColor?: string | boolean | undefined;
|
1542
1542
|
} & {
|
1543
1543
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
1544
1544
|
}, {
|
@@ -1642,13 +1642,13 @@ export declare const VTextField: {
|
|
1642
1642
|
rounded?: string | number | boolean | undefined;
|
1643
1643
|
baseColor?: string | undefined;
|
1644
1644
|
bgColor?: string | undefined;
|
1645
|
-
iconColor?: string | boolean | undefined;
|
1646
1645
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1647
1646
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1648
1647
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
1649
1648
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1650
1649
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1651
1650
|
centerAffix?: boolean | undefined;
|
1651
|
+
iconColor?: string | boolean | undefined;
|
1652
1652
|
} & {
|
1653
1653
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
1654
1654
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -1657,7 +1657,7 @@ export declare const VTextField: {
|
|
1657
1657
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
1658
1658
|
modelValue?: unknown;
|
1659
1659
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
1660
|
-
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "
|
1660
|
+
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "iconColor" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
|
1661
1661
|
_allExposed: {
|
1662
1662
|
reset: () => Promise<void>;
|
1663
1663
|
resetValidation: () => Promise<void>;
|
@@ -1681,7 +1681,7 @@ export declare const VTextField: {
|
|
1681
1681
|
disabled: boolean;
|
1682
1682
|
readonly: boolean | null;
|
1683
1683
|
messages: string | readonly string[];
|
1684
|
-
rules: readonly import("../../
|
1684
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
1685
1685
|
focused: boolean;
|
1686
1686
|
errorMessages: string | readonly string[] | null;
|
1687
1687
|
maxErrors: string | number;
|
@@ -1716,7 +1716,7 @@ export declare const VTextField: {
|
|
1716
1716
|
disabled: boolean;
|
1717
1717
|
readonly: boolean | null;
|
1718
1718
|
messages: string | readonly string[];
|
1719
|
-
rules: readonly import("../../
|
1719
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
1720
1720
|
focused: boolean;
|
1721
1721
|
errorMessages: string | readonly string[] | null;
|
1722
1722
|
maxErrors: string | number;
|
@@ -1756,7 +1756,6 @@ export declare const VTextField: {
|
|
1756
1756
|
bgColor?: string | undefined;
|
1757
1757
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1758
1758
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1759
|
-
iconColor?: string | boolean | undefined;
|
1760
1759
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1761
1760
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1762
1761
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -1765,6 +1764,7 @@ export declare const VTextField: {
|
|
1765
1764
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1766
1765
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1767
1766
|
centerAffix?: boolean | undefined;
|
1767
|
+
iconColor?: string | boolean | undefined;
|
1768
1768
|
hint?: string | undefined;
|
1769
1769
|
hideDetails?: boolean | "auto" | undefined;
|
1770
1770
|
suffix?: string | undefined;
|
@@ -1839,7 +1839,7 @@ export declare const VTextField: {
|
|
1839
1839
|
disabled: boolean | null;
|
1840
1840
|
readonly: boolean | null;
|
1841
1841
|
messages: string | readonly string[];
|
1842
|
-
rules: readonly import("../../
|
1842
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
1843
1843
|
focused: boolean;
|
1844
1844
|
errorMessages: string | readonly string[] | null;
|
1845
1845
|
maxErrors: string | number;
|
@@ -1855,7 +1855,7 @@ export declare const VTextField: {
|
|
1855
1855
|
disabled: boolean | null;
|
1856
1856
|
readonly: boolean | null;
|
1857
1857
|
messages: string | readonly string[];
|
1858
|
-
rules: readonly import("../../
|
1858
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
1859
1859
|
focused: boolean;
|
1860
1860
|
errorMessages: string | readonly string[] | null;
|
1861
1861
|
maxErrors: string | number;
|
@@ -1879,9 +1879,9 @@ export declare const VTextField: {
|
|
1879
1879
|
baseColor?: string | undefined;
|
1880
1880
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1881
1881
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1882
|
-
iconColor?: string | boolean | undefined;
|
1883
1882
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
1884
1883
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
1884
|
+
iconColor?: string | boolean | undefined;
|
1885
1885
|
hint?: string | undefined;
|
1886
1886
|
hideDetails?: boolean | "auto" | undefined;
|
1887
1887
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -1910,7 +1910,7 @@ export declare const VTextField: {
|
|
1910
1910
|
disabled: boolean | null;
|
1911
1911
|
readonly: boolean | null;
|
1912
1912
|
messages: string | readonly string[];
|
1913
|
-
rules: readonly import("../../
|
1913
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
1914
1914
|
focused: boolean;
|
1915
1915
|
errorMessages: string | readonly string[] | null;
|
1916
1916
|
maxErrors: string | number;
|
@@ -1935,9 +1935,9 @@ export declare const VTextField: {
|
|
1935
1935
|
baseColor?: string | undefined;
|
1936
1936
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1937
1937
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1938
|
-
iconColor?: string | boolean | undefined;
|
1939
1938
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
1940
1939
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
1940
|
+
iconColor?: string | boolean | undefined;
|
1941
1941
|
hint?: string | undefined;
|
1942
1942
|
hideDetails?: boolean | "auto" | undefined;
|
1943
1943
|
} & {}, {
|
@@ -1955,7 +1955,7 @@ export declare const VTextField: {
|
|
1955
1955
|
disabled: boolean | null;
|
1956
1956
|
readonly: boolean | null;
|
1957
1957
|
messages: string | readonly string[];
|
1958
|
-
rules: readonly import("../../
|
1958
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
1959
1959
|
focused: boolean;
|
1960
1960
|
errorMessages: string | readonly string[] | null;
|
1961
1961
|
maxErrors: string | number;
|
@@ -1997,7 +1997,7 @@ export declare const VTextField: {
|
|
1997
1997
|
disabled: boolean | null;
|
1998
1998
|
readonly: boolean | null;
|
1999
1999
|
messages: string | readonly string[];
|
2000
|
-
rules: readonly import("../../
|
2000
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
2001
2001
|
focused: boolean;
|
2002
2002
|
errorMessages: string | readonly string[] | null;
|
2003
2003
|
maxErrors: string | number;
|
@@ -2013,7 +2013,7 @@ export declare const VTextField: {
|
|
2013
2013
|
disabled: boolean | null;
|
2014
2014
|
readonly: boolean | null;
|
2015
2015
|
messages: string | readonly string[];
|
2016
|
-
rules: readonly import("../../
|
2016
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
2017
2017
|
focused: boolean;
|
2018
2018
|
errorMessages: string | readonly string[] | null;
|
2019
2019
|
maxErrors: string | number;
|
@@ -2038,9 +2038,9 @@ export declare const VTextField: {
|
|
2038
2038
|
baseColor?: string | undefined;
|
2039
2039
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2040
2040
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2041
|
-
iconColor?: string | boolean | undefined;
|
2042
2041
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
2043
2042
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
2043
|
+
iconColor?: string | boolean | undefined;
|
2044
2044
|
hint?: string | undefined;
|
2045
2045
|
hideDetails?: boolean | "auto" | undefined;
|
2046
2046
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -2052,7 +2052,7 @@ export declare const VTextField: {
|
|
2052
2052
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
2053
2053
|
modelValue?: unknown;
|
2054
2054
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
2055
|
-
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "
|
2055
|
+
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "iconColor" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
2056
2056
|
$: import("vue").ComponentInternalInstance;
|
2057
2057
|
$data: {};
|
2058
2058
|
$props: Partial<{
|
@@ -2099,13 +2099,13 @@ export declare const VTextField: {
|
|
2099
2099
|
rounded?: string | number | boolean | undefined;
|
2100
2100
|
baseColor?: string | undefined;
|
2101
2101
|
bgColor?: string | undefined;
|
2102
|
-
iconColor?: string | boolean | undefined;
|
2103
2102
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2104
2103
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2105
2104
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
2106
2105
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2107
2106
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2108
2107
|
centerAffix?: boolean | undefined;
|
2108
|
+
iconColor?: string | boolean | undefined;
|
2109
2109
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
2110
2110
|
$attrs: {
|
2111
2111
|
[x: string]: unknown;
|
@@ -2158,13 +2158,13 @@ export declare const VTextField: {
|
|
2158
2158
|
rounded?: string | number | boolean | undefined;
|
2159
2159
|
baseColor?: string | undefined;
|
2160
2160
|
bgColor?: string | undefined;
|
2161
|
-
iconColor?: string | boolean | undefined;
|
2162
2161
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2163
2162
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2164
2163
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
2165
2164
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2166
2165
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2167
2166
|
centerAffix?: boolean | undefined;
|
2167
|
+
iconColor?: string | boolean | undefined;
|
2168
2168
|
} & {
|
2169
2169
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
2170
2170
|
}, {
|
@@ -2268,13 +2268,13 @@ export declare const VTextField: {
|
|
2268
2268
|
rounded?: string | number | boolean | undefined;
|
2269
2269
|
baseColor?: string | undefined;
|
2270
2270
|
bgColor?: string | undefined;
|
2271
|
-
iconColor?: string | boolean | undefined;
|
2272
2271
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2273
2272
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2274
2273
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
2275
2274
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2276
2275
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2277
2276
|
centerAffix?: boolean | undefined;
|
2277
|
+
iconColor?: string | boolean | undefined;
|
2278
2278
|
} & {
|
2279
2279
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
2280
2280
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -2283,7 +2283,7 @@ export declare const VTextField: {
|
|
2283
2283
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
2284
2284
|
modelValue?: unknown;
|
2285
2285
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
2286
|
-
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "
|
2286
|
+
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "iconColor" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
|
2287
2287
|
_allExposed: {
|
2288
2288
|
reset: () => Promise<void>;
|
2289
2289
|
resetValidation: () => Promise<void>;
|
@@ -2312,7 +2312,7 @@ export declare const VTextField: {
|
|
2312
2312
|
disabled: boolean;
|
2313
2313
|
readonly: boolean | null;
|
2314
2314
|
messages: string | readonly string[];
|
2315
|
-
rules: readonly import("../../
|
2315
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
2316
2316
|
focused: boolean;
|
2317
2317
|
errorMessages: string | readonly string[] | null;
|
2318
2318
|
maxErrors: string | number;
|
@@ -2412,7 +2412,7 @@ export declare const VTextField: {
|
|
2412
2412
|
default: null;
|
2413
2413
|
};
|
2414
2414
|
rules: {
|
2415
|
-
type: PropType<readonly import("../../types.js").ValidationRule[]>;
|
2415
|
+
type: PropType<readonly (import("../../types.js").ValidationRule | import("../../labs/rules/index.js").ValidationAlias)[]>;
|
2416
2416
|
default: () => never[];
|
2417
2417
|
};
|
2418
2418
|
modelValue: null;
|
@@ -2523,7 +2523,7 @@ export declare const VTextField: {
|
|
2523
2523
|
default: null;
|
2524
2524
|
};
|
2525
2525
|
rules: {
|
2526
|
-
type: PropType<readonly import("../../types.js").ValidationRule[]>;
|
2526
|
+
type: PropType<readonly (import("../../types.js").ValidationRule | import("../../labs/rules/index.js").ValidationAlias)[]>;
|
2527
2527
|
default: () => never[];
|
2528
2528
|
};
|
2529
2529
|
modelValue: null;
|