realreport 1.11.27 → 1.11.28

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.11.27
2
+ RealReport v1.11.28
3
3
  Copyright (C) 2013-2026 WooriTech Inc.
4
4
  All Rights Reserved.
5
5
  */
@@ -1,6 +1,6 @@
1
1
  /**
2
- * RealReport v1.11.27
3
- * commit d6b6952
2
+ * RealReport v1.11.28
3
+ * commit dcd6502
4
4
 
5
5
  * {@link https://real-report.com}
6
6
  * Copyright (C) 2013-2026 WooriTech Inc.
@@ -8,10 +8,10 @@
8
8
  */
9
9
 
10
10
  /**
11
- * RealReport Core v1.11.27
11
+ * RealReport Core v1.11.28
12
12
  * Copyright (C) 2013-2026 WooriTech Inc.
13
13
  * All Rights Reserved.
14
- * commit 9dd44112b0bd75ca0c50e06eaeeb49a354015905
14
+ * commit 2114a67120e80520c9fc49538a54060cc7c15f79
15
15
  */
16
16
  type ConfigObject$2 = {
17
17
  [key: string]: any;
@@ -10058,6 +10058,17 @@ declare class TextBandElement extends BandItemElement<TextBand> {
10058
10058
  protected _doLayoutContent(ctx: PrintContextBase): void;
10059
10059
  private $_getPrintText;
10060
10060
  private $_prepareHeads;
10061
+ /**
10062
+ * 데이터 바인딩된 경우: 데이터 소스의 모든 행에서 텍스트를 수집한다.
10063
+ *
10064
+ * - PrintContext의 row 상태를 갱신하여, 밴드 데이터 각 행의 텍스트를 수집한다.
10065
+ * - $_getPrintText는 데이터가 바인딩 된 경우 각 행(ctx.row)의 데이터를 반환함.
10066
+ *
10067
+ * @param ctx PrintContext
10068
+ * @param band 바인딩된 밴드 데이터
10069
+ * @returns 수집된 모든 텍스트(개행문자로 join됨)
10070
+ */
10071
+ private $_collectTexts;
10061
10072
  }
10062
10073
  declare class TextBandPrintInfo {
10063
10074
  band: TextBand;