@vitessce/statistical-plots 3.4.3 → 3.4.4
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/index.js +1 -1
- package/dist-tsc/FeatureBarPlot.js +1 -1
- package/package.json +6 -6
- package/src/FeatureBarPlot.js +1 -1
package/dist/index.js
CHANGED
@@ -91425,7 +91425,7 @@ function FeatureBarPlot(props) {
|
|
91425
91425
|
(_c = (_b = (_a = additionalCellSets == null ? void 0 : additionalCellSets.tree) == null ? void 0 : _a[0]) == null ? void 0 : _b.children) == null ? void 0 : _c.forEach((child) => {
|
91426
91426
|
if (child.name === selectedElement) {
|
91427
91427
|
child.set.forEach(([obsId]) => {
|
91428
|
-
const info2 = { name: "", id: "", color: [] };
|
91428
|
+
const info2 = { name: "", id: "", color: [255, 255, 255] };
|
91429
91429
|
info2.name = selectedElement;
|
91430
91430
|
info2.id = obsId;
|
91431
91431
|
cellSetColor.forEach((color2) => {
|
@@ -31,7 +31,7 @@ export default function FeatureBarPlot(props) {
|
|
31
31
|
additionalCellSets?.tree?.[0]?.children?.forEach((child) => {
|
32
32
|
if (child.name === selectedElement) {
|
33
33
|
child.set.forEach(([obsId]) => {
|
34
|
-
const info = { name: '', id: '', color: [] };
|
34
|
+
const info = { name: '', id: '', color: [255, 255, 255] };
|
35
35
|
info.name = selectedElement;
|
36
36
|
info.id = obsId;
|
37
37
|
cellSetColor.forEach((color) => {
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@vitessce/statistical-plots",
|
3
|
-
"version": "3.4.
|
3
|
+
"version": "3.4.4",
|
4
4
|
"author": "Gehlenborg Lab",
|
5
5
|
"homepage": "http://vitessce.io",
|
6
6
|
"repository": {
|
@@ -26,11 +26,11 @@
|
|
26
26
|
"lodash-es": "^4.17.21",
|
27
27
|
"react-aria": "^3.28.0",
|
28
28
|
"d3-format": "^3.1.0",
|
29
|
-
"@vitessce/constants-internal": "3.4.
|
30
|
-
"@vitessce/utils": "3.4.
|
31
|
-
"@vitessce/vega": "3.4.
|
32
|
-
"@vitessce/vit-s": "3.4.
|
33
|
-
"@vitessce/
|
29
|
+
"@vitessce/constants-internal": "3.4.4",
|
30
|
+
"@vitessce/sets-utils": "3.4.4",
|
31
|
+
"@vitessce/vega": "3.4.4",
|
32
|
+
"@vitessce/vit-s": "3.4.4",
|
33
|
+
"@vitessce/utils": "3.4.4"
|
34
34
|
},
|
35
35
|
"devDependencies": {
|
36
36
|
"react": "^18.0.0",
|
package/src/FeatureBarPlot.js
CHANGED
@@ -60,7 +60,7 @@ export default function FeatureBarPlot(props) {
|
|
60
60
|
additionalCellSets?.tree?.[0]?.children?.forEach((child) => {
|
61
61
|
if (child.name === selectedElement) {
|
62
62
|
child.set.forEach(([obsId]) => {
|
63
|
-
const info = { name: '', id: '', color: [] };
|
63
|
+
const info = { name: '', id: '', color: [255, 255, 255] };
|
64
64
|
info.name = selectedElement;
|
65
65
|
info.id = obsId;
|
66
66
|
cellSetColor.forEach((color) => {
|