realreport-designer 1.10.13 → 1.10.15
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.
- package/dist/realreport-designer.cjs +154 -143
- package/dist/realreport-designer.d.ts +12 -1
- package/dist/realreport-designer.js +18561 -18275
- package/dist/realreport-designer.umd.js +141 -130
- package/dist/styles/realreport-designer.css +68 -20
- package/package.json +1 -1
|
@@ -179,6 +179,8 @@ declare class BandArrayData extends BandData implements IBandData {
|
|
|
179
179
|
_internalValues(): any[];
|
|
180
180
|
getValues(): any[];
|
|
181
181
|
setValues(vals: any[]): void;
|
|
182
|
+
removeValueAt(index: number): boolean;
|
|
183
|
+
insertValueAt(values: any, index: number): void;
|
|
182
184
|
clearValues(): void;
|
|
183
185
|
getFieldSample(): any[];
|
|
184
186
|
setLinkSource(source: any[]): void;
|
|
@@ -579,6 +581,9 @@ declare class BarcodeItem extends ReportItem {
|
|
|
579
581
|
static readonly PROP_TEXT_ALIGN = "textAlign";
|
|
580
582
|
static readonly PROP_FLAT = "flat";
|
|
581
583
|
static readonly PROP_LAST_CHAR = "lastChar";
|
|
584
|
+
/** Barcode를 표현할 수 있는 영역의 최소 크기 (한 변 기준, px단위) */
|
|
585
|
+
static readonly BARCODE_WIDTH_MIN_SIZE = 50;
|
|
586
|
+
static readonly BARCODE_HEIGHT_MIN_SIZE = 15;
|
|
582
587
|
static readonly PROPINFOS: IPropInfo[];
|
|
583
588
|
static readonly STYLE_PROPS: string[];
|
|
584
589
|
static readonly $_ctor: string;
|
|
@@ -1301,6 +1306,7 @@ declare class CrosstabBand extends ReportGroupItem {
|
|
|
1301
1306
|
get rows(): CrosstabRowCollection;
|
|
1302
1307
|
get bandData(): BandArrayData;
|
|
1303
1308
|
get columns(): CrosstabColumnCollection;
|
|
1309
|
+
canAddField(field: string): boolean;
|
|
1304
1310
|
containsField(field: string): boolean;
|
|
1305
1311
|
getRowField(index: number): CrosstabField;
|
|
1306
1312
|
getColumnField(index: number): CrosstabColumnField;
|
|
@@ -1676,6 +1682,7 @@ declare class CrosstabValueField extends CrosstabField {
|
|
|
1676
1682
|
get itemType(): string;
|
|
1677
1683
|
getCollectionLabel(): string;
|
|
1678
1684
|
getEditProps(): IPropInfo[];
|
|
1685
|
+
getPropDomain(prop: IPropInfo): any;
|
|
1679
1686
|
protected _doLoad(src: any): void;
|
|
1680
1687
|
protected _doSave(target: object): void;
|
|
1681
1688
|
}
|
|
@@ -4865,8 +4872,9 @@ declare class ExcelTextItem extends TextItem {
|
|
|
4865
4872
|
getDesignText2(system: boolean): string;
|
|
4866
4873
|
protected _doLoad(loader: IReportLoader, src: any): void;
|
|
4867
4874
|
protected _doSave(target: object): void;
|
|
4868
|
-
protected _getPrintText(ctx: ExcelPrintContext): string;
|
|
4875
|
+
protected _getPrintText(ctx: ExcelPrintContext, getValue?: (ctx: ExcelPrintContext) => string): string;
|
|
4869
4876
|
private $_getPrintValue;
|
|
4877
|
+
private $_getOriginValue;
|
|
4870
4878
|
}
|
|
4871
4879
|
|
|
4872
4880
|
/* Excluded from this release type: ExpressionNode */
|
|
@@ -6315,7 +6323,9 @@ declare interface IExcelCell {
|
|
|
6315
6323
|
rowSpan?: number;
|
|
6316
6324
|
colSpan?: number;
|
|
6317
6325
|
value?: any;
|
|
6326
|
+
originValue?: string;
|
|
6318
6327
|
format?: string;
|
|
6328
|
+
numberFormat?: string;
|
|
6319
6329
|
formula?: string;
|
|
6320
6330
|
preparedFormula?: string;
|
|
6321
6331
|
formulaConversionError?: FormulaConverterError;
|
|
@@ -15500,6 +15510,7 @@ declare abstract class TextItemBase extends ReportItem {
|
|
|
15500
15510
|
set suffix(value: string);
|
|
15501
15511
|
getText(v: any): string;
|
|
15502
15512
|
getDesignText2(system: boolean): string;
|
|
15513
|
+
protected _doDefaultInit(loader: IReportLoader, parent: ReportGroupItem, hintWidth: number, hintHeight: number): void;
|
|
15503
15514
|
protected _getEditProps(): IPropInfo[];
|
|
15504
15515
|
protected _getStyleProps(): string[];
|
|
15505
15516
|
protected _doLoad(loader: IReportLoader, src: any): void;
|