22 lines
550 B
HTML
22 lines
550 B
HTML
<div
|
|
class="ucap-step-input-container"
|
|
[class.ucap-step-input-container--active]="isFocused"
|
|
>
|
|
<input
|
|
matInput
|
|
#input
|
|
class="stepper-input"
|
|
readonly
|
|
[attr.maxlength]="maxLength"
|
|
[attr.placeholder]="placeholder"
|
|
[attr.disabled]="disabled"
|
|
(keydown)="onKeydown($event)"
|
|
(focus)="onFocus()"
|
|
(blur)="onBlur()"
|
|
/>
|
|
<div class="steppers">
|
|
<span class="stepper" role="button" (click)="increase()">▲</span>
|
|
<span class="stepper" role="button" (click)="decrease()">▼</span>
|
|
</div>
|
|
</div>
|