@dcl/ecs 7.0.6-3741197705.commit-bb37667 → 7.0.6-3767144242.commit-6bb12d2

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,5 +10,7 @@ export declare const enum TextAlignMode {
10
10
  TAM_BOTTOM_RIGHT = 8
11
11
  }
12
12
  export declare const enum Font {
13
- F_SANS_SERIF = 0
13
+ F_SANS_SERIF = 0,
14
+ F_SERIF = 1,
15
+ F_MONOSPACE = 2
14
16
  }
@@ -15,4 +15,6 @@ export var TextAlignMode;
15
15
  export var Font;
16
16
  (function (Font) {
17
17
  Font[Font["F_SANS_SERIF"] = 0] = "F_SANS_SERIF";
18
+ Font[Font["F_SERIF"] = 1] = "F_SERIF";
19
+ Font[Font["F_MONOSPACE"] = 2] = "F_MONOSPACE";
18
20
  })(Font || (Font = {}));
@@ -18,8 +18,11 @@ export interface PBTextShape {
18
18
  paddingRight?: number | undefined;
19
19
  paddingBottom?: number | undefined;
20
20
  paddingLeft?: number | undefined;
21
+ /** The amount of additional spacing to add between each lines of text. */
21
22
  lineSpacing?: number | undefined;
23
+ /** Allows control over how many lines of text are displayed. */
22
24
  lineCount?: number | undefined;
25
+ /** Enables text wrapping */
23
26
  textWrapping?: boolean | undefined;
24
27
  shadowBlur?: number | undefined;
25
28
  shadowOffsetX?: number | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dcl/ecs",
3
- "version": "7.0.6-3741197705.commit-bb37667",
3
+ "version": "7.0.6-3767144242.commit-6bb12d2",
4
4
  "description": "Decentraland ECS",
5
5
  "main": "./dist/index.js",
6
6
  "typings": "./dist/index.d.ts",
@@ -27,13 +27,13 @@
27
27
  "ts-proto": "^1.112.0"
28
28
  },
29
29
  "dependencies": {
30
- "@dcl/crdt": "7.0.6-3741197705.commit-bb37667",
30
+ "@dcl/crdt": "7.0.6-3767144242.commit-6bb12d2",
31
31
  "@dcl/js-runtime": "file:../js-runtime",
32
- "@dcl/protocol": "^1.0.0-3603890942.commit-44633cf"
32
+ "@dcl/protocol": "^1.0.0-3766287015.commit-7d88411"
33
33
  },
34
34
  "files": [
35
35
  "dist",
36
36
  "etc"
37
37
  ],
38
- "commit": "bb376675027050591f82fce195c1797a5b77ed3a"
38
+ "commit": "6bb12d22069031724f3f256bc50443d3072b97a4"
39
39
  }