ps-helix 6.2.0 → 6.2.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ps-helix",
3
- "version": "6.2.0",
3
+ "version": "6.2.1",
4
4
  "description": "Helix Design System - A comprehensive Angular component library",
5
5
  "author": "Fabrice PEREZ - Design Engineer at PACK Solutions",
6
6
  "license": "MIT",
@@ -1496,6 +1496,13 @@ declare class PshPaginationComponent {
1496
1496
  totalPages: _angular_core.ModelSignal<number>;
1497
1497
  itemsPerPageInput: _angular_core.InputSignal<number>;
1498
1498
  itemsPerPage: _angular_core.WritableSignal<number>;
1499
+ /**
1500
+ * Number of pages used for rendering and navigation: never below 1, and never
1501
+ * written back to the `totalPages` input. `totalPages` is derived data owned by
1502
+ * the caller (`Math.ceil(total / pageSize)`, or a server-side page count), so the
1503
+ * component reads it and clamps its own view of it instead of correcting it.
1504
+ */
1505
+ private readonly effectiveTotalPages;
1499
1506
  constructor();
1500
1507
  readonly size: _angular_core.InputSignalWithTransform<PaginationSize, PaginationSize>;
1501
1508
  readonly variant: _angular_core.InputSignalWithTransform<PaginationVariant, PaginationVariant>;