@odoo/o-spreadsheet 17.4.24 → 17.4.26

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
 
@@ -7947,11 +7950,12 @@ interface AutoCompleteProvider {
7947
7950
  * We declare the providers in the registry as an object (rather than a class)
7948
7951
  * to allow a type-safe way to declare the provider.
7949
7952
  * We still want to be able to use `this` for the getters and dispatch for simplicity.
7950
- * Binding happens at runtime in the edition plugin.
7953
+ * Binding happens at runtime in the composer store.
7951
7954
  */
7952
7955
  interface AutoCompleteProviderDefinition {
7953
7956
  sequence?: number;
7954
7957
  autoSelectFirstProposal?: boolean;
7958
+ displayAllOnInitialContent?: boolean;
7955
7959
  maxDisplayedProposals?: number;
7956
7960
  getProposals(this: {
7957
7961
  composer: ComposerStore;
@@ -8636,6 +8640,7 @@ declare class ColResizer extends AbstractResizer {
8636
8640
  static template: string;
8637
8641
  private colResizerRef;
8638
8642
  setup(): void;
8643
+ get sheetId(): UID;
8639
8644
  _getEvOffset(ev: MouseEvent): Pixel;
8640
8645
  _getViewportOffset(): Pixel;
8641
8646
  _getClientPosition(ev: MouseEvent): Pixel;
@@ -8664,6 +8669,7 @@ declare class RowResizer extends AbstractResizer {
8664
8669
  static template: string;
8665
8670
  setup(): void;
8666
8671
  private rowResizerRef;
8672
+ get sheetId(): UID;
8667
8673
  _getEvOffset(ev: MouseEvent): Pixel;
8668
8674
  _getViewportOffset(): Pixel;
8669
8675
  _getClientPosition(ev: MouseEvent): Pixel;