@babylonjs/node-editor 7.52.2 → 7.53.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.
@@ -2228,6 +2228,7 @@ export class GraphNode {
2228
2228
  private _onDown;
2229
2229
  cleanAccumulation(useCeil?: boolean): void;
2230
2230
  private _onUp;
2231
+ private _attach;
2231
2232
  private _onMove;
2232
2233
  renderProperties(): Nullable<JSX.Element>;
2233
2234
  _forceRebuild(source: any, propertyName: string, notifiers?: IEditablePropertyOption["notifiers"]): void;
@@ -3630,7 +3631,7 @@ export interface ICheckBoxLineComponentProps {
3630
3631
  label?: string;
3631
3632
  target?: any;
3632
3633
  propertyName?: string;
3633
- isSelected?: () => boolean;
3634
+ isSelected?: boolean | (() => boolean);
3634
3635
  onSelect?: (value: boolean) => void;
3635
3636
  onValueChanged?: () => void;
3636
3637
  onPropertyChangedObservable?: Observable<PropertyChangedEvent>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@babylonjs/node-editor",
3
- "version": "7.52.2",
3
+ "version": "7.53.0",
4
4
  "main": "dist/babylon.nodeEditor.max.js",
5
5
  "module": "dist/babylon.nodeEditor.max.js",
6
6
  "esnext": "dist/babylon.nodeEditor.max.js",
@@ -23,7 +23,7 @@
23
23
  "@types/react-dom": ">=16.0.9"
24
24
  },
25
25
  "devDependencies": {
26
- "@babylonjs/core": "^7.52.2",
26
+ "@babylonjs/core": "^7.53.0",
27
27
  "react": "^17.0.2",
28
28
  "react-dom": "^17.0.2"
29
29
  },