babylonjs-node-editor 5.29.0 → 5.31.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.
@@ -1534,7 +1534,11 @@ declare module BABYLON.NodeEditor.SharedUIComponents {
1534
1534
  /**
1535
1535
  * React component rendered by tab
1536
1536
  */
1537
- component: React.ComponentType;
1537
+ component: React.ReactElement;
1538
+ /**
1539
+ * Tab title
1540
+ */
1541
+ title: string;
1538
1542
  };
1539
1543
  export type LayoutTabsRow = {
1540
1544
  /**
@@ -2820,11 +2824,17 @@ declare module BABYLON.NodeEditor.SharedUIComponents {
2820
2824
  static readonly NodeWidth = 100;
2821
2825
  private readonly _minZoom;
2822
2826
  private readonly _maxZoom;
2827
+ private _hostCanvasRef;
2823
2828
  private _hostCanvas;
2829
+ private _graphCanvasRef;
2824
2830
  private _graphCanvas;
2831
+ private _selectionContainerRef;
2825
2832
  private _selectionContainer;
2833
+ private _frameContainerRef;
2826
2834
  private _frameContainer;
2835
+ private _svgCanvasRef;
2827
2836
  private _svgCanvas;
2837
+ private _rootContainerRef;
2828
2838
  private _rootContainer;
2829
2839
  private _nodes;
2830
2840
  private _links;
@@ -3107,6 +3117,8 @@ declare module BABYLON.NodeEditor.SharedUIComponents {
3107
3117
  private _displayManager;
3108
3118
  private _isVisible;
3109
3119
  private _enclosingFrameId;
3120
+ addClassToVisual(className: string): void;
3121
+ removeClassFromVisual(className: string): void;
3110
3122
  get isVisible(): boolean;
3111
3123
  set isVisible(value: boolean);
3112
3124
  private _upateNodePortNames;