@babylonjs/inspector 5.0.0-rc.0 → 5.0.0-rc.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.
@@ -465,8 +465,6 @@ declare module "@babylonjs/inspector/sharedUiComponents/lines/checkBoxLineCompon
465
465
  isDisabled?: boolean;
466
466
  isConflict: boolean;
467
467
  }> {
468
- private static _UniqueIdSeed;
469
- private _uniqueId;
470
468
  private _localChange;
471
469
  constructor(props: ICheckBoxLineComponentProps);
472
470
  shouldComponentUpdate(nextProps: ICheckBoxLineComponentProps, nextState: {
@@ -992,7 +990,7 @@ declare module "@babylonjs/inspector/sharedUiComponents/lines/textInputLineCompo
992
990
  import { PropertyChangedEvent } from "@babylonjs/inspector/sharedUiComponents/propertyChangedEvent";
993
991
  import { LockObject } from "@babylonjs/inspector/sharedUiComponents/tabs/propertyGrids/lockObject";
994
992
  interface ITextInputLineComponentProps {
995
- label: string;
993
+ label?: string;
996
994
  lockObject: LockObject;
997
995
  target?: any;
998
996
  propertyName?: string;
@@ -5072,6 +5070,16 @@ declare module "@babylonjs/inspector/sharedUiComponents/lines/iconButtonLineComp
5072
5070
  render(): JSX.Element;
5073
5071
  }
5074
5072
  }
5073
+ declare module "@babylonjs/inspector/sharedUiComponents/lines/iconComponent" {
5074
+ import * as React from "react";
5075
+ interface IIconComponentProps {
5076
+ icon: string;
5077
+ label?: string;
5078
+ }
5079
+ export class IconComponent extends React.Component<IIconComponentProps> {
5080
+ render(): JSX.Element;
5081
+ }
5082
+ }
5075
5083
  declare module "@babylonjs/inspector/sharedUiComponents/lines/popup" {
5076
5084
  export class Popup {
5077
5085
  static CreatePopup(title: string, windowVariableName: string, width?: number, height?: number): HTMLDivElement | null;
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  },
5
5
  "name": "@babylonjs/inspector",
6
6
  "description": "The Babylon.js inspector.",
7
- "version": "5.0.0-rc.0",
7
+ "version": "5.0.0-rc.1",
8
8
  "repository": {
9
9
  "type": "git",
10
10
  "url": "https://github.com/BabylonJS/Babylon.js.git"
@@ -27,12 +27,12 @@
27
27
  ],
28
28
  "license": "Apache-2.0",
29
29
  "dependencies": {
30
- "@babylonjs/core": "5.0.0-rc.0",
31
- "@babylonjs/gui": "5.0.0-rc.0",
32
- "@babylonjs/loaders": "5.0.0-rc.0",
33
- "@babylonjs/materials": "5.0.0-rc.0",
34
- "@babylonjs/serializers": "5.0.0-rc.0",
35
- "babylonjs-gltf2interface": "5.0.0-rc.0",
30
+ "@babylonjs/core": "5.0.0-rc.1",
31
+ "@babylonjs/gui": "5.0.0-rc.1",
32
+ "@babylonjs/loaders": "5.0.0-rc.1",
33
+ "@babylonjs/materials": "5.0.0-rc.1",
34
+ "@babylonjs/serializers": "5.0.0-rc.1",
35
+ "babylonjs-gltf2interface": "5.0.0-rc.1",
36
36
  "tslib": "^2.3.1"
37
37
  },
38
38
  "peerDependencies": {