Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@
All notable changes to `dash` will be documented in this file.
This project adheres to [Semantic Versioning](https://semver.org/).

## [4.0.0rc5] - 2025-12-16

## Added
- New prop in `dcc.Upload` allows users to recursively upload entire folders at once

## Changed
- Bugfixes for feedback received in `rc4`

## [4.0.0rc4] - 2025-12-04

## Added
Expand Down
4 changes: 2 additions & 2 deletions components/dash-core-components/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion components/dash-core-components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dash-core-components",
"version": "4.0.0-rc4",
"version": "4.0.0-rc5",
"description": "Core component suite for Dash",
"repository": {
"type": "git",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
.dash-button {
line-height: 32px;
background: color-mix(
in srgb,
var(--Dash-Fill-Interactive-Strong) 5%,
transparent
);
background: var(--Dash-Fill-Interactive-Weak);
color: var(--Dash-Fill-Interactive-Strong);
padding: 0 calc(var(--Dash-Spacing) * 2);
border-radius: 4px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,7 @@
}

.dash-datepicker-calendar td.dash-datepicker-calendar-date-highlighted {
background-color: color-mix(
in srgb,
var(--Dash-Fill-Interactive-Strong) 5%,
transparent 95%
);
background-color: var(--Dash-Fill-Interactive-Weak);
color: var(--Dash-Fill-Interactive-Strong);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -384,6 +384,9 @@ const DatePickerRange = ({
className="dash-datepicker-content"
align="start"
sideOffset={5}
collisionBoundary={containerRef.current?.closest(
'#_dash-app-content'
)}
onOpenAutoFocus={e => e.preventDefault()}
onCloseAutoFocus={e => {
e.preventDefault();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,9 @@ const DatePickerSingle = ({
className="dash-datepicker-content"
align="start"
sideOffset={5}
collisionBoundary={containerRef.current?.closest(
'#_dash-app-content'
)}
onOpenAutoFocus={e => e.preventDefault()}
onCloseAutoFocus={e => {
e.preventDefault();
Expand Down
3 changes: 3 additions & 0 deletions components/dash-core-components/src/fragments/Dropdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -458,6 +458,9 @@ const Dropdown = (props: DropdownProps) => {
className="dash-dropdown-content"
align="start"
sideOffset={5}
collisionBoundary={positioningContainerRef.current?.closest(
'#_dash-app-content'
)}
onOpenAutoFocus={e => e.preventDefault()}
onKeyDown={handleKeyDown}
style={{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,7 @@ def test_upfd001_folder_upload_with_enable_folder_selection(dash_dcc):
html.Div("Folder Upload Test", id="title"),
dcc.Upload(
id="upload-folder",
children=html.Div(
["Drag and Drop or ", html.A("Select Folder")]
),
children=html.Div(["Drag and Drop or ", html.A("Select Folder")]),
style={
"width": "100%",
"height": "60px",
Expand Down Expand Up @@ -77,7 +75,9 @@ def test_upfd002_multiple_files_without_folder_selection(dash_dcc):
html.Div("Multiple Files Test", id="title"),
dcc.Upload(
id="upload-multiple",
children=html.Div(["Drag and Drop or ", html.A("Select Multiple Files")]),
children=html.Div(
["Drag and Drop or ", html.A("Select Multiple Files")]
),
style={
"width": "100%",
"height": "60px",
Expand Down
4 changes: 2 additions & 2 deletions components/dash-html-components/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion components/dash-html-components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dash-html-components",
"version": "4.0.0-rc4",
"version": "4.0.0-rc5",
"description": "Vanilla HTML components for Dash",
"main": "lib/index.js",
"repository": {
Expand Down
4 changes: 2 additions & 2 deletions components/dash-table/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion components/dash-table/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dash-table",
"version": "7.0.0-rc4",
"version": "7.0.0-rc5",
"description": "Dash table",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion dash/dash-renderer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dash-renderer",
"version": "3.0.0-rc4",
"version": "3.0.0-rc5",
"description": "render dash components in react",
"main": "build/dash_renderer.min.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion dash/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "4.0.0rc4"
__version__ = "4.0.0rc5"
Loading
Loading