babylonjs-gui 5.15.0 → 5.15.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.
@@ -4239,6 +4239,7 @@ import { Observable } from "babylonjs/Misc/observable";
4239
4239
  import { StackPanel } from "babylonjs-gui/2D/controls/stackPanel";
4240
4240
  import { InputText } from "babylonjs-gui/2D/controls/inputText";
4241
4241
  import { AdvancedDynamicTexture } from "babylonjs-gui/2D/advancedDynamicTexture";
4242
+ import { InputTextArea } from "babylonjs-gui/2D/controls/inputTextArea";
4242
4243
  /**
4243
4244
  * Class used to store key control properties
4244
4245
  */
@@ -4305,7 +4306,7 @@ export class VirtualKeyboard extends StackPanel {
4305
4306
  private _connectedInputTexts;
4306
4307
  private _onKeyPressObserver;
4307
4308
  /** Gets the input text control currently attached to the keyboard */
4308
- get connectedInputText(): Nullable<InputText>;
4309
+ get connectedInputText(): Nullable<InputText | InputTextArea>;
4309
4310
  /**
4310
4311
  * Connects the keyboard with an input text control
4311
4312
  *
@@ -12024,7 +12025,7 @@ declare module BABYLON.GUI {
12024
12025
  private _connectedInputTexts;
12025
12026
  private _onKeyPressObserver;
12026
12027
  /** Gets the input text control currently attached to the keyboard */
12027
- get connectedInputText(): BABYLON.Nullable<InputText>;
12028
+ get connectedInputText(): BABYLON.Nullable<InputText | InputTextArea>;
12028
12029
  /**
12029
12030
  * Connects the keyboard with an input text control
12030
12031
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "babylonjs-gui",
3
- "version": "5.15.0",
3
+ "version": "5.15.1",
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.15.0"
17
+ "babylonjs": "^5.15.1"
18
18
  },
19
19
  "devDependencies": {
20
20
  "@dev/build-tools": "1.0.0",