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.d.ts
CHANGED
|
@@ -5550,7 +5550,7 @@ declare module BABYLON.GUI {
|
|
|
5550
5550
|
protected _currentKey: string;
|
|
5551
5551
|
protected _isTextHighlightOn: boolean;
|
|
5552
5552
|
protected _textHighlightColor: string;
|
|
5553
|
-
protected
|
|
5553
|
+
protected _highlighterOpacity: number;
|
|
5554
5554
|
protected _highlightedText: string;
|
|
5555
5555
|
private _startHighlightIndex;
|
|
5556
5556
|
private _endHighlightIndex;
|
|
@@ -5594,9 +5594,17 @@ declare module BABYLON.GUI {
|
|
|
5594
5594
|
/** Gets the maximum width allowed by the control in pixels */
|
|
5595
5595
|
get maxWidthInPixels(): number;
|
|
5596
5596
|
set maxWidth(value: string | number);
|
|
5597
|
-
/**
|
|
5597
|
+
/**
|
|
5598
|
+
* Gets or sets the text highlighter transparency; default: 0.4
|
|
5599
|
+
* @deprecated Please use highlighterOpacity instead
|
|
5600
|
+
*/
|
|
5598
5601
|
get highligherOpacity(): number;
|
|
5599
5602
|
set highligherOpacity(value: number);
|
|
5603
|
+
/**
|
|
5604
|
+
* Gets or sets the text highlighter transparency; default: 0.4
|
|
5605
|
+
*/
|
|
5606
|
+
get highlighterOpacity(): number;
|
|
5607
|
+
set highlighterOpacity(value: number);
|
|
5600
5608
|
/** Gets or sets a boolean indicating whether to select complete text by default on input focus */
|
|
5601
5609
|
get onFocusSelectAll(): boolean;
|
|
5602
5610
|
set onFocusSelectAll(value: boolean);
|