@haniffalab/cherita-react 1.3.0 → 1.4.0-dev.2025-06-09.7cd38232

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.
Files changed (49) hide show
  1. package/dist/assets/images/plots/dotplot.svg +152 -0
  2. package/dist/assets/images/plots/heatmap.svg +193 -0
  3. package/dist/assets/images/plots/matrixplot.svg +275 -0
  4. package/dist/assets/images/plots/scatterplot.svg +198 -0
  5. package/dist/assets/images/plots/violin.svg +50 -0
  6. package/dist/cjs/components/dotplot/Dotplot.js +35 -5
  7. package/dist/cjs/components/full-page/FullPage.js +109 -50
  8. package/dist/cjs/components/full-page/PlotTypeSelector.js +57 -0
  9. package/dist/cjs/components/heatmap/Heatmap.js +35 -5
  10. package/dist/cjs/components/matrixplot/Matrixplot.js +35 -5
  11. package/dist/cjs/components/obs-list/ObsItem.js +49 -22
  12. package/dist/cjs/components/obs-list/ObsList.js +9 -5
  13. package/dist/cjs/components/scatterplot/Scatterplot.js +115 -95
  14. package/dist/cjs/components/scatterplot/SpatialControls.js +3 -3
  15. package/dist/cjs/components/search-bar/SearchInfo.js +3 -35
  16. package/dist/cjs/components/toolbar/Toolbar.js +102 -0
  17. package/dist/cjs/components/var-list/VarList.js +11 -3
  18. package/dist/cjs/components/violin/Violin.js +37 -6
  19. package/dist/cjs/constants/constants.js +14 -2
  20. package/dist/cjs/context/DatasetContext.js +5 -3
  21. package/dist/cjs/context/SettingsContext.js +77 -46
  22. package/dist/cjs/helpers/map-helper.js +2 -1
  23. package/dist/cjs/index.js +15 -21
  24. package/dist/css/cherita.css +76 -23
  25. package/dist/css/cherita.css.map +1 -1
  26. package/dist/esm/components/dotplot/Dotplot.js +36 -6
  27. package/dist/esm/components/full-page/FullPage.js +111 -50
  28. package/dist/esm/components/full-page/PlotTypeSelector.js +50 -0
  29. package/dist/esm/components/heatmap/Heatmap.js +36 -6
  30. package/dist/esm/components/matrixplot/Matrixplot.js +36 -6
  31. package/dist/esm/components/obs-list/ObsItem.js +49 -22
  32. package/dist/esm/components/obs-list/ObsList.js +9 -5
  33. package/dist/esm/components/scatterplot/Scatterplot.js +115 -95
  34. package/dist/esm/components/scatterplot/SpatialControls.js +3 -3
  35. package/dist/esm/components/search-bar/SearchInfo.js +1 -33
  36. package/dist/esm/components/toolbar/Toolbar.js +91 -0
  37. package/dist/esm/components/var-list/VarList.js +10 -5
  38. package/dist/esm/components/violin/Violin.js +39 -8
  39. package/dist/esm/constants/constants.js +13 -1
  40. package/dist/esm/context/DatasetContext.js +5 -3
  41. package/dist/esm/context/SettingsContext.js +77 -46
  42. package/dist/esm/helpers/map-helper.js +2 -1
  43. package/dist/esm/index.js +4 -4
  44. package/package.json +7 -4
  45. package/scss/cherita.scss +0 -1
  46. package/scss/components/layouts.scss +69 -1
  47. package/scss/components/plotly.scss +19 -14
  48. package/dist/cjs/components/full-page/FullPagePseudospatial.js +0 -157
  49. package/dist/esm/components/full-page/FullPagePseudospatial.js +0 -149
@@ -0,0 +1,152 @@
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>