babylonjs-gui 5.1.0 → 5.4.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.js +73 -57
- 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 +1 -1
- package/package.json +2 -2
package/babylon.gui.module.d.ts
CHANGED
|
@@ -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";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "babylonjs-gui",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.4.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.
|
|
17
|
+
"babylonjs": "^5.4.0"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"@dev/build-tools": "1.0.0",
|