Skip to content

Commit 2cf1685

Browse files
authored
Merge branch 'dev' into feat/tsx-prop-types
2 parents 9197e8f + 0d9cd2c commit 2cf1685

File tree

17 files changed

+6655
-7482
lines changed

17 files changed

+6655
-7482
lines changed

@plotly/dash-jupyterlab/yarn.lock

Lines changed: 1357 additions & 1050 deletions
Large diffs are not rendered by default.

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,15 @@ This project adheres to [Semantic Versioning](https://semver.org/).
66

77
## Fixed
88

9+
- [#2939](https://github.com/plotly/dash/pull/2939) Fixes bug with whitespace on DataTable when `merge_duplicate_header=True`. Fixes [#2870](https://github.com/plotly/dash/issues/2870)
910
- [#2994](https://github.com/plotly/dash/pull/2994) Keep generated doc-string order for shape or exact props. Fixes [#2990](https://github.com/plotly/dash/issues/2990)
1011
- [#3011](https://github.com/plotly/dash/pull/3011) Fixed an exception error caused by assigning `None` to array properties with `exact` or `shape` element types. Fixes [#3010](https://github.com/plotly/dash/issues/3010)
1112
- [#2991](https://github.com/plotly/dash/pull/2991) Add support for URL decoding of the search parameter for pages.
1213
- [#3025](https://github.com/plotly/dash/pull/3025) Fix no output callback with error handler setting the response to NoUpdate and triggering an error.
1314
- [#3034](https://github.com/plotly/dash/pull/3034) Remove whitespace from `metadata.json` files to reduce package size.
1415
- [#3009](https://github.com/plotly/dash/pull/3009) Performance improvement on (pattern-matching) callbacks.
16+
- [3028](https://github.com/plotly/dash/pull/3028) Fix jupyterlab v4 support.
17+
- [#3051](https://github.com/plotly/dash/pull/3051) Add missing request data to callback context. Fix [#2235](https://github.com/plotly/dash/issues/2235).
1518

1619
## [2.18.1] - 2024-09-12
1720

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

Lines changed: 1134 additions & 1508 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: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -64,14 +64,14 @@
6464
"uniqid": "^5.4.0"
6565
},
6666
"devDependencies": {
67-
"@babel/cli": "^7.25.6",
68-
"@babel/core": "^7.25.2",
67+
"@babel/cli": "^7.25.7",
68+
"@babel/core": "^7.25.8",
6969
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
70-
"@babel/preset-env": "^7.25.4",
71-
"@babel/preset-react": "^7.24.7",
70+
"@babel/preset-env": "^7.25.8",
71+
"@babel/preset-react": "^7.25.7",
7272
"@plotly/dash-component-plugins": "^1.2.3",
7373
"@plotly/webpack-dash-dynamic-import": "^1.3.0",
74-
"babel-loader": "^9.1.3",
74+
"babel-loader": "^9.2.1",
7575
"component-playground": "^3.2.1",
7676
"copyfiles": "^2.4.1",
7777
"css-loader": "^6.8.1",
@@ -89,7 +89,7 @@
8989
"rimraf": "^5.0.5",
9090
"style-loader": "^3.3.3",
9191
"styled-jsx": "^3.4.4",
92-
"webpack": "^5.94.0",
92+
"webpack": "^5.95.0",
9393
"webpack-cli": "^5.1.4"
9494
},
9595
"optionalDependencies": {

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

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

components/dash-html-components/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@
3232
"ramda": "^0.30.1"
3333
},
3434
"devDependencies": {
35-
"@babel/cli": "^7.25.6",
36-
"@babel/core": "^7.25.2",
37-
"@babel/preset-env": "^7.25.4",
38-
"@babel/preset-react": "^7.24.7",
39-
"babel-loader": "^9.1.3",
35+
"@babel/cli": "^7.25.7",
36+
"@babel/core": "^7.25.8",
37+
"@babel/preset-env": "^7.25.8",
38+
"@babel/preset-react": "^7.25.7",
39+
"babel-loader": "^9.2.1",
4040
"cheerio": "^0.22.0",
4141
"cross-env": "^7.0.3",
4242
"es-check": "^7.1.1",
@@ -51,7 +51,7 @@
5151
"request": "^2.88.2",
5252
"rimraf": "^5.0.5",
5353
"string": "^3.3.3",
54-
"webpack": "^5.94.0",
54+
"webpack": "^5.95.0",
5555
"webpack-cli": "^5.1.4"
5656
},
5757
"files": [

components/dash-html-components/scripts/extract-elements.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ function extractElements($) {
2121
'image', 'dir', 'tt', 'applet', 'noembed', 'bgsound', 'menu', 'menuitem',
2222
'noframes',
2323
// experimental, don't add yet
24-
'portal'
24+
'portal',
25+
'fencedframe'
2526
];
2627
// `<section>` is for some reason missing from the reference tables.
2728
const addElements = [

0 commit comments

Comments
 (0)