@babylonjs/inspector 5.35.1 → 5.37.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.
@@ -192,6 +192,8 @@ declare module "@babylonjs/inspector/components/actionTabs/tabs/debugTabComponen
192
192
  import { IPaneComponentProps } from "@babylonjs/inspector/components/actionTabs/paneComponent";
193
193
  import { PaneComponent } from "@babylonjs/inspector/components/actionTabs/paneComponent";
194
194
  import "@babylonjs/core/Physics/physicsEngineComponent";
195
+ import "@babylonjs/core/Physics/v1/physicsEngineComponent";
196
+ import "@babylonjs/core/Physics/v1/physicsEngineComponent";
195
197
  export class DebugTabComponent extends PaneComponent {
196
198
  private _physicsViewersEnabled;
197
199
  constructor(props: IPaneComponentProps);
@@ -336,6 +338,7 @@ export class AnimationGroupGridComponent extends React.Component<IAnimationGroup
336
338
  private _timelineRef;
337
339
  private _animationCurveEditorContext;
338
340
  constructor(props: IAnimationGroupGridComponentProps);
341
+ componentDidMount(): void;
339
342
  disconnect(animationGroup: AnimationGroup): void;
340
343
  connect(animationGroup: AnimationGroup): void;
341
344
  updateCurrentFrame(animationGroup: AnimationGroup): void;
@@ -1288,8 +1291,12 @@ export class TargetedAnimationGridComponent extends React.Component<ITargetedAni
1288
1291
  private _animationGroup;
1289
1292
  private _animationCurveEditorContext;
1290
1293
  constructor(props: ITargetedAnimationGridComponentProps);
1294
+ findAnimationGroup: () => void;
1291
1295
  playOrPause: () => void;
1292
1296
  deleteAnimation: () => void;
1297
+ updateContextFromProps: () => void;
1298
+ componentDidMount(): void;
1299
+ componentDidUpdate(prevProps: Readonly<ITargetedAnimationGridComponentProps>, prevState: Readonly<{}>, snapshot?: any): void;
1293
1300
  render(): JSX.Element;
1294
1301
  }
1295
1302
  export {};
@@ -2318,6 +2325,8 @@ import { PropertyChangedEvent } from "@babylonjs/inspector/components/propertyCh
2318
2325
  import { LockObject } from "@babylonjs/inspector/tabs/propertyGrids/lockObject";
2319
2326
  import { GlobalState } from "@babylonjs/inspector/components/globalState";
2320
2327
  import "@babylonjs/core/Physics/physicsEngineComponent";
2328
+ import "@babylonjs/core/Physics/v1/physicsEngineComponent";
2329
+ import "@babylonjs/core/Physics/v1/physicsEngineComponent";
2321
2330
  interface IMeshPropertyGridComponentProps {
2322
2331
  globalState: GlobalState;
2323
2332
  mesh: Mesh;
@@ -2886,6 +2895,8 @@ import { PropertyChangedEvent } from "@babylonjs/inspector/components/propertyCh
2886
2895
  import { LockObject } from "@babylonjs/inspector/tabs/propertyGrids/lockObject";
2887
2896
  import { GlobalState } from "@babylonjs/inspector/components/globalState";
2888
2897
  import "@babylonjs/core/Physics/physicsEngineComponent";
2898
+ import "@babylonjs/core/Physics/v1/physicsEngineComponent";
2899
+ import "@babylonjs/core/Physics/v1/physicsEngineComponent";
2889
2900
  interface IScenePropertyGridComponentProps {
2890
2901
  globalState: GlobalState;
2891
2902
  scene: Scene;
@@ -6106,6 +6117,8 @@ export interface ITextInputLineComponentProps {
6106
6117
  unit?: React.ReactNode;
6107
6118
  validator?: (value: string) => boolean;
6108
6119
  multilines?: boolean;
6120
+ throttlePropertyChangedNotification?: boolean;
6121
+ throttlePropertyChangedNotificationDelay?: number;
6109
6122
  }
6110
6123
  export class TextInputLineComponent extends React.Component<ITextInputLineComponentProps, {
6111
6124
  value: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@babylonjs/inspector",
3
- "version": "5.35.1",
3
+ "version": "5.37.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": "^5.35.1",
36
- "@babylonjs/gui": "^5.35.1",
37
- "@babylonjs/gui-editor": "^5.35.1",
38
- "@babylonjs/loaders": "^5.35.1",
39
- "@babylonjs/materials": "^5.35.1",
40
- "@babylonjs/serializers": "^5.35.1",
35
+ "@babylonjs/core": "^5.37.0",
36
+ "@babylonjs/gui": "^5.37.0",
37
+ "@babylonjs/gui-editor": "^5.37.0",
38
+ "@babylonjs/loaders": "^5.37.0",
39
+ "@babylonjs/materials": "^5.37.0",
40
+ "@babylonjs/serializers": "^5.37.0",
41
41
  "@lts/gui": "1.0.0",
42
42
  "react": "^17.0.2",
43
43
  "react-dom": "^17.0.2",