@babylonjs/inspector 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.
@@ -5757,6 +5757,8 @@ export class GraphNode {
|
|
5757
5757
|
* Expand the node
|
5758
5758
|
*/
|
5759
5759
|
expand(): void;
|
5760
|
+
private _portUICount;
|
5761
|
+
private _buildInputPorts;
|
5760
5762
|
appendVisual(root: HTMLDivElement, owner: GraphCanvasComponent): void;
|
5761
5763
|
dispose(): void;
|
5762
5764
|
}
|
@@ -6242,6 +6244,7 @@ export interface INodeData {
|
|
6242
6244
|
isActive?: boolean;
|
6243
6245
|
setIsActive?: (value: boolean) => void;
|
6244
6246
|
canBeActivated?: boolean;
|
6247
|
+
onInputCountChanged?: () => void;
|
6245
6248
|
}
|
6246
6249
|
|
6247
6250
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@babylonjs/inspector",
|
3
|
-
"version": "8.
|
3
|
+
"version": "8.12.0",
|
4
4
|
"module": "dist/babylon.inspector.bundle.max.js",
|
5
5
|
"main": "dist/babylon.inspector.bundle.max.js",
|
6
6
|
"typings": "dist/babylon.inspector.module.d.ts",
|
@@ -33,13 +33,13 @@
|
|
33
33
|
"@types/react-dom": ">=16.0.9"
|
34
34
|
},
|
35
35
|
"devDependencies": {
|
36
|
-
"@babylonjs/addons": "^8.
|
37
|
-
"@babylonjs/core": "^8.
|
38
|
-
"@babylonjs/gui": "^8.
|
39
|
-
"@babylonjs/gui-editor": "^8.
|
40
|
-
"@babylonjs/loaders": "^8.
|
41
|
-
"@babylonjs/materials": "^8.
|
42
|
-
"@babylonjs/serializers": "^8.
|
36
|
+
"@babylonjs/addons": "^8.12.0",
|
37
|
+
"@babylonjs/core": "^8.12.0",
|
38
|
+
"@babylonjs/gui": "^8.12.0",
|
39
|
+
"@babylonjs/gui-editor": "^8.12.0",
|
40
|
+
"@babylonjs/loaders": "^8.12.0",
|
41
|
+
"@babylonjs/materials": "^8.12.0",
|
42
|
+
"@babylonjs/serializers": "^8.12.0",
|
43
43
|
"@lts/gui": "1.0.0",
|
44
44
|
"react": "^18.2.0",
|
45
45
|
"react-dom": "^18.2.0"
|