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.
package/babylon.nodeEditor.d.ts
CHANGED
|
@@ -1887,6 +1887,7 @@ declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
|
1887
1887
|
private _onDown;
|
|
1888
1888
|
cleanAccumulation(useCeil?: boolean): void;
|
|
1889
1889
|
private _onUp;
|
|
1890
|
+
private _attach;
|
|
1890
1891
|
private _onMove;
|
|
1891
1892
|
renderProperties(): BABYLON.Nullable<JSX.Element>;
|
|
1892
1893
|
_forceRebuild(source: any, propertyName: string, notifiers?: BABYLON.IEditablePropertyOption["notifiers"]): void;
|
|
@@ -3410,7 +3411,7 @@ declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
|
3410
3411
|
label?: string;
|
|
3411
3412
|
target?: any;
|
|
3412
3413
|
propertyName?: string;
|
|
3413
|
-
isSelected?: () => boolean;
|
|
3414
|
+
isSelected?: boolean | (() => boolean);
|
|
3414
3415
|
onSelect?: (value: boolean) => void;
|
|
3415
3416
|
onValueChanged?: () => void;
|
|
3416
3417
|
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.PropertyChangedEvent>;
|