playbook_ui 14.5.0.pre.rc.7 → 14.5.0.pre.rc.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9418151f7c2ed57fa2ecb769209b2d520c8c0a1b5b6e660c1da324b636dc0504
4
- data.tar.gz: d591dc3699a4a8c092238156744b2de9e50040501773e5fd8489c1a42e1c4a9e
3
+ metadata.gz: 33ef2240decffa4b8afdca5d241ca43a0d6195049579f814f3c206e0616b36e0
4
+ data.tar.gz: 96bb3204647ae8c8907eab771d446338cd2bd20042ea5ca3e7a05b891b9c43a6
5
5
  SHA512:
6
- metadata.gz: eab62490d4cfac26c6a27387d0b0b83833a914cfca6e510a275d9136495742f6217b8fd61c59b546ea09500088d6b5167e267aa46fdf22bfc063929a8867293f
7
- data.tar.gz: c9de439a66a862a43abaef4f7cb5654c386c81b2cd5421706c4caef887a7a11ee2d03f53623f24e271f812e8cb23c924c78265bc90d1a2d6eca0251498cc6c8d
6
+ metadata.gz: 15ad5084d6bcf802be7c4c67c6d8a91cb03425fd1421a9eabc4310a844ed461ba6828e921037fb176df5f09bd17c85741525b5e0464228b69199fb5e7ad97c1c
7
+ data.tar.gz: 1b6875f325d3226739eebc6a6abde3b4299d3f23001597b4f3facef029e62c91b4bc3ab0e4de22b27709a5686fde38f2144f74a299b39474b098c59716ba84f6
@@ -22,6 +22,16 @@ const PaginationPageChange = (props) => {
22
22
 
23
23
  return (
24
24
  <div className="App">
25
+ <Pagination
26
+ current={activePage}
27
+ key={`pagination-top-${activePage}`}
28
+ marginBottom="xs"
29
+ onChange={onPageChange}
30
+ range={5}
31
+ total={totalPages}
32
+ {...props}
33
+ />
34
+
25
35
  <Table
26
36
  marginBottom="xs"
27
37
  responsive="none"
@@ -49,7 +59,8 @@ const PaginationPageChange = (props) => {
49
59
  </Table>
50
60
 
51
61
  <Pagination
52
- current={1}
62
+ current={activePage}
63
+ key={`pagination-bottom-${activePage}`}
53
64
  onChange={onPageChange}
54
65
  range={5}
55
66
  total={totalPages}
@@ -1 +1,3 @@
1
- You can use the `onChange` prop to control the data of your table. This prop is callback function that will allow you control the state.
1
+ You can use the `onChange` prop to control the data of your table. This prop is callback function that will allow you control the state.
2
+
3
+ To ensure synchronization between multiple pagination components on a single page, use unique, dynamic keys for each pagination instance. Each Pagination component should have its own dynamic key that reflects the current active page: this example uses `pagination-top-${activePage}` and `pagination-bottom-${activePage}`.