realreport-designer 1.11.20 → 1.11.21

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.
@@ -2119,6 +2119,7 @@ declare class DataBandCollection extends ReportGroupItem {
2119
2119
  canAdd(item: ReportItem): boolean;
2120
2120
  canContainsBand(): boolean;
2121
2121
  canContainsBandGroup(): boolean;
2122
+ canSized(): boolean;
2122
2123
  protected _doItemAdded(item: ReportItem, index: number): void;
2123
2124
  }
2124
2125
 
@@ -14785,6 +14786,7 @@ declare class SimpleBandRowGroup extends DataBandRowGroup {
14785
14786
  protected _ignoreItems(): boolean;
14786
14787
  protected _doLoad(loader: IReportLoader, src: any): void;
14787
14788
  protected _doSave(target: object): void;
14789
+ protected _getStyleProps(): string[];
14788
14790
  protected _changed(prop: string, newValue: any, oldValue: any): void;
14789
14791
  }
14790
14792
 
@@ -14834,6 +14836,7 @@ declare class SimpleBandRowGroupFooter extends SimpleBandRowGroupSection {
14834
14836
  constructor(group: SimpleBandRowGroup);
14835
14837
  get outlineLabel(): string;
14836
14838
  get pathLabel(): string;
14839
+ canDelete(): boolean;
14837
14840
  }
14838
14841
 
14839
14842
  declare class SimpleBandRowGroupHeader extends SimpleBandRowGroupSection {
@@ -14841,6 +14844,7 @@ declare class SimpleBandRowGroupHeader extends SimpleBandRowGroupSection {
14841
14844
  constructor(group: SimpleBandRowGroup);
14842
14845
  get outlineLabel(): string;
14843
14846
  get pathLabel(): string;
14847
+ canDelete(): boolean;
14844
14848
  }
14845
14849
 
14846
14850
  declare abstract class SimpleBandRowGroupSection extends StackContainer {
@@ -15544,6 +15548,7 @@ declare class TableBandRowGroup extends DataBandRowGroup {
15544
15548
  protected _ignoreItems(): boolean;
15545
15549
  protected _doLoad(loader: IReportLoader, src: any): void;
15546
15550
  protected _doSave(target: object): void;
15551
+ protected _getStyleProps(): string[];
15547
15552
  protected _changed(prop: string, newValue: any, oldValue: any): void;
15548
15553
  }
15549
15554
 
@@ -15601,6 +15606,7 @@ declare class TableBandRowGroupFooter extends TableBandRowGroupSection {
15601
15606
  set merged(value: boolean);
15602
15607
  get outlineLabel(): string;
15603
15608
  get pathLabel(): string;
15609
+ canDelete(): boolean;
15604
15610
  getEditProps(): IPropInfo[];
15605
15611
  protected _doLoad(loader: IReportLoader, src: any): void;
15606
15612
  protected _doSave(target: object): void;
@@ -15611,6 +15617,7 @@ declare class TableBandRowGroupHeader extends TableBandRowGroupSection {
15611
15617
  constructor(group: TableBandRowGroup);
15612
15618
  get outlineLabel(): string;
15613
15619
  get pathLabel(): string;
15620
+ canDelete(): boolean;
15614
15621
  }
15615
15622
 
15616
15623
  declare class TableBandRowGroupSection extends TableBase {