realreport-designer 1.10.12 → 1.10.14

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.
@@ -579,6 +579,9 @@ declare class BarcodeItem extends ReportItem {
579
579
  static readonly PROP_TEXT_ALIGN = "textAlign";
580
580
  static readonly PROP_FLAT = "flat";
581
581
  static readonly PROP_LAST_CHAR = "lastChar";
582
+ /** Barcode를 표현할 수 있는 영역의 최소 크기 (한 변 기준, px단위) */
583
+ static readonly BARCODE_WIDTH_MIN_SIZE = 50;
584
+ static readonly BARCODE_HEIGHT_MIN_SIZE = 15;
582
585
  static readonly PROPINFOS: IPropInfo[];
583
586
  static readonly STYLE_PROPS: string[];
584
587
  static readonly $_ctor: string;
@@ -1301,6 +1304,7 @@ declare class CrosstabBand extends ReportGroupItem {
1301
1304
  get rows(): CrosstabRowCollection;
1302
1305
  get bandData(): BandArrayData;
1303
1306
  get columns(): CrosstabColumnCollection;
1307
+ canAddField(field: string): boolean;
1304
1308
  containsField(field: string): boolean;
1305
1309
  getRowField(index: number): CrosstabField;
1306
1310
  getColumnField(index: number): CrosstabColumnField;
@@ -1676,6 +1680,7 @@ declare class CrosstabValueField extends CrosstabField {
1676
1680
  get itemType(): string;
1677
1681
  getCollectionLabel(): string;
1678
1682
  getEditProps(): IPropInfo[];
1683
+ getPropDomain(prop: IPropInfo): any;
1679
1684
  protected _doLoad(src: any): void;
1680
1685
  protected _doSave(target: object): void;
1681
1686
  }
@@ -4865,8 +4870,9 @@ declare class ExcelTextItem extends TextItem {
4865
4870
  getDesignText2(system: boolean): string;
4866
4871
  protected _doLoad(loader: IReportLoader, src: any): void;
4867
4872
  protected _doSave(target: object): void;
4868
- protected _getPrintText(ctx: ExcelPrintContext): string;
4873
+ protected _getPrintText(ctx: ExcelPrintContext, getValue?: (ctx: ExcelPrintContext) => string): string;
4869
4874
  private $_getPrintValue;
4875
+ private $_getOriginValue;
4870
4876
  }
4871
4877
 
4872
4878
  /* Excluded from this release type: ExpressionNode */
@@ -6315,7 +6321,9 @@ declare interface IExcelCell {
6315
6321
  rowSpan?: number;
6316
6322
  colSpan?: number;
6317
6323
  value?: any;
6324
+ originValue?: string;
6318
6325
  format?: string;
6326
+ numberFormat?: string;
6319
6327
  formula?: string;
6320
6328
  preparedFormula?: string;
6321
6329
  formulaConversionError?: FormulaConverterError;
@@ -14649,6 +14657,7 @@ declare abstract class TableBase extends CellContainer {
14649
14657
  */
14650
14658
  get fixed(): boolean;
14651
14659
  set fixed(value: boolean);
14660
+ get spans(): TableCellSpan[][];
14652
14661
  abstract getCellWidths(): DimensionCollection;
14653
14662
  abstract getColumn(col: number): TableColumnBase;
14654
14663
  getRow(index: number): TableRow;
@@ -15205,6 +15214,7 @@ declare class TableSelection implements ISelectionSource {
15205
15214
  cols: number;
15206
15215
  rows: number;
15207
15216
  private _cell;
15217
+ private _lastCell;
15208
15218
  constructor(cell: TableCell, cols: number, rows: number);
15209
15219
  get table(): TableBase;
15210
15220
  get cell(): TableCell;
@@ -15220,6 +15230,8 @@ declare class TableSelection implements ISelectionSource {
15220
15230
  getCells(ignoreHiddens: boolean): TableCell[];
15221
15231
  resizeTo(cell: TableCell): boolean;
15222
15232
  resizeBy(dx: number, dy: number): boolean;
15233
+ resize(): boolean;
15234
+ getSize(foc: TableCell): number[];
15223
15235
  softEquals(cell: TableCell): boolean;
15224
15236
  equals(cell: TableCell): boolean;
15225
15237
  }
@@ -15496,6 +15508,7 @@ declare abstract class TextItemBase extends ReportItem {
15496
15508
  set suffix(value: string);
15497
15509
  getText(v: any): string;
15498
15510
  getDesignText2(system: boolean): string;
15511
+ protected _doDefaultInit(loader: IReportLoader, parent: ReportGroupItem, hintWidth: number, hintHeight: number): void;
15499
15512
  protected _getEditProps(): IPropInfo[];
15500
15513
  protected _getStyleProps(): string[];
15501
15514
  protected _doLoad(loader: IReportLoader, src: any): void;