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

This commit is contained in:
jacekpluta
2024-07-04 08:26:47 +02:00
committed by GitHub
parent b0c1f537df
commit 457ddb2e39
18 changed files with 191 additions and 12 deletions

View File

@@ -70,6 +70,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);
@@ -162,6 +163,10 @@ export abstract class PageComponent implements OnInit, OnDestroy, OnChanges {
}
}
onSelectedItemsCountChanged(count: number) {
this.selectedRowItemsCount = count;
}
getParentNodeId(): string {
return this.node ? this.node.id : null;
}