higlass 2.2.3 → 2.3.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.
- package/app/scripts/Autocomplete.jsx +12 -3
- package/app/scripts/Button.jsx +20 -24
- package/app/scripts/ContextMenuContainer.jsx +1 -3
- package/app/scripts/ContextMenuItem.jsx +15 -16
- package/app/scripts/Dialog.jsx +30 -29
- package/app/scripts/HiGlassComponent.jsx +54 -36
- package/app/scripts/HorizontalItem.jsx +50 -21
- package/app/scripts/HorizontalTrack.jsx +1 -0
- package/app/scripts/ListWrapper.jsx +6 -17
- package/app/scripts/Modal.jsx +14 -13
- package/app/scripts/PopupMenu.jsx +6 -12
- package/app/scripts/SortableList.jsx +119 -64
- package/app/scripts/TrackArea.jsx +19 -24
- package/app/scripts/TrackControl.jsx +16 -27
- package/app/scripts/VerticalItem.jsx +53 -22
- package/app/scripts/VerticalTrack.jsx +1 -0
- package/app/scripts/api.js +5 -4
- package/app/scripts/hglib.jsx +34 -4
- package/app/scripts/test-helpers/test-helpers.jsx +2 -2
- package/app/scripts/utils/get-higlass-components.js +2 -2
- package/app/scripts/utils/react-dom-compat.js +100 -0
- package/app/styles/HiGlass.scss +1 -0
- package/dist/app/scripts/Autocomplete.d.ts +3 -1
- package/dist/app/scripts/ContextMenuContainer.d.ts +0 -1
- package/dist/app/scripts/ContextMenuItem.d.ts +9 -15
- package/dist/app/scripts/HiGlassComponent.d.ts +0 -3
- package/dist/app/scripts/HorizontalItem.d.ts +1 -1
- package/dist/app/scripts/ListWrapper.d.ts +2 -7
- package/dist/app/scripts/PopupMenu.d.ts +2 -4
- package/dist/app/scripts/SortableList.d.ts +6 -2
- package/dist/app/scripts/VerticalItem.d.ts +1 -1
- package/dist/app/scripts/utils/react-dom-compat.d.ts +27 -0
- package/dist/hglib.js +13135 -11155
- package/dist/hglib.min.js +89 -89
- package/dist/higlass.mjs +13143 -11163
- package/dist/package.json +17 -7
- package/package.json +17 -7
package/dist/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "higlass",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.3.0",
|
|
4
4
|
"description": "HiGlass Hi-C / genomic / large data viewer",
|
|
5
5
|
"author": "Peter Kerpedjiev <pkerpedjiev@gmail.com>",
|
|
6
6
|
"main": "dist/hglib.js",
|
|
@@ -15,8 +15,16 @@
|
|
|
15
15
|
},
|
|
16
16
|
"./dist/*": "./dist/*"
|
|
17
17
|
},
|
|
18
|
-
"files": [
|
|
19
|
-
|
|
18
|
+
"files": [
|
|
19
|
+
"app",
|
|
20
|
+
"dist"
|
|
21
|
+
],
|
|
22
|
+
"keywords": [
|
|
23
|
+
"hi-c",
|
|
24
|
+
"genomics",
|
|
25
|
+
"matrix",
|
|
26
|
+
"tracks"
|
|
27
|
+
],
|
|
20
28
|
"scripts": {
|
|
21
29
|
"start": "vite",
|
|
22
30
|
"build": "tsc -p tsconfig.emit.json && node ./scripts/build.mjs",
|
|
@@ -36,6 +44,9 @@
|
|
|
36
44
|
"node": ">=0.12.0"
|
|
37
45
|
},
|
|
38
46
|
"dependencies": {
|
|
47
|
+
"@dnd-kit/core": "^6.3.1",
|
|
48
|
+
"@dnd-kit/sortable": "^10.0.0",
|
|
49
|
+
"@dnd-kit/utilities": "^3.2.2",
|
|
39
50
|
"ajv": "^6.10.0",
|
|
40
51
|
"area-polygon": "^1.0.1",
|
|
41
52
|
"box-intersect": "^1.0.1",
|
|
@@ -64,9 +75,8 @@
|
|
|
64
75
|
"pub-sub-es": "^2.0.1",
|
|
65
76
|
"react-checkbox-tree": "^1.7.3",
|
|
66
77
|
"react-color": "^2.13.8",
|
|
67
|
-
"react-grid-layout": "
|
|
78
|
+
"react-grid-layout": "^2.2.2",
|
|
68
79
|
"react-simple-code-editor": "^0.13.0",
|
|
69
|
-
"react-sortable-hoc": "^2.0.0",
|
|
70
80
|
"reactcss": "^1.2.3",
|
|
71
81
|
"robust-point-in-polygon": "^1.0.3",
|
|
72
82
|
"slugid": "^3.2.0",
|
|
@@ -74,8 +84,8 @@
|
|
|
74
84
|
},
|
|
75
85
|
"peerDependencies": {
|
|
76
86
|
"pixi.js": "^5.0.3 || ^6.5.2",
|
|
77
|
-
"react": "^16.6.3 || ^17.0.0 || ^18.0.0",
|
|
78
|
-
"react-dom": "^16.6.3 || ^17.0.0 || ^18.0.0"
|
|
87
|
+
"react": "^16.6.3 || ^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
88
|
+
"react-dom": "^16.6.3 || ^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
79
89
|
},
|
|
80
90
|
"devDependencies": {
|
|
81
91
|
"@babel/core": "^7.23.3",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "higlass",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.3.0",
|
|
4
4
|
"description": "HiGlass Hi-C / genomic / large data viewer",
|
|
5
5
|
"author": "Peter Kerpedjiev <pkerpedjiev@gmail.com>",
|
|
6
6
|
"main": "dist/hglib.js",
|
|
@@ -15,8 +15,16 @@
|
|
|
15
15
|
},
|
|
16
16
|
"./dist/*": "./dist/*"
|
|
17
17
|
},
|
|
18
|
-
"files": [
|
|
19
|
-
|
|
18
|
+
"files": [
|
|
19
|
+
"app",
|
|
20
|
+
"dist"
|
|
21
|
+
],
|
|
22
|
+
"keywords": [
|
|
23
|
+
"hi-c",
|
|
24
|
+
"genomics",
|
|
25
|
+
"matrix",
|
|
26
|
+
"tracks"
|
|
27
|
+
],
|
|
20
28
|
"scripts": {
|
|
21
29
|
"start": "vite",
|
|
22
30
|
"build": "tsc -p tsconfig.emit.json && node ./scripts/build.mjs",
|
|
@@ -36,6 +44,9 @@
|
|
|
36
44
|
"node": ">=0.12.0"
|
|
37
45
|
},
|
|
38
46
|
"dependencies": {
|
|
47
|
+
"@dnd-kit/core": "^6.3.1",
|
|
48
|
+
"@dnd-kit/sortable": "^10.0.0",
|
|
49
|
+
"@dnd-kit/utilities": "^3.2.2",
|
|
39
50
|
"ajv": "^6.10.0",
|
|
40
51
|
"area-polygon": "^1.0.1",
|
|
41
52
|
"box-intersect": "^1.0.1",
|
|
@@ -64,9 +75,8 @@
|
|
|
64
75
|
"pub-sub-es": "^2.0.1",
|
|
65
76
|
"react-checkbox-tree": "^1.7.3",
|
|
66
77
|
"react-color": "^2.13.8",
|
|
67
|
-
"react-grid-layout": "
|
|
78
|
+
"react-grid-layout": "^2.2.2",
|
|
68
79
|
"react-simple-code-editor": "^0.13.0",
|
|
69
|
-
"react-sortable-hoc": "^2.0.0",
|
|
70
80
|
"reactcss": "^1.2.3",
|
|
71
81
|
"robust-point-in-polygon": "^1.0.3",
|
|
72
82
|
"slugid": "^3.2.0",
|
|
@@ -74,8 +84,8 @@
|
|
|
74
84
|
},
|
|
75
85
|
"peerDependencies": {
|
|
76
86
|
"pixi.js": "^5.0.3 || ^6.5.2",
|
|
77
|
-
"react": "^16.6.3 || ^17.0.0 || ^18.0.0",
|
|
78
|
-
"react-dom": "^16.6.3 || ^17.0.0 || ^18.0.0"
|
|
87
|
+
"react": "^16.6.3 || ^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
88
|
+
"react-dom": "^16.6.3 || ^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
79
89
|
},
|
|
80
90
|
"devDependencies": {
|
|
81
91
|
"@babel/core": "^7.23.3",
|