@nativescript-community/text 1.4.30 → 1.4.31

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/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.4.31](https://github.com/nativescript-community/text/compare/v1.4.30...v1.4.31) (2022-01-11)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **android:** build fix ([2b24e64](https://github.com/nativescript-community/text/commit/2b24e64030650202de6df349c62ea4ea8e730379))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [1.4.30](https://github.com/nativescript-community/text/compare/v1.4.29...v1.4.30) (2022-01-11)
7
18
 
8
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nativescript-community/text",
3
- "version": "1.4.30",
3
+ "version": "1.4.31",
4
4
  "description": "Expands the capabilities of NativeScript's text property.",
5
5
  "main": "./index",
6
6
  "sideEffects": false,
@@ -30,5 +30,5 @@
30
30
  },
31
31
  "license": "Apache-2.0",
32
32
  "readmeFilename": "README.md",
33
- "gitHead": "50020c9c198665fe7860d022d775bbb2e4872341"
33
+ "gitHead": "baf38961da5bfc9649905e1097344c1a8417ab84"
34
34
  }
@@ -12,7 +12,7 @@ public class DensityLineHeightSpan implements LineHeightSpan.WithDensity {
12
12
  private int mSize;
13
13
  private static float sProportion = 0;
14
14
 
15
- public HeightSpan(int size) {
15
+ public DensityLineHeightSpan(int size) {
16
16
  mSize = size;
17
17
  }
18
18