@dcl/sdk 7.0.0-3482345038.commit-6d0f818 → 7.0.0-3491045797.commit-404a2a7
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.
@@ -10,7 +10,7 @@ option (common.ecs_component_id) = 1052;
|
|
10
10
|
|
11
11
|
message PBUiText {
|
12
12
|
string value = 1;
|
13
|
-
optional decentraland.common.
|
13
|
+
optional decentraland.common.Color4 color = 2; // default=(1.0,1.0,1.0,1.0)
|
14
14
|
optional common.TextAlignMode text_align = 3; // default='center'
|
15
15
|
optional common.Font font = 4; // default=0
|
16
16
|
optional int32 font_size = 5; // default=10
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@dcl/sdk",
|
3
|
-
"version": "7.0.0-
|
3
|
+
"version": "7.0.0-3491045797.commit-404a2a7",
|
4
4
|
"description": "",
|
5
5
|
"main": "dist/src/index.js",
|
6
6
|
"typings": "dist/index.d.ts",
|
@@ -23,13 +23,13 @@
|
|
23
23
|
"artifacts"
|
24
24
|
],
|
25
25
|
"dependencies": {
|
26
|
-
"@dcl/amd": "7.0.0-
|
27
|
-
"@dcl/build-ecs": "7.0.0-
|
28
|
-
"@dcl/js-runtime": "7.0.0-
|
26
|
+
"@dcl/amd": "7.0.0-3491045797.commit-404a2a7",
|
27
|
+
"@dcl/build-ecs": "7.0.0-3491045797.commit-404a2a7",
|
28
|
+
"@dcl/js-runtime": "7.0.0-3491045797.commit-404a2a7",
|
29
29
|
"@dcl/kernel": "^1.0.0-3339209749.commit-fa9e5d7",
|
30
30
|
"@dcl/posix": "^1.0.4",
|
31
31
|
"@dcl/unity-renderer": "^1.0.59980-20221027151836.commit-cc26142"
|
32
32
|
},
|
33
33
|
"minCliVersion": "3.12.3",
|
34
|
-
"commit": "
|
34
|
+
"commit": "404a2a743dab91d4ffe0de5cb9d32f4272ae86f8"
|
35
35
|
}
|
package/types/ecs7/index.d.ts
CHANGED
@@ -2967,8 +2967,8 @@ declare interface PBUiBackground {
|
|
2967
2967
|
|
2968
2968
|
declare interface PBUiText {
|
2969
2969
|
value: string;
|
2970
|
-
/** default=(1.0,1.0,1.0) */
|
2971
|
-
color?:
|
2970
|
+
/** default=(1.0,1.0,1.0,1.0) */
|
2971
|
+
color?: PBColor4 | undefined;
|
2972
2972
|
/** default='center' */
|
2973
2973
|
textAlign?: TextAlignMode | undefined;
|
2974
2974
|
/** default=0 */
|