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>;
@@ -6677,6 +6678,7 @@ declare module BABYLON.NodeEditor.SharedUIComponents {
6677
6678
  private _onDown;
6678
6679
  cleanAccumulation(useCeil?: boolean): void;
6679
6680
  private _onUp;
6681
+ private _attach;
6680
6682
  private _onMove;
6681
6683
  renderProperties(): BABYLON.Nullable<JSX.Element>;
6682
6684
  _forceRebuild(source: any, propertyName: string, notifiers?: BABYLON.IEditablePropertyOption["notifiers"]): void;
@@ -8200,7 +8202,7 @@ declare module BABYLON.NodeEditor.SharedUIComponents {
8200
8202
  label?: string;
8201
8203
  target?: any;
8202
8204
  propertyName?: string;
8203
- isSelected?: () => boolean;
8205
+ isSelected?: boolean | (() => boolean);
8204
8206
  onSelect?: (value: boolean) => void;
8205
8207
  onValueChanged?: () => void;
8206
8208
  onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.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": "babylon.nodeEditor.js",
5
5
  "types": "babylon.nodeEditor.module.d.ts",
6
6
  "files": [
@@ -14,7 +14,7 @@
14
14
  "clean": "rimraf dist && rimraf babylon*.* -g"
15
15
  },
16
16
  "dependencies": {
17
- "babylonjs": "^7.52.2"
17
+ "babylonjs": "^7.53.0"
18
18
  },
19
19
  "devDependencies": {
20
20
  "@dev/build-tools": "1.0.0",