Return hintProperty registration

This commit is contained in:
vakrilov
2017-06-01 12:19:21 +03:00
parent eda57d2c35
commit 8b3ccdec21

View File

@ -50,6 +50,7 @@ export const autocorrectProperty = new Property<EditableTextBase, boolean>({ nam
autocorrectProperty.register(EditableTextBase);
export const hintProperty = new Property<EditableTextBase, string>({ name: "hint", defaultValue: "" });
hintProperty.register(EditableTextBase);
export const maxLengthProperty = new Property<EditableTextBase, number>({ name: "maxLength", defaultValue: Number.POSITIVE_INFINITY });
maxLengthProperty.register(EditableTextBase);