realreport-designer 1.11.6 → 1.11.8

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.
@@ -5198,6 +5198,13 @@ declare enum FormulaConverterErrorCode {
5198
5198
  BAND_NOT_FOUND = "BAND_NOT_FOUND"
5199
5199
  }
5200
5200
 
5201
+ export declare const getVersion: typeof Globals.getVersion;
5202
+
5203
+ declare class Globals {
5204
+ static getVersion(): string;
5205
+ static setLicenseKey(license: string): void;
5206
+ }
5207
+
5201
5208
  /**
5202
5209
  * Header bar contaioner 모델.
5203
5210
  */
@@ -9591,6 +9598,7 @@ declare class RealChartItem extends ChartItem<RCConfig> {
9591
9598
  }
9592
9599
 
9593
9600
  declare class RealChartItemElement extends ReportItemElement<RealChartItem> implements AsyncLoadable {
9601
+ static readonly ITEM_CLASS = "rr-chart";
9594
9602
  private _chartDiv;
9595
9603
  private _wrapper;
9596
9604
  protected _getCssSelector(): string;
@@ -13520,6 +13528,8 @@ declare type ServerReportSource = {
13520
13528
 
13521
13529
  declare type ServerReportSources = (ServerReportGroupSource | ServerReportSource)[];
13522
13530
 
13531
+ export declare const setLicenseKey: typeof Globals.setLicenseKey;
13532
+
13523
13533
  /**
13524
13534
  * A sheet design model.
13525
13535
  */
@@ -14728,8 +14738,10 @@ declare class TableBandDataRowElement extends TableBandSectionElement<TableBandD
14728
14738
  private _styles;
14729
14739
  private _cellStyles;
14730
14740
  applyCellStyles(ctx: PrintContext, band: TableBand, tr: HTMLTableRowElement, trow: number, dynRowStyles: any): void;
14741
+ $_refreshRowCells(ctx: PrintContext, hintWidth: number, hintHeight: number, force?: boolean, tableRows?: HTMLTableRowElement[]): void;
14731
14742
  protected _setTableStyles(table: HTMLTableElement): void;
14732
14743
  protected _setRowStyles(tr: HTMLTableRowElement, row: number): void;
14744
+ private $_getCellStyleCallback;
14733
14745
  }
14734
14746
 
14735
14747
  /**
@@ -15336,7 +15348,7 @@ declare type TableCellSpan = {
15336
15348
  m: TableCellItem;
15337
15349
  };
15338
15350
 
15339
- declare type TableCellStyleCallback = (ctx: PrintContext, cell: TableCell, row: number) => {
15351
+ declare type TableCellStyleCallback = (ctx: PrintContext, cell: TableCell, row: number, value: any) => {
15340
15352
  [key: string]: string | undefined;
15341
15353
  };
15342
15354