@vitessce/biomarker-select 3.5.6 → 3.5.7

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 (2) hide show
  1. package/dist/index.js +32 -2
  2. package/package.json +4 -4
package/dist/index.js CHANGED
@@ -911,7 +911,8 @@ const ViewType = {
911
911
  FEATURE_BAR_PLOT: "featureBarPlot",
912
912
  BIOMARKER_SELECT: "biomarkerSelect",
913
913
  LINK_CONTROLLER: "linkController",
914
- DUAL_SCATTERPLOT: "dualScatterplot"
914
+ DUAL_SCATTERPLOT: "dualScatterplot",
915
+ TREEMAP: "treemap"
915
916
  };
916
917
  const AsyncFunctionType = {
917
918
  // String input (rather than Node input)
@@ -1065,12 +1066,15 @@ const CoordinationType = {
1065
1066
  SAMPLE_SET_FILTER: "sampleSetFilter",
1066
1067
  SAMPLE_FILTER_MODE: "sampleFilterMode",
1067
1068
  SAMPLE_SET_COLOR: "sampleSetColor",
1069
+ SAMPLE_HIGHLIGHT: "sampleHighlight",
1068
1070
  EMBEDDING_POINTS_VISIBLE: "embeddingPointsVisible",
1069
1071
  EMBEDDING_CONTOURS_VISIBLE: "embeddingContoursVisible",
1070
1072
  EMBEDDING_CONTOURS_FILLED: "embeddingContoursFilled",
1071
1073
  EMBEDDING_CONTOUR_PERCENTILES: "embeddingContourPercentiles",
1072
1074
  CONTOUR_COLOR_ENCODING: "contourColorEncoding",
1073
- CONTOUR_COLOR: "contourColor"
1075
+ CONTOUR_COLOR: "contourColor",
1076
+ // Treemap
1077
+ HIERARCHY_LEVELS: "hierarchyLevels"
1074
1078
  };
1075
1079
  const COMPONENT_COORDINATION_TYPES = {
1076
1080
  [ViewType.SCATTERPLOT]: [
@@ -1550,6 +1554,32 @@ const COMPONENT_COORDINATION_TYPES = {
1550
1554
  CoordinationType.OBS_SET_SELECTION,
1551
1555
  CoordinationType.OBS_SET_FILTER
1552
1556
  // TODO: create coordination types for internal state of the biomarker selection view?
1557
+ ],
1558
+ [ViewType.TREEMAP]: [
1559
+ CoordinationType.DATASET,
1560
+ CoordinationType.OBS_TYPE,
1561
+ CoordinationType.FEATURE_TYPE,
1562
+ CoordinationType.FEATURE_VALUE_TYPE,
1563
+ CoordinationType.OBS_FILTER,
1564
+ CoordinationType.OBS_HIGHLIGHT,
1565
+ CoordinationType.OBS_SET_SELECTION,
1566
+ CoordinationType.OBS_SET_FILTER,
1567
+ CoordinationType.OBS_SELECTION,
1568
+ CoordinationType.OBS_SELECTION_MODE,
1569
+ CoordinationType.OBS_SET_HIGHLIGHT,
1570
+ CoordinationType.OBS_SET_COLOR,
1571
+ CoordinationType.OBS_COLOR_ENCODING,
1572
+ CoordinationType.ADDITIONAL_OBS_SETS,
1573
+ CoordinationType.SAMPLE_TYPE,
1574
+ CoordinationType.SAMPLE_SET_SELECTION,
1575
+ CoordinationType.SAMPLE_SET_FILTER,
1576
+ CoordinationType.SAMPLE_SET_COLOR,
1577
+ CoordinationType.SAMPLE_SELECTION,
1578
+ CoordinationType.SAMPLE_SELECTION_MODE,
1579
+ CoordinationType.SAMPLE_FILTER,
1580
+ CoordinationType.SAMPLE_FILTER_MODE,
1581
+ CoordinationType.SAMPLE_HIGHLIGHT,
1582
+ CoordinationType.HIERARCHY_LEVELS
1553
1583
  ]
1554
1584
  };
1555
1585
  var common = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vitessce/biomarker-select",
3
- "version": "3.5.6",
3
+ "version": "3.5.7",
4
4
  "author": "Gehlenborg Lab",
5
5
  "homepage": "http://vitessce.io",
6
6
  "repository": {
@@ -24,9 +24,9 @@
24
24
  "react-window": "^1.8.10",
25
25
  "fuse.js": "^7.0.0",
26
26
  "d3-dsv": "^1.1.1",
27
- "@vitessce/constants-internal": "3.5.6",
28
- "@vitessce/vit-s": "3.5.6",
29
- "@vitessce/types": "3.5.6"
27
+ "@vitessce/constants-internal": "3.5.7",
28
+ "@vitessce/vit-s": "3.5.7",
29
+ "@vitessce/types": "3.5.7"
30
30
  },
31
31
  "devDependencies": {
32
32
  "@testing-library/jest-dom": "^5.16.4",