From b496c5d32f7b702e2606b42bfa332a778fdf91b6 Mon Sep 17 00:00:00 2001 From: pguti778 <71953686+pguti778@users.noreply.github.com> Date: Sun, 4 Oct 2020 20:42:57 -0300 Subject: [PATCH] Added possible values to secure property It's confusing. It' says it's a string but in https://docs.nativescript.org/api-reference/modules/_ui_text_field_.html says it's a boolean. --- app/ng-ui-widgets-category/text-field/end.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/ng-ui-widgets-category/text-field/end.md b/app/ng-ui-widgets-category/text-field/end.md index 80c76be2..96c2b3e9 100644 --- a/app/ng-ui-widgets-category/text-field/end.md +++ b/app/ng-ui-widgets-category/text-field/end.md @@ -9,7 +9,7 @@ | `lineHeight` | `number` | Gets or sets line height style property. | | `maxLength` | `number` | Gets or sets the max number of symbols allowed as input. | | `returnKeyType` | [`ReturnKeyType`](https://docs.nativescript.org/api-reference/modules/_ui_editor_text_base_#returnkeytype) | Gets or sets the soft keyboard return key flavor. | -| `secure` | `string` | Gets or sets if a text field is for password entry. | +| `secure` | `string` | Gets or sets if a text field is for password entry. Possible values: true or false | | `text` | `string` | Gets or sets the text. | | `textAlignment` | `TextAlignment` | Gets or sets the text alignment. | | `textDecoration` | `TextDecoration` | Gets or sets the text decoration. |