realreport-designer 1.10.12 → 1.10.13

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.
@@ -14649,6 +14649,7 @@ declare abstract class TableBase extends CellContainer {
14649
14649
  */
14650
14650
  get fixed(): boolean;
14651
14651
  set fixed(value: boolean);
14652
+ get spans(): TableCellSpan[][];
14652
14653
  abstract getCellWidths(): DimensionCollection;
14653
14654
  abstract getColumn(col: number): TableColumnBase;
14654
14655
  getRow(index: number): TableRow;
@@ -15205,6 +15206,7 @@ declare class TableSelection implements ISelectionSource {
15205
15206
  cols: number;
15206
15207
  rows: number;
15207
15208
  private _cell;
15209
+ private _lastCell;
15208
15210
  constructor(cell: TableCell, cols: number, rows: number);
15209
15211
  get table(): TableBase;
15210
15212
  get cell(): TableCell;
@@ -15220,6 +15222,8 @@ declare class TableSelection implements ISelectionSource {
15220
15222
  getCells(ignoreHiddens: boolean): TableCell[];
15221
15223
  resizeTo(cell: TableCell): boolean;
15222
15224
  resizeBy(dx: number, dy: number): boolean;
15225
+ resize(): boolean;
15226
+ getSize(foc: TableCell): number[];
15223
15227
  softEquals(cell: TableCell): boolean;
15224
15228
  equals(cell: TableCell): boolean;
15225
15229
  }