babylonjs-gui-editor 6.16.0 → 6.16.2

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.
@@ -2686,7 +2686,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
2686
2686
  private _store;
2687
2687
  constructor(props: IFloatLineComponentProps);
2688
2688
  componentWillUnmount(): void;
2689
- getValueString(value: any): string;
2689
+ getValueString(value: any, props: IFloatLineComponentProps): string;
2690
2690
  shouldComponentUpdate(nextProps: IFloatLineComponentProps, nextState: {
2691
2691
  value: string;
2692
2692
  dragging: boolean;
@@ -3671,6 +3671,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
3671
3671
  private _outputsContainer;
3672
3672
  private _content;
3673
3673
  private _comments;
3674
+ private _executionTime;
3674
3675
  private _selectionBorder;
3675
3676
  private _inputPorts;
3676
3677
  private _outputPorts;
@@ -3779,6 +3780,8 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
3779
3780
  uniqueId: number;
3780
3781
  isInput: boolean;
3781
3782
  comments: string;
3783
+ executionTime?: number;
3784
+ refreshCallback?: () => void;
3782
3785
  prepareHeaderIcon: (iconDiv: HTMLDivElement, img: HTMLImageElement) => void;
3783
3786
  getClassName: () => string;
3784
3787
  dispose: () => void;
@@ -3786,6 +3789,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
3786
3789
  inputs: BABYLON.GuiEditor.SharedUIComponents.IPortData[];
3787
3790
  outputs: BABYLON.GuiEditor.SharedUIComponents.IPortData[];
3788
3791
  invisibleEndpoints?: Nullable<any[]>;
3792
+ isConnectedToOutput?: () => boolean;
3789
3793
  }
3790
3794
 
3791
3795
 
@@ -4029,7 +4033,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
4029
4033
  onCandidateLinkMoved: Observable<Nullable<Vector2>>;
4030
4034
  onCandidatePortSelectedObservable: Observable<Nullable<BABYLON.GuiEditor.SharedUIComponents.FrameNodePort | BABYLON.GuiEditor.SharedUIComponents.NodePort>>;
4031
4035
  onNewNodeCreatedObservable: Observable<BABYLON.GuiEditor.SharedUIComponents.GraphNode>;
4032
- onRebuildRequiredObservable: Observable<boolean>;
4036
+ onRebuildRequiredObservable: Observable<void>;
4033
4037
  onErrorMessageDialogRequiredObservable: Observable<string>;
4034
4038
  onExposePortOnFrameObservable: Observable<BABYLON.GuiEditor.SharedUIComponents.GraphNode>;
4035
4039
  onGridSizeChanged: Observable<void>;