We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 698e526 commit f4b28f3Copy full SHA for f4b28f3
core/src/components/input/input.tsx
@@ -42,7 +42,7 @@ export class Input implements ComponentInterface {
42
/**
43
* Indicates whether and how the text value should be automatically capitalized as it is entered/edited by the user.
44
*/
45
- @Prop() autocapitalize = 'off';
+ @Prop() autocapitalize: "on" | "off" = "off";
46
47
48
* Indicates whether the value of the control can be automatically completed by the browser.
0 commit comments