realreport-designer 1.10.13 → 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;
@@ -15500,6 +15508,7 @@ declare abstract class TextItemBase extends ReportItem {
15500
15508
  set suffix(value: string);
15501
15509
  getText(v: any): string;
15502
15510
  getDesignText2(system: boolean): string;
15511
+ protected _doDefaultInit(loader: IReportLoader, parent: ReportGroupItem, hintWidth: number, hintHeight: number): void;
15503
15512
  protected _getEditProps(): IPropInfo[];
15504
15513
  protected _getStyleProps(): string[];
15505
15514
  protected _doLoad(loader: IReportLoader, src: any): void;