@vitessce/heatmap 3.4.12 → 3.5.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.
@@ -1,5 +1,5 @@
1
1
  import { i as inflate_1 } from "./pako.esm-68f84e2a.js";
2
- import { B as BaseDecoder } from "./index-005b1147.js";
2
+ import { B as BaseDecoder } from "./index-6ef9e70c.js";
3
3
  import "react";
4
4
  import "@vitessce/vit-s";
5
5
  import "react-dom";
@@ -10994,7 +10994,8 @@ const ViewType$1 = {
10994
10994
  OBS_SET_FEATURE_VALUE_DISTRIBUTION: "obsSetFeatureValueDistribution",
10995
10995
  FEATURE_VALUE_HISTOGRAM: "featureValueHistogram",
10996
10996
  DOT_PLOT: "dotPlot",
10997
- FEATURE_BAR_PLOT: "featureBarPlot"
10997
+ FEATURE_BAR_PLOT: "featureBarPlot",
10998
+ BIOMARKER_SELECT: "biomarkerSelect"
10998
10999
  };
10999
11000
  const DataType$2 = {
11000
11001
  OBS_LABELS: "obsLabels",
@@ -11033,6 +11034,9 @@ const FileType$1 = {
11033
11034
  // OME-Zarr
11034
11035
  IMAGE_OME_ZARR: "image.ome-zarr",
11035
11036
  OBS_SEGMENTATIONS_OME_ZARR: "obsSegmentations.ome-zarr",
11037
+ // OME-Zarr - Zipped
11038
+ IMAGE_OME_ZARR_ZIP: "image.ome-zarr.zip",
11039
+ OBS_SEGMENTATIONS_OME_ZARR_ZIP: "obsSegmentations.ome-zarr.zip",
11036
11040
  // AnnData
11037
11041
  OBS_FEATURE_MATRIX_ANNDATA_ZARR: "obsFeatureMatrix.anndata.zarr",
11038
11042
  OBS_FEATURE_COLUMNS_ANNDATA_ZARR: "obsFeatureColumns.anndata.zarr",
@@ -11686,6 +11690,11 @@ const COMPONENT_COORDINATION_TYPES = {
11686
11690
  CoordinationType$1.OBS_SET_COLOR,
11687
11691
  CoordinationType$1.OBS_COLOR_ENCODING,
11688
11692
  CoordinationType$1.ADDITIONAL_OBS_SETS
11693
+ ],
11694
+ [ViewType$1.BIOMARKER_SELECT]: [
11695
+ CoordinationType$1.FEATURE_SELECTION,
11696
+ CoordinationType$1.SAMPLE_SET_SELECTION
11697
+ // TODO: create coordination types for internal state of the biomarker selection view?
11689
11698
  ]
11690
11699
  };
11691
11700
  const ViewType = {
@@ -11989,24 +11998,29 @@ const imageOmeZarrSchema = z.object({
11989
11998
  imageOmeZarrSchema.extend({
11990
11999
  obsTypesFromChannelNames: z.boolean().optional()
11991
12000
  });
11992
- const imageSpatialdataSchema = imageOmeZarrSchema.extend({
11993
- path: z.string()
12001
+ const imageSpatialdataSchema = z.object({
12002
+ path: z.string(),
12003
+ coordinateSystem: z.string().optional().describe('The name of a coordinate transformation output used to transform the image. If not provided, the "global" coordinate system is assumed.')
11994
12004
  });
11995
12005
  const obsSegmentationsSpatialdataSchema = z.object({
11996
- // TODO: should this also extend the imageOmeZarrSchema?
11997
12006
  // TODO: should this be renamed labelsSpatialdataSchema?
11998
12007
  // TODO: support obsTypesFromChannelNames?
11999
- path: z.string()
12008
+ path: z.string(),
12009
+ tablePath: z.string().optional().describe("The path to a table which annotates the labels. If available but not specified, the spot identifiers may not be aligned with associated tabular data as expected."),
12010
+ coordinateSystem: z.string().optional().describe('The name of a coordinate transformation output used to transform the image. If not provided, the "global" coordinate system is assumed.')
12000
12011
  });
12001
12012
  z.object({
12002
- path: z.string()
12013
+ path: z.string(),
12014
+ coordinateSystem: z.string().optional().describe('The name of a coordinate transformation output used to transform the coordinates. If not provided, the "global" coordinate system is assumed.')
12003
12015
  });
12004
12016
  const obsSpotsSpatialdataSchema = z.object({
12005
12017
  path: z.string(),
12006
- tablePath: z.string().optional().describe("The path to a table which annotates the spots. If available but not specified, the spot identifiers may not be aligned with associated tabular data as expected.")
12018
+ tablePath: z.string().optional().describe("The path to a table which annotates the spots. If available but not specified, the spot identifiers may not be aligned with associated tabular data as expected."),
12019
+ coordinateSystem: z.string().optional().describe('The name of a coordinate transformation output used to transform the coordinates and radii. If not provided, the "global" coordinate system is assumed.')
12007
12020
  });
12008
12021
  const obsFeatureMatrixSpatialdataSchema = annDataObsFeatureMatrix.extend({
12009
- region: z.string().describe("The name of a region to use to filter instances (i.e., rows) in the table").optional()
12022
+ region: z.string().describe("The name of a region to use to filter instances (i.e., rows) in the table").optional(),
12023
+ coordinateSystem: z.string().optional().describe('The name of a coordinate transformation output used to transform the image. If not provided, the "global" coordinate system is assumed.')
12010
12024
  });
12011
12025
  const obsSetsSpatialdataSchema = z.object({
12012
12026
  region: z.string().describe("The name of a region to use to filter instances (i.e., rows) in the table").optional(),
@@ -12107,15 +12121,21 @@ anndataZarrSchema.extend({
12107
12121
  z.object({
12108
12122
  // TODO: should `image` be a special schema
12109
12123
  // to allow specifying fileUid (like for embeddingType)?
12124
+ // TODO: allow multiple images
12110
12125
  image: imageSpatialdataSchema,
12111
12126
  // TODO: should this be a special schema
12112
12127
  // to allow specifying fileUid (like for embeddingType)?
12128
+ // TODO: allow multiple labels
12113
12129
  labels: obsSegmentationsSpatialdataSchema,
12114
12130
  obsFeatureMatrix: obsFeatureMatrixSpatialdataSchema,
12115
12131
  obsSpots: obsSpotsSpatialdataSchema,
12116
12132
  // TODO: obsPoints
12117
12133
  // TODO: obsLocations
12118
- obsSets: obsSetsSpatialdataSchema
12134
+ obsSets: obsSetsSpatialdataSchema,
12135
+ // TODO: obsEmbedding
12136
+ // TODO: obsLabels
12137
+ // TODO: featureLabels
12138
+ coordinateSystem: z.string().optional().describe("The name of a coordinate transformation output used to transform all elements which lack a per-element coordinateSystem property.")
12119
12139
  }).partial();
12120
12140
  z.object({
12121
12141
  obsLabelsTypes: z.array(z.string()).optional(),
@@ -31281,7 +31301,7 @@ const rectHeight = 8;
31281
31301
  const rectMarginY = 2;
31282
31302
  const rectMarginX = 2;
31283
31303
  function Legend(props) {
31284
- const { visible: visibleProp, positionRelative = false, highContrast = false, obsType, featureValueType, considerSelections = true, obsColorEncoding, featureSelection, featureLabelsMap, featureValueColormap, featureValueColormapRange, spatialChannelColor, spatialLayerColor, obsSetSelection, obsSetColor, extent: extent2, width = 100, height = 36, theme, showObsLabel = false, pointsVisible = true, contoursVisible = false, contoursFilled, contourPercentiles, contourThresholds } = props;
31304
+ const { visible: visibleProp, positionRelative = false, highContrast = false, obsType, featureValueType, considerSelections = true, obsColorEncoding, featureSelection, featureLabelsMap, featureValueColormap, featureValueColormapRange, spatialChannelColor, spatialLayerColor, obsSetSelection, obsSetColor, extent: extent2, missing, width = 100, height = 36, theme, showObsLabel = false, pointsVisible = true, contoursVisible = false, contoursFilled, contourPercentiles, contourThresholds } = props;
31285
31305
  const svgRef = useRef();
31286
31306
  const classes = useStyles$1();
31287
31307
  const isDarkTheme = theme === "dark";
@@ -31365,7 +31385,8 @@ function Legend(props) {
31365
31385
  });
31366
31386
  });
31367
31387
  }
31368
- const featureSelectionLabel = featureSelection && featureSelection.length >= 1 && !isStaticColor ? (featureLabelsMap == null ? void 0 : featureLabelsMap.get(featureSelection[0])) || featureSelection[0] : null;
31388
+ const featureSelectionLabelRaw = featureSelection && featureSelection.length >= 1 && !isStaticColor ? (featureLabelsMap == null ? void 0 : featureLabelsMap.get(featureSelection[0])) || featureSelection[0] : null;
31389
+ const featureSelectionLabel = missing ? `${featureSelectionLabelRaw} (${Math.round(missing * 100)}% NaN)` : featureSelectionLabelRaw;
31369
31390
  const obsLabel = capitalize$1(obsType);
31370
31391
  const featureLabel = considerSelections ? featureSelectionLabel || capitalize$1(featureValueType) : capitalize$1(featureValueType);
31371
31392
  const mainLabel = showObsLabel ? obsLabel : featureLabel;
@@ -99280,7 +99301,7 @@ keysShim.shim = function shimObjectKeys() {
99280
99301
  return Object.keys || keysShim;
99281
99302
  };
99282
99303
  var objectKeys$1 = keysShim;
99283
- var shams$2 = function hasSymbols() {
99304
+ var shams$1 = function hasSymbols() {
99284
99305
  if (typeof Symbol !== "function" || typeof Object.getOwnPropertySymbols !== "function") {
99285
99306
  return false;
99286
99307
  }
@@ -99325,9 +99346,9 @@ var shams$2 = function hasSymbols() {
99325
99346
  }
99326
99347
  return true;
99327
99348
  };
99328
- var hasSymbols$4 = shams$2;
99329
- var shams$1 = function hasToStringTagShams() {
99330
- return hasSymbols$4() && !!Symbol.toStringTag;
99349
+ var hasSymbols$3 = shams$1;
99350
+ var shams = function hasToStringTagShams() {
99351
+ return hasSymbols$3() && !!Symbol.toStringTag;
99331
99352
  };
99332
99353
  var esErrors = Error;
99333
99354
  var _eval = EvalError;
@@ -99337,8 +99358,8 @@ var syntax = SyntaxError;
99337
99358
  var type = TypeError;
99338
99359
  var uri = URIError;
99339
99360
  var origSymbol = typeof Symbol !== "undefined" && Symbol;
99340
- var hasSymbolSham = shams$2;
99341
- var hasSymbols$3 = function hasNativeSymbols() {
99361
+ var hasSymbolSham = shams$1;
99362
+ var hasSymbols$2 = function hasNativeSymbols() {
99342
99363
  if (typeof origSymbol !== "function") {
99343
99364
  return false;
99344
99365
  }
@@ -99354,11 +99375,12 @@ var hasSymbols$3 = function hasNativeSymbols() {
99354
99375
  return hasSymbolSham();
99355
99376
  };
99356
99377
  var test = {
99378
+ __proto__: null,
99357
99379
  foo: {}
99358
99380
  };
99359
99381
  var $Object$1 = Object;
99360
99382
  var hasProto$1 = function hasProto() {
99361
- return { __proto__: test }.foo === test.foo && !({ __proto__: null } instanceof $Object$1);
99383
+ return { __proto__: test }.foo === test.foo && !(test instanceof $Object$1);
99362
99384
  };
99363
99385
  var ERROR_MESSAGE = "Function.prototype.bind called on incompatible ";
99364
99386
  var toStr$2 = Object.prototype.toString;
@@ -99473,7 +99495,7 @@ var ThrowTypeError = $gOPD$2 ? function() {
99473
99495
  }
99474
99496
  }
99475
99497
  }() : throwTypeError;
99476
- var hasSymbols$2 = hasSymbols$3();
99498
+ var hasSymbols$1 = hasSymbols$2();
99477
99499
  var hasProto2 = hasProto$1();
99478
99500
  var getProto$1 = Object.getPrototypeOf || (hasProto2 ? function(x2) {
99479
99501
  return x2.__proto__;
@@ -99485,7 +99507,7 @@ var INTRINSICS = {
99485
99507
  "%AggregateError%": typeof AggregateError === "undefined" ? undefined$1 : AggregateError,
99486
99508
  "%Array%": Array,
99487
99509
  "%ArrayBuffer%": typeof ArrayBuffer === "undefined" ? undefined$1 : ArrayBuffer,
99488
- "%ArrayIteratorPrototype%": hasSymbols$2 && getProto$1 ? getProto$1([][Symbol.iterator]()) : undefined$1,
99510
+ "%ArrayIteratorPrototype%": hasSymbols$1 && getProto$1 ? getProto$1([][Symbol.iterator]()) : undefined$1,
99489
99511
  "%AsyncFromSyncIteratorPrototype%": undefined$1,
99490
99512
  "%AsyncFunction%": needsEval,
99491
99513
  "%AsyncGenerator%": needsEval,
@@ -99516,10 +99538,10 @@ var INTRINSICS = {
99516
99538
  "%Int32Array%": typeof Int32Array === "undefined" ? undefined$1 : Int32Array,
99517
99539
  "%isFinite%": isFinite,
99518
99540
  "%isNaN%": isNaN,
99519
- "%IteratorPrototype%": hasSymbols$2 && getProto$1 ? getProto$1(getProto$1([][Symbol.iterator]())) : undefined$1,
99541
+ "%IteratorPrototype%": hasSymbols$1 && getProto$1 ? getProto$1(getProto$1([][Symbol.iterator]())) : undefined$1,
99520
99542
  "%JSON%": typeof JSON === "object" ? JSON : undefined$1,
99521
99543
  "%Map%": typeof Map === "undefined" ? undefined$1 : Map,
99522
- "%MapIteratorPrototype%": typeof Map === "undefined" || !hasSymbols$2 || !getProto$1 ? undefined$1 : getProto$1((/* @__PURE__ */ new Map())[Symbol.iterator]()),
99544
+ "%MapIteratorPrototype%": typeof Map === "undefined" || !hasSymbols$1 || !getProto$1 ? undefined$1 : getProto$1((/* @__PURE__ */ new Map())[Symbol.iterator]()),
99523
99545
  "%Math%": Math,
99524
99546
  "%Number%": Number,
99525
99547
  "%Object%": Object,
@@ -99532,11 +99554,11 @@ var INTRINSICS = {
99532
99554
  "%Reflect%": typeof Reflect === "undefined" ? undefined$1 : Reflect,
99533
99555
  "%RegExp%": RegExp,
99534
99556
  "%Set%": typeof Set === "undefined" ? undefined$1 : Set,
99535
- "%SetIteratorPrototype%": typeof Set === "undefined" || !hasSymbols$2 || !getProto$1 ? undefined$1 : getProto$1((/* @__PURE__ */ new Set())[Symbol.iterator]()),
99557
+ "%SetIteratorPrototype%": typeof Set === "undefined" || !hasSymbols$1 || !getProto$1 ? undefined$1 : getProto$1((/* @__PURE__ */ new Set())[Symbol.iterator]()),
99536
99558
  "%SharedArrayBuffer%": typeof SharedArrayBuffer === "undefined" ? undefined$1 : SharedArrayBuffer,
99537
99559
  "%String%": String,
99538
- "%StringIteratorPrototype%": hasSymbols$2 && getProto$1 ? getProto$1(""[Symbol.iterator]()) : undefined$1,
99539
- "%Symbol%": hasSymbols$2 ? Symbol : undefined$1,
99560
+ "%StringIteratorPrototype%": hasSymbols$1 && getProto$1 ? getProto$1(""[Symbol.iterator]()) : undefined$1,
99561
+ "%Symbol%": hasSymbols$1 ? Symbol : undefined$1,
99540
99562
  "%SyntaxError%": $SyntaxError$1,
99541
99563
  "%ThrowTypeError%": ThrowTypeError,
99542
99564
  "%TypedArray%": TypedArray,
@@ -99905,7 +99927,7 @@ var callBound$2 = function callBoundIntrinsic(name2, allowMissing) {
99905
99927
  }
99906
99928
  return intrinsic;
99907
99929
  };
99908
- var hasToStringTag$2 = shams$1();
99930
+ var hasToStringTag$2 = shams();
99909
99931
  var callBound$1 = callBound$2;
99910
99932
  var $toString$1 = callBound$1("Object.prototype.toString");
99911
99933
  var isStandardArguments = function isArguments2(value) {
@@ -99950,7 +99972,7 @@ hasPropertyDescriptors2.hasArrayLengthDefineBug = function hasArrayLengthDefineB
99950
99972
  };
99951
99973
  var hasPropertyDescriptors_1 = hasPropertyDescriptors2;
99952
99974
  var keys2 = objectKeys$1;
99953
- var hasSymbols$1 = typeof Symbol === "function" && typeof Symbol("foo") === "symbol";
99975
+ var hasSymbols2 = typeof Symbol === "function" && typeof Symbol("foo") === "symbol";
99954
99976
  var toStr$1 = Object.prototype.toString;
99955
99977
  var concat = Array.prototype.concat;
99956
99978
  var defineDataProperty2 = defineDataProperty$1;
@@ -99977,7 +99999,7 @@ var defineProperty$1 = function(object2, name2, value, predicate) {
99977
99999
  var defineProperties = function(object2, map2) {
99978
100000
  var predicates = arguments.length > 2 ? arguments[2] : {};
99979
100001
  var props = keys2(map2);
99980
- if (hasSymbols$1) {
100002
+ if (hasSymbols2) {
99981
100003
  props = concat.call(props, Object.getOwnPropertySymbols(map2));
99982
100004
  }
99983
100005
  for (var i2 = 0; i2 < props.length; i2 += 1) {
@@ -100028,10 +100050,6 @@ define$2(polyfill$1, {
100028
100050
  shim: shim$2
100029
100051
  });
100030
100052
  var objectIs = polyfill$1;
100031
- var hasSymbols2 = shams$2;
100032
- var shams = function hasToStringTagShams2() {
100033
- return hasSymbols2() && !!Symbol.toStringTag;
100034
- };
100035
100053
  var callBound = callBound$2;
100036
100054
  var hasToStringTag$1 = shams();
100037
100055
  var has;
@@ -100238,7 +100256,7 @@ var tryDateObject = function tryDateGetDayCall(value) {
100238
100256
  };
100239
100257
  var toStr = Object.prototype.toString;
100240
100258
  var dateClass = "[object Date]";
100241
- var hasToStringTag = shams$1();
100259
+ var hasToStringTag = shams();
100242
100260
  var isDateObject = function isDateObject2(value) {
100243
100261
  if (typeof value !== "object" || value === null) {
100244
100262
  return false;
@@ -133529,16 +133547,16 @@ function addDecoder(cases, importFn) {
133529
133547
  }
133530
133548
  cases.forEach((c) => registry$1.set(c, importFn));
133531
133549
  }
133532
- addDecoder([void 0, 1], () => import("./raw-f5ac4d51.js").then((m) => m.default));
133533
- addDecoder(5, () => import("./lzw-860d563d.js").then((m) => m.default));
133550
+ addDecoder([void 0, 1], () => import("./raw-f6b0dad1.js").then((m) => m.default));
133551
+ addDecoder(5, () => import("./lzw-fde46e44.js").then((m) => m.default));
133534
133552
  addDecoder(6, () => {
133535
133553
  throw new Error("old style JPEG compression is not supported.");
133536
133554
  });
133537
- addDecoder(7, () => import("./jpeg-61c3e2a6.js").then((m) => m.default));
133538
- addDecoder([8, 32946], () => import("./deflate-17ee4fbc.js").then((m) => m.default));
133539
- addDecoder(32773, () => import("./packbits-5df44667.js").then((m) => m.default));
133540
- addDecoder(34887, () => import("./lerc-023bfa6c.js").then((m) => m.default));
133541
- addDecoder(50001, () => import("./webimage-b230879f.js").then((m) => m.default));
133555
+ addDecoder(7, () => import("./jpeg-578f0ca5.js").then((m) => m.default));
133556
+ addDecoder([8, 32946], () => import("./deflate-2c11533f.js").then((m) => m.default));
133557
+ addDecoder(32773, () => import("./packbits-5ed5b9c6.js").then((m) => m.default));
133558
+ addDecoder(34887, () => import("./lerc-357448de.js").then((m) => m.default));
133559
+ addDecoder(50001, () => import("./webimage-13174dd3.js").then((m) => m.default));
133542
133560
  function decodeRowAcc(row, stride) {
133543
133561
  let length2 = row.length - stride;
133544
133562
  let offset5 = 0;
@@ -144914,6 +144932,7 @@ const Heatmap = forwardRef((props, deckRef) => {
144914
144932
  }
144915
144933
  );
144916
144934
  });
144935
+ Heatmap.displayName = "Heatmap";
144917
144936
  const styles10 = makeStyles((theme) => ({
144918
144937
  tooltipAnchor: {
144919
144938
  position: "relative",
package/dist/index.js CHANGED
@@ -1,4 +1,4 @@
1
- import { a, H } from "./index-005b1147.js";
1
+ import { a, H } from "./index-6ef9e70c.js";
2
2
  import "react";
3
3
  import "@vitessce/vit-s";
4
4
  import "react-dom";
@@ -1,4 +1,4 @@
1
- import { B as BaseDecoder } from "./index-005b1147.js";
1
+ import { B as BaseDecoder } from "./index-6ef9e70c.js";
2
2
  import "react";
3
3
  import "@vitessce/vit-s";
4
4
  import "react-dom";
@@ -1,5 +1,5 @@
1
1
  import { i as inflate_1 } from "./pako.esm-68f84e2a.js";
2
- import { g as getDefaultExportFromCjs, B as BaseDecoder } from "./index-005b1147.js";
2
+ import { g as getDefaultExportFromCjs, B as BaseDecoder } from "./index-6ef9e70c.js";
3
3
  import "react";
4
4
  import "@vitessce/vit-s";
5
5
  import "react-dom";
@@ -1,4 +1,4 @@
1
- import { B as BaseDecoder } from "./index-005b1147.js";
1
+ import { B as BaseDecoder } from "./index-6ef9e70c.js";
2
2
  import "react";
3
3
  import "@vitessce/vit-s";
4
4
  import "react-dom";
@@ -1,4 +1,4 @@
1
- import { B as BaseDecoder } from "./index-005b1147.js";
1
+ import { B as BaseDecoder } from "./index-6ef9e70c.js";
2
2
  import "react";
3
3
  import "@vitessce/vit-s";
4
4
  import "react-dom";
@@ -1,4 +1,4 @@
1
- import { B as BaseDecoder } from "./index-005b1147.js";
1
+ import { B as BaseDecoder } from "./index-6ef9e70c.js";
2
2
  import "react";
3
3
  import "@vitessce/vit-s";
4
4
  import "react-dom";
@@ -1,4 +1,4 @@
1
- import { B as BaseDecoder } from "./index-005b1147.js";
1
+ import { B as BaseDecoder } from "./index-6ef9e70c.js";
2
2
  import "react";
3
3
  import "@vitessce/vit-s";
4
4
  import "react-dom";
@@ -698,4 +698,5 @@ const Heatmap = forwardRef((props, deckRef) => {
698
698
  ...cellColorsViews,
699
699
  ], layers: layers, layerFilter: layerFilter, getCursor: interactionState => (interactionState.isDragging ? 'grabbing' : cursorType), glOptions: DEFAULT_GL_OPTIONS, onViewStateChange: onViewStateChange, viewState: viewState, onHover: onHover, useDevicePixels: useDevicePixels, onClick: onHeatmapClick }));
700
700
  });
701
+ Heatmap.displayName = 'Heatmap';
701
702
  export default Heatmap;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vitessce/heatmap",
3
- "version": "3.4.12",
4
- "author": "Gehlenborg Lab",
3
+ "version": "3.5.0",
4
+ "author": "HIDIVE Lab at HMS",
5
5
  "homepage": "http://vitessce.io",
6
6
  "repository": {
7
7
  "type": "git",
@@ -20,14 +20,14 @@
20
20
  "lodash-es": "^4.17.21",
21
21
  "uuid": "^9.0.0",
22
22
  "react-aria": "^3.28.0",
23
- "@vitessce/constants-internal": "3.4.12",
24
- "@vitessce/gl": "3.4.12",
25
- "@vitessce/legend": "3.4.12",
26
- "@vitessce/sets-utils": "3.4.12",
27
- "@vitessce/tooltip": "3.4.12",
28
- "@vitessce/utils": "3.4.12",
29
- "@vitessce/vit-s": "3.4.12",
30
- "@vitessce/workers": "3.4.12"
23
+ "@vitessce/constants-internal": "3.5.0",
24
+ "@vitessce/gl": "3.5.0",
25
+ "@vitessce/legend": "3.5.0",
26
+ "@vitessce/sets-utils": "3.5.0",
27
+ "@vitessce/tooltip": "3.5.0",
28
+ "@vitessce/utils": "3.5.0",
29
+ "@vitessce/vit-s": "3.5.0",
30
+ "@vitessce/workers": "3.5.0"
31
31
  },
32
32
  "devDependencies": {
33
33
  "@testing-library/jest-dom": "^5.16.4",
package/src/Heatmap.js CHANGED
@@ -874,4 +874,6 @@ const Heatmap = forwardRef((props, deckRef) => {
874
874
  );
875
875
  });
876
876
 
877
+ Heatmap.displayName = 'Heatmap';
878
+
877
879
  export default Heatmap;