realreport 1.11.31 → 1.11.32
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/dist/realreport.css +1 -1
- package/dist/realreport.d.ts +16 -5
- package/dist/realreport.es.js +3 -3
- package/dist/realreport.js +3 -3
- package/package.json +1 -1
package/dist/realreport.css
CHANGED
package/dist/realreport.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* RealReport v1.11.
|
|
3
|
-
* commit
|
|
2
|
+
* RealReport v1.11.32
|
|
3
|
+
* commit 593bc0b
|
|
4
4
|
|
|
5
5
|
* {@link https://real-report.com}
|
|
6
6
|
* Copyright (C) 2013-2026 WooriTech Inc.
|
|
@@ -8,10 +8,10 @@
|
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
10
|
/**
|
|
11
|
-
* RealReport Core v1.11.
|
|
11
|
+
* RealReport Core v1.11.32
|
|
12
12
|
* Copyright (C) 2013-2026 WooriTech Inc.
|
|
13
13
|
* All Rights Reserved.
|
|
14
|
-
* commit
|
|
14
|
+
* commit 45fc7d0c5308735f944d4d69b3fc971facead362
|
|
15
15
|
*/
|
|
16
16
|
type ConfigObject$2 = {
|
|
17
17
|
[key: string]: any;
|
|
@@ -10236,7 +10236,18 @@ declare class TextBandElement extends BandItemElement<TextBand> {
|
|
|
10236
10236
|
static readonly FOOTER_CLASS = "rr-band-footer";
|
|
10237
10237
|
static readonly BODY_CLASS = "rr-textband-body";
|
|
10238
10238
|
static readonly FIXED_LINE_HEIGHT = 1.2;
|
|
10239
|
-
static parseLines(
|
|
10239
|
+
static parseLines(container: HTMLElement, text: string, isRich?: boolean): TextBandLine[];
|
|
10240
|
+
/**
|
|
10241
|
+
* 평문 텍스트를 시각적 라인 단위로 분리한다.
|
|
10242
|
+
* 단일 텍스트 노드에 대해 Range.getClientRects()로 줄 바꿈 위치를 탐지한다.
|
|
10243
|
+
*/
|
|
10244
|
+
private static _parsePlainLines;
|
|
10245
|
+
/**
|
|
10246
|
+
* Rich(HTML) 텍스트를 블록 요소 단위로 시각적 라인 분리한다.
|
|
10247
|
+
* 각 블록 요소(p, div 등)의 getBoundingClientRect()를 사용하여 위치를 수집하고,
|
|
10248
|
+
* line 필드에는 outerHTML을 저장하여 서식을 보존한다.
|
|
10249
|
+
*/
|
|
10250
|
+
private static _parseRichLines;
|
|
10240
10251
|
private _bodyView;
|
|
10241
10252
|
private _headerView;
|
|
10242
10253
|
private _footerView;
|