@odoo/o-spreadsheet 17.3.0-alpha.3 → 17.3.0-alpha.4

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.
@@ -319,10 +319,36 @@ interface ScorecardChartRuntime {
319
319
  readonly progressBar?: ProgressBar;
320
320
  }
321
321
 
322
- declare const CHART_TYPES: readonly ["line", "bar", "pie", "scorecard", "gauge", "scatter", "combo"];
322
+ interface WaterfallChartDefinition {
323
+ readonly type: "waterfall";
324
+ readonly dataSets: string[];
325
+ readonly dataSetsHaveTitle: boolean;
326
+ readonly labelRange?: string;
327
+ readonly title: string;
328
+ readonly background?: Color;
329
+ readonly verticalAxisPosition: VerticalAxisPosition;
330
+ readonly legendPosition: LegendPosition;
331
+ readonly aggregated?: boolean;
332
+ readonly showSubTotals: boolean;
333
+ readonly showConnectorLines: boolean;
334
+ readonly firstValueAsSubtotal?: boolean;
335
+ readonly positiveValuesColor?: Color;
336
+ readonly negativeValuesColor?: Color;
337
+ readonly subTotalValuesColor?: Color;
338
+ }
339
+ type WaterfallChartRuntime = {
340
+ chartJsConfig: ChartConfiguration;
341
+ background: Color;
342
+ };
343
+
344
+ declare const CHART_TYPES: readonly ["line", "bar", "pie", "scorecard", "gauge", "scatter", "combo", "waterfall"];
323
345
  type ChartType = (typeof CHART_TYPES)[number];
324
- type ChartDefinition = LineChartDefinition | PieChartDefinition | BarChartDefinition | ScorecardChartDefinition | GaugeChartDefinition | ScatterChartDefinition | ComboChartDefinition;
325
- type ChartJSRuntime = LineChartRuntime | PieChartRuntime | BarChartRuntime | ComboChartRuntime | ScatterChartRuntime;
346
+ type ChartDefinition = LineChartDefinition | PieChartDefinition | BarChartDefinition | ScorecardChartDefinition | GaugeChartDefinition | ScatterChartDefinition | ComboChartDefinition | WaterfallChartDefinition;
347
+ type ChartWithAxisDefinition = Extract<ChartDefinition, {
348
+ dataSets: string[];
349
+ labelRange?: string;
350
+ }>;
351
+ type ChartJSRuntime = LineChartRuntime | PieChartRuntime | BarChartRuntime | ComboChartRuntime | ScatterChartRuntime | WaterfallChartRuntime;
326
352
  type ChartRuntime = ChartJSRuntime | ScorecardChartRuntime | GaugeChartRuntime;
327
353
  interface LabelValues {
328
354
  readonly values: string[];
@@ -534,11 +560,11 @@ interface ZoneDependentCommand {
534
560
  }
535
561
  declare function isZoneDependent(cmd: CoreCommand): boolean;
536
562
  declare function isPositionDependent(cmd: CoreCommand): boolean;
537
- declare const invalidateEvaluationCommands: Set<"CUT" | "COPY" | "UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "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" | "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" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "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" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "ACTIVATE_PAINT_FORMAT" | "CANCEL_PAINT_FORMAT" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "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" | "RENDER_CANVAS">;
538
- declare const invalidateDependenciesCommands: Set<"CUT" | "COPY" | "UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "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" | "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" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "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" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "ACTIVATE_PAINT_FORMAT" | "CANCEL_PAINT_FORMAT" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "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" | "RENDER_CANVAS">;
539
- declare const invalidateCFEvaluationCommands: Set<"CUT" | "COPY" | "UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "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" | "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" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "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" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "ACTIVATE_PAINT_FORMAT" | "CANCEL_PAINT_FORMAT" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "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" | "RENDER_CANVAS">;
540
- declare const invalidateBordersCommands: Set<"CUT" | "COPY" | "UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "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" | "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" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "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" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "ACTIVATE_PAINT_FORMAT" | "CANCEL_PAINT_FORMAT" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "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" | "RENDER_CANVAS">;
541
- declare const readonlyAllowedCommands: Set<"CUT" | "COPY" | "UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "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" | "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" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "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" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "ACTIVATE_PAINT_FORMAT" | "CANCEL_PAINT_FORMAT" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "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" | "RENDER_CANVAS">;
563
+ declare const invalidateEvaluationCommands: Set<"CUT" | "COPY" | "UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "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" | "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" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "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" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "ACTIVATE_PAINT_FORMAT" | "CANCEL_PAINT_FORMAT" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "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" | "RENDER_CANVAS" | "RESIZE_TABLE">;
564
+ declare const invalidateDependenciesCommands: Set<"CUT" | "COPY" | "UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "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" | "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" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "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" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "ACTIVATE_PAINT_FORMAT" | "CANCEL_PAINT_FORMAT" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "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" | "RENDER_CANVAS" | "RESIZE_TABLE">;
565
+ declare const invalidateCFEvaluationCommands: Set<"CUT" | "COPY" | "UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "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" | "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" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "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" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "ACTIVATE_PAINT_FORMAT" | "CANCEL_PAINT_FORMAT" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "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" | "RENDER_CANVAS" | "RESIZE_TABLE">;
566
+ declare const invalidateBordersCommands: Set<"CUT" | "COPY" | "UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "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" | "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" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "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" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "ACTIVATE_PAINT_FORMAT" | "CANCEL_PAINT_FORMAT" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "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" | "RENDER_CANVAS" | "RESIZE_TABLE">;
567
+ declare const readonlyAllowedCommands: Set<"CUT" | "COPY" | "UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "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" | "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" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "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" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "ACTIVATE_PAINT_FORMAT" | "CANCEL_PAINT_FORMAT" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "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" | "RENDER_CANVAS" | "RESIZE_TABLE">;
542
568
  declare const coreTypes: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "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" | "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" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "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">;
543
569
  declare function isCoreCommand(cmd: Command): cmd is CoreCommand;
544
570
  declare function canExecuteInReadonly(cmd: Command): boolean;
@@ -726,8 +752,19 @@ interface UpdateTableCommand {
726
752
  tableType?: CoreTableType;
727
753
  config?: Partial<TableConfig>;
728
754
  }
755
+ interface ResizeTableCommand {
756
+ type: "RESIZE_TABLE";
757
+ zone: Zone;
758
+ sheetId: UID;
759
+ newTableRange: RangeData;
760
+ tableType?: CoreTableType;
761
+ }
729
762
  interface AutofillTableCommand extends PositionDependentCommand {
730
763
  type: "AUTOFILL_TABLE_COLUMN";
764
+ /** The row to start the autofill in. If undefined, it will autofill from the top of the table column */
765
+ autofillRowStart?: number;
766
+ /** The row to end the autofill in. If undefined, it will autofill to the bottom of the table column */
767
+ autofillRowEnd?: number;
731
768
  }
732
769
  interface UpdateFilterCommand extends PositionDependentCommand {
733
770
  type: "UPDATE_FILTER";
@@ -1035,7 +1072,7 @@ UpdateCellCommand | UpdateCellPositionCommand | ClearCellCommand | DeleteContent
1035
1072
  | AddDataValidationCommand | RemoveDataValidationCommand
1036
1073
  /** MISC */
1037
1074
  | UpdateLocaleCommand;
1038
- type LocalCommand = RequestUndoCommand | RequestRedoCommand | UndoCommand | RedoCommand | CopyCommand | CutCommand | PasteCommand | CopyPasteCellsAboveCommand | CopyPasteCellsOnLeftCommand | RepeatPasteCommand | CleanClipBoardHighlightCommand | AutoFillCellCommand | PasteFromOSClipboardCommand | ActivatePaintFormatCommand | CancelPaintFormatCommand | AutoresizeColumnsCommand | AutoresizeRowsCommand | MoveColumnsRowsCommand | ActivateSheetCommand | EvaluateCellsCommand | StartChangeHighlightCommand | StartCommand | AutofillCommand | AutofillSelectCommand | AutofillTableCommand | ShowFormulaCommand | AutofillAutoCommand | SelectFigureCommand | ReplaceSearchCommand | SortCommand | SetDecimalCommand | ResizeViewportCommand | SumSelectionCommand | DeleteCellCommand | InsertCellCommand | SetViewportOffsetCommand | MoveViewportDownCommand | MoveViewportUpCommand | MoveViewportToCellCommand | ActivateNextSheetCommand | ActivatePreviousSheetCommand | UpdateFilterCommand | SplitTextIntoColumnsCommand | RemoveDuplicatesCommand | TrimWhitespaceCommand | RenderCanvasCommand;
1075
+ type LocalCommand = RequestUndoCommand | RequestRedoCommand | UndoCommand | RedoCommand | CopyCommand | CutCommand | PasteCommand | CopyPasteCellsAboveCommand | CopyPasteCellsOnLeftCommand | RepeatPasteCommand | CleanClipBoardHighlightCommand | AutoFillCellCommand | PasteFromOSClipboardCommand | ActivatePaintFormatCommand | CancelPaintFormatCommand | AutoresizeColumnsCommand | AutoresizeRowsCommand | MoveColumnsRowsCommand | ActivateSheetCommand | EvaluateCellsCommand | StartChangeHighlightCommand | StartCommand | AutofillCommand | AutofillSelectCommand | AutofillTableCommand | ShowFormulaCommand | AutofillAutoCommand | SelectFigureCommand | ReplaceSearchCommand | SortCommand | SetDecimalCommand | ResizeViewportCommand | SumSelectionCommand | DeleteCellCommand | InsertCellCommand | SetViewportOffsetCommand | MoveViewportDownCommand | MoveViewportUpCommand | MoveViewportToCellCommand | ActivateNextSheetCommand | ActivatePreviousSheetCommand | UpdateFilterCommand | SplitTextIntoColumnsCommand | RemoveDuplicatesCommand | TrimWhitespaceCommand | RenderCanvasCommand | ResizeTableCommand;
1039
1076
  type Command = CoreCommand | LocalCommand;
1040
1077
  /**
1041
1078
  * Holds the result of a command dispatch.
@@ -1170,7 +1207,8 @@ declare const enum CommandResult {
1170
1207
  InvalidCopyPasteSelection = "InvalidCopyPasteSelection",
1171
1208
  NoChanges = "NoChanges",
1172
1209
  InvalidInputId = "InvalidInputId",
1173
- SheetIsHidden = "SheetIsHidden"
1210
+ SheetIsHidden = "SheetIsHidden",
1211
+ InvalidTableResize = "InvalidTableResize"
1174
1212
  }
1175
1213
  interface CommandHandler<T> {
1176
1214
  allowDispatch(command: T): CommandResult | CommandResult[];
@@ -2675,10 +2713,10 @@ declare class FigurePlugin extends CorePlugin<FigureState> implements FigureStat
2675
2713
  exportForExcel(data: ExcelWorkbookData): void;
2676
2714
  }
2677
2715
 
2678
- interface State$7 {
2716
+ interface State$8 {
2679
2717
  groups: Record<UID, Record<Dimension, HeaderGroup[]>>;
2680
2718
  }
2681
- declare class HeaderGroupingPlugin extends CorePlugin<State$7> {
2719
+ declare class HeaderGroupingPlugin extends CorePlugin<State$8> {
2682
2720
  static getters: readonly ["getHeaderGroups", "getGroupsLayers", "getVisibleGroupLayers", "getHeaderGroup", "getHeaderGroupsInZone", "isGroupFolded", "isRowFolded", "isColFolded"];
2683
2721
  private readonly groups;
2684
2722
  allowDispatch(cmd: CoreCommand): CommandResult;
@@ -3062,7 +3100,7 @@ interface TableState {
3062
3100
  tables: Record<UID, Record<TableId, CoreTable | undefined>>;
3063
3101
  }
3064
3102
  declare class TablePlugin extends CorePlugin<TableState> implements TableState {
3065
- static getters: readonly ["getCoreTable", "getCoreTables"];
3103
+ static getters: readonly ["getCoreTable", "getCoreTables", "getCoreTableMatchingTopLeft"];
3066
3104
  readonly tables: Record<UID, Record<TableId, CoreTable | undefined>>;
3067
3105
  adaptRanges(applyChange: ApplyRangeChange, sheetId?: UID): void;
3068
3106
  allowDispatch(cmd: CoreCommand): CommandResult | CommandResult[];
@@ -3086,7 +3124,7 @@ declare class TablePlugin extends CorePlugin<TableState> implements TableState {
3086
3124
  *
3087
3125
  */
3088
3126
  private canUpdateCellCmdExtendTable;
3089
- private getTableFromZone;
3127
+ getCoreTableMatchingTopLeft(sheetId: UID, zone: Zone): CoreTable | undefined;
3090
3128
  private checkUpdatedTableZoneIsValid;
3091
3129
  private checkTableConfigUpdateIsValid;
3092
3130
  private createStaticTable;
@@ -4354,8 +4392,8 @@ declare class InternalViewport {
4354
4392
  canScrollHorizontally: boolean;
4355
4393
  viewportWidth: Pixel;
4356
4394
  viewportHeight: Pixel;
4357
- private offsetCorrectionX;
4358
- private offsetCorrectionY;
4395
+ offsetCorrectionX: Pixel;
4396
+ offsetCorrectionY: Pixel;
4359
4397
  constructor(getters: Getters, sheetId: UID, boundaries: Zone, sizeInGrid: DOMDimension, options: {
4360
4398
  canScrollVertically: boolean;
4361
4399
  canScrollHorizontally: boolean;
@@ -4560,11 +4598,6 @@ declare class SheetViewPlugin extends UIPlugin {
4560
4598
  private resizeSheetView;
4561
4599
  private recomputeViewports;
4562
4600
  private setSheetViewOffset;
4563
- /**
4564
- * Clip the vertical offset within the allowed range.
4565
- * Not above the sheet, nor below the sheet.
4566
- */
4567
- private clipOffsetY;
4568
4601
  private getViewportOffset;
4569
4602
  private resetViewports;
4570
4603
  /**
@@ -5597,7 +5630,7 @@ declare class SelectionInputStore extends SpreadsheetStore {
5597
5630
  getIndex(rangeId: number | null): number | null;
5598
5631
  }
5599
5632
 
5600
- interface Props$Q {
5633
+ interface Props$R {
5601
5634
  ranges: string[];
5602
5635
  hasSingleRange?: boolean;
5603
5636
  required?: boolean;
@@ -5619,7 +5652,7 @@ interface SelectionRange extends Omit<RangeInputValue, "color"> {
5619
5652
  * onSelectionChanged is called every time the input value
5620
5653
  * changes.
5621
5654
  */
5622
- declare class SelectionInput extends Component<Props$Q, SpreadsheetChildEnv> {
5655
+ declare class SelectionInput extends Component<Props$R, SpreadsheetChildEnv> {
5623
5656
  static template: string;
5624
5657
  static props: {
5625
5658
  ranges: ArrayConstructor;
@@ -5669,11 +5702,11 @@ declare class SelectionInput extends Component<Props$Q, SpreadsheetChildEnv> {
5669
5702
  confirm(): void;
5670
5703
  }
5671
5704
 
5672
- interface Props$P {
5705
+ interface Props$Q {
5673
5706
  messages: string[];
5674
5707
  msgType: "warning" | "error";
5675
5708
  }
5676
- declare class ValidationMessages extends Component<Props$P, SpreadsheetChildEnv> {
5709
+ declare class ValidationMessages extends Component<Props$Q, SpreadsheetChildEnv> {
5677
5710
  static template: string;
5678
5711
  static props: {
5679
5712
  messages: ArrayConstructor;
@@ -5682,7 +5715,7 @@ declare class ValidationMessages extends Component<Props$P, SpreadsheetChildEnv>
5682
5715
  get divClasses(): "o-validation-warning text-warning" | "o-validation-error text-danger";
5683
5716
  }
5684
5717
 
5685
- interface Props$O {
5718
+ interface Props$P {
5686
5719
  label?: string;
5687
5720
  value: boolean;
5688
5721
  className?: string;
@@ -5691,7 +5724,7 @@ interface Props$O {
5691
5724
  disabled?: boolean;
5692
5725
  onChange: (value: boolean) => void;
5693
5726
  }
5694
- declare class Checkbox extends Component<Props$O, SpreadsheetChildEnv> {
5727
+ declare class Checkbox extends Component<Props$P, SpreadsheetChildEnv> {
5695
5728
  static template: string;
5696
5729
  static props: {
5697
5730
  label: {
@@ -5726,10 +5759,10 @@ declare class Checkbox extends Component<Props$O, SpreadsheetChildEnv> {
5726
5759
  onChange(ev: InputEvent): void;
5727
5760
  }
5728
5761
 
5729
- interface Props$N {
5762
+ interface Props$O {
5730
5763
  class?: string;
5731
5764
  }
5732
- declare class Section extends Component<Props$N, SpreadsheetChildEnv> {
5765
+ declare class Section extends Component<Props$O, SpreadsheetChildEnv> {
5733
5766
  static template: string;
5734
5767
  static props: {
5735
5768
  class: {
@@ -5740,13 +5773,13 @@ declare class Section extends Component<Props$N, SpreadsheetChildEnv> {
5740
5773
  };
5741
5774
  }
5742
5775
 
5743
- interface Props$M {
5776
+ interface Props$N {
5744
5777
  ranges: string[];
5745
5778
  hasSingleRange?: boolean;
5746
5779
  onSelectionChanged: (ranges: string[]) => void;
5747
5780
  onSelectionConfirmed: () => void;
5748
5781
  }
5749
- declare class ChartDataSeries extends Component<Props$M, SpreadsheetChildEnv> {
5782
+ declare class ChartDataSeries extends Component<Props$N, SpreadsheetChildEnv> {
5750
5783
  static template: string;
5751
5784
  static components: {
5752
5785
  SelectionInput: typeof SelectionInput;
@@ -5764,10 +5797,10 @@ declare class ChartDataSeries extends Component<Props$M, SpreadsheetChildEnv> {
5764
5797
  get title(): string;
5765
5798
  }
5766
5799
 
5767
- interface Props$L {
5800
+ interface Props$M {
5768
5801
  messages: string[];
5769
5802
  }
5770
- declare class ChartErrorSection extends Component<Props$L, SpreadsheetChildEnv> {
5803
+ declare class ChartErrorSection extends Component<Props$M, SpreadsheetChildEnv> {
5771
5804
  static template: string;
5772
5805
  static components: {
5773
5806
  Section: typeof Section;
@@ -5781,7 +5814,7 @@ declare class ChartErrorSection extends Component<Props$L, SpreadsheetChildEnv>
5781
5814
  };
5782
5815
  }
5783
5816
 
5784
- interface Props$K {
5817
+ interface Props$L {
5785
5818
  title?: string;
5786
5819
  range: string;
5787
5820
  isInvalid: boolean;
@@ -5795,7 +5828,7 @@ interface Props$K {
5795
5828
  onChange: (value: boolean) => void;
5796
5829
  }>;
5797
5830
  }
5798
- declare class ChartLabelRange extends Component<Props$K, SpreadsheetChildEnv> {
5831
+ declare class ChartLabelRange extends Component<Props$L, SpreadsheetChildEnv> {
5799
5832
  static template: string;
5800
5833
  static components: {
5801
5834
  SelectionInput: typeof SelectionInput;
@@ -5820,16 +5853,16 @@ declare class ChartLabelRange extends Component<Props$K, SpreadsheetChildEnv> {
5820
5853
  optional: boolean;
5821
5854
  };
5822
5855
  };
5823
- static defaultProps: Partial<Props$K>;
5856
+ static defaultProps: Partial<Props$L>;
5824
5857
  }
5825
5858
 
5826
- interface Props$J {
5859
+ interface Props$K {
5827
5860
  figureId: UID;
5828
- definition: LineChartDefinition | BarChartDefinition | PieChartDefinition;
5829
- canUpdateChart: (figureId: UID, definition: Partial<LineChartDefinition | BarChartDefinition | PieChartDefinition>) => DispatchResult;
5830
- updateChart: (figureId: UID, definition: Partial<LineChartDefinition | BarChartDefinition | PieChartDefinition | ComboChartDefinition>) => DispatchResult;
5861
+ definition: ChartWithAxisDefinition;
5862
+ canUpdateChart: (figureId: UID, definition: Partial<ChartWithAxisDefinition>) => DispatchResult;
5863
+ updateChart: (figureId: UID, definition: Partial<ChartWithAxisDefinition>) => DispatchResult;
5831
5864
  }
5832
- declare class LineBarPieConfigPanel extends Component<Props$J, SpreadsheetChildEnv> {
5865
+ declare class GenericChartConfigPanel extends Component<Props$K, SpreadsheetChildEnv> {
5833
5866
  static template: string;
5834
5867
  static components: {
5835
5868
  SelectionInput: typeof SelectionInput;
@@ -5879,7 +5912,7 @@ declare class LineBarPieConfigPanel extends Component<Props$J, SpreadsheetChildE
5879
5912
  calculateHeaderPosition(): number | undefined;
5880
5913
  }
5881
5914
 
5882
- declare class BarConfigPanel extends LineBarPieConfigPanel {
5915
+ declare class BarConfigPanel extends GenericChartConfigPanel {
5883
5916
  static template: string;
5884
5917
  get stackedLabel(): string;
5885
5918
  onUpdateStacked(stacked: boolean): void;
@@ -6029,7 +6062,7 @@ declare class ColorPicker extends Component<ColorPickerProps, SpreadsheetChildEn
6029
6062
  isSameColor(color1: Color, color2: Color): boolean;
6030
6063
  }
6031
6064
 
6032
- interface Props$I {
6065
+ interface Props$J {
6033
6066
  currentColor: string | undefined;
6034
6067
  toggleColorPicker: () => void;
6035
6068
  showColorPicker: boolean;
@@ -6040,7 +6073,7 @@ interface Props$I {
6040
6073
  dropdownMaxHeight?: Pixel;
6041
6074
  class?: string;
6042
6075
  }
6043
- declare class ColorPickerWidget extends Component<Props$I, SpreadsheetChildEnv> {
6076
+ declare class ColorPickerWidget extends Component<Props$J, SpreadsheetChildEnv> {
6044
6077
  static template: string;
6045
6078
  static props: {
6046
6079
  currentColor: {
@@ -6078,12 +6111,12 @@ declare class ColorPickerWidget extends Component<Props$I, SpreadsheetChildEnv>
6078
6111
  get colorPickerAnchorRect(): Rect;
6079
6112
  }
6080
6113
 
6081
- interface Props$H {
6114
+ interface Props$I {
6082
6115
  currentColor?: string;
6083
6116
  onColorPicked: (color: string) => void;
6084
6117
  title?: string;
6085
6118
  }
6086
- declare class RoundColorPicker extends Component<Props$H, SpreadsheetChildEnv> {
6119
+ declare class RoundColorPicker extends Component<Props$I, SpreadsheetChildEnv> {
6087
6120
  static template: string;
6088
6121
  static components: {
6089
6122
  ColorPickerWidget: typeof ColorPickerWidget;
@@ -6113,11 +6146,11 @@ declare class RoundColorPicker extends Component<Props$H, SpreadsheetChildEnv> {
6113
6146
  get buttonStyle(): string;
6114
6147
  }
6115
6148
 
6116
- interface Props$G {
6149
+ interface Props$H {
6117
6150
  title: string;
6118
6151
  update: (title: string) => void;
6119
6152
  }
6120
- declare class ChartTitle extends Component<Props$G, SpreadsheetChildEnv> {
6153
+ declare class ChartTitle extends Component<Props$H, SpreadsheetChildEnv> {
6121
6154
  static template: string;
6122
6155
  static components: {
6123
6156
  Section: typeof Section;
@@ -6129,13 +6162,13 @@ declare class ChartTitle extends Component<Props$G, SpreadsheetChildEnv> {
6129
6162
  updateTitle(ev: InputEvent): void;
6130
6163
  }
6131
6164
 
6132
- interface Props$F {
6165
+ interface Props$G {
6133
6166
  figureId: UID;
6134
- definition: LineChartDefinition | BarChartDefinition | PieChartDefinition;
6135
- canUpdateChart: (definition: Partial<LineChartDefinition | BarChartDefinition | PieChartDefinition>) => DispatchResult;
6136
- updateChart: (figureId: UID, definition: Partial<LineChartDefinition | BarChartDefinition | PieChartDefinition>) => DispatchResult;
6167
+ definition: ChartWithAxisDefinition;
6168
+ canUpdateChart: (definition: Partial<ChartWithAxisDefinition>) => DispatchResult;
6169
+ updateChart: (figureId: UID, definition: Partial<ChartWithAxisDefinition>) => DispatchResult;
6137
6170
  }
6138
- declare class LineBarPieDesignPanel extends Component<Props$F, SpreadsheetChildEnv> {
6171
+ declare class GenericChartDesignPanel extends Component<Props$G, SpreadsheetChildEnv> {
6139
6172
  static template: string;
6140
6173
  static components: {
6141
6174
  RoundColorPicker: typeof RoundColorPicker;
@@ -6155,13 +6188,13 @@ declare class LineBarPieDesignPanel extends Component<Props$F, SpreadsheetChildE
6155
6188
  get backgroundColorTitle(): string;
6156
6189
  }
6157
6190
 
6158
- interface Props$E {
6191
+ interface Props$F {
6159
6192
  figureId: UID;
6160
6193
  definition: GaugeChartDefinition;
6161
6194
  canUpdateChart: (figureId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
6162
6195
  updateChart: (figureId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
6163
6196
  }
6164
- declare class GaugeChartConfigPanel extends Component<Props$E, SpreadsheetChildEnv> {
6197
+ declare class GaugeChartConfigPanel extends Component<Props$F, SpreadsheetChildEnv> {
6165
6198
  static template: string;
6166
6199
  static components: {
6167
6200
  ChartErrorSection: typeof ChartErrorSection;
@@ -6182,13 +6215,13 @@ declare class GaugeChartConfigPanel extends Component<Props$E, SpreadsheetChildE
6182
6215
  getDataRange(): string;
6183
6216
  }
6184
6217
 
6185
- interface Props$D {
6218
+ interface Props$E {
6186
6219
  figureId: UID;
6187
6220
  definition: GaugeChartDefinition;
6188
6221
  canUpdateChart: (figureId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
6189
6222
  updateChart: (figureId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
6190
6223
  }
6191
- declare class GaugeChartDesignPanel extends Component<Props$D, SpreadsheetChildEnv> {
6224
+ declare class GaugeChartDesignPanel extends Component<Props$E, SpreadsheetChildEnv> {
6192
6225
  static template: string;
6193
6226
  static components: {
6194
6227
  ChartErrorSection: typeof ChartErrorSection;
@@ -6217,7 +6250,7 @@ declare class GaugeChartDesignPanel extends Component<Props$D, SpreadsheetChildE
6217
6250
  get backgroundColorTitle(): string;
6218
6251
  }
6219
6252
 
6220
- declare class LineConfigPanel extends LineBarPieConfigPanel {
6253
+ declare class LineConfigPanel extends GenericChartConfigPanel {
6221
6254
  static template: string;
6222
6255
  get canTreatLabelsAsText(): boolean;
6223
6256
  get stackedLabel(): string;
@@ -6234,13 +6267,13 @@ declare class LineConfigPanel extends LineBarPieConfigPanel {
6234
6267
  onUpdateCumulative(cumulative: boolean): void;
6235
6268
  }
6236
6269
 
6237
- interface Props$C {
6270
+ interface Props$D {
6238
6271
  figureId: UID;
6239
6272
  definition: ScorecardChartDefinition;
6240
6273
  canUpdateChart: (figureId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
6241
6274
  updateChart: (figureId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
6242
6275
  }
6243
- declare class ScorecardChartConfigPanel extends Component<Props$C, SpreadsheetChildEnv> {
6276
+ declare class ScorecardChartConfigPanel extends Component<Props$D, SpreadsheetChildEnv> {
6244
6277
  static template: string;
6245
6278
  static components: {
6246
6279
  SelectionInput: typeof SelectionInput;
@@ -6269,13 +6302,13 @@ declare class ScorecardChartConfigPanel extends Component<Props$C, SpreadsheetCh
6269
6302
  }
6270
6303
 
6271
6304
  type ColorPickerId = undefined | "backgroundColor" | "baselineColorUp" | "baselineColorDown";
6272
- interface Props$B {
6305
+ interface Props$C {
6273
6306
  figureId: UID;
6274
6307
  definition: ScorecardChartDefinition;
6275
6308
  canUpdateChart: (figureId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
6276
6309
  updateChart: (figureId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
6277
6310
  }
6278
- declare class ScorecardChartDesignPanel extends Component<Props$B, SpreadsheetChildEnv> {
6311
+ declare class ScorecardChartDesignPanel extends Component<Props$C, SpreadsheetChildEnv> {
6279
6312
  static template: string;
6280
6313
  static components: {
6281
6314
  RoundColorPicker: typeof RoundColorPicker;
@@ -6507,13 +6540,13 @@ interface EnrichedToken extends Token {
6507
6540
  functionContext?: FunctionContext;
6508
6541
  }
6509
6542
 
6510
- interface Props$A {
6543
+ interface Props$B {
6511
6544
  proposals: AutoCompleteProposal[];
6512
6545
  selectedIndex: number | undefined;
6513
6546
  onValueSelected: (value: string) => void;
6514
6547
  onValueHovered: (index: string) => void;
6515
6548
  }
6516
- declare class TextValueProvider extends Component<Props$A> {
6549
+ declare class TextValueProvider extends Component<Props$B> {
6517
6550
  static template: string;
6518
6551
  static props: {
6519
6552
  proposals: ArrayConstructor;
@@ -6714,7 +6747,7 @@ declare class ContentEditableHelper {
6714
6747
  getText(): string;
6715
6748
  }
6716
6749
 
6717
- interface Props$z {
6750
+ interface Props$A {
6718
6751
  functionName: string;
6719
6752
  functionDescription: FunctionDescription;
6720
6753
  argToFocus: number;
@@ -6722,7 +6755,7 @@ interface Props$z {
6722
6755
  interface AssistantState {
6723
6756
  allowCellSelectionBehind: boolean;
6724
6757
  }
6725
- declare class FunctionDescriptionProvider extends Component<Props$z, SpreadsheetChildEnv> {
6758
+ declare class FunctionDescriptionProvider extends Component<Props$A, SpreadsheetChildEnv> {
6726
6759
  static template: string;
6727
6760
  static props: {
6728
6761
  functionName: StringConstructor;
@@ -6732,7 +6765,7 @@ declare class FunctionDescriptionProvider extends Component<Props$z, Spreadsheet
6732
6765
  assistantState: AssistantState;
6733
6766
  private timeOutId;
6734
6767
  setup(): void;
6735
- getContext(): Props$z;
6768
+ getContext(): Props$A;
6736
6769
  onMouseMove(): void;
6737
6770
  get formulaArgSeparator(): string;
6738
6771
  }
@@ -6928,10 +6961,10 @@ interface AutoCompleteProviderDefinition {
6928
6961
 
6929
6962
  declare function transformRangeData(range: RangeData, executed: CoreCommand): RangeData | undefined;
6930
6963
 
6931
- interface Props$y {
6964
+ interface Props$z {
6932
6965
  figure: Figure;
6933
6966
  }
6934
- declare class ChartJsComponent extends Component<Props$y, SpreadsheetChildEnv> {
6967
+ declare class ChartJsComponent extends Component<Props$z, SpreadsheetChildEnv> {
6935
6968
  static template: string;
6936
6969
  static props: {
6937
6970
  figure: ObjectConstructor;
@@ -6946,10 +6979,10 @@ declare class ChartJsComponent extends Component<Props$y, SpreadsheetChildEnv> {
6946
6979
  private updateChartJs;
6947
6980
  }
6948
6981
 
6949
- interface Props$x {
6982
+ interface Props$y {
6950
6983
  figure: Figure;
6951
6984
  }
6952
- declare class ScorecardChart extends Component<Props$x, SpreadsheetChildEnv> {
6985
+ declare class ScorecardChart extends Component<Props$y, SpreadsheetChildEnv> {
6953
6986
  static template: string;
6954
6987
  static props: {
6955
6988
  figure: ObjectConstructor;
@@ -6961,7 +6994,7 @@ declare class ScorecardChart extends Component<Props$x, SpreadsheetChildEnv> {
6961
6994
  }
6962
6995
 
6963
6996
  type MenuItemOrSeparator = Action | "separator";
6964
- interface Props$w {
6997
+ interface Props$x {
6965
6998
  position: DOMCoordinates;
6966
6999
  menuItems: Action[];
6967
7000
  depth: number;
@@ -6979,7 +7012,7 @@ interface MenuState {
6979
7012
  menuItems: Action[];
6980
7013
  isHoveringChild?: boolean;
6981
7014
  }
6982
- declare class Menu extends Component<Props$w, SpreadsheetChildEnv> {
7015
+ declare class Menu extends Component<Props$x, SpreadsheetChildEnv> {
6983
7016
  static template: string;
6984
7017
  static props: {
6985
7018
  position: ObjectConstructor;
@@ -7049,14 +7082,14 @@ declare class Menu extends Component<Props$w, SpreadsheetChildEnv> {
7049
7082
  }
7050
7083
 
7051
7084
  type ResizeAnchor = "top left" | "top" | "top right" | "right" | "bottom right" | "bottom" | "bottom left" | "left";
7052
- interface Props$v {
7085
+ interface Props$w {
7053
7086
  figure: Figure;
7054
7087
  style: string;
7055
7088
  onFigureDeleted: () => void;
7056
7089
  onMouseDown: (ev: MouseEvent) => void;
7057
7090
  onClickAnchor(dirX: ResizeDirection, dirY: ResizeDirection, ev: MouseEvent): void;
7058
7091
  }
7059
- declare class FigureComponent extends Component<Props$v, SpreadsheetChildEnv> {
7092
+ declare class FigureComponent extends Component<Props$w, SpreadsheetChildEnv> {
7060
7093
  static template: string;
7061
7094
  static props: {
7062
7095
  figure: ObjectConstructor;
@@ -7105,11 +7138,11 @@ declare class FigureComponent extends Component<Props$v, SpreadsheetChildEnv> {
7105
7138
  private openContextMenu;
7106
7139
  }
7107
7140
 
7108
- interface Props$u {
7141
+ interface Props$v {
7109
7142
  figure: Figure;
7110
7143
  onFigureDeleted: () => void;
7111
7144
  }
7112
- declare class ChartFigure extends Component<Props$u, SpreadsheetChildEnv> {
7145
+ declare class ChartFigure extends Component<Props$v, SpreadsheetChildEnv> {
7113
7146
  static template: string;
7114
7147
  static props: {
7115
7148
  figure: ObjectConstructor;
@@ -7121,7 +7154,7 @@ declare class ChartFigure extends Component<Props$u, SpreadsheetChildEnv> {
7121
7154
  get chartComponent(): new (...args: any) => Component;
7122
7155
  }
7123
7156
 
7124
- interface Props$t {
7157
+ interface Props$u {
7125
7158
  isVisible: boolean;
7126
7159
  position: Position;
7127
7160
  }
@@ -7129,17 +7162,17 @@ interface Position {
7129
7162
  top: HeaderIndex;
7130
7163
  left: HeaderIndex;
7131
7164
  }
7132
- interface State$6 {
7165
+ interface State$7 {
7133
7166
  position: Position;
7134
7167
  handler: boolean;
7135
7168
  }
7136
- declare class Autofill extends Component<Props$t, SpreadsheetChildEnv> {
7169
+ declare class Autofill extends Component<Props$u, SpreadsheetChildEnv> {
7137
7170
  static template: string;
7138
7171
  static props: {
7139
7172
  position: ObjectConstructor;
7140
7173
  isVisible: BooleanConstructor;
7141
7174
  };
7142
- state: State$6;
7175
+ state: State$7;
7143
7176
  get style(): string;
7144
7177
  get handlerStyle(): string;
7145
7178
  get styleNextValue(): string;
@@ -7167,7 +7200,7 @@ declare class ClientTag extends Component<ClientTagProps, SpreadsheetChildEnv> {
7167
7200
  get tagStyle(): string;
7168
7201
  }
7169
7202
 
7170
- interface Props$s {
7203
+ interface Props$t {
7171
7204
  gridDims: DOMDimension;
7172
7205
  onInputContextMenu: (event: MouseEvent) => void;
7173
7206
  }
@@ -7175,7 +7208,7 @@ interface Props$s {
7175
7208
  * This component is a composer which positions itself on the grid at the anchor cell.
7176
7209
  * It also applies the style of the cell to the composer input.
7177
7210
  */
7178
- declare class GridComposer extends Component<Props$s, SpreadsheetChildEnv> {
7211
+ declare class GridComposer extends Component<Props$t, SpreadsheetChildEnv> {
7179
7212
  static template: string;
7180
7213
  static props: {
7181
7214
  gridDims: ObjectConstructor;
@@ -7232,10 +7265,10 @@ declare class GridCellIcon extends Component<GridCellIconProps, SpreadsheetChild
7232
7265
  isPositionVisible(position: CellPosition): boolean;
7233
7266
  }
7234
7267
 
7235
- interface Props$r {
7268
+ interface Props$s {
7236
7269
  cellPosition: CellPosition;
7237
7270
  }
7238
- declare class DataValidationCheckbox extends Component<Props$r, SpreadsheetChildEnv> {
7271
+ declare class DataValidationCheckbox extends Component<Props$s, SpreadsheetChildEnv> {
7239
7272
  static template: string;
7240
7273
  static props: {
7241
7274
  cellPosition: ObjectConstructor;
@@ -7245,10 +7278,10 @@ declare class DataValidationCheckbox extends Component<Props$r, SpreadsheetChild
7245
7278
  get isDisabled(): boolean;
7246
7279
  }
7247
7280
 
7248
- interface Props$q {
7281
+ interface Props$r {
7249
7282
  cellPosition: CellPosition;
7250
7283
  }
7251
- declare class DataValidationListIcon extends Component<Props$q, SpreadsheetChildEnv> {
7284
+ declare class DataValidationListIcon extends Component<Props$r, SpreadsheetChildEnv> {
7252
7285
  static template: string;
7253
7286
  static props: {
7254
7287
  cellPosition: ObjectConstructor;
@@ -7278,7 +7311,7 @@ interface SnapLine<T extends HFigureAxisType | VFigureAxisType> {
7278
7311
  }
7279
7312
 
7280
7313
  type ContainerType = "topLeft" | "topRight" | "bottomLeft" | "bottomRight" | "dnd";
7281
- interface Props$p {
7314
+ interface Props$q {
7282
7315
  onFigureDeleted: () => void;
7283
7316
  }
7284
7317
  interface Container {
@@ -7357,7 +7390,7 @@ interface DndState {
7357
7390
  * that occurred during the drag & drop, and to position the figure on the correct pane.
7358
7391
  *
7359
7392
  */
7360
- declare class FiguresContainer extends Component<Props$p, SpreadsheetChildEnv> {
7393
+ declare class FiguresContainer extends Component<Props$q, SpreadsheetChildEnv> {
7361
7394
  static template: string;
7362
7395
  static props: {
7363
7396
  onFigureDeleted: FunctionConstructor;
@@ -7413,10 +7446,10 @@ declare class CellPopoverStore extends SpreadsheetStore {
7413
7446
  private computePopoverAnchorRect;
7414
7447
  }
7415
7448
 
7416
- interface Props$o {
7449
+ interface Props$p {
7417
7450
  cellPosition: CellPosition;
7418
7451
  }
7419
- declare class FilterIcon extends Component<Props$o, SpreadsheetChildEnv> {
7452
+ declare class FilterIcon extends Component<Props$p, SpreadsheetChildEnv> {
7420
7453
  static template: string;
7421
7454
  static props: {
7422
7455
  cellPosition: ObjectConstructor;
@@ -7428,10 +7461,10 @@ declare class FilterIcon extends Component<Props$o, SpreadsheetChildEnv> {
7428
7461
  get iconClass(): string;
7429
7462
  }
7430
7463
 
7431
- interface Props$n {
7464
+ interface Props$o {
7432
7465
  onMouseDown: (ev: MouseEvent) => void;
7433
7466
  }
7434
- declare class FilterIconsOverlay extends Component<Props$n, SpreadsheetChildEnv> {
7467
+ declare class FilterIconsOverlay extends Component<Props$o, SpreadsheetChildEnv> {
7435
7468
  static template: string;
7436
7469
  static props: {
7437
7470
  onMouseDown: FunctionConstructor;
@@ -7443,10 +7476,10 @@ declare class FilterIconsOverlay extends Component<Props$n, SpreadsheetChildEnv>
7443
7476
  getFilterHeadersPositions(): CellPosition[];
7444
7477
  }
7445
7478
 
7446
- interface Props$m {
7479
+ interface Props$n {
7447
7480
  focusGrid: () => void;
7448
7481
  }
7449
- declare class GridAddRowsFooter extends Component<Props$m, SpreadsheetChildEnv> {
7482
+ declare class GridAddRowsFooter extends Component<Props$n, SpreadsheetChildEnv> {
7450
7483
  static template: string;
7451
7484
  static props: {
7452
7485
  focusGrid: FunctionConstructor;
@@ -7470,7 +7503,7 @@ declare class GridAddRowsFooter extends Component<Props$m, SpreadsheetChildEnv>
7470
7503
  private onExternalClick;
7471
7504
  }
7472
7505
 
7473
- interface Props$l {
7506
+ interface Props$m {
7474
7507
  onCellHovered: (position: Partial<Position$1>) => void;
7475
7508
  onCellDoubleClicked: (col: HeaderIndex, row: HeaderIndex) => void;
7476
7509
  onCellClicked: (col: HeaderIndex, row: HeaderIndex, modifiers: GridClickModifiers) => void;
@@ -7480,7 +7513,7 @@ interface Props$l {
7480
7513
  gridOverlayDimensions: string;
7481
7514
  onFigureDeleted: () => void;
7482
7515
  }
7483
- declare class GridOverlay extends Component<Props$l, SpreadsheetChildEnv> {
7516
+ declare class GridOverlay extends Component<Props$m, SpreadsheetChildEnv> {
7484
7517
  static template: string;
7485
7518
  static props: {
7486
7519
  onCellHovered: {
@@ -7538,12 +7571,12 @@ declare class GridOverlay extends Component<Props$l, SpreadsheetChildEnv> {
7538
7571
  private getCartesianCoordinates;
7539
7572
  }
7540
7573
 
7541
- interface Props$k {
7574
+ interface Props$l {
7542
7575
  gridRect: Rect;
7543
7576
  onClosePopover: () => void;
7544
7577
  onMouseWheel: (ev: WheelEvent) => void;
7545
7578
  }
7546
- declare class GridPopover extends Component<Props$k, SpreadsheetChildEnv> {
7579
+ declare class GridPopover extends Component<Props$l, SpreadsheetChildEnv> {
7547
7580
  static template: string;
7548
7581
  static props: {
7549
7582
  onClosePopover: FunctionConstructor;
@@ -7686,13 +7719,13 @@ declare class HeadersOverlay extends Component<any, SpreadsheetChildEnv> {
7686
7719
  }
7687
7720
 
7688
7721
  type Orientation$1 = "n" | "s" | "w" | "e";
7689
- interface Props$j {
7722
+ interface Props$k {
7690
7723
  zone: Zone;
7691
7724
  orientation: Orientation$1;
7692
7725
  isMoving: boolean;
7693
7726
  onMoveHighlight: (x: Pixel, y: Pixel) => void;
7694
7727
  }
7695
- declare class Border extends Component<Props$j, SpreadsheetChildEnv> {
7728
+ declare class Border extends Component<Props$k, SpreadsheetChildEnv> {
7696
7729
  static template: string;
7697
7730
  static props: {
7698
7731
  zone: ObjectConstructor;
@@ -7705,14 +7738,14 @@ declare class Border extends Component<Props$j, SpreadsheetChildEnv> {
7705
7738
  }
7706
7739
 
7707
7740
  type Orientation = "nw" | "ne" | "sw" | "se";
7708
- interface Props$i {
7741
+ interface Props$j {
7709
7742
  zone: Zone;
7710
7743
  color: Color;
7711
7744
  orientation: Orientation;
7712
7745
  isResizing: boolean;
7713
7746
  onResizeHighlight: (isLeft: boolean, isRight: boolean) => void;
7714
7747
  }
7715
- declare class Corner extends Component<Props$i, SpreadsheetChildEnv> {
7748
+ declare class Corner extends Component<Props$j, SpreadsheetChildEnv> {
7716
7749
  static template: string;
7717
7750
  static props: {
7718
7751
  zone: ObjectConstructor;
@@ -7727,14 +7760,14 @@ declare class Corner extends Component<Props$i, SpreadsheetChildEnv> {
7727
7760
  onMouseDown(ev: MouseEvent): void;
7728
7761
  }
7729
7762
 
7730
- interface Props$h {
7763
+ interface Props$i {
7731
7764
  zone: Zone;
7732
7765
  color: Color;
7733
7766
  }
7734
7767
  interface HighlightState {
7735
7768
  shiftingMode: "isMoving" | "isResizing" | "none";
7736
7769
  }
7737
- declare class Highlight extends Component<Props$h, SpreadsheetChildEnv> {
7770
+ declare class Highlight extends Component<Props$i, SpreadsheetChildEnv> {
7738
7771
  static template: string;
7739
7772
  static props: {
7740
7773
  zone: ObjectConstructor;
@@ -7751,7 +7784,7 @@ declare class Highlight extends Component<Props$h, SpreadsheetChildEnv> {
7751
7784
 
7752
7785
  type ScrollDirection = "horizontal" | "vertical";
7753
7786
 
7754
- interface Props$g {
7787
+ interface Props$h {
7755
7788
  width: Pixel;
7756
7789
  height: Pixel;
7757
7790
  direction: ScrollDirection;
@@ -7759,7 +7792,7 @@ interface Props$g {
7759
7792
  offset: Pixel;
7760
7793
  onScroll: (offset: Pixel) => void;
7761
7794
  }
7762
- declare class ScrollBar extends Component<Props$g> {
7795
+ declare class ScrollBar extends Component<Props$h> {
7763
7796
  static props: {
7764
7797
  width: {
7765
7798
  type: NumberConstructor;
@@ -7787,10 +7820,10 @@ declare class ScrollBar extends Component<Props$g> {
7787
7820
  onScroll(ev: any): void;
7788
7821
  }
7789
7822
 
7790
- interface Props$f {
7823
+ interface Props$g {
7791
7824
  leftOffset: number;
7792
7825
  }
7793
- declare class HorizontalScrollBar extends Component<Props$f, SpreadsheetChildEnv> {
7826
+ declare class HorizontalScrollBar extends Component<Props$g, SpreadsheetChildEnv> {
7794
7827
  static props: {
7795
7828
  leftOffset: {
7796
7829
  type: NumberConstructor;
@@ -7816,10 +7849,10 @@ declare class HorizontalScrollBar extends Component<Props$f, SpreadsheetChildEnv
7816
7849
  onScroll(offset: any): void;
7817
7850
  }
7818
7851
 
7819
- interface Props$e {
7852
+ interface Props$f {
7820
7853
  topOffset: number;
7821
7854
  }
7822
- declare class VerticalScrollBar extends Component<Props$e, SpreadsheetChildEnv> {
7855
+ declare class VerticalScrollBar extends Component<Props$f, SpreadsheetChildEnv> {
7823
7856
  static props: {
7824
7857
  topOffset: {
7825
7858
  type: NumberConstructor;
@@ -7845,6 +7878,24 @@ declare class VerticalScrollBar extends Component<Props$e, SpreadsheetChildEnv>
7845
7878
  onScroll(offset: any): void;
7846
7879
  }
7847
7880
 
7881
+ interface Props$e {
7882
+ table: Table;
7883
+ }
7884
+ interface State$6 {
7885
+ highlightZone: Zone | undefined;
7886
+ }
7887
+ declare class TableResizer extends Component<Props$e, SpreadsheetChildEnv> {
7888
+ static template: string;
7889
+ static props: {
7890
+ table: ObjectConstructor;
7891
+ };
7892
+ state: State$6;
7893
+ setup(): void;
7894
+ get containerStyle(): string;
7895
+ onMouseDown(ev: MouseEvent): void;
7896
+ get highlights(): Highlight$1[];
7897
+ }
7898
+
7848
7899
  declare class HoveredCellStore extends SpreadsheetStore {
7849
7900
  col: number | undefined;
7850
7901
  row: number | undefined;
@@ -7884,6 +7935,7 @@ declare class Grid extends Component<Props$d, SpreadsheetChildEnv> {
7884
7935
  Popover: typeof Popover;
7885
7936
  VerticalScrollBar: typeof VerticalScrollBar;
7886
7937
  HorizontalScrollBar: typeof HorizontalScrollBar;
7938
+ TableResizer: typeof TableResizer;
7887
7939
  };
7888
7940
  readonly HEADER_HEIGHT = 26;
7889
7941
  readonly HEADER_WIDTH = 48;
@@ -7938,6 +7990,7 @@ declare class Grid extends Component<Props$d, SpreadsheetChildEnv> {
7938
7990
  private processHeaderGroupingEventOnGrid;
7939
7991
  onComposerCellFocused(content?: string, selection?: ComposerSelection): void;
7940
7992
  onComposerContentFocused(): void;
7993
+ get staticTables(): Table[];
7941
7994
  }
7942
7995
 
7943
7996
  type Direction = "horizontal" | "vertical";
@@ -9203,7 +9256,7 @@ declare const registries: {
9203
9256
  clipboardHandlersRegistries: {
9204
9257
  figureHandlers: Registry<{
9205
9258
  new (getters: Getters, dispatch: {
9206
- <T extends "CUT" | "COPY" | "UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "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" | "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" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "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" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "ACTIVATE_PAINT_FORMAT" | "CANCEL_PAINT_FORMAT" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "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" | "RENDER_CANVAS", C extends Extract<UpdateCellCommand, {
9259
+ <T extends "CUT" | "COPY" | "UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "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" | "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" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "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" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "ACTIVATE_PAINT_FORMAT" | "CANCEL_PAINT_FORMAT" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "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" | "RENDER_CANVAS" | "RESIZE_TABLE", C extends Extract<UpdateCellCommand, {
9207
9260
  type: T;
9208
9261
  }> | Extract<UpdateCellPositionCommand, {
9209
9262
  type: T;
@@ -9399,8 +9452,10 @@ declare const registries: {
9399
9452
  type: T;
9400
9453
  }> | Extract<RenderCanvasCommand, {
9401
9454
  type: T;
9455
+ }> | Extract<ResizeTableCommand, {
9456
+ type: T;
9402
9457
  }>>(type: {} extends Omit<C, "type"> ? T : never): DispatchResult;
9403
- <T_1 extends "CUT" | "COPY" | "UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "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" | "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" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "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" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "ACTIVATE_PAINT_FORMAT" | "CANCEL_PAINT_FORMAT" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "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" | "RENDER_CANVAS", C_1 extends Extract<UpdateCellCommand, {
9458
+ <T_1 extends "CUT" | "COPY" | "UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "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" | "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" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "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" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "ACTIVATE_PAINT_FORMAT" | "CANCEL_PAINT_FORMAT" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "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" | "RENDER_CANVAS" | "RESIZE_TABLE", C_1 extends Extract<UpdateCellCommand, {
9404
9459
  type: T_1;
9405
9460
  }> | Extract<UpdateCellPositionCommand, {
9406
9461
  type: T_1;
@@ -9596,12 +9651,14 @@ declare const registries: {
9596
9651
  type: T_1;
9597
9652
  }> | Extract<RenderCanvasCommand, {
9598
9653
  type: T_1;
9654
+ }> | Extract<ResizeTableCommand, {
9655
+ type: T_1;
9599
9656
  }>>(type: T_1, r: Omit<C_1, "type">): DispatchResult;
9600
9657
  }): AbstractFigureClipboardHandler<any>;
9601
9658
  }>;
9602
9659
  cellHandlers: Registry<{
9603
9660
  new (getters: Getters, dispatch: {
9604
- <T extends "CUT" | "COPY" | "UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "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" | "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" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "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" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "ACTIVATE_PAINT_FORMAT" | "CANCEL_PAINT_FORMAT" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "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" | "RENDER_CANVAS", C extends Extract<UpdateCellCommand, {
9661
+ <T extends "CUT" | "COPY" | "UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "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" | "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" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "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" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "ACTIVATE_PAINT_FORMAT" | "CANCEL_PAINT_FORMAT" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "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" | "RENDER_CANVAS" | "RESIZE_TABLE", C extends Extract<UpdateCellCommand, {
9605
9662
  type: T;
9606
9663
  }> | Extract<UpdateCellPositionCommand, {
9607
9664
  type: T;
@@ -9797,8 +9854,10 @@ declare const registries: {
9797
9854
  type: T;
9798
9855
  }> | Extract<RenderCanvasCommand, {
9799
9856
  type: T;
9857
+ }> | Extract<ResizeTableCommand, {
9858
+ type: T;
9800
9859
  }>>(type: {} extends Omit<C, "type"> ? T : never): DispatchResult;
9801
- <T_1 extends "CUT" | "COPY" | "UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "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" | "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" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "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" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "ACTIVATE_PAINT_FORMAT" | "CANCEL_PAINT_FORMAT" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "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" | "RENDER_CANVAS", C_1 extends Extract<UpdateCellCommand, {
9860
+ <T_1 extends "CUT" | "COPY" | "UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "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" | "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" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "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" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "ACTIVATE_PAINT_FORMAT" | "CANCEL_PAINT_FORMAT" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "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" | "RENDER_CANVAS" | "RESIZE_TABLE", C_1 extends Extract<UpdateCellCommand, {
9802
9861
  type: T_1;
9803
9862
  }> | Extract<UpdateCellPositionCommand, {
9804
9863
  type: T_1;
@@ -9994,6 +10053,8 @@ declare const registries: {
9994
10053
  type: T_1;
9995
10054
  }> | Extract<RenderCanvasCommand, {
9996
10055
  type: T_1;
10056
+ }> | Extract<ResizeTableCommand, {
10057
+ type: T_1;
9997
10058
  }>>(type: T_1, r: Omit<C_1, "type">): DispatchResult;
9998
10059
  }): AbstractCellClipboardHandler<any, any>;
9999
10060
  }>;
@@ -10064,9 +10125,9 @@ declare const components: {
10064
10125
  GridOverlay: typeof GridOverlay;
10065
10126
  ScorecardChart: typeof ScorecardChart;
10066
10127
  LineConfigPanel: typeof LineConfigPanel;
10067
- LineBarPieDesignPanel: typeof LineBarPieDesignPanel;
10128
+ GenericChartDesignPanel: typeof GenericChartDesignPanel;
10068
10129
  BarConfigPanel: typeof BarConfigPanel;
10069
- LineBarPieConfigPanel: typeof LineBarPieConfigPanel;
10130
+ GenericChartConfigPanel: typeof GenericChartConfigPanel;
10070
10131
  GaugeChartConfigPanel: typeof GaugeChartConfigPanel;
10071
10132
  GaugeChartDesignPanel: typeof GaugeChartDesignPanel;
10072
10133
  ScorecardChartConfigPanel: typeof ScorecardChartConfigPanel;
@@ -10109,4 +10170,4 @@ declare const constants: {
10109
10170
  HIGHLIGHT_COLOR: string;
10110
10171
  };
10111
10172
 
10112
- export { AST, ASTFuncall, AboveAverageRule, AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, ActivateNextSheetCommand, ActivatePaintFormatCommand, ActivatePreviousSheetCommand, ActivateSheetCommand, AddColumnsRowsCommand, AddConditionalFormatCommand, AddDataValidationCommand, AddFunctionDescription, AddMergeCommand, Alias, Align, AlphanumericIncrementModifier, AnchorZone, ApplyRangeChange, ApplyRangeChangeResult, Arg, ArgDefinition, ArgType, AutoFillCellCommand, AutofillAutoCommand, AutofillCellData, AutofillCommand, AutofillData, AutofillModifier, AutofillModifierImplementation, AutofillResult, AutofillSelectCommand, AutofillTableCommand, AutoresizeColumnsCommand, AutoresizeRowsCommand, AxisType, BeginsWithRule, BooleanCell, Border$1 as Border, BorderData, BorderDescr, BorderDescription, BorderPosition, BorderStyle, Box, BoxTextContent, CHART_TYPES, CSSProperties, CancelPaintFormatCommand, CancelledReason, Cell, CellData, CellErrorType, CellIsRule, CellPosition, CellValue, CellValueType, ChangeType, ChartCreationContext, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartType, CleanClipBoardHighlightCommand, ClearCellCommand, ClearFormattingCommand, Client, ClientId, ClientJoinedMessage, ClientLeftMessage, ClientMovedMessage, ClientPosition, ClipboardCell, ClipboardCellData, ClipboardContent, ClipboardData, ClipboardFigureData, ClipboardMIMEType, ClipboardOperation, ClipboardOptions, ClipboardPasteOptions, ClipboardPasteTarget, Cloneable, CollaborationMessage, CollaborativeEvent, CollaborativeEventReceived, CollaborativeEventTypes, Color, ColorScaleMidPointThreshold, ColorScaleRule, ColorScaleThreshold, Command, CommandDispatcher, CommandHandler, CommandResult, CommandTypes, CompiledFormula, ComputeFunction, ComputedTableStyle, ConditionalFormat, ConditionalFormatInternal, ConditionalFormatRule, ConditionalFormattingOperatorValues, ConsecutiveIndexes, ContainsTextRule, CopyCommand, CopyModifier, CopyPasteCellsAboveCommand, CopyPasteCellsOnLeftCommand, CoreCommand, CoreCommandDispatcher, CoreCommandTypes, CoreGetters, CorePlugin, CoreTable, CoreTableType, CoreViewCommand, CoreViewCommandTypes, CreateChartCommand, CreateFigureCommand, CreateImageOverCommand, CreateRevisionOptions, CreateSheetCommand, CreateTableCommand, Currency, CustomFormulaCriterion, CutCommand, DEFAULT_LOCALE, DEFAULT_LOCALES, DIRECTION, DOMCoordinates, DOMDimension, DataSet, DataValidationCriterion, DataValidationCriterionType, DataValidationDateCriterion, DataValidationRule, DataValidationRuleData, DatasetValues, DateCriterionValue, DateIsAfterCriterion, DateIsBeforeCriterion, DateIsBetweenCriterion, DateIsCriterion, DateIsNotBetweenCriterion, DateIsOnOrAfterCriterion, DateIsOnOrBeforeCriterion, DateIsValidCriterion, DebouncedFunction, DeleteCellCommand, DeleteContentCommand, DeleteFigureCommand, DeleteSheetCommand, Dependencies, Dimension, Direction$1 as Direction, DispatchResult, DuplicateSheetCommand, DynamicTable, EdgeScrollInfo, EditTextOptions, EmptyCell, EndsWithRule, EnrichedToken, EnsureRange, ErrorCell, EvalContext, EvaluateCellsCommand, EvaluatedCell, EvaluationError, ExcelCellData, ExcelChartDataset, ExcelChartDefinition, ExcelChartType, ExcelFigureSize, ExcelFilterData, ExcelHeaderData, ExcelSheetData, ExcelTableData, ExcelWorkbookData, ExpressionRule, FPayload, FPayloadNumber, Figure, FigureData, FigureSize, Filter, FilterId, FoldAllHeaderGroupsCommand, FoldHeaderGroupCommand, FoldHeaderGroupsInZoneCommand, Format, FormattedValue, FormulaCell, FormulaModifier, FormulaToExecute, FreezeColumnsCommand, FreezeRowsCommand, FunctionDescription, FunctionRegistry, GeneratorCell, Getters, GridClickModifiers, GridRenderingContext, GroupHeadersCommand, HSLA, HeaderData, HeaderDimensions, HeaderGroup, HeaderIndex, HeadersDependentCommand, HideColumnsRowsCommand, HideSheetCommand, Highlight$1 as Highlight, HistoryChange, IconSet, IconSetRule, IconThreshold, Image, Immutable, Increment, IncrementModifier, InformationNotification, InsertCellCommand, IsBetweenCriterion, IsCheckboxCriterion, IsEqualCriterion, IsGreaterOrEqualToCriterion, IsGreaterThanCriterion, IsLessOrEqualToCriterion, IsLessThanCriterion, IsNotBetweenCriterion, IsNotEqualCriterion, IsValueInListCriterion, IsValueInRangeCriterion, LabelValues, LayerName, Lazy, Link, LiteralCell, LocalCommand, Locale, LocaleCode, LocaleFormat, Matrix, Maybe, MenuMouseEvent, Merge, Model, MoveColumnsRowsCommand, MoveConditionalFormatCommand, MoveRangeCommand, MoveSheetCommand, MoveViewportDownCommand, MoveViewportToCellCommand, MoveViewportUpCommand, NewLocalStateUpdateEvent, NotContainsTextRule, NotificationType, NumberCell, Offset, OperationSequenceNode, OrderedLayers, PLAIN_TEXT_FORMAT, PaneDivision, PasteCommand, PasteFromOSClipboardCommand, Pixel, PixelPosition, Position$1 as Position, PositionDependentCommand, PropsOf, RGBA, Range, RangeCompiledFormula, RangeData, RangePart, RangeProvider, RangesDependentCommand, Rect, RedoCommand, Ref, ReferenceDenormalizer, Registry, RemoteRevisionMessage, RemoteRevisionReceivedEvent, RemoveColumnsRowsCommand, RemoveConditionalFormatCommand, RemoveDataValidationCommand, RemoveDuplicatesCommand, RemoveMergeCommand, RemoveTableCommand, RenameSheetCommand, RenderCanvasCommand, RepeatPasteCommand, ReplaceSearchCommand, RequestRedoCommand, RequestUndoCommand, ResizeColumnsRowsCommand, ResizeDirection, ResizeViewportCommand, Revision, RevisionAcknowledgedEvent, RevisionData, RevisionRedone, RevisionRedoneMessage, RevisionUndone, RevisionUndoneMessage, RevisionsDroppedEvent, Row, SPREADSHEET_DIMENSIONS, ScrollDirection$1 as ScrollDirection, SelectFigureCommand, Selection, SelectionStep, SetBorderCommand, SetDecimalCommand, SetDecimalStep, SetFormattingCommand, SetGridLinesVisibilityCommand, SetViewportOffsetCommand, SetZoneBordersCommand, Sheet, SheetDOMScrollInfo, SheetData, SheetDependentCommand, SheetScrollInfo, ShowFormulaCommand, ShowSheetCommand, SingleColorRule, SingleColorRules, SnapshotEvent, SortCommand, SortDirection, SortOptions, SplitTextIntoColumnsCommand, Spreadsheet, SpreadsheetChildEnv, SpreadsheetEnv, StartChangeHighlightCommand, StartCommand, StaticTable, StoreConstructor, StoreParams, Style, SumSelectionCommand, Table, TableConfig, TableData, TableElementStyle, TableId, TableStyle, TargetDependentCommand, TextCell, TextContainsCriterion, TextIsCriterion, TextIsEmailCriterion, TextIsLinkCriterion, TextNotContainsCriterion, TextRule, ThresholdType, TimePeriodRule, Token, Tooltip, Top10Rule, Transformation, TransformationFactory, TransportService, TrimWhitespaceCommand, UID, UIPlugin, UnGroupHeadersCommand, UnboundedZone, UndoCommand, UnexpectedRevisionIdEvent, UnfoldAllHeaderGroupsCommand, UnfoldHeaderGroupCommand, UnfoldHeaderGroupsInZoneCommand, UnfreezeColumnsCommand, UnfreezeColumnsRowsCommand, UnfreezeRowsCommand, UnhideColumnsRowsCommand, UpdateCellCommand, UpdateCellData, UpdateCellPositionCommand, UpdateChartCommand, UpdateFigureCommand, UpdateFilterCommand, UpdateLocaleCommand, UpdateTableCommand, Validation, VerticalAlign, Viewport, WorkbookData, WorkbookHistory, Wrapping, Zone, ZoneDependentCommand, ZoneDimension, __info__, addFunction, addRenderingLayer, astToFormula, borderStyles, canExecuteInReadonly, compile, compileTokens, components, constants, containsBlanksRule, containsErrorsRule, convertAstNodes, coreTypes, findCellInNewZone, functionCache, helpers, hooks, invalidateBordersCommands, invalidateCFEvaluationCommands, invalidateDependenciesCommands, invalidateEvaluationCommands, isCoreCommand, isHeadersDependant, isMatrix, isPositionDependent, isRangeDependant, isSheetDependent, isTargetDependent, isZoneDependent, iterateAstNodes, links, load, notContainsBlanksRule, notContainsErrorsRule, parse, parseTokens, readonlyAllowedCommands, registries, setDefaultSheetViewSize, setTranslationMethod, stores, tokenColors, tokenize };
10173
+ export { AST, ASTFuncall, AboveAverageRule, AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, ActivateNextSheetCommand, ActivatePaintFormatCommand, ActivatePreviousSheetCommand, ActivateSheetCommand, AddColumnsRowsCommand, AddConditionalFormatCommand, AddDataValidationCommand, AddFunctionDescription, AddMergeCommand, Alias, Align, AlphanumericIncrementModifier, AnchorZone, ApplyRangeChange, ApplyRangeChangeResult, Arg, ArgDefinition, ArgType, AutoFillCellCommand, AutofillAutoCommand, AutofillCellData, AutofillCommand, AutofillData, AutofillModifier, AutofillModifierImplementation, AutofillResult, AutofillSelectCommand, AutofillTableCommand, AutoresizeColumnsCommand, AutoresizeRowsCommand, AxisType, BeginsWithRule, BooleanCell, Border$1 as Border, BorderData, BorderDescr, BorderDescription, BorderPosition, BorderStyle, Box, BoxTextContent, CHART_TYPES, CSSProperties, CancelPaintFormatCommand, CancelledReason, Cell, CellData, CellErrorType, CellIsRule, CellPosition, CellValue, CellValueType, ChangeType, ChartCreationContext, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartType, ChartWithAxisDefinition, CleanClipBoardHighlightCommand, ClearCellCommand, ClearFormattingCommand, Client, ClientId, ClientJoinedMessage, ClientLeftMessage, ClientMovedMessage, ClientPosition, ClipboardCell, ClipboardCellData, ClipboardContent, ClipboardData, ClipboardFigureData, ClipboardMIMEType, ClipboardOperation, ClipboardOptions, ClipboardPasteOptions, ClipboardPasteTarget, Cloneable, CollaborationMessage, CollaborativeEvent, CollaborativeEventReceived, CollaborativeEventTypes, Color, ColorScaleMidPointThreshold, ColorScaleRule, ColorScaleThreshold, Command, CommandDispatcher, CommandHandler, CommandResult, CommandTypes, CompiledFormula, ComputeFunction, ComputedTableStyle, ConditionalFormat, ConditionalFormatInternal, ConditionalFormatRule, ConditionalFormattingOperatorValues, ConsecutiveIndexes, ContainsTextRule, CopyCommand, CopyModifier, CopyPasteCellsAboveCommand, CopyPasteCellsOnLeftCommand, CoreCommand, CoreCommandDispatcher, CoreCommandTypes, CoreGetters, CorePlugin, CoreTable, CoreTableType, CoreViewCommand, CoreViewCommandTypes, CreateChartCommand, CreateFigureCommand, CreateImageOverCommand, CreateRevisionOptions, CreateSheetCommand, CreateTableCommand, Currency, CustomFormulaCriterion, CutCommand, DEFAULT_LOCALE, DEFAULT_LOCALES, DIRECTION, DOMCoordinates, DOMDimension, DataSet, DataValidationCriterion, DataValidationCriterionType, DataValidationDateCriterion, DataValidationRule, DataValidationRuleData, DatasetValues, DateCriterionValue, DateIsAfterCriterion, DateIsBeforeCriterion, DateIsBetweenCriterion, DateIsCriterion, DateIsNotBetweenCriterion, DateIsOnOrAfterCriterion, DateIsOnOrBeforeCriterion, DateIsValidCriterion, DebouncedFunction, DeleteCellCommand, DeleteContentCommand, DeleteFigureCommand, DeleteSheetCommand, Dependencies, Dimension, Direction$1 as Direction, DispatchResult, DuplicateSheetCommand, DynamicTable, EdgeScrollInfo, EditTextOptions, EmptyCell, EndsWithRule, EnrichedToken, EnsureRange, ErrorCell, EvalContext, EvaluateCellsCommand, EvaluatedCell, EvaluationError, ExcelCellData, ExcelChartDataset, ExcelChartDefinition, ExcelChartType, ExcelFigureSize, ExcelFilterData, ExcelHeaderData, ExcelSheetData, ExcelTableData, ExcelWorkbookData, ExpressionRule, FPayload, FPayloadNumber, Figure, FigureData, FigureSize, Filter, FilterId, FoldAllHeaderGroupsCommand, FoldHeaderGroupCommand, FoldHeaderGroupsInZoneCommand, Format, FormattedValue, FormulaCell, FormulaModifier, FormulaToExecute, FreezeColumnsCommand, FreezeRowsCommand, FunctionDescription, FunctionRegistry, GeneratorCell, Getters, GridClickModifiers, GridRenderingContext, GroupHeadersCommand, HSLA, HeaderData, HeaderDimensions, HeaderGroup, HeaderIndex, HeadersDependentCommand, HideColumnsRowsCommand, HideSheetCommand, Highlight$1 as Highlight, HistoryChange, IconSet, IconSetRule, IconThreshold, Image, Immutable, Increment, IncrementModifier, InformationNotification, InsertCellCommand, IsBetweenCriterion, IsCheckboxCriterion, IsEqualCriterion, IsGreaterOrEqualToCriterion, IsGreaterThanCriterion, IsLessOrEqualToCriterion, IsLessThanCriterion, IsNotBetweenCriterion, IsNotEqualCriterion, IsValueInListCriterion, IsValueInRangeCriterion, LabelValues, LayerName, Lazy, Link, LiteralCell, LocalCommand, Locale, LocaleCode, LocaleFormat, Matrix, Maybe, MenuMouseEvent, Merge, Model, MoveColumnsRowsCommand, MoveConditionalFormatCommand, MoveRangeCommand, MoveSheetCommand, MoveViewportDownCommand, MoveViewportToCellCommand, MoveViewportUpCommand, NewLocalStateUpdateEvent, NotContainsTextRule, NotificationType, NumberCell, Offset, OperationSequenceNode, OrderedLayers, PLAIN_TEXT_FORMAT, PaneDivision, PasteCommand, PasteFromOSClipboardCommand, Pixel, PixelPosition, Position$1 as Position, PositionDependentCommand, PropsOf, RGBA, Range, RangeCompiledFormula, RangeData, RangePart, RangeProvider, RangesDependentCommand, Rect, RedoCommand, Ref, ReferenceDenormalizer, Registry, RemoteRevisionMessage, RemoteRevisionReceivedEvent, RemoveColumnsRowsCommand, RemoveConditionalFormatCommand, RemoveDataValidationCommand, RemoveDuplicatesCommand, RemoveMergeCommand, RemoveTableCommand, RenameSheetCommand, RenderCanvasCommand, RepeatPasteCommand, ReplaceSearchCommand, RequestRedoCommand, RequestUndoCommand, ResizeColumnsRowsCommand, ResizeDirection, ResizeTableCommand, ResizeViewportCommand, Revision, RevisionAcknowledgedEvent, RevisionData, RevisionRedone, RevisionRedoneMessage, RevisionUndone, RevisionUndoneMessage, RevisionsDroppedEvent, Row, SPREADSHEET_DIMENSIONS, ScrollDirection$1 as ScrollDirection, SelectFigureCommand, Selection, SelectionStep, SetBorderCommand, SetDecimalCommand, SetDecimalStep, SetFormattingCommand, SetGridLinesVisibilityCommand, SetViewportOffsetCommand, SetZoneBordersCommand, Sheet, SheetDOMScrollInfo, SheetData, SheetDependentCommand, SheetScrollInfo, ShowFormulaCommand, ShowSheetCommand, SingleColorRule, SingleColorRules, SnapshotEvent, SortCommand, SortDirection, SortOptions, SplitTextIntoColumnsCommand, Spreadsheet, SpreadsheetChildEnv, SpreadsheetEnv, StartChangeHighlightCommand, StartCommand, StaticTable, StoreConstructor, StoreParams, Style, SumSelectionCommand, Table, TableConfig, TableData, TableElementStyle, TableId, TableStyle, TargetDependentCommand, TextCell, TextContainsCriterion, TextIsCriterion, TextIsEmailCriterion, TextIsLinkCriterion, TextNotContainsCriterion, TextRule, ThresholdType, TimePeriodRule, Token, Tooltip, Top10Rule, Transformation, TransformationFactory, TransportService, TrimWhitespaceCommand, UID, UIPlugin, UnGroupHeadersCommand, UnboundedZone, UndoCommand, UnexpectedRevisionIdEvent, UnfoldAllHeaderGroupsCommand, UnfoldHeaderGroupCommand, UnfoldHeaderGroupsInZoneCommand, UnfreezeColumnsCommand, UnfreezeColumnsRowsCommand, UnfreezeRowsCommand, UnhideColumnsRowsCommand, UpdateCellCommand, UpdateCellData, UpdateCellPositionCommand, UpdateChartCommand, UpdateFigureCommand, UpdateFilterCommand, UpdateLocaleCommand, UpdateTableCommand, Validation, VerticalAlign, Viewport, WorkbookData, WorkbookHistory, Wrapping, Zone, ZoneDependentCommand, ZoneDimension, __info__, addFunction, addRenderingLayer, astToFormula, borderStyles, canExecuteInReadonly, compile, compileTokens, components, constants, containsBlanksRule, containsErrorsRule, convertAstNodes, coreTypes, findCellInNewZone, functionCache, helpers, hooks, invalidateBordersCommands, invalidateCFEvaluationCommands, invalidateDependenciesCommands, invalidateEvaluationCommands, isCoreCommand, isHeadersDependant, isMatrix, isPositionDependent, isRangeDependant, isSheetDependent, isTargetDependent, isZoneDependent, iterateAstNodes, links, load, notContainsBlanksRule, notContainsErrorsRule, parse, parseTokens, readonlyAllowedCommands, registries, setDefaultSheetViewSize, setTranslationMethod, stores, tokenColors, tokenize };