babylonjs-gui-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.
@@ -2377,6 +2377,7 @@ export class GraphNode {
2377
2377
  private _onDown;
2378
2378
  cleanAccumulation(useCeil?: boolean): void;
2379
2379
  private _onUp;
2380
+ private _attach;
2380
2381
  private _onMove;
2381
2382
  renderProperties(): Nullable<JSX.Element>;
2382
2383
  _forceRebuild(source: any, propertyName: string, notifiers?: IEditablePropertyOption["notifiers"]): void;
@@ -3779,7 +3780,7 @@ export interface ICheckBoxLineComponentProps {
3779
3780
  label?: string;
3780
3781
  target?: any;
3781
3782
  propertyName?: string;
3782
- isSelected?: () => boolean;
3783
+ isSelected?: boolean | (() => boolean);
3783
3784
  onSelect?: (value: boolean) => void;
3784
3785
  onValueChanged?: () => void;
3785
3786
  onPropertyChangedObservable?: Observable<PropertyChangedEvent>;
@@ -7047,6 +7048,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
7047
7048
  private _onDown;
7048
7049
  cleanAccumulation(useCeil?: boolean): void;
7049
7050
  private _onUp;
7051
+ private _attach;
7050
7052
  private _onMove;
7051
7053
  renderProperties(): Nullable<JSX.Element>;
7052
7054
  _forceRebuild(source: any, propertyName: string, notifiers?: IEditablePropertyOption["notifiers"]): void;
@@ -8570,7 +8572,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
8570
8572
  label?: string;
8571
8573
  target?: any;
8572
8574
  propertyName?: string;
8573
- isSelected?: () => boolean;
8575
+ isSelected?: boolean | (() => boolean);
8574
8576
  onSelect?: (value: boolean) => void;
8575
8577
  onValueChanged?: () => void;
8576
8578
  onPropertyChangedObservable?: Observable<BABYLON.GuiEditor.SharedUIComponents.PropertyChangedEvent>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "babylonjs-gui-editor",
3
- "version": "7.52.2",
3
+ "version": "7.53.0",
4
4
  "main": "babylon.guiEditor.max.js",
5
5
  "types": "babylon.guiEditor.module.d.ts",
6
6
  "files": [
@@ -14,8 +14,8 @@
14
14
  "clean": "rimraf dist && rimraf babylon*.* -g"
15
15
  },
16
16
  "dependencies": {
17
- "babylonjs": "^7.52.2",
18
- "babylonjs-gui": "^7.52.2"
17
+ "babylonjs": "^7.53.0",
18
+ "babylonjs-gui": "^7.53.0"
19
19
  },
20
20
  "devDependencies": {
21
21
  "@dev/build-tools": "1.0.0",