realreport 1.11.26 → 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.26
2
+ RealReport v1.11.28
3
3
  Copyright (C) 2013-2026 WooriTech Inc.
4
4
  All Rights Reserved.
5
5
  */
@@ -542,7 +542,10 @@ border: 1px dotted #00000020; */
542
542
  }
543
543
 
544
544
  .rr-box-container {
545
- overflow: hidden;
545
+ /* https://github.com/realgrid/realreport/issues/2855
546
+ - 아래의 overflow로 인해 바디영역의 아이템은 컨테이너에서 overflow를 켜도 표시되지 않는다.
547
+ */
548
+ /* overflow: hidden; */
546
549
  }
547
550
 
548
551
  .rr-floating-container {
@@ -1,6 +1,6 @@
1
1
  /**
2
- * RealReport v1.11.26
3
- * commit 83d7e40
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.26
11
+ * RealReport Core v1.11.28
12
12
  * Copyright (C) 2013-2026 WooriTech Inc.
13
13
  * All Rights Reserved.
14
- * commit 938d41985d8f9627ef7aaa32af4451cae881d333
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;