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;
|
|
@@ -5001,7 +5002,7 @@ declare module BABYLON.NodeRenderGraphEditor.SharedUIComponents {
|
|
|
5001
5002
|
* @param source document to copy styles from
|
|
5002
5003
|
* @param target document or shadow root to copy styles to
|
|
5003
5004
|
*/
|
|
5004
|
-
export function CopyStyles(source: Document, target:
|
|
5005
|
+
export function CopyStyles(source: Document, target: DocumentOrShadowRoot): void;
|
|
5005
5006
|
|
|
5006
5007
|
|
|
5007
5008
|
|
|
@@ -5685,6 +5686,7 @@ declare module BABYLON.NodeRenderGraphEditor.SharedUIComponents {
|
|
|
5685
5686
|
isElbowConnectionAllowed: (nodeA: BABYLON.NodeRenderGraphEditor.SharedUIComponents.FrameNodePort | BABYLON.NodeRenderGraphEditor.SharedUIComponents.NodePort, nodeB: BABYLON.NodeRenderGraphEditor.SharedUIComponents.FrameNodePort | BABYLON.NodeRenderGraphEditor.SharedUIComponents.NodePort) => boolean;
|
|
5686
5687
|
isDebugConnectionAllowed: (nodeA: BABYLON.NodeRenderGraphEditor.SharedUIComponents.FrameNodePort | BABYLON.NodeRenderGraphEditor.SharedUIComponents.NodePort, nodeB: BABYLON.NodeRenderGraphEditor.SharedUIComponents.FrameNodePort | BABYLON.NodeRenderGraphEditor.SharedUIComponents.NodePort) => boolean;
|
|
5687
5688
|
applyNodePortDesign: (data: BABYLON.NodeRenderGraphEditor.SharedUIComponents.IPortData, element: HTMLElement, img: HTMLImageElement, pip: HTMLDivElement) => void;
|
|
5689
|
+
getPortColor: (portData: BABYLON.NodeRenderGraphEditor.SharedUIComponents.IPortData) => string;
|
|
5688
5690
|
storeEditorData: (serializationObject: any, frame?: BABYLON.Nullable<BABYLON.NodeRenderGraphEditor.SharedUIComponents.GraphFrame>) => void;
|
|
5689
5691
|
getEditorDataMap: () => {
|
|
5690
5692
|
[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": "babylon.nodeRenderGraphEditor.js",
|
|
5
5
|
"types": "babylon.nodeRenderGraphEditor.module.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"clean": "rimraf dist && rimraf babylon*.*"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"babylonjs": "^7.37.
|
|
17
|
+
"babylonjs": "^7.37.2"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"@dev/build-tools": "1.0.0",
|