@babylonjs/inspector 7.31.1 → 7.32.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.
@@ -1405,6 +1405,9 @@ export class SettingsTabComponent extends PaneComponent {
|
|
1405
1405
|
declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGridTabComponent" {
|
1406
1406
|
import { IPaneComponentProps } from "@babylonjs/inspector/components/actionTabs/paneComponent";
|
1407
1407
|
import { PaneComponent } from "@babylonjs/inspector/components/actionTabs/paneComponent";
|
1408
|
+
/**
|
1409
|
+
*
|
1410
|
+
*/
|
1408
1411
|
export class PropertyGridTabComponent extends PaneComponent {
|
1409
1412
|
private _timerIntervalId;
|
1410
1413
|
private _lockObject;
|
@@ -2644,6 +2647,31 @@ export class StandardMaterialPropertyGridComponent extends React.Component<IStan
|
|
2644
2647
|
constructor(props: IStandardMaterialPropertyGridComponentProps);
|
2645
2648
|
|
2646
2649
|
|
2650
|
+
}
|
2651
|
+
export {};
|
2652
|
+
|
2653
|
+
}
|
2654
|
+
declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGrids/materials/skyMaterialPropertyGridComponent" {
|
2655
|
+
import * as React from "react";
|
2656
|
+
import { Observable } from "@babylonjs/core/Misc/observable";
|
2657
|
+
import { SkyMaterial } from "@babylonjs/materials/sky/skyMaterial";
|
2658
|
+
import { PropertyChangedEvent } from "@babylonjs/inspector/components/propertyChangedEvent";
|
2659
|
+
import { LockObject } from "@babylonjs/inspector/tabs/propertyGrids/lockObject";
|
2660
|
+
import { GlobalState } from "@babylonjs/inspector/components/globalState";
|
2661
|
+
interface ISkyMaterialPropertyGridComponentProps {
|
2662
|
+
globalState: GlobalState;
|
2663
|
+
material: SkyMaterial;
|
2664
|
+
lockObject: LockObject;
|
2665
|
+
onSelectionChangedObservable?: Observable<any>;
|
2666
|
+
onPropertyChangedObservable?: Observable<PropertyChangedEvent>;
|
2667
|
+
}
|
2668
|
+
/**
|
2669
|
+
* Property grid component for the SkyMaterial
|
2670
|
+
*/
|
2671
|
+
export class SkyMaterialPropertyGridComponent extends React.Component<ISkyMaterialPropertyGridComponentProps> {
|
2672
|
+
constructor(props: ISkyMaterialPropertyGridComponentProps);
|
2673
|
+
|
2674
|
+
|
2647
2675
|
}
|
2648
2676
|
export {};
|
2649
2677
|
|
@@ -6074,6 +6102,7 @@ interface ISliderLineComponentProps {
|
|
6074
6102
|
iconLabel?: string;
|
6075
6103
|
lockObject: LockObject;
|
6076
6104
|
unit?: React.ReactNode;
|
6105
|
+
allowOverflow?: boolean;
|
6077
6106
|
}
|
6078
6107
|
export class SliderLineComponent extends React.Component<ISliderLineComponentProps, {
|
6079
6108
|
value: number;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@babylonjs/inspector",
|
3
|
-
"version": "7.
|
3
|
+
"version": "7.32.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": "^7.
|
36
|
-
"@babylonjs/gui": "^7.
|
37
|
-
"@babylonjs/gui-editor": "^7.
|
38
|
-
"@babylonjs/loaders": "^7.
|
39
|
-
"@babylonjs/materials": "^7.
|
40
|
-
"@babylonjs/serializers": "^7.
|
35
|
+
"@babylonjs/core": "^7.32.0",
|
36
|
+
"@babylonjs/gui": "^7.32.0",
|
37
|
+
"@babylonjs/gui-editor": "^7.32.0",
|
38
|
+
"@babylonjs/loaders": "^7.32.0",
|
39
|
+
"@babylonjs/materials": "^7.32.0",
|
40
|
+
"@babylonjs/serializers": "^7.32.0",
|
41
41
|
"@lts/gui": "1.0.0",
|
42
42
|
"react": "^17.0.2",
|
43
43
|
"react-dom": "^17.0.2"
|