babylonjs-inspector 7.48.2 → 7.49.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.
@@ -5190,8 +5190,8 @@ declare module INSPECTOR {
5190
5190
  declare module INSPECTOR.SharedUIComponents {
5191
5191
  interface IVector3LineComponentProps {
5192
5192
  label: string;
5193
- target: any;
5194
- propertyName: string;
5193
+ target?: any;
5194
+ propertyName?: string;
5195
5195
  step?: number;
5196
5196
  onChange?: (newvalue: BABYLON.Vector3) => void;
5197
5197
  useEuler?: boolean;
@@ -5200,6 +5200,8 @@ declare module INSPECTOR.SharedUIComponents {
5200
5200
  icon?: string;
5201
5201
  iconLabel?: string;
5202
5202
  lockObject: INSPECTOR.SharedUIComponents.LockObject;
5203
+ directValue?: BABYLON.Vector3;
5204
+ additionalCommands?: JSX.Element[];
5203
5205
  }
5204
5206
  export class Vector3LineComponent extends React.Component<IVector3LineComponentProps, {
5205
5207
  isExpanded: boolean;
@@ -6151,8 +6151,8 @@ import { PropertyChangedEvent } from "babylonjs-inspector/propertyChangedEvent";
6151
6151
  import { LockObject } from "babylonjs-inspector/tabs/propertyGrids/lockObject";
6152
6152
  interface IVector3LineComponentProps {
6153
6153
  label: string;
6154
- target: any;
6155
- propertyName: string;
6154
+ target?: any;
6155
+ propertyName?: string;
6156
6156
  step?: number;
6157
6157
  onChange?: (newvalue: Vector3) => void;
6158
6158
  useEuler?: boolean;
@@ -6161,6 +6161,8 @@ interface IVector3LineComponentProps {
6161
6161
  icon?: string;
6162
6162
  iconLabel?: string;
6163
6163
  lockObject: LockObject;
6164
+ directValue?: Vector3;
6165
+ additionalCommands?: JSX.Element[];
6164
6166
  }
6165
6167
  export class Vector3LineComponent extends React.Component<IVector3LineComponentProps, {
6166
6168
  isExpanded: boolean;
@@ -13321,8 +13323,8 @@ declare module INSPECTOR {
13321
13323
  declare module INSPECTOR.SharedUIComponents {
13322
13324
  interface IVector3LineComponentProps {
13323
13325
  label: string;
13324
- target: any;
13325
- propertyName: string;
13326
+ target?: any;
13327
+ propertyName?: string;
13326
13328
  step?: number;
13327
13329
  onChange?: (newvalue: BABYLON.Vector3) => void;
13328
13330
  useEuler?: boolean;
@@ -13331,6 +13333,8 @@ declare module INSPECTOR.SharedUIComponents {
13331
13333
  icon?: string;
13332
13334
  iconLabel?: string;
13333
13335
  lockObject: INSPECTOR.SharedUIComponents.LockObject;
13336
+ directValue?: BABYLON.Vector3;
13337
+ additionalCommands?: JSX.Element[];
13334
13338
  }
13335
13339
  export class Vector3LineComponent extends React.Component<IVector3LineComponentProps, {
13336
13340
  isExpanded: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "babylonjs-inspector",
3
- "version": "7.48.2",
3
+ "version": "7.49.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.48.2",
18
- "babylonjs-gui": "^7.48.2",
19
- "babylonjs-gui-editor": "^7.48.2",
20
- "babylonjs-loaders": "^7.48.2",
21
- "babylonjs-materials": "^7.48.2",
22
- "babylonjs-serializers": "^7.48.2"
17
+ "babylonjs": "^7.49.0",
18
+ "babylonjs-gui": "^7.49.0",
19
+ "babylonjs-gui-editor": "^7.49.0",
20
+ "babylonjs-loaders": "^7.49.0",
21
+ "babylonjs-materials": "^7.49.0",
22
+ "babylonjs-serializers": "^7.49.0"
23
23
  },
24
24
  "devDependencies": {
25
25
  "@dev/build-tools": "1.0.0",