realreport 1.10.12 → 1.10.13
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 +9 -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,7 +1,7 @@
|
|
|
1
1
|
/// <reference types="pdfkit" />
|
|
2
2
|
/**
|
|
3
|
-
* RealReport v1.10.
|
|
4
|
-
* commit
|
|
3
|
+
* RealReport v1.10.13
|
|
4
|
+
* commit 2feef43
|
|
5
5
|
|
|
6
6
|
* {@link https://real-report.com}
|
|
7
7
|
* Copyright (C) 2013-2025 WooriTech Inc.
|
|
@@ -11,10 +11,10 @@
|
|
|
11
11
|
import { Cvfo, Style } from 'exceljs';
|
|
12
12
|
|
|
13
13
|
/**
|
|
14
|
-
* RealReport Core v1.10.
|
|
14
|
+
* RealReport Core v1.10.13
|
|
15
15
|
* Copyright (C) 2013-2025 WooriTech Inc.
|
|
16
16
|
* All Rights Reserved.
|
|
17
|
-
* commit
|
|
17
|
+
* commit 8da5d41f9034dfc777f1254773858fcb8feebbb7
|
|
18
18
|
*/
|
|
19
19
|
|
|
20
20
|
|
|
@@ -2235,6 +2235,7 @@ declare class TableSelection implements ISelectionSource {
|
|
|
2235
2235
|
cols: number;
|
|
2236
2236
|
rows: number;
|
|
2237
2237
|
private _cell;
|
|
2238
|
+
private _lastCell;
|
|
2238
2239
|
constructor(cell: TableCell$1, cols: number, rows: number);
|
|
2239
2240
|
get table(): TableBase;
|
|
2240
2241
|
get cell(): TableCell$1;
|
|
@@ -2250,6 +2251,8 @@ declare class TableSelection implements ISelectionSource {
|
|
|
2250
2251
|
getCells(ignoreHiddens: boolean): TableCell$1[];
|
|
2251
2252
|
resizeTo(cell: TableCell$1): boolean;
|
|
2252
2253
|
resizeBy(dx: number, dy: number): boolean;
|
|
2254
|
+
resize(): boolean;
|
|
2255
|
+
getSize(foc: TableCell$1): number[];
|
|
2253
2256
|
softEquals(cell: TableCell$1): boolean;
|
|
2254
2257
|
equals(cell: TableCell$1): boolean;
|
|
2255
2258
|
}
|
|
@@ -2284,7 +2287,7 @@ declare class TableCellCollection extends ReportItemCollection<TableCell$1> {
|
|
|
2284
2287
|
getAt(row: number, col: number): TableCell$1;
|
|
2285
2288
|
indexOf(item: TableCell$1): number;
|
|
2286
2289
|
getRectangle(from: TableCell$1, to: TableCell$1): IRect;
|
|
2287
|
-
getRectangleCells(from: TableCell$1, to: TableCell$1
|
|
2290
|
+
getRectangleCells(from: TableCell$1, to: TableCell$1): TableCell$1[];
|
|
2288
2291
|
/**
|
|
2289
2292
|
* table rowCount, colCount 변경 시 table에서도 호출한다.
|
|
2290
2293
|
* rowCount, colCount가 줄어들어도 기존 cell들은 제거하지 않는다.
|
|
@@ -2423,6 +2426,7 @@ declare abstract class TableBase extends CellContainer {
|
|
|
2423
2426
|
*/
|
|
2424
2427
|
get fixed(): boolean;
|
|
2425
2428
|
set fixed(value: boolean);
|
|
2429
|
+
get spans(): TableCellSpan[][];
|
|
2426
2430
|
abstract getCellWidths(): DimensionCollection;
|
|
2427
2431
|
abstract getColumn(col: number): TableColumnBase;
|
|
2428
2432
|
getRow(index: number): TableRow;
|