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 4b488e1 commit 911bfaeCopy full SHA for 911bfae
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]="inputId"
+ [attr.autocomplete]="autoComplete"
16
+ [autofocus]="autoFocus"
17
[disabled]="disabled"
- [required]="required"
18
- [spellcheck]="spellcheck"
+ [id]="inputId"
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)="handleFocus($event)"
31
(blur)="handleBlur($event)"
0 commit comments