realreport-designer 1.10.10 → 1.10.12

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.
@@ -527,6 +527,10 @@ declare abstract class BandPrintInfo<T extends ReportItem> {
527
527
  protected _resetRowIndex(row: BandPrintInfo<SimpleBand | TableBand | BandGroup>): void;
528
528
  protected _prepareDetailBandPrintNext(ctx: PrintContextBase, band: DataBand, row: BandPrintInfo<SimpleBand | TableBand | BandGroup>, rows: BandPrintRow[], rowsPerPage: number): void;
529
529
  protected _isNextRowDataRow(rows: BandPrintRow[]): boolean;
530
+ /**
531
+ * 밴드 디테일 영역에서 SummaryItem 계산을 위한 데이터 준비
532
+ */
533
+ protected _prepareBandDetailSummary(ctx: PrintContext, band: DataBand): void;
530
534
  }
531
535
 
532
536
  declare type BandPrintRow = number | BandFooterPrintInfo | BandPrintInfo<any> | EndRowMarker;
@@ -2008,6 +2012,7 @@ declare abstract class DataBand extends ReportBandItem {
2008
2012
  getMin(field: string, count: number, rows?: number[]): number;
2009
2013
  getMax(field: string, count: number, rows?: number[]): number;
2010
2014
  getAvg(field: string, count: number, rows?: number[]): number;
2015
+ getGroupField(field: string, count: number, rows?: number[]): string;
2011
2016
  getPropDomain(prop: IPropInfo): any[];
2012
2017
  /**
2013
2018
  * 출력시 사용되는 밴드의 정보를 초기값으로 초기화
@@ -2036,6 +2041,7 @@ declare abstract class DataBand extends ReportBandItem {
2036
2041
  private $_getSum;
2037
2042
  private $_getMin;
2038
2043
  private $_getMax;
2044
+ private $_getGroupField;
2039
2045
  protected _createDataBandCollection(): DataBandCollection;
2040
2046
  }
2041
2047
 
@@ -4906,6 +4912,7 @@ declare class FieldListManager extends VisualElement {
4906
4912
  private _moveFieldEnabled;
4907
4913
  private _onSearchFieldRefresh;
4908
4914
  private _saveOrderWhenFieldOrderChanged;
4915
+ private _fieldsLabelElement;
4909
4916
  constructor(doc: Document, name: string, label: string);
4910
4917
  protected _doDispose(): void;
4911
4918
  get fieldContainer(): HTMLDivElement;
@@ -4918,6 +4925,7 @@ declare class FieldListManager extends VisualElement {
4918
4925
  get firstFieldElement(): Element;
4919
4926
  get lastFieldElement(): Element;
4920
4927
  get selectedElement(): HTMLElement;
4928
+ get fieldsLabelElement(): Element;
4921
4929
  get isSorting(): boolean;
4922
4930
  get isSearching(): boolean;
4923
4931
  set sortEnabled(value: boolean);
@@ -4944,6 +4952,7 @@ declare class FieldListManager extends VisualElement {
4944
4952
  getFieldsByOriginalOrder(): FieldElementInfo[];
4945
4953
  close(): void;
4946
4954
  refreshUpDownBtn(): void;
4955
+ refreshFieldsLabel(): void;
4947
4956
  focusSearchField(): void;
4948
4957
  scrollToFirstField(): void;
4949
4958
  scrollToLastField(): void;
@@ -6382,12 +6391,18 @@ declare interface IExcelRenderInfo {
6382
6391
  row: number;
6383
6392
  col: number;
6384
6393
  rowCount?: number;
6385
- runRows?: number;
6394
+ /**
6395
+ * 해당 아이템이 출력해야하는 행 수
6396
+ */
6397
+ runRows: number;
6386
6398
  colCount?: number;
6387
6399
  band?: IExcelBandContext;
6388
6400
  box?: boolean;
6389
6401
  sign?: any;
6390
6402
  stamp?: any;
6403
+ /**
6404
+ * 아이템이 출력해야 할 정확한 행 위치
6405
+ */
6391
6406
  r?: number;
6392
6407
  cells: IExcelCell | IExcelCell[];
6393
6408
  hCells?: IExcelCell[];
@@ -14045,7 +14060,7 @@ declare class SummaryItem extends TextItemBase {
14045
14060
  */
14046
14061
  get expression(): string;
14047
14062
  set expression(value: string);
14048
- getSummary(runtime: DataBandSummaryRuntime): any;
14063
+ getSummary(runtime: DataBandSummaryRuntime, ctx: PrintContext | ExcelPrintContext): any;
14049
14064
  getSaveType(): string;
14050
14065
  canAddToFrontContainer(): boolean;
14051
14066
  canAddToBackContainer(): boolean;