@haniffalab/cherita-react 1.4.1-dev.2025-10-20.528e0f75 → 1.4.1-dev.2025-10-22.61540191
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/cjs/components/dotplot/Dotplot.js +23 -15
- package/dist/cjs/components/full-page/FullPage.js +32 -30
- package/dist/cjs/components/full-page/PlotAlert.js +36 -0
- package/dist/cjs/components/full-page/PlotTypeSelector.js +77 -39
- package/dist/cjs/components/heatmap/Heatmap.js +23 -15
- package/dist/cjs/components/icons/DotPlotIcon.js +58 -0
- package/dist/cjs/components/icons/HeatmapIcon.js +39 -0
- package/dist/cjs/components/icons/MatrixPlotIcon.1.js +51 -0
- package/dist/cjs/components/icons/MatrixPlotIcon.js +53 -0
- package/dist/cjs/components/icons/ScatterplotIcon.1.js +158 -0
- package/dist/cjs/components/icons/ScatterplotIcon.js +138 -0
- package/dist/cjs/components/icons/ViolinPlotIcon.js +34 -0
- package/dist/cjs/components/matrixplot/Matrixplot.js +25 -17
- package/dist/cjs/components/pseudospatial/Pseudospatial.js +64 -25
- package/dist/cjs/components/pseudospatial/PseudospatialToolbar.js +63 -15
- package/dist/cjs/components/violin/Violin.js +41 -30
- package/dist/cjs/context/DatasetContext.js +1 -1
- package/dist/cjs/context/SettingsContext.js +27 -3
- package/dist/cjs/utils/StyledTooltip.js +39 -0
- package/dist/css/cherita.css +37 -22
- package/dist/css/cherita.css.map +1 -1
- package/dist/esm/components/dotplot/Dotplot.js +22 -13
- package/dist/esm/components/full-page/FullPage.js +6 -3
- package/dist/esm/components/full-page/PlotAlert.js +30 -0
- package/dist/esm/components/full-page/PlotTypeSelector.js +76 -38
- package/dist/esm/components/heatmap/Heatmap.js +22 -13
- package/dist/esm/components/icons/DotPlotIcon.js +52 -0
- package/dist/esm/components/icons/HeatmapIcon.js +33 -0
- package/dist/esm/components/icons/MatrixPlotIcon.1.js +45 -0
- package/dist/esm/components/icons/MatrixPlotIcon.js +47 -0
- package/dist/esm/components/icons/ScatterplotIcon.1.js +152 -0
- package/dist/esm/components/icons/ScatterplotIcon.js +132 -0
- package/dist/esm/components/icons/ViolinPlotIcon.js +28 -0
- package/dist/esm/components/matrixplot/Matrixplot.js +24 -15
- package/dist/esm/components/pseudospatial/Pseudospatial.js +58 -18
- package/dist/esm/components/pseudospatial/PseudospatialToolbar.js +52 -4
- package/dist/esm/components/violin/Violin.js +36 -24
- package/dist/esm/context/DatasetContext.js +1 -1
- package/dist/esm/context/SettingsContext.js +27 -3
- package/dist/esm/utils/StyledTooltip.js +33 -0
- package/package.json +2 -2
- package/scss/cherita.scss +19 -1
- package/scss/components/layouts.scss +2 -21
- package/scss/components/plotly.scss +37 -26
- package/scss/components/plots.scss +14 -1
- package/dist/assets/images/plots/dotplot.svg +0 -152
- package/dist/assets/images/plots/heatmap.svg +0 -193
- package/dist/assets/images/plots/matrixplot.svg +0 -275
- package/dist/assets/images/plots/scatterplot.svg +0 -198
- package/dist/assets/images/plots/violin.svg +0 -50
|
@@ -1,152 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
-
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
-
|
|
4
|
-
<svg
|
|
5
|
-
version="1.1"
|
|
6
|
-
id="svg1"
|
|
7
|
-
width="245.72157"
|
|
8
|
-
height="303.95227"
|
|
9
|
-
viewBox="0 0 245.72157 303.95227"
|
|
10
|
-
sodipodi:docname="dotplot.svg"
|
|
11
|
-
inkscape:version="1.4 (1:1.4+202410161351+e7c3feb100)"
|
|
12
|
-
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
13
|
-
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
14
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
15
|
-
xmlns:svg="http://www.w3.org/2000/svg">
|
|
16
|
-
<defs
|
|
17
|
-
id="defs1" />
|
|
18
|
-
<sodipodi:namedview
|
|
19
|
-
id="namedview1"
|
|
20
|
-
pagecolor="#ffffff"
|
|
21
|
-
bordercolor="#000000"
|
|
22
|
-
borderopacity="0.25"
|
|
23
|
-
inkscape:showpageshadow="2"
|
|
24
|
-
inkscape:pageopacity="0.0"
|
|
25
|
-
inkscape:pagecheckerboard="0"
|
|
26
|
-
inkscape:deskcolor="#d1d1d1"
|
|
27
|
-
inkscape:zoom="1.4142136"
|
|
28
|
-
inkscape:cx="94.752308"
|
|
29
|
-
inkscape:cy="87.681241"
|
|
30
|
-
inkscape:window-width="1854"
|
|
31
|
-
inkscape:window-height="1011"
|
|
32
|
-
inkscape:window-x="0"
|
|
33
|
-
inkscape:window-y="0"
|
|
34
|
-
inkscape:window-maximized="1"
|
|
35
|
-
inkscape:current-layer="g1"
|
|
36
|
-
showguides="true"
|
|
37
|
-
inkscape:lockguides="false">
|
|
38
|
-
<sodipodi:guide
|
|
39
|
-
position="23.510117,1317.3039"
|
|
40
|
-
orientation="1,0"
|
|
41
|
-
id="guide3"
|
|
42
|
-
inkscape:locked="false" />
|
|
43
|
-
<sodipodi:guide
|
|
44
|
-
position="123.51012,1314.8313"
|
|
45
|
-
orientation="1,0"
|
|
46
|
-
id="guide4"
|
|
47
|
-
inkscape:locked="false" />
|
|
48
|
-
<sodipodi:guide
|
|
49
|
-
position="223.51012,1324.2961"
|
|
50
|
-
orientation="1,0"
|
|
51
|
-
id="guide5"
|
|
52
|
-
inkscape:locked="false" />
|
|
53
|
-
<sodipodi:guide
|
|
54
|
-
position="-192.73988,1002.9836"
|
|
55
|
-
orientation="0,-1"
|
|
56
|
-
id="guide1"
|
|
57
|
-
inkscape:locked="false" />
|
|
58
|
-
<sodipodi:guide
|
|
59
|
-
position="-332.83363,915.47581"
|
|
60
|
-
orientation="0,-1"
|
|
61
|
-
id="guide2"
|
|
62
|
-
inkscape:locked="false" />
|
|
63
|
-
<sodipodi:guide
|
|
64
|
-
position="-500.36097,827.97971"
|
|
65
|
-
orientation="0,-1"
|
|
66
|
-
id="guide6"
|
|
67
|
-
inkscape:locked="false" />
|
|
68
|
-
<sodipodi:guide
|
|
69
|
-
position="-1030.6852,739.98753"
|
|
70
|
-
orientation="0,-1"
|
|
71
|
-
id="guide7"
|
|
72
|
-
inkscape:locked="false" />
|
|
73
|
-
</sodipodi:namedview>
|
|
74
|
-
<g
|
|
75
|
-
inkscape:groupmode="layer"
|
|
76
|
-
inkscape:label="Image"
|
|
77
|
-
id="g1"
|
|
78
|
-
transform="translate(-376.48988,-303.98362)">
|
|
79
|
-
<circle
|
|
80
|
-
style="opacity:0.994362;fill:#000000;fill-opacity:1;stroke:#070707;stroke-width:1.22386"
|
|
81
|
-
id="path1-7-5"
|
|
82
|
-
cx="399.83685"
|
|
83
|
-
cy="326.50867"
|
|
84
|
-
r="21.913118" />
|
|
85
|
-
<circle
|
|
86
|
-
style="opacity:0.994362;fill:#000000;fill-opacity:1;stroke:#070707;stroke-width:1.22386"
|
|
87
|
-
id="path1-7-5-0"
|
|
88
|
-
cx="500.00333"
|
|
89
|
-
cy="326.63376"
|
|
90
|
-
r="21.913118" />
|
|
91
|
-
<circle
|
|
92
|
-
style="opacity:0.994362;fill:#000000;fill-opacity:1;stroke:#070707;stroke-width:1.22386"
|
|
93
|
-
id="path1-7-5-4"
|
|
94
|
-
cx="599.6864"
|
|
95
|
-
cy="326.75183"
|
|
96
|
-
r="21.913118" />
|
|
97
|
-
<circle
|
|
98
|
-
style="opacity:0.994362;fill:#000000;fill-opacity:1;stroke:#070707;stroke-width:1.0743"
|
|
99
|
-
id="path1-7-5-1"
|
|
100
|
-
cx="599.33148"
|
|
101
|
-
cy="413.78732"
|
|
102
|
-
r="19.235212" />
|
|
103
|
-
<circle
|
|
104
|
-
style="opacity:0.994362;fill:#000000;fill-opacity:1;stroke:#070707;stroke-width:0.999519"
|
|
105
|
-
id="path1-7-5-1-2"
|
|
106
|
-
cx="599.01965"
|
|
107
|
-
cy="501.38483"
|
|
108
|
-
r="17.896259" />
|
|
109
|
-
<circle
|
|
110
|
-
style="opacity:0.994362;fill:#000000;fill-opacity:1;stroke:#070707;stroke-width:1.26125"
|
|
111
|
-
id="path1-7-5-1-2-7"
|
|
112
|
-
cx="500.01099"
|
|
113
|
-
cy="500.78818"
|
|
114
|
-
r="22.582596" />
|
|
115
|
-
<circle
|
|
116
|
-
style="opacity:0.994362;fill:#000000;fill-opacity:1;stroke:#070707;stroke-width:1.29865"
|
|
117
|
-
id="path1-7-5-1-2-9"
|
|
118
|
-
cx="401.25104"
|
|
119
|
-
cy="497.92078"
|
|
120
|
-
r="23.252073" />
|
|
121
|
-
<circle
|
|
122
|
-
style="opacity:0.994362;fill:#000000;fill-opacity:1;stroke:#070707;stroke-width:0.849959"
|
|
123
|
-
id="path1-7-5-1-2-9-8"
|
|
124
|
-
cx="399.97153"
|
|
125
|
-
cy="587.68909"
|
|
126
|
-
r="15.218354" />
|
|
127
|
-
<circle
|
|
128
|
-
style="opacity:0.994362;fill:#000000;fill-opacity:1;stroke:#070707;stroke-width:0.6817"
|
|
129
|
-
id="path1-7-5-1-2-9-8-6"
|
|
130
|
-
cx="500.01663"
|
|
131
|
-
cy="588.84131"
|
|
132
|
-
r="12.205709" />
|
|
133
|
-
<circle
|
|
134
|
-
style="opacity:0.994362;fill:#000000;fill-opacity:1;stroke:#070707;stroke-width:1.14909"
|
|
135
|
-
id="path1-7-5-1-2-9-8-6-8"
|
|
136
|
-
cx="598.99561"
|
|
137
|
-
cy="586.78717"
|
|
138
|
-
r="20.574167" />
|
|
139
|
-
<circle
|
|
140
|
-
style="opacity:0.994362;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:7.8;stroke-dasharray:none;stroke-opacity:1"
|
|
141
|
-
id="path2"
|
|
142
|
-
cx="398.47314"
|
|
143
|
-
cy="413.97076"
|
|
144
|
-
r="18.083261" />
|
|
145
|
-
<circle
|
|
146
|
-
style="opacity:0.994362;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:7.8;stroke-dasharray:none;stroke-opacity:1"
|
|
147
|
-
id="path2-0"
|
|
148
|
-
cx="499.53961"
|
|
149
|
-
cy="412.97141"
|
|
150
|
-
r="23.741936" />
|
|
151
|
-
</g>
|
|
152
|
-
</svg>
|