Skip to content

Commit 0f3a65c

Browse files
authored
Merge branch 'dev' into update-dcc-loading
2 parents e710b47 + 4f7d41d commit 0f3a65c

36 files changed

+1570
-1093
lines changed

@plotly/dash-jupyterlab/yarn.lock

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -977,6 +977,18 @@ minimist@^1.2.5, minimist@~1.2.0:
977977
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602"
978978
integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==
979979

980+
minimist@^1.2.6:
981+
version "1.2.8"
982+
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c"
983+
integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==
984+
985+
mkdirp@^0.5.1:
986+
version "0.5.6"
987+
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.6.tgz#7def03d2432dcae4ba1d611445c48396062255f6"
988+
integrity sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==
989+
dependencies:
990+
minimist "^1.2.6"
991+
980992
moment@^2.24.0:
981993
version "2.24.0"
982994
resolved "https://registry.yarnpkg.com/moment/-/moment-2.24.0.tgz#0d055d53f5052aa653c9f6eb68bb5d12bf5c2b5b"

@plotly/dash-test-components/src/components/StyledComponent.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ StyledComponent.propTypes = {
1515
/**
1616
* The style
1717
*/
18-
style: PropTypes.shape,
18+
style: PropTypes.object,
1919

2020
/**
2121
* The value to display
@@ -27,4 +27,4 @@ StyledComponent.defaultProps = {
2727
value: ''
2828
};
2929

30-
export default StyledComponent;
30+
export default StyledComponent;

CHANGELOG.md

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

5-
## [UNRELEASED]
5+
## [2.16.0] - 2024-03-01
66

77
## Fixed
88

@@ -15,6 +15,9 @@ This project adheres to [Semantic Versioning](https://semver.org/).
1515
- [#2735](https://github.com/plotly/dash/pull/2735) Configure CI for Python 3.8 and 3.12, drop support for Python 3.6 and Python 3.7 [#2736](https://github.com/plotly/dash/issues/2736)
1616

1717
## Added
18+
- [#2762](https://github.com/plotly/dash/pull/2762) Add dynamic loading of component libraries.
19+
- Add `dynamic_loading=True` to dash init.
20+
- Add `preloaded_libraries=[]` to dash init, included libraries names will be loaded on the index like before.
1821
- [#2758](https://github.com/plotly/dash/pull/2758)
1922
- exposing `setProps` to `dash_clientside.clientSide_setProps` to allow for JS code to interact directly with the dash eco-system
2023
- [#2730](https://github.com/plotly/dash/pull/2721) Load script files with `.mjs` ending as js modules

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

Lines changed: 170 additions & 201 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: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dash-core-components",
3-
"version": "2.13.0",
3+
"version": "2.13.1",
44
"description": "Core component suite for Dash",
55
"repository": {
66
"type": "git",
@@ -65,10 +65,10 @@
6565
"uniqid": "^5.4.0"
6666
},
6767
"devDependencies": {
68-
"@babel/cli": "^7.23.4",
69-
"@babel/core": "^7.23.7",
68+
"@babel/cli": "^7.23.9",
69+
"@babel/core": "^7.24.0",
7070
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
71-
"@babel/preset-env": "^7.23.8",
71+
"@babel/preset-env": "^7.24.0",
7272
"@babel/preset-react": "^7.23.3",
7373
"@plotly/dash-component-plugins": "^1.2.3",
7474
"@plotly/webpack-dash-dynamic-import": "^1.3.0",
@@ -89,7 +89,7 @@
8989
"react-jsx-parser": "1.21.0",
9090
"style-loader": "^3.3.3",
9191
"styled-jsx": "^3.4.4",
92-
"webpack": "^5.90.0",
92+
"webpack": "^5.90.3",
9393
"webpack-cli": "^5.1.4",
9494
"rimraf": "^5.0.5"
9595
},

0 commit comments

Comments
 (0)