@apollo-annotation/mst 0.2.1 → 0.2.2

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@apollo-annotation/mst",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "main": "./dist/index.js",
5
5
  "scripts": {
6
6
  "build": "tsc"
@@ -8,7 +8,7 @@
8
8
  "dependencies": {
9
9
  "@jbrowse/core": "^2.13.1",
10
10
  "mobx": "^6.6.1",
11
- "mobx-state-tree": "^5.1.7",
11
+ "mobx-state-tree": "^5.4.0",
12
12
  "react-dom": "^18.2.0",
13
13
  "rxjs": "^7.4.0",
14
14
  "tslib": "^2.3.1"
@@ -352,7 +352,7 @@ interface AnnotationFeatureRaw
352
352
  // not a Map, but it's better than typing it as any.
353
353
  export interface AnnotationFeature
354
354
  extends Omit<AnnotationFeatureRaw, 'children'> {
355
- children?: Map<string, AnnotationFeature>
355
+ children?: Map<string | number, AnnotationFeature>
356
356
  }
357
357
  // eslint-disable-next-line @typescript-eslint/no-empty-object-type
358
358
  interface AnnotationFeatureSnapshotRaw