babylonjs-node-editor 5.32.2 → 5.33.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.
@@ -1623,7 +1623,7 @@ declare module BABYLON.NodeEditor.SharedUIComponents {
1623
1623
  * @param row
1624
1624
  * @returns
1625
1625
  */
1626
- export const getPosInLayout: (layout: BABYLON.NodeEditor.SharedUIComponents.Layout, column: number, row?: number | undefined) => LayoutColumn;
1626
+ export const getPosInLayout: (layout: BABYLON.NodeEditor.SharedUIComponents.Layout, column: number, row?: number | undefined) => BABYLON.NodeEditor.SharedUIComponents.LayoutColumn | BABYLON.NodeEditor.SharedUIComponents.LayoutTabsRow;
1627
1627
  /**
1628
1628
  * Remove a row in position row, column from the layout, and redistribute heights of remaining rows
1629
1629
  * @param layout
@@ -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) => import("babylonjs-node-editor/components/layout/types").LayoutTabsRow | import("./types").LayoutColumn;
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
@@ -5882,7 +5882,7 @@ declare module BABYLON.NodeEditor.SharedUIComponents {
5882
5882
  * @param row
5883
5883
  * @returns
5884
5884
  */
5885
- export const getPosInLayout: (layout: BABYLON.NodeEditor.SharedUIComponents.Layout, column: number, row?: number | undefined) => LayoutColumn;
5885
+ export const getPosInLayout: (layout: BABYLON.NodeEditor.SharedUIComponents.Layout, column: number, row?: number | undefined) => BABYLON.NodeEditor.SharedUIComponents.LayoutColumn | BABYLON.NodeEditor.SharedUIComponents.LayoutTabsRow;
5886
5886
  /**
5887
5887
  * Remove a row in position row, column from the layout, and redistribute heights of remaining rows
5888
5888
  * @param layout
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "babylonjs-node-editor",
3
- "version": "5.32.2",
3
+ "version": "5.33.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.32.2"
17
+ "babylonjs": "^5.33.0"
18
18
  },
19
19
  "devDependencies": {
20
20
  "@dev/build-tools": "1.0.0",