@babylonjs/gui-editor 7.54.1 → 7.54.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.
@@ -2161,7 +2161,7 @@ export class StateManager {
|
|
2161
2161
|
exportData: (data: any, frame?: Nullable<GraphFrame>) => string;
|
2162
2162
|
isElbowConnectionAllowed: (nodeA: FrameNodePort | NodePort, nodeB: FrameNodePort | NodePort) => boolean;
|
2163
2163
|
isDebugConnectionAllowed: (nodeA: FrameNodePort | NodePort, nodeB: FrameNodePort | NodePort) => boolean;
|
2164
|
-
applyNodePortDesign: (data: IPortData, element: HTMLElement, imgHost:
|
2164
|
+
applyNodePortDesign: (data: IPortData, element: HTMLElement, imgHost: HTMLImageElement, pip: HTMLDivElement) => boolean;
|
2165
2165
|
getPortColor: (portData: IPortData) => string;
|
2166
2166
|
storeEditorData: (serializationObject: any, frame?: Nullable<GraphFrame>) => void;
|
2167
2167
|
getEditorDataMap: () => {
|
@@ -2231,7 +2231,7 @@ export class NodePort {
|
|
2231
2231
|
node: GraphNode;
|
2232
2232
|
protected _element: HTMLDivElement;
|
2233
2233
|
protected _portContainer: HTMLElement;
|
2234
|
-
protected _imgHost:
|
2234
|
+
protected _imgHost: HTMLImageElement;
|
2235
2235
|
protected _pip: HTMLDivElement;
|
2236
2236
|
protected _stateManager: StateManager;
|
2237
2237
|
protected _portLabelElement: Element;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@babylonjs/gui-editor",
|
3
|
-
"version": "7.54.
|
3
|
+
"version": "7.54.2",
|
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.54.
|
28
|
-
"@babylonjs/gui": "^7.54.
|
27
|
+
"@babylonjs/core": "^7.54.2",
|
28
|
+
"@babylonjs/gui": "^7.54.2",
|
29
29
|
"react": "^17.0.2",
|
30
30
|
"react-dom": "^17.0.2"
|
31
31
|
},
|