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
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
All notable changes to `dash` will be documented in this file.
This project adheres to [Semantic Versioning](https://semver.org/).

## [UNRELEASED]
## [3.3.0] - 2025-11-12

## Added
- [#3395](https://github.com/plotly/dash/pull/3396) Add position argument to hooks.devtool
Expand Down
738 changes: 380 additions & 358 deletions components/dash-core-components/package-lock.json

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions 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": "3.2.0",
"version": "3.3.0",
"description": "Core component suite for Dash",
"repository": {
"type": "git",
Expand Down Expand Up @@ -63,12 +63,12 @@
"uniqid": "^5.4.0"
},
"devDependencies": {
"@babel/cli": "^7.28.0",
"@babel/core": "^7.28.0",
"@babel/eslint-parser": "^7.28.0",
"@babel/cli": "^7.28.3",
"@babel/core": "^7.28.5",
"@babel/eslint-parser": "^7.28.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.28.0",
"@babel/preset-react": "^7.27.1",
"@babel/preset-env": "^7.28.5",
"@babel/preset-react": "^7.28.5",
"@plotly/dash-component-plugins": "^1.2.3",
"@plotly/webpack-dash-dynamic-import": "^1.3.0",
"babel-loader": "^9.2.1",
Expand All @@ -86,7 +86,7 @@
"rimraf": "^5.0.5",
"style-loader": "^3.3.3",
"styled-jsx": "^5.1.7",
"webpack": "^5.101.0",
"webpack": "^5.102.1",
"webpack-cli": "^5.1.4"
},
"optionalDependencies": {
Expand Down
747 changes: 386 additions & 361 deletions components/dash-html-components/package-lock.json

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions 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": "3.0.4",
"version": "3.0.5",
"description": "Vanilla HTML components for Dash",
"main": "lib/index.js",
"repository": {
Expand Down Expand Up @@ -32,11 +32,11 @@
"ramda": "^0.30.1"
},
"devDependencies": {
"@babel/cli": "^7.28.0",
"@babel/core": "^7.28.0",
"@babel/eslint-parser": "^7.28.0",
"@babel/preset-env": "^7.28.0",
"@babel/preset-react": "^7.27.1",
"@babel/cli": "^7.28.3",
"@babel/core": "^7.28.5",
"@babel/eslint-parser": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@babel/preset-react": "^7.28.5",
"babel-loader": "^9.2.1",
"cheerio": "^0.22.0",
"cross-env": "^7.0.3",
Expand All @@ -51,7 +51,7 @@
"react-dom": "^16.14.0",
"rimraf": "^5.0.5",
"string": "^3.3.3",
"webpack": "^5.101.0",
"webpack": "^5.102.1",
"webpack-cli": "^5.1.4"
},
"files": [
Expand Down
Loading