@odoo/o-spreadsheet 18.4.0-alpha.2 → 18.4.0-alpha.3

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.
@@ -68,8 +68,7 @@ type XlsxHexColor = string & Alias;
68
68
 
69
69
  type VerticalAxisPosition = "left" | "right";
70
70
  type LegendPosition = "top" | "bottom" | "left" | "right" | "none";
71
-
72
- interface ComboBarChartDefinition {
71
+ interface CommonChartDefinition {
73
72
  readonly dataSets: CustomizedDataSet[];
74
73
  readonly dataSetsHaveTitle: boolean;
75
74
  readonly labelRange?: string;
@@ -81,6 +80,9 @@ interface ComboBarChartDefinition {
81
80
  readonly showValues?: boolean;
82
81
  }
83
82
 
83
+ interface ComboBarChartDefinition extends CommonChartDefinition {
84
+ }
85
+
84
86
  interface BarChartDefinition extends ComboBarChartDefinition {
85
87
  readonly type: "bar";
86
88
  readonly stacked: boolean;
@@ -199,35 +201,21 @@ interface GeoChartRuntimeGenerationArgs extends ChartRuntimeGenerationArgs {
199
201
  geoFeatureNameToId: (region: string, featureName: string) => string | undefined;
200
202
  }
201
203
 
202
- interface LineChartDefinition {
204
+ interface LineChartDefinition extends CommonChartDefinition {
203
205
  readonly type: "line";
204
- readonly dataSets: CustomizedDataSet[];
205
- readonly dataSetsHaveTitle: boolean;
206
- readonly labelRange?: string;
207
- readonly title: TitleDesign;
208
- readonly background?: Color;
209
- readonly legendPosition: LegendPosition;
210
206
  readonly labelsAsText: boolean;
211
207
  readonly stacked: boolean;
212
208
  readonly aggregated?: boolean;
213
209
  readonly cumulative: boolean;
214
- readonly axesDesign?: AxesDesign;
215
210
  readonly fillArea?: boolean;
216
- readonly showValues?: boolean;
217
211
  }
218
212
  type LineChartRuntime = {
219
213
  chartJsConfig: ChartConfiguration;
220
214
  background: Color;
221
215
  };
222
216
 
223
- interface PieChartDefinition {
217
+ interface PieChartDefinition extends CommonChartDefinition {
224
218
  readonly type: "pie";
225
- readonly dataSets: CustomizedDataSet[];
226
- readonly dataSetsHaveTitle: boolean;
227
- readonly labelRange?: string;
228
- readonly title: TitleDesign;
229
- readonly background?: Color;
230
- readonly legendPosition: LegendPosition;
231
219
  readonly aggregated?: boolean;
232
220
  readonly isDoughnut?: boolean;
233
221
  readonly showValues?: boolean;
@@ -246,19 +234,11 @@ type PyramidChartRuntime = {
246
234
  background: Color;
247
235
  };
248
236
 
249
- interface RadarChartDefinition {
250
- readonly dataSets: CustomizedDataSet[];
251
- readonly dataSetsHaveTitle: boolean;
252
- readonly labelRange?: string;
253
- readonly title: TitleDesign;
254
- readonly background?: Color;
255
- readonly legendPosition: LegendPosition;
256
- readonly aggregated?: boolean;
237
+ interface RadarChartDefinition extends CommonChartDefinition {
257
238
  readonly type: "radar";
239
+ readonly aggregated?: boolean;
258
240
  readonly stacked: boolean;
259
- readonly axesDesign?: AxesDesign;
260
241
  readonly fillArea?: boolean;
261
- readonly showValues?: boolean;
262
242
  }
263
243
  type RadarChartRuntime = {
264
244
  chartJsConfig: ChartConfiguration;
@@ -474,15 +454,9 @@ type TreeMapChartRuntime = {
474
454
  background: Color;
475
455
  };
476
456
 
477
- interface WaterfallChartDefinition {
457
+ interface WaterfallChartDefinition extends CommonChartDefinition {
478
458
  readonly type: "waterfall";
479
- readonly dataSets: CustomizedDataSet[];
480
- readonly dataSetsHaveTitle: boolean;
481
- readonly labelRange?: string;
482
- readonly title: TitleDesign;
483
- readonly background?: Color;
484
459
  readonly verticalAxisPosition: VerticalAxisPosition;
485
- readonly legendPosition: LegendPosition;
486
460
  readonly aggregated?: boolean;
487
461
  readonly showSubTotals: boolean;
488
462
  readonly showConnectorLines: boolean;
@@ -490,8 +464,6 @@ interface WaterfallChartDefinition {
490
464
  readonly positiveValuesColor?: Color;
491
465
  readonly negativeValuesColor?: Color;
492
466
  readonly subTotalValuesColor?: Color;
493
- readonly axesDesign?: AxesDesign;
494
- readonly showValues?: boolean;
495
467
  }
496
468
  type WaterfallChartRuntime = {
497
469
  chartJsConfig: ChartConfiguration;
@@ -557,6 +529,7 @@ type CustomizedDataSet = {
557
529
  readonly trend?: TrendConfiguration;
558
530
  } & DatasetDesign;
559
531
  type AxisType = "category" | "linear" | "time";
532
+ type ChartDatasetOrientation = "rows" | "columns";
560
533
  interface DataSet {
561
534
  readonly labelCell?: Range;
562
535
  readonly dataRange: Range;
@@ -948,7 +921,8 @@ interface Top10Rule extends SingleColorRule {
948
921
  bottom: boolean;
949
922
  rank: number;
950
923
  }
951
- type ConditionalFormattingOperatorValues = "BeginsWith" | "Between" | "ContainsText" | "IsEmpty" | "IsNotEmpty" | "EndsWith" | "Equal" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "NotBetween" | "NotContains" | "NotEqual";
924
+ type ConditionalFormattingOperatorValues = "beginsWithText" | "isBetween" | "containsText" | "isEmpty" | "isNotEmpty" | "endsWithText" | "isEqual" | "isGreaterThan" | "isGreaterOrEqualTo" | "isLessThan" | "isLessOrEqualTo" | "isNotBetween" | "notContainsText" | "isNotEqual";
925
+ declare const availableConditionalFormatOperators: Set<ConditionalFormattingOperatorValues>;
952
926
 
953
927
  declare const PREVIOUS_VALUE = "(previous)";
954
928
  declare const NEXT_VALUE = "(next)";
@@ -1092,6 +1066,20 @@ interface DimensionTreeNode {
1092
1066
  }
1093
1067
  type DimensionTree = DimensionTreeNode[];
1094
1068
 
1069
+ interface GenericCriterion {
1070
+ type: GenericCriterionType;
1071
+ values: string[];
1072
+ }
1073
+ type GenericDateCriterion = GenericCriterion & {
1074
+ dateValue: DateCriterionValue;
1075
+ };
1076
+ type GenericCriterionType = "containsText" | "notContainsText" | "isEqualText" | "isEmail" | "isLink" | "dateIs" | "dateIsBefore" | "dateIsOnOrBefore" | "dateIsAfter" | "dateIsOnOrAfter" | "dateIsBetween" | "dateIsNotBetween" | "dateIsValid" | "isEqual" | "isNotEqual" | "isGreaterThan" | "isGreaterOrEqualTo" | "isLessThan" | "isLessOrEqualTo" | "isBetween" | "isNotBetween" | "isBoolean" | "isValueInList" | "isValueInRange" | "customFormula" | "beginsWithText" | "endsWithText" | "isNotEmpty" | "isEmpty";
1077
+ type DateCriterionValue = "today" | "tomorrow" | "yesterday" | "lastWeek" | "lastMonth" | "lastYear" | "exactDate";
1078
+ type EvaluatedCriterion<T extends GenericCriterion = GenericCriterion> = Omit<T, "values"> & {
1079
+ values: CellValue[];
1080
+ };
1081
+ type EvaluatedDateCriterion = EvaluatedCriterion<GenericDateCriterion>;
1082
+
1095
1083
  interface Table {
1096
1084
  readonly id: TableId;
1097
1085
  readonly range: Range;
@@ -1155,6 +1143,23 @@ interface TableStyle {
1155
1143
  totalRow?: TableElementStyle;
1156
1144
  }
1157
1145
  type TableStyleTemplateName = "none" | "lightColoredText" | "lightAllBorders" | "mediumAllBorders" | "lightWithHeader" | "mediumBandedBorders" | "mediumMinimalBorders" | "darkNoBorders" | "mediumWhiteBorders" | "dark";
1146
+ declare const filterCriterions: GenericCriterionType[];
1147
+ type FilterCriterionType = (typeof filterCriterions)[number];
1148
+ declare const availableFiltersOperators: Set<FilterCriterionType>;
1149
+ declare const filterTextCriterionOperators: FilterCriterionType[];
1150
+ declare const filterNumberCriterionOperators: FilterCriterionType[];
1151
+ declare const filterDateCriterionOperators: FilterCriterionType[];
1152
+ interface ValuesFilter {
1153
+ filterType: "values";
1154
+ hiddenValues: string[];
1155
+ }
1156
+ interface CriterionFilter {
1157
+ filterType: "criterion";
1158
+ type: FilterCriterionType | "none";
1159
+ values: string[];
1160
+ dateValue?: DateCriterionValue;
1161
+ }
1162
+ type DataFilterValue = ValuesFilter | CriterionFilter;
1158
1163
 
1159
1164
  interface Dependencies {
1160
1165
  references: string[];
@@ -1202,7 +1207,7 @@ interface SheetData {
1202
1207
  };
1203
1208
  conditionalFormats: ConditionalFormat[];
1204
1209
  dataValidationRules: DataValidationRuleData[];
1205
- tables: TableData[];
1210
+ tables: TableData$1[];
1206
1211
  areGridLinesVisible?: boolean;
1207
1212
  isVisible: boolean;
1208
1213
  panes?: PaneDivision;
@@ -1262,7 +1267,7 @@ interface ExcelHeaderData extends HeaderData {
1262
1267
  outlineLevel?: number;
1263
1268
  collapsed?: boolean;
1264
1269
  }
1265
- interface TableData {
1270
+ interface TableData$1 {
1266
1271
  range: string;
1267
1272
  config?: TableConfig;
1268
1273
  type?: CoreTableType;
@@ -2188,7 +2193,7 @@ declare class ClipboardPlugin extends UIPlugin {
2188
2193
  }
2189
2194
 
2190
2195
  declare class FilterEvaluationPlugin extends UIPlugin {
2191
- static getters: readonly ["getFilterHiddenValues", "getFirstTableInSelection", "isRowFiltered", "isFilterActive"];
2196
+ static getters: readonly ["getFilterValue", "getFilterHiddenValues", "getFilterCriterionValue", "getFirstTableInSelection", "isRowFiltered", "isFilterActive"];
2192
2197
  private filterValues;
2193
2198
  hiddenRows: Record<UID, Set<number> | undefined>;
2194
2199
  isEvaluationDirty: boolean;
@@ -2196,7 +2201,9 @@ declare class FilterEvaluationPlugin extends UIPlugin {
2196
2201
  handle(cmd: Command): void;
2197
2202
  finalize(): void;
2198
2203
  isRowFiltered(sheetId: UID, row: number): boolean;
2204
+ getFilterValue(position: CellPosition): DataFilterValue | undefined;
2199
2205
  getFilterHiddenValues(position: CellPosition): string[];
2206
+ getFilterCriterionValue(position: CellPosition): CriterionFilter;
2200
2207
  isFilterActive(position: CellPosition): boolean;
2201
2208
  getFirstTableInSelection(): Table | undefined;
2202
2209
  private updateFilter;
@@ -2653,12 +2660,12 @@ interface ZoneDependentCommand {
2653
2660
  zone: Zone;
2654
2661
  }
2655
2662
  declare function isZoneDependent(cmd: CoreCommand): cmd is Extract<CoreCommand, ZoneDependentCommand>;
2656
- declare const invalidateEvaluationCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT">;
2657
- declare const invalidateChartEvaluationCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT">;
2658
- declare const invalidateDependenciesCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT">;
2659
- declare const invalidateCFEvaluationCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT">;
2660
- declare const invalidateBordersCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT">;
2661
- declare const readonlyAllowedCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT">;
2663
+ declare const invalidateEvaluationCommands: Set<"ACTIVATE_SHEET" | "UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING" | "TOGGLE_CHECKBOX">;
2664
+ declare const invalidateChartEvaluationCommands: Set<"ACTIVATE_SHEET" | "UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING" | "TOGGLE_CHECKBOX">;
2665
+ declare const invalidateDependenciesCommands: Set<"ACTIVATE_SHEET" | "UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING" | "TOGGLE_CHECKBOX">;
2666
+ declare const invalidateCFEvaluationCommands: Set<"ACTIVATE_SHEET" | "UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING" | "TOGGLE_CHECKBOX">;
2667
+ declare const invalidateBordersCommands: Set<"ACTIVATE_SHEET" | "UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING" | "TOGGLE_CHECKBOX">;
2668
+ declare const readonlyAllowedCommands: Set<"ACTIVATE_SHEET" | "UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING" | "TOGGLE_CHECKBOX">;
2662
2669
  declare const coreTypes: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT">;
2663
2670
  declare function isCoreCommand(cmd: Command): cmd is CoreCommand;
2664
2671
  declare function canExecuteInReadonly(cmd: Command): boolean;
@@ -2878,7 +2885,7 @@ interface RemoveTableStyleCommand {
2878
2885
  }
2879
2886
  interface UpdateFilterCommand extends PositionDependentCommand {
2880
2887
  type: "UPDATE_FILTER";
2881
- hiddenValues: string[];
2888
+ value: DataFilterValue;
2882
2889
  }
2883
2890
  interface SetFormattingCommand extends TargetDependentCommand {
2884
2891
  type: "SET_FORMATTING";
@@ -3217,6 +3224,16 @@ interface PaintFormat extends TargetDependentCommand {
3217
3224
  interface DeleteUnfilteredContentCommand extends TargetDependentCommand {
3218
3225
  type: "DELETE_UNFILTERED_CONTENT";
3219
3226
  }
3227
+ interface PivotStartPresenceTracking {
3228
+ type: "PIVOT_START_PRESENCE_TRACKING";
3229
+ pivotId: UID;
3230
+ }
3231
+ interface PivotStopPresenceTracking {
3232
+ type: "PIVOT_STOP_PRESENCE_TRACKING";
3233
+ }
3234
+ interface ToggleCheckboxCommand extends TargetDependentCommand {
3235
+ type: "TOGGLE_CHECKBOX";
3236
+ }
3220
3237
  type CoreCommand =
3221
3238
  /** CELLS */
3222
3239
  UpdateCellCommand | UpdateCellPositionCommand | ClearCellCommand | ClearCellsCommand | DeleteContentCommand
@@ -3248,7 +3265,7 @@ UpdateCellCommand | UpdateCellPositionCommand | ClearCellCommand | ClearCellsCom
3248
3265
  | UpdateLocaleCommand
3249
3266
  /** PIVOT */
3250
3267
  | AddPivotCommand | UpdatePivotCommand | InsertPivotCommand | RenamePivotCommand | RemovePivotCommand | DuplicatePivotCommand;
3251
- type LocalCommand = RequestUndoCommand | RequestRedoCommand | UndoCommand | RedoCommand | CopyCommand | CutCommand | PasteCommand | CopyPasteCellsAboveCommand | CopyPasteCellsOnLeftCommand | RepeatPasteCommand | CleanClipBoardHighlightCommand | AutoFillCellCommand | PasteFromOSClipboardCommand | AutoresizeColumnsCommand | AutoresizeRowsCommand | MoveColumnsRowsCommand | ActivateSheetCommand | EvaluateCellsCommand | EvaluateChartsCommand | StartChangeHighlightCommand | StartCommand | AutofillCommand | AutofillSelectCommand | AutofillTableCommand | ShowFormulaCommand | AutofillAutoCommand | SelectFigureCommand | ReplaceSearchCommand | SortCommand | SetDecimalCommand | SetContextualFormatCommand | ResizeViewportCommand | SumSelectionCommand | DeleteCellCommand | InsertCellCommand | SetViewportOffsetCommand | MoveViewportDownCommand | MoveViewportUpCommand | MoveViewportToCellCommand | ActivateNextSheetCommand | ActivatePreviousSheetCommand | UpdateFilterCommand | SplitTextIntoColumnsCommand | RemoveDuplicatesCommand | TrimWhitespaceCommand | ResizeTableCommand | RefreshPivotCommand | InsertNewPivotCommand | DuplicatePivotInNewSheetCommand | InsertPivotWithTableCommand | SplitPivotFormulaCommand | PaintFormat | DeleteUnfilteredContentCommand;
3268
+ type LocalCommand = RequestUndoCommand | RequestRedoCommand | UndoCommand | RedoCommand | CopyCommand | CutCommand | PasteCommand | CopyPasteCellsAboveCommand | CopyPasteCellsOnLeftCommand | RepeatPasteCommand | CleanClipBoardHighlightCommand | AutoFillCellCommand | PasteFromOSClipboardCommand | AutoresizeColumnsCommand | AutoresizeRowsCommand | MoveColumnsRowsCommand | ActivateSheetCommand | EvaluateCellsCommand | EvaluateChartsCommand | StartChangeHighlightCommand | StartCommand | AutofillCommand | AutofillSelectCommand | AutofillTableCommand | ShowFormulaCommand | AutofillAutoCommand | SelectFigureCommand | ReplaceSearchCommand | SortCommand | SetDecimalCommand | SetContextualFormatCommand | ResizeViewportCommand | SumSelectionCommand | DeleteCellCommand | InsertCellCommand | SetViewportOffsetCommand | MoveViewportDownCommand | MoveViewportUpCommand | MoveViewportToCellCommand | ActivateNextSheetCommand | ActivatePreviousSheetCommand | UpdateFilterCommand | SplitTextIntoColumnsCommand | RemoveDuplicatesCommand | TrimWhitespaceCommand | ResizeTableCommand | RefreshPivotCommand | InsertNewPivotCommand | DuplicatePivotInNewSheetCommand | InsertPivotWithTableCommand | SplitPivotFormulaCommand | PaintFormat | DeleteUnfilteredContentCommand | PivotStartPresenceTracking | PivotStopPresenceTracking | ToggleCheckboxCommand;
3252
3269
  type Command = CoreCommand | LocalCommand;
3253
3270
  /**
3254
3271
  * Holds the result of a command dispatch.
@@ -3993,23 +4010,23 @@ interface DataValidationRule {
3993
4010
  isBlocking?: boolean;
3994
4011
  }
3995
4012
  type TextContainsCriterion = {
3996
- type: "textContains";
4013
+ type: "containsText";
3997
4014
  values: string[];
3998
4015
  };
3999
4016
  type TextNotContainsCriterion = {
4000
- type: "textNotContains";
4017
+ type: "notContainsText";
4001
4018
  values: string[];
4002
4019
  };
4003
4020
  type TextIsCriterion = {
4004
- type: "textIs";
4021
+ type: "isEqualText";
4005
4022
  values: string[];
4006
4023
  };
4007
4024
  type TextIsEmailCriterion = {
4008
- type: "textIsEmail";
4025
+ type: "isEmail";
4009
4026
  values: string[];
4010
4027
  };
4011
4028
  type TextIsLinkCriterion = {
4012
- type: "textIsLink";
4029
+ type: "isLink";
4013
4030
  values: string[];
4014
4031
  };
4015
4032
  type DateIsCriterion = {
@@ -4100,11 +4117,11 @@ type CustomFormulaCriterion = {
4100
4117
  values: string[];
4101
4118
  };
4102
4119
  type DataValidationCriterion = TextContainsCriterion | TextNotContainsCriterion | TextIsCriterion | TextIsEmailCriterion | TextIsLinkCriterion | IsBetweenCriterion | DateIsCriterion | DateIsBeforeCriterion | DateIsOnOrBeforeCriterion | DateIsAfterCriterion | DateIsOnOrAfterCriterion | DateIsBetweenCriterion | DateIsNotBetweenCriterion | DateIsValidCriterion | IsEqualCriterion | IsNotEqualCriterion | IsGreaterThanCriterion | IsGreaterOrEqualToCriterion | IsLessThanCriterion | IsLessOrEqualToCriterion | IsNotBetweenCriterion | IsCheckboxCriterion | IsValueInListCriterion | IsValueInRangeCriterion | CustomFormulaCriterion;
4103
- type DateCriterionValue = "today" | "tomorrow" | "yesterday" | "lastWeek" | "lastMonth" | "lastYear" | "exactDate";
4104
4120
  type DataValidationCriterionType = DataValidationCriterion["type"];
4105
4121
  type DataValidationDateCriterion = Extract<DataValidationCriterion, {
4106
4122
  dateValue: DateCriterionValue;
4107
4123
  }>;
4124
+ declare const availableDataValidationOperators: Set<DataValidationCriterionType>;
4108
4125
 
4109
4126
  type ClipboardReadResult = {
4110
4127
  status: "ok";
@@ -5472,10 +5489,7 @@ declare class EvaluationConditionalFormatPlugin extends CoreViewPlugin {
5472
5489
  private applyDataBar;
5473
5490
  /** Compute the color scale for the given range and CF rule, and apply in in the given computedStyle object */
5474
5491
  private applyColorScale;
5475
- /**
5476
- * Execute the predicate to know if a conditional formatting rule should be applied to a cell
5477
- */
5478
- private rulePredicate;
5492
+ private getRuleResultForTarget;
5479
5493
  }
5480
5494
 
5481
5495
  interface InvalidValidationResult {
@@ -6042,6 +6056,13 @@ declare class CellComputedStylePlugin extends UIPlugin {
6042
6056
  private computeCellStyle;
6043
6057
  }
6044
6058
 
6059
+ declare class CheckboxTogglePlugin extends UIPlugin {
6060
+ static getters: readonly ["hasBooleanValidationInZones"];
6061
+ handle(cmd: Command): void;
6062
+ hasBooleanValidationInZones(zones: Zone[]): boolean;
6063
+ private toggleCheckbox;
6064
+ }
6065
+
6045
6066
  /**
6046
6067
  * Local History
6047
6068
  *
@@ -6077,6 +6098,23 @@ declare class HistoryPlugin extends UIPlugin {
6077
6098
  private getPossibleRevisionToRepeat;
6078
6099
  }
6079
6100
 
6101
+ declare class PivotPresenceTracker {
6102
+ private trackedValues;
6103
+ private domainToArray;
6104
+ isValuePresent(measure: string, domain: PivotDomain): boolean;
6105
+ isHeaderPresent(domain: PivotDomain): boolean;
6106
+ trackValue(measure: string, domain: PivotDomain): void;
6107
+ trackHeader(domain: PivotDomain): void;
6108
+ }
6109
+
6110
+ declare class PivotPresencePlugin extends UIPlugin {
6111
+ static getters: readonly ["getPivotPresenceTracker"];
6112
+ private trackPresencePivotId?;
6113
+ private tracker?;
6114
+ handle(cmd: Command): void;
6115
+ getPivotPresenceTracker(pivotId: UID): PivotPresenceTracker | undefined;
6116
+ }
6117
+
6080
6118
  declare class SplitToColumnsPlugin extends UIPlugin {
6081
6119
  static getters: readonly ["getAutomaticSeparator"];
6082
6120
  allowDispatch(cmd: Command): CommandResult | CommandResult[];
@@ -6201,7 +6239,7 @@ type CoreGetters = PluginGetters<typeof SheetPlugin> & PluginGetters<typeof Head
6201
6239
  type Getters = {
6202
6240
  isReadonly: () => boolean;
6203
6241
  isDashboard: () => boolean;
6204
- } & CoreGetters & PluginGetters<typeof AutofillPlugin> & PluginGetters<typeof AutomaticSumPlugin> & PluginGetters<typeof HistoryPlugin> & PluginGetters<typeof ClipboardPlugin> & PluginGetters<typeof EvaluationPlugin> & PluginGetters<typeof EvaluationChartPlugin> & PluginGetters<typeof EvaluationConditionalFormatPlugin> & PluginGetters<typeof HeaderVisibilityUIPlugin> & PluginGetters<typeof CustomColorsPlugin> & PluginGetters<typeof AutomaticSumPlugin> & PluginGetters<typeof GridSelectionPlugin> & PluginGetters<typeof CollaborativePlugin> & PluginGetters<typeof SortPlugin> & PluginGetters<typeof UIOptionsPlugin> & PluginGetters<typeof SheetUIPlugin> & PluginGetters<typeof SheetViewPlugin> & PluginGetters<typeof FilterEvaluationPlugin> & PluginGetters<typeof SplitToColumnsPlugin> & PluginGetters<typeof HeaderSizeUIPlugin> & PluginGetters<typeof EvaluationDataValidationPlugin> & PluginGetters<typeof HeaderPositionsUIPlugin> & PluginGetters<typeof TableStylePlugin> & PluginGetters<typeof CellComputedStylePlugin> & PluginGetters<typeof DynamicTablesPlugin> & PluginGetters<typeof PivotUIPlugin> & PluginGetters<typeof TableComputedStylePlugin> & PluginGetters<typeof GeoFeaturePlugin>;
6242
+ } & CoreGetters & PluginGetters<typeof AutofillPlugin> & PluginGetters<typeof AutomaticSumPlugin> & PluginGetters<typeof HistoryPlugin> & PluginGetters<typeof ClipboardPlugin> & PluginGetters<typeof EvaluationPlugin> & PluginGetters<typeof EvaluationChartPlugin> & PluginGetters<typeof EvaluationConditionalFormatPlugin> & PluginGetters<typeof HeaderVisibilityUIPlugin> & PluginGetters<typeof CustomColorsPlugin> & PluginGetters<typeof AutomaticSumPlugin> & PluginGetters<typeof GridSelectionPlugin> & PluginGetters<typeof CollaborativePlugin> & PluginGetters<typeof SortPlugin> & PluginGetters<typeof UIOptionsPlugin> & PluginGetters<typeof SheetUIPlugin> & PluginGetters<typeof SheetViewPlugin> & PluginGetters<typeof FilterEvaluationPlugin> & PluginGetters<typeof SplitToColumnsPlugin> & PluginGetters<typeof HeaderSizeUIPlugin> & PluginGetters<typeof EvaluationDataValidationPlugin> & PluginGetters<typeof HeaderPositionsUIPlugin> & PluginGetters<typeof TableStylePlugin> & PluginGetters<typeof CellComputedStylePlugin> & PluginGetters<typeof DynamicTablesPlugin> & PluginGetters<typeof PivotUIPlugin> & PluginGetters<typeof TableComputedStylePlugin> & PluginGetters<typeof GeoFeaturePlugin> & PluginGetters<typeof PivotPresencePlugin> & PluginGetters<typeof TableComputedStylePlugin> & PluginGetters<typeof CheckboxTogglePlugin>;
6205
6243
 
6206
6244
  type ArgType = "ANY" | "BOOLEAN" | "NUMBER" | "STRING" | "DATE" | "RANGE" | "RANGE<BOOLEAN>" | "RANGE<NUMBER>" | "RANGE<DATE>" | "RANGE<STRING>" | "RANGE<ANY>" | "META";
6207
6245
  interface ArgDefinition {
@@ -6523,7 +6561,7 @@ interface ChartShowValuesPluginOptions {
6523
6561
  showValues: boolean;
6524
6562
  background?: Color;
6525
6563
  horizontal?: boolean;
6526
- callback: (value: number | string, axisId?: string) => string;
6564
+ callback: (value: number | string, axisId: string) => string;
6527
6565
  }
6528
6566
  declare module "chart.js" {
6529
6567
  interface PluginOptionsByType<TType extends ChartType$1> {
@@ -6854,7 +6892,7 @@ interface ChartSubtypeProperties {
6854
6892
  preview: string;
6855
6893
  }
6856
6894
 
6857
- interface Props$1i {
6895
+ interface Props$1j {
6858
6896
  label?: string;
6859
6897
  value: boolean;
6860
6898
  className?: string;
@@ -6863,7 +6901,7 @@ interface Props$1i {
6863
6901
  disabled?: boolean;
6864
6902
  onChange: (value: boolean) => void;
6865
6903
  }
6866
- declare class Checkbox extends Component<Props$1i, SpreadsheetChildEnv> {
6904
+ declare class Checkbox extends Component<Props$1j, SpreadsheetChildEnv> {
6867
6905
  static template: string;
6868
6906
  static props: {
6869
6907
  label: {
@@ -6898,10 +6936,10 @@ declare class Checkbox extends Component<Props$1i, SpreadsheetChildEnv> {
6898
6936
  onChange(ev: InputEvent): void;
6899
6937
  }
6900
6938
 
6901
- interface Props$1h {
6939
+ interface Props$1i {
6902
6940
  class?: string;
6903
6941
  }
6904
- declare class Section extends Component<Props$1h, SpreadsheetChildEnv> {
6942
+ declare class Section extends Component<Props$1i, SpreadsheetChildEnv> {
6905
6943
  static template: string;
6906
6944
  static props: {
6907
6945
  class: {
@@ -7038,7 +7076,7 @@ declare class SelectionInputStore extends SpreadsheetStore {
7038
7076
  getIndex(rangeId: number | null): number | null;
7039
7077
  }
7040
7078
 
7041
- interface Props$1g {
7079
+ interface Props$1h {
7042
7080
  ranges: string[];
7043
7081
  hasSingleRange?: boolean;
7044
7082
  required?: boolean;
@@ -7066,7 +7104,7 @@ interface SelectionRange extends Omit<RangeInputValue, "color"> {
7066
7104
  * onSelectionChanged is called every time the input value
7067
7105
  * changes.
7068
7106
  */
7069
- declare class SelectionInput extends Component<Props$1g, SpreadsheetChildEnv> {
7107
+ declare class SelectionInput extends Component<Props$1h, SpreadsheetChildEnv> {
7070
7108
  static template: string;
7071
7109
  static props: {
7072
7110
  ranges: ArrayConstructor;
@@ -7143,7 +7181,7 @@ declare class SelectionInput extends Component<Props$1g, SpreadsheetChildEnv> {
7143
7181
  confirm(): void;
7144
7182
  }
7145
7183
 
7146
- interface Props$1f {
7184
+ interface Props$1g {
7147
7185
  ranges: CustomizedDataSet[];
7148
7186
  hasSingleRange?: boolean;
7149
7187
  onSelectionChanged: (ranges: string[]) => void;
@@ -7152,8 +7190,11 @@ interface Props$1f {
7152
7190
  onSelectionConfirmed: () => void;
7153
7191
  maxNumberOfUsedRanges?: number;
7154
7192
  title?: string;
7193
+ datasetOrientation?: ChartDatasetOrientation;
7194
+ canChangeDatasetOrientation?: boolean;
7195
+ onFlipAxis?: (structure: string) => void;
7155
7196
  }
7156
- declare class ChartDataSeries extends Component<Props$1f, SpreadsheetChildEnv> {
7197
+ declare class ChartDataSeries extends Component<Props$1g, SpreadsheetChildEnv> {
7157
7198
  static template: string;
7158
7199
  static components: {
7159
7200
  SelectionInput: typeof SelectionInput;
@@ -7183,6 +7224,18 @@ declare class ChartDataSeries extends Component<Props$1f, SpreadsheetChildEnv> {
7183
7224
  type: NumberConstructor;
7184
7225
  optional: boolean;
7185
7226
  };
7227
+ datasetOrientation: {
7228
+ type: StringConstructor;
7229
+ optional: boolean;
7230
+ };
7231
+ canChangeDatasetOrientation: {
7232
+ type: BooleanConstructor;
7233
+ optional: boolean;
7234
+ };
7235
+ onFlipAxis: {
7236
+ type: FunctionConstructor;
7237
+ optional: boolean;
7238
+ };
7186
7239
  };
7187
7240
  get ranges(): string[];
7188
7241
  get disabledRanges(): boolean[];
@@ -7190,12 +7243,12 @@ declare class ChartDataSeries extends Component<Props$1f, SpreadsheetChildEnv> {
7190
7243
  get title(): string;
7191
7244
  }
7192
7245
 
7193
- interface Props$1e {
7246
+ interface Props$1f {
7194
7247
  messages: string[];
7195
7248
  msgType: "warning" | "error" | "info";
7196
7249
  singleBox?: boolean;
7197
7250
  }
7198
- declare class ValidationMessages extends Component<Props$1e, SpreadsheetChildEnv> {
7251
+ declare class ValidationMessages extends Component<Props$1f, SpreadsheetChildEnv> {
7199
7252
  static template: string;
7200
7253
  static props: {
7201
7254
  messages: ArrayConstructor;
@@ -7209,10 +7262,10 @@ declare class ValidationMessages extends Component<Props$1e, SpreadsheetChildEnv
7209
7262
  get alertBoxes(): string[][];
7210
7263
  }
7211
7264
 
7212
- interface Props$1d {
7265
+ interface Props$1e {
7213
7266
  messages: string[];
7214
7267
  }
7215
- declare class ChartErrorSection extends Component<Props$1d, SpreadsheetChildEnv> {
7268
+ declare class ChartErrorSection extends Component<Props$1e, SpreadsheetChildEnv> {
7216
7269
  static template: string;
7217
7270
  static components: {
7218
7271
  Section: typeof Section;
@@ -7226,7 +7279,7 @@ declare class ChartErrorSection extends Component<Props$1d, SpreadsheetChildEnv>
7226
7279
  };
7227
7280
  }
7228
7281
 
7229
- interface Props$1c {
7282
+ interface Props$1d {
7230
7283
  title?: string;
7231
7284
  range: string;
7232
7285
  isInvalid: boolean;
@@ -7239,7 +7292,7 @@ interface Props$1c {
7239
7292
  onChange: (value: boolean) => void;
7240
7293
  }>;
7241
7294
  }
7242
- declare class ChartLabelRange extends Component<Props$1c, SpreadsheetChildEnv> {
7295
+ declare class ChartLabelRange extends Component<Props$1d, SpreadsheetChildEnv> {
7243
7296
  static template: string;
7244
7297
  static components: {
7245
7298
  SelectionInput: typeof SelectionInput;
@@ -7260,10 +7313,10 @@ declare class ChartLabelRange extends Component<Props$1c, SpreadsheetChildEnv> {
7260
7313
  optional: boolean;
7261
7314
  };
7262
7315
  };
7263
- static defaultProps: Partial<Props$1c>;
7316
+ static defaultProps: Partial<Props$1d>;
7264
7317
  }
7265
7318
 
7266
- interface Props$1b {
7319
+ interface Props$1c {
7267
7320
  figureId: UID;
7268
7321
  definition: ChartWithDataSetDefinition;
7269
7322
  canUpdateChart: (figureId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
@@ -7273,7 +7326,7 @@ interface ChartPanelState {
7273
7326
  datasetDispatchResult?: DispatchResult;
7274
7327
  labelsDispatchResult?: DispatchResult;
7275
7328
  }
7276
- declare class GenericChartConfigPanel extends Component<Props$1b, SpreadsheetChildEnv> {
7329
+ declare class GenericChartConfigPanel extends Component<Props$1c, SpreadsheetChildEnv> {
7277
7330
  static template: string;
7278
7331
  static components: {
7279
7332
  ChartDataSeries: typeof ChartDataSeries;
@@ -7291,6 +7344,7 @@ declare class GenericChartConfigPanel extends Component<Props$1b, SpreadsheetChi
7291
7344
  protected state: ChartPanelState;
7292
7345
  protected dataSets: CustomizedDataSet[];
7293
7346
  private labelRange;
7347
+ private datasetOrientation;
7294
7348
  protected chartTerms: {
7295
7349
  [key: string]: any;
7296
7350
  GeoChart: {
@@ -7309,6 +7363,9 @@ declare class GenericChartConfigPanel extends Component<Props$1b, SpreadsheetChi
7309
7363
  onChange: (aggregated: boolean) => void;
7310
7364
  }[];
7311
7365
  onUpdateDataSetsHaveTitle(dataSetsHaveTitle: boolean): void;
7366
+ get canChangeDatasetOrientation(): boolean;
7367
+ private computeDatasetOrientation;
7368
+ setDatasetOrientation(datasetOrientation: ChartDatasetOrientation): void;
7312
7369
  /**
7313
7370
  * Change the local dataSeriesRanges. The model should be updated when the
7314
7371
  * button "confirm" is clicked
@@ -7317,6 +7374,7 @@ declare class GenericChartConfigPanel extends Component<Props$1b, SpreadsheetChi
7317
7374
  onDataSeriesReordered(indexes: number[]): void;
7318
7375
  onDataSeriesRemoved(index: number): void;
7319
7376
  onDataSeriesConfirmed(): void;
7377
+ get splitRanges(): CustomizedDataSet[];
7320
7378
  getDataSeriesRanges(): CustomizedDataSet[];
7321
7379
  /**
7322
7380
  * Change the local labelRange. The model should be updated when the
@@ -7328,6 +7386,7 @@ declare class GenericChartConfigPanel extends Component<Props$1b, SpreadsheetChi
7328
7386
  onUpdateAggregated(aggregated: boolean): void;
7329
7387
  calculateHeaderPosition(): number | undefined;
7330
7388
  get maxNumberOfUsedRanges(): number | undefined;
7389
+ private transposeDataSet;
7331
7390
  }
7332
7391
 
7333
7392
  declare class BarConfigPanel extends GenericChartConfigPanel {
@@ -7336,11 +7395,11 @@ declare class BarConfigPanel extends GenericChartConfigPanel {
7336
7395
  onUpdateStacked(stacked: boolean): void;
7337
7396
  }
7338
7397
 
7339
- interface Props$1a {
7398
+ interface Props$1b {
7340
7399
  isCollapsed: boolean;
7341
7400
  slots: any;
7342
7401
  }
7343
- declare class Collapse extends Component<Props$1a, SpreadsheetChildEnv> {
7402
+ declare class Collapse extends Component<Props$1b, SpreadsheetChildEnv> {
7344
7403
  static template: string;
7345
7404
  static props: {
7346
7405
  isCollapsed: BooleanConstructor;
@@ -7379,12 +7438,12 @@ interface Choice$1 {
7379
7438
  value: string;
7380
7439
  label: string;
7381
7440
  }
7382
- interface Props$19 {
7441
+ interface Props$1a {
7383
7442
  choices: Choice$1[];
7384
7443
  onChange: (value: string) => void;
7385
7444
  selectedValue: string;
7386
7445
  }
7387
- declare class BadgeSelection extends Component<Props$19, SpreadsheetChildEnv> {
7446
+ declare class BadgeSelection extends Component<Props$1a, SpreadsheetChildEnv> {
7388
7447
  static template: string;
7389
7448
  static props: {
7390
7449
  choices: ArrayConstructor;
@@ -7393,14 +7452,14 @@ declare class BadgeSelection extends Component<Props$19, SpreadsheetChildEnv> {
7393
7452
  };
7394
7453
  }
7395
7454
 
7396
- interface Props$18 {
7455
+ interface Props$19 {
7397
7456
  action: ActionSpec;
7398
7457
  hasTriangleDownIcon?: boolean;
7399
7458
  selectedColor?: string;
7400
7459
  class?: string;
7401
7460
  onClick?: (ev: MouseEvent) => void;
7402
7461
  }
7403
- declare class ActionButton extends Component<Props$18, SpreadsheetChildEnv> {
7462
+ declare class ActionButton extends Component<Props$19, SpreadsheetChildEnv> {
7404
7463
  static template: string;
7405
7464
  static props: {
7406
7465
  action: ObjectConstructor;
@@ -7523,12 +7582,14 @@ declare class Popover extends Component<PopoverProps, SpreadsheetChildEnv> {
7523
7582
  zIndex: ComponentsImportance;
7524
7583
  };
7525
7584
  private popoverRef;
7585
+ private popoverContentRef;
7526
7586
  private currentPosition;
7527
7587
  private currentDisplayValue;
7528
7588
  private spreadsheetRect;
7529
7589
  private containerRect;
7530
7590
  setup(): void;
7531
7591
  get popoverStyle(): string;
7592
+ private computePopoverPosition;
7532
7593
  }
7533
7594
 
7534
7595
  interface ColorPickerProps {
@@ -7585,7 +7646,7 @@ declare class ColorPicker extends Component<ColorPickerProps, SpreadsheetChildEn
7585
7646
  isSameColor(color1: Color, color2: Color): boolean;
7586
7647
  }
7587
7648
 
7588
- interface Props$17 {
7649
+ interface Props$18 {
7589
7650
  currentColor: string | undefined;
7590
7651
  toggleColorPicker: () => void;
7591
7652
  showColorPicker: boolean;
@@ -7596,7 +7657,7 @@ interface Props$17 {
7596
7657
  dropdownMaxHeight?: Pixel;
7597
7658
  class?: string;
7598
7659
  }
7599
- declare class ColorPickerWidget extends Component<Props$17, SpreadsheetChildEnv> {
7660
+ declare class ColorPickerWidget extends Component<Props$18, SpreadsheetChildEnv> {
7600
7661
  static template: string;
7601
7662
  static props: {
7602
7663
  currentColor: {
@@ -7647,7 +7708,7 @@ declare class CellPopoverStore extends SpreadsheetStore {
7647
7708
  };
7648
7709
  handle(cmd: Command): void;
7649
7710
  open({ col, row }: Position$1, type: CellPopoverType): void;
7650
- close(): void;
7711
+ close(): "noStateChange" | undefined;
7651
7712
  get persistentCellPopover(): OpenCellPopover | ClosedCellPopover;
7652
7713
  get isOpen(): boolean;
7653
7714
  get cellPopover(): ClosedCellPopover | PositionedCellPopoverComponent;
@@ -7657,14 +7718,14 @@ declare class CellPopoverStore extends SpreadsheetStore {
7657
7718
  interface State$4 {
7658
7719
  isOpen: boolean;
7659
7720
  }
7660
- interface Props$16 {
7721
+ interface Props$17 {
7661
7722
  currentFontSize: number;
7662
7723
  class: string;
7663
7724
  onFontSizeChanged: (fontSize: number) => void;
7664
7725
  onToggle?: () => void;
7665
7726
  onFocusInput?: () => void;
7666
7727
  }
7667
- declare class FontSizeEditor extends Component<Props$16, SpreadsheetChildEnv> {
7728
+ declare class FontSizeEditor extends Component<Props$17, SpreadsheetChildEnv> {
7668
7729
  static template: string;
7669
7730
  static props: {
7670
7731
  currentFontSize: NumberConstructor;
@@ -7702,7 +7763,7 @@ declare class FontSizeEditor extends Component<Props$16, SpreadsheetChildEnv> {
7702
7763
  onInputKeydown(ev: KeyboardEvent): void;
7703
7764
  }
7704
7765
 
7705
- interface Props$15 {
7766
+ interface Props$16 {
7706
7767
  class?: string;
7707
7768
  style: ChartStyle;
7708
7769
  updateStyle: (style: ChartStyle) => void;
@@ -7711,7 +7772,7 @@ interface Props$15 {
7711
7772
  hasHorizontalAlign?: boolean;
7712
7773
  hasBackgroundColor?: boolean;
7713
7774
  }
7714
- declare class TextStyler extends Component<Props$15, SpreadsheetChildEnv> {
7775
+ declare class TextStyler extends Component<Props$16, SpreadsheetChildEnv> {
7715
7776
  static template: string;
7716
7777
  static components: {
7717
7778
  ColorPickerWidget: typeof ColorPickerWidget;
@@ -7779,7 +7840,7 @@ declare class TextStyler extends Component<Props$15, SpreadsheetChildEnv> {
7779
7840
  get verticalAlignActions(): ActionSpec[];
7780
7841
  }
7781
7842
 
7782
- interface Props$14 {
7843
+ interface Props$15 {
7783
7844
  title?: string;
7784
7845
  updateTitle: (title: string) => void;
7785
7846
  name?: string;
@@ -7787,7 +7848,7 @@ interface Props$14 {
7787
7848
  defaultStyle?: Partial<TitleDesign>;
7788
7849
  updateStyle: (style: TitleDesign) => void;
7789
7850
  }
7790
- declare class ChartTitle extends Component<Props$14, SpreadsheetChildEnv> {
7851
+ declare class ChartTitle extends Component<Props$15, SpreadsheetChildEnv> {
7791
7852
  static template: string;
7792
7853
  static components: {
7793
7854
  Section: typeof Section;
@@ -7820,13 +7881,13 @@ interface AxisDefinition {
7820
7881
  id: string;
7821
7882
  name: string;
7822
7883
  }
7823
- interface Props$13 {
7884
+ interface Props$14 {
7824
7885
  figureId: UID;
7825
7886
  definition: ChartWithAxisDefinition;
7826
7887
  updateChart: (figureId: UID, definition: Partial<ChartWithAxisDefinition>) => DispatchResult;
7827
7888
  axesList: AxisDefinition[];
7828
7889
  }
7829
- declare class AxisDesignEditor extends Component<Props$13, SpreadsheetChildEnv> {
7890
+ declare class AxisDesignEditor extends Component<Props$14, SpreadsheetChildEnv> {
7830
7891
  static template: string;
7831
7892
  static components: {
7832
7893
  Section: typeof Section;
@@ -7858,14 +7919,14 @@ interface Choice {
7858
7919
  value: unknown;
7859
7920
  label: string;
7860
7921
  }
7861
- interface Props$12 {
7922
+ interface Props$13 {
7862
7923
  choices: Choice[];
7863
7924
  onChange: (value: unknown) => void;
7864
7925
  selectedValue: string;
7865
7926
  name: string;
7866
7927
  direction: "horizontal" | "vertical";
7867
7928
  }
7868
- declare class RadioSelection extends Component<Props$12, SpreadsheetChildEnv> {
7929
+ declare class RadioSelection extends Component<Props$13, SpreadsheetChildEnv> {
7869
7930
  static template: string;
7870
7931
  static props: {
7871
7932
  choices: ArrayConstructor;
@@ -7884,13 +7945,13 @@ declare class RadioSelection extends Component<Props$12, SpreadsheetChildEnv> {
7884
7945
  };
7885
7946
  }
7886
7947
 
7887
- interface Props$11 {
7948
+ interface Props$12 {
7888
7949
  currentColor?: string;
7889
7950
  onColorPicked: (color: string) => void;
7890
7951
  title?: string;
7891
7952
  disableNoColor?: boolean;
7892
7953
  }
7893
- declare class RoundColorPicker extends Component<Props$11, SpreadsheetChildEnv> {
7954
+ declare class RoundColorPicker extends Component<Props$12, SpreadsheetChildEnv> {
7894
7955
  static template: string;
7895
7956
  static components: {
7896
7957
  Section: typeof Section;
@@ -7923,13 +7984,13 @@ declare class RoundColorPicker extends Component<Props$11, SpreadsheetChildEnv>
7923
7984
  get buttonStyle(): string;
7924
7985
  }
7925
7986
 
7926
- interface Props$10 {
7987
+ interface Props$11 {
7927
7988
  figureId: UID;
7928
7989
  definition: ChartDefinition;
7929
7990
  updateChart: (figureId: UID, definition: Partial<ChartDefinition>) => DispatchResult;
7930
7991
  defaultChartTitleFontSize?: number;
7931
7992
  }
7932
- declare class GeneralDesignEditor extends Component<Props$10, SpreadsheetChildEnv> {
7993
+ declare class GeneralDesignEditor extends Component<Props$11, SpreadsheetChildEnv> {
7933
7994
  static template: string;
7934
7995
  static components: {
7935
7996
  RoundColorPicker: typeof RoundColorPicker;
@@ -7963,12 +8024,12 @@ declare class GeneralDesignEditor extends Component<Props$10, SpreadsheetChildEn
7963
8024
  updateChartTitleStyle(style: TitleDesign): void;
7964
8025
  }
7965
8026
 
7966
- interface Props$$ {
8027
+ interface Props$10 {
7967
8028
  figureId: UID;
7968
8029
  definition: ChartWithDataSetDefinition;
7969
8030
  updateChart: (figureId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
7970
8031
  }
7971
- declare class ChartLegend extends Component<Props$$, SpreadsheetChildEnv> {
8032
+ declare class ChartLegend extends Component<Props$10, SpreadsheetChildEnv> {
7972
8033
  static template: string;
7973
8034
  static components: {
7974
8035
  Section: typeof Section;
@@ -7981,13 +8042,13 @@ declare class ChartLegend extends Component<Props$$, SpreadsheetChildEnv> {
7981
8042
  updateLegendPosition(ev: any): void;
7982
8043
  }
7983
8044
 
7984
- interface Props$_ {
8045
+ interface Props$$ {
7985
8046
  figureId: UID;
7986
8047
  definition: ChartWithDataSetDefinition;
7987
8048
  canUpdateChart: (figureID: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
7988
8049
  updateChart: (figureId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
7989
8050
  }
7990
- declare class SeriesDesignEditor extends Component<Props$_, SpreadsheetChildEnv> {
8051
+ declare class SeriesDesignEditor extends Component<Props$$, SpreadsheetChildEnv> {
7991
8052
  static template: string;
7992
8053
  static components: {
7993
8054
  SidePanelCollapsible: typeof SidePanelCollapsible;
@@ -8015,13 +8076,13 @@ declare class SeriesDesignEditor extends Component<Props$_, SpreadsheetChildEnv>
8015
8076
  getDataSeriesLabel(): string | undefined;
8016
8077
  }
8017
8078
 
8018
- interface Props$Z {
8079
+ interface Props$_ {
8019
8080
  figureId: UID;
8020
8081
  definition: ChartWithDataSetDefinition;
8021
8082
  canUpdateChart: (figureID: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
8022
8083
  updateChart: (figureId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
8023
8084
  }
8024
- declare class SeriesWithAxisDesignEditor extends Component<Props$Z, SpreadsheetChildEnv> {
8085
+ declare class SeriesWithAxisDesignEditor extends Component<Props$_, SpreadsheetChildEnv> {
8025
8086
  static template: string;
8026
8087
  static components: {
8027
8088
  SeriesDesignEditor: typeof SeriesDesignEditor;
@@ -8062,13 +8123,13 @@ declare class SeriesWithAxisDesignEditor extends Component<Props$Z, SpreadsheetC
8062
8123
  updateTrendLineValue(index: number, config: any): void;
8063
8124
  }
8064
8125
 
8065
- interface Props$Y {
8126
+ interface Props$Z {
8066
8127
  figureId: UID;
8067
8128
  definition: ChartWithDataSetDefinition;
8068
8129
  canUpdateChart: (figureID: UID, definition: GenericDefinition<ChartWithDataSetDefinition>) => DispatchResult;
8069
8130
  updateChart: (figureId: UID, definition: GenericDefinition<ChartWithDataSetDefinition>) => DispatchResult;
8070
8131
  }
8071
- declare class ChartWithAxisDesignPanel<P extends Props$Y = Props$Y> extends Component<P, SpreadsheetChildEnv> {
8132
+ declare class ChartWithAxisDesignPanel<P extends Props$Z = Props$Z> extends Component<P, SpreadsheetChildEnv> {
8072
8133
  static template: string;
8073
8134
  static components: {
8074
8135
  GeneralDesignEditor: typeof GeneralDesignEditor;
@@ -8088,13 +8149,13 @@ declare class ChartWithAxisDesignPanel<P extends Props$Y = Props$Y> extends Comp
8088
8149
  get axesList(): AxisDefinition[];
8089
8150
  }
8090
8151
 
8091
- interface Props$X {
8152
+ interface Props$Y {
8092
8153
  figureId: UID;
8093
8154
  definition: GaugeChartDefinition;
8094
8155
  canUpdateChart: (figureId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
8095
8156
  updateChart: (figureId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
8096
8157
  }
8097
- declare class GaugeChartConfigPanel extends Component<Props$X, SpreadsheetChildEnv> {
8158
+ declare class GaugeChartConfigPanel extends Component<Props$Y, SpreadsheetChildEnv> {
8098
8159
  static template: string;
8099
8160
  static components: {
8100
8161
  ChartErrorSection: typeof ChartErrorSection;
@@ -8159,13 +8220,13 @@ interface EnrichedToken extends Token {
8159
8220
  isInHoverContext?: boolean;
8160
8221
  }
8161
8222
 
8162
- interface Props$W {
8223
+ interface Props$X {
8163
8224
  proposals: AutoCompleteProposal[];
8164
8225
  selectedIndex: number | undefined;
8165
8226
  onValueSelected: (value: string) => void;
8166
8227
  onValueHovered: (index: string) => void;
8167
8228
  }
8168
- declare class TextValueProvider extends Component<Props$W> {
8229
+ declare class TextValueProvider extends Component<Props$X> {
8169
8230
  static template: string;
8170
8231
  static props: {
8171
8232
  proposals: ArrayConstructor;
@@ -8221,11 +8282,11 @@ declare class ContentEditableHelper {
8221
8282
  getText(): string;
8222
8283
  }
8223
8284
 
8224
- interface Props$V {
8285
+ interface Props$W {
8225
8286
  functionDescription: FunctionDescription;
8226
8287
  argsToFocus: number[];
8227
8288
  }
8228
- declare class FunctionDescriptionProvider extends Component<Props$V, SpreadsheetChildEnv> {
8289
+ declare class FunctionDescriptionProvider extends Component<Props$W, SpreadsheetChildEnv> {
8229
8290
  static template: string;
8230
8291
  static props: {
8231
8292
  functionDescription: ObjectConstructor;
@@ -8236,23 +8297,21 @@ declare class FunctionDescriptionProvider extends Component<Props$V, Spreadsheet
8236
8297
  };
8237
8298
  private state;
8238
8299
  toggle(): void;
8239
- getContext(): Props$V;
8300
+ getContext(): Props$W;
8240
8301
  get formulaArgSeparator(): string;
8241
8302
  }
8242
8303
 
8243
- interface Props$U {
8304
+ interface Props$V {
8244
8305
  anchorRect: Rect;
8245
8306
  content: string;
8246
8307
  }
8247
- declare class SpeechBubble extends Component<Props$U, SpreadsheetChildEnv> {
8308
+ declare class SpeechBubble extends Component<Props$V, SpreadsheetChildEnv> {
8248
8309
  static template: string;
8249
8310
  static props: {
8250
8311
  content: StringConstructor;
8251
8312
  anchorRect: ObjectConstructor;
8252
8313
  };
8253
- static components: {
8254
- Popover: typeof Popover;
8255
- };
8314
+ static components: {};
8256
8315
  private spreadsheetRect;
8257
8316
  private bubbleRef;
8258
8317
  setup(): void;
@@ -8643,7 +8702,7 @@ interface AutoCompleteProviderDefinition {
8643
8702
  }, tokenAtCursor: EnrichedToken, text: string): void;
8644
8703
  }
8645
8704
 
8646
- interface Props$T {
8705
+ interface Props$U {
8647
8706
  onConfirm: (content: string) => void;
8648
8707
  composerContent: string;
8649
8708
  defaultRangeSheetId: UID;
@@ -8655,7 +8714,7 @@ interface Props$T {
8655
8714
  invalid?: boolean;
8656
8715
  getContextualColoredSymbolToken?: (token: Token) => Color;
8657
8716
  }
8658
- declare class StandaloneComposer extends Component<Props$T, SpreadsheetChildEnv> {
8717
+ declare class StandaloneComposer extends Component<Props$U, SpreadsheetChildEnv> {
8659
8718
  static template: string;
8660
8719
  static props: {
8661
8720
  composerContent: {
@@ -8718,13 +8777,13 @@ interface PanelState {
8718
8777
  sectionRuleCancelledReasons?: CommandResult[];
8719
8778
  sectionRule: SectionRule;
8720
8779
  }
8721
- interface Props$S {
8780
+ interface Props$T {
8722
8781
  figureId: UID;
8723
8782
  definition: GaugeChartDefinition;
8724
8783
  canUpdateChart: (figureID: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
8725
8784
  updateChart: (figureId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
8726
8785
  }
8727
- declare class GaugeChartDesignPanel extends Component<Props$S, SpreadsheetChildEnv> {
8786
+ declare class GaugeChartDesignPanel extends Component<Props$T, SpreadsheetChildEnv> {
8728
8787
  static template: string;
8729
8788
  static components: {
8730
8789
  SidePanelCollapsible: typeof SidePanelCollapsible;
@@ -8774,13 +8833,13 @@ declare class LineConfigPanel extends GenericChartConfigPanel {
8774
8833
  onUpdateCumulative(cumulative: boolean): void;
8775
8834
  }
8776
8835
 
8777
- interface Props$R {
8836
+ interface Props$S {
8778
8837
  figureId: UID;
8779
8838
  definition: ScorecardChartDefinition;
8780
8839
  canUpdateChart: (figureId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
8781
8840
  updateChart: (figureId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
8782
8841
  }
8783
- declare class ScorecardChartConfigPanel extends Component<Props$R, SpreadsheetChildEnv> {
8842
+ declare class ScorecardChartConfigPanel extends Component<Props$S, SpreadsheetChildEnv> {
8784
8843
  static template: string;
8785
8844
  static components: {
8786
8845
  SelectionInput: typeof SelectionInput;
@@ -8809,13 +8868,13 @@ declare class ScorecardChartConfigPanel extends Component<Props$R, SpreadsheetCh
8809
8868
  }
8810
8869
 
8811
8870
  type ColorPickerId = undefined | "backgroundColor" | "baselineColorUp" | "baselineColorDown";
8812
- interface Props$Q {
8871
+ interface Props$R {
8813
8872
  figureId: UID;
8814
8873
  definition: ScorecardChartDefinition;
8815
8874
  canUpdateChart: (figureID: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
8816
8875
  updateChart: (figureId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
8817
8876
  }
8818
- declare class ScorecardChartDesignPanel extends Component<Props$Q, SpreadsheetChildEnv> {
8877
+ declare class ScorecardChartDesignPanel extends Component<Props$R, SpreadsheetChildEnv> {
8819
8878
  static template: string;
8820
8879
  static components: {
8821
8880
  GeneralDesignEditor: typeof GeneralDesignEditor;
@@ -8954,18 +9013,18 @@ declare class ComposerFocusStore extends SpreadsheetStore {
8954
9013
  activeComposer: ComposerInterface;
8955
9014
  private _focusMode;
8956
9015
  get focusMode(): ComposerFocusType;
8957
- focusComposer(listener: ComposerInterface, args: Args): void;
8958
- focusActiveComposer(args: Args): void;
9016
+ focusComposer(listener: ComposerInterface, args: Args): "noStateChange" | undefined;
9017
+ focusActiveComposer(args: Args): "noStateChange" | undefined;
8959
9018
  /**
8960
9019
  * Start the edition or update the content if it's already started.
8961
9020
  */
8962
9021
  private setComposerContent;
8963
9022
  }
8964
9023
 
8965
- interface Props$P {
9024
+ interface Props$Q {
8966
9025
  figureUI: FigureUI;
8967
9026
  }
8968
- declare class ChartJsComponent extends Component<Props$P, SpreadsheetChildEnv> {
9027
+ declare class ChartJsComponent extends Component<Props$Q, SpreadsheetChildEnv> {
8969
9028
  static template: string;
8970
9029
  static props: {
8971
9030
  figureUI: ObjectConstructor;
@@ -8982,10 +9041,10 @@ declare class ChartJsComponent extends Component<Props$P, SpreadsheetChildEnv> {
8982
9041
  private updateChartJs;
8983
9042
  }
8984
9043
 
8985
- interface Props$O {
9044
+ interface Props$P {
8986
9045
  figureUI: FigureUI;
8987
9046
  }
8988
- declare class ScorecardChart$1 extends Component<Props$O, SpreadsheetChildEnv> {
9047
+ declare class ScorecardChart$1 extends Component<Props$P, SpreadsheetChildEnv> {
8989
9048
  static template: string;
8990
9049
  static props: {
8991
9050
  figureUI: ObjectConstructor;
@@ -8998,7 +9057,7 @@ declare class ScorecardChart$1 extends Component<Props$O, SpreadsheetChildEnv> {
8998
9057
  }
8999
9058
 
9000
9059
  type MenuItemOrSeparator = Action | "separator";
9001
- interface Props$N {
9060
+ interface Props$O {
9002
9061
  anchorRect: Rect;
9003
9062
  popoverPositioning: PopoverPropsPosition;
9004
9063
  menuItems: Action[];
@@ -9018,7 +9077,7 @@ interface MenuState {
9018
9077
  menuItems: Action[];
9019
9078
  isHoveringChild?: boolean;
9020
9079
  }
9021
- declare class Menu extends Component<Props$N, SpreadsheetChildEnv> {
9080
+ declare class Menu extends Component<Props$O, SpreadsheetChildEnv> {
9022
9081
  static template: string;
9023
9082
  static props: {
9024
9083
  anchorRect: ObjectConstructor;
@@ -9064,7 +9123,6 @@ declare class Menu extends Component<Props$N, SpreadsheetChildEnv> {
9064
9123
  private subMenu;
9065
9124
  private menuRef;
9066
9125
  private hoveredMenu;
9067
- private position;
9068
9126
  private openingTimeOut;
9069
9127
  setup(): void;
9070
9128
  get menuItemsAndSeparators(): MenuItemOrSeparator[];
@@ -9099,14 +9157,14 @@ declare class Menu extends Component<Props$N, SpreadsheetChildEnv> {
9099
9157
  }
9100
9158
 
9101
9159
  type ResizeAnchor = "top left" | "top" | "top right" | "right" | "bottom right" | "bottom" | "bottom left" | "left";
9102
- interface Props$M {
9160
+ interface Props$N {
9103
9161
  figureUI: FigureUI;
9104
9162
  style: string;
9105
9163
  onFigureDeleted: () => void;
9106
9164
  onMouseDown: (ev: MouseEvent) => void;
9107
9165
  onClickAnchor(dirX: ResizeDirection, dirY: ResizeDirection, ev: MouseEvent): void;
9108
9166
  }
9109
- declare class FigureComponent extends Component<Props$M, SpreadsheetChildEnv> {
9167
+ declare class FigureComponent extends Component<Props$N, SpreadsheetChildEnv> {
9110
9168
  static template: string;
9111
9169
  static props: {
9112
9170
  figureUI: ObjectConstructor;
@@ -9138,7 +9196,6 @@ declare class FigureComponent extends Component<Props$M, SpreadsheetChildEnv> {
9138
9196
  private menuState;
9139
9197
  private figureRef;
9140
9198
  private menuButtonRef;
9141
- private menuButtonRect;
9142
9199
  private borderWidth;
9143
9200
  get isSelected(): boolean;
9144
9201
  get figureRegistry(): Registry<FigureContent>;
@@ -9156,10 +9213,10 @@ declare class FigureComponent extends Component<Props$M, SpreadsheetChildEnv> {
9156
9213
  private openContextMenu;
9157
9214
  }
9158
9215
 
9159
- interface Props$L {
9216
+ interface Props$M {
9160
9217
  figureUI: FigureUI;
9161
9218
  }
9162
- declare class ChartDashboardMenu extends Component<Props$L, SpreadsheetChildEnv> {
9219
+ declare class ChartDashboardMenu extends Component<Props$M, SpreadsheetChildEnv> {
9163
9220
  static template: string;
9164
9221
  static components: {
9165
9222
  Menu: typeof Menu;
@@ -9182,16 +9239,16 @@ declare class ChartDashboardMenu extends Component<Props$L, SpreadsheetChildEnv>
9182
9239
  }[];
9183
9240
  getIconClasses(type: ChartType): "" | "fa fa-bar-chart" | "fa fa-line-chart" | "fa fa-pie-chart";
9184
9241
  onTypeChange(type: ChartType): void;
9185
- get selectedChartType(): "line" | "bar" | "scatter" | "pie" | "radar" | "treemap" | "funnel" | "combo" | "gauge" | "geo" | "pyramid" | "scorecard" | "sunburst" | "waterfall";
9242
+ get selectedChartType(): "line" | "bar" | "scatter" | "pie" | "radar" | "treemap" | "funnel" | "scorecard" | "gauge" | "combo" | "waterfall" | "pyramid" | "geo" | "sunburst";
9186
9243
  get backgroundColor(): string;
9187
9244
  openContextMenu(ev: MouseEvent): void;
9188
9245
  }
9189
9246
 
9190
- interface Props$K {
9247
+ interface Props$L {
9191
9248
  figureUI: FigureUI;
9192
9249
  onFigureDeleted: () => void;
9193
9250
  }
9194
- declare class ChartFigure extends Component<Props$K, SpreadsheetChildEnv> {
9251
+ declare class ChartFigure extends Component<Props$L, SpreadsheetChildEnv> {
9195
9252
  static template: string;
9196
9253
  static props: {
9197
9254
  figureUI: ObjectConstructor;
@@ -9210,11 +9267,11 @@ declare class DelayedHoveredCellStore extends SpreadsheetStore {
9210
9267
  col: number | undefined;
9211
9268
  row: number | undefined;
9212
9269
  handle(cmd: Command): void;
9213
- hover(position: Partial<Position$1>): void;
9214
- clear(): void;
9270
+ hover(position: Partial<Position$1>): "noStateChange" | undefined;
9271
+ clear(): "noStateChange" | undefined;
9215
9272
  }
9216
9273
 
9217
- interface Props$J {
9274
+ interface Props$K {
9218
9275
  isVisible: boolean;
9219
9276
  position: Position;
9220
9277
  }
@@ -9226,7 +9283,7 @@ interface State$3 {
9226
9283
  position: Position;
9227
9284
  handler: boolean;
9228
9285
  }
9229
- declare class Autofill extends Component<Props$J, SpreadsheetChildEnv> {
9286
+ declare class Autofill extends Component<Props$K, SpreadsheetChildEnv> {
9230
9287
  static template: string;
9231
9288
  static props: {
9232
9289
  position: ObjectConstructor;
@@ -9266,7 +9323,7 @@ declare class ClientTag extends Component<ClientTagProps, SpreadsheetChildEnv> {
9266
9323
  get tagStyle(): string;
9267
9324
  }
9268
9325
 
9269
- interface Props$I {
9326
+ interface Props$J {
9270
9327
  gridDims: DOMDimension;
9271
9328
  onInputContextMenu: (event: MouseEvent) => void;
9272
9329
  }
@@ -9274,7 +9331,7 @@ interface Props$I {
9274
9331
  * This component is a composer which positions itself on the grid at the anchor cell.
9275
9332
  * It also applies the style of the cell to the composer input.
9276
9333
  */
9277
- declare class GridComposer extends Component<Props$I, SpreadsheetChildEnv> {
9334
+ declare class GridComposer extends Component<Props$J, SpreadsheetChildEnv> {
9278
9335
  static template: string;
9279
9336
  static props: {
9280
9337
  gridDims: ObjectConstructor;
@@ -9332,10 +9389,10 @@ declare class GridCellIcon extends Component<GridCellIconProps, SpreadsheetChild
9332
9389
  isPositionVisible(position: CellPosition): boolean;
9333
9390
  }
9334
9391
 
9335
- interface Props$H {
9392
+ interface Props$I {
9336
9393
  cellPosition: CellPosition;
9337
9394
  }
9338
- declare class DataValidationCheckbox extends Component<Props$H, SpreadsheetChildEnv> {
9395
+ declare class DataValidationCheckbox extends Component<Props$I, SpreadsheetChildEnv> {
9339
9396
  static template: string;
9340
9397
  static components: {
9341
9398
  Checkbox: typeof Checkbox;
@@ -9348,10 +9405,10 @@ declare class DataValidationCheckbox extends Component<Props$H, SpreadsheetChild
9348
9405
  get isDisabled(): boolean;
9349
9406
  }
9350
9407
 
9351
- interface Props$G {
9408
+ interface Props$H {
9352
9409
  cellPosition: CellPosition;
9353
9410
  }
9354
- declare class DataValidationListIcon extends Component<Props$G, SpreadsheetChildEnv> {
9411
+ declare class DataValidationListIcon extends Component<Props$H, SpreadsheetChildEnv> {
9355
9412
  static template: string;
9356
9413
  static props: {
9357
9414
  cellPosition: ObjectConstructor;
@@ -9381,7 +9438,7 @@ interface SnapLine<T extends HFigureAxisType | VFigureAxisType> {
9381
9438
  }
9382
9439
 
9383
9440
  type ContainerType = "topLeft" | "topRight" | "bottomLeft" | "bottomRight" | "dnd";
9384
- interface Props$F {
9441
+ interface Props$G {
9385
9442
  onFigureDeleted: () => void;
9386
9443
  }
9387
9444
  interface Container {
@@ -9461,7 +9518,7 @@ interface DndState {
9461
9518
  * that occurred during the drag & drop, and to position the figure on the correct pane.
9462
9519
  *
9463
9520
  */
9464
- declare class FiguresContainer extends Component<Props$F, SpreadsheetChildEnv> {
9521
+ declare class FiguresContainer extends Component<Props$G, SpreadsheetChildEnv> {
9465
9522
  static template: string;
9466
9523
  static props: {
9467
9524
  onFigureDeleted: FunctionConstructor;
@@ -9497,10 +9554,10 @@ declare class FiguresContainer extends Component<Props$F, SpreadsheetChildEnv> {
9497
9554
  private getSnapLineStyle;
9498
9555
  }
9499
9556
 
9500
- interface Props$E {
9557
+ interface Props$F {
9501
9558
  cellPosition: CellPosition;
9502
9559
  }
9503
- declare class FilterIcon extends Component<Props$E, SpreadsheetChildEnv> {
9560
+ declare class FilterIcon extends Component<Props$F, SpreadsheetChildEnv> {
9504
9561
  static template: string;
9505
9562
  static props: {
9506
9563
  cellPosition: ObjectConstructor;
@@ -9522,10 +9579,10 @@ declare class FilterIconsOverlay extends Component<{}, SpreadsheetChildEnv> {
9522
9579
  getFilterHeadersPositions(): CellPosition[];
9523
9580
  }
9524
9581
 
9525
- interface Props$D {
9582
+ interface Props$E {
9526
9583
  focusGrid: () => void;
9527
9584
  }
9528
- declare class GridAddRowsFooter extends Component<Props$D, SpreadsheetChildEnv> {
9585
+ declare class GridAddRowsFooter extends Component<Props$E, SpreadsheetChildEnv> {
9529
9586
  static template: string;
9530
9587
  static props: {
9531
9588
  focusGrid: FunctionConstructor;
@@ -9549,7 +9606,7 @@ declare class GridAddRowsFooter extends Component<Props$D, SpreadsheetChildEnv>
9549
9606
  private onExternalClick;
9550
9607
  }
9551
9608
 
9552
- interface Props$C {
9609
+ interface Props$D {
9553
9610
  onCellDoubleClicked: (col: HeaderIndex, row: HeaderIndex) => void;
9554
9611
  onCellClicked: (col: HeaderIndex, row: HeaderIndex, modifiers: GridClickModifiers, ev: MouseEvent) => void;
9555
9612
  onCellRightClicked: (col: HeaderIndex, row: HeaderIndex, coordinates: DOMCoordinates) => void;
@@ -9558,7 +9615,7 @@ interface Props$C {
9558
9615
  gridOverlayDimensions: string;
9559
9616
  onFigureDeleted: () => void;
9560
9617
  }
9561
- declare class GridOverlay extends Component<Props$C, SpreadsheetChildEnv> {
9618
+ declare class GridOverlay extends Component<Props$D, SpreadsheetChildEnv> {
9562
9619
  static template: string;
9563
9620
  static props: {
9564
9621
  onCellDoubleClicked: {
@@ -9602,7 +9659,6 @@ declare class GridOverlay extends Component<Props$C, SpreadsheetChildEnv> {
9602
9659
  onFigureDeleted: () => void;
9603
9660
  };
9604
9661
  private gridOverlay;
9605
- private gridOverlayRect;
9606
9662
  private cellPopovers;
9607
9663
  private paintFormatStore;
9608
9664
  setup(): void;
@@ -9615,12 +9671,12 @@ declare class GridOverlay extends Component<Props$C, SpreadsheetChildEnv> {
9615
9671
  private getCartesianCoordinates;
9616
9672
  }
9617
9673
 
9618
- interface Props$B {
9674
+ interface Props$C {
9619
9675
  gridRect: Rect;
9620
9676
  onClosePopover: () => void;
9621
9677
  onMouseWheel: (ev: WheelEvent) => void;
9622
9678
  }
9623
- declare class GridPopover extends Component<Props$B, SpreadsheetChildEnv> {
9679
+ declare class GridPopover extends Component<Props$C, SpreadsheetChildEnv> {
9624
9680
  static template: string;
9625
9681
  static props: {
9626
9682
  onClosePopover: FunctionConstructor;
@@ -9636,7 +9692,7 @@ declare class GridPopover extends Component<Props$B, SpreadsheetChildEnv> {
9636
9692
  get cellPopover(): PositionedCellPopoverComponent | ClosedCellPopover;
9637
9693
  }
9638
9694
 
9639
- interface Props$A {
9695
+ interface Props$B {
9640
9696
  headersGroups: ConsecutiveIndexes[];
9641
9697
  offset: number;
9642
9698
  headerRange: {
@@ -9644,7 +9700,7 @@ interface Props$A {
9644
9700
  end: HeaderIndex;
9645
9701
  };
9646
9702
  }
9647
- declare class UnhideRowHeaders extends Component<Props$A, SpreadsheetChildEnv> {
9703
+ declare class UnhideRowHeaders extends Component<Props$B, SpreadsheetChildEnv> {
9648
9704
  static template: string;
9649
9705
  static props: {
9650
9706
  headersGroups: ArrayConstructor;
@@ -9663,7 +9719,7 @@ declare class UnhideRowHeaders extends Component<Props$A, SpreadsheetChildEnv> {
9663
9719
  unhide(hiddenElements: HeaderIndex[]): void;
9664
9720
  isVisible(header: HeaderIndex): boolean;
9665
9721
  }
9666
- declare class UnhideColumnHeaders extends Component<Props$A, SpreadsheetChildEnv> {
9722
+ declare class UnhideColumnHeaders extends Component<Props$B, SpreadsheetChildEnv> {
9667
9723
  static template: string;
9668
9724
  static props: {
9669
9725
  headersGroups: ArrayConstructor;
@@ -9855,13 +9911,13 @@ declare class HeadersOverlay extends Component<any, SpreadsheetChildEnv> {
9855
9911
  }
9856
9912
 
9857
9913
  type Orientation$1 = "n" | "s" | "w" | "e";
9858
- interface Props$z {
9914
+ interface Props$A {
9859
9915
  zone: Zone;
9860
9916
  orientation: Orientation$1;
9861
9917
  isMoving: boolean;
9862
9918
  onMoveHighlight: (ev: PointerEvent) => void;
9863
9919
  }
9864
- declare class Border extends Component<Props$z, SpreadsheetChildEnv> {
9920
+ declare class Border extends Component<Props$A, SpreadsheetChildEnv> {
9865
9921
  static template: string;
9866
9922
  static props: {
9867
9923
  zone: ObjectConstructor;
@@ -9874,14 +9930,14 @@ declare class Border extends Component<Props$z, SpreadsheetChildEnv> {
9874
9930
  }
9875
9931
 
9876
9932
  type Orientation = "nw" | "ne" | "sw" | "se";
9877
- interface Props$y {
9933
+ interface Props$z {
9878
9934
  zone: Zone;
9879
9935
  color: Color;
9880
9936
  orientation: Orientation;
9881
9937
  isResizing: boolean;
9882
9938
  onResizeHighlight: (ev: PointerEvent, isLeft: boolean, isTop: boolean) => void;
9883
9939
  }
9884
- declare class Corner extends Component<Props$y, SpreadsheetChildEnv> {
9940
+ declare class Corner extends Component<Props$z, SpreadsheetChildEnv> {
9885
9941
  static template: string;
9886
9942
  static props: {
9887
9943
  zone: ObjectConstructor;
@@ -9896,14 +9952,14 @@ declare class Corner extends Component<Props$y, SpreadsheetChildEnv> {
9896
9952
  onMouseDown(ev: PointerEvent): void;
9897
9953
  }
9898
9954
 
9899
- interface Props$x {
9955
+ interface Props$y {
9900
9956
  zone: Zone;
9901
9957
  color: Color;
9902
9958
  }
9903
9959
  interface HighlightState {
9904
9960
  shiftingMode: "isMoving" | "isResizing" | "none";
9905
9961
  }
9906
- declare class Highlight extends Component<Props$x, SpreadsheetChildEnv> {
9962
+ declare class Highlight extends Component<Props$y, SpreadsheetChildEnv> {
9907
9963
  static template: string;
9908
9964
  static props: {
9909
9965
  zone: ObjectConstructor;
@@ -9926,7 +9982,7 @@ declare class Highlight extends Component<Props$x, SpreadsheetChildEnv> {
9926
9982
 
9927
9983
  type ScrollDirection = "horizontal" | "vertical";
9928
9984
 
9929
- interface Props$w {
9985
+ interface Props$x {
9930
9986
  width: Pixel;
9931
9987
  height: Pixel;
9932
9988
  direction: ScrollDirection;
@@ -9934,7 +9990,7 @@ interface Props$w {
9934
9990
  offset: Pixel;
9935
9991
  onScroll: (offset: Pixel) => void;
9936
9992
  }
9937
- declare class ScrollBar extends Component<Props$w> {
9993
+ declare class ScrollBar extends Component<Props$x> {
9938
9994
  static props: {
9939
9995
  width: {
9940
9996
  type: NumberConstructor;
@@ -9962,10 +10018,10 @@ declare class ScrollBar extends Component<Props$w> {
9962
10018
  onScroll(ev: any): void;
9963
10019
  }
9964
10020
 
9965
- interface Props$v {
10021
+ interface Props$w {
9966
10022
  leftOffset: number;
9967
10023
  }
9968
- declare class HorizontalScrollBar extends Component<Props$v, SpreadsheetChildEnv> {
10024
+ declare class HorizontalScrollBar extends Component<Props$w, SpreadsheetChildEnv> {
9969
10025
  static props: {
9970
10026
  leftOffset: {
9971
10027
  type: NumberConstructor;
@@ -9991,10 +10047,10 @@ declare class HorizontalScrollBar extends Component<Props$v, SpreadsheetChildEnv
9991
10047
  onScroll(offset: any): void;
9992
10048
  }
9993
10049
 
9994
- interface Props$u {
10050
+ interface Props$v {
9995
10051
  topOffset: number;
9996
10052
  }
9997
- declare class VerticalScrollBar extends Component<Props$u, SpreadsheetChildEnv> {
10053
+ declare class VerticalScrollBar extends Component<Props$v, SpreadsheetChildEnv> {
9998
10054
  static props: {
9999
10055
  topOffset: {
10000
10056
  type: NumberConstructor;
@@ -10020,13 +10076,13 @@ declare class VerticalScrollBar extends Component<Props$u, SpreadsheetChildEnv>
10020
10076
  onScroll(offset: any): void;
10021
10077
  }
10022
10078
 
10023
- interface Props$t {
10079
+ interface Props$u {
10024
10080
  table: Table;
10025
10081
  }
10026
10082
  interface State$2 {
10027
10083
  highlightZone: Zone | undefined;
10028
10084
  }
10029
- declare class TableResizer extends Component<Props$t, SpreadsheetChildEnv> {
10085
+ declare class TableResizer extends Component<Props$u, SpreadsheetChildEnv> {
10030
10086
  static template: string;
10031
10087
  static props: {
10032
10088
  table: ObjectConstructor;
@@ -10055,10 +10111,10 @@ declare class TableResizer extends Component<Props$t, SpreadsheetChildEnv> {
10055
10111
  * - a vertical resizer (same, for rows)
10056
10112
  */
10057
10113
  type ContextMenuType = "ROW" | "COL" | "CELL" | "FILTER" | "GROUP_HEADERS" | "UNGROUP_HEADERS";
10058
- interface Props$s {
10114
+ interface Props$t {
10059
10115
  exposeFocus: (focus: () => void) => void;
10060
10116
  }
10061
- declare class Grid extends Component<Props$s, SpreadsheetChildEnv> {
10117
+ declare class Grid extends Component<Props$t, SpreadsheetChildEnv> {
10062
10118
  static template: string;
10063
10119
  static props: {
10064
10120
  exposeFocus: FunctionConstructor;
@@ -10093,7 +10149,6 @@ declare class Grid extends Component<Props$s, SpreadsheetChildEnv> {
10093
10149
  }, onPointerMove: (col: HeaderIndex, row: HeaderIndex, ev: MouseEvent) => void, onPointerUp: () => void) => void;
10094
10150
  };
10095
10151
  onMouseWheel: (ev: WheelEvent) => void;
10096
- canvasPosition: DOMCoordinates;
10097
10152
  hoveredCell: Store<DelayedHoveredCellStore>;
10098
10153
  sidePanel: Store<SidePanelStore>;
10099
10154
  setup(): void;
@@ -10110,6 +10165,7 @@ declare class Grid extends Component<Props$s, SpreadsheetChildEnv> {
10110
10165
  get isAutofillVisible(): boolean;
10111
10166
  onGridResized({ height, width }: DOMDimension): void;
10112
10167
  private moveCanvas;
10168
+ private processSpaceKey;
10113
10169
  getClientPositionKey(client: Client): string;
10114
10170
  isCellHovered(col: HeaderIndex, row: HeaderIndex): boolean;
10115
10171
  private getGridRect;
@@ -10169,7 +10225,7 @@ declare class MainChartPanelStore extends SpreadsheetStore {
10169
10225
  private getChartDefinitionFromContextCreation;
10170
10226
  }
10171
10227
 
10172
- interface Props$r {
10228
+ interface Props$s {
10173
10229
  figureId: UID;
10174
10230
  chartPanelStore: MainChartPanelStore;
10175
10231
  }
@@ -10177,7 +10233,7 @@ interface ChartTypePickerState {
10177
10233
  popoverProps: PopoverProps | undefined;
10178
10234
  popoverStyle: string;
10179
10235
  }
10180
- declare class ChartTypePicker extends Component<Props$r, SpreadsheetChildEnv> {
10236
+ declare class ChartTypePicker extends Component<Props$s, SpreadsheetChildEnv> {
10181
10237
  static template: string;
10182
10238
  static components: {
10183
10239
  Section: typeof Section;
@@ -10213,11 +10269,11 @@ declare class ChartTypePicker extends Component<Props$r, SpreadsheetChildEnv> {
10213
10269
  private closePopover;
10214
10270
  }
10215
10271
 
10216
- interface Props$q {
10272
+ interface Props$r {
10217
10273
  onCloseSidePanel: () => void;
10218
10274
  figureId: UID;
10219
10275
  }
10220
- declare class ChartPanel extends Component<Props$q, SpreadsheetChildEnv> {
10276
+ declare class ChartPanel extends Component<Props$r, SpreadsheetChildEnv> {
10221
10277
  static template: string;
10222
10278
  static components: {
10223
10279
  Section: typeof Section;
@@ -10237,11 +10293,11 @@ declare class ChartPanel extends Component<Props$q, SpreadsheetChildEnv> {
10237
10293
  private getChartDefinition;
10238
10294
  }
10239
10295
 
10240
- interface Props$p {
10296
+ interface Props$q {
10241
10297
  onValueChange: (value: number) => void;
10242
10298
  value: number;
10243
10299
  }
10244
- declare class PieHoleSize extends Component<Props$p, SpreadsheetChildEnv> {
10300
+ declare class PieHoleSize extends Component<Props$q, SpreadsheetChildEnv> {
10245
10301
  static template: string;
10246
10302
  static components: {
10247
10303
  Section: typeof Section;
@@ -10254,13 +10310,13 @@ declare class PieHoleSize extends Component<Props$p, SpreadsheetChildEnv> {
10254
10310
  onChange(value: string): void;
10255
10311
  }
10256
10312
 
10257
- interface Props$o {
10313
+ interface Props$p {
10258
10314
  figureId: UID;
10259
10315
  definition: PieChartDefinition;
10260
10316
  canUpdateChart: (figureID: UID, definition: GenericDefinition<PieChartDefinition>) => DispatchResult;
10261
10317
  updateChart: (figureId: UID, definition: GenericDefinition<PieChartDefinition>) => DispatchResult;
10262
10318
  }
10263
- declare class PieChartDesignPanel extends Component<Props$o, SpreadsheetChildEnv> {
10319
+ declare class PieChartDesignPanel extends Component<Props$p, SpreadsheetChildEnv> {
10264
10320
  static template: string;
10265
10321
  static components: {
10266
10322
  GeneralDesignEditor: typeof GeneralDesignEditor;
@@ -10281,10 +10337,10 @@ declare class PieChartDesignPanel extends Component<Props$o, SpreadsheetChildEnv
10281
10337
  onPieHoleSizeChange(pieHolePercentage: number): void;
10282
10338
  }
10283
10339
 
10284
- interface Props$n {
10340
+ interface Props$o {
10285
10341
  items: ActionSpec[];
10286
10342
  }
10287
- declare class CogWheelMenu extends Component<Props$n, SpreadsheetChildEnv> {
10343
+ declare class CogWheelMenu extends Component<Props$o, SpreadsheetChildEnv> {
10288
10344
  static template: string;
10289
10345
  static components: {
10290
10346
  Menu: typeof Menu;
@@ -10367,14 +10423,14 @@ declare class FindAndReplaceStore extends SpreadsheetStore implements HighlightP
10367
10423
  get highlights(): Highlight$1[];
10368
10424
  }
10369
10425
 
10370
- interface Props$m {
10426
+ interface Props$n {
10371
10427
  deferUpdate: boolean;
10372
10428
  isDirty: boolean;
10373
10429
  toggleDeferUpdate: (value: boolean) => void;
10374
10430
  discard: () => void;
10375
10431
  apply: () => void;
10376
10432
  }
10377
- declare class PivotDeferUpdate extends Component<Props$m, SpreadsheetChildEnv> {
10433
+ declare class PivotDeferUpdate extends Component<Props$n, SpreadsheetChildEnv> {
10378
10434
  static template: string;
10379
10435
  static props: {
10380
10436
  deferUpdate: BooleanConstructor;
@@ -10391,11 +10447,11 @@ declare class PivotDeferUpdate extends Component<Props$m, SpreadsheetChildEnv> {
10391
10447
  get deferUpdatesTooltip(): string;
10392
10448
  }
10393
10449
 
10394
- interface Props$l {
10450
+ interface Props$m {
10395
10451
  onFieldPicked: (field: string) => void;
10396
10452
  fields: PivotField[];
10397
10453
  }
10398
- declare class AddDimensionButton extends Component<Props$l, SpreadsheetChildEnv> {
10454
+ declare class AddDimensionButton extends Component<Props$m, SpreadsheetChildEnv> {
10399
10455
  static template: string;
10400
10456
  static components: {
10401
10457
  Popover: typeof Popover;
@@ -10431,7 +10487,7 @@ declare class AddDimensionButton extends Component<Props$l, SpreadsheetChildEnv>
10431
10487
  onKeyDown(ev: KeyboardEvent): void;
10432
10488
  }
10433
10489
 
10434
- interface Props$k {
10490
+ interface Props$l {
10435
10491
  value: string;
10436
10492
  onChange: (value: string) => void;
10437
10493
  class?: string;
@@ -10439,7 +10495,7 @@ interface Props$k {
10439
10495
  placeholder?: string;
10440
10496
  autofocus?: boolean;
10441
10497
  }
10442
- declare class TextInput extends Component<Props$k, SpreadsheetChildEnv> {
10498
+ declare class TextInput extends Component<Props$l, SpreadsheetChildEnv> {
10443
10499
  static template: string;
10444
10500
  static props: {
10445
10501
  value: StringConstructor;
@@ -10469,13 +10525,13 @@ declare class TextInput extends Component<Props$k, SpreadsheetChildEnv> {
10469
10525
  onMouseUp(ev: MouseEvent): void;
10470
10526
  }
10471
10527
 
10472
- interface Props$j {
10528
+ interface Props$k {
10473
10529
  dimension: PivotCoreDimension | PivotCoreMeasure;
10474
10530
  onRemoved: (dimension: PivotCoreDimension | PivotCoreMeasure) => void;
10475
10531
  onNameUpdated?: (dimension: PivotCoreDimension | PivotCoreMeasure, name?: string) => void;
10476
10532
  type: "row" | "col" | "measure";
10477
10533
  }
10478
- declare class PivotDimension extends Component<Props$j, SpreadsheetChildEnv> {
10534
+ declare class PivotDimension extends Component<Props$k, SpreadsheetChildEnv> {
10479
10535
  static template: string;
10480
10536
  static props: {
10481
10537
  dimension: ObjectConstructor;
@@ -10499,13 +10555,13 @@ declare class PivotDimension extends Component<Props$j, SpreadsheetChildEnv> {
10499
10555
  updateName(name: string): void;
10500
10556
  }
10501
10557
 
10502
- interface Props$i {
10558
+ interface Props$j {
10503
10559
  dimension: PivotDimension$1;
10504
10560
  onUpdated: (dimension: PivotDimension$1, ev: InputEvent) => void;
10505
10561
  availableGranularities: Set<string>;
10506
10562
  allGranularities: string[];
10507
10563
  }
10508
- declare class PivotDimensionGranularity extends Component<Props$i, SpreadsheetChildEnv> {
10564
+ declare class PivotDimensionGranularity extends Component<Props$j, SpreadsheetChildEnv> {
10509
10565
  static template: string;
10510
10566
  static props: {
10511
10567
  dimension: ObjectConstructor;
@@ -10530,11 +10586,11 @@ declare class PivotDimensionGranularity extends Component<Props$i, SpreadsheetCh
10530
10586
  };
10531
10587
  }
10532
10588
 
10533
- interface Props$h {
10589
+ interface Props$i {
10534
10590
  dimension: PivotDimension$1;
10535
10591
  onUpdated: (dimension: PivotDimension$1, ev: InputEvent) => void;
10536
10592
  }
10537
- declare class PivotDimensionOrder extends Component<Props$h, SpreadsheetChildEnv> {
10593
+ declare class PivotDimensionOrder extends Component<Props$i, SpreadsheetChildEnv> {
10538
10594
  static template: string;
10539
10595
  static props: {
10540
10596
  dimension: ObjectConstructor;
@@ -10570,7 +10626,7 @@ declare function createPivotFormula(formulaId: string, cell: PivotTableCell): st
10570
10626
  declare function toNormalizedPivotValue(dimension: Pick<PivotDimension$1, "type" | "displayName" | "granularity">, groupValue: any): CellValue;
10571
10627
  declare function toFunctionPivotValue(value: CellValue, dimension: Pick<PivotDimension$1, "type" | "granularity">): string;
10572
10628
 
10573
- interface Props$g {
10629
+ interface Props$h {
10574
10630
  pivotId: string;
10575
10631
  definition: PivotRuntimeDefinition;
10576
10632
  measure: PivotMeasure;
@@ -10578,7 +10634,7 @@ interface Props$g {
10578
10634
  onRemoved: () => void;
10579
10635
  generateMeasureId: (fieldName: string, aggregator?: string) => string;
10580
10636
  }
10581
- declare class PivotMeasureEditor extends Component<Props$g> {
10637
+ declare class PivotMeasureEditor extends Component<Props$h> {
10582
10638
  static template: string;
10583
10639
  static components: {
10584
10640
  PivotDimension: typeof PivotDimension;
@@ -10602,11 +10658,11 @@ declare class PivotMeasureEditor extends Component<Props$g> {
10602
10658
  getColoredSymbolToken(token: Token): Color | undefined;
10603
10659
  }
10604
10660
 
10605
- interface Props$f {
10661
+ interface Props$g {
10606
10662
  definition: PivotRuntimeDefinition;
10607
10663
  pivotId: UID;
10608
10664
  }
10609
- declare class PivotSortSection extends Component<Props$f, SpreadsheetChildEnv> {
10665
+ declare class PivotSortSection extends Component<Props$g, SpreadsheetChildEnv> {
10610
10666
  static template: string;
10611
10667
  static components: {
10612
10668
  Section: typeof Section;
@@ -10623,7 +10679,7 @@ declare class PivotSortSection extends Component<Props$f, SpreadsheetChildEnv> {
10623
10679
  }[];
10624
10680
  }
10625
10681
 
10626
- interface Props$e {
10682
+ interface Props$f {
10627
10683
  definition: PivotRuntimeDefinition;
10628
10684
  onDimensionsUpdated: (definition: Partial<PivotCoreDefinition>) => void;
10629
10685
  unusedGroupableFields: PivotField[];
@@ -10634,7 +10690,7 @@ interface Props$e {
10634
10690
  getScrollableContainerEl?: () => HTMLElement;
10635
10691
  pivotId: UID;
10636
10692
  }
10637
- declare class PivotLayoutConfigurator extends Component<Props$e, SpreadsheetChildEnv> {
10693
+ declare class PivotLayoutConfigurator extends Component<Props$f, SpreadsheetChildEnv> {
10638
10694
  static template: string;
10639
10695
  static components: {
10640
10696
  AddDimensionButton: typeof AddDimensionButton;
@@ -10724,11 +10780,11 @@ declare class PivotSidePanelStore extends SpreadsheetStore {
10724
10780
  private shouldKeepSortedColumn;
10725
10781
  }
10726
10782
 
10727
- interface Props$d {
10783
+ interface Props$e {
10728
10784
  pivotId: UID;
10729
10785
  flipAxis: () => void;
10730
10786
  }
10731
- declare class PivotTitleSection extends Component<Props$d, SpreadsheetChildEnv> {
10787
+ declare class PivotTitleSection extends Component<Props$e, SpreadsheetChildEnv> {
10732
10788
  static template: string;
10733
10789
  static components: {
10734
10790
  CogWheelMenu: typeof CogWheelMenu;
@@ -10825,6 +10881,90 @@ declare function getFirstPivotFunction(tokens: Token[]): {
10825
10881
  */
10826
10882
  declare function getNumberOfPivotFunctions(tokens: Token[]): number;
10827
10883
 
10884
+ interface PivotDialogColumn {
10885
+ formula: string;
10886
+ value: string;
10887
+ isMissing: boolean;
10888
+ style?: string;
10889
+ span: number;
10890
+ }
10891
+ interface PivotDialogRow {
10892
+ formula: string;
10893
+ value: string;
10894
+ isMissing: boolean;
10895
+ style?: string;
10896
+ }
10897
+ interface PivotDialogValue {
10898
+ formula: string;
10899
+ value: string;
10900
+ isMissing: boolean;
10901
+ }
10902
+ interface Props$d {
10903
+ pivotId: UID;
10904
+ onCellClicked: (formula: string) => void;
10905
+ }
10906
+ interface TableData {
10907
+ columns: PivotDialogColumn[][];
10908
+ rows: PivotDialogRow[];
10909
+ values: PivotDialogValue[][];
10910
+ }
10911
+ declare class PivotHTMLRenderer extends Component<Props$d, SpreadsheetChildEnv> {
10912
+ static template: string;
10913
+ static components: {
10914
+ Checkbox: typeof Checkbox;
10915
+ };
10916
+ static props: {
10917
+ pivotId: StringConstructor;
10918
+ onCellClicked: FunctionConstructor;
10919
+ };
10920
+ private pivot;
10921
+ data: TableData;
10922
+ private state;
10923
+ setup(): void;
10924
+ get tracker(): PivotPresenceTracker | undefined;
10925
+ /**
10926
+ * Retrieve the data to display in the Pivot Table
10927
+ * In the case when showMissingValuesOnly is false, the returned value
10928
+ * is the complete data
10929
+ * In the case when showMissingValuesOnly is true, the returned value is
10930
+ * the data which contains only missing values in the rows and cols. In
10931
+ * the rows, we also return the parent rows of rows which contains missing
10932
+ * values, to give context to the user.
10933
+ *
10934
+ */
10935
+ getTableData(): TableData;
10936
+ /**
10937
+ * Retrieve the parents of the given row
10938
+ * ex:
10939
+ * Australia
10940
+ * January
10941
+ * February
10942
+ * The parent of "January" is "Australia"
10943
+ */
10944
+ private addRecursiveRow;
10945
+ /**
10946
+ * Create the columns to be used, based on the indexes of the columns in
10947
+ * which a missing value is present
10948
+ *
10949
+ */
10950
+ private buildColumnsMissing;
10951
+ /**
10952
+ * Create the rows to be used, based on the indexes of the rows in
10953
+ * which a missing value is present.
10954
+ */
10955
+ private buildRowsMissing;
10956
+ /**
10957
+ * Create the value to be used, based on the indexes of the columns and
10958
+ * rows in which a missing value is present.
10959
+ */
10960
+ private buildValuesMissing;
10961
+ private getColumnsIndexes;
10962
+ private getRowsIndexes;
10963
+ _buildColHeaders(id: UID, table: SpreadsheetPivotTable): PivotDialogColumn[][];
10964
+ _buildRowHeaders(id: UID, table: SpreadsheetPivotTable): PivotDialogRow[];
10965
+ _buildValues(id: UID, table: SpreadsheetPivotTable): PivotDialogValue[][];
10966
+ }
10967
+
10828
10968
  interface Props$c {
10829
10969
  figureId: UID;
10830
10970
  definition: ComboChartDefinition;
@@ -11045,7 +11185,7 @@ declare class HoveredTableStore extends SpreadsheetStore {
11045
11185
  row: number | undefined;
11046
11186
  overlayColors: PositionMap<Color>;
11047
11187
  handle(cmd: Command): void;
11048
- hover(position: Partial<Position$1>): void;
11188
+ hover(position: Partial<Position$1>): "noStateChange" | undefined;
11049
11189
  clear(): void;
11050
11190
  private computeOverlay;
11051
11191
  }
@@ -11225,11 +11365,11 @@ interface Renderer {
11225
11365
  renderingLayers: Readonly<LayerName[]>;
11226
11366
  }
11227
11367
  declare class RendererStore {
11228
- mutators: readonly ["register", "unRegister"];
11368
+ mutators: readonly ["register", "unRegister", "drawLayer"];
11229
11369
  private renderers;
11230
11370
  register(renderer: Renderer): void;
11231
11371
  unRegister(renderer: Renderer): void;
11232
- drawLayer(context: GridRenderingContext, layer: LayerName): void;
11372
+ drawLayer(context: GridRenderingContext, layer: LayerName): string;
11233
11373
  }
11234
11374
 
11235
11375
  interface RippleProps {
@@ -11510,6 +11650,7 @@ declare class SpreadsheetDashboard extends Component<Props$3, SpreadsheetChildEn
11510
11650
  canvasPosition: DOMCoordinates;
11511
11651
  hoveredCell: Store<DelayedHoveredCellStore>;
11512
11652
  clickableCellsStore: Store<ClickableCellsStore>;
11653
+ private gridRef;
11513
11654
  setup(): void;
11514
11655
  get gridContainer(): string;
11515
11656
  get gridOverlayDimensions(): string;
@@ -11988,6 +12129,7 @@ declare const components: {
11988
12129
  PivotDimensionOrder: typeof PivotDimensionOrder;
11989
12130
  PivotDimension: typeof PivotDimension;
11990
12131
  PivotLayoutConfigurator: typeof PivotLayoutConfigurator;
12132
+ PivotHTMLRenderer: typeof PivotHTMLRenderer;
11991
12133
  PivotDeferUpdate: typeof PivotDeferUpdate;
11992
12134
  PivotTitleSection: typeof PivotTitleSection;
11993
12135
  CogWheelMenu: typeof CogWheelMenu;
@@ -12070,7 +12212,7 @@ declare const chartHelpers: {
12070
12212
  labels: string[];
12071
12213
  };
12072
12214
  getLineChartDatasets(definition: GenericDefinition<LineChartDefinition>, args: ChartRuntimeGenerationArgs): chart_js.ChartDataset<"line">[];
12073
- getScatterChartDatasets(definition: GenericDefinition<ScatterChartDefinition>, args: ChartRuntimeGenerationArgs): chart_js.ChartDataset[];
12215
+ getScatterChartDatasets(definition: GenericDefinition<ScatterChartDefinition>, args: ChartRuntimeGenerationArgs): chart_js.ChartDataset<"line">[];
12074
12216
  getPieChartDatasets(definition: GenericDefinition<PieChartDefinition>, args: ChartRuntimeGenerationArgs): chart_js.ChartDataset<"pie">[];
12075
12217
  getComboChartDatasets(definition: GenericDefinition<ComboChartDefinition>, args: ChartRuntimeGenerationArgs): chart_js.ChartDataset<"bar" | "line">[];
12076
12218
  getRadarChartDatasets(definition: GenericDefinition<RadarChartDefinition>, args: ChartRuntimeGenerationArgs): chart_js.ChartDataset<"radar">[];
@@ -12547,7 +12689,7 @@ declare const chartHelpers: {
12547
12689
  useLeftAxis: boolean;
12548
12690
  useRightAxis: boolean;
12549
12691
  };
12550
- formatChartDatasetValue(axisFormats: ChartAxisFormats, locale: Locale): (value: any, axisId: string | undefined) => any;
12692
+ formatChartDatasetValue(axisFormats: ChartAxisFormats, locale: Locale): (value: any, axisId: string) => any;
12551
12693
  formatTickValue(localeFormat: LocaleFormat): (value: any) => any;
12552
12694
  getPieColors(colors: ColorGenerator, dataSetsValues: DatasetValues[]): Color[];
12553
12695
  truncateLabel(label: string | undefined): string;
@@ -12598,4 +12740,4 @@ declare const chartHelpers: {
12598
12740
  WaterfallChart: typeof WaterfallChart;
12599
12741
  };
12600
12742
 
12601
- export { AST, ASTFuncall, AboveAverageRule, AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, ActivateNextSheetCommand, ActivatePreviousSheetCommand, ActivateSheetCommand, AddColumnsRowsCommand, AddConditionalFormatCommand, AddDataValidationCommand, AddFunctionDescription, AddMergeCommand, AddPivotCommand, Aggregator, Alias, Align, AlphanumericIncrementModifier, AnchorOffset, AnchorZone, ApplyRangeChange, ApplyRangeChangeResult, Arg, ArgDefinition, ArgType, AutoFillCellCommand, AutofillAutoCommand, AutofillCellData, AutofillCommand, AutofillData, AutofillModifier, AutofillModifierImplementation, AutofillResult, AutofillSelectCommand, AutofillTableCommand, AutoresizeColumnsCommand, AutoresizeRowsCommand, AxesDesign, AxisDesign, AxisType, BeginsWithRule, BooleanCell, Border$1 as Border, BorderData, BorderDescr, BorderPosition, BorderStyle, Box, BoxTextContent, CHART_TYPES, CSSProperties, CancelledReason, Cell, CellErrorType, CellIsRule, CellPosition, CellValue, CellValueType, ChangeType, ChartAxisFormats, ChartCreationContext, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartRuntimeGenerationArgs, ChartStyle, ChartType, ChartWithAxisDefinition, ChartWithDataSetDefinition, CleanClipBoardHighlightCommand, ClearCellCommand, ClearCellsCommand, ClearFormattingCommand, Client, ClientId, ClientJoinedMessage, ClientLeftMessage, ClientMovedMessage, ClientPosition, ClipboardCell, ClipboardCellData, ClipboardData, ClipboardFigureData, ClipboardMIMEType, ClipboardOperation, ClipboardOptions, ClipboardPasteOptions, ClipboardPasteTarget, Cloneable, CollaborationMessage, CollaborativeEvent, CollaborativeEventReceived, CollaborativeEventTypes, Color, ColorScaleMidPointThreshold, ColorScaleRule, ColorScaleThreshold, ColorSheetCommand, Command, CommandDispatcher, CommandHandler, CommandResult, CommandTypes, CommonPivotCoreDefinition, CompiledFormula, ComposerFocusType, ComputeFunction, ComputedTableStyle, ConditionalFormat, ConditionalFormatInternal, ConditionalFormatRule, ConditionalFormatRuleInternal, ConditionalFormattingOperatorValues, ConsecutiveIndexes, ContainsTextRule, CopyCommand, CopyModifier, CopyPasteCellsAboveCommand, CopyPasteCellsOnLeftCommand, CoreCommand, CoreCommandDispatcher, CoreCommandTypes, CoreGetters, CorePlugin, CoreTable, CoreTableType, CoreViewCommand, CoreViewCommandTypes, CoreViewPlugin, CreateChartCommand, CreateFigureCommand, CreateImageOverCommand, CreateRevisionOptions, CreateSheetCommand, CreateTableCommand, CreateTableStyleCommand, Currency, CustomFormulaCriterion, CustomizedDataSet, CutCommand, DEFAULT_LOCALE, DEFAULT_LOCALES, DIRECTION, DOMCoordinates, DOMDimension, DataBarFill, DataBarRule, DataBarRuleInternal, DataSet, DataValidationCriterion, DataValidationCriterionType, DataValidationDateCriterion, DataValidationRule, DataValidationRuleData, DatasetDesign, DatasetValues, DateCriterionValue, DateIncrementModifier, DateIsAfterCriterion, DateIsBeforeCriterion, DateIsBetweenCriterion, DateIsCriterion, DateIsNotBetweenCriterion, DateIsOnOrAfterCriterion, DateIsOnOrBeforeCriterion, DateIsValidCriterion, DebouncedFunction, DeleteCellCommand, DeleteContentCommand, DeleteFigureCommand, DeleteSheetCommand, DeleteUnfilteredContentCommand, Dependencies, Dimension, DimensionTree, DimensionTreeNode, Direction$1 as Direction, DispatchResult, DuplicatePivotCommand, DuplicatePivotInNewSheetCommand, DuplicateSheetCommand, DynamicTable, EdgeScrollInfo, EditTextOptions, EditionMode, EmptyCell, EndsWithRule, EnrichedToken, EnsureRange, ErrorCell, EvalContext, EvaluateCellsCommand, EvaluateChartsCommand, EvaluatedCell, EvaluationError, ExcelChartDataset, ExcelChartDefinition, ExcelChartTrendConfiguration, ExcelChartType, ExcelFigureSize, ExcelFilterData, ExcelHeaderData, ExcelSheetData, ExcelTableData, ExcelTrendlineType, ExcelWorkbookData, ExpressionRule, Figure, FigureData, FigureInfo, FigureSize, FigureUI, Filter, FilterId, FoldAllHeaderGroupsCommand, FoldHeaderGroupCommand, FoldHeaderGroupsInZoneCommand, Format, FormattedValue, FormulaCell, FormulaModifier, FormulaToExecute, FreezeColumnsCommand, FreezeRowsCommand, FunctionDescription, FunctionRegistry, FunctionResultNumber, FunctionResultObject, GeneratorCell, GenericDefinition, GetSymbolValue, Getters, Granularity, GridClickModifiers, GridRenderingContext, GroupHeadersCommand, HSLA, HeaderData, HeaderDimensions, HeaderGroup, HeaderIndex, HeadersDependentCommand, HideColumnsRowsCommand, HideSheetCommand, Highlight$1 as Highlight, HistoryChange, IconSet, IconSetRule, IconThreshold, Image, Immutable, Increment, IncrementModifier, InformationNotification, InitPivotParams, InsertCellCommand, InsertNewPivotCommand, InsertPivotCommand, InsertPivotWithTableCommand, IsBetweenCriterion, IsCheckboxCriterion, IsEqualCriterion, IsGreaterOrEqualToCriterion, IsGreaterThanCriterion, IsLessOrEqualToCriterion, IsLessThanCriterion, IsNotBetweenCriterion, IsNotEqualCriterion, IsValueInListCriterion, IsValueInRangeCriterion, LabelValues, LayerName, Lazy, Link, LiteralCell, LocalCommand, Locale, LocaleCode, LocaleFormat, LookupCaches, Matrix, Maybe, MenuMouseEvent, Merge, Model, MoveColumnsRowsCommand, MoveConditionalFormatCommand, MoveRangeCommand, MoveSheetCommand, MoveViewportDownCommand, MoveViewportToCellCommand, MoveViewportUpCommand, NewLocalStateUpdateEvent, NotContainsTextRule, NotificationType, NumberCell, OSClipboardContent, Offset, OperationSequenceNode, OrderedLayers, PaintFormat, PaneDivision, ParsedOSClipboardContent, ParsedOsClipboardContentWithImageData, PasteCommand, PasteFromOSClipboardCommand, Pivot, PivotColRowDomain, PivotCoreDefinition, PivotCoreDimension, PivotCoreMeasure, PivotDimension$1 as PivotDimension, PivotDomain, PivotEmptyCell, PivotField, PivotFields, PivotHeaderCell, PivotMeasure, PivotMeasureDisplay, PivotMeasureDisplayType, PivotMeasureHeaderCell, PivotNode, PivotRuntimeDefinition, PivotSortedColumn, PivotTableCell, PivotTableColumn, PivotTableData, PivotTableRow, PivotTimeAdapter, PivotTimeAdapterNotNull, PivotValueCell, Pixel, PixelPosition, Position$1 as Position, PositionDependentCommand, PropsOf, RGBA, Range, RangeAdapter$1 as RangeAdapter, RangeCompiledFormula, RangeData, RangePart, RangeProvider, RangeStringOptions, RangesDependentCommand, Rect, RedoCommand, Ref, ReferenceDenormalizer, RefreshPivotCommand, Registry, RemoteRevisionMessage, RemoteRevisionReceivedEvent, RemoveColumnsRowsCommand, RemoveConditionalFormatCommand, RemoveDataValidationCommand, RemoveDuplicatesCommand, RemoveMergeCommand, RemovePivotCommand, RemoveTableCommand, RemoveTableStyleCommand, RenamePivotCommand, RenameSheetCommand, RepeatPasteCommand, ReplaceSearchCommand, RequestRedoCommand, RequestUndoCommand, ResizeColumnsRowsCommand, ResizeDirection, ResizeTableCommand, ResizeViewportCommand, Revision, RevisionAcknowledgedEvent, RevisionData, RevisionRedone, RevisionRedoneMessage, RevisionUndone, RevisionUndoneMessage, Row, SPREADSHEET_DIMENSIONS, ScrollDirection$1 as ScrollDirection, SelectFigureCommand, Selection, SelectionStep, SetBorderCommand, SetBorderTargetCommand, SetContextualFormatCommand, SetDecimalCommand, SetDecimalStep, SetFormattingCommand, SetGridLinesVisibilityCommand, SetViewportOffsetCommand, SetZoneBordersCommand, Sheet, SheetDOMScrollInfo, SheetData, SheetDependentCommand, SheetEditingCommand, ShowFormulaCommand, ShowSheetCommand, SingleColorRule, SingleColorRules, SnapshotEvent, SortCommand, SortDirection, SortOptions, SplitPivotFormulaCommand, SplitTextIntoColumnsCommand, Spreadsheet, SpreadsheetChildEnv, SpreadsheetPivotCoreDefinition, SpreadsheetPivotTable, StartChangeHighlightCommand, StartCommand, StaticTable, StoreConstructor, StoreParams, Style, SumSelectionCommand, Table, TableBorder, TableConfig, TableData, TableElementStyle, TableId, TableStyle, TableStyleData, TableStyleTemplateName, TargetDependentCommand, TechnicalName, TextCell, TextContainsCriterion, TextIsCriterion, TextIsEmailCriterion, TextIsLinkCriterion, TextNotContainsCriterion, TextRule, ThresholdType, TimePeriodRule, TitleDesign, Token, Tooltip, Top10Rule, Transformation, TransformationFactory, TransportService, TrendConfiguration, TrendType, TrimWhitespaceCommand, UID, UIPlugin, UnGroupHeadersCommand, UnboundedZone, UndoCommand, UnexpectedRevisionIdEvent, UnfoldAllHeaderGroupsCommand, UnfoldHeaderGroupCommand, UnfoldHeaderGroupsInZoneCommand, UnfreezeColumnsCommand, UnfreezeColumnsRowsCommand, UnfreezeRowsCommand, UnhideColumnsRowsCommand, UpdateCellCommand, UpdateCellData, UpdateCellPositionCommand, UpdateChartCommand, UpdateFigureCommand, UpdateFilterCommand, UpdateLocaleCommand, UpdatePivotCommand, UpdateTableCommand, Validation, VerticalAlign, Viewport, WorkbookData, WorkbookHistory, Wrapping, Zone, ZoneDependentCommand, ZoneDimension, __info__, addFunction, addRenderingLayer, astToFormula, borderStyles, canExecuteInReadonly, chartHelpers, compile, compileTokens, components, constants, containsBlanksRule, containsErrorsRule, convertAstNodes, coreTypes, findCellInNewZone, functionCache, helpers, hooks, invalidateBordersCommands, invalidateCFEvaluationCommands, invalidateChartEvaluationCommands, invalidateDependenciesCommands, invalidateEvaluationCommands, isCoreCommand, isHeadersDependant, isMatrix, isPositionDependent, isRangeDependant, isSheetDependent, isTargetDependent, isZoneDependent, iterateAstNodes, links, load, notContainsBlanksRule, notContainsErrorsRule, parse, parseTokens, readonlyAllowedCommands, registries, setDefaultSheetViewSize, setTranslationMethod, stores, tokenColors, tokenize };
12743
+ export { AST, ASTFuncall, AboveAverageRule, AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, ActivateNextSheetCommand, ActivatePreviousSheetCommand, ActivateSheetCommand, AddColumnsRowsCommand, AddConditionalFormatCommand, AddDataValidationCommand, AddFunctionDescription, AddMergeCommand, AddPivotCommand, Aggregator, Alias, Align, AlphanumericIncrementModifier, AnchorOffset, AnchorZone, ApplyRangeChange, ApplyRangeChangeResult, Arg, ArgDefinition, ArgType, AutoFillCellCommand, AutofillAutoCommand, AutofillCellData, AutofillCommand, AutofillData, AutofillModifier, AutofillModifierImplementation, AutofillResult, AutofillSelectCommand, AutofillTableCommand, AutoresizeColumnsCommand, AutoresizeRowsCommand, AxesDesign, AxisDesign, AxisType, BeginsWithRule, BooleanCell, Border$1 as Border, BorderData, BorderDescr, BorderPosition, BorderStyle, Box, BoxTextContent, CHART_TYPES, CSSProperties, CancelledReason, Cell, CellErrorType, CellIsRule, CellPosition, CellValue, CellValueType, ChangeType, ChartAxisFormats, ChartCreationContext, ChartDatasetOrientation, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartRuntimeGenerationArgs, ChartStyle, ChartType, ChartWithAxisDefinition, ChartWithDataSetDefinition, CleanClipBoardHighlightCommand, ClearCellCommand, ClearCellsCommand, ClearFormattingCommand, Client, ClientId, ClientJoinedMessage, ClientLeftMessage, ClientMovedMessage, ClientPosition, ClipboardCell, ClipboardCellData, ClipboardData, ClipboardFigureData, ClipboardMIMEType, ClipboardOperation, ClipboardOptions, ClipboardPasteOptions, ClipboardPasteTarget, Cloneable, CollaborationMessage, CollaborativeEvent, CollaborativeEventReceived, CollaborativeEventTypes, Color, ColorScaleMidPointThreshold, ColorScaleRule, ColorScaleThreshold, ColorSheetCommand, Command, CommandDispatcher, CommandHandler, CommandResult, CommandTypes, CommonPivotCoreDefinition, CompiledFormula, ComposerFocusType, ComputeFunction, ComputedTableStyle, ConditionalFormat, ConditionalFormatInternal, ConditionalFormatRule, ConditionalFormatRuleInternal, ConditionalFormattingOperatorValues, ConsecutiveIndexes, ContainsTextRule, CopyCommand, CopyModifier, CopyPasteCellsAboveCommand, CopyPasteCellsOnLeftCommand, CoreCommand, CoreCommandDispatcher, CoreCommandTypes, CoreGetters, CorePlugin, CoreTable, CoreTableType, CoreViewCommand, CoreViewCommandTypes, CoreViewPlugin, CreateChartCommand, CreateFigureCommand, CreateImageOverCommand, CreateRevisionOptions, CreateSheetCommand, CreateTableCommand, CreateTableStyleCommand, CriterionFilter, Currency, CustomFormulaCriterion, CustomizedDataSet, CutCommand, DEFAULT_LOCALE, DEFAULT_LOCALES, DIRECTION, DOMCoordinates, DOMDimension, DataBarFill, DataBarRule, DataBarRuleInternal, DataFilterValue, DataSet, DataValidationCriterion, DataValidationCriterionType, DataValidationDateCriterion, DataValidationRule, DataValidationRuleData, DatasetDesign, DatasetValues, DateCriterionValue, DateIncrementModifier, DateIsAfterCriterion, DateIsBeforeCriterion, DateIsBetweenCriterion, DateIsCriterion, DateIsNotBetweenCriterion, DateIsOnOrAfterCriterion, DateIsOnOrBeforeCriterion, DateIsValidCriterion, DebouncedFunction, DeleteCellCommand, DeleteContentCommand, DeleteFigureCommand, DeleteSheetCommand, DeleteUnfilteredContentCommand, Dependencies, Dimension, DimensionTree, DimensionTreeNode, Direction$1 as Direction, DispatchResult, DuplicatePivotCommand, DuplicatePivotInNewSheetCommand, DuplicateSheetCommand, DynamicTable, EdgeScrollInfo, EditTextOptions, EditionMode, EmptyCell, EndsWithRule, EnrichedToken, EnsureRange, ErrorCell, EvalContext, EvaluateCellsCommand, EvaluateChartsCommand, EvaluatedCell, EvaluatedCriterion, EvaluatedDateCriterion, EvaluationError, ExcelChartDataset, ExcelChartDefinition, ExcelChartTrendConfiguration, ExcelChartType, ExcelFigureSize, ExcelFilterData, ExcelHeaderData, ExcelSheetData, ExcelTableData, ExcelTrendlineType, ExcelWorkbookData, ExpressionRule, Figure, FigureData, FigureInfo, FigureSize, FigureUI, Filter, FilterCriterionType, FilterId, FoldAllHeaderGroupsCommand, FoldHeaderGroupCommand, FoldHeaderGroupsInZoneCommand, Format, FormattedValue, FormulaCell, FormulaModifier, FormulaToExecute, FreezeColumnsCommand, FreezeRowsCommand, FunctionDescription, FunctionRegistry, FunctionResultNumber, FunctionResultObject, GeneratorCell, GenericCriterion, GenericCriterionType, GenericDateCriterion, GenericDefinition, GetSymbolValue, Getters, Granularity, GridClickModifiers, GridRenderingContext, GroupHeadersCommand, HSLA, HeaderData, HeaderDimensions, HeaderGroup, HeaderIndex, HeadersDependentCommand, HideColumnsRowsCommand, HideSheetCommand, Highlight$1 as Highlight, HistoryChange, IconSet, IconSetRule, IconThreshold, Image, Immutable, Increment, IncrementModifier, InformationNotification, InitPivotParams, InsertCellCommand, InsertNewPivotCommand, InsertPivotCommand, InsertPivotWithTableCommand, IsBetweenCriterion, IsCheckboxCriterion, IsEqualCriterion, IsGreaterOrEqualToCriterion, IsGreaterThanCriterion, IsLessOrEqualToCriterion, IsLessThanCriterion, IsNotBetweenCriterion, IsNotEqualCriterion, IsValueInListCriterion, IsValueInRangeCriterion, LabelValues, LayerName, Lazy, Link, LiteralCell, LocalCommand, Locale, LocaleCode, LocaleFormat, LookupCaches, Matrix, Maybe, MenuMouseEvent, Merge, Model, MoveColumnsRowsCommand, MoveConditionalFormatCommand, MoveRangeCommand, MoveSheetCommand, MoveViewportDownCommand, MoveViewportToCellCommand, MoveViewportUpCommand, NewLocalStateUpdateEvent, NotContainsTextRule, NotificationType, NumberCell, OSClipboardContent, Offset, OperationSequenceNode, OrderedLayers, PaintFormat, PaneDivision, ParsedOSClipboardContent, ParsedOsClipboardContentWithImageData, PasteCommand, PasteFromOSClipboardCommand, Pivot, PivotColRowDomain, PivotCoreDefinition, PivotCoreDimension, PivotCoreMeasure, PivotDimension$1 as PivotDimension, PivotDomain, PivotEmptyCell, PivotField, PivotFields, PivotHeaderCell, PivotMeasure, PivotMeasureDisplay, PivotMeasureDisplayType, PivotMeasureHeaderCell, PivotNode, PivotRuntimeDefinition, PivotSortedColumn, PivotStartPresenceTracking, PivotStopPresenceTracking, PivotTableCell, PivotTableColumn, PivotTableData, PivotTableRow, PivotTimeAdapter, PivotTimeAdapterNotNull, PivotValueCell, Pixel, PixelPosition, Position$1 as Position, PositionDependentCommand, PropsOf, RGBA, Range, RangeAdapter$1 as RangeAdapter, RangeCompiledFormula, RangeData, RangePart, RangeProvider, RangeStringOptions, RangesDependentCommand, Rect, RedoCommand, Ref, ReferenceDenormalizer, RefreshPivotCommand, Registry, RemoteRevisionMessage, RemoteRevisionReceivedEvent, RemoveColumnsRowsCommand, RemoveConditionalFormatCommand, RemoveDataValidationCommand, RemoveDuplicatesCommand, RemoveMergeCommand, RemovePivotCommand, RemoveTableCommand, RemoveTableStyleCommand, RenamePivotCommand, RenameSheetCommand, RepeatPasteCommand, ReplaceSearchCommand, RequestRedoCommand, RequestUndoCommand, ResizeColumnsRowsCommand, ResizeDirection, ResizeTableCommand, ResizeViewportCommand, Revision, RevisionAcknowledgedEvent, RevisionData, RevisionRedone, RevisionRedoneMessage, RevisionUndone, RevisionUndoneMessage, Row, SPREADSHEET_DIMENSIONS, ScrollDirection$1 as ScrollDirection, SelectFigureCommand, Selection, SelectionStep, SetBorderCommand, SetBorderTargetCommand, SetContextualFormatCommand, SetDecimalCommand, SetDecimalStep, SetFormattingCommand, SetGridLinesVisibilityCommand, SetViewportOffsetCommand, SetZoneBordersCommand, Sheet, SheetDOMScrollInfo, SheetData, SheetDependentCommand, SheetEditingCommand, ShowFormulaCommand, ShowSheetCommand, SingleColorRule, SingleColorRules, SnapshotEvent, SortCommand, SortDirection, SortOptions, SplitPivotFormulaCommand, SplitTextIntoColumnsCommand, Spreadsheet, SpreadsheetChildEnv, SpreadsheetPivotCoreDefinition, SpreadsheetPivotTable, StartChangeHighlightCommand, StartCommand, StaticTable, StoreConstructor, StoreParams, Style, SumSelectionCommand, Table, TableBorder, TableConfig, TableData$1 as TableData, TableElementStyle, TableId, TableStyle, TableStyleData, TableStyleTemplateName, TargetDependentCommand, TechnicalName, TextCell, TextContainsCriterion, TextIsCriterion, TextIsEmailCriterion, TextIsLinkCriterion, TextNotContainsCriterion, TextRule, ThresholdType, TimePeriodRule, TitleDesign, ToggleCheckboxCommand, Token, Tooltip, Top10Rule, Transformation, TransformationFactory, TransportService, TrendConfiguration, TrendType, TrimWhitespaceCommand, UID, UIPlugin, UnGroupHeadersCommand, UnboundedZone, UndoCommand, UnexpectedRevisionIdEvent, UnfoldAllHeaderGroupsCommand, UnfoldHeaderGroupCommand, UnfoldHeaderGroupsInZoneCommand, UnfreezeColumnsCommand, UnfreezeColumnsRowsCommand, UnfreezeRowsCommand, UnhideColumnsRowsCommand, UpdateCellCommand, UpdateCellData, UpdateCellPositionCommand, UpdateChartCommand, UpdateFigureCommand, UpdateFilterCommand, UpdateLocaleCommand, UpdatePivotCommand, UpdateTableCommand, Validation, ValuesFilter, VerticalAlign, Viewport, WorkbookData, WorkbookHistory, Wrapping, Zone, ZoneDependentCommand, ZoneDimension, __info__, addFunction, addRenderingLayer, astToFormula, availableConditionalFormatOperators, availableDataValidationOperators, availableFiltersOperators, borderStyles, canExecuteInReadonly, chartHelpers, compile, compileTokens, components, constants, containsBlanksRule, containsErrorsRule, convertAstNodes, coreTypes, filterDateCriterionOperators, filterNumberCriterionOperators, filterTextCriterionOperators, findCellInNewZone, functionCache, helpers, hooks, invalidateBordersCommands, invalidateCFEvaluationCommands, invalidateChartEvaluationCommands, invalidateDependenciesCommands, invalidateEvaluationCommands, isCoreCommand, isHeadersDependant, isMatrix, isPositionDependent, isRangeDependant, isSheetDependent, isTargetDependent, isZoneDependent, iterateAstNodes, links, load, notContainsBlanksRule, notContainsErrorsRule, parse, parseTokens, readonlyAllowedCommands, registries, setDefaultSheetViewSize, setTranslationMethod, stores, tokenColors, tokenize };