@babylonjs/gui-editor 8.11.0 → 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.
@@ -2433,6 +2433,8 @@ export class GraphNode {
|
|
2433
2433
|
* Expand the node
|
2434
2434
|
*/
|
2435
2435
|
expand(): void;
|
2436
|
+
private _portUICount;
|
2437
|
+
private _buildInputPorts;
|
2436
2438
|
appendVisual(root: HTMLDivElement, owner: GraphCanvasComponent): void;
|
2437
2439
|
dispose(): void;
|
2438
2440
|
}
|
@@ -2918,6 +2920,7 @@ export interface INodeData {
|
|
2918
2920
|
isActive?: boolean;
|
2919
2921
|
setIsActive?: (value: boolean) => void;
|
2920
2922
|
canBeActivated?: boolean;
|
2923
|
+
onInputCountChanged?: () => void;
|
2921
2924
|
}
|
2922
2925
|
|
2923
2926
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@babylonjs/gui-editor",
|
3
|
-
"version": "8.
|
3
|
+
"version": "8.12.0",
|
4
4
|
"main": "dist/babylon.guiEditor.max.js",
|
5
5
|
"module": "dist/babylon.guiEditor.max.js",
|
6
6
|
"esnext": "dist/babylon.guiEditor.max.js",
|
@@ -24,8 +24,8 @@
|
|
24
24
|
"@types/react-dom": ">=16.0.9"
|
25
25
|
},
|
26
26
|
"devDependencies": {
|
27
|
-
"@babylonjs/core": "^8.
|
28
|
-
"@babylonjs/gui": "^8.
|
27
|
+
"@babylonjs/core": "^8.12.0",
|
28
|
+
"@babylonjs/gui": "^8.12.0",
|
29
29
|
"react": "^18.2.0",
|
30
30
|
"react-dom": "^18.2.0"
|
31
31
|
},
|