Skip to content
Merged

V4 rc0 #3433

Show file tree
Hide file tree
Changes from 3 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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
All notable changes to `dash` will be documented in this file.
This project adheres to [Semantic Versioning](https://semver.org/).

## [4.0.0rc0] - 2025-09-11
- [#3398](https://github.com/plotly/dash/pull/3398) Modernize dcc.Input
- [#3414](https://github.com/plotly/dash/pull/3414) Modernize dcc.Slider

## [UNRELEASED]

## Added
Expand Down
116 changes: 0 additions & 116 deletions components/dash-core-components/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion components/dash-core-components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@
"node-polyfill-webpack-plugin": "^2.0.1",
"prop-types": "^15.8.1",
"ramda": "^0.30.1",
"rc-slider": "^9.7.5",
"react-addons-shallow-compare": "^15.6.3",
"react-dates": "^21.8.0",
"react-docgen": "^5.4.3",
Expand Down
5 changes: 2 additions & 3 deletions tests/async_tests/test_async_callbacks.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,8 @@ async def update_input(value):

assert call_count.value == 1, "called once at initial stage"

pad_input, pad_div = dash_duo.dash_innerhtml_dom.select_one(
"#output > div"
).contents
pad_input = dash_duo.dash_innerhtml_dom.select_one("#output input")
pad_div = dash_duo.dash_innerhtml_dom.select_one("#output #sub-output-1")
Copy link
Contributor

Choose a reason for hiding this comment

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

I'm not qualified to review this change but the rest looks good.


assert (
pad_input.attrs["value"] == "sub input initial value"
Expand Down