From 035966ad16e8a0027032352344547eeef36b8d45 Mon Sep 17 00:00:00 2001 From: philippe Date: Thu, 18 Dec 2025 10:09:47 -0500 Subject: [PATCH 1/2] 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/2] 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