@jbrowse/plugin-linear-genome-view 1.5.3 → 1.5.7

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": "@jbrowse/plugin-linear-genome-view",
3
- "version": "1.5.3",
3
+ "version": "1.5.7",
4
4
  "description": "JBrowse 2 linear genome view",
5
5
  "keywords": [
6
6
  "jbrowse",
@@ -36,7 +36,7 @@
36
36
  },
37
37
  "dependencies": {
38
38
  "@material-ui/icons": "^4.9.1",
39
- "@popperjs/core": "^2.9.3",
39
+ "@popperjs/core": "^2.11.0",
40
40
  "clone": "^2.1.2",
41
41
  "clsx": "^1.0.4",
42
42
  "copy-to-clipboard": "^3.3.1",
@@ -45,7 +45,7 @@
45
45
  "json-stable-stringify": "^1.0.1",
46
46
  "normalize-wheel": "^1.0.1",
47
47
  "react-popper": "^2.0.0",
48
- "react-sizeme": "^2.6.7"
48
+ "react-sizeme": "^3.0.2"
49
49
  },
50
50
  "peerDependencies": {
51
51
  "@jbrowse/core": "^1.0.0",
@@ -61,5 +61,5 @@
61
61
  "publishConfig": {
62
62
  "access": "public"
63
63
  },
64
- "gitHead": "cea9023ebce8bbe5c08ae9e00c4e74fe3f02a7f1"
64
+ "gitHead": "b9b69276a6760ca01c7c7d905e2172b4adf9df8d"
65
65
  }
@@ -35,7 +35,6 @@ const useStyles = makeStyles(theme => ({
35
35
  lineHeight: `${round(14 / 10)}em`,
36
36
  maxWidth: 300,
37
37
  wordWrap: 'break-word',
38
- fontWeight: theme.typography.fontWeightMedium,
39
38
  },
40
39
  }))
41
40
 
@@ -1,4 +1,4 @@
1
- import React, { lazy, useMemo, useEffect, useState } from 'react'
1
+ import React, { Suspense, lazy, useMemo, useEffect, useState } from 'react'
2
2
  import { observer } from 'mobx-react'
3
3
  import { getSession, useDebounce, measureText } from '@jbrowse/core/util'
4
4
  import BaseResult, {
@@ -270,7 +270,9 @@ function RefNameAutocomplete({
270
270
  }
271
271
  />
272
272
  {isHelpDialogDisplayed ? (
273
- <HelpDialog handleClose={() => setHelpDialogDisplayed(false)} />
273
+ <Suspense fallback={<div />}>
274
+ <HelpDialog handleClose={() => setHelpDialogDisplayed(false)} />
275
+ </Suspense>
274
276
  ) : null}
275
277
  </>
276
278
  )
package/src/declare.d.ts DELETED
@@ -1 +0,0 @@
1
- declare module 'normalize-wheel'