@vitessce/scatterplot-embedding 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-BaP7Va-9.js → deflate-BPNH0-gs.js} +1 -1
- package/dist/{index-CAZiCmfU.js → index-BUnpJvPA.js} +23 -7
- package/dist/index.js +1 -1
- package/dist/{jpeg-CZjNfHTa.js → jpeg-HkMzLFbL.js} +1 -1
- package/dist/{lerc-B731iHgp.js → lerc-BL5Xy_sd.js} +1 -1
- package/dist/{lzw-D4jJ825w.js → lzw-C3MiI_oL.js} +1 -1
- package/dist/{packbits-fITVevsL.js → packbits-CtWmjnkM.js} +1 -1
- package/dist/{raw-C7Mr1wKf.js → raw-CYgoEHqR.js} +1 -1
- package/dist/{webimage-SEug2Cmk.js → webimage-yN7Q3b16.js} +1 -1
- package/package.json +8 -8
|
@@ -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-BUnpJvPA.js";
|
|
3
3
|
class DeflateDecoder extends BaseDecoder {
|
|
4
4
|
decodeBlock(buffer) {
|
|
5
5
|
return inflate_1(new Uint8Array(buffer)).buffer;
|
|
@@ -9716,6 +9716,9 @@ const FileType$1 = {
|
|
|
9716
9716
|
OBS_SEGMENTATIONS_OME_TIFF: "obsSegmentations.ome-tiff",
|
|
9717
9717
|
// GLB
|
|
9718
9718
|
OBS_SEGMENTATIONS_GLB: "obsSegmentations.glb",
|
|
9719
|
+
// Neuroglancer
|
|
9720
|
+
// Precomputed (mesh) format
|
|
9721
|
+
OBS_SEGMENTATIONS_NG_PRECOMPUTED: "obsSegmentations.ng-precomputed",
|
|
9719
9722
|
// New file types to support old file types:
|
|
9720
9723
|
// - cells.json
|
|
9721
9724
|
OBS_EMBEDDING_CELLS_JSON: "obsEmbedding.cells.json",
|
|
@@ -9943,6 +9946,7 @@ const ViewHelpMapping = {
|
|
|
9943
9946
|
[FileType$1.OBS_LABELS_MUDATA_ZARR]: DataType$2.OBS_LABELS,
|
|
9944
9947
|
[FileType$1.FEATURE_LABELS_MUDATA_ZARR]: DataType$2.FEATURE_LABELS,
|
|
9945
9948
|
[FileType$1.OBS_SEGMENTATIONS_GLB]: DataType$2.OBS_SEGMENTATIONS,
|
|
9949
|
+
[FileType$1.OBS_SEGMENTATIONS_NG_PRECOMPUTED]: DataType$2.OBS_SEGMENTATIONS,
|
|
9946
9950
|
[FileType$1.IMAGE_SPATIALDATA_ZARR]: DataType$2.IMAGE,
|
|
9947
9951
|
[FileType$1.LABELS_SPATIALDATA_ZARR]: DataType$2.OBS_SEGMENTATIONS,
|
|
9948
9952
|
[FileType$1.SHAPES_SPATIALDATA_ZARR]: DataType$2.OBS_SEGMENTATIONS,
|
|
@@ -11206,6 +11210,18 @@ z.object({
|
|
|
11206
11210
|
sceneScaleZ: z.number(),
|
|
11207
11211
|
materialSide: z.enum(["front", "back"])
|
|
11208
11212
|
}).partial().nullable();
|
|
11213
|
+
z.object({
|
|
11214
|
+
// TODO: Should this explicitly specify sharded vs. unsharded?
|
|
11215
|
+
// Or can/should that be inferred from the data?
|
|
11216
|
+
dimensionX: z.number(),
|
|
11217
|
+
dimensionY: z.number(),
|
|
11218
|
+
dimensionZ: z.number(),
|
|
11219
|
+
dimensionUnit: z.enum(["nm", "um", "µm", "mm", "cm", "m"]),
|
|
11220
|
+
// TODO: should the following be passed via coordination types instead?
|
|
11221
|
+
projectionScale: z.number(),
|
|
11222
|
+
position: z.array(z.number()).length(3),
|
|
11223
|
+
projectionOrientation: z.array(z.number()).length(4)
|
|
11224
|
+
}).partial().nullable();
|
|
11209
11225
|
z.object({
|
|
11210
11226
|
obsIndex: z.string(),
|
|
11211
11227
|
obsEmbedding: z.array(z.string()).length(2)
|
|
@@ -123328,22 +123344,22 @@ function addDecoder(cases, importFn) {
|
|
|
123328
123344
|
}
|
|
123329
123345
|
cases.forEach((c2) => registry$1.set(c2, importFn));
|
|
123330
123346
|
}
|
|
123331
|
-
addDecoder([void 0, 1], () => import("./raw-
|
|
123332
|
-
addDecoder(5, () => import("./lzw-
|
|
123347
|
+
addDecoder([void 0, 1], () => import("./raw-CYgoEHqR.js").then((m2) => m2.default));
|
|
123348
|
+
addDecoder(5, () => import("./lzw-C3MiI_oL.js").then((m2) => m2.default));
|
|
123333
123349
|
addDecoder(6, () => {
|
|
123334
123350
|
throw new Error("old style JPEG compression is not supported.");
|
|
123335
123351
|
});
|
|
123336
|
-
addDecoder(7, () => import("./jpeg-
|
|
123337
|
-
addDecoder([8, 32946], () => import("./deflate-
|
|
123338
|
-
addDecoder(32773, () => import("./packbits-
|
|
123352
|
+
addDecoder(7, () => import("./jpeg-HkMzLFbL.js").then((m2) => m2.default));
|
|
123353
|
+
addDecoder([8, 32946], () => import("./deflate-BPNH0-gs.js").then((m2) => m2.default));
|
|
123354
|
+
addDecoder(32773, () => import("./packbits-CtWmjnkM.js").then((m2) => m2.default));
|
|
123339
123355
|
addDecoder(
|
|
123340
123356
|
34887,
|
|
123341
|
-
() => import("./lerc-
|
|
123357
|
+
() => import("./lerc-BL5Xy_sd.js").then(async (m2) => {
|
|
123342
123358
|
await m2.zstd.init();
|
|
123343
123359
|
return m2;
|
|
123344
123360
|
}).then((m2) => m2.default)
|
|
123345
123361
|
);
|
|
123346
|
-
addDecoder(50001, () => import("./webimage-
|
|
123362
|
+
addDecoder(50001, () => import("./webimage-yN7Q3b16.js").then((m2) => m2.default));
|
|
123347
123363
|
function decodeRowAcc(row, stride) {
|
|
123348
123364
|
let length2 = row.length - stride;
|
|
123349
123365
|
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-BUnpJvPA.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/scatterplot-embedding",
|
|
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": {
|
|
@@ -20,13 +20,13 @@
|
|
|
20
20
|
"lodash-es": "^4.17.21",
|
|
21
21
|
"react-aria": "^3.28.0",
|
|
22
22
|
"@turf/circle": "^7.2.0",
|
|
23
|
-
"@vitessce/styles": "3.8.
|
|
24
|
-
"@vitessce/constants-internal": "3.8.
|
|
25
|
-
"@vitessce/legend": "3.8.
|
|
26
|
-
"@vitessce/scatterplot": "3.8.
|
|
27
|
-
"@vitessce/sets-utils": "3.8.
|
|
28
|
-
"@vitessce/utils": "3.8.
|
|
29
|
-
"@vitessce/vit-s": "3.8.
|
|
23
|
+
"@vitessce/styles": "3.8.2",
|
|
24
|
+
"@vitessce/constants-internal": "3.8.2",
|
|
25
|
+
"@vitessce/legend": "3.8.2",
|
|
26
|
+
"@vitessce/scatterplot": "3.8.2",
|
|
27
|
+
"@vitessce/sets-utils": "3.8.2",
|
|
28
|
+
"@vitessce/utils": "3.8.2",
|
|
29
|
+
"@vitessce/vit-s": "3.8.2"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"react": "18.3.1",
|