@vitessce/statistical-plots 2.0.0-beta.2 → 2.0.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.
@@ -2,7 +2,7 @@ import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import React from 'react';
|
3
3
|
import clamp from 'lodash/clamp';
|
4
4
|
import { VegaPlot, VEGA_THEMES, DATASET_NAME } from '@vitessce/vega';
|
5
|
-
import { colorArrayToString } from '@vitessce/sets';
|
5
|
+
import { colorArrayToString } from '@vitessce/sets-utils';
|
6
6
|
import { capitalize } from '@vitessce/utils';
|
7
7
|
/**
|
8
8
|
* Gene expression histogram displayed as a bar chart,
|
@@ -3,7 +3,7 @@ import React, { useMemo } from 'react';
|
|
3
3
|
import { TitleInfo, useCoordination, useLoaders, useUrls, useReady, useGridItemSize, useFeatureSelection, useObsSetsData, useObsFeatureMatrixIndices, useFeatureLabelsData, registerPluginViewType, } from '@vitessce/vit-s';
|
4
4
|
import { ViewType, COMPONENT_COORDINATION_TYPES } from '@vitessce/constants-internal';
|
5
5
|
import { VALUE_TRANSFORM_OPTIONS, capitalize, getValueTransformFunction } from '@vitessce/utils';
|
6
|
-
import { treeToObjectsBySetNames, treeToSetSizesBySetNames, mergeObsSets } from '@vitessce/sets';
|
6
|
+
import { treeToObjectsBySetNames, treeToSetSizesBySetNames, mergeObsSets } from '@vitessce/sets-utils';
|
7
7
|
import CellSetExpressionPlotOptions from './CellSetExpressionPlotOptions';
|
8
8
|
import CellSetExpressionPlot from './CellSetExpressionPlot';
|
9
9
|
import { useStyles } from './styles';
|
package/dist/CellSetSizesPlot.js
CHANGED
@@ -2,7 +2,7 @@ import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import React from 'react';
|
3
3
|
import clamp from 'lodash/clamp';
|
4
4
|
import { VegaPlot, VEGA_THEMES } from '@vitessce/vega';
|
5
|
-
import { colorArrayToString } from '@vitessce/sets';
|
5
|
+
import { colorArrayToString } from '@vitessce/sets-utils';
|
6
6
|
import { capitalize } from '@vitessce/utils';
|
7
7
|
/**
|
8
8
|
* Cell set sizes displayed as a bar chart,
|
@@ -2,7 +2,7 @@ import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import React, { useMemo } from 'react';
|
3
3
|
import { TitleInfo, useCoordination, useLoaders, useUrls, useReady, useGridItemSize, useObsSetsData, registerPluginViewType, } from '@vitessce/vit-s';
|
4
4
|
import { ViewType, COMPONENT_COORDINATION_TYPES } from '@vitessce/constants-internal';
|
5
|
-
import { mergeObsSets, treeToSetSizesBySetNames } from '@vitessce/sets';
|
5
|
+
import { mergeObsSets, treeToSetSizesBySetNames } from '@vitessce/sets-utils';
|
6
6
|
import { capitalize } from '@vitessce/utils';
|
7
7
|
import CellSetSizesPlot from './CellSetSizesPlot';
|
8
8
|
import { useStyles } from './styles';
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@vitessce/statistical-plots",
|
3
|
-
"version": "2.0.
|
3
|
+
"version": "2.0.2",
|
4
4
|
"author": "Gehlenborg Lab",
|
5
5
|
"homepage": "http://vitessce.io",
|
6
6
|
"repository": {
|
@@ -14,13 +14,13 @@
|
|
14
14
|
],
|
15
15
|
"dependencies": {
|
16
16
|
"@material-ui/core": "~4.12.3",
|
17
|
-
"@vitessce/constants-internal": "2.0.0-beta.2",
|
18
|
-
"@vitessce/sets": "2.0.0-beta.2",
|
19
|
-
"@vitessce/utils": "2.0.0-beta.2",
|
20
|
-
"@vitessce/vega": "2.0.0-beta.2",
|
21
|
-
"@vitessce/vit-s": "2.0.0-beta.2",
|
22
17
|
"d3-array": "^2.4.0",
|
23
|
-
"lodash": "^4.17.21"
|
18
|
+
"lodash": "^4.17.21",
|
19
|
+
"@vitessce/constants-internal": "2.0.2",
|
20
|
+
"@vitessce/sets-utils": "2.0.2",
|
21
|
+
"@vitessce/utils": "2.0.2",
|
22
|
+
"@vitessce/vega": "2.0.2",
|
23
|
+
"@vitessce/vit-s": "2.0.2"
|
24
24
|
},
|
25
25
|
"devDependencies": {
|
26
26
|
"react": "^18.0.0",
|