Skip to content
Snippets Groups Projects
Commit 5bc7ffa8 authored by dsehnal's avatar dsehnal
Browse files

react and react-dom as peerDependencies

parent 430cc832
No related branches found
No related tags found
No related merge requests found
...@@ -6,6 +6,8 @@ Note that since we don't clearly distinguish between a public and private interf ...@@ -6,6 +6,8 @@ Note that since we don't clearly distinguish between a public and private interf
## [Unreleased] ## [Unreleased]
## [v3.0.0-dev.4] - 2021-12-14
- Add ``bumpiness`` (per-object and per-group), ``bumpFrequency`` & ``bumpAmplitude`` (per-object) render parameters (#299) - Add ``bumpiness`` (per-object and per-group), ``bumpFrequency`` & ``bumpAmplitude`` (per-object) render parameters (#299)
- Change ``label`` representation defaults: Use text border instead of rectangle background - Change ``label`` representation defaults: Use text border instead of rectangle background
- Add outline color option to renderer - Add outline color option to renderer
...@@ -14,6 +16,7 @@ Note that since we don't clearly distinguish between a public and private interf ...@@ -14,6 +16,7 @@ Note that since we don't clearly distinguish between a public and private interf
- If there are session files (.molx or .molj) among the dropped files, only the first session will be loaded - If there are session files (.molx or .molj) among the dropped files, only the first session will be loaded
- Add drag and drop overlay - Add drag and drop overlay
- Safari 15.1 - 15.3 WebGL 2 support workaround - Safari 15.1 - 15.3 WebGL 2 support workaround
- [Breaking] Move ``react`` and ``react-dom`` to ``peerDependencies``. This might break some builds.
## [v3.0.0-dev.3] - 2021-12-4 ## [v3.0.0-dev.3] - 2021-12-4
......
...@@ -146,14 +146,16 @@ ...@@ -146,14 +146,16 @@
"immer": "^9.0.7", "immer": "^9.0.7",
"immutable": "^3.8.2", "immutable": "^3.8.2",
"node-fetch": "^2.6.2", "node-fetch": "^2.6.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rxjs": "^7.4.0", "rxjs": "^7.4.0",
"swagger-ui-dist": "^4.1.1", "swagger-ui-dist": "^4.1.1",
"tslib": "^2.3.1", "tslib": "^2.3.1",
"util.promisify": "^1.1.1", "util.promisify": "^1.1.1",
"xhr2": "^0.2.1" "xhr2": "^0.2.1"
}, },
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"optionalDependencies": { "optionalDependencies": {
"gl": "^4.9.2" "gl": "^4.9.2"
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment