realreport 1.10.6 → 1.10.7

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.6
2
+ RealReport v1.10.7
3
3
  Copyright (C) 2013-2025 WooriTech Inc.
4
4
  All Rights Reserved.
5
5
  */
@@ -1,7 +1,7 @@
1
1
  /// <reference types="pdfkit" />
2
2
  /**
3
- * RealReport v1.10.6
4
- * commit e12a220
3
+ * RealReport v1.10.7
4
+ * commit ce9722b
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.6
14
+ * RealReport Core v1.10.7
15
15
  * Copyright (C) 2013-2025 WooriTech Inc.
16
16
  * All Rights Reserved.
17
- * commit 3c339f64357f690dd8595ecbc4ae93a1a3efe81c
17
+ * commit 9e096f7b8c53056ea447585ec5c76eb0f44d449f
18
18
  */
19
19
 
20
20
 
@@ -5156,13 +5156,17 @@ declare class I18nObject<T extends ReportItem> extends ReportItemObject<T> {
5156
5156
  declare class EditableObject<T extends ReportItem> extends ReportItemObject<T> {
5157
5157
  static readonly PROP_EDITABLE = "editable";
5158
5158
  static readonly PROP_TYPE = "type";
5159
+ static readonly PROP_MAX_LENGTH = "maxLength";
5159
5160
  static readonly PROPINFOS: IPropInfo[];
5160
5161
  private _editable;
5161
5162
  private _type;
5163
+ private _maxLength;
5162
5164
  get editable(): boolean;
5163
5165
  set editable(value: boolean);
5164
5166
  get type(): EditType;
5165
5167
  set type(value: EditType);
5168
+ get maxLength(): number;
5169
+ set maxLength(value: number);
5166
5170
  get pathLabel(): string;
5167
5171
  get displayPath(): string;
5168
5172
  get level(): number;
@@ -48203,6 +48207,7 @@ declare abstract class ReportViewBase {
48203
48207
  abstract exportPdf(options: PDFExportOptions): Promise<void>;
48204
48208
  abstract exportImage(imageOptions: ImageExportOptions): void;
48205
48209
  abstract exportDocument(options: DocumentExportOptions): void;
48210
+ protected abstract _setReportForm(data: ReportForm | ReportForm | ReportFormSets): void;
48206
48211
  /**
48207
48212
  * 컨테이너의 상태를 체크하기 위한 조건과 조건에 맞을 경우의 에러 처리코드를 넘겨 줍니다.
48208
48213
  * checker.is 가 true이면 errorParams로 error() 를 실행 합니다.
@@ -48233,7 +48238,12 @@ declare abstract class ReportViewBase {
48233
48238
  fitToHeight(): void;
48234
48239
  fitToPage(): void;
48235
48240
  fitToWidth(): void;
48241
+ open(source: string | ReportForm | ReportFormSet | (string | ReportFormSet)[], options?: PreviewOptions & {
48242
+ preview?: boolean;
48243
+ }): Promise<void>;
48236
48244
  private $_checkL;
48245
+ private $_isReportSource;
48246
+ private $_isReportFormSet;
48237
48247
  }
48238
48248
 
48239
48249
  /**
@@ -48247,6 +48257,7 @@ declare class ReportViewer extends ReportViewBase {
48247
48257
  private _isPaging;
48248
48258
  private _reportViewPrinter;
48249
48259
  constructor(container: string | HTMLDivElement, reportForm?: ReportForm, dataSet?: ReportDataSet, options?: ReportOptions);
48260
+ protected _setReportForm(data: ReportForm | ReportForm[]): void;
48250
48261
  get reportForm(): ReportForm;
48251
48262
  set reportForm(form: ReportForm);
48252
48263
  get report(): Report | Email;
@@ -48378,6 +48389,7 @@ declare class ReportCompositeViewer extends ReportViewBase {
48378
48389
  private _reportViewPrinter;
48379
48390
  private _isPreview;
48380
48391
  constructor(container: string | HTMLDivElement, formSets?: ReportFormSets, options?: ReportOptions);
48392
+ protected _setReportForm(data: ReportFormSet | ReportFormSets): void;
48381
48393
  set formSets(formSets: ReportFormSets);
48382
48394
  /**
48383
48395
  * container에 formsset을 preview로 렌더링 합니다.