@babylonjs/node-editor 8.10.1 → 8.12.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.
@@ -2278,6 +2278,8 @@ export class GraphNode {
2278
2278
  * Expand the node
2279
2279
  */
2280
2280
  expand(): void;
2281
+ private _portUICount;
2282
+ private _buildInputPorts;
2281
2283
  appendVisual(root: HTMLDivElement, owner: GraphCanvasComponent): void;
2282
2284
  dispose(): void;
2283
2285
  }
@@ -2763,6 +2765,7 @@ export interface INodeData {
2763
2765
  isActive?: boolean;
2764
2766
  setIsActive?: (value: boolean) => void;
2765
2767
  canBeActivated?: boolean;
2768
+ onInputCountChanged?: () => void;
2766
2769
  }
2767
2770
 
2768
2771
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@babylonjs/node-editor",
3
- "version": "8.10.1",
3
+ "version": "8.12.0",
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": "^8.10.1",
26
+ "@babylonjs/core": "^8.12.0",
27
27
  "react": "^18.2.0",
28
28
  "react-dom": "^18.2.0"
29
29
  },