|
13 | 13 | [showHintOnlyOnFocus]="showHintOnlyOnFocus" |
14 | 14 | (ngModelChange)="inputText = $event; showPopup = true" |
15 | 15 | (click)="showPopup = true; $event.stopPropagation()" |
16 | | - (focus)="handleFocus($event)" |
17 | | - (blur)="handleBlur($event)" |
| 16 | + (focus)="handleFocus" |
| 17 | + (blur)="handleBlur" |
18 | 18 | [characterCounter]="characterCounter" |
19 | 19 | [checkValid]="checkValid" |
20 | 20 | [disabled]="disabled" |
|
36 | 36 | [rightAlign]="rightAlign" |
37 | 37 | [trailingGlyph]="trailingGlyph" |
38 | 38 | [trailingText]="trailingText" |
39 | | - (keydown)="onKeyDown($event)" |
40 | | - (keypress)="onKeyPress($event)" |
41 | | - (keyup)="onKeyUp($event)"> |
| 39 | + (keydown)="onKeyDown" |
| 40 | + (keypress)="onKeyPress" |
| 41 | + (keyup)="onKeyUp"> |
42 | 42 | <span trailing> |
43 | 43 | <material-icon |
44 | 44 | *ngIf="showClearIcon" |
|
50 | 50 | [materialTooltip]="clearIconTooltip" |
51 | 51 | [showTooltipIf]="hasClearIconTooltip" |
52 | 52 | [attr.aria-label]="clearIconTooltip" |
53 | | - (trigger)="onClearIcon()"> |
| 53 | + (trigger)="onClearIcon"> |
54 | 54 | </material-icon> |
55 | 55 | <ng-content select="[trailing]"></ng-content> |
56 | 56 | </span> |
|
71 | 71 | <div header |
72 | 72 | keyboardOnlyFocusIndicator |
73 | 73 | tabIndex="-1" |
74 | | - (keyup)="onKeyUp($event)"> |
| 74 | + (keyup)="onKeyUp"> |
75 | 75 | <ng-content select="[header]"></ng-content> |
76 | 76 | </div> |
77 | 77 | <!-- Deferred to prevent child content from being created too early. --> |
78 | | - <focus-trap *cachedDeferredContent (keyup)="onKeyUp($event)"> |
| 78 | + <focus-trap *cachedDeferredContent (keyup)="onKeyUp"> |
79 | 79 | <div *ngIf="showLoadingSpinner" class="loading"> |
80 | 80 | <material-spinner></material-spinner> |
81 | 81 | </div> |
|
137 | 137 | <div footer |
138 | 138 | keyboardOnlyFocusIndicator |
139 | 139 | tabIndex="-1" |
140 | | - (keyup)="onKeyUp($event)"> |
| 140 | + (keyup)="onKeyUp"> |
141 | 141 | <ng-content select="[footer]"></ng-content> |
142 | 142 | </div> |
143 | 143 | </material-popup> |
0 commit comments