@jbrowse/web-core 4.0.2 → 4.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1812,7 +1812,7 @@ export declare function BaseWebSession({ pluginManager, assemblyConfigSchema, }:
1812
1812
  trackId: string;
1813
1813
  };
1814
1814
  }[];
1815
- readonly tracksById: Record<string, AnyConfigurationModel>;
1815
+ getTracksById(): Record<string, AnyConfigurationModel>;
1816
1816
  } & {
1817
1817
  addTrackConf(trackConf: AnyConfiguration): any;
1818
1818
  deleteTrackConf(trackConf: AnyConfigurationModel): any;
@@ -3749,7 +3749,7 @@ export declare function BaseWebSession({ pluginManager, assemblyConfigSchema, }:
3749
3749
  trackId: string;
3750
3750
  };
3751
3751
  }[];
3752
- readonly tracksById: Record<string, AnyConfigurationModel>;
3752
+ getTracksById(): Record<string, AnyConfigurationModel>;
3753
3753
  } & {
3754
3754
  addTrackConf(trackConf: AnyConfiguration): any;
3755
3755
  deleteTrackConf(trackConf: AnyConfigurationModel): any;
@@ -5662,7 +5662,7 @@ export declare function BaseWebSession({ pluginManager, assemblyConfigSchema, }:
5662
5662
  trackId: string;
5663
5663
  };
5664
5664
  }[];
5665
- readonly tracksById: Record<string, AnyConfigurationModel>;
5665
+ getTracksById(): Record<string, AnyConfigurationModel>;
5666
5666
  } & {
5667
5667
  addTrackConf(trackConf: AnyConfiguration): any;
5668
5668
  deleteTrackConf(trackConf: AnyConfigurationModel): any;
@@ -7637,7 +7637,7 @@ export declare function BaseWebSession({ pluginManager, assemblyConfigSchema, }:
7637
7637
  trackId: string;
7638
7638
  };
7639
7639
  }[];
7640
- readonly tracksById: Record<string, AnyConfigurationModel>;
7640
+ getTracksById(): Record<string, AnyConfigurationModel>;
7641
7641
  } & {
7642
7642
  addTrackConf(trackConf: AnyConfiguration): any;
7643
7643
  deleteTrackConf(trackConf: AnyConfigurationModel): any;
@@ -9550,7 +9550,7 @@ export declare function BaseWebSession({ pluginManager, assemblyConfigSchema, }:
9550
9550
  trackId: string;
9551
9551
  };
9552
9552
  }[];
9553
- readonly tracksById: Record<string, AnyConfigurationModel>;
9553
+ getTracksById(): Record<string, AnyConfigurationModel>;
9554
9554
  } & {
9555
9555
  addTrackConf(trackConf: AnyConfiguration): any;
9556
9556
  deleteTrackConf(trackConf: AnyConfigurationModel): any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jbrowse/web-core",
3
- "version": "4.0.2",
3
+ "version": "4.0.3",
4
4
  "description": "JBrowse 2 code shared between web-app type products",
5
5
  "keywords": [
6
6
  "jbrowse",
@@ -28,9 +28,9 @@
28
28
  "@mui/icons-material": "^7.3.6",
29
29
  "@mui/material": "^7.3.6",
30
30
  "mobx": "^6.15.0",
31
- "@jbrowse/app-core": "^4.0.2",
32
- "@jbrowse/product-core": "^4.0.2",
33
- "@jbrowse/core": "^4.0.2"
31
+ "@jbrowse/product-core": "^4.0.3",
32
+ "@jbrowse/core": "^4.0.3",
33
+ "@jbrowse/app-core": "^4.0.3"
34
34
  },
35
35
  "peerDependencies": {
36
36
  "react": ">=18.0.0",