@jbrowse/plugin-linear-comparative-view 3.0.0 → 3.0.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.
@@ -151,7 +151,7 @@ function getTooltip({ feature, cigarOp, cigarOpLen, }) {
151
151
  identity ? `Identity: ${identity.toPrecision(2)}` : '',
152
152
  cigarOp ? `CIGAR operator: ${cigarOp}${cigarOpLen}` : '',
153
153
  n1 ? `Name 1: ${n1}` : '',
154
- n2 ? `Name 1: ${n2}` : '',
154
+ n2 ? `Name 2: ${n2}` : '',
155
155
  ]
156
156
  .filter(f => !!f)
157
157
  .join('<br/>');
@@ -11,7 +11,10 @@ function configSchemaFactory(pluginManager) {
11
11
  type: 'stringArray',
12
12
  defaultValue: [],
13
13
  },
14
- middle: { type: 'boolean', defaultValue: true },
14
+ middle: {
15
+ type: 'boolean',
16
+ defaultValue: true,
17
+ },
15
18
  }, {
16
19
  baseConfiguration: (0, configSchemaF_1.default)(pluginManager),
17
20
  explicitlyTyped: true,
@@ -142,7 +142,7 @@ export function getTooltip({ feature, cigarOp, cigarOpLen, }) {
142
142
  identity ? `Identity: ${identity.toPrecision(2)}` : '',
143
143
  cigarOp ? `CIGAR operator: ${cigarOp}${cigarOpLen}` : '',
144
144
  n1 ? `Name 1: ${n1}` : '',
145
- n2 ? `Name 1: ${n2}` : '',
145
+ n2 ? `Name 2: ${n2}` : '',
146
146
  ]
147
147
  .filter(f => !!f)
148
148
  .join('<br/>');
@@ -6,7 +6,10 @@ function configSchemaFactory(pluginManager) {
6
6
  type: 'stringArray',
7
7
  defaultValue: [],
8
8
  },
9
- middle: { type: 'boolean', defaultValue: true },
9
+ middle: {
10
+ type: 'boolean',
11
+ defaultValue: true,
12
+ },
10
13
  }, {
11
14
  baseConfiguration: baseConfigFactory(pluginManager),
12
15
  explicitlyTyped: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jbrowse/plugin-linear-comparative-view",
3
- "version": "3.0.0",
3
+ "version": "3.0.2",
4
4
  "description": "JBrowse 2 linear comparative view",
5
5
  "keywords": [
6
6
  "jbrowse",
@@ -36,28 +36,28 @@
36
36
  "clean": "rimraf dist esm *.tsbuildinfo"
37
37
  },
38
38
  "dependencies": {
39
+ "@jbrowse/core": "^3.0.2",
40
+ "@jbrowse/plugin-alignments": "^3.0.2",
41
+ "@jbrowse/plugin-linear-genome-view": "^3.0.2",
39
42
  "@mui/icons-material": "^6.0.0",
40
- "copy-to-clipboard": "^3.3.1",
41
- "file-saver": "^2.0.0"
42
- },
43
- "peerDependencies": {
44
- "@jbrowse/core": "^2.0.0",
45
- "@jbrowse/plugin-alignments": "^2.0.0",
46
- "@jbrowse/plugin-linear-genome-view": "^2.0.0",
47
43
  "@mui/material": "^6.0.0",
44
+ "copy-to-clipboard": "^3.3.1",
45
+ "file-saver": "^2.0.0",
48
46
  "mobx": "^6.0.0",
49
47
  "mobx-react": "^9.0.0",
50
48
  "mobx-state-tree": "^5.0.0",
51
- "react": ">=16.8.0",
52
- "react-dom": ">=16.8.0",
53
49
  "rxjs": "^7.0.0",
54
50
  "tss-react": "^4.0.0"
55
51
  },
52
+ "peerDependencies": {
53
+ "react": ">=18.0.0",
54
+ "react-dom": ">=18.0.0"
55
+ },
56
56
  "distModule": "esm/index.js",
57
57
  "srcModule": "src/index.ts",
58
58
  "module": "esm/index.js",
59
59
  "publishConfig": {
60
60
  "access": "public"
61
61
  },
62
- "gitHead": "2c6897f1fa732b1db5b094d1dca197e333e95319"
62
+ "gitHead": "c01a35edcb2612e94661af8793f09c95c0b13c75"
63
63
  }