@vitessce/heatmap 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/{deflate-75c74002.js → deflate-a1c9463c.js} +1 -1
- package/dist/{index-c4ad73b8.js → index-106ebf90.js} +12 -7
- package/dist/index.js +1 -1
- package/dist/{jpeg-28dd50f3.js → jpeg-e2987ed5.js} +1 -1
- package/dist/{lerc-13f7a96a.js → lerc-821dc394.js} +1 -1
- package/dist/{lzw-924f5d1f.js → lzw-e84cf0e1.js} +1 -1
- package/dist/{packbits-9d1372b3.js → packbits-ba9d1535.js} +1 -1
- package/dist/{raw-73c6e451.js → raw-3be193a8.js} +1 -1
- package/dist/{webimage-d888986b.js → webimage-15f12551.js} +1 -1
- package/dist-tsc/Heatmap.test.fixtures.d.ts +3 -3
- package/dist-tsc/HeatmapWorkerPool.d.ts +1 -1
- package/dist-tsc/HeatmapWorkerPool.d.ts.map +1 -1
- package/package.json +9 -9
|
@@ -11109,8 +11109,11 @@ const CoordinationType$1 = {
|
|
|
11109
11109
|
PHOTOMETRIC_INTERPRETATION: "photometricInterpretation",
|
|
11110
11110
|
// For 3D volume rendering
|
|
11111
11111
|
SPATIAL_RENDERING_MODE: "spatialRenderingMode",
|
|
11112
|
+
// For whole spatial view
|
|
11112
11113
|
VOLUMETRIC_RENDERING_ALGORITHM: "volumetricRenderingAlgorithm",
|
|
11114
|
+
// Could be per-image-layer
|
|
11113
11115
|
SPATIAL_TARGET_RESOLUTION: "spatialTargetResolution",
|
|
11116
|
+
// Per-spatial-layer
|
|
11114
11117
|
// For clipping plane sliders
|
|
11115
11118
|
SPATIAL_SLICE_X: "spatialSliceX",
|
|
11116
11119
|
SPATIAL_SLICE_Y: "spatialSliceY",
|
|
@@ -11119,10 +11122,12 @@ const CoordinationType$1 = {
|
|
|
11119
11122
|
SPOT_LAYER: "spotLayer",
|
|
11120
11123
|
POINT_LAYER: "pointLayer",
|
|
11121
11124
|
SPATIAL_SPOT_RADIUS: "spatialSpotRadius",
|
|
11125
|
+
// In micrometers?
|
|
11122
11126
|
SPATIAL_SPOT_FILLED: "spatialSpotFilled",
|
|
11123
11127
|
SPATIAL_SPOT_STROKE_WIDTH: "spatialSpotStrokeWidth",
|
|
11124
11128
|
SPATIAL_LAYER_COLOR: "spatialLayerColor",
|
|
11125
11129
|
PIXEL_HIGHLIGHT: "pixelHighlight",
|
|
11130
|
+
// Per-image-layer
|
|
11126
11131
|
TOOLTIP_CROSSHAIRS_VISIBLE: "tooltipCrosshairsVisible",
|
|
11127
11132
|
LEGEND_VISIBLE: "legendVisible",
|
|
11128
11133
|
SPATIAL_CHANNEL_LABELS_VISIBLE: "spatialChannelLabelsVisible",
|
|
@@ -132682,16 +132687,16 @@ function addDecoder(cases, importFn) {
|
|
|
132682
132687
|
}
|
|
132683
132688
|
cases.forEach((c) => registry$1.set(c, importFn));
|
|
132684
132689
|
}
|
|
132685
|
-
addDecoder([void 0, 1], () => import("./raw-
|
|
132686
|
-
addDecoder(5, () => import("./lzw-
|
|
132690
|
+
addDecoder([void 0, 1], () => import("./raw-3be193a8.js").then((m) => m.default));
|
|
132691
|
+
addDecoder(5, () => import("./lzw-e84cf0e1.js").then((m) => m.default));
|
|
132687
132692
|
addDecoder(6, () => {
|
|
132688
132693
|
throw new Error("old style JPEG compression is not supported.");
|
|
132689
132694
|
});
|
|
132690
|
-
addDecoder(7, () => import("./jpeg-
|
|
132691
|
-
addDecoder([8, 32946], () => import("./deflate-
|
|
132692
|
-
addDecoder(32773, () => import("./packbits-
|
|
132693
|
-
addDecoder(34887, () => import("./lerc-
|
|
132694
|
-
addDecoder(50001, () => import("./webimage-
|
|
132695
|
+
addDecoder(7, () => import("./jpeg-e2987ed5.js").then((m) => m.default));
|
|
132696
|
+
addDecoder([8, 32946], () => import("./deflate-a1c9463c.js").then((m) => m.default));
|
|
132697
|
+
addDecoder(32773, () => import("./packbits-ba9d1535.js").then((m) => m.default));
|
|
132698
|
+
addDecoder(34887, () => import("./lerc-821dc394.js").then((m) => m.default));
|
|
132699
|
+
addDecoder(50001, () => import("./webimage-15f12551.js").then((m) => m.default));
|
|
132695
132700
|
function decodeRowAcc(row, stride) {
|
|
132696
132701
|
let length2 = row.length - stride;
|
|
132697
132702
|
let offset5 = 0;
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { i as inflate_1 } from "./pako.esm-68f84e2a.js";
|
|
2
|
-
import { g as getDefaultExportFromCjs, B as BaseDecoder } from "./index-
|
|
2
|
+
import { g as getDefaultExportFromCjs, B as BaseDecoder } from "./index-106ebf90.js";
|
|
3
3
|
import "react";
|
|
4
4
|
import "@vitessce/vit-s";
|
|
5
5
|
import "react-dom";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export namespace expressionMatrix {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
let rows: string[];
|
|
3
|
+
let cols: string[];
|
|
4
|
+
let matrix: Uint8Array;
|
|
5
5
|
}
|
|
6
6
|
export const cellColors: Map<string, number[]>;
|
|
7
7
|
//# sourceMappingURL=Heatmap.test.fixtures.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"HeatmapWorkerPool.d.ts","sourceRoot":"","sources":["../src/HeatmapWorkerPool.js"],"names":[],"mappings":"AAQA;;;GAGG;AACH;IACE,cAEC;IAED;;;;;;;;;;;;;;;;;OAiBG;IACH,0BAeC;CACF"}
|
|
1
|
+
{"version":3,"file":"HeatmapWorkerPool.d.ts","sourceRoot":"","sources":["../src/HeatmapWorkerPool.js"],"names":[],"mappings":"AAQA;;;GAGG;AACH;IACE,cAEC;IAED;;;;;;;;;;;;;;;;;OAiBG;IACH,0BAeC;CACF;qBAlDoB,iBAAiB"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vitessce/heatmap",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.10",
|
|
4
4
|
"author": "Gehlenborg Lab",
|
|
5
5
|
"homepage": "http://vitessce.io",
|
|
6
6
|
"repository": {
|
|
@@ -20,14 +20,14 @@
|
|
|
20
20
|
"lodash-es": "^4.17.21",
|
|
21
21
|
"uuid": "^9.0.0",
|
|
22
22
|
"react-aria": "^3.28.0",
|
|
23
|
-
"@vitessce/constants-internal": "3.3.
|
|
24
|
-
"@vitessce/gl": "3.3.
|
|
25
|
-
"@vitessce/legend": "3.3.
|
|
26
|
-
"@vitessce/sets-utils": "3.3.
|
|
27
|
-
"@vitessce/tooltip": "3.3.
|
|
28
|
-
"@vitessce/
|
|
29
|
-
"@vitessce/workers": "3.3.
|
|
30
|
-
"@vitessce/
|
|
23
|
+
"@vitessce/constants-internal": "3.3.10",
|
|
24
|
+
"@vitessce/gl": "3.3.10",
|
|
25
|
+
"@vitessce/legend": "3.3.10",
|
|
26
|
+
"@vitessce/sets-utils": "3.3.10",
|
|
27
|
+
"@vitessce/tooltip": "3.3.10",
|
|
28
|
+
"@vitessce/utils": "3.3.10",
|
|
29
|
+
"@vitessce/workers": "3.3.10",
|
|
30
|
+
"@vitessce/vit-s": "3.3.10"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@testing-library/jest-dom": "^5.16.4",
|