@annalib/anna-core 37.0.31 → 37.0.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/annalib-anna-core.mjs +88 -23
- package/fesm2022/annalib-anna-core.mjs.map +1 -1
- package/lib/anna-core-shared-lib/services/customizable-columns.service.d.ts +6 -4
- package/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.d.ts +4 -0
- package/package.json +1 -1
|
@@ -38,10 +38,12 @@ export declare class CustomizableColumnsService {
|
|
|
38
38
|
*/
|
|
39
39
|
private applyFilterConfigToHeader;
|
|
40
40
|
/**
|
|
41
|
-
*
|
|
42
|
-
* @param defaultConfig -
|
|
43
|
-
* @param visibleColumnKeys - Set of
|
|
44
|
-
* @
|
|
41
|
+
* Keeps filter metadata in sync with the columns that remain visible.
|
|
42
|
+
* @param defaultConfig - Original filter configuration attached to the header
|
|
43
|
+
* @param visibleColumnKeys - Set of column object keys currently rendered
|
|
44
|
+
* @param visibleHeaderCount - Number of headers still visible within the group
|
|
45
|
+
* @param firstVisibleHeaderIndex - Index of the first visible header inside the group
|
|
46
|
+
* @returns Filter configuration aligned with the current visibility state
|
|
45
47
|
*/
|
|
46
48
|
private buildFilteredConfig;
|
|
47
49
|
/**
|
|
@@ -281,6 +281,10 @@ export declare class AnnaNonEditableGenericTableComponent implements OnInit, OnC
|
|
|
281
281
|
openCustomizeColumnsModal(): void;
|
|
282
282
|
selectUnselectCustomizeColumns(objectKey: string): void;
|
|
283
283
|
getSelectedColumnsCount(): number;
|
|
284
|
+
private getCustomizableColumnsCount;
|
|
285
|
+
private getSelectedCustomizableColumnsCount;
|
|
286
|
+
isSelectAllDisabled(): boolean;
|
|
287
|
+
isUnselectAllDisabled(): boolean;
|
|
284
288
|
selectAllCustomizeColumns(): void;
|
|
285
289
|
unselectAllCustomizeColumns(): void;
|
|
286
290
|
hasCustomizeSelectionChanged(): boolean;
|