@babylonjs/inspector 8.2.2 → 8.3.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.
@@ -309,12 +309,13 @@ export interface ITreeItemSelectableComponentProps {
|
|
309
309
|
}
|
310
310
|
export class TreeItemSelectableComponent extends React.Component<ITreeItemSelectableComponentProps, {
|
311
311
|
isExpanded: boolean;
|
312
|
+
mustExpand: boolean;
|
312
313
|
isSelected: boolean;
|
313
314
|
}> {
|
314
315
|
private _wasSelected;
|
315
316
|
private _thisRef;
|
316
317
|
constructor(props: ITreeItemSelectableComponentProps);
|
317
|
-
switchExpandedState(): void;
|
318
|
+
switchExpandedState(mustExpand: boolean): void;
|
318
319
|
shouldComponentUpdate(nextProps: ITreeItemSelectableComponentProps, nextState: {
|
319
320
|
isExpanded: boolean;
|
320
321
|
isSelected: boolean;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@babylonjs/inspector",
|
3
|
-
"version": "8.
|
3
|
+
"version": "8.3.0",
|
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",
|
@@ -32,12 +32,12 @@
|
|
32
32
|
"@types/react-dom": ">=16.0.9"
|
33
33
|
},
|
34
34
|
"devDependencies": {
|
35
|
-
"@babylonjs/core": "^8.
|
36
|
-
"@babylonjs/gui": "^8.
|
37
|
-
"@babylonjs/gui-editor": "^8.
|
38
|
-
"@babylonjs/loaders": "^8.
|
39
|
-
"@babylonjs/materials": "^8.
|
40
|
-
"@babylonjs/serializers": "^8.
|
35
|
+
"@babylonjs/core": "^8.3.0",
|
36
|
+
"@babylonjs/gui": "^8.3.0",
|
37
|
+
"@babylonjs/gui-editor": "^8.3.0",
|
38
|
+
"@babylonjs/loaders": "^8.3.0",
|
39
|
+
"@babylonjs/materials": "^8.3.0",
|
40
|
+
"@babylonjs/serializers": "^8.3.0",
|
41
41
|
"@lts/gui": "1.0.0",
|
42
42
|
"react": "^18.2.0",
|
43
43
|
"react-dom": "^18.2.0"
|