Skip to content

Commit

Permalink
feat(input): add support for more input attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewdenobrega committed May 16, 2016
1 parent 33a88ac commit 83e801a
Show file tree
Hide file tree
Showing 3 changed files with 396 additions and 6 deletions.
15 changes: 12 additions & 3 deletions src/components/input/input.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,20 @@
[attr.aria-disabled]="ariaDisabled"
[attr.aria-required]="ariaRequired"
[attr.aria-invalid]="ariaInvalid"
[id]="id"
[attr.autocomplete]="autoComplete"
[autofocus]="autoFocus"
[disabled]="disabled"
[required]="required"
[spellcheck]="spellcheck"
[id]="id"
[attr.list]="list"
[attr.max]="max"
[attr.maxlength]="maxLength"
[attr.min]="min"
[attr.minlength]="minLength"
[readonly]="readOnly"
[required]="required"
[spellcheck]="spellCheck"
[attr.step]="step"
[attr.tabindex]="tabIndex"
[type]="type"
(focus)="onFocus()"
(blur)="onBlur()"
Expand Down
Loading

0 comments on commit 83e801a

Please sign in to comment.