@vitessce/vega 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.
- package/dist/index.js +8 -1
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -50934,6 +50934,7 @@ const CoordinationType$1 = {
|
|
|
50934
50934
|
OBS_SET_HIGHLIGHT: "obsSetHighlight",
|
|
50935
50935
|
OBS_SET_EXPANSION: "obsSetExpansion",
|
|
50936
50936
|
OBS_SET_COLOR: "obsSetColor",
|
|
50937
|
+
FEATURE_COLOR: "featureColor",
|
|
50937
50938
|
FEATURE_HIGHLIGHT: "featureHighlight",
|
|
50938
50939
|
FEATURE_SELECTION: "featureSelection",
|
|
50939
50940
|
FEATURE_SET_SELECTION: "featureSetSelection",
|
|
@@ -51508,6 +51509,8 @@ const CoordinationType$1 = {
|
|
|
51508
51509
|
CoordinationType$1.OBS_SET_FILTER,
|
|
51509
51510
|
CoordinationType$1.OBS_SET_HIGHLIGHT,
|
|
51510
51511
|
CoordinationType$1.OBS_SET_COLOR,
|
|
51512
|
+
CoordinationType$1.FEATURE_COLOR,
|
|
51513
|
+
CoordinationType$1.FEATURE_FILTER_MODE,
|
|
51511
51514
|
CoordinationType$1.FEATURE_HIGHLIGHT,
|
|
51512
51515
|
CoordinationType$1.FEATURE_SELECTION,
|
|
51513
51516
|
CoordinationType$1.FEATURE_VALUE_COLORMAP,
|
|
@@ -51722,6 +51725,8 @@ const CoordinationType$1 = {
|
|
|
51722
51725
|
CoordinationType$1.SPATIAL_SPOT_STROKE_WIDTH,
|
|
51723
51726
|
CoordinationType$1.SPATIAL_LAYER_COLOR,
|
|
51724
51727
|
CoordinationType$1.OBS_COLOR_ENCODING,
|
|
51728
|
+
CoordinationType$1.FEATURE_COLOR,
|
|
51729
|
+
CoordinationType$1.FEATURE_FILTER_MODE,
|
|
51725
51730
|
CoordinationType$1.FEATURE_VALUE_COLORMAP,
|
|
51726
51731
|
CoordinationType$1.FEATURE_VALUE_COLORMAP_RANGE,
|
|
51727
51732
|
CoordinationType$1.FEATURE_SELECTION,
|
|
@@ -52294,7 +52299,9 @@ const obsSegmentationsSpatialdataSchema = z.object({
|
|
|
52294
52299
|
const obsPointsSpatialdataSchema = z.object({
|
|
52295
52300
|
path: z.string().describe("The path to the point data."),
|
|
52296
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."),
|
|
52297
|
-
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".')
|
|
52298
52305
|
});
|
|
52299
52306
|
z.object({
|
|
52300
52307
|
path: z.string(),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vitessce/vega",
|
|
3
|
-
"version": "3.
|
|
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.
|
|
25
|
-
"@vitessce/tooltip": "3.
|
|
26
|
-
"@vitessce/legend": "3.
|
|
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",
|