forked from aMarCruz/react-native-text-size
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.d.ts
184 lines (172 loc) · 5.16 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
declare module "react-native-text-size" {
export type TSFontWeight = 'normal' | 'bold' | '100' | '200' | '300' | '400' | '500' | '600' | '700' | '800' | '900'
export type TSFontStyle = 'normal' | 'italic'
export type TSFontVariant = 'small-caps' | 'oldstyle-nums' | 'lining-nums' | 'tabular-nums' | 'proportional-nums'
export type TSTextBreakStrategy = 'simple' | 'highQuality' | 'balanced'
export type TSFontSize = {
readonly default: number,
readonly button: number,
readonly label: number,
readonly smallSystem: number,
readonly system: number,
}
export type TSMDStyleSpec =
| 'h1'
| 'h2'
| 'h3'
| 'h4'
| 'h5'
| 'h6'
| 'subtitle1'
| 'subtitle2'
| 'body1'
| 'body2'
| 'button'
| 'caption'
| 'overline'
export type TSTextStyle =
| 'body'
| 'callout'
| 'caption1'
| 'caption2'
| 'footnote'
| 'headline'
| 'subheadline'
| 'largeTitle'
| 'title1'
| 'title2'
| 'title3'
export type TSFontInfo = {
fontFamily: string | null,
fontName?: string | null,
fontWeight: TSFontWeight,
fontSize: number,
fontStyle: TSFontStyle,
fontVariant?: TSFontVariant | null,
ascender: number,
descender: number,
capHeight?: number,
xHeight?: number,
top?: number,
bottom?: number,
leading: number,
lineHeight: number,
_hash: number,
}
export interface TSFontSpecs {
fontFamily?: string;
fontSize?: number;
fontStyle?: TSFontStyle;
fontWeight?: TSFontWeight;
/** @platform ios */
fontVariant?: Array<TSFontVariant>;
/** iOS all, Android SDK 21+ with RN 0.55+ */
letterSpacing?: number;
/** @platform android */
includeFontPadding?: boolean;
/** @platform android (SDK 23+) */
textBreakStrategy?: TSTextBreakStrategy;
}
export type TSFontForStyle = {
fontFamily: string,
/** Unscaled font size, untits are SP in Android, points in iOS */
fontSize: number,
/** fontStyle is omitted if it is "normal" */
fontStyle?: TSFontStyle,
/** fontWeight is omitted if it is "normal" */
fontWeight?: TSFontWeight,
/** @platform ios */
fontVariant?: Array<TSFontVariant> | null,
/** iOS all, Android SDK 21+ with RN 0.55+ */
letterSpacing?: number,
}
export interface TSHeightsParams extends TSFontSpecs {
/** The required text to measure. */
text: Array<string | null>;
/** Maximum width of the area to display the text. @default MAX_INT */
width?: number;
/** @default true */
allowFontScaling?: boolean;
}
export interface TSMeasureParams extends TSFontSpecs {
/**
* This is the only required parameter and may include _emojis_ or be empty,
* but it **must not be** `null`.
*
* If this is an empty string the resulting `width` will be zero.
*/
text: string;
/**
* Restrict the width. The resulting height will vary depending on the
* automatic flow of the text.
* @default MAX_INT
*/
width?: number;
/**
* To respect the user' setting of large fonts (i.e. use SP units).
* @default true
*/
allowFontScaling?: boolean;
/**
* If `true`, the result will include an exact `width` and the
* `lastLineWidth` property.
* @default false
*/
usePreciseWidth?: boolean;
/**
* If `>=0`, the result will include a `lineInfo` property with information
* for the required line number.
*/
lineInfoForLine?: number;
}
export type TSMeasureResult = {
/**
* Total used width. It may be less or equal to the `width` option.
*
* On Android, this value may vary depending on the `usePreciseWidth` flag.
*/
width: number;
/**
* Total height, including top and bottom padding if `includingFontPadding`
* was set (the default).
*/
height: number;
/**
* Width of the last line, without trailing blanks.
*
* If `usePreciseWidth` is `false` (the default), this field is undefined.
*/
lastLineWidth?: number;
/**
* Number of lines, taking into account hard and automatic line breaks.
*/
lineCount: number;
/**
* Line information, if the `lineInfoForLine` option is given.
*/
lineInfo?: {
/** Line number of this info, base 0.
*
* It can be less than the requested line number if `lineInfoForLine` is out of range.
*/
line: number;
/** Text offset of the beginning of this line. */
start: number;
/** Text offset after the last _visible_ character (so whitespace is not counted) on this line. */
end: number;
/** The vertical position of the bottom of this line, including padding. */
bottom: number;
/** Horizontal extent of this line, including leading margin indent, but excluding trailing whitespace. */
width: number;
};
}
interface TextSizeStatic {
measure(params: TSMeasureParams): Promise<TSMeasureResult>;
flatHeights(params: TSHeightsParams): Promise<number[]>;
specsForTextStyles(): Promise<{ [key: string]: TSFontForStyle }>;
fontFromSpecs(specs?: TSFontSpecs): Promise<TSFontInfo>;
fontFamilyNames(): Promise<string[]>;
}
const TextSize: TextSizeStatic;
export default TextSize;
}