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;
|
|
@@ -7006,11 +7008,11 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
7006
7008
|
private _onUpdateRequiredObserver;
|
|
7007
7009
|
private _onHighlightNodeObserver;
|
|
7008
7010
|
private _ownerCanvas;
|
|
7009
|
-
private _isSelected;
|
|
7010
7011
|
private _displayManager;
|
|
7011
7012
|
private _isVisible;
|
|
7012
7013
|
private _enclosingFrameId;
|
|
7013
7014
|
private _visualPropertiesRefresh;
|
|
7015
|
+
private _lastClick;
|
|
7014
7016
|
addClassToVisual(className: string): void;
|
|
7015
7017
|
removeClassFromVisual(className: string): void;
|
|
7016
7018
|
get isCollapsed(): boolean;
|
|
@@ -7030,10 +7032,8 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
7030
7032
|
get height(): number;
|
|
7031
7033
|
get id(): number;
|
|
7032
7034
|
get name(): string;
|
|
7033
|
-
get isSelected(): boolean;
|
|
7034
7035
|
get enclosingFrameId(): number;
|
|
7035
7036
|
set enclosingFrameId(value: number);
|
|
7036
|
-
set isSelected(value: boolean);
|
|
7037
7037
|
setIsSelected(value: boolean, marqueeSelection: boolean): void;
|
|
7038
7038
|
get rootElement(): HTMLDivElement;
|
|
7039
7039
|
constructor(content: BABYLON.GuiEditor.SharedUIComponents.INodeData, stateManager: BABYLON.GuiEditor.SharedUIComponents.StateManager);
|
|
@@ -7045,10 +7045,11 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
7045
7045
|
private _refreshFrames;
|
|
7046
7046
|
_refreshLinks(): void;
|
|
7047
7047
|
refresh(): void;
|
|
7048
|
+
private _expand;
|
|
7049
|
+
private _searchMiddle;
|
|
7048
7050
|
private _onDown;
|
|
7049
7051
|
cleanAccumulation(useCeil?: boolean): void;
|
|
7050
7052
|
private _onUp;
|
|
7051
|
-
private _attach;
|
|
7052
7053
|
private _onMove;
|
|
7053
7054
|
renderProperties(): Nullable<JSX.Element>;
|
|
7054
7055
|
_forceRebuild(source: any, propertyName: string, notifiers?: IEditablePropertyOption["notifiers"]): void;
|
|
@@ -7266,6 +7267,8 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
7266
7267
|
private _candidateLinkedHasMoved;
|
|
7267
7268
|
private _x;
|
|
7268
7269
|
private _y;
|
|
7270
|
+
private _lastx;
|
|
7271
|
+
private _lasty;
|
|
7269
7272
|
private _zoom;
|
|
7270
7273
|
private _selectedNodes;
|
|
7271
7274
|
private _selectedLink;
|
|
@@ -7279,6 +7282,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
7279
7282
|
private _frames;
|
|
7280
7283
|
private _nodeDataContentList;
|
|
7281
7284
|
private _altKeyIsPressed;
|
|
7285
|
+
private _shiftKeyIsPressed;
|
|
7282
7286
|
private _multiKeyIsPressed;
|
|
7283
7287
|
private _oldY;
|
|
7284
7288
|
_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": "babylon.guiEditor.max.js",
|
|
5
5
|
"types": "babylon.guiEditor.module.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
"clean": "rimraf dist && rimraf babylon*.* -g"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"babylonjs": "^7.53.
|
|
18
|
-
"babylonjs-gui": "^7.53.
|
|
17
|
+
"babylonjs": "^7.53.3",
|
|
18
|
+
"babylonjs-gui": "^7.53.3"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"@dev/build-tools": "1.0.0",
|