babylonjs-gui 5.6.0 → 5.8.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 +9 -0
- package/babylon.gui.js +27 -3
- package/babylon.gui.js.map +1 -1
- package/babylon.gui.min.js +1 -1
- package/babylon.gui.min.js.map +1 -1
- package/babylon.gui.module.d.ts +18 -0
- package/package.json +2 -2
package/babylon.gui.module.d.ts
CHANGED
|
@@ -3783,6 +3783,7 @@ export class TextBlock extends Control {
|
|
|
3783
3783
|
private _outlineColor;
|
|
3784
3784
|
private _underline;
|
|
3785
3785
|
private _lineThrough;
|
|
3786
|
+
private _wordDivider;
|
|
3786
3787
|
/**
|
|
3787
3788
|
* An event triggered after the text is changed
|
|
3788
3789
|
*/
|
|
@@ -3879,6 +3880,14 @@ export class TextBlock extends Control {
|
|
|
3879
3880
|
* Gets or sets outlineColor of the text to display
|
|
3880
3881
|
*/
|
|
3881
3882
|
set outlineColor(value: string);
|
|
3883
|
+
/**
|
|
3884
|
+
* Gets or sets word divider
|
|
3885
|
+
*/
|
|
3886
|
+
get wordDivider(): string;
|
|
3887
|
+
/**
|
|
3888
|
+
* Gets or sets word divider
|
|
3889
|
+
*/
|
|
3890
|
+
set wordDivider(value: string);
|
|
3882
3891
|
/**
|
|
3883
3892
|
* Creates a new TextBlock object
|
|
3884
3893
|
* @param name defines the name of the control
|
|
@@ -11349,6 +11358,7 @@ declare module BABYLON.GUI {
|
|
|
11349
11358
|
private _outlineColor;
|
|
11350
11359
|
private _underline;
|
|
11351
11360
|
private _lineThrough;
|
|
11361
|
+
private _wordDivider;
|
|
11352
11362
|
/**
|
|
11353
11363
|
* An event triggered after the text is changed
|
|
11354
11364
|
*/
|
|
@@ -11445,6 +11455,14 @@ declare module BABYLON.GUI {
|
|
|
11445
11455
|
* Gets or sets outlineColor of the text to display
|
|
11446
11456
|
*/
|
|
11447
11457
|
set outlineColor(value: string);
|
|
11458
|
+
/**
|
|
11459
|
+
* Gets or sets word divider
|
|
11460
|
+
*/
|
|
11461
|
+
get wordDivider(): string;
|
|
11462
|
+
/**
|
|
11463
|
+
* Gets or sets word divider
|
|
11464
|
+
*/
|
|
11465
|
+
set wordDivider(value: string);
|
|
11448
11466
|
/**
|
|
11449
11467
|
* Creates a new TextBlock object
|
|
11450
11468
|
* @param name defines the name of the control
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "babylonjs-gui",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.8.0",
|
|
4
4
|
"main": "babylon.gui.js",
|
|
5
5
|
"types": "babylon.gui.module.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"clean": "rimraf dist && rimraf babylon*.*"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"babylonjs": "^5.
|
|
17
|
+
"babylonjs": "^5.8.0"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"@dev/build-tools": "1.0.0",
|