@teselagen/ove 0.7.6-beta.1 → 0.7.6-beta.3

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": "@teselagen/ove",
3
- "version": "0.7.6-beta.1",
3
+ "version": "0.7.6-beta.3",
4
4
  "main": "./src/index.js",
5
5
  "exports": {
6
6
  ".": {
@@ -12,12 +12,10 @@
12
12
  "dependencies": {
13
13
  "@teselagen/sequence-utils": "0.3.27",
14
14
  "@teselagen/range-utils": "0.3.7",
15
- "@teselagen/ui": "0.7.10-beta.1",
15
+ "@teselagen/ui": "0.7.10-beta.3",
16
16
  "@teselagen/file-utils": "0.3.16",
17
17
  "@teselagen/bounce-loader": "0.3.11",
18
18
  "@teselagen/bio-parsers": "0.4.22",
19
- "@blueprintjs/core": "3.54.0",
20
- "@blueprintjs/datetime": "^3.24.1",
21
19
  "@blueprintjs/icons": "3.33.0",
22
20
  "@blueprintjs/select": "3.18.11",
23
21
  "@dnd-kit/core": "^6.1.0",
@@ -34,7 +32,6 @@
34
32
  "buffer": "5.7.1",
35
33
  "bufferpack": "0.0.6",
36
34
  "classnames": "^2.3.2",
37
- "clipboard": "2.0.11",
38
35
  "color": "^3.2.1",
39
36
  "combokeys": "^3.0.1",
40
37
  "copy-to-clipboard": "^3.3.1",
@@ -72,7 +69,6 @@
72
69
  "react-dom": "^18.3.1",
73
70
  "react-draggable": "4.4.5",
74
71
  "react-dropzone": "^11.4.2",
75
- "react-markdown": "9.0.1",
76
72
  "react-measure": "^2.5.2",
77
73
  "react-redux": "^8.0.5",
78
74
  "react-rnd": "^10.2.4",
@@ -84,7 +80,6 @@
84
80
  "redux-act": "^1.8.0",
85
81
  "redux-form": "^8.3.10",
86
82
  "redux-thunk": "2.4.1",
87
- "remark-gfm": "^4.0.0",
88
83
  "reselect": "^4.1.7",
89
84
  "shortid": "^2.2.16",
90
85
  "tg-use-local-storage-state": "^16.0.3",
@@ -4,7 +4,7 @@ import {
4
4
  Droppable,
5
5
  Draggable as DndDraggable
6
6
  } from "@hello-pangea/dnd";
7
- import Clipboard from "clipboard";
7
+ import ClipboardJS from "clipboard";
8
8
  import React from "react";
9
9
  import { connect } from "react-redux";
10
10
  import {
@@ -1214,7 +1214,7 @@ export class AlignmentView extends React.Component {
1214
1214
  },
1215
1215
  didMount: () => {
1216
1216
  this.copyAllAlignmentsFastaClipboardHelper =
1217
- new Clipboard(
1217
+ new ClipboardJS(
1218
1218
  `.copyAllAlignmentsFastaClipboardHelper`,
1219
1219
  {
1220
1220
  action: "copyAllAlignmentsFasta",
@@ -1239,7 +1239,7 @@ export class AlignmentView extends React.Component {
1239
1239
  },
1240
1240
  didMount: () => {
1241
1241
  this.copySpecificAlignmentFastaClipboardHelper =
1242
- new Clipboard(
1242
+ new ClipboardJS(
1243
1243
  `.copySpecificAlignmentFastaClipboardHelper`,
1244
1244
  {
1245
1245
  action: "copySpecificAlignmentFasta",
@@ -1278,7 +1278,7 @@ export class AlignmentView extends React.Component {
1278
1278
  },
1279
1279
  didMount: () => {
1280
1280
  this.copySpecificAlignmentAsPlainClipboardHelper =
1281
- new Clipboard(
1281
+ new ClipboardJS(
1282
1282
  `.copySpecificAlignmentAsPlainClipboardHelper`,
1283
1283
  {
1284
1284
  action: "copySpecificAlignmentFasta",
@@ -1,7 +1,7 @@
1
1
  import { noop } from "lodash-es";
2
2
  import React from "react";
3
3
 
4
- class Keyboard extends React.Component {
4
+ class Clipboard extends React.Component {
5
5
  // static propTypes = {
6
6
  // value: PropTypes.string.isRequired
7
7
  // };
@@ -82,4 +82,4 @@ class Keyboard extends React.Component {
82
82
  }
83
83
  }
84
84
 
85
- export default Keyboard;
85
+ export default Clipboard;
@@ -4,7 +4,7 @@ import {
4
4
  getAminoAcidStringFromSequenceString
5
5
  } from "@teselagen/sequence-utils";
6
6
  import { getSequenceWithinRange } from "@teselagen/range-utils";
7
- import Clipboard from "clipboard";
7
+ import ClipboardJS from "clipboard";
8
8
  import { compose } from "redux";
9
9
  import {
10
10
  getReverseComplementSequenceAndAnnotations,
@@ -599,7 +599,7 @@ function VectorInteractionHOC(Component /* options */) {
599
599
  this.props;
600
600
  const { isProtein } = sequenceData;
601
601
  const makeTextCopyable = (transformFunc, className, action = "copy") => {
602
- return new Clipboard(`.${className}`, {
602
+ return new ClipboardJS(`.${className}`, {
603
603
  action: () => action,
604
604
  text: () => {
605
605
  if (action === "copy") {
@@ -1,6 +1,6 @@
1
1
  import { default as React } from '../../../../node_modules/react';
2
- export default Keyboard;
3
- declare class Keyboard extends React.Component<any, any, any> {
2
+ export default Clipboard;
3
+ declare class Clipboard extends React.Component<any, any, any> {
4
4
  static defaultProps: {
5
5
  className: string;
6
6
  };