@odoo/o-spreadsheet 18.1.19 → 18.1.21

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.
@@ -971,7 +971,7 @@ interface SheetData {
971
971
  };
972
972
  conditionalFormats: ConditionalFormat[];
973
973
  dataValidationRules: DataValidationRuleData[];
974
- tables: TableData[];
974
+ tables: TableData$1[];
975
975
  areGridLinesVisible?: boolean;
976
976
  isVisible: boolean;
977
977
  panes?: PaneDivision;
@@ -1031,7 +1031,7 @@ interface ExcelHeaderData extends HeaderData {
1031
1031
  outlineLevel?: number;
1032
1032
  collapsed?: boolean;
1033
1033
  }
1034
- interface TableData {
1034
+ interface TableData$1 {
1035
1035
  range: string;
1036
1036
  config?: TableConfig;
1037
1037
  type?: CoreTableType;
@@ -1275,6 +1275,46 @@ declare class ColorGenerator {
1275
1275
  next(): string;
1276
1276
  }
1277
1277
 
1278
+ interface SearchOptions {
1279
+ matchCase: boolean;
1280
+ exactMatch: boolean;
1281
+ searchFormulas: boolean;
1282
+ searchScope: "allSheets" | "activeSheet" | "specificRange";
1283
+ specificRange?: Range;
1284
+ }
1285
+
1286
+ /**
1287
+ * Deep copy arrays, plain objects and primitive values.
1288
+ * Throws an error for other types such as class instances.
1289
+ * Sparse arrays remain sparse.
1290
+ */
1291
+ declare function deepCopy<T>(obj: T): T;
1292
+ declare function unquote(string: string, quoteChar?: "'" | '"'): string;
1293
+ /** Replace the excel-excluded characters of a sheetName */
1294
+ declare function sanitizeSheetName(sheetName: string, replacementChar?: string): string;
1295
+ declare function isMarkdownLink(str: string): boolean;
1296
+ /**
1297
+ * Build a markdown link from a label and an url
1298
+ */
1299
+ declare function markdownLink(label: string, url: string): string;
1300
+ declare function parseMarkdownLink(str: string): {
1301
+ url: string;
1302
+ label: string;
1303
+ };
1304
+ /**
1305
+ * This helper function can be used as a type guard when filtering arrays.
1306
+ * const foo: number[] = [1, 2, undefined, 4].filter(isDefined)
1307
+ */
1308
+ declare function isDefined<T>(argument: T | undefined): argument is T;
1309
+ /**
1310
+ * Lazy value computed by the provided function.
1311
+ */
1312
+ declare function lazy<T>(fn: (() => T) | T): Lazy<T>;
1313
+ /**
1314
+ * Compares two objects.
1315
+ */
1316
+ declare function deepEquals(o1: any, o2: any): boolean;
1317
+
1278
1318
  /**
1279
1319
  * Convert a (col) number to the corresponding letter.
1280
1320
  *
@@ -1351,46 +1391,6 @@ declare function formatValue(value: CellValue, { format, locale, formatWidth }:
1351
1391
  }): FormattedValue;
1352
1392
  declare function createCurrencyFormat(currency: Partial<Currency>): Format;
1353
1393
 
1354
- interface SearchOptions {
1355
- matchCase: boolean;
1356
- exactMatch: boolean;
1357
- searchFormulas: boolean;
1358
- searchScope: "allSheets" | "activeSheet" | "specificRange";
1359
- specificRange?: Range;
1360
- }
1361
-
1362
- /**
1363
- * Deep copy arrays, plain objects and primitive values.
1364
- * Throws an error for other types such as class instances.
1365
- * Sparse arrays remain sparse.
1366
- */
1367
- declare function deepCopy<T>(obj: T): T;
1368
- declare function unquote(string: string, quoteChar?: "'" | '"'): string;
1369
- /** Replace the excel-excluded characters of a sheetName */
1370
- declare function sanitizeSheetName(sheetName: string, replacementChar?: string): string;
1371
- declare function isMarkdownLink(str: string): boolean;
1372
- /**
1373
- * Build a markdown link from a label and an url
1374
- */
1375
- declare function markdownLink(label: string, url: string): string;
1376
- declare function parseMarkdownLink(str: string): {
1377
- url: string;
1378
- label: string;
1379
- };
1380
- /**
1381
- * This helper function can be used as a type guard when filtering arrays.
1382
- * const foo: number[] = [1, 2, undefined, 4].filter(isDefined)
1383
- */
1384
- declare function isDefined<T>(argument: T | undefined): argument is T;
1385
- /**
1386
- * Lazy value computed by the provided function.
1387
- */
1388
- declare function lazy<T>(fn: (() => T) | T): Lazy<T>;
1389
- /**
1390
- * Compares two objects.
1391
- */
1392
- declare function deepEquals(o1: any, o2: any): boolean;
1393
-
1394
1394
  /**
1395
1395
  * Return true if the argument is a "number string".
1396
1396
  *
@@ -2409,12 +2409,12 @@ interface ZoneDependentCommand {
2409
2409
  zone: Zone;
2410
2410
  }
2411
2411
  declare function isZoneDependent(cmd: CoreCommand): cmd is Extract<CoreCommand, ZoneDependentCommand>;
2412
- declare const invalidateEvaluationCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "SORT_CELLS" | "SET_DECIMAL" | "PASTE" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT">;
2413
- declare const invalidateChartEvaluationCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "SORT_CELLS" | "SET_DECIMAL" | "PASTE" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT">;
2414
- declare const invalidateDependenciesCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "SORT_CELLS" | "SET_DECIMAL" | "PASTE" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT">;
2415
- declare const invalidateCFEvaluationCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "SORT_CELLS" | "SET_DECIMAL" | "PASTE" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT">;
2416
- declare const invalidateBordersCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "SORT_CELLS" | "SET_DECIMAL" | "PASTE" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT">;
2417
- declare const readonlyAllowedCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "SORT_CELLS" | "SET_DECIMAL" | "PASTE" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT">;
2412
+ declare const invalidateEvaluationCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "SORT_CELLS" | "SET_DECIMAL" | "PASTE" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING">;
2413
+ declare const invalidateChartEvaluationCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "SORT_CELLS" | "SET_DECIMAL" | "PASTE" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING">;
2414
+ declare const invalidateDependenciesCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "SORT_CELLS" | "SET_DECIMAL" | "PASTE" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING">;
2415
+ declare const invalidateCFEvaluationCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "SORT_CELLS" | "SET_DECIMAL" | "PASTE" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING">;
2416
+ declare const invalidateBordersCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "SORT_CELLS" | "SET_DECIMAL" | "PASTE" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING">;
2417
+ declare const readonlyAllowedCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "SORT_CELLS" | "SET_DECIMAL" | "PASTE" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING">;
2418
2418
  declare const coreTypes: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT">;
2419
2419
  declare function isCoreCommand(cmd: Command): cmd is CoreCommand;
2420
2420
  declare function canExecuteInReadonly(cmd: Command): boolean;
@@ -2970,6 +2970,13 @@ interface SplitPivotFormulaCommand extends PositionDependentCommand {
2970
2970
  interface PaintFormat extends TargetDependentCommand {
2971
2971
  type: "PAINT_FORMAT";
2972
2972
  }
2973
+ interface PivotStartPresenceTracking {
2974
+ type: "PIVOT_START_PRESENCE_TRACKING";
2975
+ pivotId: UID;
2976
+ }
2977
+ interface PivotStopPresenceTracking {
2978
+ type: "PIVOT_STOP_PRESENCE_TRACKING";
2979
+ }
2973
2980
  type CoreCommand =
2974
2981
  /** CELLS */
2975
2982
  UpdateCellCommand | UpdateCellPositionCommand | ClearCellCommand | ClearCellsCommand | DeleteContentCommand
@@ -3001,7 +3008,7 @@ UpdateCellCommand | UpdateCellPositionCommand | ClearCellCommand | ClearCellsCom
3001
3008
  | UpdateLocaleCommand
3002
3009
  /** PIVOT */
3003
3010
  | AddPivotCommand | UpdatePivotCommand | InsertPivotCommand | RenamePivotCommand | RemovePivotCommand | DuplicatePivotCommand;
3004
- type LocalCommand = RequestUndoCommand | RequestRedoCommand | UndoCommand | RedoCommand | CopyCommand | CutCommand | PasteCommand | CopyPasteCellsAboveCommand | CopyPasteCellsOnLeftCommand | RepeatPasteCommand | CleanClipBoardHighlightCommand | AutoFillCellCommand | PasteFromOSClipboardCommand | AutoresizeColumnsCommand | AutoresizeRowsCommand | MoveColumnsRowsCommand | ActivateSheetCommand | EvaluateCellsCommand | EvaluateChartsCommand | StartChangeHighlightCommand | StartCommand | AutofillCommand | AutofillSelectCommand | AutofillTableCommand | ShowFormulaCommand | AutofillAutoCommand | SelectFigureCommand | ReplaceSearchCommand | SortCommand | SetDecimalCommand | SetContextualFormatCommand | ResizeViewportCommand | SumSelectionCommand | DeleteCellCommand | InsertCellCommand | SetViewportOffsetCommand | MoveViewportDownCommand | MoveViewportUpCommand | MoveViewportToCellCommand | ActivateNextSheetCommand | ActivatePreviousSheetCommand | UpdateFilterCommand | SplitTextIntoColumnsCommand | RemoveDuplicatesCommand | TrimWhitespaceCommand | ResizeTableCommand | RefreshPivotCommand | InsertNewPivotCommand | DuplicatePivotInNewSheetCommand | InsertPivotWithTableCommand | SplitPivotFormulaCommand | PaintFormat;
3011
+ type LocalCommand = RequestUndoCommand | RequestRedoCommand | UndoCommand | RedoCommand | CopyCommand | CutCommand | PasteCommand | CopyPasteCellsAboveCommand | CopyPasteCellsOnLeftCommand | RepeatPasteCommand | CleanClipBoardHighlightCommand | AutoFillCellCommand | PasteFromOSClipboardCommand | AutoresizeColumnsCommand | AutoresizeRowsCommand | MoveColumnsRowsCommand | ActivateSheetCommand | EvaluateCellsCommand | EvaluateChartsCommand | StartChangeHighlightCommand | StartCommand | AutofillCommand | AutofillSelectCommand | AutofillTableCommand | ShowFormulaCommand | AutofillAutoCommand | SelectFigureCommand | ReplaceSearchCommand | SortCommand | SetDecimalCommand | SetContextualFormatCommand | ResizeViewportCommand | SumSelectionCommand | DeleteCellCommand | InsertCellCommand | SetViewportOffsetCommand | MoveViewportDownCommand | MoveViewportUpCommand | MoveViewportToCellCommand | ActivateNextSheetCommand | ActivatePreviousSheetCommand | UpdateFilterCommand | SplitTextIntoColumnsCommand | RemoveDuplicatesCommand | TrimWhitespaceCommand | ResizeTableCommand | RefreshPivotCommand | InsertNewPivotCommand | DuplicatePivotInNewSheetCommand | InsertPivotWithTableCommand | SplitPivotFormulaCommand | PaintFormat | PivotStartPresenceTracking | PivotStopPresenceTracking;
3005
3012
  type Command = CoreCommand | LocalCommand;
3006
3013
  /**
3007
3014
  * Holds the result of a command dispatch.
@@ -5792,6 +5799,23 @@ declare class HistoryPlugin extends UIPlugin {
5792
5799
  private getPossibleRevisionToRepeat;
5793
5800
  }
5794
5801
 
5802
+ declare class PivotPresenceTracker {
5803
+ private trackedValues;
5804
+ private domainToArray;
5805
+ isValuePresent(measure: string, domain: PivotDomain): boolean;
5806
+ isHeaderPresent(domain: PivotDomain): boolean;
5807
+ trackValue(measure: string, domain: PivotDomain): void;
5808
+ trackHeader(domain: PivotDomain): void;
5809
+ }
5810
+
5811
+ declare class PivotPresencePlugin extends UIPlugin {
5812
+ static getters: readonly ["getPivotPresenceTracker"];
5813
+ private trackPresencePivotId?;
5814
+ private tracker?;
5815
+ handle(cmd: Command): void;
5816
+ getPivotPresenceTracker(pivotId: UID): PivotPresenceTracker | undefined;
5817
+ }
5818
+
5795
5819
  declare class SplitToColumnsPlugin extends UIPlugin {
5796
5820
  static getters: readonly ["getAutomaticSeparator"];
5797
5821
  allowDispatch(cmd: Command): CommandResult | CommandResult[];
@@ -5916,7 +5940,7 @@ type CoreGetters = PluginGetters<typeof SheetPlugin> & PluginGetters<typeof Head
5916
5940
  type Getters = {
5917
5941
  isReadonly: () => boolean;
5918
5942
  isDashboard: () => boolean;
5919
- } & CoreGetters & PluginGetters<typeof AutofillPlugin> & PluginGetters<typeof AutomaticSumPlugin> & PluginGetters<typeof HistoryPlugin> & PluginGetters<typeof ClipboardPlugin> & PluginGetters<typeof EvaluationPlugin> & PluginGetters<typeof EvaluationChartPlugin> & PluginGetters<typeof EvaluationConditionalFormatPlugin> & PluginGetters<typeof HeaderVisibilityUIPlugin> & PluginGetters<typeof CustomColorsPlugin> & PluginGetters<typeof AutomaticSumPlugin> & PluginGetters<typeof GridSelectionPlugin> & PluginGetters<typeof CollaborativePlugin> & PluginGetters<typeof SortPlugin> & PluginGetters<typeof UIOptionsPlugin> & PluginGetters<typeof SheetUIPlugin> & PluginGetters<typeof SheetViewPlugin> & PluginGetters<typeof FilterEvaluationPlugin> & PluginGetters<typeof SplitToColumnsPlugin> & PluginGetters<typeof HeaderSizeUIPlugin> & PluginGetters<typeof EvaluationDataValidationPlugin> & PluginGetters<typeof HeaderPositionsUIPlugin> & PluginGetters<typeof TableStylePlugin> & PluginGetters<typeof CellComputedStylePlugin> & PluginGetters<typeof DynamicTablesPlugin> & PluginGetters<typeof PivotUIPlugin> & PluginGetters<typeof TableComputedStylePlugin> & PluginGetters<typeof GeoFeaturePlugin>;
5943
+ } & CoreGetters & PluginGetters<typeof AutofillPlugin> & PluginGetters<typeof AutomaticSumPlugin> & PluginGetters<typeof HistoryPlugin> & PluginGetters<typeof ClipboardPlugin> & PluginGetters<typeof EvaluationPlugin> & PluginGetters<typeof EvaluationChartPlugin> & PluginGetters<typeof EvaluationConditionalFormatPlugin> & PluginGetters<typeof HeaderVisibilityUIPlugin> & PluginGetters<typeof CustomColorsPlugin> & PluginGetters<typeof AutomaticSumPlugin> & PluginGetters<typeof GridSelectionPlugin> & PluginGetters<typeof CollaborativePlugin> & PluginGetters<typeof SortPlugin> & PluginGetters<typeof UIOptionsPlugin> & PluginGetters<typeof SheetUIPlugin> & PluginGetters<typeof SheetViewPlugin> & PluginGetters<typeof FilterEvaluationPlugin> & PluginGetters<typeof SplitToColumnsPlugin> & PluginGetters<typeof HeaderSizeUIPlugin> & PluginGetters<typeof EvaluationDataValidationPlugin> & PluginGetters<typeof HeaderPositionsUIPlugin> & PluginGetters<typeof TableStylePlugin> & PluginGetters<typeof CellComputedStylePlugin> & PluginGetters<typeof DynamicTablesPlugin> & PluginGetters<typeof PivotUIPlugin> & PluginGetters<typeof TableComputedStylePlugin> & PluginGetters<typeof GeoFeaturePlugin> & PluginGetters<typeof PivotPresencePlugin> & PluginGetters<typeof TableComputedStylePlugin>;
5920
5944
 
5921
5945
  type ArgType = "ANY" | "BOOLEAN" | "NUMBER" | "STRING" | "DATE" | "RANGE" | "RANGE<BOOLEAN>" | "RANGE<NUMBER>" | "RANGE<DATE>" | "RANGE<STRING>" | "RANGE<ANY>" | "META";
5922
5946
  interface ArgDefinition {
@@ -6238,7 +6262,7 @@ interface ChartShowValuesPluginOptions {
6238
6262
  showValues: boolean;
6239
6263
  background?: Color;
6240
6264
  horizontal?: boolean;
6241
- callback: (value: number | string, axisId?: string) => string;
6265
+ callback: (value: number | string, axisId: string) => string;
6242
6266
  }
6243
6267
  declare module "chart.js" {
6244
6268
  interface PluginOptionsByType<TType extends ChartType$1> {
@@ -6724,7 +6748,7 @@ interface ChartSubtypeProperties {
6724
6748
  preview: string;
6725
6749
  }
6726
6750
 
6727
- interface Props$1c {
6751
+ interface Props$1d {
6728
6752
  label?: string;
6729
6753
  value: boolean;
6730
6754
  className?: string;
@@ -6733,7 +6757,7 @@ interface Props$1c {
6733
6757
  disabled?: boolean;
6734
6758
  onChange: (value: boolean) => void;
6735
6759
  }
6736
- declare class Checkbox extends Component<Props$1c, SpreadsheetChildEnv> {
6760
+ declare class Checkbox extends Component<Props$1d, SpreadsheetChildEnv> {
6737
6761
  static template: string;
6738
6762
  static props: {
6739
6763
  label: {
@@ -6768,10 +6792,10 @@ declare class Checkbox extends Component<Props$1c, SpreadsheetChildEnv> {
6768
6792
  onChange(ev: InputEvent): void;
6769
6793
  }
6770
6794
 
6771
- interface Props$1b {
6795
+ interface Props$1c {
6772
6796
  class?: string;
6773
6797
  }
6774
- declare class Section extends Component<Props$1b, SpreadsheetChildEnv> {
6798
+ declare class Section extends Component<Props$1c, SpreadsheetChildEnv> {
6775
6799
  static template: string;
6776
6800
  static props: {
6777
6801
  class: {
@@ -6904,7 +6928,7 @@ declare class SelectionInputStore extends SpreadsheetStore {
6904
6928
  getIndex(rangeId: number | null): number | null;
6905
6929
  }
6906
6930
 
6907
- interface Props$1a {
6931
+ interface Props$1b {
6908
6932
  ranges: string[];
6909
6933
  hasSingleRange?: boolean;
6910
6934
  required?: boolean;
@@ -6927,7 +6951,7 @@ interface SelectionRange extends Omit<RangeInputValue, "color"> {
6927
6951
  * onSelectionChanged is called every time the input value
6928
6952
  * changes.
6929
6953
  */
6930
- declare class SelectionInput extends Component<Props$1a, SpreadsheetChildEnv> {
6954
+ declare class SelectionInput extends Component<Props$1b, SpreadsheetChildEnv> {
6931
6955
  static template: string;
6932
6956
  static props: {
6933
6957
  ranges: ArrayConstructor;
@@ -6982,13 +7006,13 @@ declare class SelectionInput extends Component<Props$1a, SpreadsheetChildEnv> {
6982
7006
  confirm(): void;
6983
7007
  }
6984
7008
 
6985
- interface Props$19 {
7009
+ interface Props$1a {
6986
7010
  ranges: CustomizedDataSet[];
6987
7011
  hasSingleRange?: boolean;
6988
7012
  onSelectionChanged: (ranges: string[]) => void;
6989
7013
  onSelectionConfirmed: () => void;
6990
7014
  }
6991
- declare class ChartDataSeries extends Component<Props$19, SpreadsheetChildEnv> {
7015
+ declare class ChartDataSeries extends Component<Props$1a, SpreadsheetChildEnv> {
6992
7016
  static template: string;
6993
7017
  static components: {
6994
7018
  SelectionInput: typeof SelectionInput;
@@ -7008,12 +7032,12 @@ declare class ChartDataSeries extends Component<Props$19, SpreadsheetChildEnv> {
7008
7032
  get title(): string;
7009
7033
  }
7010
7034
 
7011
- interface Props$18 {
7035
+ interface Props$19 {
7012
7036
  messages: string[];
7013
7037
  msgType: "warning" | "error" | "info";
7014
7038
  singleBox?: boolean;
7015
7039
  }
7016
- declare class ValidationMessages extends Component<Props$18, SpreadsheetChildEnv> {
7040
+ declare class ValidationMessages extends Component<Props$19, SpreadsheetChildEnv> {
7017
7041
  static template: string;
7018
7042
  static props: {
7019
7043
  messages: ArrayConstructor;
@@ -7027,10 +7051,10 @@ declare class ValidationMessages extends Component<Props$18, SpreadsheetChildEnv
7027
7051
  get alertBoxes(): string[][];
7028
7052
  }
7029
7053
 
7030
- interface Props$17 {
7054
+ interface Props$18 {
7031
7055
  messages: string[];
7032
7056
  }
7033
- declare class ChartErrorSection extends Component<Props$17, SpreadsheetChildEnv> {
7057
+ declare class ChartErrorSection extends Component<Props$18, SpreadsheetChildEnv> {
7034
7058
  static template: string;
7035
7059
  static components: {
7036
7060
  Section: typeof Section;
@@ -7044,7 +7068,7 @@ declare class ChartErrorSection extends Component<Props$17, SpreadsheetChildEnv>
7044
7068
  };
7045
7069
  }
7046
7070
 
7047
- interface Props$16 {
7071
+ interface Props$17 {
7048
7072
  title?: string;
7049
7073
  range: string;
7050
7074
  isInvalid: boolean;
@@ -7057,7 +7081,7 @@ interface Props$16 {
7057
7081
  onChange: (value: boolean) => void;
7058
7082
  }>;
7059
7083
  }
7060
- declare class ChartLabelRange extends Component<Props$16, SpreadsheetChildEnv> {
7084
+ declare class ChartLabelRange extends Component<Props$17, SpreadsheetChildEnv> {
7061
7085
  static template: string;
7062
7086
  static components: {
7063
7087
  SelectionInput: typeof SelectionInput;
@@ -7078,10 +7102,10 @@ declare class ChartLabelRange extends Component<Props$16, SpreadsheetChildEnv> {
7078
7102
  optional: boolean;
7079
7103
  };
7080
7104
  };
7081
- static defaultProps: Partial<Props$16>;
7105
+ static defaultProps: Partial<Props$17>;
7082
7106
  }
7083
7107
 
7084
- interface Props$15 {
7108
+ interface Props$16 {
7085
7109
  figureId: UID;
7086
7110
  definition: ChartWithDataSetDefinition;
7087
7111
  canUpdateChart: (figureId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
@@ -7091,7 +7115,7 @@ interface ChartPanelState {
7091
7115
  datasetDispatchResult?: DispatchResult;
7092
7116
  labelsDispatchResult?: DispatchResult;
7093
7117
  }
7094
- declare class GenericChartConfigPanel extends Component<Props$15, SpreadsheetChildEnv> {
7118
+ declare class GenericChartConfigPanel extends Component<Props$16, SpreadsheetChildEnv> {
7095
7119
  static template: string;
7096
7120
  static components: {
7097
7121
  ChartDataSeries: typeof ChartDataSeries;
@@ -7175,12 +7199,12 @@ interface Choice$1 {
7175
7199
  value: string;
7176
7200
  label: string;
7177
7201
  }
7178
- interface Props$14 {
7202
+ interface Props$15 {
7179
7203
  choices: Choice$1[];
7180
7204
  onChange: (value: string) => void;
7181
7205
  selectedValue: string;
7182
7206
  }
7183
- declare class BadgeSelection extends Component<Props$14, SpreadsheetChildEnv> {
7207
+ declare class BadgeSelection extends Component<Props$15, SpreadsheetChildEnv> {
7184
7208
  static template: string;
7185
7209
  static props: {
7186
7210
  choices: ArrayConstructor;
@@ -7337,7 +7361,7 @@ declare class ColorPicker extends Component<ColorPickerProps, SpreadsheetChildEn
7337
7361
  isSameColor(color1: Color, color2: Color): boolean;
7338
7362
  }
7339
7363
 
7340
- interface Props$13 {
7364
+ interface Props$14 {
7341
7365
  currentColor: string | undefined;
7342
7366
  toggleColorPicker: () => void;
7343
7367
  showColorPicker: boolean;
@@ -7348,7 +7372,7 @@ interface Props$13 {
7348
7372
  dropdownMaxHeight?: Pixel;
7349
7373
  class?: string;
7350
7374
  }
7351
- declare class ColorPickerWidget extends Component<Props$13, SpreadsheetChildEnv> {
7375
+ declare class ColorPickerWidget extends Component<Props$14, SpreadsheetChildEnv> {
7352
7376
  static template: string;
7353
7377
  static props: {
7354
7378
  currentColor: {
@@ -7399,7 +7423,7 @@ declare class CellPopoverStore extends SpreadsheetStore {
7399
7423
  };
7400
7424
  handle(cmd: Command): void;
7401
7425
  open({ col, row }: Position$1, type: CellPopoverType): void;
7402
- close(): void;
7426
+ close(): "noStateChange" | undefined;
7403
7427
  get persistentCellPopover(): OpenCellPopover | ClosedCellPopover;
7404
7428
  get isOpen(): boolean;
7405
7429
  get cellPopover(): ClosedCellPopover | PositionedCellPopoverComponent;
@@ -7409,13 +7433,13 @@ declare class CellPopoverStore extends SpreadsheetStore {
7409
7433
  interface State$8 {
7410
7434
  isOpen: boolean;
7411
7435
  }
7412
- interface Props$12 {
7436
+ interface Props$13 {
7413
7437
  currentFontSize: number;
7414
7438
  class: string;
7415
7439
  onFontSizeChanged: (fontSize: number) => void;
7416
7440
  onToggle?: () => void;
7417
7441
  }
7418
- declare class FontSizeEditor extends Component<Props$12, SpreadsheetChildEnv> {
7442
+ declare class FontSizeEditor extends Component<Props$13, SpreadsheetChildEnv> {
7419
7443
  static template: string;
7420
7444
  static props: {
7421
7445
  currentFontSize: NumberConstructor;
@@ -7446,7 +7470,7 @@ declare class FontSizeEditor extends Component<Props$12, SpreadsheetChildEnv> {
7446
7470
  onInputKeydown(ev: KeyboardEvent): void;
7447
7471
  }
7448
7472
 
7449
- interface Props$11 {
7473
+ interface Props$12 {
7450
7474
  title?: string;
7451
7475
  updateTitle: (title: string) => void;
7452
7476
  name?: string;
@@ -7457,7 +7481,7 @@ interface Props$11 {
7457
7481
  style: TitleDesign;
7458
7482
  onFontSizeChanged: (fontSize: number) => void;
7459
7483
  }
7460
- declare class ChartTitle extends Component<Props$11, SpreadsheetChildEnv> {
7484
+ declare class ChartTitle extends Component<Props$12, SpreadsheetChildEnv> {
7461
7485
  static template: string;
7462
7486
  static components: {
7463
7487
  Section: typeof Section;
@@ -7520,13 +7544,13 @@ interface AxisDefinition {
7520
7544
  id: string;
7521
7545
  name: string;
7522
7546
  }
7523
- interface Props$10 {
7547
+ interface Props$11 {
7524
7548
  figureId: UID;
7525
7549
  definition: ChartWithDataSetDefinition | WaterfallChartDefinition;
7526
7550
  updateChart: (figureId: UID, definition: Partial<ChartWithDataSetDefinition | WaterfallChartDefinition>) => DispatchResult;
7527
7551
  axesList: AxisDefinition[];
7528
7552
  }
7529
- declare class AxisDesignEditor extends Component<Props$10, SpreadsheetChildEnv> {
7553
+ declare class AxisDesignEditor extends Component<Props$11, SpreadsheetChildEnv> {
7530
7554
  static template: string;
7531
7555
  static components: {
7532
7556
  Section: typeof Section;
@@ -7557,13 +7581,13 @@ declare class AxisDesignEditor extends Component<Props$10, SpreadsheetChildEnv>
7557
7581
  updateAxisTitle(text: string): void;
7558
7582
  }
7559
7583
 
7560
- interface Props$$ {
7584
+ interface Props$10 {
7561
7585
  currentColor?: string;
7562
7586
  onColorPicked: (color: string) => void;
7563
7587
  title?: string;
7564
7588
  disableNoColor?: boolean;
7565
7589
  }
7566
- declare class RoundColorPicker extends Component<Props$$, SpreadsheetChildEnv> {
7590
+ declare class RoundColorPicker extends Component<Props$10, SpreadsheetChildEnv> {
7567
7591
  static template: string;
7568
7592
  static components: {
7569
7593
  Section: typeof Section;
@@ -7596,13 +7620,13 @@ declare class RoundColorPicker extends Component<Props$$, SpreadsheetChildEnv> {
7596
7620
  get buttonStyle(): string;
7597
7621
  }
7598
7622
 
7599
- interface Props$_ {
7623
+ interface Props$$ {
7600
7624
  figureId: UID;
7601
7625
  definition: ChartDefinition;
7602
7626
  updateChart: (figureId: UID, definition: Partial<ChartDefinition>) => DispatchResult;
7603
7627
  defaultChartTitleFontSize?: number;
7604
7628
  }
7605
- declare class GeneralDesignEditor extends Component<Props$_, SpreadsheetChildEnv> {
7629
+ declare class GeneralDesignEditor extends Component<Props$$, SpreadsheetChildEnv> {
7606
7630
  static template: string;
7607
7631
  static components: {
7608
7632
  RoundColorPicker: typeof RoundColorPicker;
@@ -7640,12 +7664,12 @@ declare class GeneralDesignEditor extends Component<Props$_, SpreadsheetChildEnv
7640
7664
  updateChartTitleAlignment(align: "left" | "center" | "right"): void;
7641
7665
  }
7642
7666
 
7643
- interface Props$Z {
7667
+ interface Props$_ {
7644
7668
  figureId: UID;
7645
7669
  definition: ChartWithDataSetDefinition;
7646
7670
  updateChart: (figureId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
7647
7671
  }
7648
- declare class ChartLegend extends Component<Props$Z, SpreadsheetChildEnv> {
7672
+ declare class ChartLegend extends Component<Props$_, SpreadsheetChildEnv> {
7649
7673
  static template: string;
7650
7674
  static components: {
7651
7675
  Section: typeof Section;
@@ -7662,14 +7686,14 @@ interface Choice {
7662
7686
  value: unknown;
7663
7687
  label: string;
7664
7688
  }
7665
- interface Props$Y {
7689
+ interface Props$Z {
7666
7690
  choices: Choice[];
7667
7691
  onChange: (value: unknown) => void;
7668
7692
  selectedValue: string;
7669
7693
  name: string;
7670
7694
  direction: "horizontal" | "vertical";
7671
7695
  }
7672
- declare class RadioSelection extends Component<Props$Y, SpreadsheetChildEnv> {
7696
+ declare class RadioSelection extends Component<Props$Z, SpreadsheetChildEnv> {
7673
7697
  static template: string;
7674
7698
  static props: {
7675
7699
  choices: ArrayConstructor;
@@ -7688,13 +7712,13 @@ declare class RadioSelection extends Component<Props$Y, SpreadsheetChildEnv> {
7688
7712
  };
7689
7713
  }
7690
7714
 
7691
- interface Props$X {
7715
+ interface Props$Y {
7692
7716
  figureId: UID;
7693
7717
  definition: ChartWithDataSetDefinition;
7694
7718
  canUpdateChart: (figureID: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
7695
7719
  updateChart: (figureId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
7696
7720
  }
7697
- declare class SeriesDesignEditor extends Component<Props$X, SpreadsheetChildEnv> {
7721
+ declare class SeriesDesignEditor extends Component<Props$Y, SpreadsheetChildEnv> {
7698
7722
  static template: string;
7699
7723
  static components: {
7700
7724
  SidePanelCollapsible: typeof SidePanelCollapsible;
@@ -7722,13 +7746,13 @@ declare class SeriesDesignEditor extends Component<Props$X, SpreadsheetChildEnv>
7722
7746
  getDataSeriesLabel(): string | undefined;
7723
7747
  }
7724
7748
 
7725
- interface Props$W {
7749
+ interface Props$X {
7726
7750
  figureId: UID;
7727
7751
  definition: ChartWithDataSetDefinition;
7728
7752
  canUpdateChart: (figureID: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
7729
7753
  updateChart: (figureId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
7730
7754
  }
7731
- declare class SeriesWithAxisDesignEditor extends Component<Props$W, SpreadsheetChildEnv> {
7755
+ declare class SeriesWithAxisDesignEditor extends Component<Props$X, SpreadsheetChildEnv> {
7732
7756
  static template: string;
7733
7757
  static components: {
7734
7758
  SeriesDesignEditor: typeof SeriesDesignEditor;
@@ -7769,13 +7793,13 @@ declare class SeriesWithAxisDesignEditor extends Component<Props$W, SpreadsheetC
7769
7793
  updateTrendLineValue(index: number, config: any): void;
7770
7794
  }
7771
7795
 
7772
- interface Props$V {
7796
+ interface Props$W {
7773
7797
  figureId: UID;
7774
7798
  definition: ChartWithDataSetDefinition;
7775
7799
  canUpdateChart: (figureID: UID, definition: GenericDefinition<ChartWithDataSetDefinition>) => DispatchResult;
7776
7800
  updateChart: (figureId: UID, definition: GenericDefinition<ChartWithDataSetDefinition>) => DispatchResult;
7777
7801
  }
7778
- declare class ChartWithAxisDesignPanel<P extends Props$V = Props$V> extends Component<P, SpreadsheetChildEnv> {
7802
+ declare class ChartWithAxisDesignPanel<P extends Props$W = Props$W> extends Component<P, SpreadsheetChildEnv> {
7779
7803
  static template: string;
7780
7804
  static components: {
7781
7805
  GeneralDesignEditor: typeof GeneralDesignEditor;
@@ -7795,13 +7819,13 @@ declare class ChartWithAxisDesignPanel<P extends Props$V = Props$V> extends Comp
7795
7819
  get axesList(): AxisDefinition[];
7796
7820
  }
7797
7821
 
7798
- interface Props$U {
7822
+ interface Props$V {
7799
7823
  figureId: UID;
7800
7824
  definition: GaugeChartDefinition;
7801
7825
  canUpdateChart: (figureId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
7802
7826
  updateChart: (figureId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
7803
7827
  }
7804
- declare class GaugeChartConfigPanel extends Component<Props$U, SpreadsheetChildEnv> {
7828
+ declare class GaugeChartConfigPanel extends Component<Props$V, SpreadsheetChildEnv> {
7805
7829
  static template: string;
7806
7830
  static components: {
7807
7831
  ChartErrorSection: typeof ChartErrorSection;
@@ -7826,13 +7850,13 @@ interface PanelState {
7826
7850
  sectionRuleDispatchResult?: DispatchResult;
7827
7851
  sectionRule: SectionRule;
7828
7852
  }
7829
- interface Props$T {
7853
+ interface Props$U {
7830
7854
  figureId: UID;
7831
7855
  definition: GaugeChartDefinition;
7832
7856
  canUpdateChart: (figureID: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
7833
7857
  updateChart: (figureId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
7834
7858
  }
7835
- declare class GaugeChartDesignPanel extends Component<Props$T, SpreadsheetChildEnv> {
7859
+ declare class GaugeChartDesignPanel extends Component<Props$U, SpreadsheetChildEnv> {
7836
7860
  static template: string;
7837
7861
  static components: {
7838
7862
  SidePanelCollapsible: typeof SidePanelCollapsible;
@@ -7877,13 +7901,13 @@ declare class LineConfigPanel extends GenericChartConfigPanel {
7877
7901
  onUpdateCumulative(cumulative: boolean): void;
7878
7902
  }
7879
7903
 
7880
- interface Props$S {
7904
+ interface Props$T {
7881
7905
  figureId: UID;
7882
7906
  definition: ScorecardChartDefinition;
7883
7907
  canUpdateChart: (figureId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
7884
7908
  updateChart: (figureId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
7885
7909
  }
7886
- declare class ScorecardChartConfigPanel extends Component<Props$S, SpreadsheetChildEnv> {
7910
+ declare class ScorecardChartConfigPanel extends Component<Props$T, SpreadsheetChildEnv> {
7887
7911
  static template: string;
7888
7912
  static components: {
7889
7913
  SelectionInput: typeof SelectionInput;
@@ -7912,13 +7936,13 @@ declare class ScorecardChartConfigPanel extends Component<Props$S, SpreadsheetCh
7912
7936
  }
7913
7937
 
7914
7938
  type ColorPickerId = undefined | "backgroundColor" | "baselineColorUp" | "baselineColorDown";
7915
- interface Props$R {
7939
+ interface Props$S {
7916
7940
  figureId: UID;
7917
7941
  definition: ScorecardChartDefinition;
7918
7942
  canUpdateChart: (figureID: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
7919
7943
  updateChart: (figureId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
7920
7944
  }
7921
- declare class ScorecardChartDesignPanel extends Component<Props$R, SpreadsheetChildEnv> {
7945
+ declare class ScorecardChartDesignPanel extends Component<Props$S, SpreadsheetChildEnv> {
7922
7946
  static template: string;
7923
7947
  static components: {
7924
7948
  GeneralDesignEditor: typeof GeneralDesignEditor;
@@ -8081,13 +8105,13 @@ interface EnrichedToken extends Token {
8081
8105
  isParenthesisLinkedToCursor?: boolean;
8082
8106
  }
8083
8107
 
8084
- interface Props$Q {
8108
+ interface Props$R {
8085
8109
  proposals: AutoCompleteProposal[];
8086
8110
  selectedIndex: number | undefined;
8087
8111
  onValueSelected: (value: string) => void;
8088
8112
  onValueHovered: (index: string) => void;
8089
8113
  }
8090
- declare class TextValueProvider extends Component<Props$Q> {
8114
+ declare class TextValueProvider extends Component<Props$R> {
8091
8115
  static template: string;
8092
8116
  static props: {
8093
8117
  proposals: ArrayConstructor;
@@ -8154,19 +8178,19 @@ declare class ContentEditableHelper {
8154
8178
  getText(): string;
8155
8179
  }
8156
8180
 
8157
- interface Props$P {
8181
+ interface Props$Q {
8158
8182
  functionName: string;
8159
8183
  functionDescription: FunctionDescription;
8160
8184
  argToFocus: number;
8161
8185
  }
8162
- declare class FunctionDescriptionProvider extends Component<Props$P, SpreadsheetChildEnv> {
8186
+ declare class FunctionDescriptionProvider extends Component<Props$Q, SpreadsheetChildEnv> {
8163
8187
  static template: string;
8164
8188
  static props: {
8165
8189
  functionName: StringConstructor;
8166
8190
  functionDescription: ObjectConstructor;
8167
8191
  argToFocus: NumberConstructor;
8168
8192
  };
8169
- getContext(): Props$P;
8193
+ getContext(): Props$Q;
8170
8194
  get formulaArgSeparator(): string;
8171
8195
  }
8172
8196
 
@@ -8541,18 +8565,18 @@ declare class ComposerFocusStore extends SpreadsheetStore {
8541
8565
  activeComposer: ComposerInterface;
8542
8566
  private _focusMode;
8543
8567
  get focusMode(): ComposerFocusType;
8544
- focusComposer(listener: ComposerInterface, args: Args): void;
8545
- focusActiveComposer(args: Args): void;
8568
+ focusComposer(listener: ComposerInterface, args: Args): "noStateChange" | undefined;
8569
+ focusActiveComposer(args: Args): "noStateChange" | undefined;
8546
8570
  /**
8547
8571
  * Start the edition or update the content if it's already started.
8548
8572
  */
8549
8573
  private setComposerContent;
8550
8574
  }
8551
8575
 
8552
- interface Props$O {
8576
+ interface Props$P {
8553
8577
  figure: Figure;
8554
8578
  }
8555
- declare class ChartJsComponent extends Component<Props$O, SpreadsheetChildEnv> {
8579
+ declare class ChartJsComponent extends Component<Props$P, SpreadsheetChildEnv> {
8556
8580
  static template: string;
8557
8581
  static props: {
8558
8582
  figure: ObjectConstructor;
@@ -8569,10 +8593,10 @@ declare class ChartJsComponent extends Component<Props$O, SpreadsheetChildEnv> {
8569
8593
  private updateChartJs;
8570
8594
  }
8571
8595
 
8572
- interface Props$N {
8596
+ interface Props$O {
8573
8597
  figure: Figure;
8574
8598
  }
8575
- declare class ScorecardChart$1 extends Component<Props$N, SpreadsheetChildEnv> {
8599
+ declare class ScorecardChart$1 extends Component<Props$O, SpreadsheetChildEnv> {
8576
8600
  static template: string;
8577
8601
  static props: {
8578
8602
  figure: ObjectConstructor;
@@ -8585,7 +8609,7 @@ declare class ScorecardChart$1 extends Component<Props$N, SpreadsheetChildEnv> {
8585
8609
  }
8586
8610
 
8587
8611
  type MenuItemOrSeparator = Action | "separator";
8588
- interface Props$M {
8612
+ interface Props$N {
8589
8613
  position: DOMCoordinates;
8590
8614
  menuItems: Action[];
8591
8615
  depth: number;
@@ -8604,7 +8628,7 @@ interface MenuState {
8604
8628
  menuItems: Action[];
8605
8629
  isHoveringChild?: boolean;
8606
8630
  }
8607
- declare class Menu extends Component<Props$M, SpreadsheetChildEnv> {
8631
+ declare class Menu extends Component<Props$N, SpreadsheetChildEnv> {
8608
8632
  static template: string;
8609
8633
  static props: {
8610
8634
  position: ObjectConstructor;
@@ -8680,14 +8704,14 @@ declare class Menu extends Component<Props$M, SpreadsheetChildEnv> {
8680
8704
  }
8681
8705
 
8682
8706
  type ResizeAnchor = "top left" | "top" | "top right" | "right" | "bottom right" | "bottom" | "bottom left" | "left";
8683
- interface Props$L {
8707
+ interface Props$M {
8684
8708
  figure: Figure;
8685
8709
  style: string;
8686
8710
  onFigureDeleted: () => void;
8687
8711
  onMouseDown: (ev: MouseEvent) => void;
8688
8712
  onClickAnchor(dirX: ResizeDirection, dirY: ResizeDirection, ev: MouseEvent): void;
8689
8713
  }
8690
- declare class FigureComponent extends Component<Props$L, SpreadsheetChildEnv> {
8714
+ declare class FigureComponent extends Component<Props$M, SpreadsheetChildEnv> {
8691
8715
  static template: string;
8692
8716
  static props: {
8693
8717
  figure: ObjectConstructor;
@@ -8736,11 +8760,11 @@ declare class FigureComponent extends Component<Props$L, SpreadsheetChildEnv> {
8736
8760
  private openContextMenu;
8737
8761
  }
8738
8762
 
8739
- interface Props$K {
8763
+ interface Props$L {
8740
8764
  figure: Figure;
8741
8765
  onFigureDeleted: () => void;
8742
8766
  }
8743
- declare class ChartFigure extends Component<Props$K, SpreadsheetChildEnv> {
8767
+ declare class ChartFigure extends Component<Props$L, SpreadsheetChildEnv> {
8744
8768
  static template: string;
8745
8769
  static props: {
8746
8770
  figure: ObjectConstructor;
@@ -8752,7 +8776,7 @@ declare class ChartFigure extends Component<Props$K, SpreadsheetChildEnv> {
8752
8776
  get chartComponent(): new (...args: any) => Component;
8753
8777
  }
8754
8778
 
8755
- interface Props$J {
8779
+ interface Props$K {
8756
8780
  isVisible: boolean;
8757
8781
  position: Position;
8758
8782
  }
@@ -8764,7 +8788,7 @@ interface State$7 {
8764
8788
  position: Position;
8765
8789
  handler: boolean;
8766
8790
  }
8767
- declare class Autofill extends Component<Props$J, SpreadsheetChildEnv> {
8791
+ declare class Autofill extends Component<Props$K, SpreadsheetChildEnv> {
8768
8792
  static template: string;
8769
8793
  static props: {
8770
8794
  position: ObjectConstructor;
@@ -8798,7 +8822,7 @@ declare class ClientTag extends Component<ClientTagProps, SpreadsheetChildEnv> {
8798
8822
  get tagStyle(): string;
8799
8823
  }
8800
8824
 
8801
- interface Props$I {
8825
+ interface Props$J {
8802
8826
  gridDims: DOMDimension;
8803
8827
  onInputContextMenu: (event: MouseEvent) => void;
8804
8828
  }
@@ -8806,7 +8830,7 @@ interface Props$I {
8806
8830
  * This component is a composer which positions itself on the grid at the anchor cell.
8807
8831
  * It also applies the style of the cell to the composer input.
8808
8832
  */
8809
- declare class GridComposer extends Component<Props$I, SpreadsheetChildEnv> {
8833
+ declare class GridComposer extends Component<Props$J, SpreadsheetChildEnv> {
8810
8834
  static template: string;
8811
8835
  static props: {
8812
8836
  gridDims: ObjectConstructor;
@@ -8864,10 +8888,10 @@ declare class GridCellIcon extends Component<GridCellIconProps, SpreadsheetChild
8864
8888
  isPositionVisible(position: CellPosition): boolean;
8865
8889
  }
8866
8890
 
8867
- interface Props$H {
8891
+ interface Props$I {
8868
8892
  cellPosition: CellPosition;
8869
8893
  }
8870
- declare class DataValidationCheckbox extends Component<Props$H, SpreadsheetChildEnv> {
8894
+ declare class DataValidationCheckbox extends Component<Props$I, SpreadsheetChildEnv> {
8871
8895
  static template: string;
8872
8896
  static components: {
8873
8897
  Checkbox: typeof Checkbox;
@@ -8880,10 +8904,10 @@ declare class DataValidationCheckbox extends Component<Props$H, SpreadsheetChild
8880
8904
  get isDisabled(): boolean;
8881
8905
  }
8882
8906
 
8883
- interface Props$G {
8907
+ interface Props$H {
8884
8908
  cellPosition: CellPosition;
8885
8909
  }
8886
- declare class DataValidationListIcon extends Component<Props$G, SpreadsheetChildEnv> {
8910
+ declare class DataValidationListIcon extends Component<Props$H, SpreadsheetChildEnv> {
8887
8911
  static template: string;
8888
8912
  static props: {
8889
8913
  cellPosition: ObjectConstructor;
@@ -8913,7 +8937,7 @@ interface SnapLine<T extends HFigureAxisType | VFigureAxisType> {
8913
8937
  }
8914
8938
 
8915
8939
  type ContainerType = "topLeft" | "topRight" | "bottomLeft" | "bottomRight" | "dnd";
8916
- interface Props$F {
8940
+ interface Props$G {
8917
8941
  onFigureDeleted: () => void;
8918
8942
  }
8919
8943
  interface Container {
@@ -8993,7 +9017,7 @@ interface DndState {
8993
9017
  * that occurred during the drag & drop, and to position the figure on the correct pane.
8994
9018
  *
8995
9019
  */
8996
- declare class FiguresContainer extends Component<Props$F, SpreadsheetChildEnv> {
9020
+ declare class FiguresContainer extends Component<Props$G, SpreadsheetChildEnv> {
8997
9021
  static template: string;
8998
9022
  static props: {
8999
9023
  onFigureDeleted: FunctionConstructor;
@@ -9028,10 +9052,10 @@ declare class FiguresContainer extends Component<Props$F, SpreadsheetChildEnv> {
9028
9052
  private getSnapLineStyle;
9029
9053
  }
9030
9054
 
9031
- interface Props$E {
9055
+ interface Props$F {
9032
9056
  cellPosition: CellPosition;
9033
9057
  }
9034
- declare class FilterIcon extends Component<Props$E, SpreadsheetChildEnv> {
9058
+ declare class FilterIcon extends Component<Props$F, SpreadsheetChildEnv> {
9035
9059
  static template: string;
9036
9060
  static props: {
9037
9061
  cellPosition: ObjectConstructor;
@@ -9053,10 +9077,10 @@ declare class FilterIconsOverlay extends Component<{}, SpreadsheetChildEnv> {
9053
9077
  getFilterHeadersPositions(): CellPosition[];
9054
9078
  }
9055
9079
 
9056
- interface Props$D {
9080
+ interface Props$E {
9057
9081
  focusGrid: () => void;
9058
9082
  }
9059
- declare class GridAddRowsFooter extends Component<Props$D, SpreadsheetChildEnv> {
9083
+ declare class GridAddRowsFooter extends Component<Props$E, SpreadsheetChildEnv> {
9060
9084
  static template: string;
9061
9085
  static props: {
9062
9086
  focusGrid: FunctionConstructor;
@@ -9080,7 +9104,7 @@ declare class GridAddRowsFooter extends Component<Props$D, SpreadsheetChildEnv>
9080
9104
  private onExternalClick;
9081
9105
  }
9082
9106
 
9083
- interface Props$C {
9107
+ interface Props$D {
9084
9108
  onCellHovered: (position: Partial<Position$1>) => void;
9085
9109
  onCellDoubleClicked: (col: HeaderIndex, row: HeaderIndex) => void;
9086
9110
  onCellClicked: (col: HeaderIndex, row: HeaderIndex, modifiers: GridClickModifiers) => void;
@@ -9090,7 +9114,7 @@ interface Props$C {
9090
9114
  gridOverlayDimensions: string;
9091
9115
  onFigureDeleted: () => void;
9092
9116
  }
9093
- declare class GridOverlay extends Component<Props$C, SpreadsheetChildEnv> {
9117
+ declare class GridOverlay extends Component<Props$D, SpreadsheetChildEnv> {
9094
9118
  static template: string;
9095
9119
  static props: {
9096
9120
  onCellHovered: {
@@ -9148,12 +9172,12 @@ declare class GridOverlay extends Component<Props$C, SpreadsheetChildEnv> {
9148
9172
  private getCartesianCoordinates;
9149
9173
  }
9150
9174
 
9151
- interface Props$B {
9175
+ interface Props$C {
9152
9176
  gridRect: Rect;
9153
9177
  onClosePopover: () => void;
9154
9178
  onMouseWheel: (ev: WheelEvent) => void;
9155
9179
  }
9156
- declare class GridPopover extends Component<Props$B, SpreadsheetChildEnv> {
9180
+ declare class GridPopover extends Component<Props$C, SpreadsheetChildEnv> {
9157
9181
  static template: string;
9158
9182
  static props: {
9159
9183
  onClosePopover: FunctionConstructor;
@@ -9298,13 +9322,13 @@ declare class HeadersOverlay extends Component<any, SpreadsheetChildEnv> {
9298
9322
  }
9299
9323
 
9300
9324
  type Orientation$1 = "n" | "s" | "w" | "e";
9301
- interface Props$A {
9325
+ interface Props$B {
9302
9326
  zone: Zone;
9303
9327
  orientation: Orientation$1;
9304
9328
  isMoving: boolean;
9305
9329
  onMoveHighlight: (x: Pixel, y: Pixel) => void;
9306
9330
  }
9307
- declare class Border extends Component<Props$A, SpreadsheetChildEnv> {
9331
+ declare class Border extends Component<Props$B, SpreadsheetChildEnv> {
9308
9332
  static template: string;
9309
9333
  static props: {
9310
9334
  zone: ObjectConstructor;
@@ -9317,14 +9341,14 @@ declare class Border extends Component<Props$A, SpreadsheetChildEnv> {
9317
9341
  }
9318
9342
 
9319
9343
  type Orientation = "nw" | "ne" | "sw" | "se";
9320
- interface Props$z {
9344
+ interface Props$A {
9321
9345
  zone: Zone;
9322
9346
  color: Color;
9323
9347
  orientation: Orientation;
9324
9348
  isResizing: boolean;
9325
9349
  onResizeHighlight: (isLeft: boolean, isRight: boolean) => void;
9326
9350
  }
9327
- declare class Corner extends Component<Props$z, SpreadsheetChildEnv> {
9351
+ declare class Corner extends Component<Props$A, SpreadsheetChildEnv> {
9328
9352
  static template: string;
9329
9353
  static props: {
9330
9354
  zone: ObjectConstructor;
@@ -9339,14 +9363,14 @@ declare class Corner extends Component<Props$z, SpreadsheetChildEnv> {
9339
9363
  onMouseDown(ev: MouseEvent): void;
9340
9364
  }
9341
9365
 
9342
- interface Props$y {
9366
+ interface Props$z {
9343
9367
  zone: Zone;
9344
9368
  color: Color;
9345
9369
  }
9346
9370
  interface HighlightState {
9347
9371
  shiftingMode: "isMoving" | "isResizing" | "none";
9348
9372
  }
9349
- declare class Highlight extends Component<Props$y, SpreadsheetChildEnv> {
9373
+ declare class Highlight extends Component<Props$z, SpreadsheetChildEnv> {
9350
9374
  static template: string;
9351
9375
  static props: {
9352
9376
  zone: ObjectConstructor;
@@ -9363,7 +9387,7 @@ declare class Highlight extends Component<Props$y, SpreadsheetChildEnv> {
9363
9387
 
9364
9388
  type ScrollDirection = "horizontal" | "vertical";
9365
9389
 
9366
- interface Props$x {
9390
+ interface Props$y {
9367
9391
  width: Pixel;
9368
9392
  height: Pixel;
9369
9393
  direction: ScrollDirection;
@@ -9371,7 +9395,7 @@ interface Props$x {
9371
9395
  offset: Pixel;
9372
9396
  onScroll: (offset: Pixel) => void;
9373
9397
  }
9374
- declare class ScrollBar extends Component<Props$x> {
9398
+ declare class ScrollBar extends Component<Props$y> {
9375
9399
  static props: {
9376
9400
  width: {
9377
9401
  type: NumberConstructor;
@@ -9399,10 +9423,10 @@ declare class ScrollBar extends Component<Props$x> {
9399
9423
  onScroll(ev: any): void;
9400
9424
  }
9401
9425
 
9402
- interface Props$w {
9426
+ interface Props$x {
9403
9427
  leftOffset: number;
9404
9428
  }
9405
- declare class HorizontalScrollBar extends Component<Props$w, SpreadsheetChildEnv> {
9429
+ declare class HorizontalScrollBar extends Component<Props$x, SpreadsheetChildEnv> {
9406
9430
  static props: {
9407
9431
  leftOffset: {
9408
9432
  type: NumberConstructor;
@@ -9428,10 +9452,10 @@ declare class HorizontalScrollBar extends Component<Props$w, SpreadsheetChildEnv
9428
9452
  onScroll(offset: any): void;
9429
9453
  }
9430
9454
 
9431
- interface Props$v {
9455
+ interface Props$w {
9432
9456
  topOffset: number;
9433
9457
  }
9434
- declare class VerticalScrollBar extends Component<Props$v, SpreadsheetChildEnv> {
9458
+ declare class VerticalScrollBar extends Component<Props$w, SpreadsheetChildEnv> {
9435
9459
  static props: {
9436
9460
  topOffset: {
9437
9461
  type: NumberConstructor;
@@ -9457,13 +9481,13 @@ declare class VerticalScrollBar extends Component<Props$v, SpreadsheetChildEnv>
9457
9481
  onScroll(offset: any): void;
9458
9482
  }
9459
9483
 
9460
- interface Props$u {
9484
+ interface Props$v {
9461
9485
  table: Table;
9462
9486
  }
9463
9487
  interface State$6 {
9464
9488
  highlightZone: Zone | undefined;
9465
9489
  }
9466
- declare class TableResizer extends Component<Props$u, SpreadsheetChildEnv> {
9490
+ declare class TableResizer extends Component<Props$v, SpreadsheetChildEnv> {
9467
9491
  static template: string;
9468
9492
  static props: {
9469
9493
  table: ObjectConstructor;
@@ -9480,8 +9504,8 @@ declare class HoveredCellStore extends SpreadsheetStore {
9480
9504
  col: number | undefined;
9481
9505
  row: number | undefined;
9482
9506
  handle(cmd: Command): void;
9483
- hover(position: Position$1): void;
9484
- clear(): void;
9507
+ hover(position: Position$1): "noStateChange" | undefined;
9508
+ clear(): "noStateChange" | undefined;
9485
9509
  }
9486
9510
 
9487
9511
  /**
@@ -9495,10 +9519,10 @@ declare class HoveredCellStore extends SpreadsheetStore {
9495
9519
  * - a vertical resizer (same, for rows)
9496
9520
  */
9497
9521
  type ContextMenuType = "ROW" | "COL" | "CELL" | "FILTER" | "GROUP_HEADERS" | "UNGROUP_HEADERS";
9498
- interface Props$t {
9522
+ interface Props$u {
9499
9523
  exposeFocus: (focus: () => void) => void;
9500
9524
  }
9501
- declare class Grid extends Component<Props$t, SpreadsheetChildEnv> {
9525
+ declare class Grid extends Component<Props$u, SpreadsheetChildEnv> {
9502
9526
  static template: string;
9503
9527
  static props: {
9504
9528
  exposeFocus: FunctionConstructor;
@@ -9607,7 +9631,7 @@ declare class MainChartPanelStore extends SpreadsheetStore {
9607
9631
  private getChartDefinitionFromContextCreation;
9608
9632
  }
9609
9633
 
9610
- interface Props$s {
9634
+ interface Props$t {
9611
9635
  figureId: UID;
9612
9636
  chartPanelStore: MainChartPanelStore;
9613
9637
  }
@@ -9615,7 +9639,7 @@ interface ChartTypePickerState {
9615
9639
  popoverProps: PopoverProps | undefined;
9616
9640
  popoverStyle: string;
9617
9641
  }
9618
- declare class ChartTypePicker extends Component<Props$s, SpreadsheetChildEnv> {
9642
+ declare class ChartTypePicker extends Component<Props$t, SpreadsheetChildEnv> {
9619
9643
  static template: string;
9620
9644
  static components: {
9621
9645
  Section: typeof Section;
@@ -9650,11 +9674,11 @@ declare class ChartTypePicker extends Component<Props$s, SpreadsheetChildEnv> {
9650
9674
  private closePopover;
9651
9675
  }
9652
9676
 
9653
- interface Props$r {
9677
+ interface Props$s {
9654
9678
  onCloseSidePanel: () => void;
9655
9679
  figureId: UID;
9656
9680
  }
9657
- declare class ChartPanel extends Component<Props$r, SpreadsheetChildEnv> {
9681
+ declare class ChartPanel extends Component<Props$s, SpreadsheetChildEnv> {
9658
9682
  static template: string;
9659
9683
  static components: {
9660
9684
  Section: typeof Section;
@@ -9674,13 +9698,13 @@ declare class ChartPanel extends Component<Props$r, SpreadsheetChildEnv> {
9674
9698
  private getChartDefinition;
9675
9699
  }
9676
9700
 
9677
- interface Props$q {
9701
+ interface Props$r {
9678
9702
  figureId: UID;
9679
9703
  definition: PieChartDefinition;
9680
9704
  canUpdateChart: (figureID: UID, definition: GenericDefinition<PieChartDefinition>) => DispatchResult;
9681
9705
  updateChart: (figureId: UID, definition: GenericDefinition<PieChartDefinition>) => DispatchResult;
9682
9706
  }
9683
- declare class PieChartDesignPanel extends Component<Props$q, SpreadsheetChildEnv> {
9707
+ declare class PieChartDesignPanel extends Component<Props$r, SpreadsheetChildEnv> {
9684
9708
  static template: string;
9685
9709
  static components: {
9686
9710
  GeneralDesignEditor: typeof GeneralDesignEditor;
@@ -9699,10 +9723,10 @@ declare class PieChartDesignPanel extends Component<Props$q, SpreadsheetChildEnv
9699
9723
  };
9700
9724
  }
9701
9725
 
9702
- interface Props$p {
9726
+ interface Props$q {
9703
9727
  items: ActionSpec[];
9704
9728
  }
9705
- declare class CogWheelMenu extends Component<Props$p, SpreadsheetChildEnv> {
9729
+ declare class CogWheelMenu extends Component<Props$q, SpreadsheetChildEnv> {
9706
9730
  static template: string;
9707
9731
  static components: {
9708
9732
  Menu: typeof Menu;
@@ -9785,14 +9809,14 @@ declare class FindAndReplaceStore extends SpreadsheetStore implements HighlightP
9785
9809
  get highlights(): Highlight$1[];
9786
9810
  }
9787
9811
 
9788
- interface Props$o {
9812
+ interface Props$p {
9789
9813
  deferUpdate: boolean;
9790
9814
  isDirty: boolean;
9791
9815
  toggleDeferUpdate: (value: boolean) => void;
9792
9816
  discard: () => void;
9793
9817
  apply: () => void;
9794
9818
  }
9795
- declare class PivotDeferUpdate extends Component<Props$o, SpreadsheetChildEnv> {
9819
+ declare class PivotDeferUpdate extends Component<Props$p, SpreadsheetChildEnv> {
9796
9820
  static template: string;
9797
9821
  static props: {
9798
9822
  deferUpdate: BooleanConstructor;
@@ -9809,11 +9833,11 @@ declare class PivotDeferUpdate extends Component<Props$o, SpreadsheetChildEnv> {
9809
9833
  get deferUpdatesTooltip(): string;
9810
9834
  }
9811
9835
 
9812
- interface Props$n {
9836
+ interface Props$o {
9813
9837
  onFieldPicked: (field: string) => void;
9814
9838
  fields: PivotField[];
9815
9839
  }
9816
- declare class AddDimensionButton extends Component<Props$n, SpreadsheetChildEnv> {
9840
+ declare class AddDimensionButton extends Component<Props$o, SpreadsheetChildEnv> {
9817
9841
  static template: string;
9818
9842
  static components: {
9819
9843
  Popover: typeof Popover;
@@ -9849,14 +9873,14 @@ declare class AddDimensionButton extends Component<Props$n, SpreadsheetChildEnv>
9849
9873
  onKeyDown(ev: KeyboardEvent): void;
9850
9874
  }
9851
9875
 
9852
- interface Props$m {
9876
+ interface Props$n {
9853
9877
  value: string;
9854
9878
  onChange: (value: string) => void;
9855
9879
  class?: string;
9856
9880
  id?: string;
9857
9881
  placeholder?: string;
9858
9882
  }
9859
- declare class TextInput extends Component<Props$m, SpreadsheetChildEnv> {
9883
+ declare class TextInput extends Component<Props$n, SpreadsheetChildEnv> {
9860
9884
  static template: string;
9861
9885
  static props: {
9862
9886
  value: StringConstructor;
@@ -9882,13 +9906,13 @@ declare class TextInput extends Component<Props$m, SpreadsheetChildEnv> {
9882
9906
  onMouseUp(ev: MouseEvent): void;
9883
9907
  }
9884
9908
 
9885
- interface Props$l {
9909
+ interface Props$m {
9886
9910
  dimension: PivotCoreDimension | PivotCoreMeasure;
9887
9911
  onRemoved: (dimension: PivotCoreDimension | PivotCoreMeasure) => void;
9888
9912
  onNameUpdated?: (dimension: PivotCoreDimension | PivotCoreMeasure, name?: string) => void;
9889
9913
  type: "row" | "col" | "measure";
9890
9914
  }
9891
- declare class PivotDimension extends Component<Props$l, SpreadsheetChildEnv> {
9915
+ declare class PivotDimension extends Component<Props$m, SpreadsheetChildEnv> {
9892
9916
  static template: string;
9893
9917
  static props: {
9894
9918
  dimension: ObjectConstructor;
@@ -9912,13 +9936,13 @@ declare class PivotDimension extends Component<Props$l, SpreadsheetChildEnv> {
9912
9936
  updateName(name: string): void;
9913
9937
  }
9914
9938
 
9915
- interface Props$k {
9939
+ interface Props$l {
9916
9940
  dimension: PivotDimension$1;
9917
9941
  onUpdated: (dimension: PivotDimension$1, ev: InputEvent) => void;
9918
9942
  availableGranularities: Set<string>;
9919
9943
  allGranularities: string[];
9920
9944
  }
9921
- declare class PivotDimensionGranularity extends Component<Props$k, SpreadsheetChildEnv> {
9945
+ declare class PivotDimensionGranularity extends Component<Props$l, SpreadsheetChildEnv> {
9922
9946
  static template: string;
9923
9947
  static props: {
9924
9948
  dimension: ObjectConstructor;
@@ -9943,11 +9967,11 @@ declare class PivotDimensionGranularity extends Component<Props$k, SpreadsheetCh
9943
9967
  };
9944
9968
  }
9945
9969
 
9946
- interface Props$j {
9970
+ interface Props$k {
9947
9971
  dimension: PivotDimension$1;
9948
9972
  onUpdated: (dimension: PivotDimension$1, ev: InputEvent) => void;
9949
9973
  }
9950
- declare class PivotDimensionOrder extends Component<Props$j, SpreadsheetChildEnv> {
9974
+ declare class PivotDimensionOrder extends Component<Props$k, SpreadsheetChildEnv> {
9951
9975
  static template: string;
9952
9976
  static props: {
9953
9977
  dimension: ObjectConstructor;
@@ -9982,7 +10006,7 @@ declare function createPivotFormula(formulaId: string, cell: PivotTableCell): st
9982
10006
  */
9983
10007
  declare function toNormalizedPivotValue(dimension: Pick<PivotDimension$1, "type" | "displayName" | "granularity">, groupValue: any): CellValue;
9984
10008
 
9985
- interface Props$i {
10009
+ interface Props$j {
9986
10010
  onConfirm: (content: string) => void;
9987
10011
  composerContent: string;
9988
10012
  defaultRangeSheetId: UID;
@@ -9992,7 +10016,7 @@ interface Props$i {
9992
10016
  invalid?: boolean;
9993
10017
  getContextualColoredSymbolToken?: (token: Token) => Color;
9994
10018
  }
9995
- declare class StandaloneComposer extends Component<Props$i, SpreadsheetChildEnv> {
10019
+ declare class StandaloneComposer extends Component<Props$j, SpreadsheetChildEnv> {
9996
10020
  static template: string;
9997
10021
  static props: {
9998
10022
  composerContent: {
@@ -10042,7 +10066,7 @@ declare class StandaloneComposer extends Component<Props$i, SpreadsheetChildEnv>
10042
10066
  onFocus(selection: ComposerSelection): void;
10043
10067
  }
10044
10068
 
10045
- interface Props$h {
10069
+ interface Props$i {
10046
10070
  pivotId: string;
10047
10071
  definition: PivotRuntimeDefinition;
10048
10072
  measure: PivotMeasure;
@@ -10050,7 +10074,7 @@ interface Props$h {
10050
10074
  onRemoved: () => void;
10051
10075
  generateMeasureId: (fieldName: string, aggregator?: string) => string;
10052
10076
  }
10053
- declare class PivotMeasureEditor extends Component<Props$h> {
10077
+ declare class PivotMeasureEditor extends Component<Props$i> {
10054
10078
  static template: string;
10055
10079
  static components: {
10056
10080
  PivotDimension: typeof PivotDimension;
@@ -10072,13 +10096,14 @@ declare class PivotMeasureEditor extends Component<Props$h> {
10072
10096
  toggleMeasureVisibility(): void;
10073
10097
  openShowValuesAs(): void;
10074
10098
  getColoredSymbolToken(token: Token): Color | undefined;
10099
+ get isCalculatedMeasureInvalid(): boolean;
10075
10100
  }
10076
10101
 
10077
- interface Props$g {
10102
+ interface Props$h {
10078
10103
  definition: PivotRuntimeDefinition;
10079
10104
  pivotId: UID;
10080
10105
  }
10081
- declare class PivotSortSection extends Component<Props$g, SpreadsheetChildEnv> {
10106
+ declare class PivotSortSection extends Component<Props$h, SpreadsheetChildEnv> {
10082
10107
  static template: string;
10083
10108
  static components: {
10084
10109
  Section: typeof Section;
@@ -10095,7 +10120,7 @@ declare class PivotSortSection extends Component<Props$g, SpreadsheetChildEnv> {
10095
10120
  }[];
10096
10121
  }
10097
10122
 
10098
- interface Props$f {
10123
+ interface Props$g {
10099
10124
  definition: PivotRuntimeDefinition;
10100
10125
  onDimensionsUpdated: (definition: Partial<PivotCoreDefinition>) => void;
10101
10126
  unusedGroupableFields: PivotField[];
@@ -10106,7 +10131,7 @@ interface Props$f {
10106
10131
  getScrollableContainerEl?: () => HTMLElement;
10107
10132
  pivotId: UID;
10108
10133
  }
10109
- declare class PivotLayoutConfigurator extends Component<Props$f, SpreadsheetChildEnv> {
10134
+ declare class PivotLayoutConfigurator extends Component<Props$g, SpreadsheetChildEnv> {
10110
10135
  static template: string;
10111
10136
  static components: {
10112
10137
  AddDimensionButton: typeof AddDimensionButton;
@@ -10196,11 +10221,11 @@ declare class PivotSidePanelStore extends SpreadsheetStore {
10196
10221
  private shouldKeepSortedColumn;
10197
10222
  }
10198
10223
 
10199
- interface Props$e {
10224
+ interface Props$f {
10200
10225
  pivotId: UID;
10201
10226
  flipAxis: () => void;
10202
10227
  }
10203
- declare class PivotTitleSection extends Component<Props$e, SpreadsheetChildEnv> {
10228
+ declare class PivotTitleSection extends Component<Props$f, SpreadsheetChildEnv> {
10204
10229
  static template: string;
10205
10230
  static components: {
10206
10231
  CogWheelMenu: typeof CogWheelMenu;
@@ -10284,6 +10309,90 @@ declare function getFirstPivotFunction(tokens: Token[]): {
10284
10309
  */
10285
10310
  declare function getNumberOfPivotFunctions(tokens: Token[]): number;
10286
10311
 
10312
+ interface PivotDialogColumn {
10313
+ formula: string;
10314
+ value: string;
10315
+ isMissing: boolean;
10316
+ style?: string;
10317
+ span: number;
10318
+ }
10319
+ interface PivotDialogRow {
10320
+ formula: string;
10321
+ value: string;
10322
+ isMissing: boolean;
10323
+ style?: string;
10324
+ }
10325
+ interface PivotDialogValue {
10326
+ formula: string;
10327
+ value: string;
10328
+ isMissing: boolean;
10329
+ }
10330
+ interface Props$e {
10331
+ pivotId: UID;
10332
+ onCellClicked: (formula: string) => void;
10333
+ }
10334
+ interface TableData {
10335
+ columns: PivotDialogColumn[][];
10336
+ rows: PivotDialogRow[];
10337
+ values: PivotDialogValue[][];
10338
+ }
10339
+ declare class PivotHTMLRenderer extends Component<Props$e, SpreadsheetChildEnv> {
10340
+ static template: string;
10341
+ static components: {
10342
+ Checkbox: typeof Checkbox;
10343
+ };
10344
+ static props: {
10345
+ pivotId: StringConstructor;
10346
+ onCellClicked: FunctionConstructor;
10347
+ };
10348
+ private pivot;
10349
+ data: TableData;
10350
+ private state;
10351
+ setup(): void;
10352
+ get tracker(): PivotPresenceTracker | undefined;
10353
+ /**
10354
+ * Retrieve the data to display in the Pivot Table
10355
+ * In the case when showMissingValuesOnly is false, the returned value
10356
+ * is the complete data
10357
+ * In the case when showMissingValuesOnly is true, the returned value is
10358
+ * the data which contains only missing values in the rows and cols. In
10359
+ * the rows, we also return the parent rows of rows which contains missing
10360
+ * values, to give context to the user.
10361
+ *
10362
+ */
10363
+ getTableData(): TableData;
10364
+ /**
10365
+ * Retrieve the parents of the given row
10366
+ * ex:
10367
+ * Australia
10368
+ * January
10369
+ * February
10370
+ * The parent of "January" is "Australia"
10371
+ */
10372
+ private addRecursiveRow;
10373
+ /**
10374
+ * Create the columns to be used, based on the indexes of the columns in
10375
+ * which a missing value is present
10376
+ *
10377
+ */
10378
+ private buildColumnsMissing;
10379
+ /**
10380
+ * Create the rows to be used, based on the indexes of the rows in
10381
+ * which a missing value is present.
10382
+ */
10383
+ private buildRowsMissing;
10384
+ /**
10385
+ * Create the value to be used, based on the indexes of the columns and
10386
+ * rows in which a missing value is present.
10387
+ */
10388
+ private buildValuesMissing;
10389
+ private getColumnsIndexes;
10390
+ private getRowsIndexes;
10391
+ _buildColHeaders(id: UID, table: SpreadsheetPivotTable): PivotDialogColumn[][];
10392
+ _buildRowHeaders(id: UID, table: SpreadsheetPivotTable): PivotDialogRow[];
10393
+ _buildValues(id: UID, table: SpreadsheetPivotTable): PivotDialogValue[][];
10394
+ }
10395
+
10287
10396
  interface Props$d {
10288
10397
  figureId: UID;
10289
10398
  definition: ComboChartDefinition;
@@ -10581,11 +10690,11 @@ interface Renderer {
10581
10690
  renderingLayers: Readonly<LayerName[]>;
10582
10691
  }
10583
10692
  declare class RendererStore {
10584
- mutators: readonly ["register", "unRegister"];
10693
+ mutators: readonly ["register", "unRegister", "drawLayer"];
10585
10694
  private renderers;
10586
10695
  register(renderer: Renderer): void;
10587
10696
  unRegister(renderer: Renderer): void;
10588
- drawLayer(context: GridRenderingContext, layer: LayerName): void;
10697
+ drawLayer(context: GridRenderingContext, layer: LayerName): string;
10589
10698
  }
10590
10699
 
10591
10700
  interface RippleProps {
@@ -11598,7 +11707,7 @@ declare const registries: {
11598
11707
  clipboardHandlersRegistries: {
11599
11708
  figureHandlers: Registry<{
11600
11709
  new (getters: Getters, dispatch: {
11601
- <T extends "UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "SORT_CELLS" | "SET_DECIMAL" | "PASTE" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT", C extends Extract<UpdateCellCommand, {
11710
+ <T extends "UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "SORT_CELLS" | "SET_DECIMAL" | "PASTE" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING", C extends Extract<UpdateCellCommand, {
11602
11711
  type: T;
11603
11712
  }> | Extract<UpdateCellPositionCommand, {
11604
11713
  type: T;
@@ -11828,8 +11937,12 @@ declare const registries: {
11828
11937
  type: T;
11829
11938
  }> | Extract<PaintFormat, {
11830
11939
  type: T;
11940
+ }> | Extract<PivotStartPresenceTracking, {
11941
+ type: T;
11942
+ }> | Extract<PivotStopPresenceTracking, {
11943
+ type: T;
11831
11944
  }>>(type: {} extends Omit<C, "type"> ? T : never): DispatchResult;
11832
- <T_1 extends "UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "SORT_CELLS" | "SET_DECIMAL" | "PASTE" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT", C_1 extends Extract<UpdateCellCommand, {
11945
+ <T_1 extends "UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "SORT_CELLS" | "SET_DECIMAL" | "PASTE" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING", C_1 extends Extract<UpdateCellCommand, {
11833
11946
  type: T_1;
11834
11947
  }> | Extract<UpdateCellPositionCommand, {
11835
11948
  type: T_1;
@@ -12059,12 +12172,16 @@ declare const registries: {
12059
12172
  type: T_1;
12060
12173
  }> | Extract<PaintFormat, {
12061
12174
  type: T_1;
12175
+ }> | Extract<PivotStartPresenceTracking, {
12176
+ type: T_1;
12177
+ }> | Extract<PivotStopPresenceTracking, {
12178
+ type: T_1;
12062
12179
  }>>(type: T_1, r: Omit<C_1, "type">): DispatchResult;
12063
12180
  }): AbstractFigureClipboardHandler<any>;
12064
12181
  }>;
12065
12182
  cellHandlers: Registry<{
12066
12183
  new (getters: Getters, dispatch: {
12067
- <T extends "UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "SORT_CELLS" | "SET_DECIMAL" | "PASTE" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT", C extends Extract<UpdateCellCommand, {
12184
+ <T extends "UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "SORT_CELLS" | "SET_DECIMAL" | "PASTE" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING", C extends Extract<UpdateCellCommand, {
12068
12185
  type: T;
12069
12186
  }> | Extract<UpdateCellPositionCommand, {
12070
12187
  type: T;
@@ -12294,8 +12411,12 @@ declare const registries: {
12294
12411
  type: T;
12295
12412
  }> | Extract<PaintFormat, {
12296
12413
  type: T;
12414
+ }> | Extract<PivotStartPresenceTracking, {
12415
+ type: T;
12416
+ }> | Extract<PivotStopPresenceTracking, {
12417
+ type: T;
12297
12418
  }>>(type: {} extends Omit<C, "type"> ? T : never): DispatchResult;
12298
- <T_1 extends "UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "SORT_CELLS" | "SET_DECIMAL" | "PASTE" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT", C_1 extends Extract<UpdateCellCommand, {
12419
+ <T_1 extends "UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "SORT_CELLS" | "SET_DECIMAL" | "PASTE" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING", C_1 extends Extract<UpdateCellCommand, {
12299
12420
  type: T_1;
12300
12421
  }> | Extract<UpdateCellPositionCommand, {
12301
12422
  type: T_1;
@@ -12525,6 +12646,10 @@ declare const registries: {
12525
12646
  type: T_1;
12526
12647
  }> | Extract<PaintFormat, {
12527
12648
  type: T_1;
12649
+ }> | Extract<PivotStartPresenceTracking, {
12650
+ type: T_1;
12651
+ }> | Extract<PivotStopPresenceTracking, {
12652
+ type: T_1;
12528
12653
  }>>(type: T_1, r: Omit<C_1, "type">): DispatchResult;
12529
12654
  }): AbstractCellClipboardHandler<any, any>;
12530
12655
  }>;
@@ -12645,6 +12770,7 @@ declare const components: {
12645
12770
  PivotDimensionOrder: typeof PivotDimensionOrder;
12646
12771
  PivotDimension: typeof PivotDimension;
12647
12772
  PivotLayoutConfigurator: typeof PivotLayoutConfigurator;
12773
+ PivotHTMLRenderer: typeof PivotHTMLRenderer;
12648
12774
  PivotDeferUpdate: typeof PivotDeferUpdate;
12649
12775
  PivotTitleSection: typeof PivotTitleSection;
12650
12776
  CogWheelMenu: typeof CogWheelMenu;
@@ -13183,7 +13309,7 @@ declare const chartHelpers: {
13183
13309
  useLeftAxis: boolean;
13184
13310
  useRightAxis: boolean;
13185
13311
  };
13186
- formatChartDatasetValue(axisFormats: ChartAxisFormats, locale: Locale): (value: any, axisId: string | undefined) => any;
13312
+ formatChartDatasetValue(axisFormats: ChartAxisFormats, locale: Locale): (value: any, axisId: string) => any;
13187
13313
  formatTickValue(localeFormat: LocaleFormat): (value: any) => any;
13188
13314
  getPieColors(colors: ColorGenerator, dataSetsValues: DatasetValues[]): Color[];
13189
13315
  isTrendLineAxis(axisID: string): boolean;
@@ -13214,4 +13340,4 @@ declare const chartHelpers: {
13214
13340
  WaterfallChart: typeof WaterfallChart;
13215
13341
  };
13216
13342
 
13217
- export { AST, ASTFuncall, AboveAverageRule, AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, ActivateNextSheetCommand, ActivatePreviousSheetCommand, ActivateSheetCommand, AddColumnsRowsCommand, AddConditionalFormatCommand, AddDataValidationCommand, AddFunctionDescription, AddMergeCommand, AddPivotCommand, Aggregator, Alias, Align, AlphanumericIncrementModifier, AnchorZone, ApplyRangeChange, ApplyRangeChangeResult, Arg, ArgDefinition, ArgType, AutoFillCellCommand, AutofillAutoCommand, AutofillCellData, AutofillCommand, AutofillData, AutofillModifier, AutofillModifierImplementation, AutofillResult, AutofillSelectCommand, AutofillTableCommand, AutoresizeColumnsCommand, AutoresizeRowsCommand, AxesDesign, AxisDesign, AxisType, BeginsWithRule, BooleanCell, Border$1 as Border, BorderData, BorderDescr, BorderDescription, BorderPosition, BorderStyle, Box, BoxTextContent, CHART_TYPES, CSSProperties, CancelledReason, Cell, CellErrorType, CellIsRule, CellPosition, CellValue, CellValueType, ChangeType, ChartAxisFormats, ChartCreationContext, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartRuntimeGenerationArgs, ChartType, ChartWithDataSetDefinition, CleanClipBoardHighlightCommand, ClearCellCommand, ClearCellsCommand, ClearFormattingCommand, Client, ClientId, ClientJoinedMessage, ClientLeftMessage, ClientMovedMessage, ClientPosition, ClipboardCell, ClipboardCellData, ClipboardData, ClipboardFigureData, ClipboardMIMEType, ClipboardOperation, ClipboardOptions, ClipboardPasteOptions, ClipboardPasteTarget, Cloneable, CollaborationMessage, CollaborativeEvent, CollaborativeEventReceived, CollaborativeEventTypes, Color, ColorScaleMidPointThreshold, ColorScaleRule, ColorScaleThreshold, ColorSheetCommand, Command, CommandDispatcher, CommandHandler, CommandResult, CommandTypes, CommonPivotCoreDefinition, CompiledFormula, ComposerFocusType, ComputeFunction, ComputedTableStyle, ConditionalFormat, ConditionalFormatInternal, ConditionalFormatRule, ConditionalFormatRuleInternal, ConditionalFormattingOperatorValues, ConsecutiveIndexes, ContainsTextRule, CopyCommand, CopyModifier, CopyPasteCellsAboveCommand, CopyPasteCellsOnLeftCommand, CoreCommand, CoreCommandDispatcher, CoreCommandTypes, CoreGetters, CorePlugin, CoreTable, CoreTableType, CoreViewCommand, CoreViewCommandTypes, CreateChartCommand, CreateFigureCommand, CreateImageOverCommand, CreateRevisionOptions, CreateSheetCommand, CreateTableCommand, CreateTableStyleCommand, Currency, CustomFormulaCriterion, CustomizedDataSet, CutCommand, DEFAULT_LOCALE, DEFAULT_LOCALES, DIRECTION, DOMCoordinates, DOMDimension, DataBarFill, DataBarRule, DataBarRuleInternal, DataSet, DataValidationCriterion, DataValidationCriterionType, DataValidationDateCriterion, DataValidationRule, DataValidationRuleData, DatasetDesign, DatasetValues, DateCriterionValue, DateIncrementModifier, DateIsAfterCriterion, DateIsBeforeCriterion, DateIsBetweenCriterion, DateIsCriterion, DateIsNotBetweenCriterion, DateIsOnOrAfterCriterion, DateIsOnOrBeforeCriterion, DateIsValidCriterion, DebouncedFunction, DeleteCellCommand, DeleteContentCommand, DeleteFigureCommand, DeleteSheetCommand, Dependencies, Dimension, DimensionTree, DimensionTreeNode, Direction$1 as Direction, DispatchResult, DuplicatePivotCommand, DuplicatePivotInNewSheetCommand, DuplicateSheetCommand, DynamicTable, EdgeScrollInfo, EditTextOptions, EditionMode, EmptyCell, EndsWithRule, EnrichedToken, EnsureRange, ErrorCell, EvalContext, EvaluateCellsCommand, EvaluateChartsCommand, EvaluatedCell, EvaluationError, ExcelChartDataset, ExcelChartDefinition, ExcelChartType, ExcelFigureSize, ExcelFilterData, ExcelHeaderData, ExcelSheetData, ExcelTableData, ExcelWorkbookData, ExpressionRule, Figure, FigureData, FigureSize, Filter, FilterId, FoldAllHeaderGroupsCommand, FoldHeaderGroupCommand, FoldHeaderGroupsInZoneCommand, Format, FormattedValue, FormulaCell, FormulaModifier, FormulaToExecute, FreezeColumnsCommand, FreezeRowsCommand, FunctionDescription, FunctionRegistry, FunctionResultNumber, FunctionResultObject, GeneratorCell, GenericDefinition, GetSymbolValue, Getters, Granularity, GridClickModifiers, GridRenderingContext, GroupHeadersCommand, HSLA, HeaderData, HeaderDimensions, HeaderGroup, HeaderIndex, HeadersDependentCommand, HideColumnsRowsCommand, HideSheetCommand, Highlight$1 as Highlight, HistoryChange, IconSet, IconSetRule, IconThreshold, Image, Immutable, Increment, IncrementModifier, InformationNotification, InitPivotParams, InsertCellCommand, InsertNewPivotCommand, InsertPivotCommand, InsertPivotWithTableCommand, IsBetweenCriterion, IsCheckboxCriterion, IsEqualCriterion, IsGreaterOrEqualToCriterion, IsGreaterThanCriterion, IsLessOrEqualToCriterion, IsLessThanCriterion, IsNotBetweenCriterion, IsNotEqualCriterion, IsValueInListCriterion, IsValueInRangeCriterion, LabelValues, LayerName, Lazy, Link, LiteralCell, LocalCommand, Locale, LocaleCode, LocaleFormat, LookupCaches, Matrix, Maybe, MenuMouseEvent, Merge, Model, MoveColumnsRowsCommand, MoveConditionalFormatCommand, MoveRangeCommand, MoveSheetCommand, MoveViewportDownCommand, MoveViewportToCellCommand, MoveViewportUpCommand, NewLocalStateUpdateEvent, NotContainsTextRule, NotificationType, NumberCell, OSClipboardContent, Offset, OperationSequenceNode, OrderedLayers, PaintFormat, PaneDivision, ParsedOSClipboardContent, PasteCommand, PasteFromOSClipboardCommand, Pivot, PivotColRowDomain, PivotCoreDefinition, PivotCoreDimension, PivotCoreMeasure, PivotDimension$1 as PivotDimension, PivotDomain, PivotEmptyCell, PivotField, PivotFields, PivotHeaderCell, PivotMeasure, PivotMeasureDisplay, PivotMeasureDisplayType, PivotMeasureHeaderCell, PivotNode, PivotRuntimeDefinition, PivotSortedColumn, PivotTableCell, PivotTableColumn, PivotTableData, PivotTableRow, PivotTimeAdapter, PivotTimeAdapterNotNull, PivotValueCell, Pixel, PixelPosition, Position$1 as Position, PositionDependentCommand, PropsOf, RGBA, Range, RangeCompiledFormula, RangeData, RangePart, RangeProvider, RangesDependentCommand, Rect, RedoCommand, Ref, ReferenceDenormalizer, RefreshPivotCommand, Registry, RemoteRevisionMessage, RemoteRevisionReceivedEvent, RemoveColumnsRowsCommand, RemoveConditionalFormatCommand, RemoveDataValidationCommand, RemoveDuplicatesCommand, RemoveMergeCommand, RemovePivotCommand, RemoveTableCommand, RemoveTableStyleCommand, RenamePivotCommand, RenameSheetCommand, RepeatPasteCommand, ReplaceSearchCommand, RequestRedoCommand, RequestUndoCommand, ResizeColumnsRowsCommand, ResizeDirection, ResizeTableCommand, ResizeViewportCommand, Revision, RevisionAcknowledgedEvent, RevisionData, RevisionRedone, RevisionRedoneMessage, RevisionUndone, RevisionUndoneMessage, Row, SPREADSHEET_DIMENSIONS, ScrollDirection$1 as ScrollDirection, SelectFigureCommand, Selection, SelectionStep, SetBorderCommand, SetBorderTargetCommand, SetContextualFormatCommand, SetDecimalCommand, SetDecimalStep, SetFormattingCommand, SetGridLinesVisibilityCommand, SetViewportOffsetCommand, SetZoneBordersCommand, Sheet, SheetDOMScrollInfo, SheetData, SheetDependentCommand, SheetScrollInfo, ShowFormulaCommand, ShowSheetCommand, SingleColorRule, SingleColorRules, SnapshotEvent, SortCommand, SortDirection, SortOptions, SplitPivotFormulaCommand, SplitTextIntoColumnsCommand, Spreadsheet, SpreadsheetChildEnv, SpreadsheetPivotCoreDefinition, SpreadsheetPivotTable, StartChangeHighlightCommand, StartCommand, StaticTable, StoreConstructor, StoreParams, Style, SumSelectionCommand, Table, TableBorder, TableConfig, TableData, TableElementStyle, TableId, TableStyle, TableStyleData, TableStyleTemplateName, TargetDependentCommand, TechnicalName, TextCell, TextContainsCriterion, TextIsCriterion, TextIsEmailCriterion, TextIsLinkCriterion, TextNotContainsCriterion, TextRule, ThresholdType, TimePeriodRule, TitleDesign, Token, Tooltip, Top10Rule, Transformation, TransformationFactory, TransportService, TrendConfiguration, TrendType, TrimWhitespaceCommand, UID, UIPlugin, UnGroupHeadersCommand, UnboundedZone, UndoCommand, UnexpectedRevisionIdEvent, UnfoldAllHeaderGroupsCommand, UnfoldHeaderGroupCommand, UnfoldHeaderGroupsInZoneCommand, UnfreezeColumnsCommand, UnfreezeColumnsRowsCommand, UnfreezeRowsCommand, UnhideColumnsRowsCommand, UpdateCellCommand, UpdateCellData, UpdateCellPositionCommand, UpdateChartCommand, UpdateFigureCommand, UpdateFilterCommand, UpdateLocaleCommand, UpdatePivotCommand, UpdateTableCommand, Validation, VerticalAlign, Viewport, WorkbookData, WorkbookHistory, Wrapping, Zone, ZoneDependentCommand, ZoneDimension, __info__, addFunction, addRenderingLayer, astToFormula, borderStyles, canExecuteInReadonly, chartHelpers, compile, compileTokens, components, constants, containsBlanksRule, containsErrorsRule, convertAstNodes, coreTypes, findCellInNewZone, functionCache, helpers, hooks, invalidateBordersCommands, invalidateCFEvaluationCommands, invalidateChartEvaluationCommands, invalidateDependenciesCommands, invalidateEvaluationCommands, isCoreCommand, isHeadersDependant, isMatrix, isPositionDependent, isRangeDependant, isSheetDependent, isTargetDependent, isZoneDependent, iterateAstNodes, links, load, notContainsBlanksRule, notContainsErrorsRule, parse, parseTokens, readonlyAllowedCommands, registries, setDefaultSheetViewSize, setTranslationMethod, stores, tokenColors, tokenize };
13343
+ export { AST, ASTFuncall, AboveAverageRule, AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, ActivateNextSheetCommand, ActivatePreviousSheetCommand, ActivateSheetCommand, AddColumnsRowsCommand, AddConditionalFormatCommand, AddDataValidationCommand, AddFunctionDescription, AddMergeCommand, AddPivotCommand, Aggregator, Alias, Align, AlphanumericIncrementModifier, AnchorZone, ApplyRangeChange, ApplyRangeChangeResult, Arg, ArgDefinition, ArgType, AutoFillCellCommand, AutofillAutoCommand, AutofillCellData, AutofillCommand, AutofillData, AutofillModifier, AutofillModifierImplementation, AutofillResult, AutofillSelectCommand, AutofillTableCommand, AutoresizeColumnsCommand, AutoresizeRowsCommand, AxesDesign, AxisDesign, AxisType, BeginsWithRule, BooleanCell, Border$1 as Border, BorderData, BorderDescr, BorderDescription, BorderPosition, BorderStyle, Box, BoxTextContent, CHART_TYPES, CSSProperties, CancelledReason, Cell, CellErrorType, CellIsRule, CellPosition, CellValue, CellValueType, ChangeType, ChartAxisFormats, ChartCreationContext, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartRuntimeGenerationArgs, ChartType, ChartWithDataSetDefinition, CleanClipBoardHighlightCommand, ClearCellCommand, ClearCellsCommand, ClearFormattingCommand, Client, ClientId, ClientJoinedMessage, ClientLeftMessage, ClientMovedMessage, ClientPosition, ClipboardCell, ClipboardCellData, ClipboardData, ClipboardFigureData, ClipboardMIMEType, ClipboardOperation, ClipboardOptions, ClipboardPasteOptions, ClipboardPasteTarget, Cloneable, CollaborationMessage, CollaborativeEvent, CollaborativeEventReceived, CollaborativeEventTypes, Color, ColorScaleMidPointThreshold, ColorScaleRule, ColorScaleThreshold, ColorSheetCommand, Command, CommandDispatcher, CommandHandler, CommandResult, CommandTypes, CommonPivotCoreDefinition, CompiledFormula, ComposerFocusType, ComputeFunction, ComputedTableStyle, ConditionalFormat, ConditionalFormatInternal, ConditionalFormatRule, ConditionalFormatRuleInternal, ConditionalFormattingOperatorValues, ConsecutiveIndexes, ContainsTextRule, CopyCommand, CopyModifier, CopyPasteCellsAboveCommand, CopyPasteCellsOnLeftCommand, CoreCommand, CoreCommandDispatcher, CoreCommandTypes, CoreGetters, CorePlugin, CoreTable, CoreTableType, CoreViewCommand, CoreViewCommandTypes, CreateChartCommand, CreateFigureCommand, CreateImageOverCommand, CreateRevisionOptions, CreateSheetCommand, CreateTableCommand, CreateTableStyleCommand, Currency, CustomFormulaCriterion, CustomizedDataSet, CutCommand, DEFAULT_LOCALE, DEFAULT_LOCALES, DIRECTION, DOMCoordinates, DOMDimension, DataBarFill, DataBarRule, DataBarRuleInternal, DataSet, DataValidationCriterion, DataValidationCriterionType, DataValidationDateCriterion, DataValidationRule, DataValidationRuleData, DatasetDesign, DatasetValues, DateCriterionValue, DateIncrementModifier, DateIsAfterCriterion, DateIsBeforeCriterion, DateIsBetweenCriterion, DateIsCriterion, DateIsNotBetweenCriterion, DateIsOnOrAfterCriterion, DateIsOnOrBeforeCriterion, DateIsValidCriterion, DebouncedFunction, DeleteCellCommand, DeleteContentCommand, DeleteFigureCommand, DeleteSheetCommand, Dependencies, Dimension, DimensionTree, DimensionTreeNode, Direction$1 as Direction, DispatchResult, DuplicatePivotCommand, DuplicatePivotInNewSheetCommand, DuplicateSheetCommand, DynamicTable, EdgeScrollInfo, EditTextOptions, EditionMode, EmptyCell, EndsWithRule, EnrichedToken, EnsureRange, ErrorCell, EvalContext, EvaluateCellsCommand, EvaluateChartsCommand, EvaluatedCell, EvaluationError, ExcelChartDataset, ExcelChartDefinition, ExcelChartType, ExcelFigureSize, ExcelFilterData, ExcelHeaderData, ExcelSheetData, ExcelTableData, ExcelWorkbookData, ExpressionRule, Figure, FigureData, FigureSize, Filter, FilterId, FoldAllHeaderGroupsCommand, FoldHeaderGroupCommand, FoldHeaderGroupsInZoneCommand, Format, FormattedValue, FormulaCell, FormulaModifier, FormulaToExecute, FreezeColumnsCommand, FreezeRowsCommand, FunctionDescription, FunctionRegistry, FunctionResultNumber, FunctionResultObject, GeneratorCell, GenericDefinition, GetSymbolValue, Getters, Granularity, GridClickModifiers, GridRenderingContext, GroupHeadersCommand, HSLA, HeaderData, HeaderDimensions, HeaderGroup, HeaderIndex, HeadersDependentCommand, HideColumnsRowsCommand, HideSheetCommand, Highlight$1 as Highlight, HistoryChange, IconSet, IconSetRule, IconThreshold, Image, Immutable, Increment, IncrementModifier, InformationNotification, InitPivotParams, InsertCellCommand, InsertNewPivotCommand, InsertPivotCommand, InsertPivotWithTableCommand, IsBetweenCriterion, IsCheckboxCriterion, IsEqualCriterion, IsGreaterOrEqualToCriterion, IsGreaterThanCriterion, IsLessOrEqualToCriterion, IsLessThanCriterion, IsNotBetweenCriterion, IsNotEqualCriterion, IsValueInListCriterion, IsValueInRangeCriterion, LabelValues, LayerName, Lazy, Link, LiteralCell, LocalCommand, Locale, LocaleCode, LocaleFormat, LookupCaches, Matrix, Maybe, MenuMouseEvent, Merge, Model, MoveColumnsRowsCommand, MoveConditionalFormatCommand, MoveRangeCommand, MoveSheetCommand, MoveViewportDownCommand, MoveViewportToCellCommand, MoveViewportUpCommand, NewLocalStateUpdateEvent, NotContainsTextRule, NotificationType, NumberCell, OSClipboardContent, Offset, OperationSequenceNode, OrderedLayers, PaintFormat, PaneDivision, ParsedOSClipboardContent, PasteCommand, PasteFromOSClipboardCommand, Pivot, PivotColRowDomain, PivotCoreDefinition, PivotCoreDimension, PivotCoreMeasure, PivotDimension$1 as PivotDimension, PivotDomain, PivotEmptyCell, PivotField, PivotFields, PivotHeaderCell, PivotMeasure, PivotMeasureDisplay, PivotMeasureDisplayType, PivotMeasureHeaderCell, PivotNode, PivotRuntimeDefinition, PivotSortedColumn, PivotStartPresenceTracking, PivotStopPresenceTracking, PivotTableCell, PivotTableColumn, PivotTableData, PivotTableRow, PivotTimeAdapter, PivotTimeAdapterNotNull, PivotValueCell, Pixel, PixelPosition, Position$1 as Position, PositionDependentCommand, PropsOf, RGBA, Range, RangeCompiledFormula, RangeData, RangePart, RangeProvider, RangesDependentCommand, Rect, RedoCommand, Ref, ReferenceDenormalizer, RefreshPivotCommand, Registry, RemoteRevisionMessage, RemoteRevisionReceivedEvent, RemoveColumnsRowsCommand, RemoveConditionalFormatCommand, RemoveDataValidationCommand, RemoveDuplicatesCommand, RemoveMergeCommand, RemovePivotCommand, RemoveTableCommand, RemoveTableStyleCommand, RenamePivotCommand, RenameSheetCommand, RepeatPasteCommand, ReplaceSearchCommand, RequestRedoCommand, RequestUndoCommand, ResizeColumnsRowsCommand, ResizeDirection, ResizeTableCommand, ResizeViewportCommand, Revision, RevisionAcknowledgedEvent, RevisionData, RevisionRedone, RevisionRedoneMessage, RevisionUndone, RevisionUndoneMessage, Row, SPREADSHEET_DIMENSIONS, ScrollDirection$1 as ScrollDirection, SelectFigureCommand, Selection, SelectionStep, SetBorderCommand, SetBorderTargetCommand, SetContextualFormatCommand, SetDecimalCommand, SetDecimalStep, SetFormattingCommand, SetGridLinesVisibilityCommand, SetViewportOffsetCommand, SetZoneBordersCommand, Sheet, SheetDOMScrollInfo, SheetData, SheetDependentCommand, SheetScrollInfo, ShowFormulaCommand, ShowSheetCommand, SingleColorRule, SingleColorRules, SnapshotEvent, SortCommand, SortDirection, SortOptions, SplitPivotFormulaCommand, SplitTextIntoColumnsCommand, Spreadsheet, SpreadsheetChildEnv, SpreadsheetPivotCoreDefinition, SpreadsheetPivotTable, StartChangeHighlightCommand, StartCommand, StaticTable, StoreConstructor, StoreParams, Style, SumSelectionCommand, Table, TableBorder, TableConfig, TableData$1 as TableData, TableElementStyle, TableId, TableStyle, TableStyleData, TableStyleTemplateName, TargetDependentCommand, TechnicalName, TextCell, TextContainsCriterion, TextIsCriterion, TextIsEmailCriterion, TextIsLinkCriterion, TextNotContainsCriterion, TextRule, ThresholdType, TimePeriodRule, TitleDesign, Token, Tooltip, Top10Rule, Transformation, TransformationFactory, TransportService, TrendConfiguration, TrendType, TrimWhitespaceCommand, UID, UIPlugin, UnGroupHeadersCommand, UnboundedZone, UndoCommand, UnexpectedRevisionIdEvent, UnfoldAllHeaderGroupsCommand, UnfoldHeaderGroupCommand, UnfoldHeaderGroupsInZoneCommand, UnfreezeColumnsCommand, UnfreezeColumnsRowsCommand, UnfreezeRowsCommand, UnhideColumnsRowsCommand, UpdateCellCommand, UpdateCellData, UpdateCellPositionCommand, UpdateChartCommand, UpdateFigureCommand, UpdateFilterCommand, UpdateLocaleCommand, UpdatePivotCommand, UpdateTableCommand, Validation, VerticalAlign, Viewport, WorkbookData, WorkbookHistory, Wrapping, Zone, ZoneDependentCommand, ZoneDimension, __info__, addFunction, addRenderingLayer, astToFormula, borderStyles, canExecuteInReadonly, chartHelpers, compile, compileTokens, components, constants, containsBlanksRule, containsErrorsRule, convertAstNodes, coreTypes, findCellInNewZone, functionCache, helpers, hooks, invalidateBordersCommands, invalidateCFEvaluationCommands, invalidateChartEvaluationCommands, invalidateDependenciesCommands, invalidateEvaluationCommands, isCoreCommand, isHeadersDependant, isMatrix, isPositionDependent, isRangeDependant, isSheetDependent, isTargetDependent, isZoneDependent, iterateAstNodes, links, load, notContainsBlanksRule, notContainsErrorsRule, parse, parseTokens, readonlyAllowedCommands, registries, setDefaultSheetViewSize, setTranslationMethod, stores, tokenColors, tokenize };