babylonjs-gui 7.33.0 → 7.34.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.
- package/babylon.gui.d.ts +5 -3
- package/babylon.gui.js +9 -7
- package/babylon.gui.min.js +1 -1
- package/babylon.gui.min.js.map +1 -1
- package/babylon.gui.module.d.ts +10 -6
- package/package.json +2 -2
package/babylon.gui.d.ts
CHANGED
@@ -5508,7 +5508,7 @@ declare module BABYLON.GUI {
|
|
5508
5508
|
*/
|
5509
5509
|
protected _processDblClick(_evt: BABYLON.PointerInfo): void;
|
5510
5510
|
/** @internal */
|
5511
|
-
|
5511
|
+
selectAllText(): void;
|
5512
5512
|
dispose(): void;
|
5513
5513
|
}
|
5514
5514
|
|
@@ -5666,8 +5666,10 @@ declare module BABYLON.GUI {
|
|
5666
5666
|
* @internal
|
5667
5667
|
*/
|
5668
5668
|
protected _processDblClick(evt: BABYLON.PointerInfo): void;
|
5669
|
-
/**
|
5670
|
-
|
5669
|
+
/**
|
5670
|
+
* Allow the user to select all text
|
5671
|
+
*/
|
5672
|
+
selectAllText(): void;
|
5671
5673
|
/**
|
5672
5674
|
* Handles the keyboard event
|
5673
5675
|
* @param evt Defines the KeyboardEvent
|