@vitessce/statistical-plots 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/index.js +2 -1
- package/package.json +6 -6
package/dist/index.js
CHANGED
@@ -1910,8 +1910,9 @@ function getNextScope(prevScopes) {
|
|
1910
1910
|
}
|
1911
1911
|
const DEFAULT_DARK_COLOR = [50, 50, 50];
|
1912
1912
|
const DEFAULT_LIGHT_COLOR = [200, 200, 200];
|
1913
|
+
const DEFAULT_LIGHT2_COLOR = [235, 235, 235];
|
1913
1914
|
function getDefaultColor(theme) {
|
1914
|
-
return theme === "dark" ? DEFAULT_DARK_COLOR : DEFAULT_LIGHT_COLOR;
|
1915
|
+
return theme === "dark" ? DEFAULT_DARK_COLOR : theme === "light" ? DEFAULT_LIGHT_COLOR : DEFAULT_LIGHT2_COLOR;
|
1915
1916
|
}
|
1916
1917
|
const PALETTE = [
|
1917
1918
|
[68, 119, 170],
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@vitessce/statistical-plots",
|
3
|
-
"version": "3.3.
|
3
|
+
"version": "3.3.6",
|
4
4
|
"author": "Gehlenborg Lab",
|
5
5
|
"homepage": "http://vitessce.io",
|
6
6
|
"repository": {
|
@@ -25,11 +25,11 @@
|
|
25
25
|
"vega-scale": "^6.0.0",
|
26
26
|
"lodash-es": "^4.17.21",
|
27
27
|
"react-aria": "^3.28.0",
|
28
|
-
"@vitessce/sets-utils": "3.3.
|
29
|
-
"@vitessce/
|
30
|
-
"@vitessce/
|
31
|
-
"@vitessce/vega": "3.3.
|
32
|
-
"@vitessce/
|
28
|
+
"@vitessce/sets-utils": "3.3.6",
|
29
|
+
"@vitessce/utils": "3.3.6",
|
30
|
+
"@vitessce/vit-s": "3.3.6",
|
31
|
+
"@vitessce/vega": "3.3.6",
|
32
|
+
"@vitessce/constants-internal": "3.3.6"
|
33
33
|
},
|
34
34
|
"devDependencies": {
|
35
35
|
"react": "^18.0.0",
|