babylonjs-gui-editor 6.7.0 → 6.8.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.
- package/babylon.guiEditor.d.ts +3 -0
- package/babylon.guiEditor.js +1 -1
- package/babylon.guiEditor.js.map +1 -1
- package/babylon.guiEditor.max.js +4986 -2143
- package/babylon.guiEditor.max.js.map +1 -1
- package/babylon.guiEditor.module.d.ts +6 -0
- package/package.json +3 -3
package/babylon.guiEditor.d.ts
CHANGED
|
@@ -161,6 +161,7 @@ declare module BABYLON {
|
|
|
161
161
|
export class CommonControlPropertyGridComponent extends React.Component<ICommonControlPropertyGridComponentProps, ICommonControlPropertyGridComponentState> {
|
|
162
162
|
private _onPropertyChangedObserver;
|
|
163
163
|
private _onFontsParsedObserver;
|
|
164
|
+
private _onControlVisibilityChangedObservers;
|
|
164
165
|
constructor(props: ICommonControlPropertyGridComponentProps);
|
|
165
166
|
componentWillMount(): void;
|
|
166
167
|
private _checkFontsInLayout;
|
|
@@ -471,7 +472,9 @@ declare module BABYLON {
|
|
|
471
472
|
isVisible: boolean;
|
|
472
473
|
isRenaming: boolean;
|
|
473
474
|
}> {
|
|
475
|
+
private _onIsVisibleChangedObserver;
|
|
474
476
|
constructor(props: IControlTreeItemComponentProps);
|
|
477
|
+
componentWillUnmount(): void;
|
|
475
478
|
highlight(): void;
|
|
476
479
|
switchVisibility(): void;
|
|
477
480
|
onRename(name: string): void;
|