@nativescript-community/ui-label 1.2.12 → 1.2.13

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,14 @@
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.2.13](https://github.com/nativescript-community/ui-label/compare/v1.2.12...v1.2.13) (2022-11-02)
7
+
8
+ **Note:** Version bump only for package @nativescript-community/ui-label
9
+
10
+
11
+
12
+
13
+
6
14
  ## [1.2.12](https://github.com/nativescript-community/ui-label/compare/v1.2.11...v1.2.12) (2022-09-16)
7
15
 
8
16
  **Note:** Version bump only for package @nativescript-community/ui-label
package/label.ios.js CHANGED
@@ -319,7 +319,7 @@ export class Label extends LabelBase {
319
319
  fontSize = this.fontSize || (font === null || font === void 0 ? void 0 : font.pointSize) || 17;
320
320
  }
321
321
  const fontWeight = this.style.fontWeight;
322
- const familyName = this.style.fontFamily || (this.style.fontInternal && this.style.fontInternal.fontFamily) || (font === null || font === void 0 ? void 0 : font.familyName);
322
+ const familyName = this.style.fontFamily || (this.style.fontInternal && this.style.fontInternal.fontFamily) || undefined;
323
323
  const result = createNativeAttributedString({
324
324
  text: this.html,
325
325
  fontSize,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nativescript-community/ui-label",
3
- "version": "1.2.12",
3
+ "version": "1.2.13",
4
4
  "description": "Alternative to the built-in NativeScript Label but with better performance and additional features such as HTML rendering and more.",
5
5
  "main": "./label",
6
6
  "sideEffects": false,
@@ -34,5 +34,5 @@
34
34
  "dependencies": {
35
35
  "@nativescript-community/text": "^1.5.9"
36
36
  },
37
- "gitHead": "475f4a72bd7416c42596977a0a170183d057f6dd"
37
+ "gitHead": "b2bb2ae4bea39c6214338e7671bccca093a9dcb1"
38
38
  }