diff --git a/CHANGELOG.md b/CHANGELOG.md index de4049c614..72d01b29df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,13 +5,18 @@ 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`. -- [#3520](https://github.com/plotly/dash/pull/3520). Set `pointer-events` to `auto` on `Tooltip` to make it possible to interact with tooltip content when `targetable=True` +- [#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. +- [#3520](https://github.com/plotly/dash/pull/3520). Set `pointer-events` to `auto` on `Tooltip` to make it possible to interact with tooltip content when `targetable=True` ## [3.3.0] - 2025-11-12 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 {