@vitessce/vega 4.0.0-test.0 → 4.0.0-test.2
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 +6 -1
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -51814,6 +51814,7 @@ const CoordinationType$1 = {
|
|
|
51814
51814
|
SPATIAL_LAYER_MODEL_MATRIX: "spatialLayerModelMatrix",
|
|
51815
51815
|
SPATIAL_SEGMENTATION_FILLED: "spatialSegmentationFilled",
|
|
51816
51816
|
SPATIAL_SEGMENTATION_STROKE_WIDTH: "spatialSegmentationStrokeWidth",
|
|
51817
|
+
SPATIAL_POINT_STROKE_WIDTH: "spatialPointStrokeWidth",
|
|
51817
51818
|
SPATIAL_CHANNEL_COLOR: "spatialChannelColor",
|
|
51818
51819
|
SPATIAL_CHANNEL_VISIBLE: "spatialChannelVisible",
|
|
51819
51820
|
SPATIAL_CHANNEL_OPACITY: "spatialChannelOpacity",
|
|
@@ -52179,7 +52180,8 @@ const CoordinationType$1 = {
|
|
|
52179
52180
|
CoordinationType$1.SPATIAL_CHANNEL_COLOR,
|
|
52180
52181
|
CoordinationType$1.SPATIAL_CHANNEL_OPACITY,
|
|
52181
52182
|
CoordinationType$1.SPATIAL_CHANNEL_VISIBLE,
|
|
52182
|
-
CoordinationType$1.LEGEND_VISIBLE
|
|
52183
|
+
CoordinationType$1.LEGEND_VISIBLE,
|
|
52184
|
+
CoordinationType$1.SPATIAL_POINT_STROKE_WIDTH
|
|
52183
52185
|
],
|
|
52184
52186
|
[ViewType$1.SCATTERPLOT]: [
|
|
52185
52187
|
CoordinationType$1.DATASET,
|
|
@@ -52563,6 +52565,7 @@ const CoordinationType$1 = {
|
|
|
52563
52565
|
CoordinationType$1.SPATIAL_CHANNEL_COLOR,
|
|
52564
52566
|
CoordinationType$1.SPATIAL_SEGMENTATION_FILLED,
|
|
52565
52567
|
CoordinationType$1.SPATIAL_SEGMENTATION_STROKE_WIDTH,
|
|
52568
|
+
CoordinationType$1.SPATIAL_POINT_STROKE_WIDTH,
|
|
52566
52569
|
CoordinationType$1.IMAGE_CHANNEL,
|
|
52567
52570
|
CoordinationType$1.IMAGE_LAYER,
|
|
52568
52571
|
CoordinationType$1.SEGMENTATION_CHANNEL,
|
|
@@ -53235,6 +53238,8 @@ z.object({
|
|
|
53235
53238
|
// projectionScale: z.number(),
|
|
53236
53239
|
// position: z.array(z.number()).length(3),
|
|
53237
53240
|
// projectionOrientation: z.array(z.number()).length(4),
|
|
53241
|
+
subsources: z.record(z.boolean()).describe("Subsources are the individual data components of a source (e.g. meshes, skeletons, etc.). Each entry explicitly enables or disables a subsource.").optional(),
|
|
53242
|
+
enableDefaultSubsources: z.boolean().describe("When true (default), automatically loads all subsources (defined in mesh metadata), when false loads what is explicitly enabled in `subsources`.").optional()
|
|
53238
53243
|
}).partial().nullable();
|
|
53239
53244
|
z.object({
|
|
53240
53245
|
projectionAnnotationSpacing: z.number(),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vitessce/vega",
|
|
3
|
-
"version": "4.0.0-test.
|
|
3
|
+
"version": "4.0.0-test.2",
|
|
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": "4.0.0-test.
|
|
25
|
-
"@vitessce/tooltip": "4.0.0-test.
|
|
26
|
-
"@vitessce/legend": "4.0.0-test.
|
|
24
|
+
"@vitessce/styles": "4.0.0-test.2",
|
|
25
|
+
"@vitessce/tooltip": "4.0.0-test.2",
|
|
26
|
+
"@vitessce/legend": "4.0.0-test.2"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"react": "19.1.0",
|