Restore "[ACS-8113] UX bug - Checkbox selections checked state should be Hyland blue not green- edit summary (#3908)" (#3919)

* [ACS-8113] UX bug - Checkbox selections checked state should be Hyland blue not green- edit summary (#3908)

* [ACS-8113] dataTable checkbox e2e fix 1

---------

Co-authored-by: jacekpluta <73617938+jacekpluta@users.noreply.github.com>
Co-authored-by: datguychen <adam.swiderski@hyland.com>
This commit is contained in:
Pablo Martinez
2024-08-02 12:03:00 +02:00
committed by GitHub
parent 2fd2e483d6
commit 4029213abe
21 changed files with 209 additions and 20 deletions

View File

@@ -68,6 +68,7 @@ export abstract class PageComponent implements OnInit, OnDestroy, OnChanges {
filterSorting = 'name-asc';
createActions: Array<ContentActionRef> = [];
isSmallScreen = false;
selectedRowItemsCount = 0;
protected extensions = inject(AppExtensionService);
protected content = inject(DocumentBasePageService);
@@ -159,6 +160,10 @@ export abstract class PageComponent implements OnInit, OnDestroy, OnChanges {
}
}
onSelectedItemsCountChanged(count: number) {
this.selectedRowItemsCount = count;
}
getParentNodeId(): string {
return this.node ? this.node.id : null;
}