@teselagen/ove 0.4.9 → 0.4.10
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/index.cjs.js +2863 -1581
- package/index.es.js +2867 -1585
- package/index.umd.js +3203 -2095
- package/package.json +3 -3
- package/src/withEditorInteractions/index.js +5 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teselagen/ove",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.10",
|
|
4
4
|
"main": "./src/index.js",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"@teselagen/sequence-utils": "0.3.24",
|
|
14
14
|
"@teselagen/range-utils": "0.3.7",
|
|
15
|
-
"@teselagen/ui": "0.3.
|
|
15
|
+
"@teselagen/ui": "0.3.83",
|
|
16
16
|
"@teselagen/file-utils": "0.3.16",
|
|
17
17
|
"@teselagen/bounce-loader": "0.3.11",
|
|
18
18
|
"@teselagen/bio-parsers": "0.4.15",
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"react-measure": "^2.5.2",
|
|
71
71
|
"react-redux": "^8.0.5",
|
|
72
72
|
"react-rnd": "^10.2.4",
|
|
73
|
-
"react-router-dom": "^
|
|
73
|
+
"react-router-dom": "^5.3.4",
|
|
74
74
|
"react-sizeme": "^2.6.12",
|
|
75
75
|
"react-sortable-hoc": "^0.6.8",
|
|
76
76
|
"react-transition-group": "^2.4.0",
|
|
@@ -286,7 +286,11 @@ function VectorInteractionHOC(Component /* options */) {
|
|
|
286
286
|
}
|
|
287
287
|
}
|
|
288
288
|
),
|
|
289
|
-
{
|
|
289
|
+
{
|
|
290
|
+
doNotRemoveInvalidChars: true,
|
|
291
|
+
annotationsAsObjects: true,
|
|
292
|
+
includeProteinSequence: true
|
|
293
|
+
}
|
|
290
294
|
);
|
|
291
295
|
|
|
292
296
|
if (
|
|
@@ -308,7 +312,6 @@ function VectorInteractionHOC(Component /* options */) {
|
|
|
308
312
|
: seqData.sequence;
|
|
309
313
|
|
|
310
314
|
seqData.textToCopy = textToCopy;
|
|
311
|
-
|
|
312
315
|
clipboardData.setData("text/plain", textToCopy);
|
|
313
316
|
clipboardData.setData("application/json", JSON.stringify(seqData));
|
|
314
317
|
e.preventDefault();
|