@plurid/plurid-react 0.0.0-32 → 0.0.0-33
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/distribution/components/links/Link/components/Preview/index.d.ts +10 -1
- package/distribution/components/links/Link/index.d.ts +18 -1
- package/distribution/components/planes/ExternalPlane/index.d.ts +7 -1
- package/distribution/components/planes/IframePlane/index.d.ts +7 -1
- package/distribution/components/structural/Plane/components/PlaneBridge/index.d.ts +6 -1
- package/distribution/components/structural/Plane/components/PlaneControls/components/SearchItem/index.d.ts +7 -1
- package/distribution/components/structural/Plane/components/PlaneControls/components/SearchList/index.d.ts +6 -1
- package/distribution/components/structural/Plane/components/PlaneControls/index.d.ts +12 -1
- package/distribution/components/structural/Plane/components/PlaneDebugger/index.d.ts +5 -1
- package/distribution/components/structural/Plane/index.d.ts +10 -1
- package/distribution/components/structural/Root/index.d.ts +6 -1
- package/distribution/components/structural/Roots/index.d.ts +5 -1
- package/distribution/components/structural/Space/components/SpaceDebugger/index.d.ts +5 -1
- package/distribution/components/structural/Space/index.d.ts +5 -1
- package/distribution/components/utilities/ApplicationConfigurator/index.d.ts +8 -1
- package/distribution/components/utilities/NotFound/index.d.ts +5 -1
- package/distribution/components/utilities/Origin/index.d.ts +5 -1
- package/distribution/components/utilities/PlaneConfigurator/index.d.ts +8 -1
- package/distribution/components/utilities/Toolbar/General/components/Drawer/index.d.ts +9 -1
- package/distribution/components/utilities/Toolbar/General/components/MenuMore/components/Global/index.d.ts +5 -1
- package/distribution/components/utilities/Toolbar/General/components/MenuMore/components/Shortcuts/index.d.ts +5 -1
- package/distribution/components/utilities/Toolbar/General/components/MenuMore/components/Space/index.d.ts +5 -1
- package/distribution/components/utilities/Toolbar/General/components/MenuMore/components/Technical/index.d.ts +5 -1
- package/distribution/components/utilities/Toolbar/General/components/MenuMore/components/Toolbar/index.d.ts +5 -1
- package/distribution/components/utilities/Toolbar/General/components/MenuMore/components/Transform/index.d.ts +5 -1
- package/distribution/components/utilities/Toolbar/General/components/MenuMore/components/Viewcube/index.d.ts +5 -1
- package/distribution/components/utilities/Toolbar/General/components/MenuMore/index.d.ts +5 -1
- package/distribution/components/utilities/Toolbar/General/components/MenuUniverses/index.d.ts +5 -1
- package/distribution/components/utilities/Toolbar/General/components/ToolbarRotate/index.d.ts +9 -1
- package/distribution/components/utilities/Toolbar/General/components/ToolbarScale/index.d.ts +9 -1
- package/distribution/components/utilities/Toolbar/General/components/ToolbarTranslate/index.d.ts +9 -1
- package/distribution/components/utilities/Toolbar/General/components/TransformArrow/index.d.ts +9 -1
- package/distribution/components/utilities/Toolbar/General/index.d.ts +5 -1
- package/distribution/components/utilities/UniverseExplorer/index.d.ts +5 -1
- package/distribution/components/utilities/Viewcube/components/ViewcubeFace/index.d.ts +12 -1
- package/distribution/components/utilities/Viewcube/components/ViewcubeModel/index.d.ts +6 -1
- package/distribution/components/utilities/Viewcube/components/ViewcubeTransformAreas/index.d.ts +5 -1
- package/distribution/components/utilities/Viewcube/index.d.ts +5 -1
- package/distribution/components/virtuals/List/index.d.ts +7 -1
- package/distribution/containers/Application/View/index.d.ts +25 -2
- package/distribution/containers/Application/index.d.ts +2 -2
- package/distribution/containers/Provider/index.d.ts +1 -1
- package/distribution/containers/RouterBrowser/index.d.ts +2 -2
- package/distribution/containers/RouterStatic/index.d.ts +2 -2
- package/distribution/index.d.ts +100 -16
- package/distribution/index.es.js +34 -36
- package/distribution/index.es.js.map +1 -1
- package/distribution/index.js +321 -345
- package/distribution/index.js.map +1 -1
- package/distribution/index.min.js +5890 -150
- package/distribution/index.min.js.map +1 -1
- package/distribution/services/logic/router/index.d.ts +3 -3
- package/distribution/services/logic/shortcuts/index.d.ts +102 -3
- package/distribution/services/state/actions/index.d.ts +14 -8
- package/distribution/services/state/modules/configuration/index.d.ts +15 -3
- package/distribution/services/state/modules/general/index.d.ts +1 -1
- package/distribution/services/state/modules/shortcuts/index.d.ts +1 -1
- package/distribution/services/state/modules/space/index.d.ts +1 -1
- package/distribution/services/state/modules/themes/index.d.ts +1 -1
- package/distribution/services/state/modules/ui/index.d.ts +1 -1
- package/package.json +38 -36
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
+
import { AnyAction } from '@reduxjs/toolkit';
|
|
2
3
|
import { Theme } from '@plurid/plurid-themes';
|
|
3
4
|
import {
|
|
4
5
|
/** interfaces */
|
|
@@ -17,5 +18,8 @@ export interface PluridToolbarDispatchProperties {
|
|
|
17
18
|
dispatchSetConfigurationSpaceTransformMode: DispatchAction<typeof actions.configuration.setConfigurationSpaceTransformMode>;
|
|
18
19
|
}
|
|
19
20
|
export declare type PluridToolbarProperties = PluridToolbarOwnProperties & PluridToolbarStateProperties & PluridToolbarDispatchProperties;
|
|
20
|
-
declare const ConnectedPluridToolbar: import("react-redux").ConnectedComponent<React.FC<PluridToolbarProperties>,
|
|
21
|
+
declare const ConnectedPluridToolbar: import("react-redux").ConnectedComponent<React.FC<PluridToolbarProperties>, {
|
|
22
|
+
context?: React.Context<import("react-redux").ReactReduxContextValue<any, AnyAction>> | undefined;
|
|
23
|
+
store?: import("@reduxjs/toolkit").Store<any, AnyAction> | undefined;
|
|
24
|
+
}>;
|
|
21
25
|
export default ConnectedPluridToolbar;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
+
import { AnyAction } from '@reduxjs/toolkit';
|
|
2
3
|
import { Theme } from '@plurid/plurid-themes';
|
|
3
4
|
import {
|
|
4
5
|
/** interfaces */
|
|
@@ -12,5 +13,8 @@ export interface PluridUniverseExplorerStateProperties {
|
|
|
12
13
|
export interface PluridUniverseExplorerDispatchProperties {
|
|
13
14
|
}
|
|
14
15
|
export declare type PluridUniverseExplorerProperties = PluridUniverseExplorerOwnProperties & PluridUniverseExplorerStateProperties & PluridUniverseExplorerDispatchProperties;
|
|
15
|
-
declare const ConnectedPluridUniverseExplorer: import("react-redux").ConnectedComponent<React.FC<PluridUniverseExplorerProperties>,
|
|
16
|
+
declare const ConnectedPluridUniverseExplorer: import("react-redux").ConnectedComponent<React.FC<PluridUniverseExplorerProperties>, {
|
|
17
|
+
context?: React.Context<import("react-redux").ReactReduxContextValue<any, AnyAction>> | undefined;
|
|
18
|
+
store?: import("@reduxjs/toolkit").Store<any, AnyAction> | undefined;
|
|
19
|
+
}>;
|
|
16
20
|
export default ConnectedPluridUniverseExplorer;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
+
import { AnyAction } from '@reduxjs/toolkit';
|
|
2
3
|
import { Theme } from '@plurid/plurid-themes';
|
|
3
4
|
import { PluridConfiguration } from '@plurid/plurid-data';
|
|
4
5
|
import actions from "../../../../../services/state/actions";
|
|
@@ -23,5 +24,15 @@ export interface PluridViewcubeFaceDispatchProperties {
|
|
|
23
24
|
dispatchSetAnimatedTransform: DispatchAction<typeof actions.space.setAnimatedTransform>;
|
|
24
25
|
}
|
|
25
26
|
export declare type PluridViewcubeFaceProperties = PluridViewcubeFaceOwnProperties & PluridViewcubeFaceStateProperties & PluridViewcubeFaceDispatchProperties;
|
|
26
|
-
declare const ConnectedPluridViewcubeFace: import("react-redux").ConnectedComponent<React.FC<PluridViewcubeFaceProperties>,
|
|
27
|
+
declare const ConnectedPluridViewcubeFace: import("react-redux").ConnectedComponent<React.FC<PluridViewcubeFaceProperties>, {
|
|
28
|
+
mouseOver: boolean;
|
|
29
|
+
face: string;
|
|
30
|
+
faceText: string;
|
|
31
|
+
hoveredZone: string;
|
|
32
|
+
setHoveredZone: React.Dispatch<React.SetStateAction<string>>;
|
|
33
|
+
activeZone: string;
|
|
34
|
+
setActiveZone: React.Dispatch<React.SetStateAction<string>>;
|
|
35
|
+
context?: React.Context<import("react-redux").ReactReduxContextValue<any, AnyAction>> | undefined;
|
|
36
|
+
store?: import("@reduxjs/toolkit").Store<any, AnyAction> | undefined;
|
|
37
|
+
}>;
|
|
27
38
|
export default ConnectedPluridViewcubeFace;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
+
import { AnyAction } from '@reduxjs/toolkit';
|
|
2
3
|
import { InternationalizationLanguageType } from '@plurid/plurid-data';
|
|
3
4
|
export interface PluridViewcubeModelOwnProperties {
|
|
4
5
|
mouseOver: boolean;
|
|
@@ -13,5 +14,9 @@ export interface PluridViewcubeModelStateProperties {
|
|
|
13
14
|
export interface PluridViewcubeModelDispatchProperties {
|
|
14
15
|
}
|
|
15
16
|
export declare type PluridViewcubeModelProperties = PluridViewcubeModelOwnProperties & PluridViewcubeModelStateProperties & PluridViewcubeModelDispatchProperties;
|
|
16
|
-
declare const ConnectedPluridViewcubeModel: import("react-redux").ConnectedComponent<React.FC<PluridViewcubeModelProperties>,
|
|
17
|
+
declare const ConnectedPluridViewcubeModel: import("react-redux").ConnectedComponent<React.FC<PluridViewcubeModelProperties>, {
|
|
18
|
+
mouseOver: boolean;
|
|
19
|
+
context?: React.Context<import("react-redux").ReactReduxContextValue<any, AnyAction>> | undefined;
|
|
20
|
+
store?: import("@reduxjs/toolkit").Store<any, AnyAction> | undefined;
|
|
21
|
+
}>;
|
|
17
22
|
export default ConnectedPluridViewcubeModel;
|
package/distribution/components/utilities/Viewcube/components/ViewcubeTransformAreas/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
+
import { AnyAction } from '@reduxjs/toolkit';
|
|
2
3
|
import { Theme } from '@plurid/plurid-themes';
|
|
3
4
|
export interface ViewcubeTransformAreasOwnProperties {
|
|
4
5
|
}
|
|
@@ -9,5 +10,8 @@ export interface ViewcubeTransformAreasStateProperties {
|
|
|
9
10
|
export interface ViewcubeTransformAreasDispatchProperties {
|
|
10
11
|
}
|
|
11
12
|
export declare type ViewcubeTransformAreasProperties = ViewcubeTransformAreasOwnProperties & ViewcubeTransformAreasStateProperties & ViewcubeTransformAreasDispatchProperties;
|
|
12
|
-
declare const ConnectedViewcubeTransformAreas: import("react-redux").ConnectedComponent<React.FC<ViewcubeTransformAreasProperties>,
|
|
13
|
+
declare const ConnectedViewcubeTransformAreas: import("react-redux").ConnectedComponent<React.FC<ViewcubeTransformAreasProperties>, {
|
|
14
|
+
context?: React.Context<import("react-redux").ReactReduxContextValue<any, AnyAction>> | undefined;
|
|
15
|
+
store?: import("@reduxjs/toolkit").Store<any, AnyAction> | undefined;
|
|
16
|
+
}>;
|
|
13
17
|
export default ConnectedViewcubeTransformAreas;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
+
import { AnyAction } from '@reduxjs/toolkit';
|
|
2
3
|
import { Theme } from '@plurid/plurid-themes';
|
|
3
4
|
import {
|
|
4
5
|
/** interfaces */
|
|
@@ -19,5 +20,8 @@ export interface PluridViewcubeDispatchProperties {
|
|
|
19
20
|
dispatchSpaceResetTransform: DispatchActionWithoutPayload<typeof actions.space.spaceResetTransform>;
|
|
20
21
|
}
|
|
21
22
|
export declare type PluridViewcubeProperties = PluridViewcubeOwnProperties & PluridViewcubeStateProperties & PluridViewcubeDispatchProperties;
|
|
22
|
-
declare const ConnectedPluridViewcube: import("react-redux").ConnectedComponent<React.FC<PluridViewcubeProperties>,
|
|
23
|
+
declare const ConnectedPluridViewcube: import("react-redux").ConnectedComponent<React.FC<PluridViewcubeProperties>, {
|
|
24
|
+
context?: React.Context<import("react-redux").ReactReduxContextValue<any, AnyAction>> | undefined;
|
|
25
|
+
store?: import("@reduxjs/toolkit").Store<any, AnyAction> | undefined;
|
|
26
|
+
}>;
|
|
23
27
|
export default ConnectedPluridViewcube;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
+
import { AnyAction } from '@reduxjs/toolkit';
|
|
2
3
|
import { ViewSize } from "../../../services/state/modules/space/types";
|
|
3
4
|
export interface PluridVirtualListOwnProperties {
|
|
4
5
|
items: JSX.Element[];
|
|
@@ -11,5 +12,10 @@ export interface PluridVirtualListStateProperties {
|
|
|
11
12
|
export interface PluridVirtualListDispatchProperties {
|
|
12
13
|
}
|
|
13
14
|
export declare type PluridVirtualListProperties = PluridVirtualListOwnProperties & PluridVirtualListStateProperties & PluridVirtualListDispatchProperties;
|
|
14
|
-
declare const ConnectedPluridVirtualList: import("react-redux").ConnectedComponent<React.FC<PluridVirtualListProperties>,
|
|
15
|
+
declare const ConnectedPluridVirtualList: import("react-redux").ConnectedComponent<React.FC<PluridVirtualListProperties>, {
|
|
16
|
+
items: JSX.Element[];
|
|
17
|
+
generalHeight?: number | undefined;
|
|
18
|
+
context?: React.Context<import("react-redux").ReactReduxContextValue<any, AnyAction>> | undefined;
|
|
19
|
+
store?: import("@reduxjs/toolkit").Store<any, AnyAction> | undefined;
|
|
20
|
+
}>;
|
|
15
21
|
export default ConnectedPluridVirtualList;
|
|
@@ -3,7 +3,7 @@ import { AnyAction, ThunkDispatch } from '@reduxjs/toolkit';
|
|
|
3
3
|
import { Theme } from '@plurid/plurid-themes';
|
|
4
4
|
import {
|
|
5
5
|
/** interfaces */
|
|
6
|
-
PluridApplication as PluridApplicationProperties, PluridConfiguration as PluridAppConfiguration, TreePlane, SpaceTransform, PluridApplicationView } from '@plurid/plurid-data';
|
|
6
|
+
PluridApplication as PluridApplicationProperties, PluridConfiguration as PluridAppConfiguration, TreePlane, SpaceTransform, PluridPubSub as IPluridPubSub, PluridApplicationView } from '@plurid/plurid-data';
|
|
7
7
|
import { PluridReactComponent } from "../../../data/interfaces";
|
|
8
8
|
import { AppState } from "../../../services/state/store";
|
|
9
9
|
import actions from "../../../services/state/actions";
|
|
@@ -45,5 +45,28 @@ export interface PluridViewDispatchProperties {
|
|
|
45
45
|
dispatchSpaceSetView: DispatchAction<typeof actions.space.spaceSetView>;
|
|
46
46
|
}
|
|
47
47
|
export declare type PluridViewProperties = PluridViewOwnProperties & PluridViewStateProperties & PluridViewDispatchProperties;
|
|
48
|
-
declare const ConnectedPluridView: import("react-redux").ConnectedComponent<React.FC<PluridViewProperties>,
|
|
48
|
+
declare const ConnectedPluridView: import("react-redux").ConnectedComponent<React.FC<PluridViewProperties>, {
|
|
49
|
+
configuration?: import("@plurid/plurid-data").RecursivePartial<PluridAppConfiguration> | undefined;
|
|
50
|
+
space?: string | undefined;
|
|
51
|
+
view: PluridApplicationView;
|
|
52
|
+
id?: string | undefined;
|
|
53
|
+
hostname?: string | undefined;
|
|
54
|
+
planeRenderError?: boolean | PluridReactComponent<any, import("@plurid/plurid-data").PluridPlaneComponentProperty | import("@plurid/plurid-data").PluridRouteComponentProperty> | undefined;
|
|
55
|
+
planesRegistrar?: import("@plurid/plurid-data").PluridPlanesRegistrar<PluridReactComponent<any, import("@plurid/plurid-data").PluridPlaneComponentProperty | import("@plurid/plurid-data").PluridRouteComponentProperty>> | undefined;
|
|
56
|
+
planeContext?: any;
|
|
57
|
+
planeContextValue?: Record<string, any> | undefined;
|
|
58
|
+
customPlane?: PluridReactComponent<any, import("@plurid/plurid-data").PluridPlaneComponentProperty | import("@plurid/plurid-data").PluridRouteComponentProperty> | undefined;
|
|
59
|
+
matchedRoute?: import("@plurid/plurid-data").IsoMatcherRouteResult<PluridReactComponent<any, import("@plurid/plurid-data").PluridPlaneComponentProperty | import("@plurid/plurid-data").PluridRouteComponentProperty>> | undefined;
|
|
60
|
+
planesProperties?: Map<string, any> | undefined;
|
|
61
|
+
planes?: import("@plurid/plurid-data").PluridPlane<PluridReactComponent<any, import("@plurid/plurid-data").PluridPlaneComponentProperty | import("@plurid/plurid-data").PluridRouteComponentProperty>>[] | undefined;
|
|
62
|
+
centerView?: string | undefined;
|
|
63
|
+
universes?: import("@plurid/plurid-data").PluridUniverse<PluridReactComponent<any, import("@plurid/plurid-data").PluridPlaneComponentProperty | import("@plurid/plurid-data").PluridRouteComponentProperty>>[] | undefined;
|
|
64
|
+
planeNotFound?: boolean | PluridReactComponent<any, import("@plurid/plurid-data").PluridPlaneComponentProperty | import("@plurid/plurid-data").PluridRouteComponentProperty> | undefined;
|
|
65
|
+
pubsub?: IPluridPubSub | undefined;
|
|
66
|
+
static?: boolean | undefined;
|
|
67
|
+
precomputedState?: Partial<import("@plurid/plurid-data").PluridState> | undefined;
|
|
68
|
+
useLocalStorage?: boolean | undefined;
|
|
69
|
+
context?: React.Context<import("react-redux").ReactReduxContextValue<any, AnyAction>> | undefined;
|
|
70
|
+
store?: import("@reduxjs/toolkit").Store<any, AnyAction> | undefined;
|
|
71
|
+
}>;
|
|
49
72
|
export default ConnectedPluridView;
|
|
@@ -2,7 +2,7 @@ import React, { Component } from 'react';
|
|
|
2
2
|
import { PluridApplication as PluridApplicationProperties } from '@plurid/plurid-data';
|
|
3
3
|
import { PluridReactComponent } from "../../data/interfaces";
|
|
4
4
|
import PluridProviderContext from "../Provider/context";
|
|
5
|
-
declare class PluridApplication extends Component<PluridApplicationProperties<PluridReactComponent>,
|
|
5
|
+
declare class PluridApplication extends Component<PluridApplicationProperties<PluridReactComponent>, any | undefined> {
|
|
6
6
|
static contextType: React.Context<import("@plurid/plurid-data").PluridMetastate | undefined>;
|
|
7
7
|
context: React.ContextType<typeof PluridProviderContext>;
|
|
8
8
|
private store;
|
|
@@ -12,7 +12,7 @@ declare class PluridApplication extends Component<PluridApplicationProperties<Pl
|
|
|
12
12
|
constructor(properties: PluridApplicationProperties<PluridReactComponent>, context: React.ContextType<typeof PluridProviderContext>);
|
|
13
13
|
componentDidUpdate(): void;
|
|
14
14
|
componentWillUnmount(): void;
|
|
15
|
-
render(): JSX.Element;
|
|
15
|
+
render(): React.JSX.Element;
|
|
16
16
|
private prepare;
|
|
17
17
|
private computeStore;
|
|
18
18
|
private subscribeStore;
|
|
@@ -7,6 +7,6 @@ declare class PluridProvider extends Component<React.PropsWithChildren<PluridPro
|
|
|
7
7
|
static displayName: string;
|
|
8
8
|
private properties;
|
|
9
9
|
constructor(properties: React.PropsWithChildren<PluridProviderProperties>);
|
|
10
|
-
render(): JSX.Element;
|
|
10
|
+
render(): React.JSX.Element;
|
|
11
11
|
}
|
|
12
12
|
export default PluridProvider;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
2
|
import {
|
|
3
3
|
/** interfaces */
|
|
4
4
|
PluridRouterProperties as PluridRouterBrowserOwnProperties } from '@plurid/plurid-data';
|
|
5
5
|
import { PluridReactComponent } from "../../data/interfaces";
|
|
6
|
-
declare const PluridRouterBrowser: (properties: PluridRouterBrowserOwnProperties<PluridReactComponent>) => JSX.Element;
|
|
6
|
+
declare const PluridRouterBrowser: (properties: PluridRouterBrowserOwnProperties<PluridReactComponent>) => React.JSX.Element;
|
|
7
7
|
export default PluridRouterBrowser;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
2
|
import { PluridRoute, PluridRoutePlane, PluridRouterProperties } from '@plurid/plurid-data';
|
|
3
3
|
import { PluridReactComponent } from "../../data/interfaces";
|
|
4
4
|
export interface PluridRouterStaticOwnProperties {
|
|
@@ -15,5 +15,5 @@ export interface PluridRouterStaticOwnProperties {
|
|
|
15
15
|
gatewayEndpoint?: string;
|
|
16
16
|
routerProperties?: Partial<PluridRouterProperties<PluridReactComponent>>;
|
|
17
17
|
}
|
|
18
|
-
declare const PluridRouterStatic: (properties: PluridRouterStaticOwnProperties) => JSX.Element;
|
|
18
|
+
declare const PluridRouterStatic: (properties: PluridRouterStaticOwnProperties) => React.JSX.Element;
|
|
19
19
|
export default PluridRouterStatic;
|
package/distribution/index.d.ts
CHANGED
|
@@ -21,27 +21,90 @@ import { getDirectPlaneMatch } from './services/logic/router';
|
|
|
21
21
|
import { usePluridRouter } from './services/hooks';
|
|
22
22
|
declare const PluridIsoMatcher: typeof routing.IsoMatcher, PluridRouteParser: typeof routing.RouteParser;
|
|
23
23
|
declare const internals: {
|
|
24
|
-
PluridPlaneBridge: import("react-redux").ConnectedComponent<import("react").FC<import("./components/structural/Plane/components/PlaneBridge").PluridPlaneBridgeProperties>,
|
|
24
|
+
PluridPlaneBridge: import("react-redux").ConnectedComponent<import("react").FC<import("./components/structural/Plane/components/PlaneBridge").PluridPlaneBridgeProperties>, {
|
|
25
|
+
mouseOver: boolean;
|
|
26
|
+
context?: import("react").Context<import("react-redux").ReactReduxContextValue<any, import("@reduxjs/toolkit").AnyAction>> | undefined;
|
|
27
|
+
store?: import("@reduxjs/toolkit").Store<any, import("@reduxjs/toolkit").AnyAction> | undefined;
|
|
28
|
+
}>;
|
|
25
29
|
PluridPlaneContent: import("react").FC<import("./components/structural/Plane/components/PlaneContent").PluridPlaneContentOwnProperties>;
|
|
26
|
-
PluridPlaneControls: import("react-redux").ConnectedComponent<import("react").FC<import("./components/structural/Plane/components/PlaneControls").PluridPlaneControlsProperties>,
|
|
27
|
-
|
|
28
|
-
|
|
30
|
+
PluridPlaneControls: import("react-redux").ConnectedComponent<import("react").FC<import("./components/structural/Plane/components/PlaneControls").PluridPlaneControlsProperties>, {
|
|
31
|
+
isolatePlane: () => void;
|
|
32
|
+
plane: import("@plurid/plurid-data").RegisteredPluridPlane<PluridReactComponent<any, PluridPlaneComponentProperty | PluridRouteComponentProperty>>;
|
|
33
|
+
mouseOver: boolean;
|
|
34
|
+
refreshing: boolean;
|
|
35
|
+
refreshPlane: () => void;
|
|
36
|
+
treePlane: import("@plurid/plurid-data").TreePlane;
|
|
37
|
+
parentTreePlane: import("@plurid/plurid-data").TreePlane | undefined;
|
|
38
|
+
closePlane: () => void;
|
|
39
|
+
context?: import("react").Context<import("react-redux").ReactReduxContextValue<any, import("@reduxjs/toolkit").AnyAction>> | undefined;
|
|
40
|
+
store?: import("@reduxjs/toolkit").Store<any, import("@reduxjs/toolkit").AnyAction> | undefined;
|
|
41
|
+
}>;
|
|
42
|
+
PluridPlaneDebugger: import("react-redux").ConnectedComponent<import("react").FC<import("./components/structural/Plane/components/PlaneDebugger").PluridPlaneDebuggerOwnProperties & import("./components/structural/Plane/components/PlaneDebugger").PluridPlaneDebuggerStateProperties & import("./components/structural/Plane/components/PlaneDebugger").PluridPlaneDebuggerDispatchProperties>, {
|
|
43
|
+
context?: import("react").Context<import("react-redux").ReactReduxContextValue<any, import("@reduxjs/toolkit").AnyAction>> | undefined;
|
|
44
|
+
store?: import("@reduxjs/toolkit").Store<any, import("@reduxjs/toolkit").AnyAction> | undefined;
|
|
45
|
+
}>;
|
|
46
|
+
PluridSpaceDebugger: import("react-redux").ConnectedComponent<import("react").FC<import("./components/structural/Space/components/SpaceDebugger").PluridSpaceDebuggerProperties>, {
|
|
47
|
+
context?: import("react").Context<import("react-redux").ReactReduxContextValue<any, import("@reduxjs/toolkit").AnyAction>> | undefined;
|
|
48
|
+
store?: import("@reduxjs/toolkit").Store<any, import("@reduxjs/toolkit").AnyAction> | undefined;
|
|
49
|
+
}>;
|
|
29
50
|
};
|
|
30
51
|
/**
|
|
31
52
|
* Components and utilities.
|
|
32
53
|
*/
|
|
33
54
|
declare const Plurid: {
|
|
34
55
|
Application: typeof PluridApplication;
|
|
35
|
-
RouterStatic: (properties: import("./containers/RouterStatic").PluridRouterStaticOwnProperties) => JSX.Element;
|
|
36
|
-
RouterBrowser: (properties: PluridRouterProperties<PluridReactComponent<any, PluridPlaneComponentProperty | PluridRouteComponentProperty>>) => JSX.Element;
|
|
56
|
+
RouterStatic: (properties: import("./containers/RouterStatic").PluridRouterStaticOwnProperties) => import("react").JSX.Element;
|
|
57
|
+
RouterBrowser: (properties: PluridRouterProperties<PluridReactComponent<any, PluridPlaneComponentProperty | PluridRouteComponentProperty>>) => import("react").JSX.Element;
|
|
37
58
|
Provider: typeof PluridProvider;
|
|
38
|
-
Link: import("react-redux").ConnectedComponent<import("react").FC<import("react").PropsWithChildren<import("./components/links/Link").PluridLinkProperties>>,
|
|
59
|
+
Link: import("react-redux").ConnectedComponent<import("react").FC<import("react").PropsWithChildren<import("./components/links/Link").PluridLinkProperties>>, {
|
|
60
|
+
route: string;
|
|
61
|
+
children?: import("react").ReactNode;
|
|
62
|
+
style?: import("react").CSSProperties | undefined;
|
|
63
|
+
suffix?: string | undefined;
|
|
64
|
+
preview?: boolean | undefined;
|
|
65
|
+
className?: string | undefined;
|
|
66
|
+
atClick?: ((event?: MouseEvent | import("react").MouseEvent<Element, MouseEvent> | undefined) => void) | undefined;
|
|
67
|
+
previewOffsetX?: number | undefined;
|
|
68
|
+
previewOffsetY?: number | undefined;
|
|
69
|
+
previewComponent?: PluridReactComponent<any, PluridPlaneComponentProperty | PluridRouteComponentProperty> | undefined;
|
|
70
|
+
devisible?: boolean | undefined;
|
|
71
|
+
notFound?: boolean | PluridReactComponent<any, PluridPlaneComponentProperty | PluridRouteComponentProperty> | undefined;
|
|
72
|
+
previewFadeIn?: number | undefined;
|
|
73
|
+
previewFadeOut?: number | undefined;
|
|
74
|
+
context?: import("react").Context<import("react-redux").ReactReduxContextValue<any, import("@reduxjs/toolkit").AnyAction>> | undefined;
|
|
75
|
+
store?: import("@reduxjs/toolkit").Store<any, import("@reduxjs/toolkit").AnyAction> | undefined;
|
|
76
|
+
}>;
|
|
39
77
|
RouterLink: import("react").FC<import("./components/links/RouterLink").PluridRouterLinkOwnProperties>;
|
|
40
|
-
ApplicationConfigurator: import("react-redux").ConnectedComponent<import("react").FC<import("react").PropsWithChildren<import("./components/utilities/ApplicationConfigurator").PluridApplicationConfiguratorProperties>>,
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
78
|
+
ApplicationConfigurator: import("react-redux").ConnectedComponent<import("react").FC<import("react").PropsWithChildren<import("./components/utilities/ApplicationConfigurator").PluridApplicationConfiguratorProperties>>, {
|
|
79
|
+
configuration?: RecursivePartial<PluridConfiguration> | undefined;
|
|
80
|
+
children?: import("react").ReactNode;
|
|
81
|
+
pubsub?: PluridPubSub | undefined;
|
|
82
|
+
context?: import("react").Context<import("react-redux").ReactReduxContextValue<any, import("@reduxjs/toolkit").AnyAction>> | undefined;
|
|
83
|
+
store?: import("@reduxjs/toolkit").Store<any, import("@reduxjs/toolkit").AnyAction> | undefined;
|
|
84
|
+
}>;
|
|
85
|
+
PlaneConfigurator: import("react-redux").ConnectedComponent<import("react").FC<import("react").PropsWithChildren<import("./components/utilities/PlaneConfigurator").PluridPlaneConfiguratorProperties>>, {
|
|
86
|
+
children?: import("react").ReactNode;
|
|
87
|
+
theme: "night" | "dusk" | "dawn" | "light" | "ponton" | "jaune" | "furor" | "deback" | "decode" | "defile" | "deform" | "delook" | "deloss" | "demail" | "demand" | "denote" | "depack" | "depict" | "deself" | "desite" | "detime" | "detour" | "detune" | "deturn" | "deveil" | "devert" | "deview" | "dewiki" | "plurid";
|
|
88
|
+
style: import("react").CSSProperties;
|
|
89
|
+
context?: import("react").Context<import("react-redux").ReactReduxContextValue<any, import("@reduxjs/toolkit").AnyAction>> | undefined;
|
|
90
|
+
store?: import("@reduxjs/toolkit").Store<any, import("@reduxjs/toolkit").AnyAction> | undefined;
|
|
91
|
+
}>;
|
|
92
|
+
ExternalPlane: import("react-redux").ConnectedComponent<import("./data/interfaces").PluridReactFunctionalComponent<import("./components/planes/ExternalPlane").ExternalPlaneProperties, PluridRouteComponentProperty>, {
|
|
93
|
+
plurid: PluridRouteComponentProperty;
|
|
94
|
+
context?: import("react").Context<import("react-redux").ReactReduxContextValue<any, import("@reduxjs/toolkit").AnyAction>> | undefined;
|
|
95
|
+
store?: import("@reduxjs/toolkit").Store<any, import("@reduxjs/toolkit").AnyAction> | undefined;
|
|
96
|
+
}>;
|
|
97
|
+
IframePlane: import("react-redux").ConnectedComponent<import("./data/interfaces").PluridReactFunctionalComponent<import("./components/planes/IframePlane").IframePlaneProperties, PluridRouteComponentProperty>, {
|
|
98
|
+
plurid: PluridRouteComponentProperty;
|
|
99
|
+
context?: import("react").Context<import("react-redux").ReactReduxContextValue<any, import("@reduxjs/toolkit").AnyAction>> | undefined;
|
|
100
|
+
store?: import("@reduxjs/toolkit").Store<any, import("@reduxjs/toolkit").AnyAction> | undefined;
|
|
101
|
+
}>;
|
|
102
|
+
VirtualList: import("react-redux").ConnectedComponent<import("react").FC<import("./components/virtuals/List").PluridVirtualListProperties>, {
|
|
103
|
+
items: JSX.Element[];
|
|
104
|
+
generalHeight?: number | undefined;
|
|
105
|
+
context?: import("react").Context<import("react-redux").ReactReduxContextValue<any, import("@reduxjs/toolkit").AnyAction>> | undefined;
|
|
106
|
+
store?: import("@reduxjs/toolkit").Store<any, import("@reduxjs/toolkit").AnyAction> | undefined;
|
|
107
|
+
}>;
|
|
45
108
|
/** Enumerations */
|
|
46
109
|
SPACE_LAYOUT: typeof SPACE_LAYOUT;
|
|
47
110
|
SIZES: typeof SIZES;
|
|
@@ -92,11 +155,32 @@ declare const Plurid: {
|
|
|
92
155
|
IsoMatcher: typeof routing.IsoMatcher;
|
|
93
156
|
routerNavigate: (path: string) => void;
|
|
94
157
|
internals: {
|
|
95
|
-
PluridPlaneBridge: import("react-redux").ConnectedComponent<import("react").FC<import("./components/structural/Plane/components/PlaneBridge").PluridPlaneBridgeProperties>,
|
|
158
|
+
PluridPlaneBridge: import("react-redux").ConnectedComponent<import("react").FC<import("./components/structural/Plane/components/PlaneBridge").PluridPlaneBridgeProperties>, {
|
|
159
|
+
mouseOver: boolean;
|
|
160
|
+
context?: import("react").Context<import("react-redux").ReactReduxContextValue<any, import("@reduxjs/toolkit").AnyAction>> | undefined;
|
|
161
|
+
store?: import("@reduxjs/toolkit").Store<any, import("@reduxjs/toolkit").AnyAction> | undefined;
|
|
162
|
+
}>;
|
|
96
163
|
PluridPlaneContent: import("react").FC<import("./components/structural/Plane/components/PlaneContent").PluridPlaneContentOwnProperties>;
|
|
97
|
-
PluridPlaneControls: import("react-redux").ConnectedComponent<import("react").FC<import("./components/structural/Plane/components/PlaneControls").PluridPlaneControlsProperties>,
|
|
98
|
-
|
|
99
|
-
|
|
164
|
+
PluridPlaneControls: import("react-redux").ConnectedComponent<import("react").FC<import("./components/structural/Plane/components/PlaneControls").PluridPlaneControlsProperties>, {
|
|
165
|
+
isolatePlane: () => void;
|
|
166
|
+
plane: import("@plurid/plurid-data").RegisteredPluridPlane<PluridReactComponent<any, PluridPlaneComponentProperty | PluridRouteComponentProperty>>;
|
|
167
|
+
mouseOver: boolean;
|
|
168
|
+
refreshing: boolean;
|
|
169
|
+
refreshPlane: () => void;
|
|
170
|
+
treePlane: import("@plurid/plurid-data").TreePlane;
|
|
171
|
+
parentTreePlane: import("@plurid/plurid-data").TreePlane | undefined;
|
|
172
|
+
closePlane: () => void;
|
|
173
|
+
context?: import("react").Context<import("react-redux").ReactReduxContextValue<any, import("@reduxjs/toolkit").AnyAction>> | undefined;
|
|
174
|
+
store?: import("@reduxjs/toolkit").Store<any, import("@reduxjs/toolkit").AnyAction> | undefined;
|
|
175
|
+
}>;
|
|
176
|
+
PluridPlaneDebugger: import("react-redux").ConnectedComponent<import("react").FC<import("./components/structural/Plane/components/PlaneDebugger").PluridPlaneDebuggerOwnProperties & import("./components/structural/Plane/components/PlaneDebugger").PluridPlaneDebuggerStateProperties & import("./components/structural/Plane/components/PlaneDebugger").PluridPlaneDebuggerDispatchProperties>, {
|
|
177
|
+
context?: import("react").Context<import("react-redux").ReactReduxContextValue<any, import("@reduxjs/toolkit").AnyAction>> | undefined;
|
|
178
|
+
store?: import("@reduxjs/toolkit").Store<any, import("@reduxjs/toolkit").AnyAction> | undefined;
|
|
179
|
+
}>;
|
|
180
|
+
PluridSpaceDebugger: import("react-redux").ConnectedComponent<import("react").FC<import("./components/structural/Space/components/SpaceDebugger").PluridSpaceDebuggerProperties>, {
|
|
181
|
+
context?: import("react").Context<import("react-redux").ReactReduxContextValue<any, import("@reduxjs/toolkit").AnyAction>> | undefined;
|
|
182
|
+
store?: import("@reduxjs/toolkit").Store<any, import("@reduxjs/toolkit").AnyAction> | undefined;
|
|
183
|
+
}>;
|
|
100
184
|
};
|
|
101
185
|
};
|
|
102
186
|
declare type PluridRouterPartialProperties = Partial<PluridRouterProperties<PluridReactComponent>>;
|
package/distribution/index.es.js
CHANGED
|
@@ -42,9 +42,7 @@ const configuration = createSlice({
|
|
|
42
42
|
name: "configuration",
|
|
43
43
|
initialState: initialState$5,
|
|
44
44
|
reducers: {
|
|
45
|
-
setConfiguration: (
|
|
46
|
-
state = Object.assign(Object.assign({}, state), action.payload);
|
|
47
|
-
},
|
|
45
|
+
setConfiguration: (_state, action) => Object.assign({}, action.payload),
|
|
48
46
|
setConfigurationMicro: state => {
|
|
49
47
|
state.elements.toolbar.show = false;
|
|
50
48
|
state.elements.plane.controls.show = false;
|
|
@@ -168,11 +166,11 @@ const reducer$6 = configuration.reducer;
|
|
|
168
166
|
|
|
169
167
|
var configuration$1 = Object.freeze({
|
|
170
168
|
__proto__: null,
|
|
171
|
-
configuration: configuration,
|
|
172
169
|
actions: actions$6,
|
|
170
|
+
configuration: configuration,
|
|
173
171
|
getConfiguration: getConfiguration,
|
|
174
|
-
|
|
175
|
-
|
|
172
|
+
reducer: reducer$6,
|
|
173
|
+
selectors: selectors$6
|
|
176
174
|
});
|
|
177
175
|
|
|
178
176
|
const initialState$4 = {};
|
|
@@ -195,11 +193,11 @@ const reducer$5 = general.reducer;
|
|
|
195
193
|
|
|
196
194
|
var general$1 = Object.freeze({
|
|
197
195
|
__proto__: null,
|
|
198
|
-
general: general,
|
|
199
196
|
actions: actions$5,
|
|
197
|
+
general: general,
|
|
200
198
|
getGeneral: getGeneral,
|
|
201
|
-
|
|
202
|
-
|
|
199
|
+
reducer: reducer$5,
|
|
200
|
+
selectors: selectors$5
|
|
203
201
|
});
|
|
204
202
|
|
|
205
203
|
const initialState$3 = {
|
|
@@ -228,11 +226,11 @@ const reducer$4 = shortcuts.reducer;
|
|
|
228
226
|
|
|
229
227
|
var shortcuts$1 = Object.freeze({
|
|
230
228
|
__proto__: null,
|
|
231
|
-
shortcuts: shortcuts,
|
|
232
229
|
actions: actions$4,
|
|
233
230
|
getGlobal: getGlobal,
|
|
231
|
+
reducer: reducer$4,
|
|
234
232
|
selectors: selectors$4,
|
|
235
|
-
|
|
233
|
+
shortcuts: shortcuts
|
|
236
234
|
});
|
|
237
235
|
|
|
238
236
|
const {registerPlanes: registerPlanes, getRegisteredPlanes: getRegisteredPlanes, getPlanesRegistrar: getPlanesRegistrar, getPluridPlaneIDByData: getPluridPlaneIDByData$1, getRegisteredPlane: getRegisteredPlane, resolvePluridRoutePlaneData: resolvePluridRoutePlaneData, resolvePluridPlaneData: resolvePluridPlaneData, Registrar: PluridPlanesRegistrar} = planes;
|
|
@@ -319,27 +317,27 @@ const getLastClosedPlane = state => state.space.lastClosedPlane;
|
|
|
319
317
|
|
|
320
318
|
var selectors$3 = Object.freeze({
|
|
321
319
|
__proto__: null,
|
|
322
|
-
|
|
320
|
+
getActivePlaneID: getActivePlaneID,
|
|
321
|
+
getActiveUniverseID: getActiveUniverseID,
|
|
322
|
+
getAnimatedTransform: getAnimatedTransform,
|
|
323
|
+
getCulledView: getCulledView,
|
|
324
|
+
getIsolatePlane: getIsolatePlane,
|
|
325
|
+
getLastClosedPlane: getLastClosedPlane,
|
|
323
326
|
getLoading: getLoading,
|
|
324
327
|
getResolvedLayout: getResolvedLayout,
|
|
325
|
-
getTransformMatrix: getTransformMatrix,
|
|
326
|
-
getAnimatedTransform: getAnimatedTransform,
|
|
327
|
-
getTransformTime: getTransformTime,
|
|
328
328
|
getRotationX: getRotationX,
|
|
329
329
|
getRotationY: getRotationY,
|
|
330
|
+
getScale: getScale,
|
|
331
|
+
getSpace: getSpace,
|
|
332
|
+
getTransform: getTransform,
|
|
333
|
+
getTransformMatrix: getTransformMatrix,
|
|
334
|
+
getTransformTime: getTransformTime,
|
|
330
335
|
getTranslationX: getTranslationX,
|
|
331
336
|
getTranslationY: getTranslationY,
|
|
332
337
|
getTranslationZ: getTranslationZ,
|
|
333
|
-
getScale: getScale,
|
|
334
338
|
getTree: getTree,
|
|
335
|
-
getTransform: getTransform,
|
|
336
|
-
getActiveUniverseID: getActiveUniverseID,
|
|
337
339
|
getView: getView,
|
|
338
|
-
getViewSize: getViewSize
|
|
339
|
-
getCulledView: getCulledView,
|
|
340
|
-
getActivePlaneID: getActivePlaneID,
|
|
341
|
-
getIsolatePlane: getIsolatePlane,
|
|
342
|
-
getLastClosedPlane: getLastClosedPlane
|
|
340
|
+
getViewSize: getViewSize
|
|
343
341
|
});
|
|
344
342
|
|
|
345
343
|
const {toRadians: toRadians} = mathematics.geometry;
|
|
@@ -616,11 +614,11 @@ const reducer$3 = space.reducer;
|
|
|
616
614
|
|
|
617
615
|
var space$1 = Object.freeze({
|
|
618
616
|
__proto__: null,
|
|
619
|
-
name: name,
|
|
620
|
-
space: space,
|
|
621
617
|
actions: actions$3,
|
|
618
|
+
name: name,
|
|
619
|
+
reducer: reducer$3,
|
|
622
620
|
selectors: selectors$3,
|
|
623
|
-
|
|
621
|
+
space: space
|
|
624
622
|
});
|
|
625
623
|
|
|
626
624
|
const initialState$1 = {
|
|
@@ -656,12 +654,12 @@ const reducer$2 = themes.reducer;
|
|
|
656
654
|
|
|
657
655
|
var themes$1 = Object.freeze({
|
|
658
656
|
__proto__: null,
|
|
659
|
-
themes: themes,
|
|
660
657
|
actions: actions$2,
|
|
661
658
|
getGeneralTheme: getGeneralTheme,
|
|
662
659
|
getInteractionTheme: getInteractionTheme,
|
|
660
|
+
reducer: reducer$2,
|
|
663
661
|
selectors: selectors$2,
|
|
664
|
-
|
|
662
|
+
themes: themes
|
|
665
663
|
});
|
|
666
664
|
|
|
667
665
|
const initialState = {
|
|
@@ -690,11 +688,11 @@ const reducer$1 = ui.reducer;
|
|
|
690
688
|
|
|
691
689
|
var ui$1 = Object.freeze({
|
|
692
690
|
__proto__: null,
|
|
693
|
-
ui: ui,
|
|
694
691
|
actions: actions$1,
|
|
695
692
|
getToolbarScrollPosition: getToolbarScrollPosition,
|
|
693
|
+
reducer: reducer$1,
|
|
696
694
|
selectors: selectors$1,
|
|
697
|
-
|
|
695
|
+
ui: ui
|
|
698
696
|
});
|
|
699
697
|
|
|
700
698
|
var modules = {
|
|
@@ -4350,7 +4348,7 @@ const PluridView = properties => {
|
|
|
4350
4348
|
dispatchSetTree(computedTree);
|
|
4351
4349
|
};
|
|
4352
4350
|
const treeUpdateCallback = useCallback((() => {
|
|
4353
|
-
treeUpdate(stateSpaceView, stateConfiguration);
|
|
4351
|
+
treeUpdate(stateSpaceView, stateConfiguration, true);
|
|
4354
4352
|
}), [ hostname, stateSpaceView, stateConfiguration, JSON.stringify(stateTree) ]);
|
|
4355
4353
|
const handlePubSubSubscribe = pubsub => {
|
|
4356
4354
|
const subscriptions = [ {
|
|
@@ -4454,14 +4452,14 @@ const PluridView = properties => {
|
|
|
4454
4452
|
const {plane: plane} = data;
|
|
4455
4453
|
const updatedView = [ ...stateSpaceView, plane ];
|
|
4456
4454
|
dispatchSpaceSetView(updatedView);
|
|
4457
|
-
treeUpdate(updatedView);
|
|
4455
|
+
treeUpdate(updatedView, undefined, true);
|
|
4458
4456
|
}
|
|
4459
4457
|
}, {
|
|
4460
4458
|
topic: PLURID_PUBSUB_TOPIC.VIEW_SET_PLANES,
|
|
4461
4459
|
callback: data => {
|
|
4462
4460
|
const {view: view} = data;
|
|
4463
4461
|
dispatchSpaceSetView([ ...view ]);
|
|
4464
|
-
treeUpdate(view);
|
|
4462
|
+
treeUpdate(view, undefined, true);
|
|
4465
4463
|
}
|
|
4466
4464
|
}, {
|
|
4467
4465
|
topic: PLURID_PUBSUB_TOPIC.VIEW_REMOVE_PLANE,
|
|
@@ -4761,7 +4759,7 @@ const PluridView = properties => {
|
|
|
4761
4759
|
return () => {
|
|
4762
4760
|
window.removeEventListener("resize", treeUpdateCallback);
|
|
4763
4761
|
};
|
|
4764
|
-
}), [ stateSpaceView, stateConfiguration, JSON.stringify(stateTree) ]);
|
|
4762
|
+
}), [ stateSpaceView, JSON.stringify(stateConfiguration), JSON.stringify(stateTree) ]);
|
|
4765
4763
|
useEffect((() => {
|
|
4766
4764
|
if (typeof window === "undefined") {
|
|
4767
4765
|
return;
|
|
@@ -4842,12 +4840,12 @@ const PluridView = properties => {
|
|
|
4842
4840
|
unsubscriber();
|
|
4843
4841
|
}
|
|
4844
4842
|
};
|
|
4845
|
-
}), [ state.space.lastClosedPlane, pluridPubSub.length, JSON.stringify(stateTree) ]);
|
|
4843
|
+
}), [ state.space.lastClosedPlane, pluridPubSub.length, JSON.stringify(stateTree), JSON.stringify(stateConfiguration) ]);
|
|
4846
4844
|
useEffect((() => {
|
|
4847
4845
|
for (const pubsub of pluridPubSub) {
|
|
4848
4846
|
handlePubSubPublish(pubsub);
|
|
4849
4847
|
}
|
|
4850
|
-
}), [ pluridPubSub.length, stateConfiguration, stateTransform ]);
|
|
4848
|
+
}), [ pluridPubSub.length, JSON.stringify(stateConfiguration), stateTransform ]);
|
|
4851
4849
|
useEffect((() => {
|
|
4852
4850
|
treeUpdateCallback();
|
|
4853
4851
|
}), []);
|