@odoo/o-spreadsheet 17.4.24 → 17.4.25

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.
@@ -3671,6 +3671,9 @@ interface ExcelSheetData extends Omit<SheetData, "figureTables" | "cols" | "rows
3671
3671
  cells: {
3672
3672
  [key: string]: ExcelCellData | undefined;
3673
3673
  };
3674
+ formulaSpillRanges: {
3675
+ [xc: string]: string;
3676
+ };
3674
3677
  charts: FigureData<ExcelChartDefinition>[];
3675
3678
  images: FigureData<Image$1>[];
3676
3679
  tables: ExcelTableData[];
@@ -7480,7 +7483,7 @@ declare class MenuItemRegistry extends Registry<ActionSpec> {
7480
7483
  */
7481
7484
  interface AutofillRule {
7482
7485
  condition: (cell: Cell, cells: (Cell | undefined)[]) => boolean;
7483
- generateRule: (cell: Cell, cells: (Cell | undefined)[]) => AutofillModifier;
7486
+ generateRule: (cell: Cell, cells: (Cell | undefined)[], direction: DIRECTION) => AutofillModifier;
7484
7487
  sequence: number;
7485
7488
  }
7486
7489
 
@@ -8636,6 +8639,7 @@ declare class ColResizer extends AbstractResizer {
8636
8639
  static template: string;
8637
8640
  private colResizerRef;
8638
8641
  setup(): void;
8642
+ get sheetId(): UID;
8639
8643
  _getEvOffset(ev: MouseEvent): Pixel;
8640
8644
  _getViewportOffset(): Pixel;
8641
8645
  _getClientPosition(ev: MouseEvent): Pixel;
@@ -8664,6 +8668,7 @@ declare class RowResizer extends AbstractResizer {
8664
8668
  static template: string;
8665
8669
  setup(): void;
8666
8670
  private rowResizerRef;
8671
+ get sheetId(): UID;
8667
8672
  _getEvOffset(ev: MouseEvent): Pixel;
8668
8673
  _getViewportOffset(): Pixel;
8669
8674
  _getClientPosition(ev: MouseEvent): Pixel;