@babylonjs/gui 5.9.1 → 5.12.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/2D/controls/control.d.ts +1 -1
- package/2D/controls/control.js.map +1 -1
- package/2D/controls/image.d.ts +5 -0
- package/2D/controls/image.js +1 -0
- package/2D/controls/image.js.map +1 -1
- package/2D/controls/index.d.ts +1 -0
- package/2D/controls/index.js +1 -0
- package/2D/controls/index.js.map +1 -1
- package/2D/controls/inputText.d.ts +39 -36
- package/2D/controls/inputText.js.map +1 -1
- package/2D/controls/inputTextArea.d.ts +160 -0
- package/2D/controls/inputTextArea.js +1071 -0
- package/2D/controls/inputTextArea.js.map +1 -0
- package/2D/controls/textBlock.js +3 -0
- package/2D/controls/textBlock.js.map +1 -1
- package/package.json +6 -3
package/2D/controls/control.d.ts
CHANGED
|
@@ -306,7 +306,7 @@ export declare class Control {
|
|
|
306
306
|
* second dimension is computed as first dimension * fixedRatio
|
|
307
307
|
*/
|
|
308
308
|
fixedRatio: number;
|
|
309
|
-
|
|
309
|
+
protected _fixedRatioMasterIsWidth: boolean;
|
|
310
310
|
/**
|
|
311
311
|
* Gets or sets control width
|
|
312
312
|
* @see https://doc.babylonjs.com/how_to/gui#position-and-size
|