@vitessce/scatterplot-embedding 3.3.5 → 3.3.6
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-ace56a0e.js → deflate-eda70ae1.js} +1 -1
- package/dist/{index-84e77b55.js → index-2d8bbe0d.js} +9 -8
- package/dist/index.js +1 -1
- package/dist/{jpeg-be45146d.js → jpeg-a28a644a.js} +1 -1
- package/dist/{lerc-9cd3178c.js → lerc-020b89ab.js} +1 -1
- package/dist/{lzw-c9ffecd4.js → lzw-82440e2d.js} +1 -1
- package/dist/{packbits-53dbd890.js → packbits-0debf5b7.js} +1 -1
- package/dist/{raw-0c07377d.js → raw-73814107.js} +1 -1
- package/dist/{webimage-d32ef5d0.js → webimage-7ad8a00b.js} +1 -1
- package/package.json +7 -7
|
@@ -4458,8 +4458,9 @@ function getNextScope(prevScopes) {
|
|
|
4458
4458
|
}
|
|
4459
4459
|
const DEFAULT_DARK_COLOR = [50, 50, 50];
|
|
4460
4460
|
const DEFAULT_LIGHT_COLOR$3 = [200, 200, 200];
|
|
4461
|
+
const DEFAULT_LIGHT2_COLOR = [235, 235, 235];
|
|
4461
4462
|
function getDefaultColor(theme) {
|
|
4462
|
-
return theme === "dark" ? DEFAULT_DARK_COLOR : DEFAULT_LIGHT_COLOR$3;
|
|
4463
|
+
return theme === "dark" ? DEFAULT_DARK_COLOR : theme === "light" ? DEFAULT_LIGHT_COLOR$3 : DEFAULT_LIGHT2_COLOR;
|
|
4463
4464
|
}
|
|
4464
4465
|
const PALETTE = [
|
|
4465
4466
|
[68, 119, 170],
|
|
@@ -121316,16 +121317,16 @@ function addDecoder(cases, importFn) {
|
|
|
121316
121317
|
}
|
|
121317
121318
|
cases.forEach((c2) => registry$1.set(c2, importFn));
|
|
121318
121319
|
}
|
|
121319
|
-
addDecoder([void 0, 1], () => import("./raw-
|
|
121320
|
-
addDecoder(5, () => import("./lzw-
|
|
121320
|
+
addDecoder([void 0, 1], () => import("./raw-73814107.js").then((m2) => m2.default));
|
|
121321
|
+
addDecoder(5, () => import("./lzw-82440e2d.js").then((m2) => m2.default));
|
|
121321
121322
|
addDecoder(6, () => {
|
|
121322
121323
|
throw new Error("old style JPEG compression is not supported.");
|
|
121323
121324
|
});
|
|
121324
|
-
addDecoder(7, () => import("./jpeg-
|
|
121325
|
-
addDecoder([8, 32946], () => import("./deflate-
|
|
121326
|
-
addDecoder(32773, () => import("./packbits-
|
|
121327
|
-
addDecoder(34887, () => import("./lerc-
|
|
121328
|
-
addDecoder(50001, () => import("./webimage-
|
|
121325
|
+
addDecoder(7, () => import("./jpeg-a28a644a.js").then((m2) => m2.default));
|
|
121326
|
+
addDecoder([8, 32946], () => import("./deflate-eda70ae1.js").then((m2) => m2.default));
|
|
121327
|
+
addDecoder(32773, () => import("./packbits-0debf5b7.js").then((m2) => m2.default));
|
|
121328
|
+
addDecoder(34887, () => import("./lerc-020b89ab.js").then((m2) => m2.default));
|
|
121329
|
+
addDecoder(50001, () => import("./webimage-7ad8a00b.js").then((m2) => m2.default));
|
|
121329
121330
|
function decodeRowAcc(row, stride) {
|
|
121330
121331
|
let length2 = row.length - stride;
|
|
121331
121332
|
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-2d8bbe0d.js";
|
|
3
3
|
import "react";
|
|
4
4
|
import "@vitessce/vit-s";
|
|
5
5
|
import "react-dom";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vitessce/scatterplot-embedding",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.6",
|
|
4
4
|
"author": "Gehlenborg Lab",
|
|
5
5
|
"homepage": "http://vitessce.io",
|
|
6
6
|
"repository": {
|
|
@@ -20,12 +20,12 @@
|
|
|
20
20
|
"d3-array": "^2.4.0",
|
|
21
21
|
"lodash-es": "^4.17.21",
|
|
22
22
|
"react-aria": "^3.28.0",
|
|
23
|
-
"@vitessce/
|
|
24
|
-
"@vitessce/
|
|
25
|
-
"@vitessce/
|
|
26
|
-
"@vitessce/
|
|
27
|
-
"@vitessce/
|
|
28
|
-
"@vitessce/
|
|
23
|
+
"@vitessce/scatterplot": "3.3.6",
|
|
24
|
+
"@vitessce/utils": "3.3.6",
|
|
25
|
+
"@vitessce/constants-internal": "3.3.6",
|
|
26
|
+
"@vitessce/vit-s": "3.3.6",
|
|
27
|
+
"@vitessce/legend": "3.3.6",
|
|
28
|
+
"@vitessce/sets-utils": "3.3.6"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"react": "^18.0.0",
|