RED-4649 - Create new app keys for help mode for the user manual

This commit is contained in:
Valentin Mihai 2022-07-28 19:28:33 +03:00
parent 442d79e9ce
commit 1f0cd5cb5c
2 changed files with 2 additions and 0 deletions

View File

@ -5,6 +5,7 @@
[selectionEnabled]="selectionEnabled"
[tableColumnConfigs]="tableColumnConfigs"
[tableHeaderLabel]="tableHeaderLabel"
[iqserHelpMode]="headerHelpModeKey"
[totalSize]="totalSize"
>
<ng-container *ngTemplateOutlet="headerTemplate"></ng-container>

View File

@ -45,6 +45,7 @@ export class TableComponent<Class extends IListable<PrimaryKey>, PrimaryKey exte
@Input() showNoDataButton = false;
@Input() noMatchText?: string;
@Input() helpModeKey?: string;
@Input() headerHelpModeKey?: string;
@Input() tableItemClasses?: Record<string, (e: Class) => boolean>;
@Input() itemMouseEnterFn?: (entity: Class) => void;
@Input() itemMouseLeaveFn?: (entity: Class) => void;