@babylonjs/gui-editor 6.7.0 → 6.8.1
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.
@@ -221,6 +221,7 @@ interface ICommonControlPropertyGridComponentState {
|
|
221
221
|
export class CommonControlPropertyGridComponent extends React.Component<ICommonControlPropertyGridComponentProps, ICommonControlPropertyGridComponentState> {
|
222
222
|
private _onPropertyChangedObserver;
|
223
223
|
private _onFontsParsedObserver;
|
224
|
+
private _onControlVisibilityChangedObservers;
|
224
225
|
constructor(props: ICommonControlPropertyGridComponentProps);
|
225
226
|
componentWillMount(): void;
|
226
227
|
private _checkFontsInLayout;
|
@@ -671,7 +672,9 @@ export class ControlTreeItemComponent extends React.Component<IControlTreeItemCo
|
|
671
672
|
isVisible: boolean;
|
672
673
|
isRenaming: boolean;
|
673
674
|
}> {
|
675
|
+
private _onIsVisibleChangedObserver;
|
674
676
|
constructor(props: IControlTreeItemComponentProps);
|
677
|
+
componentWillUnmount(): void;
|
675
678
|
highlight(): void;
|
676
679
|
switchVisibility(): void;
|
677
680
|
onRename(name: string): void;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@babylonjs/gui-editor",
|
3
|
-
"version": "6.
|
3
|
+
"version": "6.8.1",
|
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,12 +24,10 @@
|
|
24
24
|
"@types/react-dom": ">=16.0.9"
|
25
25
|
},
|
26
26
|
"devDependencies": {
|
27
|
-
"@babylonjs/core": "^6.
|
28
|
-
"@babylonjs/gui": "^6.
|
27
|
+
"@babylonjs/core": "^6.8.1",
|
28
|
+
"@babylonjs/gui": "^6.8.1",
|
29
29
|
"react": "^17.0.2",
|
30
|
-
"react-dom": "^17.0.2"
|
31
|
-
"rimraf": "^3.0.2",
|
32
|
-
"typescript": "^4.4.4"
|
30
|
+
"react-dom": "^17.0.2"
|
33
31
|
},
|
34
32
|
"keywords": [
|
35
33
|
"3D",
|