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/README.md +3 -3
- package/fesm2022/ps-helix.mjs +54 -29
- package/fesm2022/ps-helix.mjs.map +1 -1
- package/package.json +1 -1
- package/types/ps-helix.d.ts +7 -0
package/package.json
CHANGED
package/types/ps-helix.d.ts
CHANGED
|
@@ -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>;
|