realreport 1.10.4 → 1.10.5

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.4
2
+ RealReport v1.10.5
3
3
  Copyright (C) 2013-2025 WooriTech Inc.
4
4
  All Rights Reserved.
5
5
  */
@@ -2405,6 +2405,7 @@ All Rights Reserved.
2405
2405
  /** bar series */
2406
2406
  .rct-bar-series {
2407
2407
  fill-opacity: 1;
2408
+ stroke-width: 0;
2408
2409
  }
2409
2410
 
2410
2411
  /** circlebar series */
@@ -2638,6 +2639,16 @@ All Rights Reserved.
2638
2639
  stroke-width: 2px;
2639
2640
  }
2640
2641
 
2642
+ /** wordcloud series */
2643
+ .rct-wordcloud-series .rct-point[data-focus] {
2644
+ filter: none !important;
2645
+ }
2646
+ .rct-wordcloud-series .rct-point[data-focus] text {
2647
+ filter: brightness(80%) !important;
2648
+ stroke: #777 !important;
2649
+ stroke-width: 0px;
2650
+ }
2651
+
2641
2652
  /** gauge */
2642
2653
  .rct-gauge-pane {
2643
2654
  fill: none;
@@ -1,7 +1,7 @@
1
1
  /// <reference types="pdfkit" />
2
2
  /**
3
- * RealReport v1.10.4
4
- * commit b11cc0a
3
+ * RealReport v1.10.5
4
+ * commit 49bc793
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.4
14
+ * RealReport Core v1.10.5
15
15
  * Copyright (C) 2013-2025 WooriTech Inc.
16
16
  * All Rights Reserved.
17
- * commit f8009ee1c49638603fa7227836c820a59e19a28f
17
+ * commit 403686a369abfa9615d088153e3f90decdd8cd21
18
18
  */
19
19
 
20
20
 
@@ -4673,6 +4673,8 @@ interface RCSeriesPointLabelConfig {
4673
4673
  style?: RCSvgStyles;
4674
4674
  offset?: number;
4675
4675
  position?: RCSeriesPointLabelPosition;
4676
+ numberFormat?: string;
4677
+ numberSymbols?: string;
4676
4678
  }
4677
4679
  interface RCSeriesTooltipConfig {
4678
4680
  visible?: boolean;
@@ -48187,10 +48189,6 @@ type ErrorParams = {
48187
48189
  msg?: string;
48188
48190
  };
48189
48191
 
48190
- interface DocExportOptions {
48191
- type: string;
48192
- filename?: string;
48193
- }
48194
48192
  /**
48195
48193
  * ReportViewer base class
48196
48194
  */
@@ -48204,7 +48202,7 @@ declare abstract class ReportViewBase {
48204
48202
  abstract preview(options: PreviewOptions): void;
48205
48203
  abstract exportPdf(options: PDFExportOptions): Promise<void>;
48206
48204
  abstract exportImage(imageOptions: ImageExportOptions): void;
48207
- abstract exportDocument(options: DocExportOptions): void;
48205
+ abstract exportDocument(options: DocumentExportOptions): void;
48208
48206
  /**
48209
48207
  * 컨테이너의 상태를 체크하기 위한 조건과 조건에 맞을 경우의 에러 처리코드를 넘겨 줍니다.
48210
48208
  * checker.is 가 true이면 errorParams로 error() 를 실행 합니다.
@@ -48267,7 +48265,7 @@ declare class ReportViewer extends ReportViewBase {
48267
48265
  */
48268
48266
  exportPdf(options: PDFExportOptions): Promise<void>;
48269
48267
  /**
48270
- * 리포트를 Blob 형식으로 내보내기 합니다.
48268
+ * 리포트를 Pdf 파일 변환 후 Blob 데이터로 반환
48271
48269
  * @param options PDFExportOptions
48272
48270
  */
48273
48271
  exportPdfBlob(options: PDFExportBlobOptions): Promise<Blob>;
@@ -48276,11 +48274,21 @@ declare class ReportViewer extends ReportViewBase {
48276
48274
  * @param imageOptions
48277
48275
  */
48278
48276
  exportImage(imageOptions: ImageExportOptions): Promise<void>;
48277
+ /**
48278
+ * 리포트를 이미지로 변환 후 Blob 배열 형식으로 반환
48279
+ * @param imageOptions
48280
+ */
48281
+ exportImageBlob(imageOptions?: ImageExportBlobOptions): Promise<Blob[]>;
48279
48282
  /**
48280
48283
  * 문서 내보내기 함수
48281
48284
  * @param options
48282
48285
  */
48283
- exportDocument(options?: DocExportOptions): Promise<void>;
48286
+ exportDocument(options?: DocumentExportOptions): Promise<void>;
48287
+ /**
48288
+ * 리포트를 문서 파일 형식의 Blob 데이터로 반환
48289
+ * @param options
48290
+ */
48291
+ exportDocumentBlob(options?: DocumentExportBlobOptions): Promise<Blob>;
48284
48292
  /**
48285
48293
  * 이메일 HTML 내보내기 함수
48286
48294
  */
@@ -48389,7 +48397,7 @@ declare class ReportCompositeViewer extends ReportViewBase {
48389
48397
  */
48390
48398
  exportPdfBlob(options: PDFExportBlobOptions): Promise<Blob>;
48391
48399
  exportImage(imageOptions: ImageExportOptions): void;
48392
- exportDocument(options: DocExportOptions): void;
48400
+ exportDocument(options: DocumentExportOptions): void;
48393
48401
  private _checkReportFormSet;
48394
48402
  }
48395
48403
 
@@ -48528,10 +48536,24 @@ type PDFExportOptions = {
48528
48536
  /**
48529
48537
  * 권한에 따른 기능을 제한 할 수 있습니다.
48530
48538
  */
48531
- permissions: PdfPermissions;
48532
- pdfVersion: '1.3' | '1.4' | '1.5' | '1.6' | '1.7' | '1.7ext3';
48539
+ permissions?: PdfPermissions;
48540
+ pdfVersion?: '1.3' | '1.4' | '1.5' | '1.6' | '1.7' | '1.7ext3';
48533
48541
  };
48534
48542
  type PDFExportBlobOptions = Omit<PDFExportOptions, 'filename' | 'preview'>;
48543
+ interface DocumentExportOptions {
48544
+ type: string;
48545
+ filename?: string;
48546
+ }
48547
+ type DocumentExportBlobOptions = Pick<DocumentExportOptions, 'type'>;
48548
+ type ImageExportBlobOptions = Pick<ImageExportOptions, 'type' | 'tiff'>;
48549
+ /**
48550
+ * DEFAULT EXPORT OPTIONS
48551
+ */
48552
+ declare const DOC_EXPORT_DEFAULT_OPTIONS: DocumentExportOptions;
48553
+ declare const IMG_EXPORT_DEFAULT_OPTIONS: ImageExportOptions;
48554
+ /**
48555
+ * CONSTANT ERROR MESSAGE
48556
+ */
48535
48557
  declare const ZOOM_ERROR_MESSAGE = "\uD398\uC774\uC9C0 \uBC30\uC728 \uAC12\uC774 100%\uC778 \uACBD\uC6B0\uB9CC \uB0B4\uBCF4\uB0B4\uAE30\uAC00 \uAC00\uB2A5\uD569\uB2C8\uB2E4. \uD398\uC774\uC9C0 \uBC30\uC728 \uAC12\uC774 100%\uC778\uC9C0 \uD655\uC778\uD574 \uC8FC\uC138\uC694.";
48536
48558
 
48537
- export { GridReportItemSource, GridReportLayout, GridReportViewer, PDFExportBlobOptions, PDFExportOptions, PreviewOptions, PrintOptions, ReportCompositeViewer, ReportData, ReportDataSet, ReportForm, ReportFormSet, ReportFormSets, ReportOptions, ReportViewer, ZOOM_ERROR_MESSAGE };
48559
+ export { DOC_EXPORT_DEFAULT_OPTIONS, DocumentExportBlobOptions, DocumentExportOptions, GridReportItemSource, GridReportLayout, GridReportViewer, IMG_EXPORT_DEFAULT_OPTIONS, ImageExportBlobOptions, PDFExportBlobOptions, PDFExportOptions, PreviewOptions, PrintOptions, ReportCompositeViewer, ReportData, ReportDataSet, ReportForm, ReportFormSet, ReportFormSets, ReportOptions, ReportViewer, ZOOM_ERROR_MESSAGE };