babylonjs-node-editor 7.53.1 → 7.53.3

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.
@@ -1845,11 +1845,11 @@ declare module BABYLON.NodeEditor.SharedUIComponents {
1845
1845
  private _onUpdateRequiredObserver;
1846
1846
  private _onHighlightNodeObserver;
1847
1847
  private _ownerCanvas;
1848
- private _isSelected;
1849
1848
  private _displayManager;
1850
1849
  private _isVisible;
1851
1850
  private _enclosingFrameId;
1852
1851
  private _visualPropertiesRefresh;
1852
+ private _lastClick;
1853
1853
  addClassToVisual(className: string): void;
1854
1854
  removeClassFromVisual(className: string): void;
1855
1855
  get isCollapsed(): boolean;
@@ -1869,10 +1869,8 @@ declare module BABYLON.NodeEditor.SharedUIComponents {
1869
1869
  get height(): number;
1870
1870
  get id(): number;
1871
1871
  get name(): string;
1872
- get isSelected(): boolean;
1873
1872
  get enclosingFrameId(): number;
1874
1873
  set enclosingFrameId(value: number);
1875
- set isSelected(value: boolean);
1876
1874
  setIsSelected(value: boolean, marqueeSelection: boolean): void;
1877
1875
  get rootElement(): HTMLDivElement;
1878
1876
  constructor(content: BABYLON.NodeEditor.SharedUIComponents.INodeData, stateManager: BABYLON.NodeEditor.SharedUIComponents.StateManager);
@@ -1884,10 +1882,11 @@ declare module BABYLON.NodeEditor.SharedUIComponents {
1884
1882
  private _refreshFrames;
1885
1883
  _refreshLinks(): void;
1886
1884
  refresh(): void;
1885
+ private _expand;
1886
+ private _searchMiddle;
1887
1887
  private _onDown;
1888
1888
  cleanAccumulation(useCeil?: boolean): void;
1889
1889
  private _onUp;
1890
- private _attach;
1891
1890
  private _onMove;
1892
1891
  renderProperties(): BABYLON.Nullable<JSX.Element>;
1893
1892
  _forceRebuild(source: any, propertyName: string, notifiers?: BABYLON.IEditablePropertyOption["notifiers"]): void;
@@ -2105,6 +2104,8 @@ declare module BABYLON.NodeEditor.SharedUIComponents {
2105
2104
  private _candidateLinkedHasMoved;
2106
2105
  private _x;
2107
2106
  private _y;
2107
+ private _lastx;
2108
+ private _lasty;
2108
2109
  private _zoom;
2109
2110
  private _selectedNodes;
2110
2111
  private _selectedLink;
@@ -2118,6 +2119,7 @@ declare module BABYLON.NodeEditor.SharedUIComponents {
2118
2119
  private _frames;
2119
2120
  private _nodeDataContentList;
2120
2121
  private _altKeyIsPressed;
2122
+ private _shiftKeyIsPressed;
2121
2123
  private _multiKeyIsPressed;
2122
2124
  private _oldY;
2123
2125
  _frameIsMoving: boolean;