From 035966ad16e8a0027032352344547eeef36b8d45 Mon Sep 17 00:00:00 2001 From: philippe Date: Thu, 18 Dec 2025 10:09:47 -0500 Subject: [PATCH 1/4] fix devtools overflowing it's container on version update --- dash/dash-renderer/src/components/error/menu/DebugMenu.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dash/dash-renderer/src/components/error/menu/DebugMenu.css b/dash/dash-renderer/src/components/error/menu/DebugMenu.css index c0643d07db..af9f10e9a8 100644 --- a/dash/dash-renderer/src/components/error/menu/DebugMenu.css +++ b/dash/dash-renderer/src/components/error/menu/DebugMenu.css @@ -140,7 +140,8 @@ max-width: 50px; } .dash-debug-menu__outer.dash-debug-menu__outer--expanded { - max-width: 682px; + max-width: calc(100vw - 50px); + overflow-x: auto; } .dash-debug-menu__upgrade-tooltip { @@ -184,6 +185,7 @@ align-items: stretch; margin-left: 15px; transition: all 0.5s ease; + flex-shrink: 0; } .dash-debug-menu__version { From c351a5f8fc6898d988bf8e86c4cc420cdfa843be Mon Sep 17 00:00:00 2001 From: philippe Date: Thu, 18 Dec 2025 10:15:05 -0500 Subject: [PATCH 2/4] update changelog --- CHANGELOG.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b84e2a1c3..c38e7770c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,11 +5,17 @@ This project adheres to [Semantic Versioning](https://semver.org/). ## [UNRELEASED] ## Added -- [#3534]((https://github.com/plotly/dash/pull/3534) Adds `playsInline` prop to `html.Video`. Based on [#2338]((https://github.com/plotly/dash/pull/2338) +- [#3534]((https://github.com/plotly/dash/pull/3534) Adds `playsInline` prop to `html.Video`. Based on [#2338](https://github.com/plotly/dash/pull/2338) - [#3541](https://github.com/plotly/dash/pull/3541) Add `attributes` dictionary to be be formatted on script/link (_js_dist/_css_dist) tags of the index, allows for `type="module"` or `type="importmap"`. [#3538](https://github.com/plotly/dash/issues/3538) +- [#3542](https://github.com/plotly/dash/pull/3542) Add hidden=True to dash pages callback. ## Fixed - [#3541](https://github.com/plotly/dash/pull/3541) Remove last reference of deprecated `pkg_resources`. +- [#3548](https://github.com/plotly/dash/pull/3548) Fix devtools overflowing it's container on version update. Fix [#3535](https://github.com/plotly/dash/issues/3535). +- [#3545](https://github.com/plotly/dash/pull/3545) Replace deprecated asyncio.iscoroutinefunction() call with inspect.iscoroutinefunction() + +# Changed +- [#3540](https://github.com/plotly/dash/pull/3540) Expose more types for better static typing options. ## [3.3.0] - 2025-11-12 From 5f55ac1694de79d36ef3aee53057166ef4173dc8 Mon Sep 17 00:00:00 2001 From: philippe Date: Thu, 8 Jan 2026 10:52:32 -0500 Subject: [PATCH 3/4] remove overflow --- dash/dash-renderer/src/components/error/menu/DebugMenu.css | 1 - 1 file changed, 1 deletion(-) diff --git a/dash/dash-renderer/src/components/error/menu/DebugMenu.css b/dash/dash-renderer/src/components/error/menu/DebugMenu.css index af9f10e9a8..f55457616a 100644 --- a/dash/dash-renderer/src/components/error/menu/DebugMenu.css +++ b/dash/dash-renderer/src/components/error/menu/DebugMenu.css @@ -141,7 +141,6 @@ } .dash-debug-menu__outer.dash-debug-menu__outer--expanded { max-width: calc(100vw - 50px); - overflow-x: auto; } .dash-debug-menu__upgrade-tooltip { From 8f37a274486f4aad8ff1c1d552ad9283ef8e92fd Mon Sep 17 00:00:00 2001 From: philippe Date: Tue, 20 Jan 2026 11:00:42 -0500 Subject: [PATCH 4/4] update changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a4804391a..789c00e2ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ This project adheres to [Semantic Versioning](https://semver.org/). - [#3541](https://github.com/plotly/dash/pull/3541) Add `attributes` dictionary to be be formatted on script/link (_js_dist/_css_dist) tags of the index, allows for `type="module"` or `type="importmap"`. [#3538](https://github.com/plotly/dash/issues/3538) - [#3542](https://github.com/plotly/dash/pull/3542) Add hidden=True to dash pages callback. - [#3564](https://github.com/plotly/dash/pull/3564) Add new parameter `hide_all_callbacks` to `run()`. Closes [#3493](https://github.com/plotly/dash/issues/3493) +- [#3563](https://github.com/plotly/dash/pull/3563) Add hidden to clientside callbacks as configurable parameter ## Fixed - [#3541](https://github.com/plotly/dash/pull/3541) Remove last reference of deprecated `pkg_resources`.