Moved the context @Input() to the loaders (since they are not always required for all the loaders) & added AbstractComponentLoaderComponent documentation

This commit is contained in:
Alexandre Vryghem
2024-02-02 09:35:27 +01:00
parent 7942c900f4
commit 239f082cce
5 changed files with 44 additions and 25 deletions

View File

@@ -47,7 +47,6 @@ export class ClaimedTaskActionsLoaderComponent extends AbstractComponentLoaderCo
* The list of input and output names for the dynamic component
*/
protected inputNames: (keyof this & string)[] = [
...this.inputNames,
'item',
'object',
'option',
@@ -55,7 +54,6 @@ export class ClaimedTaskActionsLoaderComponent extends AbstractComponentLoaderCo
];
protected outputNames: (keyof this & string)[] = [
...this.outputNames,
'processCompleted',
];