babylonjs-gui 5.0.3 → 5.2.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.
@@ -503,7 +503,6 @@ export class AdvancedDynamicTexture extends DynamicTexture {
503
503
  */
504
504
  scaleTo(width: number, height: number): void;
505
505
  }
506
- export { IFocusableControl };
507
506
 
508
507
  }
509
508
  declare module "babylonjs-gui/2D/controls/button" {
@@ -2395,6 +2394,7 @@ export * from "babylonjs-gui/2D/controls/container";
2395
2394
  export * from "babylonjs-gui/2D/controls/control";
2396
2395
  export * from "babylonjs-gui/2D/controls/ellipse";
2397
2396
  export * from "babylonjs-gui/2D/controls/focusableButton";
2397
+ export * from "babylonjs-gui/2D/controls/focusableControl";
2398
2398
  export * from "babylonjs-gui/2D/controls/grid";
2399
2399
  export * from "babylonjs-gui/2D/controls/image";
2400
2400
  export * from "babylonjs-gui/2D/controls/inputText";
@@ -4056,6 +4056,7 @@ import { Nullable } from "babylonjs/types";
4056
4056
  import { Observable } from "babylonjs/Misc/observable";
4057
4057
  import { StackPanel } from "babylonjs-gui/2D/controls/stackPanel";
4058
4058
  import { InputText } from "babylonjs-gui/2D/controls/inputText";
4059
+ import { AdvancedDynamicTexture } from "babylonjs-gui/2D/advancedDynamicTexture";
4059
4060
  /**
4060
4061
  * Class used to store key control properties
4061
4062
  */
@@ -4147,6 +4148,12 @@ export class VirtualKeyboard extends StackPanel {
4147
4148
  * @returns a new VirtualKeyboard
4148
4149
  */
4149
4150
  static CreateDefaultLayout(name?: string): VirtualKeyboard;
4151
+ /**
4152
+ * @param serializedObject
4153
+ * @param host
4154
+ * @hidden
4155
+ */
4156
+ _parseFromContent(serializedObject: any, host: AdvancedDynamicTexture): void;
4150
4157
  }
4151
4158
 
4152
4159
  }
@@ -11693,6 +11700,12 @@ declare module BABYLON.GUI {
11693
11700
  * @returns a new VirtualKeyboard
11694
11701
  */
11695
11702
  static CreateDefaultLayout(name?: string): VirtualKeyboard;
11703
+ /**
11704
+ * @param serializedObject
11705
+ * @param host
11706
+ * @hidden
11707
+ */
11708
+ _parseFromContent(serializedObject: any, host: AdvancedDynamicTexture): void;
11696
11709
  }
11697
11710
 
11698
11711
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "babylonjs-gui",
3
- "version": "5.0.3",
3
+ "version": "5.2.0",
4
4
  "main": "babylon.gui.js",
5
5
  "types": "babylon.gui.module.d.ts",
6
6
  "files": [
@@ -14,7 +14,7 @@
14
14
  "clean": "rimraf dist && rimraf babylon*.*"
15
15
  },
16
16
  "dependencies": {
17
- "babylonjs": "^5.0.3"
17
+ "babylonjs": "^5.2.0"
18
18
  },
19
19
  "devDependencies": {
20
20
  "@dev/build-tools": "1.0.0",