babylonjs-inspector 8.2.2 → 8.3.1
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
|
@@ -256,12 +256,13 @@ declare module INSPECTOR {
|
|
|
256
256
|
}
|
|
257
257
|
export class TreeItemSelectableComponent extends React.Component<ITreeItemSelectableComponentProps, {
|
|
258
258
|
isExpanded: boolean;
|
|
259
|
+
mustExpand: boolean;
|
|
259
260
|
isSelected: boolean;
|
|
260
261
|
}> {
|
|
261
262
|
private _wasSelected;
|
|
262
263
|
private _thisRef;
|
|
263
264
|
constructor(props: ITreeItemSelectableComponentProps);
|
|
264
|
-
switchExpandedState(): void;
|
|
265
|
+
switchExpandedState(mustExpand: boolean): void;
|
|
265
266
|
shouldComponentUpdate(nextProps: ITreeItemSelectableComponentProps, nextState: {
|
|
266
267
|
isExpanded: boolean;
|
|
267
268
|
isSelected: boolean;
|
|
@@ -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;
|
|
@@ -8485,12 +8486,13 @@ declare module INSPECTOR {
|
|
|
8485
8486
|
}
|
|
8486
8487
|
export class TreeItemSelectableComponent extends React.Component<ITreeItemSelectableComponentProps, {
|
|
8487
8488
|
isExpanded: boolean;
|
|
8489
|
+
mustExpand: boolean;
|
|
8488
8490
|
isSelected: boolean;
|
|
8489
8491
|
}> {
|
|
8490
8492
|
private _wasSelected;
|
|
8491
8493
|
private _thisRef;
|
|
8492
8494
|
constructor(props: ITreeItemSelectableComponentProps);
|
|
8493
|
-
switchExpandedState(): void;
|
|
8495
|
+
switchExpandedState(mustExpand: boolean): void;
|
|
8494
8496
|
shouldComponentUpdate(nextProps: ITreeItemSelectableComponentProps, nextState: {
|
|
8495
8497
|
isExpanded: boolean;
|
|
8496
8498
|
isSelected: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "babylonjs-inspector",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.3.1",
|
|
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": "^8.
|
|
18
|
-
"babylonjs-gui": "^8.
|
|
19
|
-
"babylonjs-gui-editor": "^8.
|
|
20
|
-
"babylonjs-loaders": "^8.
|
|
21
|
-
"babylonjs-materials": "^8.
|
|
22
|
-
"babylonjs-serializers": "^8.
|
|
17
|
+
"babylonjs": "^8.3.1",
|
|
18
|
+
"babylonjs-gui": "^8.3.1",
|
|
19
|
+
"babylonjs-gui-editor": "^8.3.1",
|
|
20
|
+
"babylonjs-loaders": "^8.3.1",
|
|
21
|
+
"babylonjs-materials": "^8.3.1",
|
|
22
|
+
"babylonjs-serializers": "^8.3.1"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"@dev/build-tools": "1.0.0",
|