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
import { TextAlign, TextVerticalAlign } from '../../core/types';
import { TextStyleProps } from '../Text';
interface InnerTruncateOption {
maxIteration?: number;
minChar?: number;
placeholder?: string;
maxIterations?: number;
}
export declare function truncateText(text: string, containerWidth: number, font: string, ellipsis?: string, options?: InnerTruncateOption): string;
export interface PlainTextContentBlock {
lineHeight: number;
calculatedLineHeight: number;
contentWidth: number;
contentHeight: number;
width: number;
height: number;
outerWidth: number;
outerHeight: number;
lines: string[];
}
export declare function parsePlainText(text: string, style?: TextStyleProps): PlainTextContentBlock;
declare class RichTextToken {
styleName: string;
text: string;
width: number;
height: number;
innerHeight: number;
contentHeight: number;
contentWidth: number;
lineHeight: number;
font: string;
align: TextAlign;
verticalAlign: TextVerticalAlign;
textPadding: number[];
percentWidth?: string;
isLineHolder: boolean;
}
declare class RichTextLine {
lineHeight: number;
width: number;
tokens: RichTextToken[];
constructor(tokens?: RichTextToken[]);
}
export declare class RichTextContentBlock {
width: number;
height: number;
contentWidth: number;
contentHeight: number;
outerWidth: number;
outerHeight: number;
lines: RichTextLine[];
}
export declare function parseRichText(text: string, style: TextStyleProps): RichTextContentBlock;
export {};