babylonjs-inspector 8.4.2 → 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.
@@ -1184,9 +1184,6 @@ declare module INSPECTOR {
1184
1184
  }
1185
1185
 
1186
1186
 
1187
- /**
1188
- *
1189
- */
1190
1187
  export class PropertyGridTabComponent extends PaneComponent {
1191
1188
  private _timerIntervalId;
1192
1189
  private _lockObject;
@@ -1815,7 +1812,7 @@ declare module INSPECTOR {
1815
1812
  * @param object - any object
1816
1813
  * @returns is parsable
1817
1814
  */
1818
- parsableJson(object: Object): boolean;
1815
+ parsableJson(object: object): boolean;
1819
1816
  /**
1820
1817
  * @param string - any string
1821
1818
  * @returns parsable string
@@ -1832,7 +1829,7 @@ declare module INSPECTOR {
1832
1829
  * @param o Any Object, String or number
1833
1830
  * @returns Boolean
1834
1831
  */
1835
- objectCanSafelyStringify(o: Object | string | number): boolean;
1832
+ objectCanSafelyStringify(o: object | string | number | boolean): boolean;
1836
1833
  copyToClipboard(): void;
1837
1834
  /** Safely checks if valid JSON then appends necessary props without overwriting existing */
1838
1835
  populateGltfExtras(): void;
@@ -3856,7 +3853,7 @@ declare module INSPECTOR.SharedUIComponents {
3856
3853
  /**
3857
3854
  * Used by both particleSystem and alphaBlendModes
3858
3855
  */
3859
- export var commonBlendModes: {
3856
+ export var CommonBlendModes: {
3860
3857
  label: string;
3861
3858
  value: number;
3862
3859
  }[];
@@ -3865,14 +3862,14 @@ declare module INSPECTOR.SharedUIComponents {
3865
3862
  * The below ParticleSystem consts were defined before new Engine alpha blend modes were added, so we have to reference
3866
3863
  * the ParticleSystem.FOO consts explicitly (as the underlying var values are different - they get mapped to engine consts within baseParticleSystem.ts)
3867
3864
  */
3868
- export var blendModeOptions: {
3865
+ export var BlendModeOptions: {
3869
3866
  label: string;
3870
3867
  value: number;
3871
3868
  }[];
3872
3869
  /**
3873
3870
  * Used to populated the alphaMode dropdown in our various tools (Node Editor, Inspector, etc.)
3874
3871
  */
3875
- export var alphaModeOptions: {
3872
+ export var AlphaModeOptions: {
3876
3873
  label: string;
3877
3874
  value: number;
3878
3875
  }[];
@@ -5413,7 +5410,7 @@ declare module INSPECTOR.SharedUIComponents {
5413
5410
  isOpen: boolean;
5414
5411
  }
5415
5412
  export class TextureButtonLine extends React.Component<ITextureButtonLineProps, ITextureButtonLineState> {
5416
- private static _IDGenerator;
5413
+ private static _IdGenerator;
5417
5414
  private _id;
5418
5415
  private _uploadInputRef;
5419
5416
  constructor(props: ITextureButtonLineProps);
@@ -6012,7 +6009,7 @@ declare module INSPECTOR.SharedUIComponents {
6012
6009
  iconLabel?: string;
6013
6010
  }
6014
6011
  export class FileMultipleButtonLineComponent extends React.Component<IFileMultipleButtonLineComponentProps> {
6015
- private static _IDGenerator;
6012
+ private static _IdGenerator;
6016
6013
  private _id;
6017
6014
  private _uploadInputRef;
6018
6015
  constructor(props: IFileMultipleButtonLineComponentProps);
@@ -6036,7 +6033,7 @@ declare module INSPECTOR.SharedUIComponents {
6036
6033
  iconLabel?: string;
6037
6034
  }
6038
6035
  export class FileButtonLine extends React.Component<IFileButtonLineProps> {
6039
- private static _IDGenerator;
6036
+ private static _IdGenerator;
6040
6037
  private _id;
6041
6038
  private _uploadInputRef;
6042
6039
  constructor(props: IFileButtonLineProps);
@@ -6772,7 +6769,7 @@ declare module INSPECTOR.SharedUIComponents {
6772
6769
  iconLabel?: string;
6773
6770
  }
6774
6771
  export class FileButtonLineComponent extends React.Component<IFileButtonLineComponentProps> {
6775
- private static _IDGenerator;
6772
+ private static _IdGenerator;
6776
6773
  private _id;
6777
6774
  private _uploadInputRef;
6778
6775
  constructor(props: IFileButtonLineComponentProps);
@@ -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: Object): boolean;
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: Object | string | number): boolean;
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 commonBlendModes: {
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 blendModeOptions: {
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 alphaModeOptions: {
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 _IDGenerator;
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 _IDGenerator;
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 _IDGenerator;
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 _IDGenerator;
7545
+ private static _IdGenerator;
7549
7546
  private _id;
7550
7547
  private _uploadInputRef;
7551
7548
  constructor(props: IFileButtonLineComponentProps);
@@ -9440,9 +9437,6 @@ declare module INSPECTOR {
9440
9437
  }
9441
9438
 
9442
9439
 
9443
- /**
9444
- *
9445
- */
9446
9440
  export class PropertyGridTabComponent extends PaneComponent {
9447
9441
  private _timerIntervalId;
9448
9442
  private _lockObject;
@@ -10071,7 +10065,7 @@ declare module INSPECTOR {
10071
10065
  * @param object - any object
10072
10066
  * @returns is parsable
10073
10067
  */
10074
- parsableJson(object: Object): boolean;
10068
+ parsableJson(object: object): boolean;
10075
10069
  /**
10076
10070
  * @param string - any string
10077
10071
  * @returns parsable string
@@ -10088,7 +10082,7 @@ declare module INSPECTOR {
10088
10082
  * @param o Any Object, String or number
10089
10083
  * @returns Boolean
10090
10084
  */
10091
- objectCanSafelyStringify(o: Object | string | number): boolean;
10085
+ objectCanSafelyStringify(o: object | string | number | boolean): boolean;
10092
10086
  copyToClipboard(): void;
10093
10087
  /** Safely checks if valid JSON then appends necessary props without overwriting existing */
10094
10088
  populateGltfExtras(): void;
@@ -12112,7 +12106,7 @@ declare module INSPECTOR.SharedUIComponents {
12112
12106
  /**
12113
12107
  * Used by both particleSystem and alphaBlendModes
12114
12108
  */
12115
- export var commonBlendModes: {
12109
+ export var CommonBlendModes: {
12116
12110
  label: string;
12117
12111
  value: number;
12118
12112
  }[];
@@ -12121,14 +12115,14 @@ declare module INSPECTOR.SharedUIComponents {
12121
12115
  * The below ParticleSystem consts were defined before new Engine alpha blend modes were added, so we have to reference
12122
12116
  * the ParticleSystem.FOO consts explicitly (as the underlying var values are different - they get mapped to engine consts within baseParticleSystem.ts)
12123
12117
  */
12124
- export var blendModeOptions: {
12118
+ export var BlendModeOptions: {
12125
12119
  label: string;
12126
12120
  value: number;
12127
12121
  }[];
12128
12122
  /**
12129
12123
  * Used to populated the alphaMode dropdown in our various tools (Node Editor, Inspector, etc.)
12130
12124
  */
12131
- export var alphaModeOptions: {
12125
+ export var AlphaModeOptions: {
12132
12126
  label: string;
12133
12127
  value: number;
12134
12128
  }[];
@@ -13669,7 +13663,7 @@ declare module INSPECTOR.SharedUIComponents {
13669
13663
  isOpen: boolean;
13670
13664
  }
13671
13665
  export class TextureButtonLine extends React.Component<ITextureButtonLineProps, ITextureButtonLineState> {
13672
- private static _IDGenerator;
13666
+ private static _IdGenerator;
13673
13667
  private _id;
13674
13668
  private _uploadInputRef;
13675
13669
  constructor(props: ITextureButtonLineProps);
@@ -14268,7 +14262,7 @@ declare module INSPECTOR.SharedUIComponents {
14268
14262
  iconLabel?: string;
14269
14263
  }
14270
14264
  export class FileMultipleButtonLineComponent extends React.Component<IFileMultipleButtonLineComponentProps> {
14271
- private static _IDGenerator;
14265
+ private static _IdGenerator;
14272
14266
  private _id;
14273
14267
  private _uploadInputRef;
14274
14268
  constructor(props: IFileMultipleButtonLineComponentProps);
@@ -14292,7 +14286,7 @@ declare module INSPECTOR.SharedUIComponents {
14292
14286
  iconLabel?: string;
14293
14287
  }
14294
14288
  export class FileButtonLine extends React.Component<IFileButtonLineProps> {
14295
- private static _IDGenerator;
14289
+ private static _IdGenerator;
14296
14290
  private _id;
14297
14291
  private _uploadInputRef;
14298
14292
  constructor(props: IFileButtonLineProps);
@@ -15028,7 +15022,7 @@ declare module INSPECTOR.SharedUIComponents {
15028
15022
  iconLabel?: string;
15029
15023
  }
15030
15024
  export class FileButtonLineComponent extends React.Component<IFileButtonLineComponentProps> {
15031
- private static _IDGenerator;
15025
+ private static _IdGenerator;
15032
15026
  private _id;
15033
15027
  private _uploadInputRef;
15034
15028
  constructor(props: IFileButtonLineComponentProps);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "babylonjs-inspector",
3
- "version": "8.4.2",
3
+ "version": "8.6.0",
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.4.2",
18
- "babylonjs-gui": "^8.4.2",
19
- "babylonjs-gui-editor": "^8.4.2",
20
- "babylonjs-loaders": "^8.4.2",
21
- "babylonjs-materials": "^8.4.2",
22
- "babylonjs-serializers": "^8.4.2"
17
+ "babylonjs": "^8.6.0",
18
+ "babylonjs-gui": "^8.6.0",
19
+ "babylonjs-gui-editor": "^8.6.0",
20
+ "babylonjs-loaders": "^8.6.0",
21
+ "babylonjs-materials": "^8.6.0",
22
+ "babylonjs-serializers": "^8.6.0"
23
23
  },
24
24
  "devDependencies": {
25
25
  "@dev/build-tools": "1.0.0",