babylonjs-node-geometry-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.
|
@@ -1879,6 +1879,7 @@ export class GraphNode {
|
|
|
1879
1879
|
private _onDown;
|
|
1880
1880
|
cleanAccumulation(useCeil?: boolean): void;
|
|
1881
1881
|
private _onUp;
|
|
1882
|
+
private _attach;
|
|
1882
1883
|
private _onMove;
|
|
1883
1884
|
renderProperties(): Nullable<JSX.Element>;
|
|
1884
1885
|
_forceRebuild(source: any, propertyName: string, notifiers?: IEditablePropertyOption["notifiers"]): void;
|
|
@@ -3281,7 +3282,7 @@ export interface ICheckBoxLineComponentProps {
|
|
|
3281
3282
|
label?: string;
|
|
3282
3283
|
target?: any;
|
|
3283
3284
|
propertyName?: string;
|
|
3284
|
-
isSelected?: () => boolean;
|
|
3285
|
+
isSelected?: boolean | (() => boolean);
|
|
3285
3286
|
onSelect?: (value: boolean) => void;
|
|
3286
3287
|
onValueChanged?: () => void;
|
|
3287
3288
|
onPropertyChangedObservable?: Observable<PropertyChangedEvent>;
|
|
@@ -6083,6 +6084,7 @@ declare module BABYLON.NodeGeometryEditor.SharedUIComponents {
|
|
|
6083
6084
|
private _onDown;
|
|
6084
6085
|
cleanAccumulation(useCeil?: boolean): void;
|
|
6085
6086
|
private _onUp;
|
|
6087
|
+
private _attach;
|
|
6086
6088
|
private _onMove;
|
|
6087
6089
|
renderProperties(): BABYLON.Nullable<JSX.Element>;
|
|
6088
6090
|
_forceRebuild(source: any, propertyName: string, notifiers?: BABYLON.IEditablePropertyOption["notifiers"]): void;
|
|
@@ -7606,7 +7608,7 @@ declare module BABYLON.NodeGeometryEditor.SharedUIComponents {
|
|
|
7606
7608
|
label?: string;
|
|
7607
7609
|
target?: any;
|
|
7608
7610
|
propertyName?: string;
|
|
7609
|
-
isSelected?: () => boolean;
|
|
7611
|
+
isSelected?: boolean | (() => boolean);
|
|
7610
7612
|
onSelect?: (value: boolean) => void;
|
|
7611
7613
|
onValueChanged?: () => void;
|
|
7612
7614
|
onPropertyChangedObservable?: BABYLON.Observable<BABYLON.NodeGeometryEditor.SharedUIComponents.PropertyChangedEvent>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "babylonjs-node-geometry-editor",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.53.0",
|
|
4
4
|
"main": "babylon.nodeGeometryEditor.js",
|
|
5
5
|
"types": "babylon.nodeGeometryEditor.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.
|
|
17
|
+
"babylonjs": "^7.53.0"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"@dev/build-tools": "1.0.0",
|