babylonjs-gui-editor 7.52.2 → 7.52.3

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.
@@ -2108,6 +2108,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
2108
2108
  private _onDown;
2109
2109
  cleanAccumulation(useCeil?: boolean): void;
2110
2110
  private _onUp;
2111
+ private _attach;
2111
2112
  private _onMove;
2112
2113
  renderProperties(): Nullable<JSX.Element>;
2113
2114
  _forceRebuild(source: any, propertyName: string, notifiers?: IEditablePropertyOption["notifiers"]): void;
@@ -3631,7 +3632,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
3631
3632
  label?: string;
3632
3633
  target?: any;
3633
3634
  propertyName?: string;
3634
- isSelected?: () => boolean;
3635
+ isSelected?: boolean | (() => boolean);
3635
3636
  onSelect?: (value: boolean) => void;
3636
3637
  onValueChanged?: () => void;
3637
3638
  onPropertyChangedObservable?: Observable<BABYLON.GuiEditor.SharedUIComponents.PropertyChangedEvent>;