@nativescript-community/text 1.6.16 → 1.6.17
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nativescript-community/text",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.17",
|
|
4
4
|
"description": "Expands the capabilities of NativeScript's text property.",
|
|
5
5
|
"main": "./index",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -12,11 +12,11 @@
|
|
|
12
12
|
}
|
|
13
13
|
},
|
|
14
14
|
"scripts": {
|
|
15
|
-
"build": "npm run tsc",
|
|
15
|
+
"build": "npm run tsc && npm run readme",
|
|
16
16
|
"build.all": "npm run build",
|
|
17
17
|
"readme": "readme generate -c ../../tools/readme/blueprint.json",
|
|
18
|
-
"tsc": "cpy '**/*.d.ts' '../../packages/text' --parents --cwd=../../src/text && tsc
|
|
19
|
-
"clean": "rimraf ./*.d.ts ./*.js ./*.js.map"
|
|
18
|
+
"tsc": "cpy '**/*.d.ts' '../../packages/text' --parents --cwd=../../src/text && tsc --build",
|
|
19
|
+
"clean": "bin/rimraf ./*.d.ts ./*.js ./*.js.map ./*.tsbuildinfo ./*.mjs ./*.mjs.map ./angular ./svelte ./vue* ./react"
|
|
20
20
|
},
|
|
21
21
|
"keywords": [
|
|
22
22
|
"NativeScript",
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
},
|
|
38
38
|
"license": "Apache-2.0",
|
|
39
39
|
"readmeFilename": "README.md",
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "3d6261e9efb0b434d93debc0a71811eb890c0b45"
|
|
41
41
|
}
|
|
@@ -51,11 +51,11 @@ public class FontSizeSpan extends MetricAffectingSpan {
|
|
|
51
51
|
if (FONT_SIZE_FACTOR == -1) {
|
|
52
52
|
android.util.DisplayMetrics metrics = mContext.getResources().getDisplayMetrics();
|
|
53
53
|
SCREEN_DENSITY = metrics.density;
|
|
54
|
-
FONT_SIZE_FACTOR = android.util.TypedValue.applyDimension(android.util.TypedValue.
|
|
54
|
+
FONT_SIZE_FACTOR = android.util.TypedValue.applyDimension(android.util.TypedValue.COMPLEX_UNIT_DIP, 1, metrics);
|
|
55
55
|
}
|
|
56
56
|
if (mDip && (flags & 2048) != 2048) {
|
|
57
57
|
ds.setTextSize(TypedValue.applyDimension(
|
|
58
|
-
TypedValue.
|
|
58
|
+
TypedValue.COMPLEX_UNIT_DIP,
|
|
59
59
|
mSize,
|
|
60
60
|
mContext.getResources().getDisplayMetrics()
|
|
61
61
|
));
|
|
@@ -250,7 +250,7 @@ class NSTextUtils: NSObject {
|
|
|
250
250
|
}
|
|
251
251
|
let verticalTextAlignment:String! = spanDetails.object(forKey: "verticalTextAlignment") as? String
|
|
252
252
|
if (verticalTextAlignment != nil) && (iosFont != nil) && !(verticalTextAlignment == "initial") && !(verticalTextAlignment == "stretch") {
|
|
253
|
-
let fontSize:NSNumber! =
|
|
253
|
+
let fontSize:NSNumber! = fontSize != nil ? fontSize : NSNumber(value: Float(iosFont.pointSize))
|
|
254
254
|
let ctFont:CTFont = iosFont
|
|
255
255
|
let ascent:CGFloat = CTFontGetAscent(ctFont)
|
|
256
256
|
let descent:CGFloat = CTFontGetDescent(ctFont)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"root":["../../src/text/index-common.ts","../../src/text/index.android.ts","../../src/text/index.d.ts","../../src/text/index.ios.ts","../../src/text/references.d.ts","../../src/text/typings/DTCoreText.ios.d.ts","../../src/text/typings/android.d.ts","../../src/text/typings/ios.d.ts","../../references.d.ts","../../tools/references.d.ts"],"version":"5.8.3"}
|