@omnia/foundation
Version:
Provide omnia foundation typings and tooling work on client side for omnia extension.
19 lines • 913 B
HTML
<div class="form-group">
<label>{{'ControlViewPortSettings.Visible' | omfLocalize }}</label>
<div class="omf-form omf-form-inline">
<div class="form-group">
<div class="omf-form-control-sm">
<omf-dropdown-list [items]="scope.controlViewPortTypes"
valueProperty="id"
textProperty="title"
[selectedItemValue]="viewPortSettingsType"
[onItemSelected]="scope.selectType">
</omf-dropdown-list>
</div>
</div>
<div class="form-group">
<input type="number" [(ngModel)]="viewPort" (ngModelChange)="onViewPortChange($event)" [disabled]="scope.disableViewPort" class="form-control omf-form-control-xs" />
<label>px</label>
</div>
</div>
</div>