babylonjs-node-editor 5.45.2 → 5.47.0
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.
|
@@ -1903,7 +1903,7 @@ import { Layout, LayoutColumn, LayoutTabsRow } from "babylonjs-node-editor/compo
|
|
|
1903
1903
|
* @param row
|
|
1904
1904
|
* @returns
|
|
1905
1905
|
*/
|
|
1906
|
-
export const getPosInLayout: (layout: Layout, column: number, row?: number
|
|
1906
|
+
export const getPosInLayout: (layout: Layout, column: number, row?: number) => LayoutColumn | LayoutTabsRow;
|
|
1907
1907
|
/**
|
|
1908
1908
|
* Remove a row in position row, column from the layout, and redistribute heights of remaining rows
|
|
1909
1909
|
* @param layout
|
|
@@ -3946,7 +3946,7 @@ import { GraphNode } from "babylonjs-node-editor/nodeGraphSystem/graphNode";
|
|
|
3946
3946
|
import { NodeLink } from "babylonjs-node-editor/nodeGraphSystem/nodeLink";
|
|
3947
3947
|
import { FramePortData } from "babylonjs-node-editor/nodeGraphSystem/types/framePortData";
|
|
3948
3948
|
export const IsFramePortData: (variableToCheck: any) => variableToCheck is FramePortData;
|
|
3949
|
-
export const RefreshNode: (node: GraphNode, visitedNodes?: Set<GraphNode
|
|
3949
|
+
export const RefreshNode: (node: GraphNode, visitedNodes?: Set<GraphNode>, visitedLinks?: Set<NodeLink>) => void;
|
|
3950
3950
|
|
|
3951
3951
|
}
|
|
3952
3952
|
declare module "babylonjs-node-editor/nodeGraphSystem/typeLedger" {
|
|
@@ -5925,7 +5925,7 @@ declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
|
5925
5925
|
* @param row
|
|
5926
5926
|
* @returns
|
|
5927
5927
|
*/
|
|
5928
|
-
export const getPosInLayout: (layout: BABYLON.NodeEditor.SharedUIComponents.Layout, column: number, row?: number
|
|
5928
|
+
export const getPosInLayout: (layout: BABYLON.NodeEditor.SharedUIComponents.Layout, column: number, row?: number) => BABYLON.NodeEditor.SharedUIComponents.LayoutColumn | BABYLON.NodeEditor.SharedUIComponents.LayoutTabsRow;
|
|
5929
5929
|
/**
|
|
5930
5930
|
* Remove a row in position row, column from the layout, and redistribute heights of remaining rows
|
|
5931
5931
|
* @param layout
|
|
@@ -8106,7 +8106,7 @@ declare module BABYLON.NodeEditor {
|
|
|
8106
8106
|
}
|
|
8107
8107
|
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
8108
8108
|
export const IsFramePortData: (variableToCheck: any) => variableToCheck is BABYLON.NodeEditor.SharedUIComponents.FramePortData;
|
|
8109
|
-
export const RefreshNode: (node: BABYLON.NodeEditor.SharedUIComponents.GraphNode, visitedNodes?: Set<BABYLON.NodeEditor.SharedUIComponents.GraphNode
|
|
8109
|
+
export const RefreshNode: (node: BABYLON.NodeEditor.SharedUIComponents.GraphNode, visitedNodes?: Set<BABYLON.NodeEditor.SharedUIComponents.GraphNode>, visitedLinks?: Set<BABYLON.NodeEditor.SharedUIComponents.NodeLink>) => void;
|
|
8110
8110
|
|
|
8111
8111
|
|
|
8112
8112
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "babylonjs-node-editor",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.47.0",
|
|
4
4
|
"main": "babylon.nodeEditor.js",
|
|
5
5
|
"types": "babylon.nodeEditor.module.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"clean": "rimraf dist && rimraf babylon*.*"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"babylonjs": "^5.
|
|
17
|
+
"babylonjs": "^5.47.0"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"@dev/build-tools": "1.0.0",
|