babylonjs-node-geometry-editor 7.32.4 → 7.32.5

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.
@@ -368,7 +368,6 @@ declare module BABYLON.NodeGeometryEditor {
368
368
  }
369
369
  export class GenericPropertyTabComponent extends React.Component<BABYLON.NodeGeometryEditor.SharedUIComponents.IPropertyComponentProps> {
370
370
  constructor(props: BABYLON.NodeGeometryEditor.SharedUIComponents.IPropertyComponentProps);
371
- forceRebuild(propertyName: string, notifiers?: IEditablePropertyOption["notifiers"]): void;
372
371
  render(): import("react/jsx-runtime").JSX.Element;
373
372
  }
374
373
 
@@ -1168,7 +1167,7 @@ declare module BABYLON.NodeGeometryEditor.SharedUIComponents {
1168
1167
  onFrameCreatedObservable: BABYLON.Observable<BABYLON.NodeGeometryEditor.SharedUIComponents.GraphFrame>;
1169
1168
  onUpdateRequiredObservable: BABYLON.Observable<any>;
1170
1169
  onGraphNodeRemovalObservable: BABYLON.Observable<BABYLON.NodeGeometryEditor.SharedUIComponents.GraphNode>;
1171
- onSelectionBoxMoved: BABYLON.Observable<DOMRect | ClientRect>;
1170
+ onSelectionBoxMoved: BABYLON.Observable<ClientRect | DOMRect>;
1172
1171
  onCandidateLinkMoved: BABYLON.Observable<BABYLON.Nullable<BABYLON.Vector2>>;
1173
1172
  onCandidatePortSelectedObservable: BABYLON.Observable<BABYLON.Nullable<BABYLON.NodeGeometryEditor.SharedUIComponents.FrameNodePort | BABYLON.NodeGeometryEditor.SharedUIComponents.NodePort>>;
1174
1173
  onNewNodeCreatedObservable: BABYLON.Observable<BABYLON.NodeGeometryEditor.SharedUIComponents.GraphNode>;
@@ -1188,6 +1187,7 @@ declare module BABYLON.NodeGeometryEditor.SharedUIComponents {
1188
1187
  data: any;
1189
1188
  active: boolean;
1190
1189
  }>;
1190
+ onPreviewCommandActivated: BABYLON.Observable<boolean>;
1191
1191
  exportData: (data: any, frame?: BABYLON.Nullable<BABYLON.NodeGeometryEditor.SharedUIComponents.GraphFrame>) => string;
1192
1192
  isElbowConnectionAllowed: (nodeA: BABYLON.NodeGeometryEditor.SharedUIComponents.FrameNodePort | BABYLON.NodeGeometryEditor.SharedUIComponents.NodePort, nodeB: BABYLON.NodeGeometryEditor.SharedUIComponents.FrameNodePort | BABYLON.NodeGeometryEditor.SharedUIComponents.NodePort) => boolean;
1193
1193
  isDebugConnectionAllowed: (nodeA: BABYLON.NodeGeometryEditor.SharedUIComponents.FrameNodePort | BABYLON.NodeGeometryEditor.SharedUIComponents.NodePort, nodeB: BABYLON.NodeGeometryEditor.SharedUIComponents.FrameNodePort | BABYLON.NodeGeometryEditor.SharedUIComponents.NodePort) => boolean;
@@ -1196,6 +1196,7 @@ declare module BABYLON.NodeGeometryEditor.SharedUIComponents {
1196
1196
  getEditorDataMap: () => {
1197
1197
  [key: number]: number;
1198
1198
  };
1199
+ getScene?: () => BABYLON.Scene;
1199
1200
  createDefaultInputData: (rootData: any, portData: BABYLON.NodeGeometryEditor.SharedUIComponents.IPortData, nodeContainer: BABYLON.NodeGeometryEditor.SharedUIComponents.INodeContainer) => BABYLON.Nullable<{
1200
1201
  data: BABYLON.NodeGeometryEditor.SharedUIComponents.INodeData;
1201
1202
  name: string;
@@ -1351,6 +1352,7 @@ declare module BABYLON.NodeGeometryEditor.SharedUIComponents {
1351
1352
  private _headerIconImg;
1352
1353
  private _header;
1353
1354
  private _connections;
1355
+ private _optionsContainer;
1354
1356
  private _inputsContainer;
1355
1357
  private _outputsContainer;
1356
1358
  private _content;
@@ -1377,6 +1379,7 @@ declare module BABYLON.NodeGeometryEditor.SharedUIComponents {
1377
1379
  private _displayManager;
1378
1380
  private _isVisible;
1379
1381
  private _enclosingFrameId;
1382
+ private _visualPropertiesRefresh;
1380
1383
  addClassToVisual(className: string): void;
1381
1384
  removeClassFromVisual(className: string): void;
1382
1385
  get isVisible(): boolean;
@@ -1415,6 +1418,7 @@ declare module BABYLON.NodeGeometryEditor.SharedUIComponents {
1415
1418
  private _onUp;
1416
1419
  private _onMove;
1417
1420
  renderProperties(): BABYLON.Nullable<JSX.Element>;
1421
+ private _forceRebuild;
1418
1422
  appendVisual(root: HTMLDivElement, owner: BABYLON.NodeGeometryEditor.SharedUIComponents.GraphCanvasComponent): void;
1419
1423
  dispose(): void;
1420
1424
  }
@@ -1741,6 +1745,23 @@ declare module BABYLON.NodeGeometryEditor.SharedUIComponents {
1741
1745
 
1742
1746
 
1743
1747
 
1748
+ }
1749
+ declare module BABYLON.NodeGeometryEditor {
1750
+
1751
+
1752
+ }
1753
+ declare module BABYLON.NodeGeometryEditor.SharedUIComponents {
1754
+ /**
1755
+ * Function used to force a rebuild of the node system
1756
+ * @param source source object
1757
+ * @param stateManager defines the state manager to use
1758
+ * @param propertyName name of the property that has been changed
1759
+ * @param notifiers list of notifiers to use
1760
+ */
1761
+ export function ForceRebuild(source: any, stateManager: BABYLON.NodeGeometryEditor.SharedUIComponents.StateManager, propertyName: string, notifiers?: BABYLON.IEditablePropertyOption["notifiers"]): void;
1762
+
1763
+
1764
+
1744
1765
  }
1745
1766
  declare module BABYLON.NodeGeometryEditor {
1746
1767