@vitessce/config 3.3.8 → 3.3.10

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 CHANGED
@@ -188,8 +188,11 @@ const CoordinationType = {
188
188
  PHOTOMETRIC_INTERPRETATION: "photometricInterpretation",
189
189
  // For 3D volume rendering
190
190
  SPATIAL_RENDERING_MODE: "spatialRenderingMode",
191
+ // For whole spatial view
191
192
  VOLUMETRIC_RENDERING_ALGORITHM: "volumetricRenderingAlgorithm",
193
+ // Could be per-image-layer
192
194
  SPATIAL_TARGET_RESOLUTION: "spatialTargetResolution",
195
+ // Per-spatial-layer
193
196
  // For clipping plane sliders
194
197
  SPATIAL_SLICE_X: "spatialSliceX",
195
198
  SPATIAL_SLICE_Y: "spatialSliceY",
@@ -198,10 +201,12 @@ const CoordinationType = {
198
201
  SPOT_LAYER: "spotLayer",
199
202
  POINT_LAYER: "pointLayer",
200
203
  SPATIAL_SPOT_RADIUS: "spatialSpotRadius",
204
+ // In micrometers?
201
205
  SPATIAL_SPOT_FILLED: "spatialSpotFilled",
202
206
  SPATIAL_SPOT_STROKE_WIDTH: "spatialSpotStrokeWidth",
203
207
  SPATIAL_LAYER_COLOR: "spatialLayerColor",
204
208
  PIXEL_HIGHLIGHT: "pixelHighlight",
209
+ // Per-image-layer
205
210
  TOOLTIP_CROSSHAIRS_VISIBLE: "tooltipCrosshairsVisible",
206
211
  LEGEND_VISIBLE: "legendVisible",
207
212
  SPATIAL_CHANNEL_LABELS_VISIBLE: "spatialChannelLabelsVisible",
@@ -240,7 +240,7 @@ export class VitessceConfigView {
240
240
  this.view = {
241
241
  component,
242
242
  coordinationScopes,
243
- coordinationScopesBy: undefined,
243
+ coordinationScopesBy: undefined, // TODO: initialize from parameter?
244
244
  x,
245
245
  y,
246
246
  w,
@@ -1,6 +1,6 @@
1
1
  export namespace NO_HINTS_CONFIG {
2
- const views: {};
3
- const coordinationValues: {};
2
+ let views: {};
3
+ let coordinationValues: {};
4
4
  }
5
5
  export const HINTS_CONFIG: {
6
6
  'No hints are available. Generate config with no hints.': {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vitessce/config",
3
- "version": "3.3.8",
3
+ "version": "3.3.10",
4
4
  "author": "Gehlenborg Lab",
5
5
  "homepage": "http://vitessce.io",
6
6
  "repository": {
@@ -16,8 +16,8 @@
16
16
  "dist-tsc"
17
17
  ],
18
18
  "dependencies": {
19
- "@vitessce/constants-internal": "3.3.8",
20
- "@vitessce/utils": "3.3.8"
19
+ "@vitessce/constants-internal": "3.3.10",
20
+ "@vitessce/utils": "3.3.10"
21
21
  },
22
22
  "scripts": {
23
23
  "bundle": "pnpm exec vite build -c ../../scripts/vite.config.js",