@vitessce/vega 3.9.7 → 3.9.9

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 +6 -1
  2. package/package.json +4 -4
package/dist/index.js CHANGED
@@ -52729,6 +52729,7 @@ const CoordinationType$1 = {
52729
52729
  SPATIAL_LAYER_MODEL_MATRIX: "spatialLayerModelMatrix",
52730
52730
  SPATIAL_SEGMENTATION_FILLED: "spatialSegmentationFilled",
52731
52731
  SPATIAL_SEGMENTATION_STROKE_WIDTH: "spatialSegmentationStrokeWidth",
52732
+ SPATIAL_POINT_STROKE_WIDTH: "spatialPointStrokeWidth",
52732
52733
  SPATIAL_CHANNEL_COLOR: "spatialChannelColor",
52733
52734
  SPATIAL_CHANNEL_VISIBLE: "spatialChannelVisible",
52734
52735
  SPATIAL_CHANNEL_OPACITY: "spatialChannelOpacity",
@@ -53094,7 +53095,8 @@ const CoordinationType$1 = {
53094
53095
  CoordinationType$1.SPATIAL_CHANNEL_COLOR,
53095
53096
  CoordinationType$1.SPATIAL_CHANNEL_OPACITY,
53096
53097
  CoordinationType$1.SPATIAL_CHANNEL_VISIBLE,
53097
- CoordinationType$1.LEGEND_VISIBLE
53098
+ CoordinationType$1.LEGEND_VISIBLE,
53099
+ CoordinationType$1.SPATIAL_POINT_STROKE_WIDTH
53098
53100
  ],
53099
53101
  [ViewType$1.SCATTERPLOT]: [
53100
53102
  CoordinationType$1.DATASET,
@@ -53478,6 +53480,7 @@ const CoordinationType$1 = {
53478
53480
  CoordinationType$1.SPATIAL_CHANNEL_COLOR,
53479
53481
  CoordinationType$1.SPATIAL_SEGMENTATION_FILLED,
53480
53482
  CoordinationType$1.SPATIAL_SEGMENTATION_STROKE_WIDTH,
53483
+ CoordinationType$1.SPATIAL_POINT_STROKE_WIDTH,
53481
53484
  CoordinationType$1.IMAGE_CHANNEL,
53482
53485
  CoordinationType$1.IMAGE_LAYER,
53483
53486
  CoordinationType$1.SEGMENTATION_CHANNEL,
@@ -54150,6 +54153,8 @@ z.object({
54150
54153
  // projectionScale: z.number(),
54151
54154
  // position: z.array(z.number()).length(3),
54152
54155
  // projectionOrientation: z.array(z.number()).length(4),
54156
+ 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(),
54157
+ 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()
54153
54158
  }).partial().nullable();
54154
54159
  z.object({
54155
54160
  projectionAnnotationSpacing: z.number(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vitessce/vega",
3
- "version": "3.9.7",
3
+ "version": "3.9.9",
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.7",
25
- "@vitessce/tooltip": "3.9.7",
26
- "@vitessce/legend": "3.9.7"
24
+ "@vitessce/styles": "3.9.9",
25
+ "@vitessce/legend": "3.9.9",
26
+ "@vitessce/tooltip": "3.9.9"
27
27
  },
28
28
  "devDependencies": {
29
29
  "react": "18.3.1",