babylonjs-node-render-graph-editor 7.43.1 → 7.43.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.
|
@@ -1566,7 +1566,7 @@ export class StateManager {
|
|
|
1566
1566
|
exportData: (data: any, frame?: Nullable<GraphFrame>) => string;
|
|
1567
1567
|
isElbowConnectionAllowed: (nodeA: FrameNodePort | NodePort, nodeB: FrameNodePort | NodePort) => boolean;
|
|
1568
1568
|
isDebugConnectionAllowed: (nodeA: FrameNodePort | NodePort, nodeB: FrameNodePort | NodePort) => boolean;
|
|
1569
|
-
applyNodePortDesign: (data: IPortData, element: HTMLElement, imgHost:
|
|
1569
|
+
applyNodePortDesign: (data: IPortData, element: HTMLElement, imgHost: HTMLImageElement, pip: HTMLDivElement) => boolean;
|
|
1570
1570
|
getPortColor: (portData: IPortData) => string;
|
|
1571
1571
|
storeEditorData: (serializationObject: any, frame?: Nullable<GraphFrame>) => void;
|
|
1572
1572
|
getEditorDataMap: () => {
|
|
@@ -1636,7 +1636,7 @@ export class NodePort {
|
|
|
1636
1636
|
node: GraphNode;
|
|
1637
1637
|
protected _element: HTMLDivElement;
|
|
1638
1638
|
protected _portContainer: HTMLElement;
|
|
1639
|
-
protected _imgHost:
|
|
1639
|
+
protected _imgHost: HTMLImageElement;
|
|
1640
1640
|
protected _pip: HTMLDivElement;
|
|
1641
1641
|
protected _stateManager: StateManager;
|
|
1642
1642
|
protected _portLabelElement: Element;
|
|
@@ -5785,7 +5785,7 @@ declare module BABYLON.NodeRenderGraphEditor.SharedUIComponents {
|
|
|
5785
5785
|
exportData: (data: any, frame?: BABYLON.Nullable<BABYLON.NodeRenderGraphEditor.SharedUIComponents.GraphFrame>) => string;
|
|
5786
5786
|
isElbowConnectionAllowed: (nodeA: BABYLON.NodeRenderGraphEditor.SharedUIComponents.FrameNodePort | BABYLON.NodeRenderGraphEditor.SharedUIComponents.NodePort, nodeB: BABYLON.NodeRenderGraphEditor.SharedUIComponents.FrameNodePort | BABYLON.NodeRenderGraphEditor.SharedUIComponents.NodePort) => boolean;
|
|
5787
5787
|
isDebugConnectionAllowed: (nodeA: BABYLON.NodeRenderGraphEditor.SharedUIComponents.FrameNodePort | BABYLON.NodeRenderGraphEditor.SharedUIComponents.NodePort, nodeB: BABYLON.NodeRenderGraphEditor.SharedUIComponents.FrameNodePort | BABYLON.NodeRenderGraphEditor.SharedUIComponents.NodePort) => boolean;
|
|
5788
|
-
applyNodePortDesign: (data: BABYLON.NodeRenderGraphEditor.SharedUIComponents.IPortData, element: HTMLElement, imgHost:
|
|
5788
|
+
applyNodePortDesign: (data: BABYLON.NodeRenderGraphEditor.SharedUIComponents.IPortData, element: HTMLElement, imgHost: HTMLImageElement, pip: HTMLDivElement) => boolean;
|
|
5789
5789
|
getPortColor: (portData: BABYLON.NodeRenderGraphEditor.SharedUIComponents.IPortData) => string;
|
|
5790
5790
|
storeEditorData: (serializationObject: any, frame?: BABYLON.Nullable<BABYLON.NodeRenderGraphEditor.SharedUIComponents.GraphFrame>) => void;
|
|
5791
5791
|
getEditorDataMap: () => {
|
|
@@ -5859,7 +5859,7 @@ declare module BABYLON.NodeRenderGraphEditor.SharedUIComponents {
|
|
|
5859
5859
|
node: BABYLON.NodeRenderGraphEditor.SharedUIComponents.GraphNode;
|
|
5860
5860
|
protected _element: HTMLDivElement;
|
|
5861
5861
|
protected _portContainer: HTMLElement;
|
|
5862
|
-
protected _imgHost:
|
|
5862
|
+
protected _imgHost: HTMLImageElement;
|
|
5863
5863
|
protected _pip: HTMLDivElement;
|
|
5864
5864
|
protected _stateManager: BABYLON.NodeRenderGraphEditor.SharedUIComponents.StateManager;
|
|
5865
5865
|
protected _portLabelElement: Element;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "babylonjs-node-render-graph-editor",
|
|
3
|
-
"version": "7.43.
|
|
3
|
+
"version": "7.43.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*.* -g"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"babylonjs": "^7.54.
|
|
17
|
+
"babylonjs": "^7.54.2"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"@dev/build-tools": "1.0.0",
|