@vitessce/scatterplot-embedding 3.5.12 → 3.6.1
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-Db2cTk_W.js +10 -0
- package/dist/{index-de0a204e.js → index-j0ihMbBE.js} +75125 -74278
- package/dist/index.js +1 -4
- package/dist/{jpeg-ea5d6166.js → jpeg-CHU3I9No.js} +20 -4
- package/dist/lerc-D8PUPaYD.js +2065 -0
- package/dist/{lzw-cecbc3f4.js → lzw-CUWU5SBx.js} +1 -4
- package/dist/{packbits-04a500da.js → packbits-Jo_SZrPf.js} +1 -4
- package/dist/{pako.esm-68f84e2a.js → pako.esm-SxljTded.js} +33 -1839
- package/dist/{raw-5d0a1d41.js → raw-ufiv5yWM.js} +1 -4
- package/dist/{webimage-67a3c5bf.js → webimage-7P2vy2jd.js} +1 -4
- package/dist-tsc/EmbeddingScatterplotOptions.js +2 -2
- package/package.json +12 -11
- package/src/EmbeddingScatterplotOptions.js +2 -2
- package/dist/deflate-94dfdd6c.js +0 -13
- package/dist/lerc-7e5d53ac.js +0 -2014
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import React from 'react';
|
|
3
3
|
import { useId } from 'react-aria';
|
|
4
|
-
import { TableCell, TableRow } from '@
|
|
4
|
+
import { TableCell, TableRow } from '@vitessce/styles';
|
|
5
5
|
import { usePlotOptionsStyles, OptionSelect } from '@vitessce/vit-s';
|
|
6
6
|
export default function EmbeddingScatterplotOptions(props) {
|
|
7
7
|
const { mappingSelectEnabled, mappings, selectedMapping, setSelectedMapping, } = props;
|
|
8
|
-
const classes = usePlotOptionsStyles();
|
|
8
|
+
const { classes } = usePlotOptionsStyles();
|
|
9
9
|
const scatterplotOptionsId = useId();
|
|
10
10
|
// Handlers for custom option field changes.
|
|
11
11
|
const handleSelectedMappingChange = (event) => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vitessce/scatterplot-embedding",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.6.1",
|
|
4
4
|
"author": "HIDIVE Lab at HMS",
|
|
5
5
|
"homepage": "http://vitessce.io",
|
|
6
6
|
"repository": {
|
|
@@ -16,25 +16,26 @@
|
|
|
16
16
|
"dist-tsc"
|
|
17
17
|
],
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@material-ui/core": "~4.12.3",
|
|
20
19
|
"d3-array": "^2.4.0",
|
|
21
20
|
"lodash-es": "^4.17.21",
|
|
22
21
|
"react-aria": "^3.28.0",
|
|
23
22
|
"@turf/circle": "^7.2.0",
|
|
24
|
-
"@vitessce/
|
|
25
|
-
"@vitessce/
|
|
26
|
-
"@vitessce/
|
|
27
|
-
"@vitessce/
|
|
28
|
-
"@vitessce/utils": "3.
|
|
29
|
-
"@vitessce/
|
|
23
|
+
"@vitessce/styles": "3.6.1",
|
|
24
|
+
"@vitessce/constants-internal": "3.6.1",
|
|
25
|
+
"@vitessce/legend": "3.6.1",
|
|
26
|
+
"@vitessce/scatterplot": "3.6.1",
|
|
27
|
+
"@vitessce/sets-utils": "3.6.1",
|
|
28
|
+
"@vitessce/utils": "3.6.1",
|
|
29
|
+
"@vitessce/vit-s": "3.6.1"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"react": "^18.0.0",
|
|
33
|
-
"
|
|
34
|
-
"
|
|
33
|
+
"react-dom": "^18.0.0",
|
|
34
|
+
"vite": "^6.3.5",
|
|
35
|
+
"vitest": "^3.1.4"
|
|
35
36
|
},
|
|
36
37
|
"peerDependencies": {
|
|
37
|
-
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
|
|
38
|
+
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
38
39
|
},
|
|
39
40
|
"scripts": {
|
|
40
41
|
"bundle": "pnpm exec vite build -c ../../../scripts/vite.config.js",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { useId } from 'react-aria';
|
|
3
|
-
import { TableCell, TableRow } from '@
|
|
3
|
+
import { TableCell, TableRow } from '@vitessce/styles';
|
|
4
4
|
import { usePlotOptionsStyles, OptionSelect } from '@vitessce/vit-s';
|
|
5
5
|
|
|
6
6
|
export default function EmbeddingScatterplotOptions(props) {
|
|
@@ -11,7 +11,7 @@ export default function EmbeddingScatterplotOptions(props) {
|
|
|
11
11
|
setSelectedMapping,
|
|
12
12
|
} = props;
|
|
13
13
|
|
|
14
|
-
const classes = usePlotOptionsStyles();
|
|
14
|
+
const { classes } = usePlotOptionsStyles();
|
|
15
15
|
|
|
16
16
|
const scatterplotOptionsId = useId();
|
|
17
17
|
|
package/dist/deflate-94dfdd6c.js
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { i as inflate_1 } from "./pako.esm-68f84e2a.js";
|
|
2
|
-
import { B as BaseDecoder } from "./index-de0a204e.js";
|
|
3
|
-
import "react";
|
|
4
|
-
import "@vitessce/vit-s";
|
|
5
|
-
import "react-dom";
|
|
6
|
-
class DeflateDecoder extends BaseDecoder {
|
|
7
|
-
decodeBlock(buffer) {
|
|
8
|
-
return inflate_1(new Uint8Array(buffer)).buffer;
|
|
9
|
-
}
|
|
10
|
-
}
|
|
11
|
-
export {
|
|
12
|
-
DeflateDecoder as default
|
|
13
|
-
};
|