@babylonjs/inspector 5.0.1 → 5.0.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.
|
@@ -2358,6 +2358,26 @@ export class TransformNodePropertyGridComponent extends React.Component<ITransfo
|
|
|
2358
2358
|
}
|
|
2359
2359
|
export {};
|
|
2360
2360
|
|
|
2361
|
+
}
|
|
2362
|
+
declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/parentPropertyGridComponent" {
|
|
2363
|
+
import * as React from "react";
|
|
2364
|
+
import { Observable } from "@babylonjs/core/Misc/observable";
|
|
2365
|
+
import { PropertyChangedEvent } from "@babylonjs/inspector/components/propertyChangedEvent";
|
|
2366
|
+
import { LockObject } from "@babylonjs/shared-ui-components/tabs/propertyGrids/lockObject";
|
|
2367
|
+
import { GlobalState } from "@babylonjs/inspector/components/globalState";
|
|
2368
|
+
import { Node } from "@babylonjs/core/node";
|
|
2369
|
+
interface IParentPropertyGridComponentProps {
|
|
2370
|
+
globalState: GlobalState;
|
|
2371
|
+
lockObject: LockObject;
|
|
2372
|
+
node: Node;
|
|
2373
|
+
onPropertyChangedObservable?: Observable<PropertyChangedEvent>;
|
|
2374
|
+
}
|
|
2375
|
+
export class ParentPropertyGridComponent extends React.Component<IParentPropertyGridComponentProps> {
|
|
2376
|
+
constructor(props: IParentPropertyGridComponentProps);
|
|
2377
|
+
render(): JSX.Element;
|
|
2378
|
+
}
|
|
2379
|
+
export {};
|
|
2380
|
+
|
|
2361
2381
|
}
|
|
2362
2382
|
declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/particleSystems/boxEmitterGridComponent" {
|
|
2363
2383
|
import * as React from "react";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@babylonjs/inspector",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.2",
|
|
4
4
|
"module": "dist/babylon.inspector.bundle.max.js",
|
|
5
5
|
"main": "dist/babylon.inspector.bundle.max.js",
|
|
6
6
|
"typings": "dist/babylon.inspector.module.d.ts",
|
|
@@ -17,11 +17,11 @@
|
|
|
17
17
|
"clean": "rimraf dist"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@babylonjs/core": "^5.0.
|
|
21
|
-
"@babylonjs/gui": "^5.0.
|
|
22
|
-
"@babylonjs/loaders": "^5.0.
|
|
23
|
-
"@babylonjs/materials": "^5.0.
|
|
24
|
-
"@babylonjs/serializers": "^5.0.
|
|
20
|
+
"@babylonjs/core": "^5.0.2",
|
|
21
|
+
"@babylonjs/gui": "^5.0.2",
|
|
22
|
+
"@babylonjs/loaders": "^5.0.2",
|
|
23
|
+
"@babylonjs/materials": "^5.0.2",
|
|
24
|
+
"@babylonjs/serializers": "^5.0.2",
|
|
25
25
|
"@fortawesome/fontawesome-svg-core": "^6.1.0",
|
|
26
26
|
"@fortawesome/free-regular-svg-icons": "^6.0.0",
|
|
27
27
|
"@fortawesome/free-solid-svg-icons": "^6.0.0"
|