babylonjs-inspector 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.
package/babylon.inspector.d.ts
CHANGED
|
@@ -4592,6 +4592,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
4592
4592
|
private _onDown;
|
|
4593
4593
|
cleanAccumulation(useCeil?: boolean): void;
|
|
4594
4594
|
private _onUp;
|
|
4595
|
+
private _attach;
|
|
4595
4596
|
private _onMove;
|
|
4596
4597
|
renderProperties(): BABYLON.Nullable<JSX.Element>;
|
|
4597
4598
|
_forceRebuild(source: any, propertyName: string, notifiers?: BABYLON.IEditablePropertyOption["notifiers"]): void;
|
|
@@ -6115,7 +6116,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
6115
6116
|
label?: string;
|
|
6116
6117
|
target?: any;
|
|
6117
6118
|
propertyName?: string;
|
|
6118
|
-
isSelected?: () => boolean;
|
|
6119
|
+
isSelected?: boolean | (() => boolean);
|
|
6119
6120
|
onSelect?: (value: boolean) => void;
|
|
6120
6121
|
onValueChanged?: () => void;
|
|
6121
6122
|
onPropertyChangedObservable?: BABYLON.Observable<INSPECTOR.SharedUIComponents.PropertyChangedEvent>;
|
|
@@ -5587,6 +5587,7 @@ export class GraphNode {
|
|
|
5587
5587
|
private _onDown;
|
|
5588
5588
|
cleanAccumulation(useCeil?: boolean): void;
|
|
5589
5589
|
private _onUp;
|
|
5590
|
+
private _attach;
|
|
5590
5591
|
private _onMove;
|
|
5591
5592
|
renderProperties(): Nullable<JSX.Element>;
|
|
5592
5593
|
_forceRebuild(source: any, propertyName: string, notifiers?: IEditablePropertyOption["notifiers"]): void;
|
|
@@ -6989,7 +6990,7 @@ export interface ICheckBoxLineComponentProps {
|
|
|
6989
6990
|
label?: string;
|
|
6990
6991
|
target?: any;
|
|
6991
6992
|
propertyName?: string;
|
|
6992
|
-
isSelected?: () => boolean;
|
|
6993
|
+
isSelected?: boolean | (() => boolean);
|
|
6993
6994
|
onSelect?: (value: boolean) => void;
|
|
6994
6995
|
onValueChanged?: () => void;
|
|
6995
6996
|
onPropertyChangedObservable?: Observable<PropertyChangedEvent>;
|
|
@@ -12741,6 +12742,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
12741
12742
|
private _onDown;
|
|
12742
12743
|
cleanAccumulation(useCeil?: boolean): void;
|
|
12743
12744
|
private _onUp;
|
|
12745
|
+
private _attach;
|
|
12744
12746
|
private _onMove;
|
|
12745
12747
|
renderProperties(): BABYLON.Nullable<JSX.Element>;
|
|
12746
12748
|
_forceRebuild(source: any, propertyName: string, notifiers?: BABYLON.IEditablePropertyOption["notifiers"]): void;
|
|
@@ -14264,7 +14266,7 @@ declare module INSPECTOR.SharedUIComponents {
|
|
|
14264
14266
|
label?: string;
|
|
14265
14267
|
target?: any;
|
|
14266
14268
|
propertyName?: string;
|
|
14267
|
-
isSelected?: () => boolean;
|
|
14269
|
+
isSelected?: boolean | (() => boolean);
|
|
14268
14270
|
onSelect?: (value: boolean) => void;
|
|
14269
14271
|
onValueChanged?: () => void;
|
|
14270
14272
|
onPropertyChangedObservable?: BABYLON.Observable<INSPECTOR.SharedUIComponents.PropertyChangedEvent>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "babylonjs-inspector",
|
|
3
|
-
"version": "7.52.
|
|
3
|
+
"version": "7.52.3",
|
|
4
4
|
"main": "babylon.inspector.bundle.max.js",
|
|
5
5
|
"types": "babylon.inspector.module.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -14,12 +14,12 @@
|
|
|
14
14
|
"clean": "rimraf dist && rimraf babylon*.* -g"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"babylonjs": "^7.52.
|
|
18
|
-
"babylonjs-gui": "^7.52.
|
|
19
|
-
"babylonjs-gui-editor": "^7.52.
|
|
20
|
-
"babylonjs-loaders": "^7.52.
|
|
21
|
-
"babylonjs-materials": "^7.52.
|
|
22
|
-
"babylonjs-serializers": "^7.52.
|
|
17
|
+
"babylonjs": "^7.52.3",
|
|
18
|
+
"babylonjs-gui": "^7.52.3",
|
|
19
|
+
"babylonjs-gui-editor": "^7.52.3",
|
|
20
|
+
"babylonjs-loaders": "^7.52.3",
|
|
21
|
+
"babylonjs-materials": "^7.52.3",
|
|
22
|
+
"babylonjs-serializers": "^7.52.3"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"@dev/build-tools": "1.0.0",
|