playbook_ui_docs 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: 76fe697913681d0ab37331e6cdbedeae4d19486eff68396aed21294a562e9407
4
- data.tar.gz: f188c96e5177afea31491887e20cef44bf9b99e655a7d70a0e610b5c37f4af04
3
+ metadata.gz: 7f9ae020f708e6dcede28890560329228e54697a71a5f01afe935523d878a22b
4
+ data.tar.gz: 792764c6d02e9dbcb61ffe1b95d0880089fdc16316fe2d70732514eb2111d243
5
5
  SHA512:
6
- metadata.gz: 3b5627f530c2ef297a69d87498829c5ad34aecbbd3a1c752814587e8a89c5ecc8312c117ff425209832c50b65a69c3636dc3298e40e117c8390156e125e81bb5
7
- data.tar.gz: 021453e597894a31ccd316a7da3fdfb6fb1b6ee1a029a2fedbdf41871b725955cf764b04d5946c04d326789d119090c7d77ce6e8e06738121498707a62dc0e22
6
+ metadata.gz: 98f727a215dc9eccd1884bc3d6184ddfbeb5ed65c34c1fdc14b92494186f5b6def975f1c159135f97cb3d83eefb09489fa7719c5bddd94289e24477c0263ab6f
7
+ data.tar.gz: 6ec5fe85057e1c238ad524e75357e3ea009405654b9fba7b65a5cc50e05303ff7504b09148b6023e4931fc7f6f77ccaabcc4d6aa20c96337e3572551fd6b465b
@@ -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}`.