playbook_ui_docs 14.24.0.pre.rc.3 → 14.24.0.pre.rc.4

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 93fd4cae6bc996e0276b087d7c1ee3db271b890ae34c4d2df3ff9b9366057b70
4
- data.tar.gz: 4ef6326b788d1fc5a5ce8132e5d113acd85247c7be8ca6c13a7409c10f3b22f8
3
+ metadata.gz: d788815700782b469c4579e56cc1afd00bb759ba07f3c0af28e7dcef458e2fd5
4
+ data.tar.gz: a0e309f6a6396da3fe86a56ca3016f5a6b878a51e208302b537fd99534195ec2
5
5
  SHA512:
6
- metadata.gz: c2b81102b8678b9b16f47c2c209c020489ed07b1ed6fa5ef4bf15eaf700fe01e2d1df04dc8e999cce56b2d64a2c6dce0fb4ae8accfb9067044c59b18cf5898a4
7
- data.tar.gz: 542ec7cc0895ba1341a2f6654353ff6c1e3459b5d752c4bfdbf473ba8b5a442172f9c71da74e19de323479b541be18953de6c827e55a62a0363c96b266e528ee
6
+ metadata.gz: bc98308bfbbc6f55e8edff4b9282a3a7045289f55ae7713f259da22713b8e9a0b6c3e687d032b49625dce9d5f1902b1eeea671738184044c7e693f45a6d97180
7
+ data.tar.gz: fc545c338bf3fa5cae7b7ef3c09f051cfeb7b3b607e0b3e1b74712b37dc971485fce12bc87959e29c714ddd0744b3f2ce504d0fe8259f32e13efdd8c5c4f247b
@@ -3,4 +3,6 @@ Our Pagination kit depends on the <a href="https://github.com/mislav/will_pagina
3
3
 
4
4
  Once you have perfomed the paginated query in your controller file you can use our kit (see code example below) instead of `<%= will_paginate @users %>` in your view file.
5
5
 
6
- You need to add: <code>require "playbook/pagination_renderer"</code> in your apps controller file.
6
+ You need to add: <code>require "playbook/pagination_renderer"</code> in your apps controller file.
7
+
8
+ Note: If the total page count is 0 or 1, the Pagination kit will not be displayed as there aren't multiple pages to navigate.
@@ -1 +1,3 @@
1
- The `range` prop determines how many pages to display in the Pagination component. Regardless of this value, the first two and last two pages are always visible to facilitate navigation to the beginning and end of the pagination. If these always-visible pages fall within the specified range, they are included in the display. If they fall outside the range, the pagination will show additional pages up to the number defined by the `range` prop.
1
+ The `range` prop determines how many pages to display in the Pagination component. Regardless of this value, the first two and last two pages are always visible to facilitate navigation to the beginning and end of the pagination. If these always-visible pages fall within the specified range, they are included in the display. If they fall outside the range, the pagination will show additional pages up to the number defined by the `range` prop.
2
+
3
+ Note: If the `total` pages prop is 0 or 1, the Pagination component will not be displayed, as there aren't multiple pages to navigate.