Skip to content

Commit 6d857b8

Browse files
authored
Merge pull request #3548 from plotly/fix/devtool-overflow
fix devtools overflowing it's container on version update
2 parents 9bbbc0c + 8f37a27 commit 6d857b8

2 files changed

Lines changed: 10 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,22 @@ This project adheres to [Semantic Versioning](https://semver.org/).
55
## [UNRELEASED]
66

77
## Added
8+
89
- [#3568]((https://github.com/plotly/dash/pull/3568) Added `children` and `copied_children` props to `dcc.Clipboard` to customize the button contents before and after copying.
910
- [#3534]((https://github.com/plotly/dash/pull/3534) Adds `playsInline` prop to `html.Video`. Based on [#2338]((https://github.com/plotly/dash/pull/2338)
1011
- [#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)
12+
- [#3542](https://github.com/plotly/dash/pull/3542) Add hidden=True to dash pages callback.
1113
- [#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)
14+
- [#3563](https://github.com/plotly/dash/pull/3563) Add hidden to clientside callbacks as configurable parameter
1215

1316
## Fixed
1417
- [#3541](https://github.com/plotly/dash/pull/3541) Remove last reference of deprecated `pkg_resources`.
15-
- [#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`
18+
- [#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).
19+
- [#3545](https://github.com/plotly/dash/pull/3545) Replace deprecated asyncio.iscoroutinefunction() call with inspect.iscoroutinefunction()
1620

21+
# Changed
22+
- [#3540](https://github.com/plotly/dash/pull/3540) Expose more types for better static typing options.
23+
- [#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`
1724

1825
## [3.3.0] - 2025-11-12
1926

dash/dash-renderer/src/components/error/menu/DebugMenu.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@
140140
max-width: 50px;
141141
}
142142
.dash-debug-menu__outer.dash-debug-menu__outer--expanded {
143-
max-width: 682px;
143+
max-width: calc(100vw - 50px);
144144
}
145145

146146
.dash-debug-menu__upgrade-tooltip {
@@ -184,6 +184,7 @@
184184
align-items: stretch;
185185
margin-left: 15px;
186186
transition: all 0.5s ease;
187+
flex-shrink: 0;
187188
}
188189

189190
.dash-debug-menu__version {

0 commit comments

Comments
 (0)