@odoo/o-spreadsheet 17.4.0-alpha.10 → 17.4.0-alpha.12

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.
@@ -1855,7 +1855,7 @@ type LocaleCode = string & Alias;
1855
1855
  interface Locale {
1856
1856
  name: string;
1857
1857
  code: LocaleCode;
1858
- thousandsSeparator: string;
1858
+ thousandsSeparator?: string;
1859
1859
  decimalSeparator: string;
1860
1860
  dateFormat: string;
1861
1861
  timeFormat: string;
@@ -2606,6 +2606,10 @@ declare class BordersPlugin extends CorePlugin<BordersPluginState> implements Bo
2606
2606
  * Get all the columns which contains at least a border
2607
2607
  */
2608
2608
  private getColumnsWithBorders;
2609
+ /**
2610
+ * Get all the rows which contains at least a border
2611
+ */
2612
+ private getRowsWithBorders;
2609
2613
  /**
2610
2614
  * Get the range of all the rows in the sheet
2611
2615
  */
@@ -6255,6 +6259,7 @@ interface TopbarComponent {
6255
6259
  id: UID;
6256
6260
  component: any;
6257
6261
  isVisible?: (env: SpreadsheetChildEnv) => boolean;
6262
+ sequence: number;
6258
6263
  }
6259
6264
 
6260
6265
  /**
@@ -9055,6 +9060,8 @@ declare class FindAndReplaceStore extends SpreadsheetStore implements HighlightP
9055
9060
  private isSearchDirty;
9056
9061
  private initialShowFormulaState;
9057
9062
  private preserveSelectedMatchIndex;
9063
+ private irreplaceableMatchCount;
9064
+ private notificationStore;
9058
9065
  selectedMatchIndex: number | null;
9059
9066
  toSearch: string;
9060
9067
  toReplace: string;
@@ -9105,6 +9112,10 @@ declare class FindAndReplaceStore extends SpreadsheetStore implements HighlightP
9105
9112
  * Apply the replace function to all the matches one time.
9106
9113
  */
9107
9114
  replaceAll(): void;
9115
+ /**
9116
+ * Show a warning message based on the number of matches replaced and irreplaceable.
9117
+ */
9118
+ private showReplaceWarningMessage;
9108
9119
  private replaceMatch;
9109
9120
  private getSearchableString;
9110
9121
  get highlights(): Highlight$1[];
@@ -10477,6 +10488,7 @@ declare const registries: {
10477
10488
  };
10478
10489
  uuidGenerator: UuidGenerator;
10479
10490
  add(name: string, value: Omit<TopbarComponent, "id">): Registry<TopbarComponent>;
10491
+ getAllOrdered(): TopbarComponent[];
10480
10492
  content: {
10481
10493
  [key: string]: TopbarComponent;
10482
10494
  };