@vitessce/neuroglancer 3.8.13 → 3.9.1

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.
@@ -2,7 +2,7 @@ var __defProp = Object.defineProperty;
2
2
  var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
3
3
  var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
4
4
  import React__default from "react";
5
- import { g as getDefaultExportFromCjs, c as commonjsGlobal, d as diffCameraState } from "./index-BDIjPdOJ.js";
5
+ import { g as getDefaultExportFromCjs, c as commonjsGlobal, d as diffCameraState } from "./index-BNWANKfn.js";
6
6
  var es6_object_assign = {};
7
7
  var _global = { exports: {} };
8
8
  var hasRequired_global;
@@ -252,6 +252,7 @@ const CoordinationType$1 = {
252
252
  OBS_SET_HIGHLIGHT: "obsSetHighlight",
253
253
  OBS_SET_EXPANSION: "obsSetExpansion",
254
254
  OBS_SET_COLOR: "obsSetColor",
255
+ FEATURE_COLOR: "featureColor",
255
256
  FEATURE_HIGHLIGHT: "featureHighlight",
256
257
  FEATURE_SELECTION: "featureSelection",
257
258
  FEATURE_SET_SELECTION: "featureSetSelection",
@@ -829,6 +830,8 @@ const COMPONENT_COORDINATION_TYPES = {
829
830
  CoordinationType$1.OBS_SET_FILTER,
830
831
  CoordinationType$1.OBS_SET_HIGHLIGHT,
831
832
  CoordinationType$1.OBS_SET_COLOR,
833
+ CoordinationType$1.FEATURE_COLOR,
834
+ CoordinationType$1.FEATURE_FILTER_MODE,
832
835
  CoordinationType$1.FEATURE_HIGHLIGHT,
833
836
  CoordinationType$1.FEATURE_SELECTION,
834
837
  CoordinationType$1.FEATURE_VALUE_COLORMAP,
@@ -1043,6 +1046,8 @@ const COMPONENT_COORDINATION_TYPES = {
1043
1046
  CoordinationType$1.SPATIAL_SPOT_STROKE_WIDTH,
1044
1047
  CoordinationType$1.SPATIAL_LAYER_COLOR,
1045
1048
  CoordinationType$1.OBS_COLOR_ENCODING,
1049
+ CoordinationType$1.FEATURE_COLOR,
1050
+ CoordinationType$1.FEATURE_FILTER_MODE,
1046
1051
  CoordinationType$1.FEATURE_VALUE_COLORMAP,
1047
1052
  CoordinationType$1.FEATURE_VALUE_COLORMAP_RANGE,
1048
1053
  CoordinationType$1.FEATURE_SELECTION,
@@ -10395,7 +10400,9 @@ const obsSegmentationsSpatialdataSchema = z.object({
10395
10400
  const obsPointsSpatialdataSchema = z.object({
10396
10401
  path: z.string().describe("The path to the point data."),
10397
10402
  tablePath: z.string().optional().describe("The path to a table which annotates the points. If available but not specified, the spot identifiers may not be aligned with associated tabular data as expected."),
10398
- 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.')
10403
+ 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.'),
10404
+ featureIndexColumn: z.string().optional().describe("The name of the column in the table which contains the feature (e.g., gene) indices associated with each point (aligned with the table var.index dataframe column)."),
10405
+ mortonCodeColumn: z.string().optional().describe('The name of the column in the table which contains the Morton codes for each point, used for efficient spatial querying. If not provided, Vitessce will assume the default column name "morton_code_2d".')
10399
10406
  });
10400
10407
  z.object({
10401
10408
  path: z.string(),
@@ -28195,7 +28202,7 @@ function NeuroglancerGlobalStyles(props) {
28195
28202
  }
28196
28203
  ));
28197
28204
  }
28198
- const LazyReactNeuroglancer = React__default.lazy(() => import("./ReactNeuroglancer-BNZT4_8O.js"));
28205
+ const LazyReactNeuroglancer = React__default.lazy(() => import("./ReactNeuroglancer-CfXWCAza.js"));
28199
28206
  function createWorker() {
28200
28207
  return new WorkerFactory();
28201
28208
  }
package/dist/index.js CHANGED
@@ -1,4 +1,4 @@
1
- import { N } from "./index-BDIjPdOJ.js";
1
+ import { N } from "./index-BNWANKfn.js";
2
2
  export {
3
3
  N as NeuroglancerSubscriber
4
4
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vitessce/neuroglancer",
3
- "version": "3.8.13",
3
+ "version": "3.9.1",
4
4
  "author": "Gehlenborg Lab",
5
5
  "homepage": "http://vitessce.io",
6
6
  "repository": {
@@ -20,13 +20,13 @@
20
20
  "lodash-es": "^4.17.21",
21
21
  "three": "^0.154.0",
22
22
  "react": "18.3.1",
23
- "@vitessce/neuroglancer-workers": "3.8.13",
24
- "@vitessce/styles": "3.8.13",
25
- "@vitessce/constants-internal": "3.8.13",
26
- "@vitessce/vit-s": "3.8.13",
27
- "@vitessce/sets-utils": "3.8.13",
28
- "@vitessce/utils": "3.8.13",
29
- "@vitessce/tooltip": "3.8.13"
23
+ "@vitessce/neuroglancer-workers": "3.9.1",
24
+ "@vitessce/constants-internal": "3.9.1",
25
+ "@vitessce/vit-s": "3.9.1",
26
+ "@vitessce/sets-utils": "3.9.1",
27
+ "@vitessce/utils": "3.9.1",
28
+ "@vitessce/styles": "3.9.1",
29
+ "@vitessce/tooltip": "3.9.1"
30
30
  },
31
31
  "devDependencies": {
32
32
  "@testing-library/jest-dom": "^6.6.3",