* feat: visualise disabled state of the 'Device name' input control * fix: original value handling
11 lines
281 B
HTML
11 lines
281 B
HTML
<input #inputControl
|
|
cancelable
|
|
[class]="css"
|
|
type="text"
|
|
[disabled]="disabled"
|
|
[(ngModel)]="model"
|
|
(blur)="blur()"
|
|
(focus)="focus()"
|
|
(keyup.enter)="keyEnter($event)"
|
|
(keyup)="calculateTextWidth($event.target.value)">
|