@babylonjs/gui-editor 7.48.3 → 7.50.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.
@@ -2945,8 +2945,8 @@ import { PropertyChangedEvent } from "@babylonjs/gui-editor/propertyChangedEvent
2945
2945
  import { LockObject } from "@babylonjs/gui-editor/tabs/propertyGrids/lockObject";
2946
2946
  interface IVector3LineComponentProps {
2947
2947
  label: string;
2948
- target: any;
2949
- propertyName: string;
2948
+ target?: any;
2949
+ propertyName?: string;
2950
2950
  step?: number;
2951
2951
  onChange?: (newvalue: Vector3) => void;
2952
2952
  useEuler?: boolean;
@@ -2955,6 +2955,8 @@ interface IVector3LineComponentProps {
2955
2955
  icon?: string;
2956
2956
  iconLabel?: string;
2957
2957
  lockObject: LockObject;
2958
+ directValue?: Vector3;
2959
+ additionalCommands?: JSX.Element[];
2958
2960
  }
2959
2961
  export class Vector3LineComponent extends React.Component<IVector3LineComponentProps, {
2960
2962
  isExpanded: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@babylonjs/gui-editor",
3
- "version": "7.48.3",
3
+ "version": "7.50.0",
4
4
  "main": "dist/babylon.guiEditor.max.js",
5
5
  "module": "dist/babylon.guiEditor.max.js",
6
6
  "esnext": "dist/babylon.guiEditor.max.js",
@@ -24,8 +24,8 @@
24
24
  "@types/react-dom": ">=16.0.9"
25
25
  },
26
26
  "devDependencies": {
27
- "@babylonjs/core": "^7.48.3",
28
- "@babylonjs/gui": "^7.48.3",
27
+ "@babylonjs/core": "^7.50.0",
28
+ "@babylonjs/gui": "^7.50.0",
29
29
  "react": "^17.0.2",
30
30
  "react-dom": "^17.0.2"
31
31
  },