babylonjs-gui 7.33.0 → 7.34.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 +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.module.d.ts
CHANGED
@@ -6029,7 +6029,7 @@ export class InputTextArea extends InputText {
|
|
6029
6029
|
*/
|
6030
6030
|
protected _processDblClick(_evt: PointerInfo): void;
|
6031
6031
|
/** @internal */
|
6032
|
-
|
6032
|
+
selectAllText(): void;
|
6033
6033
|
dispose(): void;
|
6034
6034
|
}
|
6035
6035
|
|
@@ -6200,8 +6200,10 @@ export class InputText extends Control {
|
|
6200
6200
|
* @internal
|
6201
6201
|
*/
|
6202
6202
|
protected _processDblClick(evt: PointerInfo): void;
|
6203
|
-
/**
|
6204
|
-
|
6203
|
+
/**
|
6204
|
+
* Allow the user to select all text
|
6205
|
+
*/
|
6206
|
+
selectAllText(): void;
|
6205
6207
|
/**
|
6206
6208
|
* Handles the keyboard event
|
6207
6209
|
* @param evt Defines the KeyboardEvent
|
@@ -14531,7 +14533,7 @@ declare module BABYLON.GUI {
|
|
14531
14533
|
*/
|
14532
14534
|
protected _processDblClick(_evt: BABYLON.PointerInfo): void;
|
14533
14535
|
/** @internal */
|
14534
|
-
|
14536
|
+
selectAllText(): void;
|
14535
14537
|
dispose(): void;
|
14536
14538
|
}
|
14537
14539
|
|
@@ -14689,8 +14691,10 @@ declare module BABYLON.GUI {
|
|
14689
14691
|
* @internal
|
14690
14692
|
*/
|
14691
14693
|
protected _processDblClick(evt: BABYLON.PointerInfo): void;
|
14692
|
-
/**
|
14693
|
-
|
14694
|
+
/**
|
14695
|
+
* Allow the user to select all text
|
14696
|
+
*/
|
14697
|
+
selectAllText(): void;
|
14694
14698
|
/**
|
14695
14699
|
* Handles the keyboard event
|
14696
14700
|
* @param evt Defines the KeyboardEvent
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "babylonjs-gui",
|
3
|
-
"version": "7.
|
3
|
+
"version": "7.34.0",
|
4
4
|
"main": "babylon.gui.js",
|
5
5
|
"types": "babylon.gui.module.d.ts",
|
6
6
|
"files": [
|
@@ -15,7 +15,7 @@
|
|
15
15
|
"test:escheck": "es-check es6 ./babylon.gui.js"
|
16
16
|
},
|
17
17
|
"dependencies": {
|
18
|
-
"babylonjs": "^7.
|
18
|
+
"babylonjs": "^7.34.0"
|
19
19
|
},
|
20
20
|
"devDependencies": {
|
21
21
|
"@dev/build-tools": "1.0.0",
|