babylonjs-gui-editor 7.45.0 → 7.46.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.
@@ -1875,6 +1875,8 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
1875
1875
  data: BABYLON.GuiEditor.SharedUIComponents.INodeData;
1876
1876
  name: string;
1877
1877
  }>;
1878
+ private _isRebuildQueued;
1879
+ queueRebuildCommand(): void;
1878
1880
  }
1879
1881
 
1880
1882
 
@@ -2611,6 +2613,9 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
2611
2613
  outputs: BABYLON.GuiEditor.SharedUIComponents.IPortData[];
2612
2614
  invisibleEndpoints?: Nullable<any[]>;
2613
2615
  isConnectedToOutput?: () => boolean;
2616
+ isActive?: boolean;
2617
+ setIsActive?: (value: boolean) => void;
2618
+ canBeActivated?: boolean;
2614
2619
  }
2615
2620
 
2616
2621
 
@@ -2151,6 +2151,8 @@ export class StateManager {
2151
2151
  data: INodeData;
2152
2152
  name: string;
2153
2153
  }>;
2154
+ private _isRebuildQueued;
2155
+ queueRebuildCommand(): void;
2154
2156
  }
2155
2157
 
2156
2158
  }
@@ -2855,6 +2857,9 @@ export interface INodeData {
2855
2857
  outputs: IPortData[];
2856
2858
  invisibleEndpoints?: Nullable<any[]>;
2857
2859
  isConnectedToOutput?: () => boolean;
2860
+ isActive?: boolean;
2861
+ setIsActive?: (value: boolean) => void;
2862
+ canBeActivated?: boolean;
2858
2863
  }
2859
2864
 
2860
2865
  }
@@ -6795,6 +6800,8 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
6795
6800
  data: BABYLON.GuiEditor.SharedUIComponents.INodeData;
6796
6801
  name: string;
6797
6802
  }>;
6803
+ private _isRebuildQueued;
6804
+ queueRebuildCommand(): void;
6798
6805
  }
6799
6806
 
6800
6807
 
@@ -7531,6 +7538,9 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
7531
7538
  outputs: BABYLON.GuiEditor.SharedUIComponents.IPortData[];
7532
7539
  invisibleEndpoints?: Nullable<any[]>;
7533
7540
  isConnectedToOutput?: () => boolean;
7541
+ isActive?: boolean;
7542
+ setIsActive?: (value: boolean) => void;
7543
+ canBeActivated?: boolean;
7534
7544
  }
7535
7545
 
7536
7546
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "babylonjs-gui-editor",
3
- "version": "7.45.0",
3
+ "version": "7.46.0",
4
4
  "main": "babylon.guiEditor.max.js",
5
5
  "types": "babylon.guiEditor.module.d.ts",
6
6
  "files": [
@@ -14,8 +14,8 @@
14
14
  "clean": "rimraf dist && rimraf babylon*.* -g"
15
15
  },
16
16
  "dependencies": {
17
- "babylonjs": "^7.45.0",
18
- "babylonjs-gui": "^7.45.0"
17
+ "babylonjs": "^7.46.0",
18
+ "babylonjs-gui": "^7.46.0"
19
19
  },
20
20
  "devDependencies": {
21
21
  "@dev/build-tools": "1.0.0",