Skip to content

Commit

Permalink
feat(input): add support for more input attributes (#447)
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewdenobrega authored and jelbourn committed May 18, 2016
1 parent 4b488e1 commit 911bfae
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
Expand Up @@ -12,11 +12,20 @@
[attr.aria-disabled]="ariaDisabled"
[attr.aria-required]="ariaRequired"
[attr.aria-invalid]="ariaInvalid"
[id]="inputId"
[attr.autocomplete]="autoComplete"
[autofocus]="autoFocus"
[disabled]="disabled"
[required]="required"
[spellcheck]="spellcheck"
[id]="inputId"
[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)="handleFocus($event)"
(blur)="handleBlur($event)"
Expand Down

0 comments on commit 911bfae

Please sign in to comment.