@babylonjs/node-editor 5.32.2 → 5.33.1
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.
@@ -1893,7 +1893,7 @@ export enum ResizeDirections {
|
|
1893
1893
|
|
1894
1894
|
}
|
1895
1895
|
declare module "@babylonjs/node-editor/components/layout/utils" {
|
1896
|
-
import { Layout } from "@babylonjs/node-editor/components/layout/types";
|
1896
|
+
import { Layout, LayoutColumn, LayoutTabsRow } from "@babylonjs/node-editor/components/layout/types";
|
1897
1897
|
/**
|
1898
1898
|
* Given a column and row number in the layout, return the corresponding column/row
|
1899
1899
|
* @param layout
|
@@ -1901,7 +1901,7 @@ import { Layout } from "@babylonjs/node-editor/components/layout/types";
|
|
1901
1901
|
* @param row
|
1902
1902
|
* @returns
|
1903
1903
|
*/
|
1904
|
-
export const getPosInLayout: (layout: Layout, column: number, row?: number | undefined) =>
|
1904
|
+
export const getPosInLayout: (layout: Layout, column: number, row?: number | undefined) => LayoutColumn | LayoutTabsRow;
|
1905
1905
|
/**
|
1906
1906
|
* Remove a row in position row, column from the layout, and redistribute heights of remaining rows
|
1907
1907
|
* @param layout
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@babylonjs/node-editor",
|
3
|
-
"version": "5.
|
3
|
+
"version": "5.33.1",
|
4
4
|
"main": "dist/babylon.nodeEditor.max.js",
|
5
5
|
"module": "dist/babylon.nodeEditor.max.js",
|
6
6
|
"esnext": "dist/babylon.nodeEditor.max.js",
|
@@ -23,7 +23,7 @@
|
|
23
23
|
"@types/react-dom": ">=16.0.9"
|
24
24
|
},
|
25
25
|
"devDependencies": {
|
26
|
-
"@babylonjs/core": "^5.
|
26
|
+
"@babylonjs/core": "^5.33.1",
|
27
27
|
"react": "^17.0.2",
|
28
28
|
"react-dom": "^17.0.2",
|
29
29
|
"rimraf": "^3.0.2",
|