@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
@@ -241,13 +241,13 @@ export declare const VField: {
|
|
241
241
|
rounded?: string | number | boolean | undefined;
|
242
242
|
baseColor?: string | undefined;
|
243
243
|
bgColor?: string | undefined;
|
244
|
-
iconColor?: string | boolean | undefined;
|
245
244
|
appendInnerIcon?: IconValue | undefined;
|
246
245
|
prependInnerIcon?: IconValue | undefined;
|
247
246
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
248
247
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
249
248
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
250
249
|
centerAffix?: boolean | undefined;
|
250
|
+
iconColor?: string | boolean | undefined;
|
251
251
|
} & {
|
252
252
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
253
253
|
}, {
|
@@ -320,13 +320,13 @@ export declare const VField: {
|
|
320
320
|
rounded?: string | number | boolean | undefined;
|
321
321
|
baseColor?: string | undefined;
|
322
322
|
bgColor?: string | undefined;
|
323
|
-
iconColor?: string | boolean | undefined;
|
324
323
|
appendInnerIcon?: IconValue | undefined;
|
325
324
|
prependInnerIcon?: IconValue | undefined;
|
326
325
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
327
326
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
328
327
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
329
328
|
centerAffix?: boolean | undefined;
|
329
|
+
iconColor?: string | boolean | undefined;
|
330
330
|
} & {
|
331
331
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
332
332
|
}, {
|
@@ -381,13 +381,13 @@ export declare const VField: {
|
|
381
381
|
rounded?: string | number | boolean | undefined;
|
382
382
|
baseColor?: string | undefined;
|
383
383
|
bgColor?: string | undefined;
|
384
|
-
iconColor?: string | boolean | undefined;
|
385
384
|
appendInnerIcon?: IconValue | undefined;
|
386
385
|
prependInnerIcon?: IconValue | undefined;
|
387
386
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
388
387
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
389
388
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
390
389
|
centerAffix?: boolean | undefined;
|
390
|
+
iconColor?: string | boolean | undefined;
|
391
391
|
} & {
|
392
392
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
393
393
|
}, {
|
@@ -288,14 +288,14 @@ export declare const makeVFileInputProps: <Defaults extends {
|
|
288
288
|
default: unknown extends Defaults["readonly"] ? boolean | null : NonNullable<boolean | null> | Defaults["readonly"];
|
289
289
|
};
|
290
290
|
rules: unknown extends Defaults["rules"] ? {
|
291
|
-
type: PropType<readonly import("../../types.js").ValidationRule[]>;
|
291
|
+
type: PropType<readonly (import("../../types.js").ValidationRule | import("../../labs/rules/index.js").ValidationAlias)[]>;
|
292
292
|
default: () => never[];
|
293
293
|
} : Omit<{
|
294
|
-
type: PropType<readonly import("../../types.js").ValidationRule[]>;
|
294
|
+
type: PropType<readonly (import("../../types.js").ValidationRule | import("../../labs/rules/index.js").ValidationAlias)[]>;
|
295
295
|
default: () => never[];
|
296
296
|
}, "type" | "default"> & {
|
297
|
-
type: PropType<unknown extends Defaults["rules"] ? readonly import("../../
|
298
|
-
default: unknown extends Defaults["rules"] ? readonly import("../../
|
297
|
+
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"]>;
|
298
|
+
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"];
|
299
299
|
};
|
300
300
|
validateOn: unknown extends Defaults["validateOn"] ? PropType<("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined> : {
|
301
301
|
type: PropType<unknown extends Defaults["validateOn"] ? ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined : ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | Defaults["validateOn"] | undefined>;
|
@@ -455,7 +455,7 @@ export declare const VFileInput: {
|
|
455
455
|
multiple: boolean;
|
456
456
|
readonly: boolean | null;
|
457
457
|
messages: string | readonly string[];
|
458
|
-
rules: readonly import("../../
|
458
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
459
459
|
counter: boolean;
|
460
460
|
focused: boolean;
|
461
461
|
errorMessages: string | readonly string[] | null;
|
@@ -495,7 +495,6 @@ export declare const VFileInput: {
|
|
495
495
|
baseColor?: string | undefined;
|
496
496
|
bgColor?: string | undefined;
|
497
497
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
498
|
-
iconColor?: string | boolean | undefined;
|
499
498
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
500
499
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
501
500
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -504,6 +503,7 @@ export declare const VFileInput: {
|
|
504
503
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
505
504
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
506
505
|
centerAffix?: boolean | undefined;
|
506
|
+
iconColor?: string | boolean | undefined;
|
507
507
|
hint?: string | undefined;
|
508
508
|
hideDetails?: boolean | "auto" | undefined;
|
509
509
|
} & {
|
@@ -590,7 +590,7 @@ export declare const VFileInput: {
|
|
590
590
|
disabled: boolean | null;
|
591
591
|
readonly: boolean | null;
|
592
592
|
messages: string | readonly string[];
|
593
|
-
rules: readonly import("../../
|
593
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
594
594
|
focused: boolean;
|
595
595
|
errorMessages: string | readonly string[] | null;
|
596
596
|
maxErrors: string | number;
|
@@ -606,7 +606,7 @@ export declare const VFileInput: {
|
|
606
606
|
disabled: boolean | null;
|
607
607
|
readonly: boolean | null;
|
608
608
|
messages: string | readonly string[];
|
609
|
-
rules: readonly import("../../
|
609
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
610
610
|
focused: boolean;
|
611
611
|
errorMessages: string | readonly string[] | null;
|
612
612
|
maxErrors: string | number;
|
@@ -630,9 +630,9 @@ export declare const VFileInput: {
|
|
630
630
|
baseColor?: string | undefined;
|
631
631
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
632
632
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
633
|
-
iconColor?: string | boolean | undefined;
|
634
633
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
635
634
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
635
|
+
iconColor?: string | boolean | undefined;
|
636
636
|
hint?: string | undefined;
|
637
637
|
hideDetails?: boolean | "auto" | undefined;
|
638
638
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -661,7 +661,7 @@ export declare const VFileInput: {
|
|
661
661
|
disabled: boolean | null;
|
662
662
|
readonly: boolean | null;
|
663
663
|
messages: string | readonly string[];
|
664
|
-
rules: readonly import("../../
|
664
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
665
665
|
focused: boolean;
|
666
666
|
errorMessages: string | readonly string[] | null;
|
667
667
|
maxErrors: string | number;
|
@@ -686,9 +686,9 @@ export declare const VFileInput: {
|
|
686
686
|
baseColor?: string | undefined;
|
687
687
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
688
688
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
689
|
-
iconColor?: string | boolean | undefined;
|
690
689
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
691
690
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
691
|
+
iconColor?: string | boolean | undefined;
|
692
692
|
hint?: string | undefined;
|
693
693
|
hideDetails?: boolean | "auto" | undefined;
|
694
694
|
} & {}, {
|
@@ -706,7 +706,7 @@ export declare const VFileInput: {
|
|
706
706
|
disabled: boolean | null;
|
707
707
|
readonly: boolean | null;
|
708
708
|
messages: string | readonly string[];
|
709
|
-
rules: readonly import("../../
|
709
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
710
710
|
focused: boolean;
|
711
711
|
errorMessages: string | readonly string[] | null;
|
712
712
|
maxErrors: string | number;
|
@@ -748,7 +748,7 @@ export declare const VFileInput: {
|
|
748
748
|
disabled: boolean | null;
|
749
749
|
readonly: boolean | null;
|
750
750
|
messages: string | readonly string[];
|
751
|
-
rules: readonly import("../../
|
751
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
752
752
|
focused: boolean;
|
753
753
|
errorMessages: string | readonly string[] | null;
|
754
754
|
maxErrors: string | number;
|
@@ -764,7 +764,7 @@ export declare const VFileInput: {
|
|
764
764
|
disabled: boolean | null;
|
765
765
|
readonly: boolean | null;
|
766
766
|
messages: string | readonly string[];
|
767
|
-
rules: readonly import("../../
|
767
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
768
768
|
focused: boolean;
|
769
769
|
errorMessages: string | readonly string[] | null;
|
770
770
|
maxErrors: string | number;
|
@@ -789,9 +789,9 @@ export declare const VFileInput: {
|
|
789
789
|
baseColor?: string | undefined;
|
790
790
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
791
791
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
792
|
-
iconColor?: string | boolean | undefined;
|
793
792
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
794
793
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
794
|
+
iconColor?: string | boolean | undefined;
|
795
795
|
hint?: string | undefined;
|
796
796
|
hideDetails?: boolean | "auto" | undefined;
|
797
797
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -803,7 +803,7 @@ export declare const VFileInput: {
|
|
803
803
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
804
804
|
modelValue?: unknown;
|
805
805
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
806
|
-
}, 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" | "
|
806
|
+
}, 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}`> & {
|
807
807
|
_allExposed: {
|
808
808
|
reset: () => Promise<void>;
|
809
809
|
resetValidation: () => Promise<void>;
|
@@ -828,7 +828,7 @@ export declare const VFileInput: {
|
|
828
828
|
multiple: boolean;
|
829
829
|
readonly: boolean | null;
|
830
830
|
messages: string | readonly string[];
|
831
|
-
rules: readonly import("../../
|
831
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
832
832
|
counter: boolean;
|
833
833
|
focused: boolean;
|
834
834
|
errorMessages: string | readonly string[] | null;
|
@@ -893,7 +893,7 @@ export declare const VFileInput: {
|
|
893
893
|
multiple: boolean;
|
894
894
|
readonly: boolean | null;
|
895
895
|
messages: string | readonly string[];
|
896
|
-
rules: readonly import("../../
|
896
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
897
897
|
counter: boolean;
|
898
898
|
focused: boolean;
|
899
899
|
errorMessages: string | readonly string[] | null;
|
@@ -933,7 +933,6 @@ export declare const VFileInput: {
|
|
933
933
|
baseColor?: string | undefined;
|
934
934
|
bgColor?: string | undefined;
|
935
935
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
936
|
-
iconColor?: string | boolean | undefined;
|
937
936
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
938
937
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
939
938
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -942,6 +941,7 @@ export declare const VFileInput: {
|
|
942
941
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
943
942
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
944
943
|
centerAffix?: boolean | undefined;
|
944
|
+
iconColor?: string | boolean | undefined;
|
945
945
|
hint?: string | undefined;
|
946
946
|
hideDetails?: boolean | "auto" | undefined;
|
947
947
|
} & {
|
@@ -1028,7 +1028,7 @@ export declare const VFileInput: {
|
|
1028
1028
|
disabled: boolean | null;
|
1029
1029
|
readonly: boolean | null;
|
1030
1030
|
messages: string | readonly string[];
|
1031
|
-
rules: readonly import("../../
|
1031
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
1032
1032
|
focused: boolean;
|
1033
1033
|
errorMessages: string | readonly string[] | null;
|
1034
1034
|
maxErrors: string | number;
|
@@ -1044,7 +1044,7 @@ export declare const VFileInput: {
|
|
1044
1044
|
disabled: boolean | null;
|
1045
1045
|
readonly: boolean | null;
|
1046
1046
|
messages: string | readonly string[];
|
1047
|
-
rules: readonly import("../../
|
1047
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
1048
1048
|
focused: boolean;
|
1049
1049
|
errorMessages: string | readonly string[] | null;
|
1050
1050
|
maxErrors: string | number;
|
@@ -1068,9 +1068,9 @@ export declare const VFileInput: {
|
|
1068
1068
|
baseColor?: string | undefined;
|
1069
1069
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1070
1070
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1071
|
-
iconColor?: string | boolean | undefined;
|
1072
1071
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
1073
1072
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
1073
|
+
iconColor?: string | boolean | undefined;
|
1074
1074
|
hint?: string | undefined;
|
1075
1075
|
hideDetails?: boolean | "auto" | undefined;
|
1076
1076
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -1099,7 +1099,7 @@ export declare const VFileInput: {
|
|
1099
1099
|
disabled: boolean | null;
|
1100
1100
|
readonly: boolean | null;
|
1101
1101
|
messages: string | readonly string[];
|
1102
|
-
rules: readonly import("../../
|
1102
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
1103
1103
|
focused: boolean;
|
1104
1104
|
errorMessages: string | readonly string[] | null;
|
1105
1105
|
maxErrors: string | number;
|
@@ -1124,9 +1124,9 @@ export declare const VFileInput: {
|
|
1124
1124
|
baseColor?: string | undefined;
|
1125
1125
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1126
1126
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1127
|
-
iconColor?: string | boolean | undefined;
|
1128
1127
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
1129
1128
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
1129
|
+
iconColor?: string | boolean | undefined;
|
1130
1130
|
hint?: string | undefined;
|
1131
1131
|
hideDetails?: boolean | "auto" | undefined;
|
1132
1132
|
} & {}, {
|
@@ -1144,7 +1144,7 @@ export declare const VFileInput: {
|
|
1144
1144
|
disabled: boolean | null;
|
1145
1145
|
readonly: boolean | null;
|
1146
1146
|
messages: string | readonly string[];
|
1147
|
-
rules: readonly import("../../
|
1147
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
1148
1148
|
focused: boolean;
|
1149
1149
|
errorMessages: string | readonly string[] | null;
|
1150
1150
|
maxErrors: string | number;
|
@@ -1186,7 +1186,7 @@ export declare const VFileInput: {
|
|
1186
1186
|
disabled: boolean | null;
|
1187
1187
|
readonly: boolean | null;
|
1188
1188
|
messages: string | readonly string[];
|
1189
|
-
rules: readonly import("../../
|
1189
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
1190
1190
|
focused: boolean;
|
1191
1191
|
errorMessages: string | readonly string[] | null;
|
1192
1192
|
maxErrors: string | number;
|
@@ -1202,7 +1202,7 @@ export declare const VFileInput: {
|
|
1202
1202
|
disabled: boolean | null;
|
1203
1203
|
readonly: boolean | null;
|
1204
1204
|
messages: string | readonly string[];
|
1205
|
-
rules: readonly import("../../
|
1205
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
1206
1206
|
focused: boolean;
|
1207
1207
|
errorMessages: string | readonly string[] | null;
|
1208
1208
|
maxErrors: string | number;
|
@@ -1227,9 +1227,9 @@ export declare const VFileInput: {
|
|
1227
1227
|
baseColor?: string | undefined;
|
1228
1228
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1229
1229
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1230
|
-
iconColor?: string | boolean | undefined;
|
1231
1230
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
1232
1231
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
1232
|
+
iconColor?: string | boolean | undefined;
|
1233
1233
|
hint?: string | undefined;
|
1234
1234
|
hideDetails?: boolean | "auto" | undefined;
|
1235
1235
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -1241,7 +1241,7 @@ export declare const VFileInput: {
|
|
1241
1241
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
1242
1242
|
modelValue?: unknown;
|
1243
1243
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
1244
|
-
}, 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" | "
|
1244
|
+
}, 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}`> & {
|
1245
1245
|
_allExposed: {
|
1246
1246
|
reset: () => Promise<void>;
|
1247
1247
|
resetValidation: () => Promise<void>;
|
@@ -1261,7 +1261,7 @@ export declare const VFileInput: {
|
|
1261
1261
|
multiple: boolean;
|
1262
1262
|
readonly: boolean | null;
|
1263
1263
|
messages: string | readonly string[];
|
1264
|
-
rules: readonly import("../../
|
1264
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
1265
1265
|
counter: boolean;
|
1266
1266
|
focused: boolean;
|
1267
1267
|
errorMessages: string | readonly string[] | null;
|
@@ -1301,7 +1301,7 @@ export declare const VFileInput: {
|
|
1301
1301
|
multiple: boolean;
|
1302
1302
|
readonly: boolean | null;
|
1303
1303
|
messages: string | readonly string[];
|
1304
|
-
rules: readonly import("../../
|
1304
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
1305
1305
|
counter: boolean;
|
1306
1306
|
focused: boolean;
|
1307
1307
|
errorMessages: string | readonly string[] | null;
|
@@ -1341,7 +1341,6 @@ export declare const VFileInput: {
|
|
1341
1341
|
baseColor?: string | undefined;
|
1342
1342
|
bgColor?: string | undefined;
|
1343
1343
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1344
|
-
iconColor?: string | boolean | undefined;
|
1345
1344
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1346
1345
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1347
1346
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -1350,6 +1349,7 @@ export declare const VFileInput: {
|
|
1350
1349
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1351
1350
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1352
1351
|
centerAffix?: boolean | undefined;
|
1352
|
+
iconColor?: string | boolean | undefined;
|
1353
1353
|
hint?: string | undefined;
|
1354
1354
|
hideDetails?: boolean | "auto" | undefined;
|
1355
1355
|
} & {
|
@@ -1436,7 +1436,7 @@ export declare const VFileInput: {
|
|
1436
1436
|
disabled: boolean | null;
|
1437
1437
|
readonly: boolean | null;
|
1438
1438
|
messages: string | readonly string[];
|
1439
|
-
rules: readonly import("../../
|
1439
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
1440
1440
|
focused: boolean;
|
1441
1441
|
errorMessages: string | readonly string[] | null;
|
1442
1442
|
maxErrors: string | number;
|
@@ -1452,7 +1452,7 @@ export declare const VFileInput: {
|
|
1452
1452
|
disabled: boolean | null;
|
1453
1453
|
readonly: boolean | null;
|
1454
1454
|
messages: string | readonly string[];
|
1455
|
-
rules: readonly import("../../
|
1455
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
1456
1456
|
focused: boolean;
|
1457
1457
|
errorMessages: string | readonly string[] | null;
|
1458
1458
|
maxErrors: string | number;
|
@@ -1476,9 +1476,9 @@ export declare const VFileInput: {
|
|
1476
1476
|
baseColor?: string | undefined;
|
1477
1477
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1478
1478
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1479
|
-
iconColor?: string | boolean | undefined;
|
1480
1479
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
1481
1480
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
1481
|
+
iconColor?: string | boolean | undefined;
|
1482
1482
|
hint?: string | undefined;
|
1483
1483
|
hideDetails?: boolean | "auto" | undefined;
|
1484
1484
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -1507,7 +1507,7 @@ export declare const VFileInput: {
|
|
1507
1507
|
disabled: boolean | null;
|
1508
1508
|
readonly: boolean | null;
|
1509
1509
|
messages: string | readonly string[];
|
1510
|
-
rules: readonly import("../../
|
1510
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
1511
1511
|
focused: boolean;
|
1512
1512
|
errorMessages: string | readonly string[] | null;
|
1513
1513
|
maxErrors: string | number;
|
@@ -1532,9 +1532,9 @@ export declare const VFileInput: {
|
|
1532
1532
|
baseColor?: string | undefined;
|
1533
1533
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1534
1534
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1535
|
-
iconColor?: string | boolean | undefined;
|
1536
1535
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
1537
1536
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
1537
|
+
iconColor?: string | boolean | undefined;
|
1538
1538
|
hint?: string | undefined;
|
1539
1539
|
hideDetails?: boolean | "auto" | undefined;
|
1540
1540
|
} & {}, {
|
@@ -1552,7 +1552,7 @@ export declare const VFileInput: {
|
|
1552
1552
|
disabled: boolean | null;
|
1553
1553
|
readonly: boolean | null;
|
1554
1554
|
messages: string | readonly string[];
|
1555
|
-
rules: readonly import("../../
|
1555
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
1556
1556
|
focused: boolean;
|
1557
1557
|
errorMessages: string | readonly string[] | null;
|
1558
1558
|
maxErrors: string | number;
|
@@ -1594,7 +1594,7 @@ export declare const VFileInput: {
|
|
1594
1594
|
disabled: boolean | null;
|
1595
1595
|
readonly: boolean | null;
|
1596
1596
|
messages: string | readonly string[];
|
1597
|
-
rules: readonly import("../../
|
1597
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
1598
1598
|
focused: boolean;
|
1599
1599
|
errorMessages: string | readonly string[] | null;
|
1600
1600
|
maxErrors: string | number;
|
@@ -1610,7 +1610,7 @@ export declare const VFileInput: {
|
|
1610
1610
|
disabled: boolean | null;
|
1611
1611
|
readonly: boolean | null;
|
1612
1612
|
messages: string | readonly string[];
|
1613
|
-
rules: readonly import("../../
|
1613
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
1614
1614
|
focused: boolean;
|
1615
1615
|
errorMessages: string | readonly string[] | null;
|
1616
1616
|
maxErrors: string | number;
|
@@ -1635,9 +1635,9 @@ export declare const VFileInput: {
|
|
1635
1635
|
baseColor?: string | undefined;
|
1636
1636
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1637
1637
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1638
|
-
iconColor?: string | boolean | undefined;
|
1639
1638
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
1640
1639
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
1640
|
+
iconColor?: string | boolean | undefined;
|
1641
1641
|
hint?: string | undefined;
|
1642
1642
|
hideDetails?: boolean | "auto" | undefined;
|
1643
1643
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -1649,7 +1649,7 @@ export declare const VFileInput: {
|
|
1649
1649
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
1650
1650
|
modelValue?: unknown;
|
1651
1651
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
1652
|
-
}, 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" | "
|
1652
|
+
}, 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}`> & {
|
1653
1653
|
_allExposed: {
|
1654
1654
|
reset: () => Promise<void>;
|
1655
1655
|
resetValidation: () => Promise<void>;
|
@@ -1674,7 +1674,7 @@ export declare const VFileInput: {
|
|
1674
1674
|
multiple: boolean;
|
1675
1675
|
readonly: boolean | null;
|
1676
1676
|
messages: string | readonly string[];
|
1677
|
-
rules: readonly import("../../
|
1677
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
1678
1678
|
counter: boolean;
|
1679
1679
|
focused: boolean;
|
1680
1680
|
errorMessages: string | readonly string[] | null;
|
@@ -1793,7 +1793,7 @@ export declare const VFileInput: {
|
|
1793
1793
|
default: null;
|
1794
1794
|
};
|
1795
1795
|
rules: {
|
1796
|
-
type: PropType<readonly import("../../types.js").ValidationRule[]>;
|
1796
|
+
type: PropType<readonly (import("../../types.js").ValidationRule | import("../../labs/rules/index.js").ValidationAlias)[]>;
|
1797
1797
|
default: () => never[];
|
1798
1798
|
};
|
1799
1799
|
validateOn: PropType<import("../../composables/validation.js").ValidationProps["validateOn"]>;
|
@@ -1917,7 +1917,7 @@ export declare const VFileInput: {
|
|
1917
1917
|
default: null;
|
1918
1918
|
};
|
1919
1919
|
rules: {
|
1920
|
-
type: PropType<readonly import("../../types.js").ValidationRule[]>;
|
1920
|
+
type: PropType<readonly (import("../../types.js").ValidationRule | import("../../labs/rules/index.js").ValidationAlias)[]>;
|
1921
1921
|
default: () => never[];
|
1922
1922
|
};
|
1923
1923
|
validateOn: PropType<import("../../composables/validation.js").ValidationProps["validateOn"]>;
|
@@ -114,14 +114,14 @@ export declare const makeVInputProps: <Defaults extends {
|
|
114
114
|
default: unknown extends Defaults["readonly"] ? boolean | null : NonNullable<boolean | null> | Defaults["readonly"];
|
115
115
|
};
|
116
116
|
rules: unknown extends Defaults["rules"] ? {
|
117
|
-
type: PropType<readonly import("../../composables/validation.js").ValidationRule[]>;
|
117
|
+
type: PropType<readonly (import("../../composables/validation.js").ValidationRule | import("../../labs/rules/index.js").ValidationAlias)[]>;
|
118
118
|
default: () => never[];
|
119
119
|
} : Omit<{
|
120
|
-
type: PropType<readonly import("../../composables/validation.js").ValidationRule[]>;
|
120
|
+
type: PropType<readonly (import("../../composables/validation.js").ValidationRule | import("../../labs/rules/index.js").ValidationAlias)[]>;
|
121
121
|
default: () => never[];
|
122
122
|
}, "type" | "default"> & {
|
123
|
-
type: PropType<unknown extends Defaults["rules"] ? readonly import("../../composables/validation.js").
|
124
|
-
default: unknown extends Defaults["rules"] ? readonly import("../../composables/validation.js").
|
123
|
+
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"]>;
|
124
|
+
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"];
|
125
125
|
};
|
126
126
|
modelValue: unknown extends Defaults["modelValue"] ? null : {
|
127
127
|
type: PropType<unknown extends Defaults["modelValue"] ? any : any>;
|
@@ -251,7 +251,7 @@ export declare const makeVInputProps: <Defaults extends {
|
|
251
251
|
validator: (v: any) => boolean;
|
252
252
|
}, "type" | "default"> & {
|
253
253
|
type: PropType<unknown extends Defaults["direction"] ? "horizontal" | "vertical" : "horizontal" | "vertical" | Defaults["direction"]>;
|
254
|
-
default: unknown extends Defaults["direction"] ? "horizontal" | "vertical" :
|
254
|
+
default: unknown extends Defaults["direction"] ? "horizontal" | "vertical" : Defaults["direction"] | NonNullable<"horizontal" | "vertical">;
|
255
255
|
};
|
256
256
|
'onClick:prepend': unknown extends Defaults["onClick:prepend"] ? PropType<(args_0: MouseEvent) => void> : {
|
257
257
|
type: PropType<unknown extends Defaults["onClick:prepend"] ? (args_0: MouseEvent) => void : ((args_0: MouseEvent) => void) | Defaults["onClick:prepend"]>;
|
@@ -277,7 +277,7 @@ export declare const VInput: {
|
|
277
277
|
disabled: boolean | null;
|
278
278
|
readonly: boolean | null;
|
279
279
|
messages: string | readonly string[];
|
280
|
-
rules: readonly import("../../composables/validation.js").
|
280
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
281
281
|
focused: boolean;
|
282
282
|
errorMessages: string | readonly string[] | null;
|
283
283
|
maxErrors: string | number;
|
@@ -302,9 +302,9 @@ export declare const VInput: {
|
|
302
302
|
baseColor?: string | undefined;
|
303
303
|
prependIcon?: IconValue | undefined;
|
304
304
|
appendIcon?: IconValue | undefined;
|
305
|
-
iconColor?: string | boolean | undefined;
|
306
305
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
307
306
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
307
|
+
iconColor?: string | boolean | undefined;
|
308
308
|
hint?: string | undefined;
|
309
309
|
hideDetails?: boolean | "auto" | undefined;
|
310
310
|
} & {}, {
|
@@ -322,7 +322,7 @@ export declare const VInput: {
|
|
322
322
|
disabled: boolean | null;
|
323
323
|
readonly: boolean | null;
|
324
324
|
messages: string | readonly string[];
|
325
|
-
rules: readonly import("../../composables/validation.js").
|
325
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
326
326
|
focused: boolean;
|
327
327
|
errorMessages: string | readonly string[] | null;
|
328
328
|
maxErrors: string | number;
|
@@ -351,7 +351,7 @@ export declare const VInput: {
|
|
351
351
|
disabled: boolean | null;
|
352
352
|
readonly: boolean | null;
|
353
353
|
messages: string | readonly string[];
|
354
|
-
rules: readonly import("../../composables/validation.js").
|
354
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
355
355
|
focused: boolean;
|
356
356
|
errorMessages: string | readonly string[] | null;
|
357
357
|
maxErrors: string | number;
|
@@ -376,9 +376,9 @@ export declare const VInput: {
|
|
376
376
|
baseColor?: string | undefined;
|
377
377
|
prependIcon?: IconValue | undefined;
|
378
378
|
appendIcon?: IconValue | undefined;
|
379
|
-
iconColor?: string | boolean | undefined;
|
380
379
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
381
380
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
381
|
+
iconColor?: string | boolean | undefined;
|
382
382
|
hint?: string | undefined;
|
383
383
|
hideDetails?: boolean | "auto" | undefined;
|
384
384
|
} & {}, {
|
@@ -394,7 +394,7 @@ export declare const VInput: {
|
|
394
394
|
disabled: boolean | null;
|
395
395
|
readonly: boolean | null;
|
396
396
|
messages: string | readonly string[];
|
397
|
-
rules: readonly import("../../composables/validation.js").
|
397
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
398
398
|
focused: boolean;
|
399
399
|
errorMessages: string | readonly string[] | null;
|
400
400
|
maxErrors: string | number;
|
@@ -414,7 +414,7 @@ export declare const VInput: {
|
|
414
414
|
disabled: boolean | null;
|
415
415
|
readonly: boolean | null;
|
416
416
|
messages: string | readonly string[];
|
417
|
-
rules: readonly import("../../composables/validation.js").
|
417
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
418
418
|
focused: boolean;
|
419
419
|
errorMessages: string | readonly string[] | null;
|
420
420
|
maxErrors: string | number;
|
@@ -439,9 +439,9 @@ export declare const VInput: {
|
|
439
439
|
baseColor?: string | undefined;
|
440
440
|
prependIcon?: IconValue | undefined;
|
441
441
|
appendIcon?: IconValue | undefined;
|
442
|
-
iconColor?: string | boolean | undefined;
|
443
442
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
444
443
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
444
|
+
iconColor?: string | boolean | undefined;
|
445
445
|
hint?: string | undefined;
|
446
446
|
hideDetails?: boolean | "auto" | undefined;
|
447
447
|
} & {}, {
|
@@ -459,7 +459,7 @@ export declare const VInput: {
|
|
459
459
|
disabled: boolean | null;
|
460
460
|
readonly: boolean | null;
|
461
461
|
messages: string | readonly string[];
|
462
|
-
rules: readonly import("../../composables/validation.js").
|
462
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
463
463
|
focused: boolean;
|
464
464
|
errorMessages: string | readonly string[] | null;
|
465
465
|
maxErrors: string | number;
|
@@ -500,7 +500,7 @@ export declare const VInput: {
|
|
500
500
|
default: null;
|
501
501
|
};
|
502
502
|
rules: {
|
503
|
-
type: PropType<readonly import("../../composables/validation.js").ValidationRule[]>;
|
503
|
+
type: PropType<readonly (import("../../composables/validation.js").ValidationRule | import("../../labs/rules/index.js").ValidationAlias)[]>;
|
504
504
|
default: () => never[];
|
505
505
|
};
|
506
506
|
modelValue: null;
|
@@ -569,7 +569,7 @@ export declare const VInput: {
|
|
569
569
|
default: null;
|
570
570
|
};
|
571
571
|
rules: {
|
572
|
-
type: PropType<readonly import("../../composables/validation.js").ValidationRule[]>;
|
572
|
+
type: PropType<readonly (import("../../composables/validation.js").ValidationRule | import("../../labs/rules/index.js").ValidationAlias)[]>;
|
573
573
|
default: () => never[];
|
574
574
|
};
|
575
575
|
modelValue: null;
|