Skip to content

Commit 7cc17cf

Browse files
authored
Merge pull request #3561 from plotly/release/4.0.0rc6
Release: `v4.0.0rc6`
2 parents 3b584ac + 60c53e1 commit 7cc17cf

File tree

15 files changed

+27
-18
lines changed

15 files changed

+27
-18
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22
All notable changes to `dash` will be documented in this file.
33
This project adheres to [Semantic Versioning](https://semver.org/).
44

5+
## [4.0.0rc6] - 2026-01-07
6+
7+
## Added
8+
- Restored missing implementation for `with_portal` and `with_full_screen_portal` in datepickers
9+
10+
## Changed
11+
- Bugfixes for feedback received in `rc5`: notably, popovers are `position: fixed` once again.
12+
513
## [4.0.0rc5] - 2025-12-16
614

715
## Added

components/dash-core-components/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/dash-core-components/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dash-core-components",
3-
"version": "4.0.0-rc5",
3+
"version": "4.0.0-rc6",
44
"description": "Core component suite for Dash",
55
"repository": {
66
"type": "git",

components/dash-core-components/src/components/Tabs.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ function Tabs({
102102
colors = {
103103
border: 'var(--Dash-Stroke-Weak)',
104104
primary: 'var(--Dash-Fill-Interactive-Strong)',
105-
background: 'var(--Dash-Fill-Weak)',
105+
background: 'var(--Dash-Fill-Interactive-Weak)',
106106
},
107107
vertical = false,
108108
// eslint-disable-next-line @typescript-eslint/no-unused-vars

components/dash-core-components/src/components/css/calendar.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
.dash-datepicker-calendar td:hover {
3232
cursor: pointer;
33-
background-color: var(--Dash-Fill-Weak);
33+
background-color: var(--Dash-Fill-Interactive-Weak);
3434
}
3535

3636
.dash-datepicker-calendar td:focus {

components/dash-core-components/src/components/css/datepickers.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@
205205
}
206206

207207
.dash-datepicker-close-button:hover {
208-
background: var(--Dash-Fill-Weak);
208+
background: var(--Dash-Fill-Interactive-Weak);
209209
color: var(--Dash-Fill-Interactive-Strong);
210210
}
211211

@@ -280,7 +280,7 @@
280280
}
281281

282282
.dash-datepicker-month-nav:hover:not(:disabled) {
283-
background: var(--Dash-Fill-Weak);
283+
background: var(--Dash-Fill-Interactive-Weak);
284284
}
285285

286286
.dash-datepicker-month-nav:focus-visible {

components/dash-core-components/src/components/css/dcc.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
--Dash-Stroke-Strong: rgba(0, 18, 77, 0.45);
44
--Dash-Stroke-Weak: rgba(0, 24, 102, 0.1);
55
--Dash-Fill-Interactive-Strong: #7f4bc4;
6-
--Dash-Fill-Weak: rgba(0, 30, 128, 0.04);
6+
--Dash-Fill-Interactive-Weak: rgba(0, 30, 128, 0.04);
77
--Dash-Fill-Inverse-Strong: #fff;
88
--Dash-Text-Primary: rgba(0, 18, 77, 0.87);
99
--Dash-Text-Strong: rgba(0, 9, 38, 0.9);

components/dash-core-components/src/components/css/dropdown.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@
108108
padding: 4px;
109109
border-radius: 4px;
110110
color: var(--Dash-Text-Weak);
111-
background: var(--Dash-Fill-Weak);
111+
background: var(--Dash-Fill-Interactive-Weak);
112112
font-size: 0.875em;
113113
}
114114

components/dash-core-components/src/components/css/sliders.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,8 @@
8383
display: block;
8484
}
8585

86-
.dash-slider-thumb[data-disabled] {
86+
.dash-slider-thumb[data-disabled],
87+
.dash-range-slider-input:disabled {
8788
cursor: not-allowed;
8889
opacity: 0.5;
8990
}

components/dash-html-components/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)