@vitessce/vega 3.9.0 → 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.
Files changed (2) hide show
  1. package/dist/index.js +3 -1
  2. package/package.json +4 -4
package/dist/index.js CHANGED
@@ -52299,7 +52299,9 @@ const obsSegmentationsSpatialdataSchema = z.object({
52299
52299
  const obsPointsSpatialdataSchema = z.object({
52300
52300
  path: z.string().describe("The path to the point data."),
52301
52301
  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."),
52302
- 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.')
52302
+ 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.'),
52303
+ 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)."),
52304
+ 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".')
52303
52305
  });
52304
52306
  z.object({
52305
52307
  path: z.string(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vitessce/vega",
3
- "version": "3.9.0",
3
+ "version": "3.9.1",
4
4
  "author": "HIDIVE Lab at HMS",
5
5
  "homepage": "http://vitessce.io",
6
6
  "repository": {
@@ -21,9 +21,9 @@
21
21
  "vega": "^5.21.0",
22
22
  "vega-lite": "^5.1.1",
23
23
  "vega-tooltip": "^0.27.0",
24
- "@vitessce/styles": "3.9.0",
25
- "@vitessce/tooltip": "3.9.0",
26
- "@vitessce/legend": "3.9.0"
24
+ "@vitessce/styles": "3.9.1",
25
+ "@vitessce/tooltip": "3.9.1",
26
+ "@vitessce/legend": "3.9.1"
27
27
  },
28
28
  "devDependencies": {
29
29
  "react": "18.3.1",