@odoo/o-spreadsheet 18.5.0-alpha.6 → 18.5.0-alpha.7

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.
@@ -31,6 +31,17 @@ interface ExcelFigureSize {
31
31
  cy: number;
32
32
  }
33
33
  type ResizeDirection = -1 | 0 | 1;
34
+ interface Carousel {
35
+ items: CarouselItem[];
36
+ }
37
+ type CarouselItem = {
38
+ type: "chart";
39
+ chartId: UID;
40
+ title?: string;
41
+ } | {
42
+ type: "carouselDataView";
43
+ title?: string;
44
+ };
34
45
 
35
46
  type ImageSVG = {
36
47
  name: string;
@@ -2720,13 +2731,13 @@ interface ZoneDependentCommand {
2720
2731
  zone: Zone;
2721
2732
  }
2722
2733
  declare function isZoneDependent(cmd: CoreCommand): cmd is Extract<CoreCommand, ZoneDependentCommand>;
2723
- declare const invalidateEvaluationCommands: Set<"ACTIVATE_SHEET" | "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" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "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" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "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" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING" | "TOGGLE_CHECKBOX">;
2724
- declare const invalidateChartEvaluationCommands: Set<"ACTIVATE_SHEET" | "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" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "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" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "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" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING" | "TOGGLE_CHECKBOX">;
2725
- declare const invalidateDependenciesCommands: Set<"ACTIVATE_SHEET" | "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" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "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" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "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" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING" | "TOGGLE_CHECKBOX">;
2726
- declare const invalidateCFEvaluationCommands: Set<"ACTIVATE_SHEET" | "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" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "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" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "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" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING" | "TOGGLE_CHECKBOX">;
2727
- declare const invalidateBordersCommands: Set<"ACTIVATE_SHEET" | "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" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "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" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "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" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING" | "TOGGLE_CHECKBOX">;
2728
- declare const readonlyAllowedCommands: Set<"ACTIVATE_SHEET" | "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" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "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" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "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" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING" | "TOGGLE_CHECKBOX">;
2729
- 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">;
2734
+ declare const invalidateEvaluationCommands: Set<"ACTIVATE_SHEET" | "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" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_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" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "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" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "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" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING" | "TOGGLE_CHECKBOX" | "ADD_NEW_CHART_TO_CAROUSEL" | "ADD_FIGURE_CHART_TO_CAROUSEL" | "UPDATE_CAROUSEL_ACTIVE_ITEM">;
2735
+ declare const invalidateChartEvaluationCommands: Set<"ACTIVATE_SHEET" | "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" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_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" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "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" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "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" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING" | "TOGGLE_CHECKBOX" | "ADD_NEW_CHART_TO_CAROUSEL" | "ADD_FIGURE_CHART_TO_CAROUSEL" | "UPDATE_CAROUSEL_ACTIVE_ITEM">;
2736
+ declare const invalidateDependenciesCommands: Set<"ACTIVATE_SHEET" | "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" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_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" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "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" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "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" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING" | "TOGGLE_CHECKBOX" | "ADD_NEW_CHART_TO_CAROUSEL" | "ADD_FIGURE_CHART_TO_CAROUSEL" | "UPDATE_CAROUSEL_ACTIVE_ITEM">;
2737
+ declare const invalidateCFEvaluationCommands: Set<"ACTIVATE_SHEET" | "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" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_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" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "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" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "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" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING" | "TOGGLE_CHECKBOX" | "ADD_NEW_CHART_TO_CAROUSEL" | "ADD_FIGURE_CHART_TO_CAROUSEL" | "UPDATE_CAROUSEL_ACTIVE_ITEM">;
2738
+ declare const invalidateBordersCommands: Set<"ACTIVATE_SHEET" | "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" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_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" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "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" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "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" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING" | "TOGGLE_CHECKBOX" | "ADD_NEW_CHART_TO_CAROUSEL" | "ADD_FIGURE_CHART_TO_CAROUSEL" | "UPDATE_CAROUSEL_ACTIVE_ITEM">;
2739
+ declare const readonlyAllowedCommands: Set<"ACTIVATE_SHEET" | "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" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_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" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "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" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "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" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING" | "TOGGLE_CHECKBOX" | "ADD_NEW_CHART_TO_CAROUSEL" | "ADD_FIGURE_CHART_TO_CAROUSEL" | "UPDATE_CAROUSEL_ACTIVE_ITEM">;
2740
+ 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" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_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">;
2730
2741
  declare function isCoreCommand(cmd: Command): cmd is CoreCommand;
2731
2742
  declare function canExecuteInReadonly(cmd: Command): boolean;
2732
2743
  interface UpdateCellCommand extends PositionDependentCommand {
@@ -2888,15 +2899,50 @@ interface BaseFigureCommand extends PositionDependentCommand {
2888
2899
  offset: PixelPosition;
2889
2900
  size: FigureSize;
2890
2901
  }
2891
- interface CreateChartCommand extends BaseFigureCommand {
2902
+ interface CreateChartCommand {
2892
2903
  type: "CREATE_CHART";
2904
+ chartId: UID;
2893
2905
  definition: ChartDefinition;
2906
+ sheetId: UID;
2907
+ figureId: UID;
2908
+ offset?: PixelPosition;
2909
+ size?: FigureSize;
2910
+ col?: number;
2911
+ row?: number;
2894
2912
  }
2895
2913
  interface UpdateChartCommand extends SheetDependentCommand {
2896
2914
  type: "UPDATE_CHART";
2897
2915
  figureId: UID;
2916
+ chartId: UID;
2898
2917
  definition: ChartDefinition;
2899
2918
  }
2919
+ interface DeleteChartCommand extends SheetDependentCommand {
2920
+ type: "DELETE_CHART";
2921
+ chartId: UID;
2922
+ }
2923
+ interface CreateCarouselCommand extends BaseFigureCommand {
2924
+ type: "CREATE_CAROUSEL";
2925
+ definition: Carousel;
2926
+ }
2927
+ interface UpdateCarouselCommand extends SheetDependentCommand {
2928
+ type: "UPDATE_CAROUSEL";
2929
+ figureId: UID;
2930
+ definition: Carousel;
2931
+ }
2932
+ interface AddNewChartToCarouselCommand extends SheetDependentCommand {
2933
+ type: "ADD_NEW_CHART_TO_CAROUSEL";
2934
+ figureId: UID;
2935
+ }
2936
+ interface AddFigureChartToCarouselCommand extends SheetDependentCommand {
2937
+ type: "ADD_FIGURE_CHART_TO_CAROUSEL";
2938
+ carouselFigureId: UID;
2939
+ chartFigureId: UID;
2940
+ }
2941
+ interface UpdateCarouselActiveItemCommand extends SheetDependentCommand {
2942
+ type: "UPDATE_CAROUSEL_ACTIVE_ITEM";
2943
+ figureId: UID;
2944
+ item: CarouselItem;
2945
+ }
2900
2946
  interface CreateImageOverCommand extends BaseFigureCommand {
2901
2947
  type: "CREATE_IMAGE";
2902
2948
  definition: Image$1;
@@ -3308,11 +3354,11 @@ UpdateCellCommand | UpdateCellPositionCommand | ClearCellCommand | ClearCellsCom
3308
3354
  /** CONDITIONAL FORMAT */
3309
3355
  | AddConditionalFormatCommand | RemoveConditionalFormatCommand | MoveConditionalFormatCommand
3310
3356
  /** FIGURES */
3311
- | CreateFigureCommand | DeleteFigureCommand | UpdateFigureCommand
3357
+ | CreateFigureCommand | DeleteFigureCommand | UpdateFigureCommand | CreateCarouselCommand | UpdateCarouselCommand
3312
3358
  /** FORMATTING */
3313
3359
  | SetFormattingCommand | ClearFormattingCommand | SetZoneBordersCommand | SetBorderCommand | SetBorderTargetCommand
3314
3360
  /** CHART */
3315
- | CreateChartCommand | UpdateChartCommand
3361
+ | CreateChartCommand | UpdateChartCommand | DeleteChartCommand
3316
3362
  /** IMAGE */
3317
3363
  | CreateImageOverCommand
3318
3364
  /** FILTERS */
@@ -3325,7 +3371,7 @@ UpdateCellCommand | UpdateCellPositionCommand | ClearCellCommand | ClearCellsCom
3325
3371
  | UpdateLocaleCommand
3326
3372
  /** PIVOT */
3327
3373
  | AddPivotCommand | UpdatePivotCommand | InsertPivotCommand | RenamePivotCommand | RemovePivotCommand | DuplicatePivotCommand;
3328
- 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 | DeleteUnfilteredContentCommand | PivotStartPresenceTracking | PivotStopPresenceTracking | ToggleCheckboxCommand;
3374
+ 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 | DeleteUnfilteredContentCommand | PivotStartPresenceTracking | PivotStopPresenceTracking | ToggleCheckboxCommand | AddNewChartToCarouselCommand | AddFigureChartToCarouselCommand | UpdateCarouselActiveItemCommand;
3329
3375
  type Command = CoreCommand | LocalCommand;
3330
3376
  /**
3331
3377
  * Holds the result of a command dispatch.
@@ -3471,7 +3517,8 @@ declare const enum CommandResult {
3471
3517
  InvalidDefinition = "InvalidDefinition",
3472
3518
  InvalidColor = "InvalidColor",
3473
3519
  InvalidPivotDataSet = "InvalidPivotDataSet",
3474
- InvalidPivotCustomField = "InvalidPivotCustomField"
3520
+ InvalidPivotCustomField = "InvalidPivotCustomField",
3521
+ MissingFigureArguments = "MissingFigureArguments"
3475
3522
  }
3476
3523
  interface CommandHandler<T> {
3477
3524
  allowDispatch(command: T): CommandResult | CommandResult[];
@@ -4575,6 +4622,21 @@ declare class BordersPlugin extends CorePlugin<BordersPluginState> implements Bo
4575
4622
  exportForExcel(data: ExcelWorkbookData): void;
4576
4623
  }
4577
4624
 
4625
+ interface CarouselState {
4626
+ readonly carousels: Record<UID, Record<UID, Carousel | undefined> | undefined>;
4627
+ }
4628
+ declare class CarouselPlugin extends CorePlugin<CarouselState> implements CarouselState {
4629
+ static getters: readonly ["getCarousel", "doesCarouselExist"];
4630
+ readonly carousels: Record<UID, Record<UID, Carousel | undefined> | undefined>;
4631
+ allowDispatch(cmd: CoreCommand): CommandResult.Success | CommandResult.InvalidFigureId | CommandResult.DuplicatedFigureId;
4632
+ handle(cmd: CoreCommand): void;
4633
+ doesCarouselExist(figureId: UID): boolean;
4634
+ getCarousel(figureId: UID): Carousel;
4635
+ private removeDeletedCharts;
4636
+ import(data: WorkbookData): void;
4637
+ export(data: WorkbookData): void;
4638
+ }
4639
+
4578
4640
  interface CoreState$1 {
4579
4641
  cells: Record<UID, Record<UID, Cell | undefined> | undefined>;
4580
4642
  nextId: number;
@@ -4731,28 +4793,28 @@ declare abstract class AbstractChart {
4731
4793
  };
4732
4794
  }
4733
4795
 
4734
- /**
4735
- * Chart plugin
4736
- *
4737
- * This plugin manages charts
4738
- * */
4796
+ interface FigureChart {
4797
+ figureId: UID;
4798
+ chart: AbstractChart;
4799
+ }
4739
4800
  interface ChartState {
4740
- readonly charts: Record<UID, AbstractChart | undefined>;
4801
+ readonly charts: Record<UID, FigureChart | undefined>;
4741
4802
  }
4742
4803
  declare class ChartPlugin extends CorePlugin<ChartState> implements ChartState {
4743
- static getters: readonly ["isChartDefined", "getChartDefinition", "getChartType", "getChartIds", "getChart", "getContextCreationChart"];
4744
- readonly charts: Record<UID, AbstractChart | undefined>;
4804
+ static getters: readonly ["isChartDefined", "getChartDefinition", "getChartType", "getChartIds", "getChart", "getFigureIdFromChartId", "getContextCreationChart"];
4805
+ readonly charts: Record<UID, FigureChart | undefined>;
4745
4806
  private createChart;
4746
4807
  private validateChartDefinition;
4747
4808
  adaptRanges(applyChange: ApplyRangeChange): void;
4748
4809
  allowDispatch(cmd: Command): CommandResult | CommandResult[];
4749
4810
  handle(cmd: CoreCommand): void;
4750
- getContextCreationChart(figureId: UID): ChartCreationContext | undefined;
4751
- getChart(figureId: UID): AbstractChart | undefined;
4752
- getChartType(figureId: UID): ChartType;
4753
- isChartDefined(figureId: UID): boolean;
4811
+ getContextCreationChart(chartId: UID): ChartCreationContext | undefined;
4812
+ getChart(chartId: UID): AbstractChart | undefined;
4813
+ getFigureIdFromChartId(chartId: UID): UID;
4814
+ getChartType(chartId: UID): ChartType;
4815
+ isChartDefined(chartId: UID): boolean;
4754
4816
  getChartIds(sheetId: UID): string[];
4755
- getChartDefinition(figureId: UID): ChartDefinition;
4817
+ getChartDefinition(chartId: UID): ChartDefinition;
4756
4818
  import(data: WorkbookData): void;
4757
4819
  export(data: WorkbookData): void;
4758
4820
  /**
@@ -4767,6 +4829,8 @@ declare class ChartPlugin extends CorePlugin<ChartState> implements ChartState {
4767
4829
  private checkChartDuplicate;
4768
4830
  private checkChartExists;
4769
4831
  private checkChartChanged;
4832
+ /** If the command would create a new figure, there need to be a position & offset defined in the command */
4833
+ private checkFigureArguments;
4770
4834
  }
4771
4835
 
4772
4836
  interface ConditionalFormatState {
@@ -5524,7 +5588,7 @@ declare class EvaluationChartPlugin extends CoreViewPlugin<EvaluationChartState>
5524
5588
  charts: Record<UID, ChartRuntime | undefined>;
5525
5589
  private createRuntimeChart;
5526
5590
  handle(cmd: CoreViewCommand): void;
5527
- getChartRuntime(figureId: UID): ChartRuntime;
5591
+ getChartRuntime(chartId: UID): ChartRuntime;
5528
5592
  /**
5529
5593
  * Get the background and textColor of a chart based on the color of the first cell of the main range of the chart.
5530
5594
  */
@@ -6331,6 +6395,19 @@ declare class TableComputedStylePlugin extends UIPlugin {
6331
6395
  private getTableMapping;
6332
6396
  }
6333
6397
 
6398
+ declare class CarouselUIPlugin extends UIPlugin {
6399
+ static getters: readonly ["getSelectedCarouselItem", "getChartFromFigureId", "getChartIdFromFigureId"];
6400
+ private uuidGenerator;
6401
+ carouselStates: Record<UID, CarouselItem | undefined>;
6402
+ handle(cmd: Command): void;
6403
+ getSelectedCarouselItem(figureId: UID): CarouselItem | undefined;
6404
+ getChartFromFigureId(figureId: UID): AbstractChart | undefined;
6405
+ getChartIdFromFigureId(figureId: UID): UID | undefined;
6406
+ private fixWrongCarouselState;
6407
+ private addNewChartToCarousel;
6408
+ private addFigureChartToCarousel;
6409
+ }
6410
+
6334
6411
  declare class HeaderPositionsUIPlugin extends UIPlugin {
6335
6412
  static getters: readonly ["getColDimensions", "getRowDimensions", "getColRowOffset"];
6336
6413
  private headerPositions;
@@ -6411,11 +6488,11 @@ type PluginGetters<Plugin extends {
6411
6488
  getters: readonly string[];
6412
6489
  }> = Pick<InstanceType<Plugin>, GetterNames<Plugin>>;
6413
6490
  type RangeAdapterGetters = Pick<RangeAdapter, GetterNames<typeof RangeAdapter>>;
6414
- type CoreGetters = PluginGetters<typeof SheetPlugin> & PluginGetters<typeof HeaderSizePlugin> & PluginGetters<typeof HeaderVisibilityPlugin> & PluginGetters<typeof CellPlugin> & PluginGetters<typeof MergePlugin> & PluginGetters<typeof BordersPlugin> & PluginGetters<typeof ChartPlugin> & PluginGetters<typeof ImagePlugin> & PluginGetters<typeof FigurePlugin> & RangeAdapterGetters & PluginGetters<typeof ConditionalFormatPlugin> & PluginGetters<typeof TablePlugin> & PluginGetters<typeof SettingsPlugin> & PluginGetters<typeof HeaderGroupingPlugin> & PluginGetters<typeof DataValidationPlugin> & PluginGetters<typeof PivotCorePlugin>;
6491
+ type CoreGetters = PluginGetters<typeof SheetPlugin> & PluginGetters<typeof HeaderSizePlugin> & PluginGetters<typeof HeaderVisibilityPlugin> & PluginGetters<typeof CellPlugin> & PluginGetters<typeof MergePlugin> & PluginGetters<typeof BordersPlugin> & PluginGetters<typeof ChartPlugin> & PluginGetters<typeof ImagePlugin> & PluginGetters<typeof CarouselPlugin> & PluginGetters<typeof FigurePlugin> & RangeAdapterGetters & PluginGetters<typeof ConditionalFormatPlugin> & PluginGetters<typeof TablePlugin> & PluginGetters<typeof SettingsPlugin> & PluginGetters<typeof HeaderGroupingPlugin> & PluginGetters<typeof DataValidationPlugin> & PluginGetters<typeof PivotCorePlugin>;
6415
6492
  type Getters = {
6416
6493
  isReadonly: () => boolean;
6417
6494
  isDashboard: () => boolean;
6418
- } & 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> & PluginGetters<typeof CheckboxTogglePlugin> & PluginGetters<typeof CellIconPlugin>;
6495
+ } & 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> & PluginGetters<typeof CheckboxTogglePlugin> & PluginGetters<typeof CellIconPlugin> & PluginGetters<typeof CarouselUIPlugin>;
6419
6496
 
6420
6497
  type ArgType = "ANY" | "BOOLEAN" | "NUMBER" | "STRING" | "DATE" | "RANGE" | "RANGE<BOOLEAN>" | "RANGE<NUMBER>" | "RANGE<DATE>" | "RANGE<STRING>" | "RANGE<ANY>" | "META";
6421
6498
  interface ArgDefinition {
@@ -7499,10 +7576,10 @@ declare class ChartLabelRange extends Component<Props$1i, SpreadsheetChildEnv> {
7499
7576
  }
7500
7577
 
7501
7578
  interface Props$1h {
7502
- figureId: UID;
7579
+ chartId: UID;
7503
7580
  definition: ChartWithDataSetDefinition;
7504
- canUpdateChart: (figureId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
7505
- updateChart: (figureId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
7581
+ canUpdateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
7582
+ updateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
7506
7583
  }
7507
7584
  interface ChartPanelState {
7508
7585
  datasetDispatchResult?: DispatchResult;
@@ -7518,7 +7595,7 @@ declare class GenericChartConfigPanel extends Component<Props$1h, SpreadsheetChi
7518
7595
  ChartErrorSection: typeof ChartErrorSection;
7519
7596
  };
7520
7597
  static props: {
7521
- figureId: StringConstructor;
7598
+ chartId: StringConstructor;
7522
7599
  definition: ObjectConstructor;
7523
7600
  updateChart: FunctionConstructor;
7524
7601
  canUpdateChart: FunctionConstructor;
@@ -8069,9 +8146,9 @@ interface AxisDefinition {
8069
8146
  name: string;
8070
8147
  }
8071
8148
  interface Props$19 {
8072
- figureId: UID;
8149
+ chartId: UID;
8073
8150
  definition: ChartWithAxisDefinition;
8074
- updateChart: (figureId: UID, definition: Partial<ChartWithAxisDefinition>) => DispatchResult;
8151
+ updateChart: (chartId: UID, definition: Partial<ChartWithAxisDefinition>) => DispatchResult;
8075
8152
  axesList: AxisDefinition[];
8076
8153
  }
8077
8154
  declare class AxisDesignEditor extends Component<Props$19, SpreadsheetChildEnv> {
@@ -8082,7 +8159,7 @@ declare class AxisDesignEditor extends Component<Props$19, SpreadsheetChildEnv>
8082
8159
  BadgeSelection: typeof BadgeSelection;
8083
8160
  };
8084
8161
  static props: {
8085
- figureId: StringConstructor;
8162
+ chartId: StringConstructor;
8086
8163
  definition: ObjectConstructor;
8087
8164
  updateChart: FunctionConstructor;
8088
8165
  axesList: ArrayConstructor;
@@ -8172,10 +8249,10 @@ declare class RoundColorPicker extends Component<Props$17, SpreadsheetChildEnv>
8172
8249
  }
8173
8250
 
8174
8251
  interface Props$16 {
8175
- figureId: UID;
8252
+ chartId: UID;
8176
8253
  definition: ChartDefinition;
8177
- updateChart: (figureId: UID, definition: Partial<ChartDefinition>) => DispatchResult;
8178
- canUpdateChart: (figureId: UID, definition: Partial<ChartDefinition>) => DispatchResult;
8254
+ updateChart: (chartId: UID, definition: Partial<ChartDefinition>) => DispatchResult;
8255
+ canUpdateChart: (chartId: UID, definition: Partial<ChartDefinition>) => DispatchResult;
8179
8256
  defaultChartTitleFontSize?: number;
8180
8257
  }
8181
8258
  declare class GeneralDesignEditor extends Component<Props$16, SpreadsheetChildEnv> {
@@ -8188,7 +8265,7 @@ declare class GeneralDesignEditor extends Component<Props$16, SpreadsheetChildEn
8188
8265
  RadioSelection: typeof RadioSelection;
8189
8266
  };
8190
8267
  static props: {
8191
- figureId: StringConstructor;
8268
+ chartId: StringConstructor;
8192
8269
  definition: ObjectConstructor;
8193
8270
  updateChart: FunctionConstructor;
8194
8271
  canUpdateChart: FunctionConstructor;
@@ -8214,10 +8291,10 @@ declare class GeneralDesignEditor extends Component<Props$16, SpreadsheetChildEn
8214
8291
  }
8215
8292
 
8216
8293
  interface Props$15 {
8217
- figureId: UID;
8294
+ chartId: UID;
8218
8295
  definition: ChartWithDataSetDefinition;
8219
- updateChart: (figureId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
8220
- canUpdateChart: (figureId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
8296
+ updateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
8297
+ canUpdateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
8221
8298
  }
8222
8299
  declare class ChartLegend extends Component<Props$15, SpreadsheetChildEnv> {
8223
8300
  static template: string;
@@ -8225,7 +8302,7 @@ declare class ChartLegend extends Component<Props$15, SpreadsheetChildEnv> {
8225
8302
  Section: typeof Section;
8226
8303
  };
8227
8304
  static props: {
8228
- figureId: StringConstructor;
8305
+ chartId: StringConstructor;
8229
8306
  definition: ObjectConstructor;
8230
8307
  updateChart: FunctionConstructor;
8231
8308
  canUpdateChart: FunctionConstructor;
@@ -8234,10 +8311,10 @@ declare class ChartLegend extends Component<Props$15, SpreadsheetChildEnv> {
8234
8311
  }
8235
8312
 
8236
8313
  interface Props$14 {
8237
- figureId: UID;
8314
+ chartId: UID;
8238
8315
  definition: ChartWithDataSetDefinition;
8239
- canUpdateChart: (figureID: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
8240
- updateChart: (figureId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
8316
+ canUpdateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
8317
+ updateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
8241
8318
  }
8242
8319
  declare class SeriesDesignEditor extends Component<Props$14, SpreadsheetChildEnv> {
8243
8320
  static template: string;
@@ -8247,7 +8324,7 @@ declare class SeriesDesignEditor extends Component<Props$14, SpreadsheetChildEnv
8247
8324
  RoundColorPicker: typeof RoundColorPicker;
8248
8325
  };
8249
8326
  static props: {
8250
- figureId: StringConstructor;
8327
+ chartId: StringConstructor;
8251
8328
  definition: ObjectConstructor;
8252
8329
  updateChart: FunctionConstructor;
8253
8330
  canUpdateChart: FunctionConstructor;
@@ -8268,10 +8345,10 @@ declare class SeriesDesignEditor extends Component<Props$14, SpreadsheetChildEnv
8268
8345
  }
8269
8346
 
8270
8347
  interface Props$13 {
8271
- figureId: UID;
8348
+ chartId: UID;
8272
8349
  definition: ChartWithDataSetDefinition;
8273
- canUpdateChart: (figureID: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
8274
- updateChart: (figureId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
8350
+ canUpdateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
8351
+ updateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
8275
8352
  }
8276
8353
  declare class SeriesWithAxisDesignEditor extends Component<Props$13, SpreadsheetChildEnv> {
8277
8354
  static template: string;
@@ -8283,7 +8360,7 @@ declare class SeriesWithAxisDesignEditor extends Component<Props$13, Spreadsheet
8283
8360
  RoundColorPicker: typeof RoundColorPicker;
8284
8361
  };
8285
8362
  static props: {
8286
- figureId: StringConstructor;
8363
+ chartId: StringConstructor;
8287
8364
  definition: ObjectConstructor;
8288
8365
  canUpdateChart: FunctionConstructor;
8289
8366
  updateChart: FunctionConstructor;
@@ -8315,10 +8392,10 @@ declare class SeriesWithAxisDesignEditor extends Component<Props$13, Spreadsheet
8315
8392
  }
8316
8393
 
8317
8394
  interface Props$12 {
8318
- figureId: UID;
8395
+ chartId: UID;
8319
8396
  definition: ChartWithDataSetDefinition;
8320
- updateChart: (figureId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
8321
- canUpdateChart: (figureId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
8397
+ updateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
8398
+ canUpdateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
8322
8399
  defaultValue?: boolean;
8323
8400
  }
8324
8401
  declare class ChartShowValues extends Component<Props$12, SpreadsheetChildEnv> {
@@ -8327,7 +8404,7 @@ declare class ChartShowValues extends Component<Props$12, SpreadsheetChildEnv> {
8327
8404
  Checkbox: typeof Checkbox;
8328
8405
  };
8329
8406
  static props: {
8330
- figureId: StringConstructor;
8407
+ chartId: StringConstructor;
8331
8408
  definition: ObjectConstructor;
8332
8409
  updateChart: FunctionConstructor;
8333
8410
  canUpdateChart: FunctionConstructor;
@@ -8339,10 +8416,10 @@ declare class ChartShowValues extends Component<Props$12, SpreadsheetChildEnv> {
8339
8416
  }
8340
8417
 
8341
8418
  interface Props$11 {
8342
- figureId: UID;
8419
+ chartId: UID;
8343
8420
  definition: ChartWithDataSetDefinition;
8344
- canUpdateChart: (figureID: UID, definition: GenericDefinition<ChartWithDataSetDefinition>) => DispatchResult;
8345
- updateChart: (figureId: UID, definition: GenericDefinition<ChartWithDataSetDefinition>) => DispatchResult;
8421
+ canUpdateChart: (chartId: UID, definition: GenericDefinition<ChartWithDataSetDefinition>) => DispatchResult;
8422
+ updateChart: (chartId: UID, definition: GenericDefinition<ChartWithDataSetDefinition>) => DispatchResult;
8346
8423
  }
8347
8424
  declare class ChartWithAxisDesignPanel<P extends Props$11 = Props$11> extends Component<P, SpreadsheetChildEnv> {
8348
8425
  static template: string;
@@ -8356,7 +8433,7 @@ declare class ChartWithAxisDesignPanel<P extends Props$11 = Props$11> extends Co
8356
8433
  ChartShowValues: typeof ChartShowValues;
8357
8434
  };
8358
8435
  static props: {
8359
- figureId: StringConstructor;
8436
+ chartId: StringConstructor;
8360
8437
  definition: ObjectConstructor;
8361
8438
  canUpdateChart: FunctionConstructor;
8362
8439
  updateChart: FunctionConstructor;
@@ -8365,10 +8442,10 @@ declare class ChartWithAxisDesignPanel<P extends Props$11 = Props$11> extends Co
8365
8442
  }
8366
8443
 
8367
8444
  interface Props$10 {
8368
- figureId: UID;
8445
+ chartId: UID;
8369
8446
  definition: GaugeChartDefinition;
8370
- canUpdateChart: (figureId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
8371
- updateChart: (figureId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
8447
+ canUpdateChart: (chartId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
8448
+ updateChart: (chartId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
8372
8449
  }
8373
8450
  declare class GaugeChartConfigPanel extends Component<Props$10, SpreadsheetChildEnv> {
8374
8451
  static template: string;
@@ -8377,7 +8454,7 @@ declare class GaugeChartConfigPanel extends Component<Props$10, SpreadsheetChild
8377
8454
  ChartDataSeries: typeof ChartDataSeries;
8378
8455
  };
8379
8456
  static props: {
8380
- figureId: StringConstructor;
8457
+ chartId: StringConstructor;
8381
8458
  definition: ObjectConstructor;
8382
8459
  updateChart: FunctionConstructor;
8383
8460
  canUpdateChart: FunctionConstructor;
@@ -9010,10 +9087,10 @@ interface PanelState {
9010
9087
  sectionRule: SectionRule;
9011
9088
  }
9012
9089
  interface Props$X {
9013
- figureId: UID;
9090
+ chartId: UID;
9014
9091
  definition: GaugeChartDefinition;
9015
- canUpdateChart: (figureID: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
9016
- updateChart: (figureId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
9092
+ canUpdateChart: (chartId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
9093
+ updateChart: (chartId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
9017
9094
  }
9018
9095
  declare class GaugeChartDesignPanel extends Component<Props$X, SpreadsheetChildEnv> {
9019
9096
  static template: string;
@@ -9026,7 +9103,7 @@ declare class GaugeChartDesignPanel extends Component<Props$X, SpreadsheetChildE
9026
9103
  StandaloneComposer: typeof StandaloneComposer;
9027
9104
  };
9028
9105
  static props: {
9029
- figureId: StringConstructor;
9106
+ chartId: StringConstructor;
9030
9107
  definition: ObjectConstructor;
9031
9108
  updateChart: FunctionConstructor;
9032
9109
  canUpdateChart: {
@@ -9066,10 +9143,10 @@ declare class LineConfigPanel extends GenericChartConfigPanel {
9066
9143
  }
9067
9144
 
9068
9145
  interface Props$W {
9069
- figureId: UID;
9146
+ chartId: UID;
9070
9147
  definition: ScorecardChartDefinition;
9071
- canUpdateChart: (figureId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
9072
- updateChart: (figureId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
9148
+ canUpdateChart: (chartId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
9149
+ updateChart: (chartId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
9073
9150
  }
9074
9151
  declare class ScorecardChartConfigPanel extends Component<Props$W, SpreadsheetChildEnv> {
9075
9152
  static template: string;
@@ -9079,7 +9156,7 @@ declare class ScorecardChartConfigPanel extends Component<Props$W, SpreadsheetCh
9079
9156
  Section: typeof Section;
9080
9157
  };
9081
9158
  static props: {
9082
- figureId: StringConstructor;
9159
+ chartId: StringConstructor;
9083
9160
  definition: ObjectConstructor;
9084
9161
  updateChart: FunctionConstructor;
9085
9162
  canUpdateChart: FunctionConstructor;
@@ -9101,10 +9178,10 @@ declare class ScorecardChartConfigPanel extends Component<Props$W, SpreadsheetCh
9101
9178
 
9102
9179
  type ColorPickerId = undefined | "backgroundColor" | "baselineColorUp" | "baselineColorDown";
9103
9180
  interface Props$V {
9104
- figureId: UID;
9181
+ chartId: UID;
9105
9182
  definition: ScorecardChartDefinition;
9106
- canUpdateChart: (figureID: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
9107
- updateChart: (figureId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
9183
+ canUpdateChart: (chartId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
9184
+ updateChart: (chartId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
9108
9185
  }
9109
9186
  declare class ScorecardChartDesignPanel extends Component<Props$V, SpreadsheetChildEnv> {
9110
9187
  static template: string;
@@ -9117,7 +9194,7 @@ declare class ScorecardChartDesignPanel extends Component<Props$V, SpreadsheetCh
9117
9194
  ChartTitle: typeof ChartTitle;
9118
9195
  };
9119
9196
  static props: {
9120
- figureId: StringConstructor;
9197
+ chartId: StringConstructor;
9121
9198
  definition: ObjectConstructor;
9122
9199
  updateChart: FunctionConstructor;
9123
9200
  canUpdateChart: {
@@ -9285,13 +9362,13 @@ declare class ComposerFocusStore extends SpreadsheetStore {
9285
9362
  }
9286
9363
 
9287
9364
  interface Props$U {
9288
- figureUI: FigureUI;
9365
+ chartId: UID;
9289
9366
  isFullScreen?: boolean;
9290
9367
  }
9291
9368
  declare class ChartJsComponent extends Component<Props$U, SpreadsheetChildEnv> {
9292
9369
  static template: string;
9293
9370
  static props: {
9294
- figureUI: ObjectConstructor;
9371
+ chartId: StringConstructor;
9295
9372
  isFullScreen: {
9296
9373
  type: BooleanConstructor;
9297
9374
  optional: boolean;
@@ -9314,12 +9391,12 @@ declare class ChartJsComponent extends Component<Props$U, SpreadsheetChildEnv> {
9314
9391
  }
9315
9392
 
9316
9393
  interface Props$T {
9317
- figureUI: FigureUI;
9394
+ chartId: UID;
9318
9395
  }
9319
9396
  declare class ScorecardChart$1 extends Component<Props$T, SpreadsheetChildEnv> {
9320
9397
  static template: string;
9321
9398
  static props: {
9322
- figureUI: ObjectConstructor;
9399
+ chartId: StringConstructor;
9323
9400
  };
9324
9401
  private canvas;
9325
9402
  get runtime(): ScorecardChartRuntime;
@@ -9495,6 +9572,7 @@ type ResizeAnchor = "top left" | "top" | "top right" | "right" | "bottom right"
9495
9572
  interface Props$R {
9496
9573
  figureUI: FigureUI;
9497
9574
  style: string;
9575
+ class: string;
9498
9576
  onFigureDeleted: () => void;
9499
9577
  onMouseDown: (ev: MouseEvent) => void;
9500
9578
  onClickAnchor(dirX: ResizeDirection, dirY: ResizeDirection, ev: MouseEvent): void;
@@ -9507,6 +9585,10 @@ declare class FigureComponent extends Component<Props$R, SpreadsheetChildEnv> {
9507
9585
  type: StringConstructor;
9508
9586
  optional: boolean;
9509
9587
  };
9588
+ class: {
9589
+ type: StringConstructor;
9590
+ optional: boolean;
9591
+ };
9510
9592
  onFigureDeleted: {
9511
9593
  type: FunctionConstructor;
9512
9594
  optional: boolean;
@@ -9530,6 +9612,7 @@ declare class FigureComponent extends Component<Props$R, SpreadsheetChildEnv> {
9530
9612
  };
9531
9613
  private menuState;
9532
9614
  private figureRef;
9615
+ private figureWrapperRef;
9533
9616
  private menuButtonRef;
9534
9617
  private borderWidth;
9535
9618
  get isSelected(): boolean;
@@ -9547,10 +9630,11 @@ declare class FigureComponent extends Component<Props$R, SpreadsheetChildEnv> {
9547
9630
  onContextMenu(ev: MouseEvent): void;
9548
9631
  showMenu(): void;
9549
9632
  private openContextMenu;
9633
+ editWrapperStyle(properties: CSSProperties): void;
9550
9634
  }
9551
9635
 
9552
9636
  interface Props$Q {
9553
- figureUI: FigureUI;
9637
+ chartId: UID;
9554
9638
  }
9555
9639
  interface MenuItem {
9556
9640
  id: string;
@@ -9565,7 +9649,7 @@ declare class ChartDashboardMenu extends Component<Props$Q, SpreadsheetChildEnv>
9565
9649
  MenuPopover: typeof MenuPopover;
9566
9650
  };
9567
9651
  static props: {
9568
- figureUI: ObjectConstructor;
9652
+ chartId: StringConstructor;
9569
9653
  };
9570
9654
  private fullScreenFigureStore;
9571
9655
  private store;
@@ -9580,18 +9664,24 @@ declare class ChartDashboardMenu extends Component<Props$Q, SpreadsheetChildEnv>
9580
9664
  interface Props$P {
9581
9665
  figureUI: FigureUI;
9582
9666
  onFigureDeleted: () => void;
9667
+ editFigureStyle?: (properties: CSSProperties) => void;
9583
9668
  }
9584
9669
  declare class ChartFigure extends Component<Props$P, SpreadsheetChildEnv> {
9585
9670
  static template: string;
9586
9671
  static props: {
9587
9672
  figureUI: ObjectConstructor;
9588
9673
  onFigureDeleted: FunctionConstructor;
9674
+ editFigureStyle: {
9675
+ type: FunctionConstructor;
9676
+ optional: boolean;
9677
+ };
9589
9678
  };
9590
9679
  static components: {
9591
9680
  ChartDashboardMenu: typeof ChartDashboardMenu;
9592
9681
  };
9593
9682
  onDoubleClick(): void;
9594
9683
  get chartType(): ChartType;
9684
+ get chartId(): UID;
9595
9685
  get chartComponent(): new (...args: any) => Component;
9596
9686
  }
9597
9687
 
@@ -9729,6 +9819,7 @@ interface DndState {
9729
9819
  horizontalSnap?: Snap<HFigureAxisType>;
9730
9820
  verticalSnap?: Snap<VFigureAxisType>;
9731
9821
  cancelDnd: (() => void) | undefined;
9822
+ overlappingCarousel?: FigureUI;
9732
9823
  }
9733
9824
  /**
9734
9825
  * Each figure ⭐ is positioned inside a container `div` placed and sized
@@ -9822,8 +9913,10 @@ declare class FiguresContainer extends Component<Props$M, SpreadsheetChildEnv> {
9822
9913
  private getOtherFigures;
9823
9914
  private getDndFigure;
9824
9915
  getFigureStyle(figureUI: FigureUI): string;
9916
+ getFigureClass(figureUI: FigureUI): string;
9825
9917
  private getSnap;
9826
9918
  private getSnapLineStyle;
9919
+ private getCarouselOverlappingChart;
9827
9920
  }
9828
9921
 
9829
9922
  interface Props$L {
@@ -10496,12 +10589,12 @@ declare class MainChartPanelStore extends SpreadsheetStore {
10496
10589
  panel: "configuration" | "design";
10497
10590
  private creationContexts;
10498
10591
  activatePanel(panel: "configuration" | "design"): void;
10499
- changeChartType(figureId: UID, newDisplayType: string): void;
10592
+ changeChartType(chartId: UID, newDisplayType: string): void;
10500
10593
  private getChartDefinitionFromContextCreation;
10501
10594
  }
10502
10595
 
10503
10596
  interface Props$A {
10504
- figureId: UID;
10597
+ chartId: UID;
10505
10598
  chartPanelStore: MainChartPanelStore;
10506
10599
  }
10507
10600
  interface ChartTypePickerState {
@@ -10515,7 +10608,7 @@ declare class ChartTypePicker extends Component<Props$A, SpreadsheetChildEnv> {
10515
10608
  Popover: typeof Popover;
10516
10609
  };
10517
10610
  static props: {
10518
- figureId: StringConstructor;
10611
+ chartId: StringConstructor;
10519
10612
  chartPanelStore: ObjectConstructor;
10520
10613
  };
10521
10614
  categories: {
@@ -10546,7 +10639,7 @@ declare class ChartTypePicker extends Component<Props$A, SpreadsheetChildEnv> {
10546
10639
 
10547
10640
  interface Props$z {
10548
10641
  onCloseSidePanel: () => void;
10549
- figureId: UID;
10642
+ chartId: UID;
10550
10643
  }
10551
10644
  declare class ChartPanel extends Component<Props$z, SpreadsheetChildEnv> {
10552
10645
  static template: string;
@@ -10556,16 +10649,16 @@ declare class ChartPanel extends Component<Props$z, SpreadsheetChildEnv> {
10556
10649
  };
10557
10650
  static props: {
10558
10651
  onCloseSidePanel: FunctionConstructor;
10559
- figureId: StringConstructor;
10652
+ chartId: StringConstructor;
10560
10653
  };
10561
10654
  private panelContentRef;
10562
10655
  private scrollPositions;
10563
10656
  store: Store<MainChartPanelStore>;
10564
- get figureId(): UID;
10657
+ get chartId(): UID;
10565
10658
  setup(): void;
10566
10659
  switchPanel(panel: "configuration" | "design"): void;
10567
- updateChart<T extends ChartDefinition>(figureId: UID, updateDefinition: Partial<T>): DispatchResult | undefined;
10568
- canUpdateChart<T extends ChartDefinition>(figureId: UID, updateDefinition: Partial<T>): DispatchResult | undefined;
10660
+ updateChart<T extends ChartDefinition>(chartId: UID, updateDefinition: Partial<T>): DispatchResult | undefined;
10661
+ canUpdateChart<T extends ChartDefinition>(chartId: UID, updateDefinition: Partial<T>): DispatchResult | undefined;
10569
10662
  onTypeChange(type: ChartType): void;
10570
10663
  get chartPanel(): ChartSidePanel;
10571
10664
  private getChartDefinition;
@@ -10589,10 +10682,10 @@ declare class PieHoleSize extends Component<Props$y, SpreadsheetChildEnv> {
10589
10682
  }
10590
10683
 
10591
10684
  interface Props$x {
10592
- figureId: UID;
10685
+ chartId: UID;
10593
10686
  definition: PieChartDefinition;
10594
- canUpdateChart: (figureID: UID, definition: GenericDefinition<PieChartDefinition>) => DispatchResult;
10595
- updateChart: (figureId: UID, definition: GenericDefinition<PieChartDefinition>) => DispatchResult;
10687
+ canUpdateChart: (chartId: UID, definition: GenericDefinition<PieChartDefinition>) => DispatchResult;
10688
+ updateChart: (chartId: UID, definition: GenericDefinition<PieChartDefinition>) => DispatchResult;
10596
10689
  }
10597
10690
  declare class PieChartDesignPanel extends Component<Props$x, SpreadsheetChildEnv> {
10598
10691
  static template: string;
@@ -10604,7 +10697,7 @@ declare class PieChartDesignPanel extends Component<Props$x, SpreadsheetChildEnv
10604
10697
  PieHoleSize: typeof PieHoleSize;
10605
10698
  };
10606
10699
  static props: {
10607
- figureId: StringConstructor;
10700
+ chartId: StringConstructor;
10608
10701
  definition: ObjectConstructor;
10609
10702
  updateChart: FunctionConstructor;
10610
10703
  canUpdateChart: {
@@ -11219,6 +11312,7 @@ declare class FullScreenChart extends Component<{}, SpreadsheetChildEnv> {
11219
11312
  figureRegistry: Registry<FigureContent>;
11220
11313
  setup(): void;
11221
11314
  get figureUI(): FigureUI | undefined;
11315
+ get chartId(): UID | undefined;
11222
11316
  exitFullScreen(): void;
11223
11317
  onKeyDown(ev: KeyboardEvent): void;
11224
11318
  get chartComponent(): (new (...args: any) => Component) | undefined;
@@ -11309,10 +11403,10 @@ declare class PivotHTMLRenderer extends Component<Props$k, SpreadsheetChildEnv>
11309
11403
  }
11310
11404
 
11311
11405
  interface Props$j {
11312
- figureId: UID;
11406
+ chartId: UID;
11313
11407
  definition: ChartWithDataSetDefinition;
11314
- updateChart: (figureId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
11315
- canUpdateChart: (figureId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
11408
+ updateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
11409
+ canUpdateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
11316
11410
  }
11317
11411
  declare class ChartShowDataMarkers extends Component<Props$j, SpreadsheetChildEnv> {
11318
11412
  static template: string;
@@ -11320,7 +11414,7 @@ declare class ChartShowDataMarkers extends Component<Props$j, SpreadsheetChildEn
11320
11414
  Checkbox: typeof Checkbox;
11321
11415
  };
11322
11416
  static props: {
11323
- figureId: StringConstructor;
11417
+ chartId: StringConstructor;
11324
11418
  definition: ObjectConstructor;
11325
11419
  updateChart: FunctionConstructor;
11326
11420
  canUpdateChart: FunctionConstructor;
@@ -11328,10 +11422,10 @@ declare class ChartShowDataMarkers extends Component<Props$j, SpreadsheetChildEn
11328
11422
  }
11329
11423
 
11330
11424
  interface Props$i {
11331
- figureId: UID;
11425
+ chartId: UID;
11332
11426
  definition: ComboChartDefinition;
11333
- canUpdateChart: (figureID: UID, definition: GenericDefinition<ComboChartDefinition>) => DispatchResult;
11334
- updateChart: (figureId: UID, definition: GenericDefinition<ComboChartDefinition>) => DispatchResult;
11427
+ canUpdateChart: (chartId: UID, definition: GenericDefinition<ComboChartDefinition>) => DispatchResult;
11428
+ updateChart: (chartId: UID, definition: GenericDefinition<ComboChartDefinition>) => DispatchResult;
11335
11429
  }
11336
11430
  declare class ComboChartDesignPanel extends ChartWithAxisDesignPanel<Props$i> {
11337
11431
  static template: string;
@@ -11355,10 +11449,10 @@ declare class ComboChartDesignPanel extends ChartWithAxisDesignPanel<Props$i> {
11355
11449
  }
11356
11450
 
11357
11451
  interface Props$h {
11358
- figureId: UID;
11452
+ chartId: UID;
11359
11453
  definition: FunnelChartDefinition;
11360
- canUpdateChart: (figureID: UID, definition: Partial<FunnelChartDefinition>) => DispatchResult;
11361
- updateChart: (figureId: UID, definition: Partial<FunnelChartDefinition>) => DispatchResult;
11454
+ canUpdateChart: (chartId: UID, definition: Partial<FunnelChartDefinition>) => DispatchResult;
11455
+ updateChart: (chartId: UID, definition: Partial<FunnelChartDefinition>) => DispatchResult;
11362
11456
  }
11363
11457
  declare class FunnelChartDesignPanel extends Component<Props$h, SpreadsheetChildEnv> {
11364
11458
  static template: string;
@@ -11370,7 +11464,7 @@ declare class FunnelChartDesignPanel extends Component<Props$h, SpreadsheetChild
11370
11464
  Section: typeof Section;
11371
11465
  };
11372
11466
  static props: {
11373
- figureId: StringConstructor;
11467
+ chartId: StringConstructor;
11374
11468
  definition: ObjectConstructor;
11375
11469
  updateChart: FunctionConstructor;
11376
11470
  canUpdateChart: FunctionConstructor;
@@ -11383,10 +11477,10 @@ declare class FunnelChartDesignPanel extends Component<Props$h, SpreadsheetChild
11383
11477
  }
11384
11478
 
11385
11479
  interface Props$g {
11386
- figureId: UID;
11480
+ chartId: UID;
11387
11481
  definition: GeoChartDefinition;
11388
- canUpdateChart: (figureID: UID, definition: Partial<GeoChartDefinition>) => DispatchResult;
11389
- updateChart: (figureId: UID, definition: Partial<GeoChartDefinition>) => DispatchResult;
11482
+ canUpdateChart: (chartId: UID, definition: Partial<GeoChartDefinition>) => DispatchResult;
11483
+ updateChart: (chartId: UID, definition: Partial<GeoChartDefinition>) => DispatchResult;
11390
11484
  }
11391
11485
  declare class GeoChartDesignPanel extends ChartWithAxisDesignPanel<Props$g> {
11392
11486
  static template: string;
@@ -11413,9 +11507,9 @@ declare class GeoChartDesignPanel extends ChartWithAxisDesignPanel<Props$g> {
11413
11507
  }
11414
11508
 
11415
11509
  interface Props$f {
11416
- figureId: UID;
11510
+ chartId: UID;
11417
11511
  definition: GeoChartDefinition;
11418
- updateChart: (figureId: UID, definition: Partial<GeoChartDefinition>) => DispatchResult;
11512
+ updateChart: (chartId: UID, definition: Partial<GeoChartDefinition>) => DispatchResult;
11419
11513
  }
11420
11514
  declare class GeoChartRegionSelectSection extends Component<Props$f, SpreadsheetChildEnv> {
11421
11515
  static template: string;
@@ -11423,7 +11517,7 @@ declare class GeoChartRegionSelectSection extends Component<Props$f, Spreadsheet
11423
11517
  Section: typeof Section;
11424
11518
  };
11425
11519
  static props: {
11426
- figureId: StringConstructor;
11520
+ chartId: StringConstructor;
11427
11521
  definition: ObjectConstructor;
11428
11522
  updateChart: FunctionConstructor;
11429
11523
  };
@@ -11433,10 +11527,10 @@ declare class GeoChartRegionSelectSection extends Component<Props$f, Spreadsheet
11433
11527
  }
11434
11528
 
11435
11529
  interface Props$e {
11436
- figureId: UID;
11530
+ chartId: UID;
11437
11531
  definition: ComboChartDefinition;
11438
- canUpdateChart: (figureID: UID, definition: GenericDefinition<ComboChartDefinition>) => DispatchResult;
11439
- updateChart: (figureId: UID, definition: GenericDefinition<ComboChartDefinition>) => DispatchResult;
11532
+ canUpdateChart: (chartId: UID, definition: GenericDefinition<ComboChartDefinition>) => DispatchResult;
11533
+ updateChart: (chartId: UID, definition: GenericDefinition<ComboChartDefinition>) => DispatchResult;
11440
11534
  }
11441
11535
  declare class LineChartDesignPanel extends ChartWithAxisDesignPanel<Props$e> {
11442
11536
  static template: string;
@@ -11453,10 +11547,10 @@ declare class LineChartDesignPanel extends ChartWithAxisDesignPanel<Props$e> {
11453
11547
  }
11454
11548
 
11455
11549
  interface Props$d {
11456
- figureId: UID;
11550
+ chartId: UID;
11457
11551
  definition: RadarChartDefinition;
11458
- canUpdateChart: (figureID: UID, definition: GenericDefinition<RadarChartDefinition>) => DispatchResult;
11459
- updateChart: (figureId: UID, definition: GenericDefinition<RadarChartDefinition>) => DispatchResult;
11552
+ canUpdateChart: (chartId: UID, definition: GenericDefinition<RadarChartDefinition>) => DispatchResult;
11553
+ updateChart: (chartId: UID, definition: GenericDefinition<RadarChartDefinition>) => DispatchResult;
11460
11554
  }
11461
11555
  declare class RadarChartDesignPanel extends Component<Props$d, SpreadsheetChildEnv> {
11462
11556
  static template: string;
@@ -11469,7 +11563,7 @@ declare class RadarChartDesignPanel extends Component<Props$d, SpreadsheetChildE
11469
11563
  ChartShowDataMarkers: typeof ChartShowDataMarkers;
11470
11564
  };
11471
11565
  static props: {
11472
- figureId: StringConstructor;
11566
+ chartId: StringConstructor;
11473
11567
  definition: ObjectConstructor;
11474
11568
  canUpdateChart: FunctionConstructor;
11475
11569
  updateChart: FunctionConstructor;
@@ -11477,10 +11571,10 @@ declare class RadarChartDesignPanel extends Component<Props$d, SpreadsheetChildE
11477
11571
  }
11478
11572
 
11479
11573
  interface Props$c {
11480
- figureId: UID;
11574
+ chartId: UID;
11481
11575
  definition: SunburstChartDefinition;
11482
- canUpdateChart: (figureID: UID, definition: Partial<SunburstChartDefinition>) => DispatchResult;
11483
- updateChart: (figureId: UID, definition: Partial<SunburstChartDefinition>) => DispatchResult;
11576
+ canUpdateChart: (chartId: UID, definition: Partial<SunburstChartDefinition>) => DispatchResult;
11577
+ updateChart: (chartId: UID, definition: Partial<SunburstChartDefinition>) => DispatchResult;
11484
11578
  }
11485
11579
  declare class SunburstChartDesignPanel extends Component<Props$c, SpreadsheetChildEnv> {
11486
11580
  static template: string;
@@ -11496,7 +11590,7 @@ declare class SunburstChartDesignPanel extends Component<Props$c, SpreadsheetChi
11496
11590
  PieHoleSize: typeof PieHoleSize;
11497
11591
  };
11498
11592
  static props: {
11499
- figureId: StringConstructor;
11593
+ chartId: StringConstructor;
11500
11594
  definition: ObjectConstructor;
11501
11595
  updateChart: FunctionConstructor;
11502
11596
  canUpdateChart: {
@@ -11520,7 +11614,7 @@ declare class SunburstChartDesignPanel extends Component<Props$c, SpreadsheetChi
11520
11614
  }
11521
11615
 
11522
11616
  interface Props$b {
11523
- figureId: UID;
11617
+ chartId: UID;
11524
11618
  definition: TreeMapChartDefinition;
11525
11619
  onColorChanged: (colors: TreeMapCategoryColorOptions) => DispatchResult;
11526
11620
  }
@@ -11531,7 +11625,7 @@ declare class TreeMapCategoryColors extends Component<Props$b, SpreadsheetChildE
11531
11625
  RoundColorPicker: typeof RoundColorPicker;
11532
11626
  };
11533
11627
  static props: {
11534
- figureId: StringConstructor;
11628
+ chartId: StringConstructor;
11535
11629
  definition: ObjectConstructor;
11536
11630
  onColorChanged: FunctionConstructor;
11537
11631
  };
@@ -11542,7 +11636,7 @@ declare class TreeMapCategoryColors extends Component<Props$b, SpreadsheetChildE
11542
11636
  }
11543
11637
 
11544
11638
  interface Props$a {
11545
- figureId: UID;
11639
+ chartId: UID;
11546
11640
  definition: TreeMapChartDefinition;
11547
11641
  onColorChanged: (colors: TreeMapColorScaleOptions) => DispatchResult;
11548
11642
  }
@@ -11552,7 +11646,7 @@ declare class TreeMapColorScale extends Component<Props$a, SpreadsheetChildEnv>
11552
11646
  RoundColorPicker: typeof RoundColorPicker;
11553
11647
  };
11554
11648
  static props: {
11555
- figureId: StringConstructor;
11649
+ chartId: StringConstructor;
11556
11650
  definition: ObjectConstructor;
11557
11651
  onColorChanged: FunctionConstructor;
11558
11652
  };
@@ -11561,10 +11655,10 @@ declare class TreeMapColorScale extends Component<Props$a, SpreadsheetChildEnv>
11561
11655
  }
11562
11656
 
11563
11657
  interface Props$9 {
11564
- figureId: UID;
11658
+ chartId: UID;
11565
11659
  definition: TreeMapChartDefinition;
11566
- canUpdateChart: (figureID: UID, definition: Partial<TreeMapChartDefinition>) => DispatchResult;
11567
- updateChart: (figureId: UID, definition: Partial<TreeMapChartDefinition>) => DispatchResult;
11660
+ canUpdateChart: (chartId: UID, definition: Partial<TreeMapChartDefinition>) => DispatchResult;
11661
+ updateChart: (chartId: UID, definition: Partial<TreeMapChartDefinition>) => DispatchResult;
11568
11662
  }
11569
11663
  declare class TreeMapChartDesignPanel extends Component<Props$9, SpreadsheetChildEnv> {
11570
11664
  static template: string;
@@ -11581,7 +11675,7 @@ declare class TreeMapChartDesignPanel extends Component<Props$9, SpreadsheetChil
11581
11675
  TreeMapColorScale: typeof TreeMapColorScale;
11582
11676
  };
11583
11677
  static props: {
11584
- figureId: StringConstructor;
11678
+ chartId: StringConstructor;
11585
11679
  definition: ObjectConstructor;
11586
11680
  updateChart: FunctionConstructor;
11587
11681
  canUpdateChart: {
@@ -11612,10 +11706,10 @@ declare class TreeMapChartDesignPanel extends Component<Props$9, SpreadsheetChil
11612
11706
  }
11613
11707
 
11614
11708
  interface Props$8 {
11615
- figureId: UID;
11709
+ chartId: UID;
11616
11710
  definition: WaterfallChartDefinition;
11617
- canUpdateChart: (figureID: UID, definition: GenericDefinition<WaterfallChartDefinition>) => DispatchResult;
11618
- updateChart: (figureId: UID, definition: GenericDefinition<WaterfallChartDefinition>) => DispatchResult;
11711
+ canUpdateChart: (chartId: UID, definition: GenericDefinition<WaterfallChartDefinition>) => DispatchResult;
11712
+ updateChart: (chartId: UID, definition: GenericDefinition<WaterfallChartDefinition>) => DispatchResult;
11619
11713
  }
11620
11714
  declare class WaterfallChartDesignPanel extends Component<Props$8, SpreadsheetChildEnv> {
11621
11715
  static template: string;
@@ -11631,7 +11725,7 @@ declare class WaterfallChartDesignPanel extends Component<Props$8, SpreadsheetCh
11631
11725
  ChartLegend: typeof ChartLegend;
11632
11726
  };
11633
11727
  static props: {
11634
- figureId: StringConstructor;
11728
+ chartId: StringConstructor;
11635
11729
  definition: ObjectConstructor;
11636
11730
  updateChart: FunctionConstructor;
11637
11731
  canUpdateChart: {
@@ -12878,6 +12972,7 @@ declare const constants: {
12878
12972
  ColorScales: Record<Extract<GeoChartColorScale, string>, string>;
12879
12973
  };
12880
12974
  };
12975
+ FIGURE_ID_SPLITTER: string;
12881
12976
  };
12882
12977
  declare const chartHelpers: {
12883
12978
  getBarChartData(definition: GenericDefinition<BarChartDefinition>, dataSets: DataSet[], labelRange: Range | undefined, getters: Getters): ChartRuntimeGenerationArgs;
@@ -13397,7 +13492,7 @@ declare const chartHelpers: {
13397
13492
  value: string;
13398
13493
  label: string;
13399
13494
  }[];
13400
- chartFactory(getters: CoreGetters): (id: UID, definition: ChartDefinition, sheetId: UID) => AbstractChart;
13495
+ chartFactory(getters: CoreGetters): (figureId: UID, definition: ChartDefinition, sheetId: UID) => AbstractChart;
13401
13496
  chartRuntimeFactory(getters: Getters): (chart: AbstractChart) => ChartRuntime;
13402
13497
  validateChartDefinition(validator: Validator, definition: ChartDefinition): CommandResult | CommandResult[];
13403
13498
  transformDefinition(chartSheetId: UID, definition: ChartDefinition, applyrange: RangeAdapter$1): ChartDefinition;
@@ -13431,4 +13526,4 @@ declare const chartHelpers: {
13431
13526
  WaterfallChart: typeof WaterfallChart;
13432
13527
  };
13433
13528
 
13434
- export { AST, ASTFuncall, AboveAverageRule, AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, ActivateNextSheetCommand, ActivatePreviousSheetCommand, ActivateSheetCommand, AddColumnsRowsCommand, AddConditionalFormatCommand, AddDataValidationCommand, AddFunctionDescription, AddMergeCommand, AddPivotCommand, Aggregator, Alias, Align, AlphanumericIncrementModifier, AnchorOffset, 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, BorderDescrWithOpacity, BorderPosition, BorderStyle, Box, BoxTextContent, CHART_TYPES, CSSProperties, CancelledReason, Cell, CellErrorType, CellIsRule, CellPosition, CellValue, CellValueType, ChangeType, ChartAxisFormats, ChartCreationContext, ChartDatasetOrientation, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartRuntimeGenerationArgs, ChartStyle, ChartType, ChartWithAxisDefinition, ChartWithDataSetDefinition, CleanClipBoardHighlightCommand, ClearCellCommand, ClearCellsCommand, ClearFormattingCommand, Client, ClientDisconnectedError, ClientId, ClientJoinedMessage, ClientLeftMessage, ClientMovedMessage, ClientPosition, ClientWithColor, ClientWithPosition, 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, CoreViewPlugin, CreateChartCommand, CreateFigureCommand, CreateImageOverCommand, CreateRevisionOptions, CreateSheetCommand, CreateTableCommand, CreateTableStyleCommand, CriterionFilter, Currency, CustomFormulaCriterion, CustomizedDataSet, CutCommand, DEFAULT_LOCALE, DEFAULT_LOCALES, DIRECTION, DOMCoordinates, DOMDimension, DataBarFill, DataBarRule, DataBarRuleInternal, DataFilterValue, DataSet, DataValidationCriterion, DataValidationCriterionType, DataValidationDateCriterion, DataValidationRule, DataValidationRuleData, DatasetDesign, DatasetValues, DateCriterionValue, DateIncrementModifier, DateIsAfterCriterion, DateIsBeforeCriterion, DateIsBetweenCriterion, DateIsCriterion, DateIsNotBetweenCriterion, DateIsOnOrAfterCriterion, DateIsOnOrBeforeCriterion, DateIsValidCriterion, DebouncedFunction, DeleteCellCommand, DeleteContentCommand, DeleteFigureCommand, DeleteSheetCommand, DeleteUnfilteredContentCommand, 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, EvaluatedCriterion, EvaluatedDateCriterion, EvaluationError, ExcelChartDataset, ExcelChartDefinition, ExcelChartTrendConfiguration, ExcelChartType, ExcelFigureSize, ExcelFilterData, ExcelHeaderData, ExcelSheetData, ExcelTableData, ExcelTrendlineType, ExcelWorkbookData, ExpressionRule, Figure, FigureData, FigureInfo, FigureSize, FigureUI, Filter, FilterCriterionType, FilterId, FoldAllHeaderGroupsCommand, FoldHeaderGroupCommand, FoldHeaderGroupsInZoneCommand, Format, FormattedValue, FormulaCell, FormulaModifier, FormulaToExecute, FreezeColumnsCommand, FreezeRowsCommand, FunctionDescription, FunctionRegistry, FunctionResultNumber, FunctionResultObject, GeneratorCell, GenericCriterion, GenericCriterionType, GenericDateCriterion, 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, LocalTransportService, Locale, LocaleCode, LocaleFormat, LookupCaches, Matrix, Maybe, MenuMouseEvent, Merge, MinimalClipboardData, Model, MoveColumnsRowsCommand, MoveConditionalFormatCommand, MoveRangeCommand, MoveSheetCommand, MoveViewportDownCommand, MoveViewportToCellCommand, MoveViewportUpCommand, NewLocalStateUpdateEvent, NotContainsTextRule, NotificationType, NumberCell, OSClipboardContent, Offset, OperationSequenceNode, OrderedLayers, PaintFormat, PaneDivision, ParsedOSClipboardContent, ParsedOsClipboardContentWithImageData, PasteCommand, PasteFromOSClipboardCommand, Pivot, PivotColRowDomain, PivotCollapsedDomains, PivotCoreDefinition, PivotCoreDimension, PivotCoreMeasure, PivotCustomGroup, PivotCustomGroupedField, 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, PivotVisibilityOptions, Pixel, PixelPosition, Position$1 as Position, PositionDependentCommand, PropsOf, RGBA, Range, RangeAdapter$1 as RangeAdapter, RangeCompiledFormula, RangeData, RangePart, RangeProvider, RangeStringOptions, RangesDependentCommand, Rect, RedoCommand, Ref, ReferenceDenormalizer, RefreshPivotCommand, Registry, RemoteRevisionMessage, RemoteRevisionReceivedEvent, RemoveColumnsRowsCommand, RemoveConditionalFormatCommand, RemoveDataValidationCommand, RemoveDuplicatesCommand, RemoveMergeCommand, RemovePivotCommand, RemoveTableCommand, RemoveTableStyleCommand, RenamePivotCommand, RenameSheetCommand, RenderingBorder, RenderingBox, RenderingGridIcon, RepeatPasteCommand, ReplaceSearchCommand, RequestRedoCommand, RequestUndoCommand, ResizeColumnsRowsCommand, ResizeDirection, ResizeTableCommand, ResizeViewportCommand, Revision, RevisionAcknowledgedEvent, RevisionData, RevisionRedone, RevisionRedoneMessage, RevisionUndone, RevisionUndoneMessage, Row, SPREADSHEET_DIMENSIONS, ScrollDirection$1 as ScrollDirection, SelectFigureCommand, Selection$1 as Selection, SelectionStep, SetBorderCommand, SetBorderTargetCommand, SetContextualFormatCommand, SetDecimalCommand, SetDecimalStep, SetFormattingCommand, SetGridLinesVisibilityCommand, SetViewportOffsetCommand, SetZoneBordersCommand, Sheet, SheetDOMScrollInfo, SheetData, SheetDependentCommand, SheetEditingCommand, 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, ToggleCheckboxCommand, 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, ValueAndLabel, ValuesFilter, VerticalAlign, Viewport, WorkbookData, WorkbookHistory, Wrapping, Zone, ZoneDependentCommand, ZoneDimension, __info__, addFunction, addRenderingLayer, astToFormula, availableConditionalFormatOperators, availableDataValidationOperators, availableFiltersOperators, borderStyles, canExecuteInReadonly, chartHelpers, compile, compileTokens, components, constants, containsBlanksRule, containsErrorsRule, convertAstNodes, coreTypes, filterDateCriterionOperators, filterNumberCriterionOperators, filterTextCriterionOperators, 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 };
13529
+ export { AST, ASTFuncall, AboveAverageRule, AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, ActivateNextSheetCommand, ActivatePreviousSheetCommand, ActivateSheetCommand, AddColumnsRowsCommand, AddConditionalFormatCommand, AddDataValidationCommand, AddFigureChartToCarouselCommand, AddFunctionDescription, AddMergeCommand, AddNewChartToCarouselCommand, AddPivotCommand, Aggregator, Alias, Align, AlphanumericIncrementModifier, AnchorOffset, 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, BorderDescrWithOpacity, BorderPosition, BorderStyle, Box, BoxTextContent, CHART_TYPES, CSSProperties, CancelledReason, Carousel, CarouselItem, Cell, CellErrorType, CellIsRule, CellPosition, CellValue, CellValueType, ChangeType, ChartAxisFormats, ChartCreationContext, ChartDatasetOrientation, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartRuntimeGenerationArgs, ChartStyle, ChartType, ChartWithAxisDefinition, ChartWithDataSetDefinition, CleanClipBoardHighlightCommand, ClearCellCommand, ClearCellsCommand, ClearFormattingCommand, Client, ClientDisconnectedError, ClientId, ClientJoinedMessage, ClientLeftMessage, ClientMovedMessage, ClientPosition, ClientWithColor, ClientWithPosition, 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, CoreViewPlugin, CreateCarouselCommand, CreateChartCommand, CreateFigureCommand, CreateImageOverCommand, CreateRevisionOptions, CreateSheetCommand, CreateTableCommand, CreateTableStyleCommand, CriterionFilter, Currency, CustomFormulaCriterion, CustomizedDataSet, CutCommand, DEFAULT_LOCALE, DEFAULT_LOCALES, DIRECTION, DOMCoordinates, DOMDimension, DataBarFill, DataBarRule, DataBarRuleInternal, DataFilterValue, DataSet, DataValidationCriterion, DataValidationCriterionType, DataValidationDateCriterion, DataValidationRule, DataValidationRuleData, DatasetDesign, DatasetValues, DateCriterionValue, DateIncrementModifier, DateIsAfterCriterion, DateIsBeforeCriterion, DateIsBetweenCriterion, DateIsCriterion, DateIsNotBetweenCriterion, DateIsOnOrAfterCriterion, DateIsOnOrBeforeCriterion, DateIsValidCriterion, DebouncedFunction, DeleteCellCommand, DeleteChartCommand, DeleteContentCommand, DeleteFigureCommand, DeleteSheetCommand, DeleteUnfilteredContentCommand, 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, EvaluatedCriterion, EvaluatedDateCriterion, EvaluationError, ExcelChartDataset, ExcelChartDefinition, ExcelChartTrendConfiguration, ExcelChartType, ExcelFigureSize, ExcelFilterData, ExcelHeaderData, ExcelSheetData, ExcelTableData, ExcelTrendlineType, ExcelWorkbookData, ExpressionRule, Figure, FigureData, FigureInfo, FigureSize, FigureUI, Filter, FilterCriterionType, FilterId, FoldAllHeaderGroupsCommand, FoldHeaderGroupCommand, FoldHeaderGroupsInZoneCommand, Format, FormattedValue, FormulaCell, FormulaModifier, FormulaToExecute, FreezeColumnsCommand, FreezeRowsCommand, FunctionDescription, FunctionRegistry, FunctionResultNumber, FunctionResultObject, GeneratorCell, GenericCriterion, GenericCriterionType, GenericDateCriterion, 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, LocalTransportService, Locale, LocaleCode, LocaleFormat, LookupCaches, Matrix, Maybe, MenuMouseEvent, Merge, MinimalClipboardData, Model, MoveColumnsRowsCommand, MoveConditionalFormatCommand, MoveRangeCommand, MoveSheetCommand, MoveViewportDownCommand, MoveViewportToCellCommand, MoveViewportUpCommand, NewLocalStateUpdateEvent, NotContainsTextRule, NotificationType, NumberCell, OSClipboardContent, Offset, OperationSequenceNode, OrderedLayers, PaintFormat, PaneDivision, ParsedOSClipboardContent, ParsedOsClipboardContentWithImageData, PasteCommand, PasteFromOSClipboardCommand, Pivot, PivotColRowDomain, PivotCollapsedDomains, PivotCoreDefinition, PivotCoreDimension, PivotCoreMeasure, PivotCustomGroup, PivotCustomGroupedField, 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, PivotVisibilityOptions, Pixel, PixelPosition, Position$1 as Position, PositionDependentCommand, PropsOf, RGBA, Range, RangeAdapter$1 as RangeAdapter, RangeCompiledFormula, RangeData, RangePart, RangeProvider, RangeStringOptions, RangesDependentCommand, Rect, RedoCommand, Ref, ReferenceDenormalizer, RefreshPivotCommand, Registry, RemoteRevisionMessage, RemoteRevisionReceivedEvent, RemoveColumnsRowsCommand, RemoveConditionalFormatCommand, RemoveDataValidationCommand, RemoveDuplicatesCommand, RemoveMergeCommand, RemovePivotCommand, RemoveTableCommand, RemoveTableStyleCommand, RenamePivotCommand, RenameSheetCommand, RenderingBorder, RenderingBox, RenderingGridIcon, RepeatPasteCommand, ReplaceSearchCommand, RequestRedoCommand, RequestUndoCommand, ResizeColumnsRowsCommand, ResizeDirection, ResizeTableCommand, ResizeViewportCommand, Revision, RevisionAcknowledgedEvent, RevisionData, RevisionRedone, RevisionRedoneMessage, RevisionUndone, RevisionUndoneMessage, Row, SPREADSHEET_DIMENSIONS, ScrollDirection$1 as ScrollDirection, SelectFigureCommand, Selection$1 as Selection, SelectionStep, SetBorderCommand, SetBorderTargetCommand, SetContextualFormatCommand, SetDecimalCommand, SetDecimalStep, SetFormattingCommand, SetGridLinesVisibilityCommand, SetViewportOffsetCommand, SetZoneBordersCommand, Sheet, SheetDOMScrollInfo, SheetData, SheetDependentCommand, SheetEditingCommand, 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, ToggleCheckboxCommand, Token, Tooltip, Top10Rule, Transformation, TransformationFactory, TransportService, TrendConfiguration, TrendType, TrimWhitespaceCommand, UID, UIPlugin, UnGroupHeadersCommand, UnboundedZone, UndoCommand, UnexpectedRevisionIdEvent, UnfoldAllHeaderGroupsCommand, UnfoldHeaderGroupCommand, UnfoldHeaderGroupsInZoneCommand, UnfreezeColumnsCommand, UnfreezeColumnsRowsCommand, UnfreezeRowsCommand, UnhideColumnsRowsCommand, UpdateCarouselActiveItemCommand, UpdateCarouselCommand, UpdateCellCommand, UpdateCellData, UpdateCellPositionCommand, UpdateChartCommand, UpdateFigureCommand, UpdateFilterCommand, UpdateLocaleCommand, UpdatePivotCommand, UpdateTableCommand, Validation, ValueAndLabel, ValuesFilter, VerticalAlign, Viewport, WorkbookData, WorkbookHistory, Wrapping, Zone, ZoneDependentCommand, ZoneDimension, __info__, addFunction, addRenderingLayer, astToFormula, availableConditionalFormatOperators, availableDataValidationOperators, availableFiltersOperators, borderStyles, canExecuteInReadonly, chartHelpers, compile, compileTokens, components, constants, containsBlanksRule, containsErrorsRule, convertAstNodes, coreTypes, filterDateCriterionOperators, filterNumberCriterionOperators, filterTextCriterionOperators, 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 };