Merge branch 'VM/RED-9201' into 'master'

RED-9201 - UI for Component Mapping Tables

Closes RED-9201

See merge request redactmanager/red-ui!541
This commit is contained in:
Nicoleta Panaghiu 2024-08-13 10:01:43 +02:00
commit fc8a9da8cd
2 changed files with 8 additions and 9 deletions

View File

@ -29,7 +29,6 @@
<div
class="row"
[class.disabled-file-options]="disabledFileOptions"
[matTooltip]="'add-edit-component-mapping.disabled-file-options' | translate"
[matTooltipDisabled]="!disabledFileOptions"
[matTooltipPosition]="'above'"
@ -41,12 +40,13 @@
formControlName="delimiter"
name="delimiter"
type="text"
[class.disabled-file-options]="disabledFileOptions"
/>
</div>
<div class="iqser-input-group required w-150">
<label translate="add-edit-component-mapping.form.encoding-type"></label>
<mat-form-field>
<mat-form-field [class.disabled-file-options]="disabledFileOptions">
<mat-select formControlName="encoding">
<mat-option *ngFor="let type of encodingTypeOptions" [value]="type">
{{ translations[type] | translate }}

View File

@ -19,13 +19,12 @@
}
}
&.disabled-file-options {
.disabled-file-options {
opacity: 0.5;
pointer-events: auto;
max-width: 300px;
.iqser-input-group {
pointer-events: none;
}
pointer-events: none;
}
}
.row:last-child {
max-width: 300px;
}