@babylonjs/inspector 8.5.0 → 8.6.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.
@@ -1432,9 +1432,6 @@ export class SettingsTabComponent extends PaneComponent {
|
|
1432
1432
|
declare module "@babylonjs/inspector/components/actionTabs/tabs/propertyGridTabComponent" {
|
1433
1433
|
import { IPaneComponentProps } from "@babylonjs/inspector/components/actionTabs/paneComponent";
|
1434
1434
|
import { PaneComponent } from "@babylonjs/inspector/components/actionTabs/paneComponent";
|
1435
|
-
/**
|
1436
|
-
*
|
1437
|
-
*/
|
1438
1435
|
export class PropertyGridTabComponent extends PaneComponent {
|
1439
1436
|
private _timerIntervalId;
|
1440
1437
|
private _lockObject;
|
@@ -2346,7 +2343,7 @@ export class MetadataGridComponent extends React.Component<IMetadataComponentPro
|
|
2346
2343
|
* @param object - any object
|
2347
2344
|
* @returns is parsable
|
2348
2345
|
*/
|
2349
|
-
parsableJson(object:
|
2346
|
+
parsableJson(object: object): boolean;
|
2350
2347
|
/**
|
2351
2348
|
* @param string - any string
|
2352
2349
|
* @returns parsable string
|
@@ -2363,7 +2360,7 @@ export class MetadataGridComponent extends React.Component<IMetadataComponentPro
|
|
2363
2360
|
* @param o Any Object, String or number
|
2364
2361
|
* @returns Boolean
|
2365
2362
|
*/
|
2366
|
-
objectCanSafelyStringify(o:
|
2363
|
+
objectCanSafelyStringify(o: object | string | number | boolean): boolean;
|
2367
2364
|
copyToClipboard(): void;
|
2368
2365
|
/** Safely checks if valid JSON then appends necessary props without overwriting existing */
|
2369
2366
|
populateGltfExtras(): void;
|
@@ -4887,7 +4884,7 @@ declare module "@babylonjs/inspector/constToOptionsMaps" {
|
|
4887
4884
|
/**
|
4888
4885
|
* Used by both particleSystem and alphaBlendModes
|
4889
4886
|
*/
|
4890
|
-
export const
|
4887
|
+
export const CommonBlendModes: {
|
4891
4888
|
label: string;
|
4892
4889
|
value: number;
|
4893
4890
|
}[];
|
@@ -4896,14 +4893,14 @@ export const commonBlendModes: {
|
|
4896
4893
|
* The below ParticleSystem consts were defined before new Engine alpha blend modes were added, so we have to reference
|
4897
4894
|
* the ParticleSystem.FOO consts explicitly (as the underlying const values are different - they get mapped to engine consts within baseParticleSystem.ts)
|
4898
4895
|
*/
|
4899
|
-
export const
|
4896
|
+
export const BlendModeOptions: {
|
4900
4897
|
label: string;
|
4901
4898
|
value: number;
|
4902
4899
|
}[];
|
4903
4900
|
/**
|
4904
4901
|
* Used to populated the alphaMode dropdown in our various tools (Node Editor, Inspector, etc.)
|
4905
4902
|
*/
|
4906
|
-
export const
|
4903
|
+
export const AlphaModeOptions: {
|
4907
4904
|
label: string;
|
4908
4905
|
value: number;
|
4909
4906
|
}[];
|
@@ -6376,7 +6373,7 @@ interface ITextureButtonLineState {
|
|
6376
6373
|
isOpen: boolean;
|
6377
6374
|
}
|
6378
6375
|
export class TextureButtonLine extends React.Component<ITextureButtonLineProps, ITextureButtonLineState> {
|
6379
|
-
private static
|
6376
|
+
private static _IdGenerator;
|
6380
6377
|
private _id;
|
6381
6378
|
private _uploadInputRef;
|
6382
6379
|
constructor(props: ITextureButtonLineProps);
|
@@ -6915,7 +6912,7 @@ interface IFileMultipleButtonLineComponentProps {
|
|
6915
6912
|
iconLabel?: string;
|
6916
6913
|
}
|
6917
6914
|
export class FileMultipleButtonLineComponent extends React.Component<IFileMultipleButtonLineComponentProps> {
|
6918
|
-
private static
|
6915
|
+
private static _IdGenerator;
|
6919
6916
|
private _id;
|
6920
6917
|
private _uploadInputRef;
|
6921
6918
|
constructor(props: IFileMultipleButtonLineComponentProps);
|
@@ -6935,7 +6932,7 @@ interface IFileButtonLineProps {
|
|
6935
6932
|
iconLabel?: string;
|
6936
6933
|
}
|
6937
6934
|
export class FileButtonLine extends React.Component<IFileButtonLineProps> {
|
6938
|
-
private static
|
6935
|
+
private static _IdGenerator;
|
6939
6936
|
private _id;
|
6940
6937
|
private _uploadInputRef;
|
6941
6938
|
constructor(props: IFileButtonLineProps);
|
@@ -7545,7 +7542,7 @@ export interface IFileButtonLineComponentProps {
|
|
7545
7542
|
iconLabel?: string;
|
7546
7543
|
}
|
7547
7544
|
export class FileButtonLineComponent extends React.Component<IFileButtonLineComponentProps> {
|
7548
|
-
private static
|
7545
|
+
private static _IdGenerator;
|
7549
7546
|
private _id;
|
7550
7547
|
private _uploadInputRef;
|
7551
7548
|
constructor(props: IFileButtonLineComponentProps);
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@babylonjs/inspector",
|
3
|
-
"version": "8.
|
3
|
+
"version": "8.6.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.6.0",
|
36
|
+
"@babylonjs/gui": "^8.6.0",
|
37
|
+
"@babylonjs/gui-editor": "^8.6.0",
|
38
|
+
"@babylonjs/loaders": "^8.6.0",
|
39
|
+
"@babylonjs/materials": "^8.6.0",
|
40
|
+
"@babylonjs/serializers": "^8.6.0",
|
41
41
|
"@lts/gui": "1.0.0",
|
42
42
|
"react": "^18.2.0",
|
43
43
|
"react-dom": "^18.2.0"
|