babylonjs-gui 5.14.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
  *
@@ -6505,7 +6506,7 @@ export class FluentMaterial extends PushMaterial {
6505
6506
  */
6506
6507
  renderHoverLight: boolean;
6507
6508
  /**
6508
- * Gets or sets the radius used to render the hover light (default is 1.0)
6509
+ * Gets or sets the radius used to render the hover light (default is 0.01)
6509
6510
  */
6510
6511
  hoverRadius: number;
6511
6512
  /**
@@ -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
  *
@@ -13971,7 +13972,7 @@ declare module BABYLON.GUI {
13971
13972
  */
13972
13973
  renderHoverLight: boolean;
13973
13974
  /**
13974
- * Gets or sets the radius used to render the hover light (default is 1.0)
13975
+ * Gets or sets the radius used to render the hover light (default is 0.01)
13975
13976
  */
13976
13977
  hoverRadius: number;
13977
13978
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "babylonjs-gui",
3
- "version": "5.14.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.14.0"
17
+ "babylonjs": "^5.15.1"
18
18
  },
19
19
  "devDependencies": {
20
20
  "@dev/build-tools": "1.0.0",