@babylonjs/gui-editor 5.17.1 → 5.18.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.
@@ -24,6 +24,8 @@ interface ICommandButtonComponentProps {
24
24
  icon: string;
25
25
  iconLabel?: string;
26
26
  isActive: boolean;
27
+ copyDeleteDisabled?: boolean;
28
+ pasteDisabled?: boolean;
27
29
  onClick: () => void;
28
30
  altStyle?: boolean;
29
31
  disabled?: boolean;
@@ -1008,7 +1010,9 @@ export class WorkbenchComponent extends React.Component<IWorkbenchComponentProps
1008
1010
  private _zoomFactor;
1009
1011
  private _zoomModeIncrement;
1010
1012
  private _guiSize;
1013
+ private _pasteDisabled;
1011
1014
  get guiSize(): ISize;
1015
+ get pasteDisabled(): boolean;
1012
1016
  set guiSize(value: ISize);
1013
1017
  applyEditorTransformation(): void;
1014
1018
  removeEditorTransformation(): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@babylonjs/gui-editor",
3
- "version": "5.17.1",
3
+ "version": "5.18.0",
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.17.1",
28
- "@babylonjs/gui": "^5.17.1",
27
+ "@babylonjs/core": "^5.18.0",
28
+ "@babylonjs/gui": "^5.18.0",
29
29
  "react": "^17.0.2",
30
30
  "react-dom": "^17.0.2",
31
31
  "rimraf": "^3.0.2",