@odoo/o-spreadsheet 17.4.8 → 17.4.10

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.
@@ -1011,6 +1011,7 @@ interface DuplicatePivotCommand {
1011
1011
  type: "DUPLICATE_PIVOT";
1012
1012
  pivotId: UID;
1013
1013
  newPivotId: string;
1014
+ duplicatedPivotName?: string;
1014
1015
  }
1015
1016
  interface RemoveDuplicatesCommand {
1016
1017
  type: "REMOVE_DUPLICATES";
@@ -9374,6 +9375,8 @@ declare class PivotSidePanelStore extends SpreadsheetStore {
9374
9375
  mutators: readonly ["reset", "deferUpdates", "applyUpdate", "discardPendingUpdate", "update"];
9375
9376
  private updatesAreDeferred;
9376
9377
  private draft;
9378
+ private notification;
9379
+ private alreadyNotified;
9377
9380
  constructor(get: Get, pivotId: UID);
9378
9381
  handle(cmd: Command): void;
9379
9382
  get fields(): PivotFields;
@@ -9389,6 +9392,7 @@ declare class PivotSidePanelStore extends SpreadsheetStore {
9389
9392
  applyUpdate(): void;
9390
9393
  discardPendingUpdate(): void;
9391
9394
  update(definitionUpdate: Partial<PivotCoreDefinition>): void;
9395
+ private isDynamicPivotInViewport;
9392
9396
  private addDefaultDateTimeGranularity;
9393
9397
  private getUnusedDateTimeGranularities;
9394
9398
  }