Skip to content
This repository was archived by the owner on Aug 29, 2025. It is now read-only.
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
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -390,4 +390,7 @@ Derived properties allow the component to expose complex state that can be usefu
dataframe_previous -> data_previous
dataframe_timestamp -> data_timestamp
derived_virtual_dataframe -> derived_virtual_data
derived_viewport_datafram -> derived_viewport_data
derived_viewport_datafram -> derived_viewport_data

## RC7 - Optional id prop
- The id prop of the table is now optional. It will generate a random id if it's not set.
4 changes: 2 additions & 2 deletions dash_table/bundle.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dash_table/demo.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dash_table/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@
"type": {
"name": "string"
},
"required": true,
"required": false,
"description": ""
},
"is_focused": {
Expand Down
3 changes: 2 additions & 1 deletion dash_table/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dash-table",
"version": "3.1.0rc6",
"version": "3.1.0rc7",
"description": "Dash table",
"main": "build/index.js",
"scripts": {
Expand All @@ -26,6 +26,7 @@
"lint": "run-s private::lint.js private::lint.ts",
"test": "run-p --race private::host* private::runtests",
"test.visual": "build-storybook && percy-storybook",
"test.visual-local": "build-storybook",

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

"test.watch": "run-p --race \"build:js-test-watch\" --race private::host* private::opentests"
},
"author": "Chris P <chris@plot.ly",
Expand Down
Loading