mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
types(Field): expose sub-types of FieldRule (#9843)
* types(Field): expose sub-types of FieldRule * types: update
This commit is contained in:
parent
ca41a57f30
commit
c65e336bf6
@ -7,13 +7,9 @@ export type CheckboxLabelPosition = CheckerLabelPosition;
|
||||
|
||||
export type CheckboxExpose = {
|
||||
toggle: (newValue?: boolean) => void;
|
||||
/**
|
||||
* @private
|
||||
*/
|
||||
/** @private */
|
||||
props: CheckboxProps;
|
||||
/**
|
||||
* @private
|
||||
*/
|
||||
/** @private */
|
||||
checked: ComputedRef<boolean>;
|
||||
};
|
||||
|
||||
|
@ -318,8 +318,11 @@ import type {
|
||||
FieldProps,
|
||||
FieldInstance,
|
||||
FieldTextAlign,
|
||||
FieldRuleMessage,
|
||||
FieldClearTrigger,
|
||||
FieldFormatTrigger,
|
||||
FieldRuleValidator,
|
||||
FiledRuleFormatter,
|
||||
FieldValidateError,
|
||||
FieldAutosizeConfig,
|
||||
FieldValidateTrigger,
|
||||
|
@ -337,8 +337,11 @@ import type {
|
||||
FieldProps,
|
||||
FieldInstance,
|
||||
FieldTextAlign,
|
||||
FieldRuleMessage,
|
||||
FieldClearTrigger,
|
||||
FieldFormatTrigger,
|
||||
FieldRuleValidator,
|
||||
FiledRuleFormatter,
|
||||
FieldValidateError,
|
||||
FieldAutosizeConfig,
|
||||
FieldValidateTrigger,
|
||||
|
@ -9,8 +9,11 @@ export type {
|
||||
FieldRule,
|
||||
FieldInstance,
|
||||
FieldTextAlign,
|
||||
FieldRuleMessage,
|
||||
FieldClearTrigger,
|
||||
FieldFormatTrigger,
|
||||
FieldRuleValidator,
|
||||
FiledRuleFormatter,
|
||||
FieldValidateError,
|
||||
FieldAutosizeConfig,
|
||||
FieldValidateTrigger,
|
||||
|
@ -1,3 +1,4 @@
|
||||
/* eslint-disable no-use-before-define */
|
||||
import type { ComputedRef, ComponentPublicInstance } from 'vue';
|
||||
import type { FieldProps } from './Field';
|
||||
|
||||
@ -28,16 +29,24 @@ export type FieldValidateError = {
|
||||
message: string;
|
||||
};
|
||||
|
||||
export type FieldRuleMessage =
|
||||
| string
|
||||
| ((value: any, rule: FieldRule) => string);
|
||||
|
||||
export type FieldRuleValidator = (
|
||||
value: any,
|
||||
rule: FieldRule
|
||||
) => boolean | string | Promise<boolean | string>;
|
||||
|
||||
export type FiledRuleFormatter = (value: any, rule: FieldRule) => string;
|
||||
|
||||
export type FieldRule = {
|
||||
pattern?: RegExp;
|
||||
trigger?: FieldValidateTrigger;
|
||||
message?: string | ((value: any, rule: FieldRule) => string);
|
||||
message?: FieldRuleMessage;
|
||||
required?: boolean;
|
||||
validator?: (
|
||||
value: any,
|
||||
rule: FieldRule
|
||||
) => boolean | string | Promise<boolean | string>;
|
||||
formatter?: (value: any, rule: FieldRule) => string;
|
||||
validator?: FieldRuleValidator;
|
||||
formatter?: FiledRuleFormatter;
|
||||
};
|
||||
|
||||
// Shared props of Field and Form
|
||||
@ -57,9 +66,7 @@ export type FieldExpose = {
|
||||
rules?: FieldRule[] | undefined
|
||||
) => Promise<void | FieldValidateError>;
|
||||
resetValidation: () => void;
|
||||
/**
|
||||
* @private
|
||||
*/
|
||||
/** @private */
|
||||
formValue: ComputedRef<unknown>;
|
||||
};
|
||||
|
||||
|
@ -19,9 +19,7 @@ export type SwipeExpose = {
|
||||
next: () => void;
|
||||
resize: () => void;
|
||||
swipeTo: (index: number, options?: SwipeToOptions) => void;
|
||||
/**
|
||||
* @private
|
||||
*/
|
||||
/** @private */
|
||||
state: SwipeState;
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user