realreport 1.10.13 → 1.10.14
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 +7 -1
- package/dist/realreport.d.ts +14 -5
- package/dist/realreport.es.js +3 -3
- package/dist/realreport.js +3 -3
- package/package.json +1 -1
package/dist/realreport.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
RealReport v1.10.
|
|
2
|
+
RealReport v1.10.14
|
|
3
3
|
Copyright (C) 2013-2025 WooriTech Inc.
|
|
4
4
|
All Rights Reserved.
|
|
5
5
|
*/
|
|
@@ -554,6 +554,11 @@ border: 1px dotted #00000020; */
|
|
|
554
554
|
white-space: nowrap;
|
|
555
555
|
}
|
|
556
556
|
|
|
557
|
+
.barcode-empty:before {
|
|
558
|
+
content: "[BARCODE]";
|
|
559
|
+
white-space: nowrap;
|
|
560
|
+
}
|
|
561
|
+
|
|
557
562
|
.rr-text-band .rr-text-band-body[data-empty]:before {
|
|
558
563
|
background-color: #00000008;
|
|
559
564
|
color: #777;
|
|
@@ -1396,6 +1401,7 @@ border-bottom: 1px solid #ccc; */
|
|
|
1396
1401
|
width: 100%;
|
|
1397
1402
|
position: absolute;
|
|
1398
1403
|
top: 50%;
|
|
1404
|
+
left: 0;
|
|
1399
1405
|
transform: translateY(-50%);
|
|
1400
1406
|
}
|
|
1401
1407
|
|
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.14
|
|
4
|
+
* commit 7511c50
|
|
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.14
|
|
15
15
|
* Copyright (C) 2013-2025 WooriTech Inc.
|
|
16
16
|
* All Rights Reserved.
|
|
17
|
-
* commit
|
|
17
|
+
* commit b0b7c34b900d29783fc98130d89d28b596b703a7
|
|
18
18
|
*/
|
|
19
19
|
|
|
20
20
|
|
|
@@ -3881,6 +3881,7 @@ declare class CrosstabValueField extends CrosstabField {
|
|
|
3881
3881
|
get itemType(): string;
|
|
3882
3882
|
getCollectionLabel(): string;
|
|
3883
3883
|
getEditProps(): IPropInfo[];
|
|
3884
|
+
getPropDomain(prop: IPropInfo): any;
|
|
3884
3885
|
protected _doLoad(src: any): void;
|
|
3885
3886
|
protected _doSave(target: object): void;
|
|
3886
3887
|
}
|
|
@@ -4047,6 +4048,7 @@ declare class CrosstabBand extends ReportGroupItem {
|
|
|
4047
4048
|
get rows(): CrosstabRowCollection;
|
|
4048
4049
|
get bandData(): BandArrayData;
|
|
4049
4050
|
get columns(): CrosstabColumnCollection;
|
|
4051
|
+
canAddField(field: string): boolean;
|
|
4050
4052
|
containsField(field: string): boolean;
|
|
4051
4053
|
getRowField(index: number): CrosstabField;
|
|
4052
4054
|
getColumnField(index: number): CrosstabColumnField;
|
|
@@ -5266,6 +5268,7 @@ declare abstract class TextItemBase extends ReportItem {
|
|
|
5266
5268
|
set suffix(value: string);
|
|
5267
5269
|
getText(v: any): string;
|
|
5268
5270
|
getDesignText2(system: boolean): string;
|
|
5271
|
+
protected _doDefaultInit(loader: IReportLoader, parent: ReportGroupItem, hintWidth: number, hintHeight: number): void;
|
|
5269
5272
|
protected _getEditProps(): IPropInfo[];
|
|
5270
5273
|
protected _getStyleProps(): string[];
|
|
5271
5274
|
protected _doLoad(loader: IReportLoader, src: any): void;
|
|
@@ -5613,6 +5616,9 @@ declare class BarcodeItem extends ReportItem {
|
|
|
5613
5616
|
static readonly PROP_TEXT_ALIGN = "textAlign";
|
|
5614
5617
|
static readonly PROP_FLAT = "flat";
|
|
5615
5618
|
static readonly PROP_LAST_CHAR = "lastChar";
|
|
5619
|
+
/** Barcode를 표현할 수 있는 영역의 최소 크기 (한 변 기준, px단위) */
|
|
5620
|
+
static readonly BARCODE_WIDTH_MIN_SIZE = 50;
|
|
5621
|
+
static readonly BARCODE_HEIGHT_MIN_SIZE = 15;
|
|
5616
5622
|
static readonly PROPINFOS: IPropInfo[];
|
|
5617
5623
|
static readonly STYLE_PROPS: string[];
|
|
5618
5624
|
static readonly $_ctor: string;
|
|
@@ -5705,7 +5711,9 @@ interface IExcelCell {
|
|
|
5705
5711
|
rowSpan?: number;
|
|
5706
5712
|
colSpan?: number;
|
|
5707
5713
|
value?: any;
|
|
5714
|
+
originValue?: string;
|
|
5708
5715
|
format?: string;
|
|
5716
|
+
numberFormat?: string;
|
|
5709
5717
|
formula?: string;
|
|
5710
5718
|
preparedFormula?: string;
|
|
5711
5719
|
formulaConversionError?: FormulaConverterError;
|
|
@@ -5964,8 +5972,9 @@ declare class ExcelTextItem extends TextItem {
|
|
|
5964
5972
|
getDesignText2(system: boolean): string;
|
|
5965
5973
|
protected _doLoad(loader: IReportLoader, src: any): void;
|
|
5966
5974
|
protected _doSave(target: object): void;
|
|
5967
|
-
protected _getPrintText(ctx: ExcelPrintContext): string;
|
|
5975
|
+
protected _getPrintText(ctx: ExcelPrintContext, getValue?: (ctx: ExcelPrintContext) => string): string;
|
|
5968
5976
|
private $_getPrintValue;
|
|
5977
|
+
private $_getOriginValue;
|
|
5969
5978
|
}
|
|
5970
5979
|
|
|
5971
5980
|
/**
|