@babylonjs/gui-editor 7.53.2 → 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.
@@ -2335,11 +2335,11 @@ export class GraphNode {
|
|
2335
2335
|
private _onUpdateRequiredObserver;
|
2336
2336
|
private _onHighlightNodeObserver;
|
2337
2337
|
private _ownerCanvas;
|
2338
|
-
private _isSelected;
|
2339
2338
|
private _displayManager;
|
2340
2339
|
private _isVisible;
|
2341
2340
|
private _enclosingFrameId;
|
2342
2341
|
private _visualPropertiesRefresh;
|
2342
|
+
private _lastClick;
|
2343
2343
|
addClassToVisual(className: string): void;
|
2344
2344
|
removeClassFromVisual(className: string): void;
|
2345
2345
|
get isCollapsed(): boolean;
|
@@ -2359,10 +2359,8 @@ export class GraphNode {
|
|
2359
2359
|
get height(): number;
|
2360
2360
|
get id(): number;
|
2361
2361
|
get name(): string;
|
2362
|
-
get isSelected(): boolean;
|
2363
2362
|
get enclosingFrameId(): number;
|
2364
2363
|
set enclosingFrameId(value: number);
|
2365
|
-
set isSelected(value: boolean);
|
2366
2364
|
setIsSelected(value: boolean, marqueeSelection: boolean): void;
|
2367
2365
|
get rootElement(): HTMLDivElement;
|
2368
2366
|
constructor(content: INodeData, stateManager: StateManager);
|
@@ -2374,10 +2372,11 @@ export class GraphNode {
|
|
2374
2372
|
private _refreshFrames;
|
2375
2373
|
_refreshLinks(): void;
|
2376
2374
|
refresh(): void;
|
2375
|
+
private _expand;
|
2376
|
+
private _searchMiddle;
|
2377
2377
|
private _onDown;
|
2378
2378
|
cleanAccumulation(useCeil?: boolean): void;
|
2379
2379
|
private _onUp;
|
2380
|
-
private _attach;
|
2381
2380
|
private _onMove;
|
2382
2381
|
renderProperties(): Nullable<JSX.Element>;
|
2383
2382
|
_forceRebuild(source: any, propertyName: string, notifiers?: IEditablePropertyOption["notifiers"]): void;
|
@@ -2601,6 +2600,8 @@ export class GraphCanvasComponent extends React.Component<IGraphCanvasComponentP
|
|
2601
2600
|
private _candidateLinkedHasMoved;
|
2602
2601
|
private _x;
|
2603
2602
|
private _y;
|
2603
|
+
private _lastx;
|
2604
|
+
private _lasty;
|
2604
2605
|
private _zoom;
|
2605
2606
|
private _selectedNodes;
|
2606
2607
|
private _selectedLink;
|
@@ -2614,6 +2615,7 @@ export class GraphCanvasComponent extends React.Component<IGraphCanvasComponentP
|
|
2614
2615
|
private _frames;
|
2615
2616
|
private _nodeDataContentList;
|
2616
2617
|
private _altKeyIsPressed;
|
2618
|
+
private _shiftKeyIsPressed;
|
2617
2619
|
private _multiKeyIsPressed;
|
2618
2620
|
private _oldY;
|
2619
2621
|
_frameIsMoving: boolean;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@babylonjs/gui-editor",
|
3
|
-
"version": "7.53.
|
3
|
+
"version": "7.53.3",
|
4
4
|
"main": "dist/babylon.guiEditor.max.js",
|
5
5
|
"module": "dist/babylon.guiEditor.max.js",
|
6
6
|
"esnext": "dist/babylon.guiEditor.max.js",
|
@@ -24,8 +24,8 @@
|
|
24
24
|
"@types/react-dom": ">=16.0.9"
|
25
25
|
},
|
26
26
|
"devDependencies": {
|
27
|
-
"@babylonjs/core": "^7.53.
|
28
|
-
"@babylonjs/gui": "^7.53.
|
27
|
+
"@babylonjs/core": "^7.53.3",
|
28
|
+
"@babylonjs/gui": "^7.53.3",
|
29
29
|
"react": "^17.0.2",
|
30
30
|
"react-dom": "^17.0.2"
|
31
31
|
},
|