higlass 2.2.3 → 2.3.1
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 +74 -40
- 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 +13142 -11160
- package/dist/hglib.min.js +89 -89
- package/dist/higlass.mjs +13150 -11168
- package/dist/package.json +7 -5
- package/package.json +7 -5
package/dist/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "higlass",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.3.1",
|
|
4
4
|
"description": "HiGlass Hi-C / genomic / large data viewer",
|
|
5
5
|
"author": "Peter Kerpedjiev <pkerpedjiev@gmail.com>",
|
|
6
6
|
"main": "dist/hglib.js",
|
|
@@ -36,6 +36,9 @@
|
|
|
36
36
|
"node": ">=0.12.0"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
+
"@dnd-kit/core": "^6.3.1",
|
|
40
|
+
"@dnd-kit/sortable": "^10.0.0",
|
|
41
|
+
"@dnd-kit/utilities": "^3.2.2",
|
|
39
42
|
"ajv": "^6.10.0",
|
|
40
43
|
"area-polygon": "^1.0.1",
|
|
41
44
|
"box-intersect": "^1.0.1",
|
|
@@ -64,9 +67,8 @@
|
|
|
64
67
|
"pub-sub-es": "^2.0.1",
|
|
65
68
|
"react-checkbox-tree": "^1.7.3",
|
|
66
69
|
"react-color": "^2.13.8",
|
|
67
|
-
"react-grid-layout": "
|
|
70
|
+
"react-grid-layout": "^2.2.2",
|
|
68
71
|
"react-simple-code-editor": "^0.13.0",
|
|
69
|
-
"react-sortable-hoc": "^2.0.0",
|
|
70
72
|
"reactcss": "^1.2.3",
|
|
71
73
|
"robust-point-in-polygon": "^1.0.3",
|
|
72
74
|
"slugid": "^3.2.0",
|
|
@@ -74,8 +76,8 @@
|
|
|
74
76
|
},
|
|
75
77
|
"peerDependencies": {
|
|
76
78
|
"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"
|
|
79
|
+
"react": "^16.6.3 || ^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
80
|
+
"react-dom": "^16.6.3 || ^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
79
81
|
},
|
|
80
82
|
"devDependencies": {
|
|
81
83
|
"@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.1",
|
|
4
4
|
"description": "HiGlass Hi-C / genomic / large data viewer",
|
|
5
5
|
"author": "Peter Kerpedjiev <pkerpedjiev@gmail.com>",
|
|
6
6
|
"main": "dist/hglib.js",
|
|
@@ -36,6 +36,9 @@
|
|
|
36
36
|
"node": ">=0.12.0"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
+
"@dnd-kit/core": "^6.3.1",
|
|
40
|
+
"@dnd-kit/sortable": "^10.0.0",
|
|
41
|
+
"@dnd-kit/utilities": "^3.2.2",
|
|
39
42
|
"ajv": "^6.10.0",
|
|
40
43
|
"area-polygon": "^1.0.1",
|
|
41
44
|
"box-intersect": "^1.0.1",
|
|
@@ -64,9 +67,8 @@
|
|
|
64
67
|
"pub-sub-es": "^2.0.1",
|
|
65
68
|
"react-checkbox-tree": "^1.7.3",
|
|
66
69
|
"react-color": "^2.13.8",
|
|
67
|
-
"react-grid-layout": "
|
|
70
|
+
"react-grid-layout": "^2.2.2",
|
|
68
71
|
"react-simple-code-editor": "^0.13.0",
|
|
69
|
-
"react-sortable-hoc": "^2.0.0",
|
|
70
72
|
"reactcss": "^1.2.3",
|
|
71
73
|
"robust-point-in-polygon": "^1.0.3",
|
|
72
74
|
"slugid": "^3.2.0",
|
|
@@ -74,8 +76,8 @@
|
|
|
74
76
|
},
|
|
75
77
|
"peerDependencies": {
|
|
76
78
|
"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"
|
|
79
|
+
"react": "^16.6.3 || ^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
80
|
+
"react-dom": "^16.6.3 || ^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
79
81
|
},
|
|
80
82
|
"devDependencies": {
|
|
81
83
|
"@babel/core": "^7.23.3",
|