realreport 1.1.6 → 1.1.7

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.
@@ -111,11 +111,24 @@
111
111
  z-index: 1;
112
112
  }
113
113
 
114
- .rr-group-element[data-empty] {
114
+ /* .rr-item-element {
115
+ border: 1px solid transparent;
116
+ }
117
+ .rr-item-element[data-design] {
118
+ border: 1px solid #ddd;
119
+ } */
120
+
121
+ /* .rr-group-element {
122
+ border: 1px solid transparent;
123
+ }
124
+ .rr-group-element[data-design] {
125
+ border: 1px solid #ddd;
126
+ } */
127
+ .rr-group-element[data-empty='true'] {
115
128
  background: #f8f8f8;
116
129
  }
117
130
 
118
- .rr-floating[data-empty] {
131
+ .rr-floating[data-empty='true'] {
119
132
  background: #f0f0f0cc;
120
133
  }
121
134
 
@@ -467,31 +480,6 @@
467
480
  background-image: url("./check-empty.png");
468
481
  }
469
482
 
470
- .rr-datalist[data-empty] {
471
- display: table;
472
- margin: 0;
473
- padding: 0;
474
- text-align: center;
475
- background: #eaeaea;
476
- color: #777;
477
- border: 1px solid #aaa;
478
- }
479
- .rr-datalist[data-design]:hover {
480
- background-color: rgba(111, 111, 0, 0.1);
481
- }
482
-
483
- .rr-bandgroupcell[data-empty] {
484
- display: table;
485
- margin: 0;
486
- padding: 0;
487
- text-align: center;
488
- background: #eaeaea;
489
- color: #777;
490
- border: 1px solid #aaa;
491
- }
492
- .rr-bandgroupcell[data-empty]:hover {
493
- background-color: rgba(111, 111, 0, 0.1);
494
- }
495
483
 
496
484
  /** design */
497
485
  .rr-section-guard {
@@ -595,6 +583,7 @@
595
583
  background-color: #efffef;
596
584
  }
597
585
 
586
+
598
587
  .rr-band-col {
599
588
  position: absolute;
600
589
  display: inline-flex;
@@ -611,6 +600,9 @@
611
600
  display: none;
612
601
  }
613
602
 
603
+ /* .rr-tableband-group {
604
+ } */
605
+
614
606
  .rr-end-row-message {
615
607
  font-size: 13px;
616
608
  color: #333;
@@ -1,7 +1,7 @@
1
1
  /// <reference types="node" />
2
2
  /**
3
3
  * RealReport v1.1.4
4
- * commit ee03112
4
+ * commit 9339293
5
5
 
6
6
  * Copyright (C) 2013-2022 WooriTech Inc.
7
7
  https://real-report.com
@@ -152,7 +152,6 @@ declare abstract class Base {
152
152
  assignFrom(source: any): void;
153
153
  extend(source: ConfigObject): void;
154
154
  toProxy(): ConfigObject;
155
- assignProps(target: object, props: string[]): object;
156
155
  toString(): string;
157
156
  }
158
157
 
@@ -1041,66 +1040,6 @@ declare class LayerElement extends VisualElement {
1041
1040
  protected _doDraw(element: HTMLElement): void;
1042
1041
  }
1043
1042
 
1044
- /**
1045
- * Property 모델 구성 요소.
1046
- */
1047
- declare abstract class PropertyItem extends Base {
1048
- private _prop;
1049
- private _group;
1050
- constructor(prop: IPropInfo);
1051
- get group(): PropertyGroup;
1052
- get prop(): IPropInfo;
1053
- get name(): string;
1054
- get label(): string;
1055
- get domain(): any[];
1056
- get parent(): any;
1057
- isVisible(source: IPropertySource): boolean;
1058
- isReadOnly(source: IPropertySource): boolean;
1059
- getValue(source: IPropertySource): any;
1060
- setValue(source: IPropertySource, value: any): void;
1061
- setValues(sources: IPropertySource[], value: any): void;
1062
- hasColor(): boolean;
1063
- }
1064
- declare class PropertyGroup extends Base {
1065
- private _label;
1066
- private _items;
1067
- private _pool;
1068
- source: IPropertySource;
1069
- constructor(label: string);
1070
- get label(): string;
1071
- get count(): number;
1072
- get(index: number): PropertyItem;
1073
- borrow(info: IPropInfo): PropertyItem;
1074
- add(item: PropertyItem): void;
1075
- clear(): void;
1076
- }
1077
- /**
1078
- * Value property base.
1079
- */
1080
- declare abstract class ValueProperty extends PropertyItem {
1081
- private _defaultValue;
1082
- constructor(prop: IPropInfo);
1083
- /**
1084
- * 기본값.
1085
- */
1086
- get defaultValue(): any;
1087
- set defaultValue(value: any);
1088
- }
1089
- /**
1090
- * String property.
1091
- */
1092
- declare class StringProperty extends ValueProperty {
1093
- static readonly $_ctor: string;
1094
- constructor(prop: IPropInfo);
1095
- }
1096
- /**
1097
- * 참조 항목 list를 갖는 property.
1098
- */
1099
- declare class ListableProperty extends StringProperty {
1100
- static readonly $_ctor: string;
1101
- constructor(prop: IPropInfo);
1102
- }
1103
-
1104
1043
  /**
1105
1044
  */
1106
1045
  declare class PageItemContainer extends BoundedContainer {
@@ -1150,8 +1089,8 @@ declare abstract class BoxContainer extends ReportGroupItem {
1150
1089
  * ReportPage에서 bodyItems를 통해 호출한다.
1151
1090
  */
1152
1091
  loadProps(src: any): void;
1153
- protected _datable(): boolean;
1154
1092
  protected _getEditProps(): IPropInfo[];
1093
+ protected _datable(): boolean;
1155
1094
  protected _getStyleProps(): string[];
1156
1095
  protected _doLoad(loader: IReportLoader, src: any): void;
1157
1096
  protected _doSave(target: object): void;
@@ -1772,6 +1711,7 @@ declare class TableRow extends ReportItemCollectionItem {
1772
1711
  get displayPath(): string;
1773
1712
  get collection(): TableRowCollection;
1774
1713
  get marqueeParent(): ReportItem;
1714
+ get level(): number;
1775
1715
  isAncestor(group: ReportGroupItem): boolean;
1776
1716
  canRemoveFrom(): boolean;
1777
1717
  canSelectedWith(other: ISelectionSource): boolean;
@@ -2291,65 +2231,6 @@ declare class DataBandSummaryRuntime extends ExpressionRuntime {
2291
2231
  private $_getRows;
2292
2232
  }
2293
2233
 
2294
- declare class BandSection extends ReportItemCollectionItem {
2295
- static readonly PROPINFOS: IPropInfo[];
2296
- private _data;
2297
- dataObj: IBandData;
2298
- constructor(collection: BandSectionCollection, src?: any);
2299
- get band(): DataBand;
2300
- /**
2301
- * data name.
2302
- */
2303
- get data(): string;
2304
- set data(value: string);
2305
- get itemType(): string;
2306
- get displayPath(): string;
2307
- get collection(): BandSectionCollection;
2308
- get page(): ReportPage;
2309
- get marqueeParent(): ReportItem;
2310
- isAncestor(group: ReportGroupItem): boolean;
2311
- canRemoveFrom(): boolean;
2312
- canSelectedWith(other: ISelectionSource): boolean;
2313
- getCollectionLabel(): string;
2314
- getEditProps(): IPropInfo[];
2315
- getPropDomain(prop: IPropInfo): any[];
2316
- protected _getStyleProps(): string[];
2317
- protected _doLoad(src: any): void;
2318
- protected _doSave(target: any): any;
2319
- }
2320
- /**
2321
- * [제한 사항]
2322
- * 하나의 section이라도 band와 다른 데이터로 설정되면,
2323
- * 모든 section이 다른 data에 연결된 것으로 간주한다.
2324
- * 즉, data가 설정되지 않은 section은 band와 같은 data에 연결되지만,
2325
- * 다른 data인 것처럼 처음행부터 출력된다.
2326
- * 또, 추가 섹션들의 컬럼 구조는 밴드의 것과 동일하게 출력되므로,
2327
- * 추가 섹션들의 data 필드 구성이 밴드의 것과 (출력되는 것에 대해서는)동일해야 한다.
2328
- */
2329
- declare class BandSectionCollection extends ReportItemCollection<BandSection> {
2330
- private _band;
2331
- private _sections;
2332
- constructor(band?: DataBand);
2333
- get band(): DataBand;
2334
- get isMultiData(): boolean;
2335
- load(src: any, count: number): number;
2336
- save(target: any): void;
2337
- preparePrint(ctx: PrintContext): void;
2338
- get outlineParent(): IOutlineSource;
2339
- get outlineExpandable(): boolean;
2340
- get outlineLabel(): string;
2341
- get outlineItems(): IOutlineSource[];
2342
- get count(): number;
2343
- get items(): ReportPageItem[];
2344
- get page(): ReportPage;
2345
- get displayPath(): string;
2346
- get level(): number;
2347
- get marqueeParent(): ReportItem;
2348
- getSaveType(): string;
2349
- isAncestor(group: ReportGroupItem): boolean;
2350
- get(index: number): BandSection;
2351
- private $_invalidateSections;
2352
- }
2353
2234
  /**
2354
2235
  * DataBand row group base.
2355
2236
  */
@@ -2379,7 +2260,6 @@ declare abstract class DataBand extends ReportGroupItem {
2379
2260
  static readonly PROP_DATA_BAND_MASTER_FIELDS = "masterFields";
2380
2261
  static readonly PROP_DATA_BAND_KEY_FIELDS = "keyFields";
2381
2262
  static readonly PROP_DATA_BAND_ROWS_PER_MASTER = "rowsPerMaster";
2382
- static readonly PROP_DATA_BAND_SECTIONS = "sections";
2383
2263
  static readonly PROP_DATA_BAND_SECTION_COUNT = "sectionCount";
2384
2264
  static readonly PROP_DATA_BAND_SECTIONLAYOUT = "sectionLayout";
2385
2265
  static readonly PROP_DATA_BAND_SECTION_GAP = "sectionGap";
@@ -2411,7 +2291,6 @@ declare abstract class DataBand extends ReportGroupItem {
2411
2291
  private _repeatDetailFooter;
2412
2292
  private _alwaysHeader;
2413
2293
  private _detail;
2414
- private _sections;
2415
2294
  private _master;
2416
2295
  private _keyFlds;
2417
2296
  private _masterFlds;
@@ -2442,7 +2321,6 @@ declare abstract class DataBand extends ReportGroupItem {
2442
2321
  * 최상위 band이면 0.
2443
2322
  */
2444
2323
  get bandLevel(): number;
2445
- get sections(): BandSectionCollection;
2446
2324
  /**
2447
2325
  * section count
2448
2326
  */
@@ -2566,7 +2444,6 @@ declare abstract class DataBand extends ReportGroupItem {
2566
2444
  * summary runtime
2567
2445
  */
2568
2446
  get summaryRuntime(): DataBandSummaryRuntime;
2569
- get isMultiData(): boolean;
2570
2447
  prepareIndices(ctx: PrintContext): void;
2571
2448
  protected abstract _doPrepareIndices(ctx: PrintContext): void;
2572
2449
  getColPoints(w: number, x?: number): number[];
@@ -3351,7 +3228,6 @@ declare abstract class ReportGroupItemElement<T extends ReportGroupItem> extends
3351
3228
  constructor(doc: Document, model: T, name: string);
3352
3229
  protected _doDispose(): void;
3353
3230
  get navigable(): boolean;
3354
- get lazyLayoutChildren(): boolean;
3355
3231
  isContentDom(dom: HTMLElement): boolean;
3356
3232
  findElement(modelName: string): ReportItemView;
3357
3233
  findElementOf(dom: HTMLElement): ReportItemView;
@@ -3389,8 +3265,8 @@ declare abstract class ReportGroupItemElement<T extends ReportGroupItem> extends
3389
3265
  protected _doMeasure(ctx: PrintContext, dom: HTMLElement, hintWidth: number, hintHeight: number): Size;
3390
3266
  protected _doPrepareMeasure(ctx: PrintContext, dom: HTMLElement): void;
3391
3267
  protected _getDesignText(): string;
3392
- protected _setDesignContent(empty: boolean, designView: HTMLDivElement): void;
3393
- protected _doMeasureItem(ctx: PrintContext, index: number, elt: ReportElement, hintWidth: number, hintHeight: number): void;
3268
+ protected _setDesignContent(empty: boolean): void;
3269
+ protected _doMeasureItem(ctx: PrintContext, elt: ReportElement, hintWidth: number, hintHeight: number): void;
3394
3270
  protected _createElement(report: ReportView, parent: ReportElement, item: ReportItem): ReportElement;
3395
3271
  protected _buildItems(ctx: PrintContext, report: ReportView, model: ReportGroupItem): void;
3396
3272
  protected _prepareChild(child: ReportElement): void;
@@ -3652,7 +3528,6 @@ declare class Report extends EventAware implements IEditCommandStackOwner {
3652
3528
  itemByName(name: string): ReportItem;
3653
3529
  defaultInit(item: ReportItem, group: ReportGroupItem, hintWidth: number, hintHeight: number): void;
3654
3530
  addItem(parent: ReportGroupItem, item: ReportItem, index?: number): boolean;
3655
- addChartSeries(chart: HichartItem, seriesType: string): HichartSeries;
3656
3531
  /**
3657
3532
  * 테이블 행을 추가한다.
3658
3533
  *
@@ -3789,7 +3664,6 @@ declare abstract class ChartObject<T extends ReportGroupItem> extends ReportItem
3789
3664
  constructor(chart: T, name?: string);
3790
3665
  get chart(): T;
3791
3666
  canHide(): boolean;
3792
- getWrapper(): object;
3793
3667
  get page(): ReportPage;
3794
3668
  get report(): Report;
3795
3669
  get dataParent(): ReportGroupItem;
@@ -3815,10 +3689,8 @@ declare abstract class ChartTextObject<T extends ReportGroupItem> extends ChartO
3815
3689
  protected _getStyleProps(): string[];
3816
3690
  protected _doLoad(loader: IReportLoader, src: any): void;
3817
3691
  protected _doSave(target: object): void;
3818
- getWrapper(): object;
3819
3692
  }
3820
3693
  declare abstract class ChartSeries<T extends ReportGroupItem> extends ChartObject<T> {
3821
- static readonly PROP_DESIGN_VISIBLE = "designVisible";
3822
3694
  static readonly PROP_VALUE_FIELD = "valueField";
3823
3695
  static readonly PROP_VALUES = "values";
3824
3696
  static readonly PROPINFOS: IPropInfo[];
@@ -3843,7 +3715,6 @@ declare abstract class ChartSeries<T extends ReportGroupItem> extends ChartObjec
3843
3715
  */
3844
3716
  get values(): number[];
3845
3717
  set values(value: number[]);
3846
- hasValuesProp(): boolean;
3847
3718
  getValues(printing: boolean, dp: IReportDataProvider): any[];
3848
3719
  getSaveType(): string;
3849
3720
  get displayPath(): string;
@@ -3892,41 +3763,8 @@ declare abstract class ChartSeriesCollection<T extends ReportGroupItem> extends
3892
3763
  * Chart title.
3893
3764
  */
3894
3765
  declare class HichartTitle extends ChartTextObject<HichartItem> {
3895
- static readonly PROP_TITLE_ALIGN = "align";
3896
- static readonly PROP_TITLE_VERTICAL_ALIGN = "verticalAlign";
3897
- static readonly PROP_TITLE_X = "x";
3898
- static readonly PROP_TITLE_Y = "y";
3899
- static readonly PROPINFOS: IPropInfo[];
3900
- private _align;
3901
- private _verticalAlign;
3902
- private _x;
3903
- private _y;
3904
3766
  constructor(chart: HichartItem);
3905
- /**
3906
- * align
3907
- */
3908
- get align(): Align;
3909
- set align(value: Align);
3910
- /**
3911
- * vertical align
3912
- */
3913
- get verticalAlign(): VerticalAlign;
3914
- set verticalAlign(value: VerticalAlign);
3915
- /**
3916
- * x
3917
- */
3918
- get x(): number;
3919
- set x(value: number);
3920
- /**
3921
- * y
3922
- */
3923
- get y(): number;
3924
- set y(value: number);
3925
- getWrapper(): object;
3926
3767
  getSaveLabel(): string;
3927
- protected _getEditProps(): IPropInfo[];
3928
- protected _doLoad(loader: IReportLoader, src: any): void;
3929
- protected _doSave(target: object): void;
3930
3768
  protected _doDefaultInit(loader: IReportLoader, parent: ReportGroupItem, hintWidth: number, hintHeight: number): void;
3931
3769
  }
3932
3770
  /**
@@ -3995,71 +3833,17 @@ declare class HichartItem extends ReportGroupItem {
3995
3833
  declare class HichartAxisTitle extends ChartTextObject<HichartItem> {
3996
3834
  constructor(chart: HichartItem);
3997
3835
  getSaveLabel(): string;
3998
- getWrapper(): object;
3999
- }
4000
- declare class HichartAxisLabels extends ChartObject<HichartItem> {
4001
- static readonly PROP_ALIGN = "align";
4002
- static readonly PROP_FORMAT = "format";
4003
- static readonly PROP_PADDING = "padding";
4004
- static readonly PROP_ROTATION = "rotation";
4005
- static readonly PROP_STAGGER_LINES = "staggerLines";
4006
- static readonly PROP_STEP = "step";
4007
- static readonly PROPINFOS: IPropInfo[];
4008
- private _align;
4009
- private _format;
4010
- private _padding;
4011
- private _rotation;
4012
- private _staggerLines;
4013
- private _step;
4014
- constructor(chart: HichartItem);
4015
- /** align */
4016
- get align(): Align;
4017
- set align(value: Align);
4018
- /** format */
4019
- get format(): string;
4020
- set format(value: string);
4021
- /** padding */
4022
- get padding(): number;
4023
- set padding(value: number);
4024
- /** rotation */
4025
- get rotation(): number;
4026
- set rotation(value: number);
4027
- /** staggerLines */
4028
- get staggerLines(): number;
4029
- set staggerLines(value: number);
4030
- /** step */
4031
- get step(): number;
4032
- set step(value: number);
4033
- getSaveLabel(): string;
4034
- protected _getEditProps(): IPropInfo[];
4035
- protected _doLoad(loader: IReportLoader, src: any): void;
4036
- protected _doSave(target: object): void;
4037
- getWrapper(): object;
4038
3836
  }
4039
3837
  declare abstract class HichartAxis extends ChartObject<HichartItem> {
4040
3838
  static readonly PROP_TITLE = "title";
4041
- static readonly PROP_LABELS = "labels";
4042
- static readonly PROP_MIN_PADDING = "minPadding";
4043
- static readonly PROP_MAX_PADDING = "maxPadding";
4044
3839
  static readonly PROPINFOS: IPropInfo[];
4045
3840
  private _title;
4046
- private _labels;
4047
- private _minPadding;
4048
- private _maxPadding;
4049
3841
  constructor(chart: HichartItem);
4050
3842
  get title(): HichartAxisTitle;
4051
- get labels(): HichartAxisLabels;
4052
- /** minPadding */
4053
- get minPadding(): number;
4054
- set minPadding(value: number);
4055
- /** minPadding */
4056
- get maxPadding(): number;
4057
- set maxPadding(value: number);
4058
3843
  get outlineParent(): IOutlineSource;
4059
3844
  protected _getEditProps(): IPropInfo[];
4060
3845
  protected _doLoad(loader: IReportLoader, src: any): void;
4061
3846
  protected _doSave(target: object): void;
4062
- getWrapper(): object;
4063
3847
  }
4064
3848
  declare class HichartXAxis extends HichartAxis {
4065
3849
  static readonly PROP_CATEGORIES = "categories";
@@ -4082,7 +3866,6 @@ declare class HichartXAxis extends HichartAxis {
4082
3866
  protected _getEditProps(): IPropInfo[];
4083
3867
  protected _doLoad(loader: IReportLoader, src: any): void;
4084
3868
  protected _doSave(target: object): void;
4085
- getWrapper(): object;
4086
3869
  }
4087
3870
  declare class HichartYAxis extends HichartAxis {
4088
3871
  static readonly PROP_MIN = "min";
@@ -4103,20 +3886,15 @@ declare class HichartYAxis extends HichartAxis {
4103
3886
  protected _getEditProps(): IPropInfo[];
4104
3887
  protected _doLoad(loader: IReportLoader, src: any): void;
4105
3888
  protected _doSave(target: object): void;
4106
- getWrapper(): object;
4107
3889
  }
4108
3890
  declare abstract class HichartSeries extends ChartSeries<HichartItem> {
4109
- static readonly PROP_SERIES_COLOR_BY_POINT = "colorByPoint";
4110
3891
  static readonly PROPINFOS: IPropInfo[];
4111
- private _colorByPoint;
4112
3892
  constructor(chart: HichartItem);
4113
3893
  /**
4114
- * colorByPoint
3894
+ * label
4115
3895
  */
4116
- get colorByPoint(): boolean;
4117
- set colorByPoint(value: boolean);
4118
3896
  canHideMarker(): boolean;
4119
- wrap(target: any): any;
3897
+ getWrapper(config: any): any;
4120
3898
  get outlineParent(): IOutlineSource;
4121
3899
  protected _getEditProps(): IPropInfo[];
4122
3900
  protected _doDefaultInit(loader: IReportLoader, parent: ReportGroupItem, hintWidth: number, hintHeight: number): void;
@@ -4153,12 +3931,11 @@ declare class HichartLegend extends ChartObject<HichartItem> {
4153
3931
  /** layout */
4154
3932
  get layout(): HichartLegendLayout;
4155
3933
  set layout(value: HichartLegendLayout);
4156
- getSaveLabel(): string;
4157
- protected _isDefaultVisible(): boolean;
4158
3934
  protected _getEditProps(): IPropInfo[];
4159
3935
  protected _doLoad(loader: IReportLoader, src: any): void;
4160
3936
  protected _doSave(target: object): void;
4161
- getWrapper(): object;
3937
+ getSaveLabel(): string;
3938
+ protected _isDefaultVisible(): boolean;
4162
3939
  }
4163
3940
 
4164
3941
  /**
@@ -4295,23 +4072,6 @@ declare abstract class ReportItem extends ReportPageItem {
4295
4072
  static readonly PROP_LOCKED = "locked";
4296
4073
  static readonly PROP_PAGE_BREAK = "pageBreak";
4297
4074
  static readonly PROP_STYLE_CALLBACK = "styleCallback";
4298
- static readonly DATA_PROP: {
4299
- name: string;
4300
- category: PropCategory;
4301
- type: typeof ListableProperty;
4302
- multiple: boolean;
4303
- default: any;
4304
- domain: any;
4305
- };
4306
- static readonly VALUE_PROP: {
4307
- name: string;
4308
- category: PropCategory;
4309
- type: typeof ListableProperty;
4310
- multiple: boolean;
4311
- default: any;
4312
- domain: any;
4313
- validate: (source: ReportItem, value: any) => void;
4314
- };
4315
4075
  static readonly PROPINFOS: IPropInfo[];
4316
4076
  static readonly SIZE_PROPINFOS: IPropInfo[];
4317
4077
  static readonly VALUE_PROPINFOS: IPropInfo[];
@@ -4584,7 +4344,6 @@ declare abstract class ReportItem extends ReportPageItem {
4584
4344
  getHeight(domain: number): number;
4585
4345
  getMinWidth(domain: number): number;
4586
4346
  getMinHeight(domain: number): number;
4587
- canSized(): boolean;
4588
4347
  canResize(dir: ResizeDirection): boolean;
4589
4348
  canResizeWidth(): boolean;
4590
4349
  canResizeHeight(): boolean;
@@ -4695,7 +4454,6 @@ declare abstract class ReportGroupItem extends ReportItem {
4695
4454
  needDesignHeight(): boolean;
4696
4455
  get(index: number): ReportItem;
4697
4456
  canContainsBand(): boolean;
4698
- canContainsBandGroup(): boolean;
4699
4457
  contains(item: ReportPageItem): boolean;
4700
4458
  indexOf(item: ReportPageItem): number;
4701
4459
  getNames(list: string[], recursive?: boolean): string[];
@@ -4708,7 +4466,6 @@ declare abstract class ReportGroupItem extends ReportItem {
4708
4466
  add(item: ReportPageItem, index?: number, silent?: boolean): boolean;
4709
4467
  canRemove(item: ReportItem): boolean;
4710
4468
  remove(item: ReportItem): void;
4711
- removeLast(): void;
4712
4469
  clear(): void;
4713
4470
  getMoveType(item: ReportItem): ItemMoveType;
4714
4471
  canResizeChild(item: ReportItem, dir: ResizeDirection): boolean;
@@ -4945,36 +4702,6 @@ interface IPropertySource {
4945
4702
  getPropertySources(): IPropertySource[];
4946
4703
  getCollectionLabel(): string;
4947
4704
  }
4948
- declare enum PropCategory {
4949
- DESIGN = "design",
4950
- BASIC = "basic",
4951
- TEXT = "text",
4952
- DATA = "data",
4953
- BOUND = "bound",
4954
- EVENT = "event",
4955
- EDITOR = "editor",
4956
- REPORT = "report",
4957
- PAPER = "paper",
4958
- BOX = "box",
4959
- TABLE = "table",
4960
- CELL = "cell",
4961
- BAND = "band",
4962
- BAND_GROUP = "band gruop",
4963
- BAND_CELL = "band cell",
4964
- FIELD = "field",
4965
- COLUMN = "column",
4966
- ROW = "row",
4967
- CHART = "chart",
4968
- TITLE = "title",
4969
- AXIS = "axis",
4970
- XAXIS = "x Axis",
4971
- YAXIS = "y Axis",
4972
- SERIES = "series",
4973
- LABELS = "labels",
4974
- DATA_LABELS = "dataLabels",
4975
- MARKER = "marker",
4976
- LEGEND = "legend"
4977
- }
4978
4705
  interface IPropInfo {
4979
4706
  name: string;
4980
4707
  category: string;
@@ -4982,7 +4709,6 @@ interface IPropInfo {
4982
4709
  typeProps?: any;
4983
4710
  parent?: string;
4984
4711
  indented?: boolean;
4985
- calculated?: boolean;
4986
4712
  visible?: (source: IPropertySource) => boolean;
4987
4713
  multiple: boolean;
4988
4714
  default: any;
@@ -5186,6 +4912,7 @@ declare abstract class BoxContainerElement<T extends BoxContainer> extends Repor
5186
4912
  protected _paddings: any;
5187
4913
  protected _gap: number;
5188
4914
  constructor(doc: Document, model: T, name: string);
4915
+ protected _doDispose(): void;
5189
4916
  get gap(): number;
5190
4917
  get debugLabel(): string;
5191
4918
  protected _needDesignBox(): boolean;
@@ -5296,7 +5023,7 @@ declare class PageView extends LayerElement {
5296
5023
  private _frontView;
5297
5024
  private _sections;
5298
5025
  private _sectionGuard;
5299
- constructor(doc: Document);
5026
+ constructor(doc: Document, printing?: boolean);
5300
5027
  protected _doDispose(): void;
5301
5028
  /** model */
5302
5029
  get model(): ReportPage;
@@ -5367,7 +5094,6 @@ declare class ReportView extends LayerElement implements IImageContainer {
5367
5094
  private _editable;
5368
5095
  private _emptyView;
5369
5096
  private _pageView;
5370
- private _activePage;
5371
5097
  private _boxMeasurer;
5372
5098
  private _boxInner;
5373
5099
  private _nameMap;
@@ -5461,7 +5187,6 @@ declare class PrintContext extends Base {
5461
5187
  contextValues: ReportItemView[];
5462
5188
  private _userData;
5463
5189
  private _tags;
5464
- private _bandSave;
5465
5190
  constructor(printing?: boolean);
5466
5191
  /**
5467
5192
  * printing
@@ -5527,8 +5252,6 @@ declare class PrintContext extends Base {
5527
5252
  unsetTag(tag: string): void;
5528
5253
  getTag(tag: string, def?: any): any;
5529
5254
  getValue(data: string, row: number, field: string): any;
5530
- saveBand(): void;
5531
- restoreBand(): void;
5532
5255
  }
5533
5256
  interface IReportData {
5534
5257
  name: string;