@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.
@@ -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>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@babylonjs/gui-editor",
3
- "version": "7.52.2",
3
+ "version": "7.52.3",
4
4
  "main": "dist/babylon.guiEditor.max.js",
5
5
  "module": "dist/babylon.guiEditor.max.js",
6
6
  "esnext": "dist/babylon.guiEditor.max.js",
@@ -24,8 +24,8 @@
24
24
  "@types/react-dom": ">=16.0.9"
25
25
  },
26
26
  "devDependencies": {
27
- "@babylonjs/core": "^7.52.2",
28
- "@babylonjs/gui": "^7.52.2",
27
+ "@babylonjs/core": "^7.52.3",
28
+ "@babylonjs/gui": "^7.52.3",
29
29
  "react": "^17.0.2",
30
30
  "react-dom": "^17.0.2"
31
31
  },