@babylonjs/gui-editor 5.15.1 → 5.17.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.
@@ -737,6 +737,7 @@ export interface ITreeItemSelectableComponentProps {
|
|
737
737
|
filter: Nullable<string>;
|
738
738
|
}
|
739
739
|
export interface ITreeItemSelectableComponentState {
|
740
|
+
expand: boolean;
|
740
741
|
dragOver: boolean;
|
741
742
|
isSelected: boolean;
|
742
743
|
isHovered: boolean;
|
@@ -1335,6 +1336,7 @@ interface IGraphEditorProps {
|
|
1335
1336
|
}
|
1336
1337
|
interface IGraphEditorState {
|
1337
1338
|
showPreviewPopUp: boolean;
|
1339
|
+
toolbarExpand: boolean;
|
1338
1340
|
}
|
1339
1341
|
export class WorkbenchEditor extends React.Component<IGraphEditorProps, IGraphEditorState> {
|
1340
1342
|
private _moveInProgress;
|
@@ -1355,8 +1357,14 @@ export class WorkbenchEditor extends React.Component<IGraphEditorProps, IGraphEd
|
|
1355
1357
|
handleClosingPopUp: () => void;
|
1356
1358
|
createPopupWindow: (title: string, windowVariableName: string, width?: number, height?: number) => Window | null;
|
1357
1359
|
copyStyles: (sourceDoc: HTMLDocument, targetDoc: HTMLDocument) => void;
|
1360
|
+
switchExpandedState(): void;
|
1358
1361
|
render(): JSX.Element;
|
1359
1362
|
onCreate(value: string): Control;
|
1363
|
+
createBlackLine(): JSX.Element;
|
1364
|
+
createToolbarHelper(ct: {
|
1365
|
+
className: string;
|
1366
|
+
icon: string;
|
1367
|
+
}[]): JSX.Element[];
|
1360
1368
|
createToolbar(): JSX.Element;
|
1361
1369
|
}
|
1362
1370
|
export {};
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@babylonjs/gui-editor",
|
3
|
-
"version": "5.
|
3
|
+
"version": "5.17.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,8 +24,8 @@
|
|
24
24
|
"@types/react-dom": ">=16.0.9"
|
25
25
|
},
|
26
26
|
"devDependencies": {
|
27
|
-
"@babylonjs/core": "^5.
|
28
|
-
"@babylonjs/gui": "^5.
|
27
|
+
"@babylonjs/core": "^5.17.1",
|
28
|
+
"@babylonjs/gui": "^5.17.1",
|
29
29
|
"react": "^17.0.2",
|
30
30
|
"react-dom": "^17.0.2",
|
31
31
|
"rimraf": "^3.0.2",
|