babylonjs-inspector 7.45.0 → 7.47.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.
@@ -2549,6 +2549,19 @@ declare module INSPECTOR {
2549
2549
  }
2550
2550
 
2551
2551
 
2552
+ interface IRectAreaLightPropertyGridComponentProps {
2553
+ globalState: GlobalState;
2554
+ light: BABYLON.RectAreaLight;
2555
+ lockObject: INSPECTOR.SharedUIComponents.LockObject;
2556
+ onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
2557
+ onSelectionChangedObservable?: BABYLON.Observable<any>;
2558
+ }
2559
+ export class RectAreaLightPropertyGridComponent extends React.Component<IRectAreaLightPropertyGridComponentProps> {
2560
+ constructor(props: IRectAreaLightPropertyGridComponentProps);
2561
+ render(): import("react/jsx-runtime").JSX.Element;
2562
+ }
2563
+
2564
+
2552
2565
  interface IPointLightPropertyGridComponentProps {
2553
2566
  globalState: GlobalState;
2554
2567
  light: BABYLON.PointLight;
@@ -4344,6 +4357,8 @@ declare module INSPECTOR.SharedUIComponents {
4344
4357
  data: INSPECTOR.SharedUIComponents.INodeData;
4345
4358
  name: string;
4346
4359
  }>;
4360
+ private _isRebuildQueued;
4361
+ queueRebuildCommand(): void;
4347
4362
  }
4348
4363
 
4349
4364
 
@@ -5080,6 +5095,9 @@ declare module INSPECTOR.SharedUIComponents {
5080
5095
  outputs: INSPECTOR.SharedUIComponents.IPortData[];
5081
5096
  invisibleEndpoints?: BABYLON.Nullable<any[]>;
5082
5097
  isConnectedToOutput?: () => boolean;
5098
+ isActive?: boolean;
5099
+ setIsActive?: (value: boolean) => void;
5100
+ canBeActivated?: boolean;
5083
5101
  }
5084
5102
 
5085
5103
 
@@ -3290,6 +3290,27 @@ export class SpotLightPropertyGridComponent extends React.Component<ISpotLightPr
3290
3290
  }
3291
3291
  export {};
3292
3292
 
3293
+ }
3294
+ declare module "babylonjs-inspector/components/actionTabs/tabs/propertyGrids/lights/rectAreaLightPropertyGridComponent" {
3295
+ import * as React from "react";
3296
+ import { Observable } from "babylonjs/Misc/observable";
3297
+ import { RectAreaLight } from "babylonjs/Lights/rectAreaLight";
3298
+ import { PropertyChangedEvent } from "babylonjs-inspector/components/propertyChangedEvent";
3299
+ import { LockObject } from "babylonjs-inspector/tabs/propertyGrids/lockObject";
3300
+ import { GlobalState } from "babylonjs-inspector/components/globalState";
3301
+ interface IRectAreaLightPropertyGridComponentProps {
3302
+ globalState: GlobalState;
3303
+ light: RectAreaLight;
3304
+ lockObject: LockObject;
3305
+ onPropertyChangedObservable?: Observable<PropertyChangedEvent>;
3306
+ onSelectionChangedObservable?: Observable<any>;
3307
+ }
3308
+ export class RectAreaLightPropertyGridComponent extends React.Component<IRectAreaLightPropertyGridComponentProps> {
3309
+ constructor(props: IRectAreaLightPropertyGridComponentProps);
3310
+
3311
+ }
3312
+ export {};
3313
+
3293
3314
  }
3294
3315
  declare module "babylonjs-inspector/components/actionTabs/tabs/propertyGrids/lights/pointLightPropertyGridComponent" {
3295
3316
  import * as React from "react";
@@ -5336,6 +5357,8 @@ export class StateManager {
5336
5357
  data: INodeData;
5337
5358
  name: string;
5338
5359
  }>;
5360
+ private _isRebuildQueued;
5361
+ queueRebuildCommand(): void;
5339
5362
  }
5340
5363
 
5341
5364
  }
@@ -6040,6 +6063,9 @@ export interface INodeData {
6040
6063
  outputs: IPortData[];
6041
6064
  invisibleEndpoints?: Nullable<any[]>;
6042
6065
  isConnectedToOutput?: () => boolean;
6066
+ isActive?: boolean;
6067
+ setIsActive?: (value: boolean) => void;
6068
+ canBeActivated?: boolean;
6043
6069
  }
6044
6070
 
6045
6071
  }
@@ -10654,6 +10680,19 @@ declare module INSPECTOR {
10654
10680
  }
10655
10681
 
10656
10682
 
10683
+ interface IRectAreaLightPropertyGridComponentProps {
10684
+ globalState: GlobalState;
10685
+ light: BABYLON.RectAreaLight;
10686
+ lockObject: INSPECTOR.SharedUIComponents.LockObject;
10687
+ onPropertyChangedObservable?: BABYLON.Observable<PropertyChangedEvent>;
10688
+ onSelectionChangedObservable?: BABYLON.Observable<any>;
10689
+ }
10690
+ export class RectAreaLightPropertyGridComponent extends React.Component<IRectAreaLightPropertyGridComponentProps> {
10691
+ constructor(props: IRectAreaLightPropertyGridComponentProps);
10692
+ render(): import("react/jsx-runtime").JSX.Element;
10693
+ }
10694
+
10695
+
10657
10696
  interface IPointLightPropertyGridComponentProps {
10658
10697
  globalState: GlobalState;
10659
10698
  light: BABYLON.PointLight;
@@ -12449,6 +12488,8 @@ declare module INSPECTOR.SharedUIComponents {
12449
12488
  data: INSPECTOR.SharedUIComponents.INodeData;
12450
12489
  name: string;
12451
12490
  }>;
12491
+ private _isRebuildQueued;
12492
+ queueRebuildCommand(): void;
12452
12493
  }
12453
12494
 
12454
12495
 
@@ -13185,6 +13226,9 @@ declare module INSPECTOR.SharedUIComponents {
13185
13226
  outputs: INSPECTOR.SharedUIComponents.IPortData[];
13186
13227
  invisibleEndpoints?: BABYLON.Nullable<any[]>;
13187
13228
  isConnectedToOutput?: () => boolean;
13229
+ isActive?: boolean;
13230
+ setIsActive?: (value: boolean) => void;
13231
+ canBeActivated?: boolean;
13188
13232
  }
13189
13233
 
13190
13234
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "babylonjs-inspector",
3
- "version": "7.45.0",
3
+ "version": "7.47.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": "^7.45.0",
18
- "babylonjs-gui": "^7.45.0",
19
- "babylonjs-gui-editor": "^7.45.0",
20
- "babylonjs-loaders": "^7.45.0",
21
- "babylonjs-materials": "^7.45.0",
22
- "babylonjs-serializers": "^7.45.0"
17
+ "babylonjs": "^7.47.0",
18
+ "babylonjs-gui": "^7.47.0",
19
+ "babylonjs-gui-editor": "^7.47.0",
20
+ "babylonjs-loaders": "^7.47.0",
21
+ "babylonjs-materials": "^7.47.0",
22
+ "babylonjs-serializers": "^7.47.0"
23
23
  },
24
24
  "devDependencies": {
25
25
  "@dev/build-tools": "1.0.0",