Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added page_current to persisted_props #1883

Merged
merged 4 commits into from
Jan 6, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ This project adheres to [Semantic Versioning](https://semver.org/).
- `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.

### Added
- [#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)



- [#1763](https://github.com/plotly/dash/pull/1763):
## Dash and Dash Renderer
Expand Down Expand Up @@ -183,6 +186,9 @@ This project adheres to [Semantic Versioning](https://semver.org/).
- [#1779](https://github.com/plotly/dash/pull/1779):
- Clean up our handling of serialization problems, including fixing `orjson` for Python 3.6
- Added the ability for `dash.testing` `percy_snapshot` methods to choose widths to generate.

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

## [2.0.0] - 2021-08-03

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

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

Expand Down
6 changes: 2 additions & 4 deletions components/dash-table/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
# Change Log for dash-table
### NOTE: as of v2.0, changes in dash-table are all being recorded in the main dash changelog.
### This file is kept only for historical purposes.
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

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

## [4.12.0] - 2021-07-09
### Fixed
Expand Down
2 changes: 2 additions & 0 deletions components/dash-table/src/dash-table/dash/DataTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ export const defaultProps = {
'columns.name',
'filter_query',
'hidden_columns',
'page_current',
'selected_columns',
'selected_rows',
'sort_by'
Expand Down Expand Up @@ -1537,6 +1538,7 @@ export const propTypes = {
'data',
'filter_query',
'hidden_columns',
'page_current',
'selected_columns',
'selected_rows',
'sort_by'
Expand Down