@weng-lab/visualization 1.0.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/dist/src/components/Graph/ControlPanel.d.ts +28 -0
- package/dist/src/components/Graph/ControlPanel.d.ts.map +1 -0
- package/dist/src/components/Graph/Graph.d.ts +5 -0
- package/dist/src/components/Graph/Graph.d.ts.map +1 -0
- package/dist/src/components/Graph/GraphButton.d.ts +9 -0
- package/dist/src/components/Graph/GraphButton.d.ts.map +1 -0
- package/dist/src/components/Graph/Legend.d.ts +21 -0
- package/dist/src/components/Graph/Legend.d.ts.map +1 -0
- package/dist/src/components/Graph/ScaleLegend.d.ts +9 -0
- package/dist/src/components/Graph/ScaleLegend.d.ts.map +1 -0
- package/dist/src/components/Graph/index.d.ts +4 -0
- package/dist/src/components/Graph/index.d.ts.map +1 -0
- package/dist/src/components/Graph/types.d.ts +41 -0
- package/dist/src/components/Graph/types.d.ts.map +1 -0
- package/dist/src/components/ScatterPlot/controls.d.ts +4 -0
- package/dist/src/components/ScatterPlot/controls.d.ts.map +1 -0
- package/dist/src/components/ScatterPlot/index.d.ts +4 -0
- package/dist/src/components/ScatterPlot/index.d.ts.map +1 -0
- package/dist/src/components/ScatterPlot/minimap.d.ts +4 -0
- package/dist/src/components/ScatterPlot/minimap.d.ts.map +1 -0
- package/dist/src/components/ScatterPlot/scatterplot.d.ts +4 -0
- package/dist/src/components/ScatterPlot/scatterplot.d.ts.map +1 -0
- package/dist/src/components/ScatterPlot/tooltip.d.ts +4 -0
- package/dist/src/components/ScatterPlot/tooltip.d.ts.map +1 -0
- package/dist/src/components/ScatterPlot/types.d.ts +247 -0
- package/dist/src/components/ScatterPlot/types.d.ts.map +1 -0
- package/dist/src/components/ViolinPlot/crossPlot.d.ts +4 -0
- package/dist/src/components/ViolinPlot/crossPlot.d.ts.map +1 -0
- package/dist/src/components/ViolinPlot/helpers.d.ts +18 -0
- package/dist/src/components/ViolinPlot/helpers.d.ts.map +1 -0
- package/dist/src/components/ViolinPlot/index.d.ts +4 -0
- package/dist/src/components/ViolinPlot/index.d.ts.map +1 -0
- package/dist/src/components/ViolinPlot/singleViolin.d.ts +4 -0
- package/dist/src/components/ViolinPlot/singleViolin.d.ts.map +1 -0
- package/dist/src/components/ViolinPlot/testData.d.ts +26 -0
- package/dist/src/components/ViolinPlot/testData.d.ts.map +1 -0
- package/dist/src/components/ViolinPlot/types.d.ts +101 -0
- package/dist/src/components/ViolinPlot/types.d.ts.map +1 -0
- package/dist/src/components/ViolinPlot/violinPlot.d.ts +4 -0
- package/dist/src/components/ViolinPlot/violinPlot.d.ts.map +1 -0
- package/dist/src/components/ViolinPlot/violinTooltip.d.ts +4 -0
- package/dist/src/components/ViolinPlot/violinTooltip.d.ts.map +1 -0
- package/dist/src/index.d.ts +7 -0
- package/dist/src/index.d.ts.map +1 -0
- package/dist/visualization.css +1 -0
- package/dist/visualization.es.js +45609 -0
- package/dist/visualization.es.js.map +1 -0
- package/package.json +51 -0
package/package.json
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@weng-lab/visualization",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Visualization components for the Weng/Moore Labs suite of genomics web resources",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"module": "dist/visualization.es.js",
|
|
7
|
+
"types": "dist/src/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"import": "./dist/visualization.es.js",
|
|
11
|
+
"types": "./dist/src/index.d.ts"
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
"files": [
|
|
15
|
+
"dist"
|
|
16
|
+
],
|
|
17
|
+
"keywords": [],
|
|
18
|
+
"author": "",
|
|
19
|
+
"license": "ISC",
|
|
20
|
+
"dependencies": {
|
|
21
|
+
"cytoscape": "^3.32.0",
|
|
22
|
+
"cytoscape-cose-bilkent": "^4.1.0",
|
|
23
|
+
"cytoscape-popper": "^4.0.1",
|
|
24
|
+
"d3": "^7.9.0",
|
|
25
|
+
"html2canvas": "^1.4.1",
|
|
26
|
+
"tippy.js": "^6.3.7",
|
|
27
|
+
"use-react-screenshot": "^4.0.0"
|
|
28
|
+
},
|
|
29
|
+
"peerDependencies": {
|
|
30
|
+
"@emotion/react": "^11.14.0",
|
|
31
|
+
"@emotion/styled": "^11.14.0",
|
|
32
|
+
"@mui/icons-material": "^7.1.1",
|
|
33
|
+
"@mui/material": "^7.1.1",
|
|
34
|
+
"@visx/visx": "^3.12.0",
|
|
35
|
+
"react": "^19.1.0",
|
|
36
|
+
"react-dom": "^19.1.0"
|
|
37
|
+
},
|
|
38
|
+
"devDependencies": {
|
|
39
|
+
"@emotion/react": "^11.14.0",
|
|
40
|
+
"@emotion/styled": "^11.14.0",
|
|
41
|
+
"@mui/icons-material": "^7.1.1",
|
|
42
|
+
"@mui/material": "^7.1.1",
|
|
43
|
+
"@types/d3": "^7.4.3",
|
|
44
|
+
"@visx/visx": "^3.12.0",
|
|
45
|
+
"react": "^19.1.0",
|
|
46
|
+
"react-dom": "^19.1.0"
|
|
47
|
+
},
|
|
48
|
+
"scripts": {
|
|
49
|
+
"build": "vite build"
|
|
50
|
+
}
|
|
51
|
+
}
|