realreport 1.11.30 → 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 +31 -8
- 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;
|
|
@@ -6264,6 +6264,7 @@ declare class BarcodeItem extends ReportItem {
|
|
|
6264
6264
|
convertText(s: string): string;
|
|
6265
6265
|
getSaveType(): string;
|
|
6266
6266
|
get outlineLabel(): string;
|
|
6267
|
+
canRotate(): boolean;
|
|
6267
6268
|
protected _doDefaultInit(loader: IReportLoader, parent: ReportGroupItem, hintWidth: number, hintHeight: number): void;
|
|
6268
6269
|
protected _getEditProps(): IPropInfo[];
|
|
6269
6270
|
protected _getStyleProps(): string[];
|
|
@@ -9587,6 +9588,12 @@ interface IRowGroupMerger {
|
|
|
9587
9588
|
savePrevGroupHeader(group: IBandRowGroup): void;
|
|
9588
9589
|
/** 새 페이지 시작 시 이전 페이지의 그룹 헤더 상태를 복원한다. */
|
|
9589
9590
|
restorePrevGroupHeader(doc: Document, trs: HTMLTableRowElement[]): void;
|
|
9591
|
+
/**
|
|
9592
|
+
* 그룹 헤더 섹션이 hidden 상태일 때 호출한다.
|
|
9593
|
+
* DOM 삽입 없이 해당 그룹 레벨의 병합 상태만 초기화하여,
|
|
9594
|
+
* 이후 데이터 행에서 그룹 열 TD가 자동으로 생성될 수 있도록 한다.
|
|
9595
|
+
*/
|
|
9596
|
+
beginHiddenGroup(group: IBandRowGroup): void;
|
|
9590
9597
|
}
|
|
9591
9598
|
|
|
9592
9599
|
/** @internal */
|
|
@@ -9611,7 +9618,7 @@ declare class TableBodyLine {
|
|
|
9611
9618
|
appendTo(target: HTMLElement, minRowHeight?: number): void;
|
|
9612
9619
|
insertTo(body: HTMLTableSectionElement, to?: number): void;
|
|
9613
9620
|
detach(): void;
|
|
9614
|
-
makeBlank(row: number, col: number): void;
|
|
9621
|
+
makeBlank(row: number, col: number, groupColOffset?: number): void;
|
|
9615
9622
|
hide(row: number, col: number): void;
|
|
9616
9623
|
clone(): TableBodyLine;
|
|
9617
9624
|
fitHeight(src: TableBodyLine): void;
|
|
@@ -9661,6 +9668,11 @@ declare class TableBandDataRowElement extends TableBandSectionElement<TableBandD
|
|
|
9661
9668
|
interface ITableGroupPrintInfo extends IGroupPrintInfo {
|
|
9662
9669
|
view: TableBandGroupSectionElement<TableBandRowGroupHeader | TableBandRowGroupFooter> | null;
|
|
9663
9670
|
needNextPage: boolean;
|
|
9671
|
+
/**
|
|
9672
|
+
* rowGroupMerged 모드에서 그룹 헤더 섹션이 hidden 상태일 때 true.
|
|
9673
|
+
* DOM 렌더링 없이 groupMerger.beginHiddenGroup()만 호출하여 병합 상태를 초기화한다.
|
|
9674
|
+
*/
|
|
9675
|
+
hiddenByRowGroupMerged?: boolean;
|
|
9664
9676
|
}
|
|
9665
9677
|
type TableBandPrintRow = BandPrintRow | ITableGroupPrintInfo;
|
|
9666
9678
|
/**
|
|
@@ -9842,11 +9854,11 @@ declare class TableBandElement extends BandElement<TableBand> implements ITable
|
|
|
9842
9854
|
static readonly ROW_CLASS = "-rrp-tableband-row";
|
|
9843
9855
|
static readonly DUMMY_CLASS = "-rrp-tableband-dummy";
|
|
9844
9856
|
static readonly DUMMY_GROUP_FOOTER = "_dummy_group_footer_";
|
|
9845
|
-
static checkBlanks(band: TableBand, r: number, rows: TableBodyLine, isFirstRow?: boolean): void;
|
|
9857
|
+
static checkBlanks(band: TableBand, r: number, rows: TableBodyLine, isFirstRow?: boolean, groupColOffset?: number): void;
|
|
9846
9858
|
/**
|
|
9847
9859
|
* ParagraphFlow 상태일 경우에 처리
|
|
9848
9860
|
*/
|
|
9849
|
-
static paragraphFlowMakeBlank(band: TableBand, printRow: number, rows: TableBodyLine, isFirstRow?: boolean): void;
|
|
9861
|
+
static paragraphFlowMakeBlank(band: TableBand, printRow: number, rows: TableBodyLine, isFirstRow?: boolean, groupColOffset?: number): void;
|
|
9850
9862
|
private _headerView;
|
|
9851
9863
|
private _footerView;
|
|
9852
9864
|
private _rowView;
|
|
@@ -10224,7 +10236,18 @@ declare class TextBandElement extends BandItemElement<TextBand> {
|
|
|
10224
10236
|
static readonly FOOTER_CLASS = "rr-band-footer";
|
|
10225
10237
|
static readonly BODY_CLASS = "rr-textband-body";
|
|
10226
10238
|
static readonly FIXED_LINE_HEIGHT = 1.2;
|
|
10227
|
-
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;
|
|
10228
10251
|
private _bodyView;
|
|
10229
10252
|
private _headerView;
|
|
10230
10253
|
private _footerView;
|