@jbrowse/plugin-linear-comparative-view 2.8.0 → 2.10.0

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.
Files changed (49) hide show
  1. package/dist/LGVSyntenyDisplay/configSchemaF.d.ts +2 -0
  2. package/dist/LGVSyntenyDisplay/configSchemaF.js +2 -0
  3. package/dist/LGVSyntenyDisplay/model.d.ts +18 -7
  4. package/dist/LGVSyntenyDisplay/model.js +13 -3
  5. package/dist/LaunchLinearSyntenyView.js +6 -2
  6. package/dist/LinearComparativeDisplay/stateModelFactory.d.ts +35 -27
  7. package/dist/LinearComparativeDisplay/stateModelFactory.js +2 -0
  8. package/dist/LinearComparativeView/model.d.ts +141 -6
  9. package/dist/LinearComparativeView/model.js +4 -2
  10. package/dist/LinearReadVsRef/LinearReadVsRef.js +1 -1
  11. package/dist/LinearReadVsRef/index.js +26 -2
  12. package/dist/LinearSyntenyDisplay/components/LinearSyntenyRendering.js +185 -96
  13. package/dist/LinearSyntenyDisplay/components/SyntenyContextMenu.d.ts +13 -0
  14. package/dist/LinearSyntenyDisplay/components/SyntenyContextMenu.js +57 -0
  15. package/dist/LinearSyntenyDisplay/components/SyntenyTooltip.d.ts +1 -3
  16. package/dist/LinearSyntenyDisplay/components/SyntenyTooltip.js +19 -51
  17. package/dist/LinearSyntenyDisplay/model.d.ts +27 -17
  18. package/dist/LinearSyntenyDisplay/model.js +2 -1
  19. package/dist/LinearSyntenyView/components/ImportForm/index.js +1 -1
  20. package/dist/LinearSyntenyView/model.d.ts +441 -16
  21. package/dist/LinearSyntenyView/model.js +8 -1
  22. package/dist/LinearSyntenyView/svgcomponents/SVGLinearSyntenyView.js +6 -6
  23. package/dist/SyntenyTrack/configSchema.d.ts +5 -0
  24. package/dist/SyntenyTrack/configSchema.js +2 -0
  25. package/esm/LGVSyntenyDisplay/configSchemaF.d.ts +2 -0
  26. package/esm/LGVSyntenyDisplay/configSchemaF.js +2 -0
  27. package/esm/LGVSyntenyDisplay/model.d.ts +18 -7
  28. package/esm/LGVSyntenyDisplay/model.js +13 -3
  29. package/esm/LaunchLinearSyntenyView.js +6 -2
  30. package/esm/LinearComparativeDisplay/stateModelFactory.d.ts +35 -27
  31. package/esm/LinearComparativeDisplay/stateModelFactory.js +2 -0
  32. package/esm/LinearComparativeView/model.d.ts +141 -6
  33. package/esm/LinearComparativeView/model.js +4 -2
  34. package/esm/LinearReadVsRef/LinearReadVsRef.js +1 -1
  35. package/esm/LinearReadVsRef/index.js +2 -1
  36. package/esm/LinearSyntenyDisplay/components/LinearSyntenyRendering.js +186 -97
  37. package/esm/LinearSyntenyDisplay/components/SyntenyContextMenu.d.ts +13 -0
  38. package/esm/LinearSyntenyDisplay/components/SyntenyContextMenu.js +51 -0
  39. package/esm/LinearSyntenyDisplay/components/SyntenyTooltip.d.ts +1 -3
  40. package/esm/LinearSyntenyDisplay/components/SyntenyTooltip.js +18 -30
  41. package/esm/LinearSyntenyDisplay/model.d.ts +27 -17
  42. package/esm/LinearSyntenyDisplay/model.js +2 -1
  43. package/esm/LinearSyntenyView/components/ImportForm/index.js +1 -1
  44. package/esm/LinearSyntenyView/model.d.ts +441 -16
  45. package/esm/LinearSyntenyView/model.js +8 -1
  46. package/esm/LinearSyntenyView/svgcomponents/SVGLinearSyntenyView.js +6 -6
  47. package/esm/SyntenyTrack/configSchema.d.ts +5 -0
  48. package/esm/SyntenyTrack/configSchema.js +2 -0
  49. package/package.json +4 -5
@@ -2,6 +2,8 @@ import { ConfigurationSchema } from '@jbrowse/core/configuration';
2
2
  import { createBaseTrackConfig } from '@jbrowse/core/pluggableElementTypes/models';
3
3
  /**
4
4
  * #config SyntenyTrack
5
+ * extends
6
+ * - [BaseTrack](../basetrack)
5
7
  */
6
8
  function x() { } // eslint-disable-line @typescript-eslint/no-unused-vars
7
9
  const configSchema = (pluginManager) => ConfigurationSchema('SyntenyTrack', {}, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jbrowse/plugin-linear-comparative-view",
3
- "version": "2.8.0",
3
+ "version": "2.10.0",
4
4
  "description": "JBrowse 2 linear comparative view",
5
5
  "keywords": [
6
6
  "jbrowse",
@@ -36,12 +36,11 @@
36
36
  "clean": "rimraf dist esm *.tsbuildinfo"
37
37
  },
38
38
  "dependencies": {
39
+ "@floating-ui/react": "^0.26.3",
39
40
  "@mui/icons-material": "^5.0.1",
40
- "@popperjs/core": "^2.0.0",
41
41
  "clone": "^2.1.2",
42
42
  "copy-to-clipboard": "^3.3.1",
43
- "file-saver": "^2.0.0",
44
- "react-popper": "^2.0.0"
43
+ "file-saver": "^2.0.0"
45
44
  },
46
45
  "peerDependencies": {
47
46
  "@jbrowse/core": "^2.0.0",
@@ -62,5 +61,5 @@
62
61
  "publishConfig": {
63
62
  "access": "public"
64
63
  },
65
- "gitHead": "ee8c2bdc8bd4f1a70b1eefda984f04a2830d9ca0"
64
+ "gitHead": "223d8bfb68fd1bacaf22852639ad5920f1b7f43b"
66
65
  }