re base code
[sdc.git] / catalog-ui / src / app / ng2 / components / ui / form-components / input / ui-element-input.component.html
1 <input
2     class="value-input"
3     [ngClass]="{'error': control.invalid, 'disabled':readonly}"
4     type="text"
5     [name]="name"
6     [(ngModel)]="value"
7     (input)="onChange()"
8     [attr.maxlength]="validation.propertyValue.max"
9     [attr.minlength]="validation.propertyValue.min"
10     [pattern]="pattern"
11     [formControl]="control"
12     tooltip="{{value}}"
13     [readonly]="readonly"
14     [attr.data-tests-id]="'value-' + testId"
15     />