Commit e5927de2 by Vladislav Lagunov

Исправления типов пропсов

parent 91bcfa06
......@@ -15,7 +15,8 @@ export interface FieldProps<Value=any> {
disabled?: Disabled;
error?: Error|Validation<any>;
FieldWrapper?: React.ComponentType;
onValueChange?(value: Value, at?: ObjectPath): void;
onValueChange?(value: Value): void;
onValueChange?(value: any, at?: ObjectPath): void;
onFocus?(e?: React.SyntheticEvent): void;
onBlur?(e?: React.SyntheticEvent): void;
onClick?(e?: React.SyntheticEvent): void;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment