babylonjs-gui 8.40.1 → 8.41.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 +10 -2
- package/babylon.gui.js +1 -1
- package/babylon.gui.min.js +1 -1
- package/babylon.gui.min.js.map +1 -1
- package/babylon.gui.module.d.ts +20 -4
- package/package.json +2 -2
package/babylon.gui.module.d.ts
CHANGED
|
@@ -6084,7 +6084,7 @@ export class InputText extends Control {
|
|
|
6084
6084
|
protected _currentKey: string;
|
|
6085
6085
|
protected _isTextHighlightOn: boolean;
|
|
6086
6086
|
protected _textHighlightColor: string;
|
|
6087
|
-
protected
|
|
6087
|
+
protected _highlighterOpacity: number;
|
|
6088
6088
|
protected _highlightedText: string;
|
|
6089
6089
|
private _startHighlightIndex;
|
|
6090
6090
|
private _endHighlightIndex;
|
|
@@ -6128,9 +6128,17 @@ export class InputText extends Control {
|
|
|
6128
6128
|
/** Gets the maximum width allowed by the control in pixels */
|
|
6129
6129
|
get maxWidthInPixels(): number;
|
|
6130
6130
|
set maxWidth(value: string | number);
|
|
6131
|
-
/**
|
|
6131
|
+
/**
|
|
6132
|
+
* Gets or sets the text highlighter transparency; default: 0.4
|
|
6133
|
+
* @deprecated Please use highlighterOpacity instead
|
|
6134
|
+
*/
|
|
6132
6135
|
get highligherOpacity(): number;
|
|
6133
6136
|
set highligherOpacity(value: number);
|
|
6137
|
+
/**
|
|
6138
|
+
* Gets or sets the text highlighter transparency; default: 0.4
|
|
6139
|
+
*/
|
|
6140
|
+
get highlighterOpacity(): number;
|
|
6141
|
+
set highlighterOpacity(value: number);
|
|
6134
6142
|
/** Gets or sets a boolean indicating whether to select complete text by default on input focus */
|
|
6135
6143
|
get onFocusSelectAll(): boolean;
|
|
6136
6144
|
set onFocusSelectAll(value: boolean);
|
|
@@ -14592,7 +14600,7 @@ declare module BABYLON.GUI {
|
|
|
14592
14600
|
protected _currentKey: string;
|
|
14593
14601
|
protected _isTextHighlightOn: boolean;
|
|
14594
14602
|
protected _textHighlightColor: string;
|
|
14595
|
-
protected
|
|
14603
|
+
protected _highlighterOpacity: number;
|
|
14596
14604
|
protected _highlightedText: string;
|
|
14597
14605
|
private _startHighlightIndex;
|
|
14598
14606
|
private _endHighlightIndex;
|
|
@@ -14636,9 +14644,17 @@ declare module BABYLON.GUI {
|
|
|
14636
14644
|
/** Gets the maximum width allowed by the control in pixels */
|
|
14637
14645
|
get maxWidthInPixels(): number;
|
|
14638
14646
|
set maxWidth(value: string | number);
|
|
14639
|
-
/**
|
|
14647
|
+
/**
|
|
14648
|
+
* Gets or sets the text highlighter transparency; default: 0.4
|
|
14649
|
+
* @deprecated Please use highlighterOpacity instead
|
|
14650
|
+
*/
|
|
14640
14651
|
get highligherOpacity(): number;
|
|
14641
14652
|
set highligherOpacity(value: number);
|
|
14653
|
+
/**
|
|
14654
|
+
* Gets or sets the text highlighter transparency; default: 0.4
|
|
14655
|
+
*/
|
|
14656
|
+
get highlighterOpacity(): number;
|
|
14657
|
+
set highlighterOpacity(value: number);
|
|
14642
14658
|
/** Gets or sets a boolean indicating whether to select complete text by default on input focus */
|
|
14643
14659
|
get onFocusSelectAll(): boolean;
|
|
14644
14660
|
set onFocusSelectAll(value: boolean);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "babylonjs-gui",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.41.1",
|
|
4
4
|
"main": "babylon.gui.min.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": "^8.
|
|
18
|
+
"babylonjs": "^8.41.1"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"@dev/build-tools": "1.0.0",
|