Browse Source

bump deps

Sebastian Bittrich 2 years ago
parent
commit
a13ba027a4
4 changed files with 345 additions and 214 deletions
  1. 4 0
      CHANGELOG.md
  2. 330 203
      package-lock.json
  3. 10 10
      package.json
  4. 1 1
      src/viewer/helpers/model.ts

+ 4 - 0
CHANGELOG.md

@@ -2,6 +2,10 @@
 
 [Semantic Versioning](https://semver.org/)
 
+## [2.5.7] - 2022-10-07
+### General
+- Bump dependencies
+
 ## [2.5.6] - 2022-09-15
 ### Bug fixes
 - Make outgoing strucmotif query URL context-aware

File diff suppressed because it is too large
+ 330 - 203
package-lock.json


+ 10 - 10
package.json

@@ -37,35 +37,35 @@
     "author": "RCSB PDB and Mol* Contributors",
     "license": "MIT",
     "devDependencies": {
-        "@typescript-eslint/eslint-plugin": "^5.31.0",
-        "@typescript-eslint/parser": "^5.31.0",
+        "@typescript-eslint/eslint-plugin": "^5.39.0",
+        "@typescript-eslint/parser": "^5.39.0",
         "buffer": "^6.0.3",
-        "concurrently": "^7.3.0",
+        "concurrently": "^7.4.0",
         "cpx2": "^4.2.0",
         "crypto-browserify": "^3.12.0",
         "css-loader": "^6.7.1",
-        "eslint": "^8.20.0",
+        "eslint": "^8.24.0",
         "extra-watch-webpack-plugin": "^1.0.3",
         "file-loader": "^6.2.0",
         "fs-extra": "^10.1.0",
         "mini-css-extract-plugin": "^2.6.1",
         "path-browserify": "^1.0.1",
         "raw-loader": "^4.0.2",
-        "sass": "^1.54.0",
-        "sass-loader": "^13.0.2",
+        "sass": "^1.55.0",
+        "sass-loader": "^13.1.0",
         "stream-browserify": "^3.0.0",
         "style-loader": "^3.3.1",
-        "typescript": "^4.7.4",
+        "typescript": "^4.8.4",
         "webpack": "^5.74.0",
         "webpack-cli": "^4.10.0"
     },
     "dependencies": {
-        "@types/react": "^18.0.15",
+        "@types/react": "^18.0.21",
         "@types/react-dom": "^18.0.6",
-        "molstar": "^3.16.0",
+        "molstar": "^3.19.0",
         "react": "^18.2.0",
         "react-dom": "^18.2.0",
-        "rxjs": "^7.5.6",
+        "rxjs": "^7.5.7",
         "tslib": "^2.4.0"
     }
 }

+ 1 - 1
src/viewer/helpers/model.ts

@@ -32,7 +32,7 @@ export class ModelLoader {
     private async handleTrajectory<P = {}>(data: any, format: BuiltInTrajectoryFormat, props?: PresetProps, matrix?: Mat4, reprProvider?: TrajectoryHierarchyPresetProvider<P>, params?: P) {
         const trajectory = await this.plugin.builders.structure.parseTrajectory(data, format);
         if (reprProvider) {
-            await this.plugin.builders.structure.hierarchy.applyPreset(trajectory, reprProvider, { ...params });
+            await this.plugin.builders.structure.hierarchy.applyPreset(trajectory, reprProvider, { ...params } as P);
         } else {
             const selector = await this.plugin.builders.structure.hierarchy.applyPreset(trajectory, RcsbPreset, {
                 preset: props || { kind: 'standard', assemblyId: '' }

Some files were not shown because too many files changed in this diff