babylonjs-node-geometry-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.
|
@@ -1664,7 +1664,7 @@ export class StateManager {
|
|
|
1664
1664
|
exportData: (data: any, frame?: Nullable<GraphFrame>) => string;
|
|
1665
1665
|
isElbowConnectionAllowed: (nodeA: FrameNodePort | NodePort, nodeB: FrameNodePort | NodePort) => boolean;
|
|
1666
1666
|
isDebugConnectionAllowed: (nodeA: FrameNodePort | NodePort, nodeB: FrameNodePort | NodePort) => boolean;
|
|
1667
|
-
applyNodePortDesign: (data: IPortData, element: HTMLElement, imgHost:
|
|
1667
|
+
applyNodePortDesign: (data: IPortData, element: HTMLElement, imgHost: HTMLImageElement, pip: HTMLDivElement) => boolean;
|
|
1668
1668
|
getPortColor: (portData: IPortData) => string;
|
|
1669
1669
|
storeEditorData: (serializationObject: any, frame?: Nullable<GraphFrame>) => void;
|
|
1670
1670
|
getEditorDataMap: () => {
|
|
@@ -1734,7 +1734,7 @@ export class NodePort {
|
|
|
1734
1734
|
node: GraphNode;
|
|
1735
1735
|
protected _element: HTMLDivElement;
|
|
1736
1736
|
protected _portContainer: HTMLElement;
|
|
1737
|
-
protected _imgHost:
|
|
1737
|
+
protected _imgHost: HTMLImageElement;
|
|
1738
1738
|
protected _pip: HTMLDivElement;
|
|
1739
1739
|
protected _stateManager: StateManager;
|
|
1740
1740
|
protected _portLabelElement: Element;
|
|
@@ -5899,7 +5899,7 @@ declare module BABYLON.NodeGeometryEditor.SharedUIComponents {
|
|
|
5899
5899
|
exportData: (data: any, frame?: BABYLON.Nullable<BABYLON.NodeGeometryEditor.SharedUIComponents.GraphFrame>) => string;
|
|
5900
5900
|
isElbowConnectionAllowed: (nodeA: BABYLON.NodeGeometryEditor.SharedUIComponents.FrameNodePort | BABYLON.NodeGeometryEditor.SharedUIComponents.NodePort, nodeB: BABYLON.NodeGeometryEditor.SharedUIComponents.FrameNodePort | BABYLON.NodeGeometryEditor.SharedUIComponents.NodePort) => boolean;
|
|
5901
5901
|
isDebugConnectionAllowed: (nodeA: BABYLON.NodeGeometryEditor.SharedUIComponents.FrameNodePort | BABYLON.NodeGeometryEditor.SharedUIComponents.NodePort, nodeB: BABYLON.NodeGeometryEditor.SharedUIComponents.FrameNodePort | BABYLON.NodeGeometryEditor.SharedUIComponents.NodePort) => boolean;
|
|
5902
|
-
applyNodePortDesign: (data: BABYLON.NodeGeometryEditor.SharedUIComponents.IPortData, element: HTMLElement, imgHost:
|
|
5902
|
+
applyNodePortDesign: (data: BABYLON.NodeGeometryEditor.SharedUIComponents.IPortData, element: HTMLElement, imgHost: HTMLImageElement, pip: HTMLDivElement) => boolean;
|
|
5903
5903
|
getPortColor: (portData: BABYLON.NodeGeometryEditor.SharedUIComponents.IPortData) => string;
|
|
5904
5904
|
storeEditorData: (serializationObject: any, frame?: BABYLON.Nullable<BABYLON.NodeGeometryEditor.SharedUIComponents.GraphFrame>) => void;
|
|
5905
5905
|
getEditorDataMap: () => {
|
|
@@ -5973,7 +5973,7 @@ declare module BABYLON.NodeGeometryEditor.SharedUIComponents {
|
|
|
5973
5973
|
node: BABYLON.NodeGeometryEditor.SharedUIComponents.GraphNode;
|
|
5974
5974
|
protected _element: HTMLDivElement;
|
|
5975
5975
|
protected _portContainer: HTMLElement;
|
|
5976
|
-
protected _imgHost:
|
|
5976
|
+
protected _imgHost: HTMLImageElement;
|
|
5977
5977
|
protected _pip: HTMLDivElement;
|
|
5978
5978
|
protected _stateManager: BABYLON.NodeGeometryEditor.SharedUIComponents.StateManager;
|
|
5979
5979
|
protected _portLabelElement: Element;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "babylonjs-node-geometry-editor",
|
|
3
|
-
"version": "7.54.
|
|
3
|
+
"version": "7.54.2",
|
|
4
4
|
"main": "babylon.nodeGeometryEditor.js",
|
|
5
5
|
"types": "babylon.nodeGeometryEditor.module.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"clean": "rimraf dist && rimraf babylon*.* -g"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"babylonjs": "^7.54.
|
|
17
|
+
"babylonjs": "^7.54.2"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"@dev/build-tools": "1.0.0",
|