mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 11:42:04 +08:00
Return hintProperty registration
This commit is contained in:
@ -50,6 +50,7 @@ export const autocorrectProperty = new Property<EditableTextBase, boolean>({ nam
|
|||||||
autocorrectProperty.register(EditableTextBase);
|
autocorrectProperty.register(EditableTextBase);
|
||||||
|
|
||||||
export const hintProperty = new Property<EditableTextBase, string>({ name: "hint", defaultValue: "" });
|
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 });
|
export const maxLengthProperty = new Property<EditableTextBase, number>({ name: "maxLength", defaultValue: Number.POSITIVE_INFINITY });
|
||||||
maxLengthProperty.register(EditableTextBase);
|
maxLengthProperty.register(EditableTextBase);
|
||||||
|
Reference in New Issue
Block a user