babylonjs-gui 5.0.2 → 5.1.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.gui.d.ts +6 -0
- package/babylon.gui.js +28 -0
- package/babylon.gui.js.map +1 -1
- package/babylon.gui.min.js +1 -1
- package/babylon.gui.min.js.map +1 -1
- package/babylon.gui.module.d.ts +13 -0
- package/package.json +2 -2
package/babylon.gui.module.d.ts
CHANGED
|
@@ -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
|
+
"version": "5.1.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
|
|
17
|
+
"babylonjs": "^5.1.0"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"@dev/build-tools": "1.0.0",
|