Skip to content

Commit 78ca3ec

Browse files
authored
Merge pull request #1883 from AnnMarieW/persist-page
added page_current to persisted_props
2 parents 9acc204 + 910a7ac commit 78ca3ec

File tree

5 files changed

+14
-4
lines changed

5 files changed

+14
-4
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ This project adheres to [Semantic Versioning](https://semver.org/).
2929
- `dash[ci]`: mainly for internal use, these are additional requirements for the Dash CI tests, exposed for other component libraries to use a matching configuration.
3030

3131
### Added
32+
- [#1883](https://github.com/plotly/dash/pull/1883) in DataTable added `page_current` to `persisted_props` as requested in [#1860](https://github.com/plotly/dash/issues/1860)
33+
34+
3235

3336
- [#1763](https://github.com/plotly/dash/pull/1763):
3437
## Dash and Dash Renderer
@@ -183,6 +186,9 @@ This project adheres to [Semantic Versioning](https://semver.org/).
183186
- [#1779](https://github.com/plotly/dash/pull/1779):
184187
- Clean up our handling of serialization problems, including fixing `orjson` for Python 3.6
185188
- Added the ability for `dash.testing` `percy_snapshot` methods to choose widths to generate.
189+
190+
- [#1778](https://github.com/plotly/dash/pull/1778) DataTable: Fix React warnings stating
191+
that each child in a list should have a unique "key" prop
186192

187193
## [2.0.0] - 2021-08-03
188194

components/dash-core-components/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
# Change Log for dash-core-components
2+
### NOTE: as of v2.0, changes in dash-core-component are all being recorded in the main dash changelog.
3+
### This file is kept only for historical purposes.
24
All notable changes to this project will be documented in this file.
35
This project adheres to [Semantic Versioning](http://semver.org/).
46

components/dash-html-components/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
# Change Log for dash-html-components
2+
### NOTE: as of v2.0, changes in dash-html-components are all being recorded in the main dash changelog.
3+
### This file is kept only for historical purposes.
24
All notable changes to this project will be documented in this file.
35
This project adheres to [Semantic Versioning](http://semver.org/).
46

components/dash-table/CHANGELOG.md

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
# Change Log for dash-table
2+
### NOTE: as of v2.0, changes in dash-table are all being recorded in the main dash changelog.
3+
### This file is kept only for historical purposes.
24
All notable changes to this project will be documented in this file.
35
This project adheres to [Semantic Versioning](http://semver.org/).
46

5-
## [Unreleased]
6-
### Fixed
7-
- [#1778](https://github.com/plotly/dash/pull/1778) Fix React warnings stating
8-
that each child in a list should have a unique "key" prop
97

108
## [4.12.0] - 2021-07-09
119
### Fixed

components/dash-table/src/dash-table/dash/DataTable.js

+2
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ export const defaultProps = {
101101
'columns.name',
102102
'filter_query',
103103
'hidden_columns',
104+
'page_current',
104105
'selected_columns',
105106
'selected_rows',
106107
'sort_by'
@@ -1537,6 +1538,7 @@ export const propTypes = {
15371538
'data',
15381539
'filter_query',
15391540
'hidden_columns',
1541+
'page_current',
15401542
'selected_columns',
15411543
'selected_rows',
15421544
'sort_by'

0 commit comments

Comments
 (0)