We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33a88ac commit 83e801aCopy full SHA for 83e801a
src/components/input/input.html
@@ -12,11 +12,20 @@
12
[attr.aria-disabled]="ariaDisabled"
13
[attr.aria-required]="ariaRequired"
14
[attr.aria-invalid]="ariaInvalid"
15
- [id]="id"
+ [attr.autocomplete]="autoComplete"
16
+ [autofocus]="autoFocus"
17
[disabled]="disabled"
- [required]="required"
18
- [spellcheck]="spellcheck"
+ [id]="id"
19
+ [attr.list]="list"
20
+ [attr.max]="max"
21
[attr.maxlength]="maxLength"
22
+ [attr.min]="min"
23
+ [attr.minlength]="minLength"
24
+ [readonly]="readOnly"
25
+ [required]="required"
26
+ [spellcheck]="spellCheck"
27
+ [attr.step]="step"
28
+ [attr.tabindex]="tabIndex"
29
[type]="type"
30
(focus)="onFocus()"
31
(blur)="onBlur()"
0 commit comments