AAE-28454 Add column merge to admin tasklist component

This commit is contained in:
Diogo Bastos
2024-12-06 09:55:11 +00:00
parent db9f018f50
commit a4fceb03aa
2 changed files with 5 additions and 0 deletions

View File

@@ -13,6 +13,7 @@
[actionsPosition]="actionsPosition"
[contextMenu]="showContextMenu"
[resolverFn]="boundReplacePriorityValues"
[showProvidedActions]="showProvidedActions"
[showMainDatatableActions]="showMainDatatableActions"
[isResizingEnabled]="isResizingEnabled"
(showRowActionsMenu)="onShowRowActionsMenu($event)"

View File

@@ -101,6 +101,10 @@ export abstract class BaseTaskListCloudComponent<T = unknown>
@Input()
showContextMenu: boolean = false;
/** Toggles the provided actions. */
@Input()
showProvidedActions: boolean = false;
/** Toggles main datatable actions. */
@Input()
showMainDatatableActions: boolean = false;