2 ~ Copyright © 2016-2018 European Support Limited
4 ~ Licensed under the Apache License, Version 2.0 (the "License");
5 ~ you may not use this file except in compliance with the License.
6 ~ You may obtain a copy of the License at
8 ~ http://www.apache.org/licenses/LICENSE-2.0
10 ~ Unless required by applicable law or agreed to in writing, software
11 ~ distributed under the License is distributed on an "AS IS" BASIS,
12 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 ~ See the License for the specific language governing permissions and
14 ~ limitations under the License.
17 <div class="cell field-name">
19 *ngIf="!isAssociateWorkflow"
20 data-tests-id="paramName"
21 [(value)]="param.name"
22 [readonly]="readonly">
24 <span *ngIf="isAssociateWorkflow">{{param.name}}</span>
27 <div class="cell field-type">
29 *ngIf="!isAssociateWorkflow"
30 data-tests-id="paramType"
31 [values]="propTypeEnum"
32 [(value)]="param.type"
33 (valueChange)="onChangeType()"
34 [readonly]="readonly">
35 </ui-element-dropdown>
36 <span *ngIf="isAssociateWorkflow">{{param.type}}</span>
39 <div class="cell field-property">
41 data-tests-id="paramProperty"
42 [values]="filteredInputProps"
43 [(value)]="param.property"
44 [readonly]="readonly">
45 </ui-element-dropdown>
48 <div class="cell field-mandatory" *ngIf="!isAssociateWorkflow">
50 *ngIf="!isAssociateWorkflow"
51 data-tests-id="paramMandatory"
52 [(checked)]="param.mandatory"
53 [ngClass]="{'disabled':readonly}">
57 <div class="cell remove" *ngIf="!isAssociateWorkflow && !readonly">
59 class="sprite-new delete-item-icon"
60 data-tests-id="removeInputParam"
61 (click)="onRemoveParam(param)">