babylonjs-node-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.
@@ -2487,8 +2487,8 @@ declare module BABYLON.NodeEditor {
2487
2487
  declare module BABYLON.NodeEditor.SharedUIComponents {
2488
2488
  interface IVector3LineComponentProps {
2489
2489
  label: string;
2490
- target: any;
2491
- propertyName: string;
2490
+ target?: any;
2491
+ propertyName?: string;
2492
2492
  step?: number;
2493
2493
  onChange?: (newvalue: BABYLON.Vector3) => void;
2494
2494
  useEuler?: boolean;
@@ -2497,6 +2497,8 @@ declare module BABYLON.NodeEditor.SharedUIComponents {
2497
2497
  icon?: string;
2498
2498
  iconLabel?: string;
2499
2499
  lockObject: BABYLON.NodeEditor.SharedUIComponents.LockObject;
2500
+ directValue?: BABYLON.Vector3;
2501
+ additionalCommands?: JSX.Element[];
2500
2502
  }
2501
2503
  export class Vector3LineComponent extends React.Component<IVector3LineComponentProps, {
2502
2504
  isExpanded: boolean;