@vitessce/heatmap 3.8.1 → 3.8.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/{deflate-kK9y_cu4.js → deflate-DMZqBPLq.js} +1 -1
- package/dist/{index-CeQmf9jo.js → index-gtSn38WN.js} +23 -7
- package/dist/index.js +1 -1
- package/dist/{jpeg-BPeykQuv.js → jpeg-CM3wUtWq.js} +1 -1
- package/dist/{lerc-CJb8Jv3O.js → lerc-Bb47we2Q.js} +1 -1
- package/dist/{lzw-eTfdJhui.js → lzw-DfDJYLgg.js} +1 -1
- package/dist/{packbits-D1hhr44c.js → packbits-adacuKDz.js} +1 -1
- package/dist/{raw-B_ezzdAX.js → raw-JqdJhY1E.js} +1 -1
- package/dist/{webimage-DU_aX7n6.js → webimage-DhlCEJyb.js} +1 -1
- package/package.json +10 -10
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { i as inflate_1 } from "./pako.esm-SxljTded.js";
|
|
2
|
-
import { B as BaseDecoder } from "./index-
|
|
2
|
+
import { B as BaseDecoder } from "./index-gtSn38WN.js";
|
|
3
3
|
class DeflateDecoder extends BaseDecoder {
|
|
4
4
|
decodeBlock(buffer) {
|
|
5
5
|
return inflate_1(new Uint8Array(buffer)).buffer;
|
|
@@ -9646,6 +9646,9 @@ const FileType$1 = {
|
|
|
9646
9646
|
OBS_SEGMENTATIONS_OME_TIFF: "obsSegmentations.ome-tiff",
|
|
9647
9647
|
// GLB
|
|
9648
9648
|
OBS_SEGMENTATIONS_GLB: "obsSegmentations.glb",
|
|
9649
|
+
// Neuroglancer
|
|
9650
|
+
// Precomputed (mesh) format
|
|
9651
|
+
OBS_SEGMENTATIONS_NG_PRECOMPUTED: "obsSegmentations.ng-precomputed",
|
|
9649
9652
|
// New file types to support old file types:
|
|
9650
9653
|
// - cells.json
|
|
9651
9654
|
OBS_EMBEDDING_CELLS_JSON: "obsEmbedding.cells.json",
|
|
@@ -9873,6 +9876,7 @@ const ViewHelpMapping = {
|
|
|
9873
9876
|
[FileType$1.OBS_LABELS_MUDATA_ZARR]: DataType$2.OBS_LABELS,
|
|
9874
9877
|
[FileType$1.FEATURE_LABELS_MUDATA_ZARR]: DataType$2.FEATURE_LABELS,
|
|
9875
9878
|
[FileType$1.OBS_SEGMENTATIONS_GLB]: DataType$2.OBS_SEGMENTATIONS,
|
|
9879
|
+
[FileType$1.OBS_SEGMENTATIONS_NG_PRECOMPUTED]: DataType$2.OBS_SEGMENTATIONS,
|
|
9876
9880
|
[FileType$1.IMAGE_SPATIALDATA_ZARR]: DataType$2.IMAGE,
|
|
9877
9881
|
[FileType$1.LABELS_SPATIALDATA_ZARR]: DataType$2.OBS_SEGMENTATIONS,
|
|
9878
9882
|
[FileType$1.SHAPES_SPATIALDATA_ZARR]: DataType$2.OBS_SEGMENTATIONS,
|
|
@@ -11136,6 +11140,18 @@ z.object({
|
|
|
11136
11140
|
sceneScaleZ: z.number(),
|
|
11137
11141
|
materialSide: z.enum(["front", "back"])
|
|
11138
11142
|
}).partial().nullable();
|
|
11143
|
+
z.object({
|
|
11144
|
+
// TODO: Should this explicitly specify sharded vs. unsharded?
|
|
11145
|
+
// Or can/should that be inferred from the data?
|
|
11146
|
+
dimensionX: z.number(),
|
|
11147
|
+
dimensionY: z.number(),
|
|
11148
|
+
dimensionZ: z.number(),
|
|
11149
|
+
dimensionUnit: z.enum(["nm", "um", "µm", "mm", "cm", "m"]),
|
|
11150
|
+
// TODO: should the following be passed via coordination types instead?
|
|
11151
|
+
projectionScale: z.number(),
|
|
11152
|
+
position: z.array(z.number()).length(3),
|
|
11153
|
+
projectionOrientation: z.array(z.number()).length(4)
|
|
11154
|
+
}).partial().nullable();
|
|
11139
11155
|
z.object({
|
|
11140
11156
|
obsIndex: z.string(),
|
|
11141
11157
|
obsEmbedding: z.array(z.string()).length(2)
|
|
@@ -137809,22 +137825,22 @@ function addDecoder(cases, importFn) {
|
|
|
137809
137825
|
}
|
|
137810
137826
|
cases.forEach((c) => registry$1.set(c, importFn));
|
|
137811
137827
|
}
|
|
137812
|
-
addDecoder([void 0, 1], () => import("./raw-
|
|
137813
|
-
addDecoder(5, () => import("./lzw-
|
|
137828
|
+
addDecoder([void 0, 1], () => import("./raw-JqdJhY1E.js").then((m) => m.default));
|
|
137829
|
+
addDecoder(5, () => import("./lzw-DfDJYLgg.js").then((m) => m.default));
|
|
137814
137830
|
addDecoder(6, () => {
|
|
137815
137831
|
throw new Error("old style JPEG compression is not supported.");
|
|
137816
137832
|
});
|
|
137817
|
-
addDecoder(7, () => import("./jpeg-
|
|
137818
|
-
addDecoder([8, 32946], () => import("./deflate-
|
|
137819
|
-
addDecoder(32773, () => import("./packbits-
|
|
137833
|
+
addDecoder(7, () => import("./jpeg-CM3wUtWq.js").then((m) => m.default));
|
|
137834
|
+
addDecoder([8, 32946], () => import("./deflate-DMZqBPLq.js").then((m) => m.default));
|
|
137835
|
+
addDecoder(32773, () => import("./packbits-adacuKDz.js").then((m) => m.default));
|
|
137820
137836
|
addDecoder(
|
|
137821
137837
|
34887,
|
|
137822
|
-
() => import("./lerc-
|
|
137838
|
+
() => import("./lerc-Bb47we2Q.js").then(async (m) => {
|
|
137823
137839
|
await m.zstd.init();
|
|
137824
137840
|
return m;
|
|
137825
137841
|
}).then((m) => m.default)
|
|
137826
137842
|
);
|
|
137827
|
-
addDecoder(50001, () => import("./webimage-
|
|
137843
|
+
addDecoder(50001, () => import("./webimage-DhlCEJyb.js").then((m) => m.default));
|
|
137828
137844
|
function decodeRowAcc(row, stride) {
|
|
137829
137845
|
let length2 = row.length - stride;
|
|
137830
137846
|
let offset2 = 0;
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { i as inflate_1 } from "./pako.esm-SxljTded.js";
|
|
2
|
-
import { g as getDefaultExportFromCjs, B as BaseDecoder } from "./index-
|
|
2
|
+
import { g as getDefaultExportFromCjs, B as BaseDecoder } from "./index-gtSn38WN.js";
|
|
3
3
|
const LercParameters = {
|
|
4
4
|
AddCompression: 1
|
|
5
5
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vitessce/heatmap",
|
|
3
|
-
"version": "3.8.
|
|
3
|
+
"version": "3.8.2",
|
|
4
4
|
"author": "HIDIVE Lab at HMS",
|
|
5
5
|
"homepage": "http://vitessce.io",
|
|
6
6
|
"repository": {
|
|
@@ -19,15 +19,15 @@
|
|
|
19
19
|
"lodash-es": "^4.17.21",
|
|
20
20
|
"uuid": "^9.0.0",
|
|
21
21
|
"react-aria": "^3.28.0",
|
|
22
|
-
"@vitessce/styles": "3.8.
|
|
23
|
-
"@vitessce/constants-internal": "3.8.
|
|
24
|
-
"@vitessce/gl": "3.8.
|
|
25
|
-
"@vitessce/legend": "3.8.
|
|
26
|
-
"@vitessce/sets-utils": "3.8.
|
|
27
|
-
"@vitessce/tooltip": "3.8.
|
|
28
|
-
"@vitessce/utils": "3.8.
|
|
29
|
-
"@vitessce/vit-s": "3.8.
|
|
30
|
-
"@vitessce/workers": "3.8.
|
|
22
|
+
"@vitessce/styles": "3.8.2",
|
|
23
|
+
"@vitessce/constants-internal": "3.8.2",
|
|
24
|
+
"@vitessce/gl": "3.8.2",
|
|
25
|
+
"@vitessce/legend": "3.8.2",
|
|
26
|
+
"@vitessce/sets-utils": "3.8.2",
|
|
27
|
+
"@vitessce/tooltip": "3.8.2",
|
|
28
|
+
"@vitessce/utils": "3.8.2",
|
|
29
|
+
"@vitessce/vit-s": "3.8.2",
|
|
30
|
+
"@vitessce/workers": "3.8.2"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@testing-library/jest-dom": "^6.6.3",
|