mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-06-30 18:15:11 +00:00
[ACA-3957] Added correct Icon for save-as button in task filter and process filter (#6190)
This commit is contained in:
parent
74dfe4ef49
commit
f0af0c4113
7
lib/core/assets/images/save-as.svg
Normal file
7
lib/core/assets/images/save-as.svg
Normal file
@ -0,0 +1,7 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
||||
<g id="Group_8310" data-name="Group 8310" transform="translate(8394 -1374)" opacity="0.54">
|
||||
<path id="Subtraction_5" data-name="Subtraction 5" d="M6.01,8V5H3V3H6.01V0L10,4,6.012,8Z" transform="translate(-8382 1383)"/>
|
||||
<path id="Path_17965" data-name="Path 17965" d="M0,0H24V24H0Z" transform="translate(-8394 1374)" fill="none"/>
|
||||
<path id="Subtraction_4" data-name="Subtraction 4" d="M16,18H2a2,2,0,0,1-2-2V2A2,2,0,0,1,2,0H14l4,4V5H16V4.83L13.17,2H2V16H18A2,2,0,0,1,16,18ZM9,15a3,3,0,1,1,3-3A3,3,0,0,1,9,15Zm3-8H3V3h9V7Z" transform="translate(-8392 1377)"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 669 B |
@ -158,7 +158,8 @@ export class ThumbnailService {
|
||||
'selected': './assets/images/ft_ic_selected.svg',
|
||||
'dynamic-feed': './assets/images/dynamic_feed-24px.svg',
|
||||
'ic-process': './assets/images/ic-process.svg',
|
||||
'filter': './assets/images/ft_ic_filter.svg'
|
||||
'filter': './assets/images/ft_ic_filter.svg',
|
||||
'save-as': './assets/images/save-as.svg'
|
||||
};
|
||||
|
||||
constructor(protected apiService: AlfrescoApiService, matIconRegistry: MatIconRegistry, sanitizer: DomSanitizer) {
|
||||
|
@ -8,7 +8,7 @@
|
||||
<div *ngIf="showActions()" class="adf-cloud-edit-process-filter-actions">
|
||||
<ng-container *ngIf="toggleFilterActions">
|
||||
<button *ngFor="let filterAction of processFilterActions" mat-icon-button matTooltip="{{ filterAction.tooltip | translate}}" [attr.data-automation-id]="'adf-filter-action-' + filterAction.actionType" [disabled]="isDisabledAction(filterAction)" (click)="executeFilterActions(filterAction)">
|
||||
<mat-icon>{{filterAction.icon}}</mat-icon>
|
||||
<adf-icon [value]="filterAction.icon"></adf-icon>
|
||||
</button>
|
||||
</ng-container>
|
||||
</div>
|
||||
|
@ -538,7 +538,7 @@ export class EditProcessFilterCloudComponent implements OnInit, OnChanges, OnDes
|
||||
}),
|
||||
new ProcessFilterAction({
|
||||
actionType: EditProcessFilterCloudComponent.ACTION_SAVE_AS,
|
||||
icon: 'unarchive',
|
||||
icon: 'adf:save-as',
|
||||
tooltip: 'ADF_CLOUD_EDIT_PROCESS_FILTER.TOOL_TIP.SAVE_AS'
|
||||
}),
|
||||
new ProcessFilterAction({
|
||||
|
@ -19,7 +19,7 @@
|
||||
[attr.data-automation-id]="'adf-filter-action-' + filterAction.actionType"
|
||||
[disabled]="isDisabledAction(filterAction)"
|
||||
(click)="executeFilterActions(filterAction)">
|
||||
<mat-icon>{{filterAction.icon}}</mat-icon>
|
||||
<adf-icon [value]="filterAction.icon"></adf-icon>
|
||||
</button>
|
||||
</ng-container>
|
||||
</div>
|
||||
|
@ -141,7 +141,7 @@ export abstract class BaseEditTaskFilterCloudComponent implements OnInit, OnChan
|
||||
}),
|
||||
new TaskFilterAction({
|
||||
actionType: BaseEditTaskFilterCloudComponent.ACTION_SAVE_AS,
|
||||
icon: 'unarchive',
|
||||
icon: 'adf:save-as',
|
||||
tooltip: 'ADF_CLOUD_EDIT_TASK_FILTER.TOOL_TIP.SAVE_AS'
|
||||
}),
|
||||
new TaskFilterAction({
|
||||
|
Loading…
x
Reference in New Issue
Block a user