1
0

[CST-6494] Update filter values when a workflow action is dispatched

This commit is contained in:
Giuseppe Digilio
2022-09-21 09:54:10 +02:00
parent 6d3f3cad2f
commit e072cdf75b
26 changed files with 187 additions and 114 deletions

View File

@@ -50,6 +50,11 @@ export class ObjectCollectionComponent implements OnInit {
@Input() hideGear = false;
@Input() selectable = false;
@Input() selectionConfig: {repeatable: boolean, listId: string};
/**
* Emit custom event for listable object custom actions.
*/
@Output() customEvent = new EventEmitter<any>();
@Output() deselectObject: EventEmitter<ListableObject> = new EventEmitter<ListableObject>();
@Output() selectObject: EventEmitter<ListableObject> = new EventEmitter<ListableObject>();