realreport 1.10.13 → 1.10.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.
@@ -1,5 +1,5 @@
1
1
  /*
2
- RealReport v1.10.13
2
+ RealReport v1.10.15
3
3
  Copyright (C) 2013-2025 WooriTech Inc.
4
4
  All Rights Reserved.
5
5
  */
@@ -510,6 +510,10 @@ border: 1px dotted #00000020; */
510
510
  line-height: normal;
511
511
  }
512
512
 
513
+ .rr-text > span {
514
+ pointer-events: none;
515
+ }
516
+
513
517
  .rr-text[data-design]:hover {
514
518
  background-color: rgba(111, 111, 0, 0.1);
515
519
  }
@@ -554,7 +558,12 @@ border: 1px dotted #00000020; */
554
558
  white-space: nowrap;
555
559
  }
556
560
 
557
- .rr-text-band .rr-text-band-body[data-empty]:before {
561
+ .barcode-empty:before {
562
+ content: "[BARCODE]";
563
+ white-space: nowrap;
564
+ }
565
+
566
+ .rr-text-band .rr-textband-body[data-empty]:before {
558
567
  background-color: #00000008;
559
568
  color: #777;
560
569
  text-align: center;
@@ -1396,6 +1405,7 @@ border-bottom: 1px solid #ccc; */
1396
1405
  width: 100%;
1397
1406
  position: absolute;
1398
1407
  top: 50%;
1408
+ left: 0;
1399
1409
  transform: translateY(-50%);
1400
1410
  }
1401
1411
 
@@ -1,7 +1,7 @@
1
1
  /// <reference types="pdfkit" />
2
2
  /**
3
- * RealReport v1.10.13
4
- * commit 2feef43
3
+ * RealReport v1.10.15
4
+ * commit 3c05933
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.13
14
+ * RealReport Core v1.10.15
15
15
  * Copyright (C) 2013-2025 WooriTech Inc.
16
16
  * All Rights Reserved.
17
- * commit 8da5d41f9034dfc777f1254773858fcb8feebbb7
17
+ * commit 48aa52d23107827c53f40755f9ca9526f5d39a58
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
  /**
@@ -11885,6 +11894,8 @@ declare class BandArrayData extends BandData implements IBandData {
11885
11894
  _internalValues(): any[];
11886
11895
  getValues(): any[];
11887
11896
  setValues(vals: any[]): void;
11897
+ removeValueAt(index: number): boolean;
11898
+ insertValueAt(values: any, index: number): void;
11888
11899
  clearValues(): void;
11889
11900
  getFieldSample(): any[];
11890
11901
  setLinkSource(source: any[]): void;