docs(input): add available autocapitalize property options (#21886)

Co-authored-by: Brandy Carney <brandy@ionic.io>
This commit is contained in:
Amith Mihiranga
2020-12-16 20:23:00 +05:30
committed by GitHub
parent f891f66708
commit b768181307
3 changed files with 4 additions and 3 deletions

View File

@ -51,6 +51,7 @@ export class Input implements ComponentInterface {
/**
* Indicates whether and how the text value should be automatically capitalized as it is entered/edited by the user.
* Available options: `"off"`, `"none"`, `"on"`, `"sentences"`, `"words"`, `"characters"`.
*/
@Prop() autocapitalize = 'off';