@babylonjs/node-render-graph-editor 7.26.0 → 7.26.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.
|
@@ -895,7 +895,7 @@ declare module "@babylonjs/node-render-graph-editor/styleHelper" {
|
|
|
895
895
|
* @param source document to copy styles from
|
|
896
896
|
* @param target document or shadow root to copy styles to
|
|
897
897
|
*/
|
|
898
|
-
export function CopyStyles(source: Document, target:
|
|
898
|
+
export function CopyStyles(source: Document, target: DocumentOrShadowRoot): void;
|
|
899
899
|
|
|
900
900
|
}
|
|
901
901
|
declare module "@babylonjs/node-render-graph-editor/stringTools" {
|
|
@@ -1531,6 +1531,7 @@ export class StateManager {
|
|
|
1531
1531
|
isElbowConnectionAllowed: (nodeA: FrameNodePort | NodePort, nodeB: FrameNodePort | NodePort) => boolean;
|
|
1532
1532
|
isDebugConnectionAllowed: (nodeA: FrameNodePort | NodePort, nodeB: FrameNodePort | NodePort) => boolean;
|
|
1533
1533
|
applyNodePortDesign: (data: IPortData, element: HTMLElement, img: HTMLImageElement, pip: HTMLDivElement) => void;
|
|
1534
|
+
getPortColor: (portData: IPortData) => string;
|
|
1534
1535
|
storeEditorData: (serializationObject: any, frame?: Nullable<GraphFrame>) => void;
|
|
1535
1536
|
getEditorDataMap: () => {
|
|
1536
1537
|
[key: number]: number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@babylonjs/node-render-graph-editor",
|
|
3
|
-
"version": "7.26.
|
|
3
|
+
"version": "7.26.2",
|
|
4
4
|
"main": "dist/babylon.nodeRenderGraphEditor.max.js",
|
|
5
5
|
"module": "dist/babylon.nodeRenderGraphEditor.max.js",
|
|
6
6
|
"esnext": "dist/babylon.nodeRenderGraphEditor.max.js",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"@types/react-dom": ">=16.0.9"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"@babylonjs/core": "^7.37.
|
|
26
|
+
"@babylonjs/core": "^7.37.2",
|
|
27
27
|
"react": "^17.0.2",
|
|
28
28
|
"react-dom": "^17.0.2"
|
|
29
29
|
},
|