cat-qw-lib 2.6.50 → 2.6.51

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.
@@ -2985,13 +2985,9 @@ class TableSecondaryComponent {
2985
2985
  }
2986
2986
  /**
2987
2987
  * Count displayed beside the header checkbox.
2988
- * When the current page is fully selected, show the current page count.
2989
- * Otherwise show the total number of explicitly selected rows (across pages).
2988
+ * Always show the total number of selected rows (across pages).
2990
2989
  */
2991
2990
  get headerSelectionCount() {
2992
- if (this.isAllCurrentPageSelected) {
2993
- return this.table?.records?.length ?? 0;
2994
- }
2995
2991
  return this.selection?.length ?? 0;
2996
2992
  }
2997
2993
  handleSelectAllRowData(checked) {