babylonjs-inspector 7.37.1 → 7.38.0
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.
package/babylon.inspector.d.ts
CHANGED
|
@@ -3649,7 +3649,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
3649
3649
|
* @param source document to copy styles from
|
|
3650
3650
|
* @param target document or shadow root to copy styles to
|
|
3651
3651
|
*/
|
|
3652
|
-
export function CopyStyles(source: Document, target:
|
|
3652
|
+
export function CopyStyles(source: Document, target: DocumentOrShadowRoot): void;
|
|
3653
3653
|
|
|
3654
3654
|
|
|
3655
3655
|
|
|
@@ -4333,6 +4333,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
4333
4333
|
isElbowConnectionAllowed: (nodeA: INSPECTOR.SharedUIComponents.FrameNodePort | INSPECTOR.SharedUIComponents.NodePort, nodeB: INSPECTOR.SharedUIComponents.FrameNodePort | INSPECTOR.SharedUIComponents.NodePort) => boolean;
|
|
4334
4334
|
isDebugConnectionAllowed: (nodeA: INSPECTOR.SharedUIComponents.FrameNodePort | INSPECTOR.SharedUIComponents.NodePort, nodeB: INSPECTOR.SharedUIComponents.FrameNodePort | INSPECTOR.SharedUIComponents.NodePort) => boolean;
|
|
4335
4335
|
applyNodePortDesign: (data: INSPECTOR.SharedUIComponents.IPortData, element: HTMLElement, img: HTMLImageElement, pip: HTMLDivElement) => void;
|
|
4336
|
+
getPortColor: (portData: INSPECTOR.SharedUIComponents.IPortData) => string;
|
|
4336
4337
|
storeEditorData: (serializationObject: any, frame?: BABYLON.Nullable<INSPECTOR.SharedUIComponents.GraphFrame>) => void;
|
|
4337
4338
|
getEditorDataMap: () => {
|
|
4338
4339
|
[key: number]: number;
|
|
@@ -4689,7 +4689,7 @@ declare module "babylonjs-inspector/styleHelper" {
|
|
|
4689
4689
|
* @param source document to copy styles from
|
|
4690
4690
|
* @param target document or shadow root to copy styles to
|
|
4691
4691
|
*/
|
|
4692
|
-
export function CopyStyles(source: Document, target:
|
|
4692
|
+
export function CopyStyles(source: Document, target: DocumentOrShadowRoot): void;
|
|
4693
4693
|
|
|
4694
4694
|
}
|
|
4695
4695
|
declare module "babylonjs-inspector/stringTools" {
|
|
@@ -5325,6 +5325,7 @@ export class StateManager {
|
|
|
5325
5325
|
isElbowConnectionAllowed: (nodeA: FrameNodePort | NodePort, nodeB: FrameNodePort | NodePort) => boolean;
|
|
5326
5326
|
isDebugConnectionAllowed: (nodeA: FrameNodePort | NodePort, nodeB: FrameNodePort | NodePort) => boolean;
|
|
5327
5327
|
applyNodePortDesign: (data: IPortData, element: HTMLElement, img: HTMLImageElement, pip: HTMLDivElement) => void;
|
|
5328
|
+
getPortColor: (portData: IPortData) => string;
|
|
5328
5329
|
storeEditorData: (serializationObject: any, frame?: Nullable<GraphFrame>) => void;
|
|
5329
5330
|
getEditorDataMap: () => {
|
|
5330
5331
|
[key: number]: number;
|
|
@@ -11752,7 +11753,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
11752
11753
|
* @param source document to copy styles from
|
|
11753
11754
|
* @param target document or shadow root to copy styles to
|
|
11754
11755
|
*/
|
|
11755
|
-
export function CopyStyles(source: Document, target:
|
|
11756
|
+
export function CopyStyles(source: Document, target: DocumentOrShadowRoot): void;
|
|
11756
11757
|
|
|
11757
11758
|
|
|
11758
11759
|
|
|
@@ -12436,6 +12437,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12436
12437
|
isElbowConnectionAllowed: (nodeA: INSPECTOR.SharedUIComponents.FrameNodePort | INSPECTOR.SharedUIComponents.NodePort, nodeB: INSPECTOR.SharedUIComponents.FrameNodePort | INSPECTOR.SharedUIComponents.NodePort) => boolean;
|
|
12437
12438
|
isDebugConnectionAllowed: (nodeA: INSPECTOR.SharedUIComponents.FrameNodePort | INSPECTOR.SharedUIComponents.NodePort, nodeB: INSPECTOR.SharedUIComponents.FrameNodePort | INSPECTOR.SharedUIComponents.NodePort) => boolean;
|
|
12438
12439
|
applyNodePortDesign: (data: INSPECTOR.SharedUIComponents.IPortData, element: HTMLElement, img: HTMLImageElement, pip: HTMLDivElement) => void;
|
|
12440
|
+
getPortColor: (portData: INSPECTOR.SharedUIComponents.IPortData) => string;
|
|
12439
12441
|
storeEditorData: (serializationObject: any, frame?: BABYLON.Nullable<INSPECTOR.SharedUIComponents.GraphFrame>) => void;
|
|
12440
12442
|
getEditorDataMap: () => {
|
|
12441
12443
|
[key: number]: number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "babylonjs-inspector",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.38.0",
|
|
4
4
|
"main": "babylon.inspector.bundle.max.js",
|
|
5
5
|
"types": "babylon.inspector.module.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -14,12 +14,12 @@
|
|
|
14
14
|
"clean": "rimraf dist && rimraf babylon*.* -g"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"babylonjs": "^7.
|
|
18
|
-
"babylonjs-gui": "^7.
|
|
19
|
-
"babylonjs-gui-editor": "^7.
|
|
20
|
-
"babylonjs-loaders": "^7.
|
|
21
|
-
"babylonjs-materials": "^7.
|
|
22
|
-
"babylonjs-serializers": "^7.
|
|
17
|
+
"babylonjs": "^7.38.0",
|
|
18
|
+
"babylonjs-gui": "^7.38.0",
|
|
19
|
+
"babylonjs-gui-editor": "^7.38.0",
|
|
20
|
+
"babylonjs-loaders": "^7.38.0",
|
|
21
|
+
"babylonjs-materials": "^7.38.0",
|
|
22
|
+
"babylonjs-serializers": "^7.38.0"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"@dev/build-tools": "1.0.0",
|