realreport 1.11.13 → 1.11.15
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 +10 -7
- 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.11.
|
|
4
|
-
* commit
|
|
3
|
+
* RealReport v1.11.15
|
|
4
|
+
* commit f8d684b
|
|
5
5
|
|
|
6
6
|
* {@link https://real-report.com}
|
|
7
7
|
* Copyright (C) 2013-2025 WooriTech Inc.
|
|
@@ -12,10 +12,10 @@ import { Cvfo, Style } from 'exceljs';
|
|
|
12
12
|
import { ExportOptions as ExportOptions$1 } from '@realgrid/realchart';
|
|
13
13
|
|
|
14
14
|
/**
|
|
15
|
-
* RealReport Core v1.11.
|
|
15
|
+
* RealReport Core v1.11.15
|
|
16
16
|
* Copyright (C) 2013-2025 WooriTech Inc.
|
|
17
17
|
* All Rights Reserved.
|
|
18
|
-
* commit
|
|
18
|
+
* commit 26f7ad6c5df943a9051d646348b6b7490c616d91
|
|
19
19
|
*/
|
|
20
20
|
|
|
21
21
|
|
|
@@ -8278,6 +8278,7 @@ declare abstract class PrintContainerBase extends VisualContainer$1 {
|
|
|
8278
8278
|
private _instanceofIPrintReport;
|
|
8279
8279
|
protected _resetPreviewer(): void;
|
|
8280
8280
|
private $_clickHandler;
|
|
8281
|
+
protected _itemOf(hash: string): ReportItem;
|
|
8281
8282
|
$_keydownHandler: (ev: KeyboardEvent) => boolean;
|
|
8282
8283
|
}
|
|
8283
8284
|
|
|
@@ -11018,9 +11019,10 @@ declare class TextBandPrintInfo {
|
|
|
11018
11019
|
declare abstract class TextItemElementBase<T extends TextItemBase> extends ReportItemElement<T> {
|
|
11019
11020
|
static readonly CLASS_NAME = "rr-text";
|
|
11020
11021
|
static readonly CLASS_LIST: string;
|
|
11022
|
+
static readonly SPAN_CLASS_NAME = "rr-text-span";
|
|
11021
11023
|
static readonly SPAN = "_rr_span_";
|
|
11022
|
-
static readonly MIN_FONT_SIZE =
|
|
11023
|
-
static readonly DEFAULT_FONT_SIZE =
|
|
11024
|
+
static readonly MIN_FONT_SIZE = 3;
|
|
11025
|
+
static readonly DEFAULT_FONT_SIZE = 13;
|
|
11024
11026
|
get span(): HTMLSpanElement;
|
|
11025
11027
|
private _span;
|
|
11026
11028
|
protected _text: string;
|
|
@@ -15169,7 +15171,6 @@ declare class PrintContainer extends PrintContainerBase {
|
|
|
15169
15171
|
private $_addBorderContainer;
|
|
15170
15172
|
protected _scrollEndHandler: () => void;
|
|
15171
15173
|
}
|
|
15172
|
-
|
|
15173
15174
|
interface PdfFont {
|
|
15174
15175
|
name: string;
|
|
15175
15176
|
content: string;
|
|
@@ -15348,6 +15349,7 @@ declare class ExcelPrintContainer extends PrintContainerBase {
|
|
|
15348
15349
|
loadAsyncLoadableElements(): Promise<void>;
|
|
15349
15350
|
protected _doPrepareContainer(doc: Document, dom: HTMLElement): void;
|
|
15350
15351
|
protected _setPrintMode(reports: ReportBase | (ReportBase | IPrintReport)[]): void;
|
|
15352
|
+
protected _itemOf(hash: string): ReportItem;
|
|
15351
15353
|
private $_printReport;
|
|
15352
15354
|
private $_getPageHeight;
|
|
15353
15355
|
}
|
|
@@ -49262,6 +49264,7 @@ declare abstract class ReportViewBase {
|
|
|
49262
49264
|
protected _checkPrintContainerZoom(): void;
|
|
49263
49265
|
protected _createContainer(container: string | HTMLDivElement): PrintContainer | ExcelPrintContainer;
|
|
49264
49266
|
protected _dispose(): void;
|
|
49267
|
+
protected _getReportType(report: Report | Email | ExcelReport): ReportType;
|
|
49265
49268
|
get containerId(): string;
|
|
49266
49269
|
set containerId(container: string | HTMLDivElement);
|
|
49267
49270
|
get version(): string;
|