realreport-designer 1.11.10 → 1.11.11
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-designer.cjs +141 -125
- package/dist/realreport-designer.d.ts +12 -3
- package/dist/realreport-designer.js +22699 -22556
- package/dist/realreport-designer.umd.js +154 -138
- package/dist/styles/realreport-designer.css +1 -1
- package/package.json +1 -1
|
@@ -4254,6 +4254,7 @@ declare class ExcelPrintContext extends PrintContextBase<ExcelReport> {
|
|
|
4254
4254
|
private _cells;
|
|
4255
4255
|
private _heights;
|
|
4256
4256
|
private _sheetContextValueManager;
|
|
4257
|
+
private _pendingCells;
|
|
4257
4258
|
reportView: ExcelReportView;
|
|
4258
4259
|
sheetView: ExcelSheetView;
|
|
4259
4260
|
printView: SheetPrintView;
|
|
@@ -4284,6 +4285,11 @@ declare class ExcelPrintContext extends PrintContextBase<ExcelReport> {
|
|
|
4284
4285
|
setCellHeight(cell: HTMLTableCellElement): void;
|
|
4285
4286
|
setCellFixedHeight(cell: HTMLTableCellElement): void;
|
|
4286
4287
|
setConditionalFormatting(options: IConditionalFormattingOptions): void;
|
|
4288
|
+
addPendingCell(pendingContext: IExcelRenderInfo): void;
|
|
4289
|
+
/**
|
|
4290
|
+
* Pending 상태의 셀들을 모두 처리한다.
|
|
4291
|
+
*/
|
|
4292
|
+
resolvePendingCells(): Promise<void>;
|
|
4287
4293
|
preparePrint(report?: ExcelReport): void;
|
|
4288
4294
|
}
|
|
4289
4295
|
|
|
@@ -6491,7 +6497,7 @@ declare interface IExcelGroupItem {
|
|
|
6491
6497
|
}
|
|
6492
6498
|
|
|
6493
6499
|
declare interface IExcellImage {
|
|
6494
|
-
image:
|
|
6500
|
+
image: any;
|
|
6495
6501
|
width: number;
|
|
6496
6502
|
height?: number;
|
|
6497
6503
|
}
|
|
@@ -6564,7 +6570,8 @@ declare interface ImageExportOptions {
|
|
|
6564
6570
|
|
|
6565
6571
|
declare enum ImageFit {
|
|
6566
6572
|
CONTAIN = "contain",
|
|
6567
|
-
COVER = "cover"
|
|
6573
|
+
COVER = "cover",
|
|
6574
|
+
FILL = "fill"
|
|
6568
6575
|
}
|
|
6569
6576
|
|
|
6570
6577
|
/**
|
|
@@ -13797,7 +13804,7 @@ declare class SheetEditor extends ReportContainer<ExcelPrintContext> {
|
|
|
13797
13804
|
get sx(): number;
|
|
13798
13805
|
get sy(): number;
|
|
13799
13806
|
onGetStampImage: () => Promise<string>;
|
|
13800
|
-
preview(report: ExcelReport, data: ReportDataProvider, options: IPreviewOptions, allPages?: boolean): void
|
|
13807
|
+
preview(report: ExcelReport, data: ReportDataProvider, options: IPreviewOptions, allPages?: boolean): Promise<void>;
|
|
13801
13808
|
load(file: File): Promise<void>;
|
|
13802
13809
|
invalidateExtents(): void;
|
|
13803
13810
|
invalidateColumnWidths(): void;
|
|
@@ -13874,11 +13881,13 @@ declare class SheetEditTable extends ExcelTableElementBase {
|
|
|
13874
13881
|
private $_prepareColumns;
|
|
13875
13882
|
private $_prepareRows;
|
|
13876
13883
|
private $_recalcHeights;
|
|
13884
|
+
private $_getTotalRowHeight;
|
|
13877
13885
|
/**
|
|
13878
13886
|
* [주의] cells가 위에서 아래로, 왼쪽에 오른쪽으로 정렬되어 있다고 가정한다.
|
|
13879
13887
|
*/
|
|
13880
13888
|
private $_renderCells;
|
|
13881
13889
|
private $_writeCell;
|
|
13890
|
+
private $_prepareBarcodeContent;
|
|
13882
13891
|
private $_prepareImageContent;
|
|
13883
13892
|
private $_prepareBarContent;
|
|
13884
13893
|
private $_prepareConditionalFormattingRef;
|