@vitessce/vit-s 2.0.1 → 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.
- package/dist/VitS.js +2 -1
- package/dist/index.js +1 -1
- package/package.json +3 -3
package/dist/VitS.js
CHANGED
|
@@ -12,7 +12,8 @@ import CallbackPublisher from './CallbackPublisher';
|
|
|
12
12
|
import { getComponent } from './component-registry';
|
|
13
13
|
import { checkTypes, initialize, upgradeAndValidate, } from './view-config-utils';
|
|
14
14
|
const generateClassName = createGenerateClassName({
|
|
15
|
-
disableGlobal:
|
|
15
|
+
disableGlobal: false,
|
|
16
|
+
productionPrefix: 'vit', // Avoid conflicts with portal-ui MUI class names
|
|
16
17
|
});
|
|
17
18
|
function logConfig(config, name) {
|
|
18
19
|
console.groupCollapsed(`🚄 Vitessce (${META_VERSION.version}) ${name}`);
|
package/dist/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export { VitS } from './VitS';
|
|
2
2
|
export { TitleInfo } from './TitleInfo';
|
|
3
3
|
export { PopperMenu } from './shared-mui/components';
|
|
4
|
-
export { registerPluginViewType, registerPluginCoordinationType, registerPluginFileType, } from './plugins';
|
|
4
|
+
export { registerPluginViewType, registerPluginCoordinationType, registerPluginFileType, registerPluginJointFileType, } from './plugins';
|
|
5
5
|
// For plugin view types:
|
|
6
6
|
export { useReady, useUrls, useVitessceContainer, useDeckCanvasSize, useExpressionValueGetter, useGetObsInfo, useClosestVitessceContainerSize, useWindowDimensions, useGridItemSize, } from './hooks';
|
|
7
7
|
export { useCoordination, useMultiDatasetCoordination, useDatasetUids, useLoaders, useMatchingLoader, useViewConfigStore, useViewConfigStoreApi, useComponentHover, useSetComponentHover, useComponentViewInfo, useSetComponentViewInfo, useWarning, useSetWarning, useAuxiliaryCoordination, useComponentLayout, } from './state/hooks';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vitessce/vit-s",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.2",
|
|
4
4
|
"author": "Gehlenborg Lab",
|
|
5
5
|
"homepage": "http://vitessce.io",
|
|
6
6
|
"repository": {
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
"react-grid-layout-with-lodash": "^1.3.5",
|
|
25
25
|
"uuid": "^3.3.2",
|
|
26
26
|
"zustand": "^3.5.10",
|
|
27
|
-
"@vitessce/constants-internal": "2.0.
|
|
28
|
-
"@vitessce/utils": "2.0.
|
|
27
|
+
"@vitessce/constants-internal": "2.0.2",
|
|
28
|
+
"@vitessce/utils": "2.0.2"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"react": "^18.0.0",
|