@odoo/o-spreadsheet 19.1.0-alpha.12 → 19.1.0-alpha.14

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.
@@ -91,7 +91,7 @@ declare enum CellValueType {
91
91
  error = "error"
92
92
  }
93
93
 
94
- type TokenType = "OPERATOR" | "NUMBER" | "STRING" | "SYMBOL" | "SPACE" | "DEBUGGER" | "ARG_SEPARATOR" | "LEFT_PAREN" | "RIGHT_PAREN" | "REFERENCE" | "INVALID_REFERENCE" | "UNKNOWN";
94
+ type TokenType = "OPERATOR" | "NUMBER" | "STRING" | "SYMBOL" | "SPACE" | "DEBUGGER" | "ARG_SEPARATOR" | "ARRAY_ROW_SEPARATOR" | "LEFT_PAREN" | "RIGHT_PAREN" | "LEFT_BRACE" | "RIGHT_BRACE" | "REFERENCE" | "INVALID_REFERENCE" | "UNKNOWN";
95
95
  interface Token {
96
96
  readonly type: TokenType;
97
97
  readonly value: string;
@@ -288,11 +288,15 @@ interface ASTSymbol extends ASTBase {
288
288
  type: "SYMBOL";
289
289
  value: string;
290
290
  }
291
+ interface ASTArray extends ASTBase {
292
+ type: "ARRAY";
293
+ value: AST[][];
294
+ }
291
295
  interface ASTEmpty extends ASTBase {
292
296
  type: "EMPTY";
293
297
  value: "";
294
298
  }
295
- type AST = ASTOperation | ASTUnaryOperation | ASTFuncall | ASTSymbol | ASTNumber | ASTBoolean | ASTString | ASTReference | ASTEmpty;
299
+ type AST = ASTOperation | ASTUnaryOperation | ASTFuncall | ASTSymbol | ASTArray | ASTNumber | ASTBoolean | ASTString | ASTReference | ASTEmpty;
296
300
  /**
297
301
  * Parse an expression (as a string) into an AST.
298
302
  */
@@ -1398,7 +1402,7 @@ declare class MergePlugin extends CorePlugin<MergeState> implements MergeState {
1398
1402
  }
1399
1403
 
1400
1404
  type Aggregator = "array_agg" | "count" | "count_distinct" | "bool_and" | "bool_or" | "max" | "min" | "avg" | "sum";
1401
- type Granularity = "day" | "week" | "month" | "quarter" | "year" | "second_number" | "minute_number" | "hour_number" | "day_of_week" | "day_of_month" | "iso_week_number" | "month_number" | "quarter_number";
1405
+ type Granularity = "day" | "month" | "year" | "second_number" | "minute_number" | "hour_number" | "day_of_week" | "day_of_month" | "iso_week_number" | "month_number" | "quarter_number";
1402
1406
  interface PivotCoreDimension {
1403
1407
  fieldName: string;
1404
1408
  order?: SortDirection;
@@ -1868,6 +1872,7 @@ interface StylePluginState {
1868
1872
  declare class StylePlugin extends CorePlugin<StylePluginState> implements StylePluginState {
1869
1873
  static getters: readonly ["getCellStyle", "getCellStyleInZone", "getZoneStyles", "getStyleColors"];
1870
1874
  readonly styles: Record<UID, ZoneStyle[] | undefined>;
1875
+ allowDispatch(cmd: CoreCommand): CommandResult | CommandResult[];
1871
1876
  handle(cmd: CoreCommand): void;
1872
1877
  adaptRanges(applyChange: ApplyRangeChange, sheetId: UID): void;
1873
1878
  private handleAddColumnn;
@@ -1885,6 +1890,7 @@ declare class StylePlugin extends CorePlugin<StylePluginState> implements StyleP
1885
1890
  import(data: WorkbookData): void;
1886
1891
  export(data: WorkbookData): void;
1887
1892
  exportForExcel(data: ExcelWorkbookData): void;
1893
+ private checkUselessSetFormatting;
1888
1894
  }
1889
1895
 
1890
1896
  interface Table {
@@ -2100,6 +2106,16 @@ interface XLSXExport {
2100
2106
  */
2101
2107
  type XlsxHexColor = string & Alias;
2102
2108
 
2109
+ declare const CALENDAR_CHART_GRANULARITIES: Granularity[];
2110
+ type CalendarChartGranularity = (typeof CALENDAR_CHART_GRANULARITIES)[number];
2111
+ interface CalendarChartDefinition extends CommonChartDefinition {
2112
+ readonly type: "calendar";
2113
+ readonly horizontalGroupBy: CalendarChartGranularity;
2114
+ readonly verticalGroupBy: CalendarChartGranularity;
2115
+ readonly colorScale?: ChartColorScale;
2116
+ readonly missingValueColor?: Color;
2117
+ }
2118
+
2103
2119
  type VerticalAxisPosition = "left" | "right";
2104
2120
  type LegendPosition = "top" | "bottom" | "left" | "right" | "none";
2105
2121
  interface CommonChartDefinition {
@@ -2475,14 +2491,20 @@ type WaterfallChartRuntime = {
2475
2491
  background: Color;
2476
2492
  };
2477
2493
 
2478
- declare const CHART_TYPES: readonly ["line", "bar", "pie", "scorecard", "gauge", "scatter", "combo", "waterfall", "pyramid", "radar", "geo", "funnel", "sunburst", "treemap"];
2494
+ declare const CHART_TYPES: readonly ["line", "bar", "pie", "scorecard", "gauge", "scatter", "combo", "waterfall", "pyramid", "radar", "geo", "funnel", "sunburst", "treemap", "calendar"];
2479
2495
  type ChartType = (typeof CHART_TYPES)[number];
2480
- type ChartDefinition = LineChartDefinition | PieChartDefinition | BarChartDefinition | ScorecardChartDefinition | GaugeChartDefinition | ScatterChartDefinition | ComboChartDefinition | WaterfallChartDefinition | PyramidChartDefinition | RadarChartDefinition | GeoChartDefinition | FunnelChartDefinition | SunburstChartDefinition | TreeMapChartDefinition;
2496
+ type ChartDefinition = LineChartDefinition | PieChartDefinition | BarChartDefinition | ScorecardChartDefinition | GaugeChartDefinition | ScatterChartDefinition | ComboChartDefinition | WaterfallChartDefinition | PyramidChartDefinition | RadarChartDefinition | GeoChartDefinition | FunnelChartDefinition | SunburstChartDefinition | TreeMapChartDefinition | CalendarChartDefinition;
2481
2497
  type ChartWithDataSetDefinition = Extract<ChartDefinition, {
2482
2498
  dataSets: CustomizedDataSet[];
2483
2499
  labelRange?: string;
2484
2500
  humanize?: boolean;
2485
2501
  }>;
2502
+ type ChartWithColorScaleDefinition = Extract<ChartDefinition, {
2503
+ colorScale?: ChartColorScale;
2504
+ }>;
2505
+ type ChartWithTitleDefinition = Extract<ChartDefinition, {
2506
+ title?: TitleDesign;
2507
+ }>;
2486
2508
  type ChartWithAxisDefinition = Extract<ChartWithDataSetDefinition, {
2487
2509
  axesDesign?: AxesDesign;
2488
2510
  }>;
@@ -2634,30 +2656,24 @@ interface ChartRuntimeGenerationArgs {
2634
2656
  type GenericDefinition<T extends ChartWithDataSetDefinition> = Partial<Omit<T, "dataSets" | "type">> & {
2635
2657
  dataSets?: Omit<T["dataSets"][number], "dataRange">[];
2636
2658
  };
2659
+ interface ChartColorScale {
2660
+ minColor: Color;
2661
+ midColor?: Color;
2662
+ maxColor: Color;
2663
+ }
2664
+ declare function schemeToColorScale(scheme: string): ChartColorScale | undefined;
2637
2665
 
2638
- interface GeoChartDefinition {
2666
+ interface GeoChartDefinition extends CommonChartDefinition {
2639
2667
  readonly type: "geo";
2640
- readonly dataSets: CustomizedDataSet[];
2641
- readonly dataSetsHaveTitle: boolean;
2642
- readonly labelRange?: string;
2643
- readonly title: TitleDesign;
2644
- readonly background?: Color;
2645
- readonly legendPosition: LegendPosition;
2646
- readonly colorScale?: GeoChartColorScale;
2668
+ readonly colorScale?: ChartColorScale;
2647
2669
  readonly missingValueColor?: Color;
2648
2670
  readonly region?: string;
2649
- readonly humanize?: boolean;
2671
+ readonly showColorBar?: boolean;
2650
2672
  }
2651
2673
  type GeoChartRuntime = {
2652
2674
  chartJsConfig: ChartConfiguration;
2653
2675
  background: Color;
2654
2676
  };
2655
- interface GeoChartCustomColorScale {
2656
- minColor: Color;
2657
- midColor?: Color;
2658
- maxColor: Color;
2659
- }
2660
- type GeoChartColorScale = GeoChartCustomColorScale | "blues" | "cividis" | "greens" | "greys" | "oranges" | "purples" | "rainbow" | "reds" | "viridis";
2661
2677
  type GeoChartProjection = "azimuthalEqualArea" | "azimuthalEquidistant" | "gnomonic" | "orthographic" | "stereographic" | "equalEarth" | "albers" | "albersUsa" | "conicConformal" | "conicEqualArea" | "conicEquidistant" | "equirectangular" | "mercator" | "transverseMercator" | "naturalEarth1";
2662
2678
  interface GeoChartRegion {
2663
2679
  id: string;
@@ -3157,7 +3173,7 @@ type SelectionEventOptions = {
3157
3173
  interface SelectionEvent {
3158
3174
  anchor: AnchorZone;
3159
3175
  previousAnchor: AnchorZone;
3160
- mode: "newAnchor" | "overrideSelection" | "updateAnchor";
3176
+ mode: "newAnchor" | "overrideSelection" | "updateAnchor" | "commitSelection";
3161
3177
  options: SelectionEventOptions;
3162
3178
  }
3163
3179
 
@@ -3167,6 +3183,7 @@ type StatefulStream<Event, State> = {
3167
3183
  resetDefaultAnchor: (owner: unknown, state: State) => void;
3168
3184
  resetAnchor: (owner: unknown, state: State) => void;
3169
3185
  observe: (owner: unknown, callbacks: StreamCallbacks<Event>) => void;
3186
+ unobserve: (owner: unknown) => void;
3170
3187
  release: (owner: unknown) => void;
3171
3188
  getBackToDefault(): void;
3172
3189
  };
@@ -3185,6 +3202,7 @@ interface SelectionProcessor {
3185
3202
  selectAll(): DispatchResult;
3186
3203
  loopSelection(): DispatchResult;
3187
3204
  selectTableAroundSelection(): DispatchResult;
3205
+ commitSelection(): DispatchResult;
3188
3206
  isListening(owner: unknown): boolean;
3189
3207
  }
3190
3208
  type SelectionStreamProcessor = SelectionProcessor & StatefulStream<SelectionEvent, AnchorZone>;
@@ -4578,12 +4596,16 @@ declare class UIOptionsPlugin extends UIPlugin {
4578
4596
  }
4579
4597
 
4580
4598
  declare class SheetUIPlugin extends UIPlugin {
4581
- static getters: readonly ["getCellWidth", "getTextWidth", "getCellText", "getCellMultiLineText", "getContiguousZone", "computeTextYCoordinate"];
4599
+ static getters: readonly ["getCellWidth", "getTextWidth", "getCellText", "getCellMultiLineText", "getMultilineTextSize", "getContiguousZone", "computeTextYCoordinate"];
4582
4600
  private ctx;
4583
4601
  allowDispatch(cmd: LocalCommand): CommandResult | CommandResult[];
4584
4602
  handle(cmd: Command): void;
4585
4603
  getCellWidth(position: CellPosition): number;
4586
4604
  getTextWidth(text: string, style: Style): Pixel;
4605
+ getMultilineTextSize(text: string[], style: Style): {
4606
+ width: number;
4607
+ height: number;
4608
+ };
4587
4609
  getCellText(position: CellPosition, args?: {
4588
4610
  showFormula?: boolean;
4589
4611
  availableWidth?: number;
@@ -4638,6 +4660,7 @@ declare class CarouselUIPlugin extends UIPlugin {
4638
4660
  private fixWrongCarouselState;
4639
4661
  private addNewChartToCarousel;
4640
4662
  private addFigureChartToCarousel;
4663
+ private duplicateCarouselChart;
4641
4664
  private getCarouselItemId;
4642
4665
  }
4643
4666
 
@@ -4954,7 +4977,7 @@ declare class InternalViewport {
4954
4977
  *
4955
4978
  */
4956
4979
  declare class SheetViewPlugin extends UIPlugin {
4957
- static getters: readonly ["getColIndex", "getRowIndex", "getActiveMainViewport", "getSheetViewDimension", "getSheetViewDimensionWithHeaders", "getMainViewportRect", "isVisibleInViewport", "getEdgeScrollCol", "getEdgeScrollRow", "getVisibleFigures", "getVisibleRect", "getVisibleRectWithoutHeaders", "getVisibleRectWithZoom", "getVisibleCellPositions", "getColRowOffsetInViewport", "getMainViewportCoordinates", "getActiveSheetScrollInfo", "getSheetViewVisibleCols", "getSheetViewVisibleRows", "getFrozenSheetViewRatio", "isPixelPositionVisible", "getColDimensionsInViewport", "getRowDimensionsInViewport", "getAllActiveViewportsZonesAndRect", "getRect", "getFigureUI", "getPositionAnchorOffset", "getGridOffset", "getViewportZoomLevel", "getScrollBarWidth"];
4980
+ static getters: readonly ["getColIndex", "getRowIndex", "getActiveMainViewport", "getSheetViewDimension", "getSheetViewDimensionWithHeaders", "getMainViewportRect", "isVisibleInViewport", "getEdgeScrollCol", "getEdgeScrollRow", "getVisibleFigures", "getVisibleRect", "getVisibleRectWithoutHeaders", "getVisibleRectWithZoom", "getVisibleCellPositions", "getColRowOffsetInViewport", "getMainViewportCoordinates", "getActiveSheetScrollInfo", "getSheetViewVisibleCols", "getSheetViewVisibleRows", "getFrozenSheetViewRatio", "isPixelPositionVisible", "getColDimensionsInViewport", "getRowDimensionsInViewport", "getAllActiveViewportsZonesAndRect", "getRect", "getFigureUI", "getPositionAnchorOffset", "getGridOffset", "getViewportZoomLevel", "getScrollBarWidth", "getMaximumSheetOffset"];
4958
4981
  private viewports;
4959
4982
  /**
4960
4983
  * The viewport dimensions are usually set by one of the components
@@ -5006,7 +5029,10 @@ declare class SheetViewPlugin extends UIPlugin {
5006
5029
  * Return the main viewport maximum size relative to the client size.
5007
5030
  */
5008
5031
  getMainViewportRect(): Rect;
5009
- private getMaximumSheetOffset;
5032
+ getMaximumSheetOffset(): {
5033
+ maxOffsetX: Pixel;
5034
+ maxOffsetY: Pixel;
5035
+ };
5010
5036
  getColRowOffsetInViewport(dimension: Dimension, referenceHeaderIndex: HeaderIndex, targetHeaderIndex: HeaderIndex): Pixel;
5011
5037
  /**
5012
5038
  * Check if a given position is visible in the viewport.
@@ -5278,6 +5304,8 @@ type Rect = DOMCoordinates & DOMDimension;
5278
5304
  interface BoxTextContent {
5279
5305
  textLines: string[];
5280
5306
  width: Pixel;
5307
+ textHeight: Pixel;
5308
+ textWidth: Pixel;
5281
5309
  align: Align;
5282
5310
  fontSizePx: number;
5283
5311
  x: Pixel;
@@ -5537,13 +5565,13 @@ interface ZoneDependentCommand {
5537
5565
  zone: Zone;
5538
5566
  }
5539
5567
  declare function isZoneDependent(cmd: CoreCommand): cmd is Extract<CoreCommand, ZoneDependentCommand>;
5540
- 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" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "SORT_CELLS" | "SET_DECIMAL" | "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" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SET_ZOOM" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING" | "TOGGLE_CHECKBOX" | "ADD_NEW_CHART_TO_CAROUSEL" | "ADD_FIGURE_CHART_TO_CAROUSEL" | "UPDATE_CAROUSEL_ACTIVE_ITEM" | "POPOUT_CHART_FROM_CAROUSEL">;
5541
- 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" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "SORT_CELLS" | "SET_DECIMAL" | "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" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SET_ZOOM" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING" | "TOGGLE_CHECKBOX" | "ADD_NEW_CHART_TO_CAROUSEL" | "ADD_FIGURE_CHART_TO_CAROUSEL" | "UPDATE_CAROUSEL_ACTIVE_ITEM" | "POPOUT_CHART_FROM_CAROUSEL">;
5542
- 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" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "SORT_CELLS" | "SET_DECIMAL" | "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" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SET_ZOOM" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING" | "TOGGLE_CHECKBOX" | "ADD_NEW_CHART_TO_CAROUSEL" | "ADD_FIGURE_CHART_TO_CAROUSEL" | "UPDATE_CAROUSEL_ACTIVE_ITEM" | "POPOUT_CHART_FROM_CAROUSEL">;
5543
- 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" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "SORT_CELLS" | "SET_DECIMAL" | "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" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SET_ZOOM" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING" | "TOGGLE_CHECKBOX" | "ADD_NEW_CHART_TO_CAROUSEL" | "ADD_FIGURE_CHART_TO_CAROUSEL" | "UPDATE_CAROUSEL_ACTIVE_ITEM" | "POPOUT_CHART_FROM_CAROUSEL">;
5544
- 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" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "SORT_CELLS" | "SET_DECIMAL" | "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" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SET_ZOOM" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING" | "TOGGLE_CHECKBOX" | "ADD_NEW_CHART_TO_CAROUSEL" | "ADD_FIGURE_CHART_TO_CAROUSEL" | "UPDATE_CAROUSEL_ACTIVE_ITEM" | "POPOUT_CHART_FROM_CAROUSEL">;
5545
- declare const invalidSubtotalFormulasCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "SORT_CELLS" | "SET_DECIMAL" | "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" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SET_ZOOM" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING" | "TOGGLE_CHECKBOX" | "ADD_NEW_CHART_TO_CAROUSEL" | "ADD_FIGURE_CHART_TO_CAROUSEL" | "UPDATE_CAROUSEL_ACTIVE_ITEM" | "POPOUT_CHART_FROM_CAROUSEL">;
5546
- 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" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "SORT_CELLS" | "SET_DECIMAL" | "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" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SET_ZOOM" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING" | "TOGGLE_CHECKBOX" | "ADD_NEW_CHART_TO_CAROUSEL" | "ADD_FIGURE_CHART_TO_CAROUSEL" | "UPDATE_CAROUSEL_ACTIVE_ITEM" | "POPOUT_CHART_FROM_CAROUSEL">;
5568
+ 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" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "SORT_CELLS" | "SET_DECIMAL" | "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" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SET_ZOOM" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING" | "TOGGLE_CHECKBOX" | "ADD_NEW_CHART_TO_CAROUSEL" | "ADD_FIGURE_CHART_TO_CAROUSEL" | "DUPLICATE_CAROUSEL_CHART" | "UPDATE_CAROUSEL_ACTIVE_ITEM" | "POPOUT_CHART_FROM_CAROUSEL">;
5569
+ 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" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "SORT_CELLS" | "SET_DECIMAL" | "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" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SET_ZOOM" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING" | "TOGGLE_CHECKBOX" | "ADD_NEW_CHART_TO_CAROUSEL" | "ADD_FIGURE_CHART_TO_CAROUSEL" | "DUPLICATE_CAROUSEL_CHART" | "UPDATE_CAROUSEL_ACTIVE_ITEM" | "POPOUT_CHART_FROM_CAROUSEL">;
5570
+ 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" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "SORT_CELLS" | "SET_DECIMAL" | "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" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SET_ZOOM" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING" | "TOGGLE_CHECKBOX" | "ADD_NEW_CHART_TO_CAROUSEL" | "ADD_FIGURE_CHART_TO_CAROUSEL" | "DUPLICATE_CAROUSEL_CHART" | "UPDATE_CAROUSEL_ACTIVE_ITEM" | "POPOUT_CHART_FROM_CAROUSEL">;
5571
+ 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" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "SORT_CELLS" | "SET_DECIMAL" | "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" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SET_ZOOM" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING" | "TOGGLE_CHECKBOX" | "ADD_NEW_CHART_TO_CAROUSEL" | "ADD_FIGURE_CHART_TO_CAROUSEL" | "DUPLICATE_CAROUSEL_CHART" | "UPDATE_CAROUSEL_ACTIVE_ITEM" | "POPOUT_CHART_FROM_CAROUSEL">;
5572
+ 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" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "SORT_CELLS" | "SET_DECIMAL" | "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" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SET_ZOOM" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING" | "TOGGLE_CHECKBOX" | "ADD_NEW_CHART_TO_CAROUSEL" | "ADD_FIGURE_CHART_TO_CAROUSEL" | "DUPLICATE_CAROUSEL_CHART" | "UPDATE_CAROUSEL_ACTIVE_ITEM" | "POPOUT_CHART_FROM_CAROUSEL">;
5573
+ declare const invalidSubtotalFormulasCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "SORT_CELLS" | "SET_DECIMAL" | "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" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SET_ZOOM" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING" | "TOGGLE_CHECKBOX" | "ADD_NEW_CHART_TO_CAROUSEL" | "ADD_FIGURE_CHART_TO_CAROUSEL" | "DUPLICATE_CAROUSEL_CHART" | "UPDATE_CAROUSEL_ACTIVE_ITEM" | "POPOUT_CHART_FROM_CAROUSEL">;
5574
+ 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" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "SORT_CELLS" | "SET_DECIMAL" | "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" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SET_ZOOM" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING" | "TOGGLE_CHECKBOX" | "ADD_NEW_CHART_TO_CAROUSEL" | "ADD_FIGURE_CHART_TO_CAROUSEL" | "DUPLICATE_CAROUSEL_CHART" | "UPDATE_CAROUSEL_ACTIVE_ITEM" | "POPOUT_CHART_FROM_CAROUSEL">;
5547
5575
  declare const coreTypes: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT">;
5548
5576
  declare function isCoreCommand(cmd: Command): cmd is CoreCommand;
5549
5577
  declare function canExecuteInReadonly(cmd: Command): boolean;
@@ -5745,6 +5773,12 @@ interface AddFigureChartToCarouselCommand extends SheetDependentCommand {
5745
5773
  carouselFigureId: UID;
5746
5774
  chartFigureId: UID;
5747
5775
  }
5776
+ interface DuplicateCarouselChartCommand extends SheetDependentCommand {
5777
+ type: "DUPLICATE_CAROUSEL_CHART";
5778
+ carouselId: UID;
5779
+ chartId: UID;
5780
+ duplicatedChartId: UID;
5781
+ }
5748
5782
  interface UpdateCarouselActiveItemCommand extends SheetDependentCommand {
5749
5783
  type: "UPDATE_CAROUSEL_ACTIVE_ITEM";
5750
5784
  figureId: UID;
@@ -6188,7 +6222,7 @@ UpdateCellCommand | UpdateCellPositionCommand | ClearCellCommand | ClearCellsCom
6188
6222
  | UpdateLocaleCommand
6189
6223
  /** PIVOT */
6190
6224
  | AddPivotCommand | UpdatePivotCommand | InsertPivotCommand | RenamePivotCommand | RemovePivotCommand | DuplicatePivotCommand;
6191
- 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 | SetZoomCommand | SumSelectionCommand | DeleteCellCommand | InsertCellCommand | SetViewportOffsetCommand | MoveViewportDownCommand | MoveViewportUpCommand | MoveViewportToCellCommand | ActivateNextSheetCommand | ActivatePreviousSheetCommand | UpdateFilterCommand | SplitTextIntoColumnsCommand | RemoveDuplicatesCommand | TrimWhitespaceCommand | ResizeTableCommand | RefreshPivotCommand | InsertNewPivotCommand | DuplicatePivotInNewSheetCommand | InsertPivotWithTableCommand | SplitPivotFormulaCommand | PaintFormat | DeleteUnfilteredContentCommand | PivotStartPresenceTracking | PivotStopPresenceTracking | ToggleCheckboxCommand | AddNewChartToCarouselCommand | AddFigureChartToCarouselCommand | UpdateCarouselActiveItemCommand | PopOutChartFromCarouselCommand;
6225
+ 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 | SetZoomCommand | SumSelectionCommand | DeleteCellCommand | InsertCellCommand | SetViewportOffsetCommand | MoveViewportDownCommand | MoveViewportUpCommand | MoveViewportToCellCommand | ActivateNextSheetCommand | ActivatePreviousSheetCommand | UpdateFilterCommand | SplitTextIntoColumnsCommand | RemoveDuplicatesCommand | TrimWhitespaceCommand | ResizeTableCommand | RefreshPivotCommand | InsertNewPivotCommand | DuplicatePivotInNewSheetCommand | InsertPivotWithTableCommand | SplitPivotFormulaCommand | PaintFormat | DeleteUnfilteredContentCommand | PivotStartPresenceTracking | PivotStopPresenceTracking | ToggleCheckboxCommand | AddNewChartToCarouselCommand | AddFigureChartToCarouselCommand | DuplicateCarouselChartCommand | UpdateCarouselActiveItemCommand | PopOutChartFromCarouselCommand;
6192
6226
  type Command = CoreCommand | LocalCommand;
6193
6227
  /**
6194
6228
  * Holds the result of a command dispatch.
@@ -6456,6 +6490,7 @@ interface Style {
6456
6490
  fillColor?: Color;
6457
6491
  textColor?: Color;
6458
6492
  fontSize?: number;
6493
+ rotation?: number;
6459
6494
  }
6460
6495
  interface DataBarFill {
6461
6496
  color: Color;
@@ -6762,8 +6797,9 @@ declare module "chart.js" {
6762
6797
  }
6763
6798
 
6764
6799
  interface ChartShowValuesPluginOptions {
6800
+ type: ChartType;
6765
6801
  showValues: boolean;
6766
- background?: Color;
6802
+ background: (value: number | string, dataset: ChartMeta, index: number) => Color | undefined;
6767
6803
  horizontal?: boolean;
6768
6804
  callback: (value: number | string, dataset: ChartMeta, index: number) => string;
6769
6805
  }
@@ -6773,6 +6809,20 @@ declare module "chart.js" {
6773
6809
  }
6774
6810
  }
6775
6811
 
6812
+ interface ChartColorScalePluginOptions {
6813
+ position: "left" | "right" | "none";
6814
+ colorScale: Color[];
6815
+ fontColor?: Color;
6816
+ minValue: number;
6817
+ maxValue: number;
6818
+ locale: Locale;
6819
+ }
6820
+ declare module "chart.js" {
6821
+ interface PluginOptionsByType<TType extends ChartType$1> {
6822
+ chartColorScalePlugin?: ChartColorScalePluginOptions;
6823
+ }
6824
+ }
6825
+
6776
6826
  interface MigrationStep {
6777
6827
  migrate: (data: any) => any;
6778
6828
  }
@@ -6790,7 +6840,6 @@ type PivotDefinitionConstructor = new (definition: PivotCoreDefinition, fields:
6790
6840
  interface PivotRegistryItem {
6791
6841
  ui: PivotUIConstructor;
6792
6842
  definition: PivotDefinitionConstructor;
6793
- externalData: boolean;
6794
6843
  dateGranularities: string[];
6795
6844
  datetimeGranularities: string[];
6796
6845
  isMeasureCandidate: (field: PivotField) => boolean;
@@ -7020,6 +7069,18 @@ declare class ColorGenerator {
7020
7069
  constructor(paletteSize: number, preferredColors?: (Color | undefined | null)[]);
7021
7070
  next(): string;
7022
7071
  }
7072
+ declare const COLORSCHEMES: {
7073
+ readonly greys: readonly ["#ffffff", "#808080", "#000000"];
7074
+ readonly blues: readonly ["#f7fbff", "#6aaed6", "#08306b"];
7075
+ readonly reds: readonly ["#fff5f0", "#fb694a", "#67000d"];
7076
+ readonly greens: readonly ["#f7fcf5", "#73c476", "#00441b"];
7077
+ readonly oranges: readonly ["#fff5eb", "#fd8c3b", "#7f2704"];
7078
+ readonly purples: readonly ["#fcfbfd", "#9e9ac8", "#3f007d"];
7079
+ readonly viridis: readonly ["#440154", "#21918c", "#fde725"];
7080
+ readonly cividis: readonly ["#00224e", "#7d7c78", "#fee838"];
7081
+ readonly rainbow: readonly ["#B41DB4", "#FFFF00", "#00FFFF"];
7082
+ };
7083
+ type ColorScale = keyof typeof COLORSCHEMES;
7023
7084
 
7024
7085
  /**
7025
7086
  * Convert a (col) number to the corresponding letter.
@@ -7097,7 +7158,7 @@ declare function formatValue(value: CellValue, { format, locale, formatWidth }:
7097
7158
  }): FormattedValue;
7098
7159
  declare function createCurrencyFormat(currency: Partial<Currency>): Format;
7099
7160
 
7100
- declare function computeTextWidth(context: Canvas2DContext, text: string, style: Style, fontUnit?: "px" | "pt"): number;
7161
+ declare function computeTextWidth(context: Canvas2DContext, text: string, style?: Style, fontUnit?: "px" | "pt"): number;
7101
7162
 
7102
7163
  /**
7103
7164
  * Convert from a cartesian reference to a (possibly unbounded) Zone
@@ -7207,7 +7268,7 @@ interface ChartBuilder {
7207
7268
  dataSeriesLimit?: number;
7208
7269
  }
7209
7270
 
7210
- interface Props$1u {
7271
+ interface Props$1d {
7211
7272
  label?: string;
7212
7273
  value: boolean;
7213
7274
  className?: string;
@@ -7216,7 +7277,7 @@ interface Props$1u {
7216
7277
  disabled?: boolean;
7217
7278
  onChange: (value: boolean) => void;
7218
7279
  }
7219
- declare class Checkbox extends Component<Props$1u, SpreadsheetChildEnv> {
7280
+ declare class Checkbox extends Component<Props$1d, SpreadsheetChildEnv> {
7220
7281
  static template: string;
7221
7282
  static props: {
7222
7283
  label: {
@@ -7251,10 +7312,10 @@ declare class Checkbox extends Component<Props$1u, SpreadsheetChildEnv> {
7251
7312
  onChange(ev: InputEvent): void;
7252
7313
  }
7253
7314
 
7254
- interface Props$1t {
7315
+ interface Props$1c {
7255
7316
  class?: string;
7256
7317
  }
7257
- declare class Section extends Component<Props$1t, SpreadsheetChildEnv> {
7318
+ declare class Section extends Component<Props$1c, SpreadsheetChildEnv> {
7258
7319
  static template: string;
7259
7320
  static props: {
7260
7321
  class: {
@@ -7269,6 +7330,13 @@ declare class Section extends Component<Props$1t, SpreadsheetChildEnv> {
7269
7330
  };
7270
7331
  }
7271
7332
 
7333
+ interface ChartSidePanelProps<T extends ChartDefinition> {
7334
+ chartId: UID;
7335
+ definition: T;
7336
+ canUpdateChart: (chartId: UID, definition: Partial<T>) => DispatchResult;
7337
+ updateChart: (chartId: UID, definition: Partial<T>) => DispatchResult;
7338
+ }
7339
+
7272
7340
  interface StoreUpdateEvent {
7273
7341
  type: "store-updated";
7274
7342
  }
@@ -7448,7 +7516,7 @@ declare class SelectionInputStore extends SpreadsheetStore {
7448
7516
  getIndex(rangeId: number | null): number | null;
7449
7517
  }
7450
7518
 
7451
- interface Props$1s {
7519
+ interface Props$1b {
7452
7520
  ranges: string[];
7453
7521
  hasSingleRange?: boolean;
7454
7522
  required?: boolean;
@@ -7477,7 +7545,7 @@ interface SelectionRange extends Omit<RangeInputValue, "color"> {
7477
7545
  * onSelectionChanged is called every time the input value
7478
7546
  * changes.
7479
7547
  */
7480
- declare class SelectionInput extends Component<Props$1s, SpreadsheetChildEnv> {
7548
+ declare class SelectionInput extends Component<Props$1b, SpreadsheetChildEnv> {
7481
7549
  static template: string;
7482
7550
  static props: {
7483
7551
  ranges: ArrayConstructor;
@@ -7558,7 +7626,7 @@ declare class SelectionInput extends Component<Props$1s, SpreadsheetChildEnv> {
7558
7626
  confirm(): void;
7559
7627
  }
7560
7628
 
7561
- interface Props$1r {
7629
+ interface Props$1a {
7562
7630
  ranges: CustomizedDataSet[];
7563
7631
  hasSingleRange?: boolean;
7564
7632
  onSelectionChanged: (ranges: string[]) => void;
@@ -7571,7 +7639,7 @@ interface Props$1r {
7571
7639
  canChangeDatasetOrientation?: boolean;
7572
7640
  onFlipAxis?: (structure: string) => void;
7573
7641
  }
7574
- declare class ChartDataSeries extends Component<Props$1r, SpreadsheetChildEnv> {
7642
+ declare class ChartDataSeries extends Component<Props$1a, SpreadsheetChildEnv> {
7575
7643
  static template: string;
7576
7644
  static components: {
7577
7645
  SelectionInput: typeof SelectionInput;
@@ -7620,12 +7688,12 @@ declare class ChartDataSeries extends Component<Props$1r, SpreadsheetChildEnv> {
7620
7688
  get title(): string;
7621
7689
  }
7622
7690
 
7623
- interface Props$1q {
7691
+ interface Props$19 {
7624
7692
  messages: string[];
7625
7693
  msgType: "warning" | "error" | "info";
7626
7694
  singleBox?: boolean;
7627
7695
  }
7628
- declare class ValidationMessages extends Component<Props$1q, SpreadsheetChildEnv> {
7696
+ declare class ValidationMessages extends Component<Props$19, SpreadsheetChildEnv> {
7629
7697
  static template: string;
7630
7698
  static props: {
7631
7699
  messages: ArrayConstructor;
@@ -7639,10 +7707,10 @@ declare class ValidationMessages extends Component<Props$1q, SpreadsheetChildEnv
7639
7707
  get alertBoxes(): string[][];
7640
7708
  }
7641
7709
 
7642
- interface Props$1p {
7710
+ interface Props$18 {
7643
7711
  messages: string[];
7644
7712
  }
7645
- declare class ChartErrorSection extends Component<Props$1p, SpreadsheetChildEnv> {
7713
+ declare class ChartErrorSection extends Component<Props$18, SpreadsheetChildEnv> {
7646
7714
  static template: string;
7647
7715
  static components: {
7648
7716
  Section: typeof Section;
@@ -7656,7 +7724,7 @@ declare class ChartErrorSection extends Component<Props$1p, SpreadsheetChildEnv>
7656
7724
  };
7657
7725
  }
7658
7726
 
7659
- interface Props$1o {
7727
+ interface Props$17 {
7660
7728
  title?: string;
7661
7729
  range: string;
7662
7730
  isInvalid: boolean;
@@ -7669,7 +7737,7 @@ interface Props$1o {
7669
7737
  onChange: (value: boolean) => void;
7670
7738
  }>;
7671
7739
  }
7672
- declare class ChartLabelRange extends Component<Props$1o, SpreadsheetChildEnv> {
7740
+ declare class ChartLabelRange extends Component<Props$17, SpreadsheetChildEnv> {
7673
7741
  static template: string;
7674
7742
  static components: {
7675
7743
  SelectionInput: typeof SelectionInput;
@@ -7690,20 +7758,14 @@ declare class ChartLabelRange extends Component<Props$1o, SpreadsheetChildEnv> {
7690
7758
  optional: boolean;
7691
7759
  };
7692
7760
  };
7693
- static defaultProps: Partial<Props$1o>;
7761
+ static defaultProps: Partial<Props$17>;
7694
7762
  }
7695
7763
 
7696
- interface Props$1n {
7697
- chartId: UID;
7698
- definition: ChartWithDataSetDefinition;
7699
- canUpdateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
7700
- updateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
7701
- }
7702
7764
  interface ChartPanelState {
7703
7765
  datasetDispatchResult?: DispatchResult;
7704
7766
  labelsDispatchResult?: DispatchResult;
7705
7767
  }
7706
- declare class GenericChartConfigPanel extends Component<Props$1n, SpreadsheetChildEnv> {
7768
+ declare class GenericChartConfigPanel<P extends ChartSidePanelProps<ChartWithDataSetDefinition> = ChartSidePanelProps<ChartWithDataSetDefinition>> extends Component<P, SpreadsheetChildEnv> {
7707
7769
  static template: string;
7708
7770
  static components: {
7709
7771
  ChartDataSeries: typeof ChartDataSeries;
@@ -7715,8 +7777,8 @@ declare class GenericChartConfigPanel extends Component<Props$1n, SpreadsheetChi
7715
7777
  static props: {
7716
7778
  chartId: StringConstructor;
7717
7779
  definition: ObjectConstructor;
7718
- updateChart: FunctionConstructor;
7719
7780
  canUpdateChart: FunctionConstructor;
7781
+ updateChart: FunctionConstructor;
7720
7782
  };
7721
7783
  protected state: ChartPanelState;
7722
7784
  protected dataSets: CustomizedDataSet[];
@@ -7724,9 +7786,7 @@ declare class GenericChartConfigPanel extends Component<Props$1n, SpreadsheetChi
7724
7786
  private datasetOrientation;
7725
7787
  protected chartTerms: {
7726
7788
  [key: string]: any;
7727
- GeoChart: {
7728
- ColorScales: Record<Extract<GeoChartColorScale, string>, string>;
7729
- };
7789
+ ColorScales: Record<Extract<ChartColorScale, string>, string>;
7730
7790
  };
7731
7791
  setup(): void;
7732
7792
  get errorMessages(): string[];
@@ -7772,11 +7832,11 @@ declare class BarConfigPanel extends GenericChartConfigPanel {
7772
7832
  onUpdateStacked(stacked: boolean): void;
7773
7833
  }
7774
7834
 
7775
- interface Props$1m {
7835
+ interface Props$16 {
7776
7836
  isCollapsed: boolean;
7777
7837
  slots: any;
7778
7838
  }
7779
- declare class Collapse extends Component<Props$1m, SpreadsheetChildEnv> {
7839
+ declare class Collapse extends Component<Props$16, SpreadsheetChildEnv> {
7780
7840
  static template: string;
7781
7841
  static props: {
7782
7842
  isCollapsed: BooleanConstructor;
@@ -7815,12 +7875,12 @@ interface Choice$1 {
7815
7875
  value: string;
7816
7876
  label: string;
7817
7877
  }
7818
- interface Props$1l {
7878
+ interface Props$15 {
7819
7879
  choices: Choice$1[];
7820
7880
  onChange: (value: string) => void;
7821
7881
  selectedValue: string;
7822
7882
  }
7823
- declare class BadgeSelection extends Component<Props$1l, SpreadsheetChildEnv> {
7883
+ declare class BadgeSelection extends Component<Props$15, SpreadsheetChildEnv> {
7824
7884
  static template: string;
7825
7885
  static props: {
7826
7886
  choices: ArrayConstructor;
@@ -7876,14 +7936,19 @@ declare class GenericInput<T extends GenericInputProps> extends Component<T, Spr
7876
7936
  onMouseUp(ev: MouseEvent): void;
7877
7937
  }
7878
7938
 
7879
- interface Props$1k extends GenericInputProps {
7939
+ interface Props$14 extends GenericInputProps {
7880
7940
  alwaysShowBorder?: boolean;
7881
7941
  value: string;
7942
+ errorMessage?: string;
7882
7943
  }
7883
- declare class TextInput extends GenericInput<Props$1k> {
7944
+ declare class TextInput extends GenericInput<Props$14> {
7884
7945
  static template: string;
7885
7946
  static components: {};
7886
7947
  static props: {
7948
+ errorMessage: {
7949
+ type: StringConstructor;
7950
+ optional: boolean;
7951
+ };
7887
7952
  value: (StringConstructor | NumberConstructor)[];
7888
7953
  onChange: FunctionConstructor;
7889
7954
  class: {
@@ -7914,14 +7979,14 @@ declare class TextInput extends GenericInput<Props$1k> {
7914
7979
  get inputClass(): string;
7915
7980
  }
7916
7981
 
7917
- interface Props$1j {
7982
+ interface Props$13 {
7918
7983
  action: ActionSpec;
7919
7984
  hasTriangleDownIcon?: boolean;
7920
7985
  selectedColor?: string;
7921
7986
  class?: string;
7922
7987
  onClick?: (ev: MouseEvent) => void;
7923
7988
  }
7924
- declare class ActionButton extends Component<Props$1j, SpreadsheetChildEnv> {
7989
+ declare class ActionButton extends Component<Props$13, SpreadsheetChildEnv> {
7925
7990
  static template: string;
7926
7991
  static props: {
7927
7992
  action: ObjectConstructor;
@@ -8087,7 +8152,7 @@ declare class ColorPicker extends Component<ColorPickerProps, SpreadsheetChildEn
8087
8152
  isSameColor(color1: Color, color2: Color): boolean;
8088
8153
  }
8089
8154
 
8090
- interface Props$1i {
8155
+ interface Props$12 {
8091
8156
  currentColor: string | undefined;
8092
8157
  toggleColorPicker: () => void;
8093
8158
  showColorPicker: boolean;
@@ -8098,7 +8163,7 @@ interface Props$1i {
8098
8163
  dropdownMaxHeight?: Pixel;
8099
8164
  class?: string;
8100
8165
  }
8101
- declare class ColorPickerWidget extends Component<Props$1i, SpreadsheetChildEnv> {
8166
+ declare class ColorPickerWidget extends Component<Props$12, SpreadsheetChildEnv> {
8102
8167
  static template: string;
8103
8168
  static props: {
8104
8169
  currentColor: {
@@ -8161,7 +8226,7 @@ declare class CellPopoverStore extends SpreadsheetStore {
8161
8226
  interface State$5 {
8162
8227
  isOpen: boolean;
8163
8228
  }
8164
- interface Props$1h {
8229
+ interface Props$11 {
8165
8230
  currentValue: number;
8166
8231
  class: string;
8167
8232
  onValueChange: (fontSize: number) => void;
@@ -8173,7 +8238,7 @@ interface Props$1h {
8173
8238
  title: String;
8174
8239
  valueList: number[];
8175
8240
  }
8176
- declare class NumberEditor extends Component<Props$1h, SpreadsheetChildEnv> {
8241
+ declare class NumberEditor extends Component<Props$11, SpreadsheetChildEnv> {
8177
8242
  static template: string;
8178
8243
  static props: {
8179
8244
  currentValue: NumberConstructor;
@@ -8221,6 +8286,7 @@ declare class NumberEditor extends Component<Props$1h, SpreadsheetChildEnv> {
8221
8286
  private inputRef;
8222
8287
  private rootEditorRef;
8223
8288
  private valueListRef;
8289
+ private DOMFocusableElementStore;
8224
8290
  setup(): void;
8225
8291
  get popoverProps(): PopoverProps;
8226
8292
  onExternalClick(ev: MouseEvent): void;
@@ -8234,14 +8300,14 @@ declare class NumberEditor extends Component<Props$1h, SpreadsheetChildEnv> {
8234
8300
  onInputKeydown(ev: KeyboardEvent): void;
8235
8301
  }
8236
8302
 
8237
- interface Props$1g {
8303
+ interface Props$10 {
8238
8304
  currentFontSize: number;
8239
8305
  class: string;
8240
8306
  onFontSizeChanged: (fontSize: number) => void;
8241
8307
  onToggle?: () => void;
8242
8308
  onFocusInput?: () => void;
8243
8309
  }
8244
- declare class FontSizeEditor extends Component<Props$1g, SpreadsheetChildEnv> {
8310
+ declare class FontSizeEditor extends Component<Props$10, SpreadsheetChildEnv> {
8245
8311
  static template: string;
8246
8312
  static components: {
8247
8313
  NumberEditor: typeof NumberEditor;
@@ -8265,7 +8331,7 @@ declare class FontSizeEditor extends Component<Props$1g, SpreadsheetChildEnv> {
8265
8331
  fontSizes: number[];
8266
8332
  }
8267
8333
 
8268
- interface Props$1f {
8334
+ interface Props$$ {
8269
8335
  class?: string;
8270
8336
  style: ChartStyle;
8271
8337
  updateStyle: (style: ChartStyle) => void;
@@ -8274,7 +8340,7 @@ interface Props$1f {
8274
8340
  hasHorizontalAlign?: boolean;
8275
8341
  hasBackgroundColor?: boolean;
8276
8342
  }
8277
- declare class TextStyler extends Component<Props$1f, SpreadsheetChildEnv> {
8343
+ declare class TextStyler extends Component<Props$$, SpreadsheetChildEnv> {
8278
8344
  static template: string;
8279
8345
  static components: {
8280
8346
  ColorPickerWidget: typeof ColorPickerWidget;
@@ -8342,7 +8408,7 @@ declare class TextStyler extends Component<Props$1f, SpreadsheetChildEnv> {
8342
8408
  get verticalAlignActions(): ActionSpec[];
8343
8409
  }
8344
8410
 
8345
- interface Props$1e {
8411
+ interface Props$_ {
8346
8412
  title?: string;
8347
8413
  placeholder?: string;
8348
8414
  updateTitle: (title: string) => void;
@@ -8351,7 +8417,7 @@ interface Props$1e {
8351
8417
  defaultStyle?: Partial<TitleDesign>;
8352
8418
  updateStyle: (style: TitleDesign) => void;
8353
8419
  }
8354
- declare class ChartTitle extends Component<Props$1e, SpreadsheetChildEnv> {
8420
+ declare class ChartTitle extends Component<Props$_, SpreadsheetChildEnv> {
8355
8421
  static template: string;
8356
8422
  static components: {
8357
8423
  Section: typeof Section;
@@ -8389,13 +8455,13 @@ interface AxisDefinition {
8389
8455
  id: string;
8390
8456
  name: string;
8391
8457
  }
8392
- interface Props$1d {
8458
+ interface Props$Z {
8393
8459
  chartId: UID;
8394
8460
  definition: ChartWithAxisDefinition;
8395
8461
  updateChart: (chartId: UID, definition: Partial<ChartWithAxisDefinition>) => DispatchResult;
8396
8462
  axesList: AxisDefinition[];
8397
8463
  }
8398
- declare class AxisDesignEditor extends Component<Props$1d, SpreadsheetChildEnv> {
8464
+ declare class AxisDesignEditor extends Component<Props$Z, SpreadsheetChildEnv> {
8399
8465
  static template: string;
8400
8466
  static components: {
8401
8467
  Section: typeof Section;
@@ -8427,14 +8493,14 @@ interface Choice {
8427
8493
  value: unknown;
8428
8494
  label: string;
8429
8495
  }
8430
- interface Props$1c {
8496
+ interface Props$Y {
8431
8497
  choices: Choice[];
8432
8498
  onChange: (value: unknown) => void;
8433
8499
  selectedValue: string;
8434
8500
  name: string;
8435
8501
  direction: "horizontal" | "vertical";
8436
8502
  }
8437
- declare class RadioSelection extends Component<Props$1c, SpreadsheetChildEnv> {
8503
+ declare class RadioSelection extends Component<Props$Y, SpreadsheetChildEnv> {
8438
8504
  static template: string;
8439
8505
  static props: {
8440
8506
  choices: ArrayConstructor;
@@ -8453,13 +8519,13 @@ declare class RadioSelection extends Component<Props$1c, SpreadsheetChildEnv> {
8453
8519
  };
8454
8520
  }
8455
8521
 
8456
- interface Props$1b {
8522
+ interface Props$X {
8457
8523
  currentColor?: string;
8458
8524
  onColorPicked: (color: string) => void;
8459
8525
  title?: string;
8460
8526
  disableNoColor?: boolean;
8461
8527
  }
8462
- declare class RoundColorPicker extends Component<Props$1b, SpreadsheetChildEnv> {
8528
+ declare class RoundColorPicker extends Component<Props$X, SpreadsheetChildEnv> {
8463
8529
  static template: string;
8464
8530
  static components: {
8465
8531
  Section: typeof Section;
@@ -8492,14 +8558,11 @@ declare class RoundColorPicker extends Component<Props$1b, SpreadsheetChildEnv>
8492
8558
  get buttonStyle(): string;
8493
8559
  }
8494
8560
 
8495
- interface Props$1a {
8496
- chartId: UID;
8497
- definition: ChartDefinition;
8498
- updateChart: (chartId: UID, definition: Partial<ChartDefinition>) => DispatchResult;
8499
- canUpdateChart: (chartId: UID, definition: Partial<ChartDefinition>) => DispatchResult;
8561
+ interface Props$W extends ChartSidePanelProps<ChartDefinition> {
8500
8562
  defaultChartTitleFontSize?: number;
8563
+ slots?: object;
8501
8564
  }
8502
- declare class GeneralDesignEditor extends Component<Props$1a, SpreadsheetChildEnv> {
8565
+ declare class GeneralDesignEditor extends Component<Props$W, SpreadsheetChildEnv> {
8503
8566
  static template: string;
8504
8567
  static components: {
8505
8568
  RoundColorPicker: typeof RoundColorPicker;
@@ -8509,10 +8572,6 @@ declare class GeneralDesignEditor extends Component<Props$1a, SpreadsheetChildEn
8509
8572
  RadioSelection: typeof RadioSelection;
8510
8573
  };
8511
8574
  static props: {
8512
- chartId: StringConstructor;
8513
- definition: ObjectConstructor;
8514
- updateChart: FunctionConstructor;
8515
- canUpdateChart: FunctionConstructor;
8516
8575
  defaultChartTitleFontSize: {
8517
8576
  type: NumberConstructor;
8518
8577
  optional: boolean;
@@ -8521,6 +8580,10 @@ declare class GeneralDesignEditor extends Component<Props$1a, SpreadsheetChildEn
8521
8580
  type: ObjectConstructor;
8522
8581
  optional: boolean;
8523
8582
  };
8583
+ chartId: StringConstructor;
8584
+ definition: ObjectConstructor;
8585
+ canUpdateChart: FunctionConstructor;
8586
+ updateChart: FunctionConstructor;
8524
8587
  };
8525
8588
  static defaultProps: {
8526
8589
  defaultChartTitleFontSize: number;
@@ -8534,13 +8597,7 @@ declare class GeneralDesignEditor extends Component<Props$1a, SpreadsheetChildEn
8534
8597
  updateChartTitleStyle(style: TitleDesign): void;
8535
8598
  }
8536
8599
 
8537
- interface Props$19 {
8538
- chartId: UID;
8539
- definition: ChartWithDataSetDefinition;
8540
- updateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
8541
- canUpdateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
8542
- }
8543
- declare class ChartHumanizeNumbers extends Component<Props$19, SpreadsheetChildEnv> {
8600
+ declare class ChartHumanizeNumbers extends Component<ChartSidePanelProps<ChartWithDataSetDefinition>, SpreadsheetChildEnv> {
8544
8601
  static template: string;
8545
8602
  static components: {
8546
8603
  Checkbox: typeof Checkbox;
@@ -8548,19 +8605,13 @@ declare class ChartHumanizeNumbers extends Component<Props$19, SpreadsheetChildE
8548
8605
  static props: {
8549
8606
  chartId: StringConstructor;
8550
8607
  definition: ObjectConstructor;
8551
- updateChart: FunctionConstructor;
8552
8608
  canUpdateChart: FunctionConstructor;
8609
+ updateChart: FunctionConstructor;
8553
8610
  };
8554
8611
  get title(): string;
8555
8612
  }
8556
8613
 
8557
- interface Props$18 {
8558
- chartId: UID;
8559
- definition: ChartWithDataSetDefinition;
8560
- updateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
8561
- canUpdateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
8562
- }
8563
- declare class ChartLegend extends Component<Props$18, SpreadsheetChildEnv> {
8614
+ declare class ChartLegend extends Component<ChartSidePanelProps<ChartWithDataSetDefinition>, SpreadsheetChildEnv> {
8564
8615
  static template: string;
8565
8616
  static components: {
8566
8617
  Section: typeof Section;
@@ -8568,19 +8619,19 @@ declare class ChartLegend extends Component<Props$18, SpreadsheetChildEnv> {
8568
8619
  static props: {
8569
8620
  chartId: StringConstructor;
8570
8621
  definition: ObjectConstructor;
8571
- updateChart: FunctionConstructor;
8572
8622
  canUpdateChart: FunctionConstructor;
8623
+ updateChart: FunctionConstructor;
8573
8624
  };
8574
8625
  updateLegendPosition(ev: any): void;
8575
8626
  }
8576
8627
 
8577
- interface Props$17 extends GenericInputProps {
8628
+ interface Props$V extends GenericInputProps {
8578
8629
  alwaysShowBorder?: boolean;
8579
8630
  min?: number;
8580
8631
  max?: number;
8581
8632
  value: number;
8582
8633
  }
8583
- declare class NumberInput extends GenericInput<Props$17> {
8634
+ declare class NumberInput extends GenericInput<Props$V> {
8584
8635
  static template: string;
8585
8636
  static components: {};
8586
8637
  static props: {
@@ -8624,13 +8675,10 @@ declare class NumberInput extends GenericInput<Props$17> {
8624
8675
  get inputClass(): string;
8625
8676
  }
8626
8677
 
8627
- interface Props$16 {
8628
- chartId: UID;
8629
- definition: ChartWithDataSetDefinition;
8630
- canUpdateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
8631
- updateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
8678
+ interface Props$U extends ChartSidePanelProps<ChartWithDataSetDefinition> {
8679
+ slots?: object;
8632
8680
  }
8633
- declare class SeriesDesignEditor extends Component<Props$16, SpreadsheetChildEnv> {
8681
+ declare class SeriesDesignEditor extends Component<Props$U, SpreadsheetChildEnv> {
8634
8682
  static template: string;
8635
8683
  static components: {
8636
8684
  SidePanelCollapsible: typeof SidePanelCollapsible;
@@ -8638,14 +8686,14 @@ declare class SeriesDesignEditor extends Component<Props$16, SpreadsheetChildEnv
8638
8686
  RoundColorPicker: typeof RoundColorPicker;
8639
8687
  };
8640
8688
  static props: {
8641
- chartId: StringConstructor;
8642
- definition: ObjectConstructor;
8643
- updateChart: FunctionConstructor;
8644
- canUpdateChart: FunctionConstructor;
8645
8689
  slots: {
8646
8690
  type: ObjectConstructor;
8647
8691
  optional: boolean;
8648
8692
  };
8693
+ chartId: StringConstructor;
8694
+ definition: ObjectConstructor;
8695
+ canUpdateChart: FunctionConstructor;
8696
+ updateChart: FunctionConstructor;
8649
8697
  };
8650
8698
  protected state: {
8651
8699
  index: number;
@@ -8658,13 +8706,10 @@ declare class SeriesDesignEditor extends Component<Props$16, SpreadsheetChildEnv
8658
8706
  getDataSeriesLabel(): string | undefined;
8659
8707
  }
8660
8708
 
8661
- interface Props$15 {
8662
- chartId: UID;
8663
- definition: ChartWithDataSetDefinition;
8664
- canUpdateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
8665
- updateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
8709
+ interface Props$T extends ChartSidePanelProps<ChartWithDataSetDefinition> {
8710
+ slots?: object;
8666
8711
  }
8667
- declare class SeriesWithAxisDesignEditor extends Component<Props$15, SpreadsheetChildEnv> {
8712
+ declare class SeriesWithAxisDesignEditor extends Component<Props$T, SpreadsheetChildEnv> {
8668
8713
  static template: string;
8669
8714
  static components: {
8670
8715
  SeriesDesignEditor: typeof SeriesDesignEditor;
@@ -8675,14 +8720,14 @@ declare class SeriesWithAxisDesignEditor extends Component<Props$15, Spreadsheet
8675
8720
  NumberInput: typeof NumberInput;
8676
8721
  };
8677
8722
  static props: {
8678
- chartId: StringConstructor;
8679
- definition: ObjectConstructor;
8680
- canUpdateChart: FunctionConstructor;
8681
- updateChart: FunctionConstructor;
8682
8723
  slots: {
8683
8724
  type: ObjectConstructor;
8684
8725
  optional: boolean;
8685
8726
  };
8727
+ chartId: StringConstructor;
8728
+ definition: ObjectConstructor;
8729
+ canUpdateChart: FunctionConstructor;
8730
+ updateChart: FunctionConstructor;
8686
8731
  };
8687
8732
  axisChoices: {
8688
8733
  value: string;
@@ -8706,37 +8751,27 @@ declare class SeriesWithAxisDesignEditor extends Component<Props$15, Spreadsheet
8706
8751
  updateTrendLineValue(index: number, config: any): void;
8707
8752
  }
8708
8753
 
8709
- interface Props$14 {
8710
- chartId: UID;
8711
- definition: ChartWithDataSetDefinition;
8712
- updateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
8713
- canUpdateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
8754
+ interface Props$S extends ChartSidePanelProps<ChartWithDataSetDefinition> {
8714
8755
  defaultValue?: boolean;
8715
8756
  }
8716
- declare class ChartShowValues extends Component<Props$14, SpreadsheetChildEnv> {
8757
+ declare class ChartShowValues extends Component<Props$S, SpreadsheetChildEnv> {
8717
8758
  static template: string;
8718
8759
  static components: {
8719
8760
  Checkbox: typeof Checkbox;
8720
8761
  };
8721
8762
  static props: {
8722
- chartId: StringConstructor;
8723
- definition: ObjectConstructor;
8724
- updateChart: FunctionConstructor;
8725
- canUpdateChart: FunctionConstructor;
8726
8763
  defaultValue: {
8727
8764
  type: BooleanConstructor;
8728
8765
  optional: boolean;
8729
8766
  };
8767
+ chartId: StringConstructor;
8768
+ definition: ObjectConstructor;
8769
+ canUpdateChart: FunctionConstructor;
8770
+ updateChart: FunctionConstructor;
8730
8771
  };
8731
8772
  }
8732
8773
 
8733
- interface Props$13 {
8734
- chartId: UID;
8735
- definition: ChartWithDataSetDefinition;
8736
- canUpdateChart: (chartId: UID, definition: GenericDefinition<ChartWithDataSetDefinition>) => DispatchResult;
8737
- updateChart: (chartId: UID, definition: GenericDefinition<ChartWithDataSetDefinition>) => DispatchResult;
8738
- }
8739
- declare class ChartWithAxisDesignPanel<P extends Props$13 = Props$13> extends Component<P, SpreadsheetChildEnv> {
8774
+ declare class ChartWithAxisDesignPanel<P extends ChartSidePanelProps<ChartWithDataSetDefinition>> extends Component<P, SpreadsheetChildEnv> {
8740
8775
  static template: string;
8741
8776
  static components: {
8742
8777
  GeneralDesignEditor: typeof GeneralDesignEditor;
@@ -8757,13 +8792,7 @@ declare class ChartWithAxisDesignPanel<P extends Props$13 = Props$13> extends Co
8757
8792
  get axesList(): AxisDefinition[];
8758
8793
  }
8759
8794
 
8760
- interface Props$12 {
8761
- chartId: UID;
8762
- definition: GaugeChartDefinition;
8763
- canUpdateChart: (chartId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
8764
- updateChart: (chartId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
8765
- }
8766
- declare class GaugeChartConfigPanel extends Component<Props$12, SpreadsheetChildEnv> {
8795
+ declare class GaugeChartConfigPanel extends Component<ChartSidePanelProps<GaugeChartDefinition>, SpreadsheetChildEnv> {
8767
8796
  static template: string;
8768
8797
  static components: {
8769
8798
  ChartErrorSection: typeof ChartErrorSection;
@@ -8772,8 +8801,8 @@ declare class GaugeChartConfigPanel extends Component<Props$12, SpreadsheetChild
8772
8801
  static props: {
8773
8802
  chartId: StringConstructor;
8774
8803
  definition: ObjectConstructor;
8775
- updateChart: FunctionConstructor;
8776
8804
  canUpdateChart: FunctionConstructor;
8805
+ updateChart: FunctionConstructor;
8777
8806
  };
8778
8807
  private state;
8779
8808
  private dataRange;
@@ -8828,13 +8857,13 @@ interface EnrichedToken extends Token {
8828
8857
  isInHoverContext?: boolean;
8829
8858
  }
8830
8859
 
8831
- interface Props$11 {
8860
+ interface Props$R {
8832
8861
  proposals: AutoCompleteProposal[];
8833
8862
  selectedIndex: number | undefined;
8834
8863
  onValueSelected: (value: string) => void;
8835
8864
  onValueHovered: (index: string) => void;
8836
8865
  }
8837
- declare class TextValueProvider extends Component<Props$11> {
8866
+ declare class TextValueProvider extends Component<Props$R> {
8838
8867
  static template: string;
8839
8868
  static props: {
8840
8869
  proposals: ArrayConstructor;
@@ -8891,12 +8920,12 @@ declare class ContentEditableHelper {
8891
8920
  getText(): string;
8892
8921
  }
8893
8922
 
8894
- interface Props$10 {
8923
+ interface Props$Q {
8895
8924
  functionDescription: FunctionDescription;
8896
8925
  argsToFocus: number[];
8897
8926
  repeatingArgGroupIndex: number | undefined;
8898
8927
  }
8899
- declare class FunctionDescriptionProvider extends Component<Props$10, SpreadsheetChildEnv> {
8928
+ declare class FunctionDescriptionProvider extends Component<Props$Q, SpreadsheetChildEnv> {
8900
8929
  static template: string;
8901
8930
  static props: {
8902
8931
  functionDescription: ObjectConstructor;
@@ -8911,18 +8940,18 @@ declare class FunctionDescriptionProvider extends Component<Props$10, Spreadshee
8911
8940
  };
8912
8941
  private state;
8913
8942
  toggle(): void;
8914
- getContext(): Props$10;
8943
+ getContext(): Props$Q;
8915
8944
  get formulaHeaderContent(): {
8916
8945
  content: string;
8917
8946
  focused?: boolean;
8918
8947
  }[];
8919
8948
  }
8920
8949
 
8921
- interface Props$$ {
8950
+ interface Props$P {
8922
8951
  anchorRect: Rect;
8923
8952
  content: string;
8924
8953
  }
8925
- declare class SpeechBubble extends Component<Props$$, SpreadsheetChildEnv> {
8954
+ declare class SpeechBubble extends Component<Props$P, SpreadsheetChildEnv> {
8926
8955
  static template: string;
8927
8956
  static props: {
8928
8957
  content: StringConstructor;
@@ -9067,7 +9096,7 @@ declare abstract class AbstractComposerStore extends SpreadsheetStore {
9067
9096
  private updateAutoCompleteProvider;
9068
9097
  private findAutocompleteProvider;
9069
9098
  hideHelp(): void;
9070
- autoCompleteOrStop(direction: Direction$1): void;
9099
+ autoCompleteOrStop(direction: Direction$1, assistantForcedClosed?: boolean): void;
9071
9100
  insertAutoCompleteValue(value: string): void;
9072
9101
  selectAutoCompleteIndex(index: number): void;
9073
9102
  moveAutoCompleteSelection(direction: "previous" | "next"): void;
@@ -9197,6 +9226,9 @@ declare class Composer extends Component<CellComposerProps, SpreadsheetChildEnv>
9197
9226
  composerRef: {
9198
9227
  el: HTMLElement | null;
9199
9228
  };
9229
+ containerRef: {
9230
+ el: HTMLElement | null;
9231
+ };
9200
9232
  contentHelper: ContentEditableHelper;
9201
9233
  composerState: ComposerState;
9202
9234
  functionDescriptionState: FunctionDescriptionState;
@@ -9336,7 +9368,7 @@ interface AutoCompleteProviderDefinition {
9336
9368
  }, tokenAtCursor: EnrichedToken, text: string): void;
9337
9369
  }
9338
9370
 
9339
- interface Props$_ {
9371
+ interface Props$O {
9340
9372
  onConfirm: (content: string) => void;
9341
9373
  composerContent: string;
9342
9374
  defaultRangeSheetId: UID;
@@ -9349,7 +9381,7 @@ interface Props$_ {
9349
9381
  autofocus?: boolean;
9350
9382
  getContextualColoredSymbolToken?: (token: Token) => Color;
9351
9383
  }
9352
- declare class StandaloneComposer extends Component<Props$_, SpreadsheetChildEnv> {
9384
+ declare class StandaloneComposer extends Component<Props$O, SpreadsheetChildEnv> {
9353
9385
  static template: string;
9354
9386
  static props: {
9355
9387
  composerContent: {
@@ -9416,13 +9448,7 @@ interface PanelState {
9416
9448
  sectionRuleCancelledReasons?: CommandResult[];
9417
9449
  sectionRule: SectionRule;
9418
9450
  }
9419
- interface Props$Z {
9420
- chartId: UID;
9421
- definition: GaugeChartDefinition;
9422
- canUpdateChart: (chartId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
9423
- updateChart: (chartId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
9424
- }
9425
- declare class GaugeChartDesignPanel extends Component<Props$Z, SpreadsheetChildEnv> {
9451
+ declare class GaugeChartDesignPanel extends Component<ChartSidePanelProps<GaugeChartDefinition>, SpreadsheetChildEnv> {
9426
9452
  static template: string;
9427
9453
  static components: {
9428
9454
  SidePanelCollapsible: typeof SidePanelCollapsible;
@@ -9436,11 +9462,8 @@ declare class GaugeChartDesignPanel extends Component<Props$Z, SpreadsheetChildE
9436
9462
  static props: {
9437
9463
  chartId: StringConstructor;
9438
9464
  definition: ObjectConstructor;
9465
+ canUpdateChart: FunctionConstructor;
9439
9466
  updateChart: FunctionConstructor;
9440
- canUpdateChart: {
9441
- type: FunctionConstructor;
9442
- optional: boolean;
9443
- };
9444
9467
  };
9445
9468
  protected state: PanelState;
9446
9469
  setup(): void;
@@ -9473,13 +9496,7 @@ declare class LineConfigPanel extends GenericChartConfigPanel {
9473
9496
  onUpdateCumulative(cumulative: boolean): void;
9474
9497
  }
9475
9498
 
9476
- interface Props$Y {
9477
- chartId: UID;
9478
- definition: ScorecardChartDefinition;
9479
- canUpdateChart: (chartId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
9480
- updateChart: (chartId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
9481
- }
9482
- declare class ScorecardChartConfigPanel extends Component<Props$Y, SpreadsheetChildEnv> {
9499
+ declare class ScorecardChartConfigPanel extends Component<ChartSidePanelProps<ScorecardChartDefinition>, SpreadsheetChildEnv> {
9483
9500
  static template: string;
9484
9501
  static components: {
9485
9502
  SelectionInput: typeof SelectionInput;
@@ -9489,8 +9506,8 @@ declare class ScorecardChartConfigPanel extends Component<Props$Y, SpreadsheetCh
9489
9506
  static props: {
9490
9507
  chartId: StringConstructor;
9491
9508
  definition: ObjectConstructor;
9492
- updateChart: FunctionConstructor;
9493
9509
  canUpdateChart: FunctionConstructor;
9510
+ updateChart: FunctionConstructor;
9494
9511
  };
9495
9512
  private state;
9496
9513
  private keyValue;
@@ -9508,13 +9525,7 @@ declare class ScorecardChartConfigPanel extends Component<Props$Y, SpreadsheetCh
9508
9525
  }
9509
9526
 
9510
9527
  type ColorPickerId = undefined | "backgroundColor" | "baselineColorUp" | "baselineColorDown";
9511
- interface Props$X {
9512
- chartId: UID;
9513
- definition: ScorecardChartDefinition;
9514
- canUpdateChart: (chartId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
9515
- updateChart: (chartId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
9516
- }
9517
- declare class ScorecardChartDesignPanel extends Component<Props$X, SpreadsheetChildEnv> {
9528
+ declare class ScorecardChartDesignPanel extends Component<ChartSidePanelProps<ScorecardChartDefinition>, SpreadsheetChildEnv> {
9518
9529
  static template: string;
9519
9530
  static components: {
9520
9531
  GeneralDesignEditor: typeof GeneralDesignEditor;
@@ -9528,11 +9539,8 @@ declare class ScorecardChartDesignPanel extends Component<Props$X, SpreadsheetCh
9528
9539
  static props: {
9529
9540
  chartId: StringConstructor;
9530
9541
  definition: ObjectConstructor;
9542
+ canUpdateChart: FunctionConstructor;
9531
9543
  updateChart: FunctionConstructor;
9532
- canUpdateChart: {
9533
- type: FunctionConstructor;
9534
- optional: boolean;
9535
- };
9536
9544
  };
9537
9545
  get colorsSectionTitle(): string;
9538
9546
  get defaultScorecardTitleFontSize(): number;
@@ -9587,7 +9595,7 @@ interface ClosedSidePanel {
9587
9595
  }
9588
9596
  type SidePanelState = OpenSidePanel | ClosedSidePanel;
9589
9597
  interface PanelInfo {
9590
- initialPanelProps: SidePanelComponentProps;
9598
+ currentPanelProps: SidePanelComponentProps;
9591
9599
  componentTag: string;
9592
9600
  size: number;
9593
9601
  isCollapsed?: boolean;
@@ -9610,8 +9618,8 @@ declare class SidePanelStore extends SpreadsheetStore {
9610
9618
  get totalPanelSize(): number;
9611
9619
  private getPanelProps;
9612
9620
  private getPanelKey;
9613
- open(componentTag: string, initialPanelProps?: SidePanelComponentProps): void;
9614
- replace(componentTag: string, currentPanelKey: string, initialPanelProps?: SidePanelComponentProps): void;
9621
+ open(componentTag: string, currentPanelProps?: SidePanelComponentProps): void;
9622
+ replace(componentTag: string, currentPanelKey: string, currentPanelProps?: SidePanelComponentProps): void;
9615
9623
  private _openPanel;
9616
9624
  toggle(componentTag: string, panelProps: SidePanelComponentProps): void;
9617
9625
  close(): void;
@@ -9713,11 +9721,11 @@ declare class ChartAnimationStore extends SpreadsheetStore {
9713
9721
  enableAnimationForChart(chartId: UID): string;
9714
9722
  }
9715
9723
 
9716
- interface Props$W {
9724
+ interface Props$N {
9717
9725
  chartId: UID;
9718
9726
  isFullScreen?: boolean;
9719
9727
  }
9720
- declare class ChartJsComponent extends Component<Props$W, SpreadsheetChildEnv> {
9728
+ declare class ChartJsComponent extends Component<Props$N, SpreadsheetChildEnv> {
9721
9729
  static template: string;
9722
9730
  static props: {
9723
9731
  chartId: StringConstructor;
@@ -9753,11 +9761,11 @@ declare class ChartJsComponent extends Component<Props$W, SpreadsheetChildEnv> {
9753
9761
  get animationChartId(): string;
9754
9762
  }
9755
9763
 
9756
- interface Props$V {
9764
+ interface Props$M {
9757
9765
  chartId: UID;
9758
9766
  isFullScreen?: Boolean;
9759
9767
  }
9760
- declare class ScorecardChart$1 extends Component<Props$V, SpreadsheetChildEnv> {
9768
+ declare class ScorecardChart$1 extends Component<Props$M, SpreadsheetChildEnv> {
9761
9769
  static template: string;
9762
9770
  static props: {
9763
9771
  chartId: StringConstructor;
@@ -9831,14 +9839,14 @@ declare class Menu extends Component<MenuProps, SpreadsheetChildEnv> {
9831
9839
  getName(menu: Action): string;
9832
9840
  isRoot(menu: Action): boolean;
9833
9841
  private hasVisibleChildren;
9834
- isEnabled(menu: Action): boolean;
9842
+ isEnabled(menu: Action): any;
9835
9843
  get menuStyle(): string;
9836
9844
  onMouseEnter(menu: Action, ev: PointerEvent): void;
9837
9845
  onMouseLeave(menu: Action, ev: PointerEvent): void;
9838
9846
  onClickMenu(menu: Action, ev: CustomEvent): void;
9839
9847
  }
9840
9848
 
9841
- interface Props$U {
9849
+ interface Props$L {
9842
9850
  anchorRect: Rect;
9843
9851
  popoverPositioning: PopoverPropsPosition;
9844
9852
  menuItems: Action[];
@@ -9858,7 +9866,7 @@ interface MenuState {
9858
9866
  menuItems: Action[];
9859
9867
  isHoveringChild?: boolean;
9860
9868
  }
9861
- declare class MenuPopover extends Component<Props$U, SpreadsheetChildEnv> {
9869
+ declare class MenuPopover extends Component<Props$L, SpreadsheetChildEnv> {
9862
9870
  static template: string;
9863
9871
  static props: {
9864
9872
  anchorRect: ObjectConstructor;
@@ -9938,7 +9946,7 @@ declare class MenuPopover extends Component<Props$U, SpreadsheetChildEnv> {
9938
9946
  }
9939
9947
 
9940
9948
  type ResizeAnchor = "top left" | "top" | "top right" | "right" | "bottom right" | "bottom" | "bottom left" | "left";
9941
- interface Props$T {
9949
+ interface Props$K {
9942
9950
  figureUI: FigureUI;
9943
9951
  style: string;
9944
9952
  class: string;
@@ -9946,7 +9954,7 @@ interface Props$T {
9946
9954
  onMouseDown: (ev: MouseEvent) => void;
9947
9955
  onClickAnchor(dirX: ResizeDirection, dirY: ResizeDirection, ev: MouseEvent): void;
9948
9956
  }
9949
- declare class FigureComponent extends Component<Props$T, SpreadsheetChildEnv> {
9957
+ declare class FigureComponent extends Component<Props$K, SpreadsheetChildEnv> {
9950
9958
  static template: string;
9951
9959
  static props: {
9952
9960
  figureUI: ObjectConstructor;
@@ -10002,7 +10010,7 @@ declare class FigureComponent extends Component<Props$T, SpreadsheetChildEnv> {
10002
10010
  editWrapperStyle(properties: CSSProperties): void;
10003
10011
  }
10004
10012
 
10005
- interface Props$S {
10013
+ interface Props$J {
10006
10014
  chartId: UID;
10007
10015
  hasFullScreenButton: boolean;
10008
10016
  }
@@ -10013,7 +10021,7 @@ interface MenuItem {
10013
10021
  onClick: () => void;
10014
10022
  preview?: string;
10015
10023
  }
10016
- declare class ChartDashboardMenu extends Component<Props$S, SpreadsheetChildEnv> {
10024
+ declare class ChartDashboardMenu extends Component<Props$J, SpreadsheetChildEnv> {
10017
10025
  static template: string;
10018
10026
  static components: {
10019
10027
  MenuPopover: typeof MenuPopover;
@@ -10037,14 +10045,14 @@ declare class ChartDashboardMenu extends Component<Props$S, SpreadsheetChildEnv>
10037
10045
  get fullScreenMenuItem(): MenuItem | undefined;
10038
10046
  }
10039
10047
 
10040
- interface Props$R {
10048
+ interface Props$I {
10041
10049
  figureUI: FigureUI;
10042
10050
  onFigureDeleted: () => void;
10043
10051
  editFigureStyle?: (properties: CSSProperties) => void;
10044
10052
  isFullScreen?: boolean;
10045
10053
  openContextMenu?: (anchorRect: Rect, onClose?: () => void) => void;
10046
10054
  }
10047
- declare class ChartFigure extends Component<Props$R, SpreadsheetChildEnv> {
10055
+ declare class ChartFigure extends Component<Props$I, SpreadsheetChildEnv> {
10048
10056
  static template: string;
10049
10057
  static props: {
10050
10058
  figureUI: ObjectConstructor;
@@ -10073,7 +10081,7 @@ declare class ChartFigure extends Component<Props$R, SpreadsheetChildEnv> {
10073
10081
 
10074
10082
  type DnDDirection = "all" | "vertical" | "horizontal";
10075
10083
 
10076
- interface Props$Q {
10084
+ interface Props$H {
10077
10085
  isVisible: boolean;
10078
10086
  position: DOMCoordinates;
10079
10087
  }
@@ -10081,7 +10089,7 @@ interface State$4 {
10081
10089
  position: DOMCoordinates;
10082
10090
  handler: boolean;
10083
10091
  }
10084
- declare class Autofill extends Component<Props$Q, SpreadsheetChildEnv> {
10092
+ declare class Autofill extends Component<Props$H, SpreadsheetChildEnv> {
10085
10093
  static template: string;
10086
10094
  static props: {
10087
10095
  position: ObjectConstructor;
@@ -10121,7 +10129,7 @@ declare class ClientTag extends Component<ClientTagProps, SpreadsheetChildEnv> {
10121
10129
  get tagStyle(): string;
10122
10130
  }
10123
10131
 
10124
- interface Props$P {
10132
+ interface Props$G {
10125
10133
  gridDims: DOMDimension;
10126
10134
  onInputContextMenu: (event: MouseEvent) => void;
10127
10135
  }
@@ -10129,7 +10137,7 @@ interface Props$P {
10129
10137
  * This component is a composer which positions itself on the grid at the anchor cell.
10130
10138
  * It also applies the style of the cell to the composer input.
10131
10139
  */
10132
- declare class GridComposer extends Component<Props$P, SpreadsheetChildEnv> {
10140
+ declare class GridComposer extends Component<Props$G, SpreadsheetChildEnv> {
10133
10141
  static template: string;
10134
10142
  static props: {
10135
10143
  gridDims: ObjectConstructor;
@@ -10173,7 +10181,7 @@ interface SnapLine<T extends HFigureAxisType | VFigureAxisType> {
10173
10181
  }
10174
10182
 
10175
10183
  type ContainerType = "topLeft" | "topRight" | "bottomLeft" | "bottomRight" | "dnd";
10176
- interface Props$O {
10184
+ interface Props$F {
10177
10185
  onFigureDeleted: () => void;
10178
10186
  }
10179
10187
  interface Container {
@@ -10254,7 +10262,7 @@ interface DndState {
10254
10262
  * that occurred during the drag & drop, and to position the figure on the correct pane.
10255
10263
  *
10256
10264
  */
10257
- declare class FiguresContainer extends Component<Props$O, SpreadsheetChildEnv> {
10265
+ declare class FiguresContainer extends Component<Props$F, SpreadsheetChildEnv> {
10258
10266
  static template: string;
10259
10267
  static props: {
10260
10268
  onFigureDeleted: FunctionConstructor;
@@ -10292,10 +10300,10 @@ declare class FiguresContainer extends Component<Props$O, SpreadsheetChildEnv> {
10292
10300
  private getCarouselOverlappingChart;
10293
10301
  }
10294
10302
 
10295
- interface Props$N {
10303
+ interface Props$E {
10296
10304
  focusGrid: () => void;
10297
10305
  }
10298
- declare class GridAddRowsFooter extends Component<Props$N, SpreadsheetChildEnv> {
10306
+ declare class GridAddRowsFooter extends Component<Props$E, SpreadsheetChildEnv> {
10299
10307
  static template: string;
10300
10308
  static props: {
10301
10309
  focusGrid: FunctionConstructor;
@@ -10327,7 +10335,7 @@ type ZoomedMouseEvent<T extends MouseEvent | PointerEvent> = {
10327
10335
  ev: T;
10328
10336
  };
10329
10337
 
10330
- interface Props$M {
10338
+ interface Props$D {
10331
10339
  onCellDoubleClicked: (col: HeaderIndex, row: HeaderIndex) => void;
10332
10340
  onCellClicked: (col: HeaderIndex, row: HeaderIndex, modifiers: GridClickModifiers, zoomedMouseEvent: ZoomedMouseEvent<MouseEvent | PointerEvent>) => void;
10333
10341
  onCellRightClicked: (col: HeaderIndex, row: HeaderIndex, coordinates: DOMCoordinates) => void;
@@ -10340,7 +10348,7 @@ interface Props$M {
10340
10348
  height: number;
10341
10349
  };
10342
10350
  }
10343
- declare class GridOverlay extends Component<Props$M, SpreadsheetChildEnv> {
10351
+ declare class GridOverlay extends Component<Props$D, SpreadsheetChildEnv> {
10344
10352
  static template: string;
10345
10353
  static props: {
10346
10354
  onCellDoubleClicked: {
@@ -10400,12 +10408,12 @@ declare class GridOverlay extends Component<Props$M, SpreadsheetChildEnv> {
10400
10408
  private getInteractiveIconAtEvent;
10401
10409
  }
10402
10410
 
10403
- interface Props$L {
10411
+ interface Props$C {
10404
10412
  gridRect: Rect;
10405
10413
  onClosePopover: () => void;
10406
10414
  onMouseWheel: (ev: WheelEvent) => void;
10407
10415
  }
10408
- declare class GridPopover extends Component<Props$L, SpreadsheetChildEnv> {
10416
+ declare class GridPopover extends Component<Props$C, SpreadsheetChildEnv> {
10409
10417
  static template: string;
10410
10418
  static props: {
10411
10419
  onClosePopover: FunctionConstructor;
@@ -10420,7 +10428,7 @@ declare class GridPopover extends Component<Props$L, SpreadsheetChildEnv> {
10420
10428
  get cellPopover(): PositionedCellPopoverComponent | ClosedCellPopover;
10421
10429
  }
10422
10430
 
10423
- interface Props$K {
10431
+ interface Props$B {
10424
10432
  headersGroups: ConsecutiveIndexes[];
10425
10433
  offset: number;
10426
10434
  headerRange: {
@@ -10428,7 +10436,7 @@ interface Props$K {
10428
10436
  end: HeaderIndex;
10429
10437
  };
10430
10438
  }
10431
- declare class UnhideRowHeaders extends Component<Props$K, SpreadsheetChildEnv> {
10439
+ declare class UnhideRowHeaders extends Component<Props$B, SpreadsheetChildEnv> {
10432
10440
  static template: string;
10433
10441
  static props: {
10434
10442
  headersGroups: ArrayConstructor;
@@ -10447,7 +10455,7 @@ declare class UnhideRowHeaders extends Component<Props$K, SpreadsheetChildEnv> {
10447
10455
  unhide(hiddenElements: HeaderIndex[]): void;
10448
10456
  isVisible(header: HeaderIndex): boolean;
10449
10457
  }
10450
- declare class UnhideColumnHeaders extends Component<Props$K, SpreadsheetChildEnv> {
10458
+ declare class UnhideColumnHeaders extends Component<Props$B, SpreadsheetChildEnv> {
10451
10459
  static template: string;
10452
10460
  static props: {
10453
10461
  headersGroups: ArrayConstructor;
@@ -10521,7 +10529,7 @@ declare abstract class AbstractResizer extends Component<ResizerProps, Spreadshe
10521
10529
  setup(): void;
10522
10530
  _computeHandleDisplay(zoomedMouseEvent: ZoomedMouseEvent<MouseEvent>): void;
10523
10531
  _computeGrabDisplay(zoomedMouseEvent: ZoomedMouseEvent<MouseEvent>): void;
10524
- onMouseMove(ev: PointerEvent): void;
10532
+ onMouseMove(ev: MouseEvent): void;
10525
10533
  onMouseLeave(): void;
10526
10534
  onDblClick(ev: MouseEvent): void;
10527
10535
  onMouseDown(ev: MouseEvent): void;
@@ -10529,7 +10537,6 @@ declare abstract class AbstractResizer extends Component<ResizerProps, Spreadshe
10529
10537
  select(ev: PointerEvent): void;
10530
10538
  private startMovement;
10531
10539
  private startSelection;
10532
- onMouseUp(ev: MouseEvent): void;
10533
10540
  onContextMenu(ev: MouseEvent): void;
10534
10541
  }
10535
10542
  declare class ColResizer extends AbstractResizer {
@@ -10640,13 +10647,13 @@ declare class HeadersOverlay extends Component<any, SpreadsheetChildEnv> {
10640
10647
  }
10641
10648
 
10642
10649
  type Orientation$1 = "n" | "s" | "w" | "e";
10643
- interface Props$J {
10650
+ interface Props$A {
10644
10651
  zone: Zone;
10645
10652
  orientation: Orientation$1;
10646
10653
  isMoving: boolean;
10647
10654
  onMoveHighlight: (ev: PointerEvent) => void;
10648
10655
  }
10649
- declare class Border extends Component<Props$J, SpreadsheetChildEnv> {
10656
+ declare class Border extends Component<Props$A, SpreadsheetChildEnv> {
10650
10657
  static template: string;
10651
10658
  static props: {
10652
10659
  zone: ObjectConstructor;
@@ -10659,14 +10666,14 @@ declare class Border extends Component<Props$J, SpreadsheetChildEnv> {
10659
10666
  }
10660
10667
 
10661
10668
  type Orientation = "nw" | "ne" | "sw" | "se" | "n" | "s" | "e" | "w";
10662
- interface Props$I {
10669
+ interface Props$z {
10663
10670
  zone: Zone;
10664
10671
  color: Color;
10665
10672
  orientation: Orientation;
10666
10673
  isResizing: boolean;
10667
10674
  onResizeHighlight: (ev: PointerEvent, dirX: ResizeDirection, dirY: ResizeDirection) => void;
10668
10675
  }
10669
- declare class Corner extends Component<Props$I, SpreadsheetChildEnv> {
10676
+ declare class Corner extends Component<Props$z, SpreadsheetChildEnv> {
10670
10677
  static template: string;
10671
10678
  static props: {
10672
10679
  zone: ObjectConstructor;
@@ -10715,7 +10722,7 @@ declare class Highlight extends Component<HighlightProps, SpreadsheetChildEnv> {
10715
10722
 
10716
10723
  type ScrollDirection = "horizontal" | "vertical";
10717
10724
 
10718
- interface Props$H {
10725
+ interface Props$y {
10719
10726
  width: Pixel;
10720
10727
  height: Pixel;
10721
10728
  direction: ScrollDirection;
@@ -10723,7 +10730,7 @@ interface Props$H {
10723
10730
  offset: Pixel;
10724
10731
  onScroll: (offset: Pixel) => void;
10725
10732
  }
10726
- declare class ScrollBar extends Component<Props$H> {
10733
+ declare class ScrollBar extends Component<Props$y> {
10727
10734
  static props: {
10728
10735
  width: {
10729
10736
  type: NumberConstructor;
@@ -10751,10 +10758,10 @@ declare class ScrollBar extends Component<Props$H> {
10751
10758
  onScroll(ev: any): void;
10752
10759
  }
10753
10760
 
10754
- interface Props$G {
10761
+ interface Props$x {
10755
10762
  leftOffset: number;
10756
10763
  }
10757
- declare class HorizontalScrollBar extends Component<Props$G, SpreadsheetChildEnv> {
10764
+ declare class HorizontalScrollBar extends Component<Props$x, SpreadsheetChildEnv> {
10758
10765
  static props: {
10759
10766
  leftOffset: {
10760
10767
  type: NumberConstructor;
@@ -10780,10 +10787,10 @@ declare class HorizontalScrollBar extends Component<Props$G, SpreadsheetChildEnv
10780
10787
  onScroll(offset: any): void;
10781
10788
  }
10782
10789
 
10783
- interface Props$F {
10790
+ interface Props$w {
10784
10791
  topOffset: number;
10785
10792
  }
10786
- declare class VerticalScrollBar extends Component<Props$F, SpreadsheetChildEnv> {
10793
+ declare class VerticalScrollBar extends Component<Props$w, SpreadsheetChildEnv> {
10787
10794
  static props: {
10788
10795
  topOffset: {
10789
10796
  type: NumberConstructor;
@@ -10818,13 +10825,13 @@ declare class Selection extends Component<{}, SpreadsheetChildEnv> {
10818
10825
  get highlightProps(): HighlightProps;
10819
10826
  }
10820
10827
 
10821
- interface Props$E {
10828
+ interface Props$v {
10822
10829
  table: Table;
10823
10830
  }
10824
10831
  interface State$3 {
10825
10832
  highlightZone: Zone | undefined;
10826
10833
  }
10827
- declare class TableResizer extends Component<Props$E, SpreadsheetChildEnv> {
10834
+ declare class TableResizer extends Component<Props$v, SpreadsheetChildEnv> {
10828
10835
  static template: string;
10829
10836
  static props: {
10830
10837
  table: ObjectConstructor;
@@ -10853,11 +10860,11 @@ declare class TableResizer extends Component<Props$E, SpreadsheetChildEnv> {
10853
10860
  * - a vertical resizer (same, for rows)
10854
10861
  */
10855
10862
  type ContextMenuType = "ROW" | "COL" | "CELL" | "FILTER" | "GROUP_HEADERS" | "UNGROUP_HEADERS";
10856
- interface Props$D {
10863
+ interface Props$u {
10857
10864
  exposeFocus: (focus: () => void) => void;
10858
10865
  getGridSize: () => DOMDimension;
10859
10866
  }
10860
- declare class Grid extends Component<Props$D, SpreadsheetChildEnv> {
10867
+ declare class Grid extends Component<Props$u, SpreadsheetChildEnv> {
10861
10868
  static template: string;
10862
10869
  static props: {
10863
10870
  exposeFocus: FunctionConstructor;
@@ -10973,7 +10980,7 @@ declare class MainChartPanelStore extends SpreadsheetStore {
10973
10980
  private getChartDefinitionFromContextCreation;
10974
10981
  }
10975
10982
 
10976
- interface Props$C {
10983
+ interface Props$t {
10977
10984
  chartId: UID;
10978
10985
  chartPanelStore: MainChartPanelStore;
10979
10986
  }
@@ -10981,7 +10988,7 @@ interface ChartTypePickerState {
10981
10988
  popoverProps: PopoverProps | undefined;
10982
10989
  popoverStyle: string;
10983
10990
  }
10984
- declare class ChartTypePicker extends Component<Props$C, SpreadsheetChildEnv> {
10991
+ declare class ChartTypePicker extends Component<Props$t, SpreadsheetChildEnv> {
10985
10992
  static template: string;
10986
10993
  static components: {
10987
10994
  Section: typeof Section;
@@ -11017,11 +11024,11 @@ declare class ChartTypePicker extends Component<Props$C, SpreadsheetChildEnv> {
11017
11024
  private closePopover;
11018
11025
  }
11019
11026
 
11020
- interface Props$B {
11027
+ interface Props$s {
11021
11028
  onCloseSidePanel: () => void;
11022
11029
  chartId: UID;
11023
11030
  }
11024
- declare class ChartPanel extends Component<Props$B, SpreadsheetChildEnv> {
11031
+ declare class ChartPanel extends Component<Props$s, SpreadsheetChildEnv> {
11025
11032
  static template: string;
11026
11033
  static components: {
11027
11034
  Section: typeof Section;
@@ -11044,11 +11051,11 @@ declare class ChartPanel extends Component<Props$B, SpreadsheetChildEnv> {
11044
11051
  private getChartDefinition;
11045
11052
  }
11046
11053
 
11047
- interface Props$A {
11054
+ interface Props$r {
11048
11055
  onValueChange: (value: number) => void;
11049
11056
  value: number;
11050
11057
  }
11051
- declare class PieHoleSize extends Component<Props$A, SpreadsheetChildEnv> {
11058
+ declare class PieHoleSize extends Component<Props$r, SpreadsheetChildEnv> {
11052
11059
  static template: string;
11053
11060
  static components: {
11054
11061
  Section: typeof Section;
@@ -11061,13 +11068,7 @@ declare class PieHoleSize extends Component<Props$A, SpreadsheetChildEnv> {
11061
11068
  onChange(value: string): void;
11062
11069
  }
11063
11070
 
11064
- interface Props$z {
11065
- chartId: UID;
11066
- definition: PieChartDefinition;
11067
- canUpdateChart: (chartId: UID, definition: GenericDefinition<PieChartDefinition>) => DispatchResult;
11068
- updateChart: (chartId: UID, definition: GenericDefinition<PieChartDefinition>) => DispatchResult;
11069
- }
11070
- declare class PieChartDesignPanel extends Component<Props$z, SpreadsheetChildEnv> {
11071
+ declare class PieChartDesignPanel extends Component<ChartSidePanelProps<PieChartDefinition>, SpreadsheetChildEnv> {
11071
11072
  static template: string;
11072
11073
  static components: {
11073
11074
  GeneralDesignEditor: typeof GeneralDesignEditor;
@@ -11081,20 +11082,17 @@ declare class PieChartDesignPanel extends Component<Props$z, SpreadsheetChildEnv
11081
11082
  static props: {
11082
11083
  chartId: StringConstructor;
11083
11084
  definition: ObjectConstructor;
11085
+ canUpdateChart: FunctionConstructor;
11084
11086
  updateChart: FunctionConstructor;
11085
- canUpdateChart: {
11086
- type: FunctionConstructor;
11087
- optional: boolean;
11088
- };
11089
11087
  };
11090
11088
  onPieHoleSizeChange(pieHolePercentage: number): void;
11091
11089
  get defaultHoleSize(): number;
11092
11090
  }
11093
11091
 
11094
- interface Props$y {
11092
+ interface Props$q {
11095
11093
  items: ActionSpec[];
11096
11094
  }
11097
- declare class CogWheelMenu extends Component<Props$y, SpreadsheetChildEnv> {
11095
+ declare class CogWheelMenu extends Component<Props$q, SpreadsheetChildEnv> {
11098
11096
  static template: string;
11099
11097
  static components: {
11100
11098
  MenuPopover: typeof MenuPopover;
@@ -11177,14 +11175,14 @@ declare class FindAndReplaceStore extends SpreadsheetStore implements HighlightP
11177
11175
  get highlights(): Highlight$1[];
11178
11176
  }
11179
11177
 
11180
- interface Props$x {
11178
+ interface Props$p {
11181
11179
  deferUpdate: boolean;
11182
11180
  isDirty: boolean;
11183
11181
  toggleDeferUpdate: (value: boolean) => void;
11184
11182
  discard: () => void;
11185
11183
  apply: () => void;
11186
11184
  }
11187
- declare class PivotDeferUpdate extends Component<Props$x, SpreadsheetChildEnv> {
11185
+ declare class PivotDeferUpdate extends Component<Props$p, SpreadsheetChildEnv> {
11188
11186
  static template: string;
11189
11187
  static props: {
11190
11188
  deferUpdate: BooleanConstructor;
@@ -11201,11 +11199,11 @@ declare class PivotDeferUpdate extends Component<Props$x, SpreadsheetChildEnv> {
11201
11199
  get deferUpdatesTooltip(): string;
11202
11200
  }
11203
11201
 
11204
- interface Props$w {
11202
+ interface Props$o {
11205
11203
  onFieldPicked: (field: string) => void;
11206
11204
  fields: PivotField[];
11207
11205
  }
11208
- declare class AddDimensionButton extends Component<Props$w, SpreadsheetChildEnv> {
11206
+ declare class AddDimensionButton extends Component<Props$o, SpreadsheetChildEnv> {
11209
11207
  static template: string;
11210
11208
  static components: {
11211
11209
  Popover: typeof Popover;
@@ -11241,13 +11239,13 @@ declare class AddDimensionButton extends Component<Props$w, SpreadsheetChildEnv>
11241
11239
  onKeyDown(ev: KeyboardEvent): void;
11242
11240
  }
11243
11241
 
11244
- interface Props$v {
11242
+ interface Props$n {
11245
11243
  dimension: PivotCoreDimension | PivotCoreMeasure;
11246
11244
  onRemoved: (dimension: PivotCoreDimension | PivotCoreMeasure) => void;
11247
11245
  onNameUpdated?: (dimension: PivotCoreDimension | PivotCoreMeasure, name?: string) => void;
11248
11246
  type: "row" | "col" | "measure";
11249
11247
  }
11250
- declare class PivotDimension extends Component<Props$v, SpreadsheetChildEnv> {
11248
+ declare class PivotDimension extends Component<Props$n, SpreadsheetChildEnv> {
11251
11249
  static template: string;
11252
11250
  static props: {
11253
11251
  dimension: ObjectConstructor;
@@ -11271,13 +11269,13 @@ declare class PivotDimension extends Component<Props$v, SpreadsheetChildEnv> {
11271
11269
  updateName(name: string): void;
11272
11270
  }
11273
11271
 
11274
- interface Props$u {
11272
+ interface Props$m {
11275
11273
  dimension: PivotDimension$1;
11276
11274
  onUpdated: (dimension: PivotDimension$1, ev: InputEvent) => void;
11277
11275
  availableGranularities: Set<string>;
11278
11276
  allGranularities: string[];
11279
11277
  }
11280
- declare class PivotDimensionGranularity extends Component<Props$u, SpreadsheetChildEnv> {
11278
+ declare class PivotDimensionGranularity extends Component<Props$m, SpreadsheetChildEnv> {
11281
11279
  static template: string;
11282
11280
  static props: {
11283
11281
  dimension: ObjectConstructor;
@@ -11302,11 +11300,11 @@ declare class PivotDimensionGranularity extends Component<Props$u, SpreadsheetCh
11302
11300
  };
11303
11301
  }
11304
11302
 
11305
- interface Props$t {
11303
+ interface Props$l {
11306
11304
  dimension: PivotDimension$1;
11307
11305
  onUpdated: (dimension: PivotDimension$1, ev: InputEvent) => void;
11308
11306
  }
11309
- declare class PivotDimensionOrder extends Component<Props$t, SpreadsheetChildEnv> {
11307
+ declare class PivotDimensionOrder extends Component<Props$l, SpreadsheetChildEnv> {
11310
11308
  static template: string;
11311
11309
  static props: {
11312
11310
  dimension: ObjectConstructor;
@@ -11343,12 +11341,12 @@ declare function toNormalizedPivotValue(dimension: Pick<PivotDimension$1, "type"
11343
11341
  declare function toFunctionPivotValue(value: CellValue, dimension: Pick<PivotDimension$1, "type" | "granularity">): string;
11344
11342
  declare function createCustomFields(definition: PivotCoreDefinition, fields: PivotFields): PivotFields;
11345
11343
 
11346
- interface Props$s {
11344
+ interface Props$k {
11347
11345
  pivotId: UID;
11348
11346
  customField: PivotCustomGroupedField;
11349
11347
  onCustomFieldUpdated: (definition: Partial<PivotCoreDefinition>) => void;
11350
11348
  }
11351
- declare class PivotCustomGroupsCollapsible extends Component<Props$s, SpreadsheetChildEnv> {
11349
+ declare class PivotCustomGroupsCollapsible extends Component<Props$k, SpreadsheetChildEnv> {
11352
11350
  static template: string;
11353
11351
  static props: {
11354
11352
  pivotId: StringConstructor;
@@ -11368,7 +11366,7 @@ declare class PivotCustomGroupsCollapsible extends Component<Props$s, Spreadshee
11368
11366
  private updateCustomField;
11369
11367
  }
11370
11368
 
11371
- interface Props$r {
11369
+ interface Props$j {
11372
11370
  pivotId: string;
11373
11371
  definition: PivotRuntimeDefinition;
11374
11372
  measure: PivotMeasure;
@@ -11376,7 +11374,7 @@ interface Props$r {
11376
11374
  onRemoved: () => void;
11377
11375
  generateMeasureId: (fieldName: string, aggregator?: string) => string;
11378
11376
  }
11379
- declare class PivotMeasureEditor extends Component<Props$r> {
11377
+ declare class PivotMeasureEditor extends Component<Props$j> {
11380
11378
  static template: string;
11381
11379
  static components: {
11382
11380
  PivotDimension: typeof PivotDimension;
@@ -11401,11 +11399,11 @@ declare class PivotMeasureEditor extends Component<Props$r> {
11401
11399
  get isCalculatedMeasureInvalid(): boolean;
11402
11400
  }
11403
11401
 
11404
- interface Props$q {
11402
+ interface Props$i {
11405
11403
  definition: PivotRuntimeDefinition;
11406
11404
  pivotId: UID;
11407
11405
  }
11408
- declare class PivotSortSection extends Component<Props$q, SpreadsheetChildEnv> {
11406
+ declare class PivotSortSection extends Component<Props$i, SpreadsheetChildEnv> {
11409
11407
  static template: string;
11410
11408
  static components: {
11411
11409
  Section: typeof Section;
@@ -11422,7 +11420,7 @@ declare class PivotSortSection extends Component<Props$q, SpreadsheetChildEnv> {
11422
11420
  }[];
11423
11421
  }
11424
11422
 
11425
- interface Props$p {
11423
+ interface Props$h {
11426
11424
  definition: PivotRuntimeDefinition;
11427
11425
  onDimensionsUpdated: (definition: Partial<PivotCoreDefinition>) => void;
11428
11426
  unusedGroupableFields: PivotField[];
@@ -11433,7 +11431,7 @@ interface Props$p {
11433
11431
  getScrollableContainerEl?: () => HTMLElement;
11434
11432
  pivotId: UID;
11435
11433
  }
11436
- declare class PivotLayoutConfigurator extends Component<Props$p, SpreadsheetChildEnv> {
11434
+ declare class PivotLayoutConfigurator extends Component<Props$h, SpreadsheetChildEnv> {
11437
11435
  static template: string;
11438
11436
  static components: {
11439
11437
  AddDimensionButton: typeof AddDimensionButton;
@@ -11530,11 +11528,11 @@ declare class PivotSidePanelStore extends SpreadsheetStore {
11530
11528
  private areDomainFieldsValid;
11531
11529
  }
11532
11530
 
11533
- interface Props$o {
11531
+ interface Props$g {
11534
11532
  pivotId: UID;
11535
11533
  flipAxis: () => void;
11536
11534
  }
11537
- declare class PivotTitleSection extends Component<Props$o, SpreadsheetChildEnv> {
11535
+ declare class PivotTitleSection extends Component<Props$g, SpreadsheetChildEnv> {
11538
11536
  static template: string;
11539
11537
  static components: {
11540
11538
  CogWheelMenu: typeof CogWheelMenu;
@@ -11601,11 +11599,11 @@ declare function createEmptySheet(sheetId: UID, name: string): SheetData;
11601
11599
  declare function createEmptyWorkbookData(sheetName?: string): WorkbookData;
11602
11600
  declare function createEmptyExcelSheet(sheetId: UID, name: string): ExcelSheetData;
11603
11601
 
11604
- interface Props$n {
11602
+ interface Props$f {
11605
11603
  position: CellPosition;
11606
11604
  sortDirection: SortDirection | "none";
11607
11605
  }
11608
- declare class ClickableCellSortIcon extends Component<Props$n, SpreadsheetChildEnv> {
11606
+ declare class ClickableCellSortIcon extends Component<Props$f, SpreadsheetChildEnv> {
11609
11607
  static template: string;
11610
11608
  static props: {
11611
11609
  position: ObjectConstructor;
@@ -11652,11 +11650,11 @@ declare class ZoomableChartJsComponent extends ChartJsComponent {
11652
11650
  onDoubleClickInMasterChart(ev: PointerEvent): void;
11653
11651
  }
11654
11652
 
11655
- interface Props$m {
11653
+ interface Props$e {
11656
11654
  chartId: UID;
11657
11655
  isFullScreen?: boolean;
11658
11656
  }
11659
- declare class GaugeChartComponent extends Component<Props$m, SpreadsheetChildEnv> {
11657
+ declare class GaugeChartComponent extends Component<Props$e, SpreadsheetChildEnv> {
11660
11658
  static template: string;
11661
11659
  static props: {
11662
11660
  chartId: StringConstructor;
@@ -11725,7 +11723,7 @@ interface PivotDialogValue {
11725
11723
  value: string;
11726
11724
  isMissing: boolean;
11727
11725
  }
11728
- interface Props$l {
11726
+ interface Props$d {
11729
11727
  pivotId: UID;
11730
11728
  onCellClicked: (formula: string) => void;
11731
11729
  }
@@ -11734,7 +11732,7 @@ interface TableData {
11734
11732
  rows: PivotDialogRow[];
11735
11733
  values: PivotDialogValue[][];
11736
11734
  }
11737
- declare class PivotHTMLRenderer extends Component<Props$l, SpreadsheetChildEnv> {
11735
+ declare class PivotHTMLRenderer extends Component<Props$d, SpreadsheetChildEnv> {
11738
11736
  static template: string;
11739
11737
  static components: {
11740
11738
  Checkbox: typeof Checkbox;
@@ -11791,13 +11789,7 @@ declare class PivotHTMLRenderer extends Component<Props$l, SpreadsheetChildEnv>
11791
11789
  _buildValues(id: UID, table: SpreadsheetPivotTable): PivotDialogValue[][];
11792
11790
  }
11793
11791
 
11794
- interface Props$k {
11795
- chartId: UID;
11796
- definition: ChartWithDataSetDefinition;
11797
- updateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
11798
- canUpdateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
11799
- }
11800
- declare class ChartShowDataMarkers extends Component<Props$k, SpreadsheetChildEnv> {
11792
+ declare class ChartShowDataMarkers extends Component<ChartSidePanelProps<ChartWithDataSetDefinition>, SpreadsheetChildEnv> {
11801
11793
  static template: string;
11802
11794
  static components: {
11803
11795
  Checkbox: typeof Checkbox;
@@ -11805,18 +11797,14 @@ declare class ChartShowDataMarkers extends Component<Props$k, SpreadsheetChildEn
11805
11797
  static props: {
11806
11798
  chartId: StringConstructor;
11807
11799
  definition: ObjectConstructor;
11808
- updateChart: FunctionConstructor;
11809
11800
  canUpdateChart: FunctionConstructor;
11801
+ updateChart: FunctionConstructor;
11810
11802
  };
11811
11803
  }
11812
11804
 
11813
- interface Props$j {
11814
- chartId: UID;
11815
- definition: ZoomableChartDefinition;
11816
- canUpdateChart: (chartId: UID, definition: GenericDefinition<ZoomableChartDefinition>) => DispatchResult;
11817
- updateChart: (chartId: UID, definition: GenericDefinition<ZoomableChartDefinition>) => DispatchResult;
11805
+ interface Props$c extends ChartSidePanelProps<ZoomableChartDefinition> {
11818
11806
  }
11819
- declare class GenericZoomableChartDesignPanel<P extends Props$j = Props$j> extends ChartWithAxisDesignPanel<Props$j> {
11807
+ declare class GenericZoomableChartDesignPanel<P extends Props$c = Props$c> extends ChartWithAxisDesignPanel<P> {
11820
11808
  static template: string;
11821
11809
  static components: {
11822
11810
  Checkbox: typeof Checkbox;
@@ -11832,13 +11820,7 @@ declare class GenericZoomableChartDesignPanel<P extends Props$j = Props$j> exten
11832
11820
  onToggleZoom(zoomable: boolean): void;
11833
11821
  }
11834
11822
 
11835
- interface Props$i {
11836
- chartId: UID;
11837
- definition: ComboChartDefinition;
11838
- canUpdateChart: (chartId: UID, definition: GenericDefinition<ComboChartDefinition>) => DispatchResult;
11839
- updateChart: (chartId: UID, definition: GenericDefinition<ComboChartDefinition>) => DispatchResult;
11840
- }
11841
- declare class ComboChartDesignPanel extends GenericZoomableChartDesignPanel<Props$i> {
11823
+ declare class ComboChartDesignPanel extends GenericZoomableChartDesignPanel<ChartSidePanelProps<ComboChartDefinition>> {
11842
11824
  static template: string;
11843
11825
  static components: {
11844
11826
  ChartShowDataMarkers: typeof ChartShowDataMarkers;
@@ -11861,13 +11843,7 @@ declare class ComboChartDesignPanel extends GenericZoomableChartDesignPanel<Prop
11861
11843
  getDataSeriesType(index: number): "line" | "bar";
11862
11844
  }
11863
11845
 
11864
- interface Props$h {
11865
- chartId: UID;
11866
- definition: FunnelChartDefinition;
11867
- canUpdateChart: (chartId: UID, definition: Partial<FunnelChartDefinition>) => DispatchResult;
11868
- updateChart: (chartId: UID, definition: Partial<FunnelChartDefinition>) => DispatchResult;
11869
- }
11870
- declare class FunnelChartDesignPanel extends Component<Props$h, SpreadsheetChildEnv> {
11846
+ declare class FunnelChartDesignPanel extends Component<ChartSidePanelProps<FunnelChartDefinition>, SpreadsheetChildEnv> {
11871
11847
  static template: string;
11872
11848
  static components: {
11873
11849
  ChartShowValues: typeof ChartShowValues;
@@ -11890,16 +11866,54 @@ declare class FunnelChartDesignPanel extends Component<Props$h, SpreadsheetChild
11890
11866
  updateFunnelItemColor(index: number, color: string): void;
11891
11867
  }
11892
11868
 
11893
- interface Props$g {
11894
- chartId: UID;
11895
- definition: GeoChartDefinition;
11896
- canUpdateChart: (chartId: UID, definition: Partial<GeoChartDefinition>) => DispatchResult;
11897
- updateChart: (chartId: UID, definition: Partial<GeoChartDefinition>) => DispatchResult;
11869
+ interface Props$b {
11870
+ definition: {
11871
+ colorScale: ChartColorScale;
11872
+ };
11873
+ onUpdateColorScale: (colorscale: ChartColorScale) => void;
11874
+ }
11875
+ interface ColorScalePickerState {
11876
+ popoverProps: PopoverProps | undefined;
11877
+ popoverStyle: string;
11878
+ }
11879
+ declare class ColorScalePicker extends Component<Props$b, SpreadsheetChildEnv> {
11880
+ static template: string;
11881
+ static components: {
11882
+ Section: typeof Section;
11883
+ RoundColorPicker: typeof RoundColorPicker;
11884
+ Popover: typeof Popover;
11885
+ };
11886
+ static props: {
11887
+ definition: ObjectConstructor;
11888
+ onUpdateColorScale: FunctionConstructor;
11889
+ };
11890
+ colorScales: {
11891
+ value: string;
11892
+ label: any;
11893
+ className: string;
11894
+ }[];
11895
+ state: ColorScalePickerState;
11896
+ popoverRef: {
11897
+ el: HTMLElement | null;
11898
+ };
11899
+ setup(): void;
11900
+ get currentColorScale(): ChartColorScale;
11901
+ get currentColorScaleStyle(): string | undefined;
11902
+ colorScalePreviewStyle(colorScale: ColorScale): string;
11903
+ get currentColorScaleLabel(): string;
11904
+ onColorScaleChange(value: string): void;
11905
+ onPointerDown(ev: PointerEvent): void;
11906
+ private closePopover;
11907
+ get selectedColorScale(): string;
11908
+ getCustomColorScaleColor(color: "minColor" | "midColor" | "maxColor"): "" | Color;
11909
+ setCustomColorScaleColor(colorType: "minColor" | "midColor" | "maxColor", color: Color): void;
11898
11910
  }
11899
- declare class GeoChartDesignPanel extends ChartWithAxisDesignPanel<Props$g> {
11911
+
11912
+ declare class GeoChartDesignPanel extends ChartWithAxisDesignPanel<ChartSidePanelProps<GeoChartDefinition>> {
11900
11913
  static template: string;
11901
11914
  static components: {
11902
11915
  RoundColorPicker: typeof RoundColorPicker;
11916
+ ColorScalePicker: typeof ColorScalePicker;
11903
11917
  GeneralDesignEditor: typeof GeneralDesignEditor;
11904
11918
  SidePanelCollapsible: typeof SidePanelCollapsible;
11905
11919
  Section: typeof Section;
@@ -11909,24 +11923,18 @@ declare class GeoChartDesignPanel extends ChartWithAxisDesignPanel<Props$g> {
11909
11923
  ChartShowValues: typeof ChartShowValues;
11910
11924
  ChartHumanizeNumbers: typeof ChartHumanizeNumbers;
11911
11925
  };
11912
- colorScalesChoices: Record<"blues" | "cividis" | "greens" | "greys" | "oranges" | "purples" | "rainbow" | "reds" | "viridis", string>;
11913
- updateColorScaleType(ev: Event): void;
11914
- updateColorScale(colorScale: GeoChartColorScale): void;
11926
+ updateColorScale(colorScale: ChartColorScale | undefined): void;
11915
11927
  updateMissingValueColor(color: Color): void;
11916
11928
  updateLegendPosition(ev: Event): void;
11917
- get selectedColorScale(): "custom" | "blues" | "cividis" | "greens" | "greys" | "oranges" | "purples" | "rainbow" | "reds" | "viridis";
11918
11929
  get selectedMissingValueColor(): Color | "#ffffff";
11919
- get customColorScale(): GeoChartCustomColorScale | undefined;
11920
- getCustomColorScaleColor(color: "minColor" | "midColor" | "maxColor"): "" | Color;
11921
- setCustomColorScaleColor(colorType: "minColor" | "midColor" | "maxColor", color: Color): void;
11922
11930
  }
11923
11931
 
11924
- interface Props$f {
11932
+ interface Props$a {
11925
11933
  chartId: UID;
11926
11934
  definition: GeoChartDefinition;
11927
11935
  updateChart: (chartId: UID, definition: Partial<GeoChartDefinition>) => DispatchResult;
11928
11936
  }
11929
- declare class GeoChartRegionSelectSection extends Component<Props$f, SpreadsheetChildEnv> {
11937
+ declare class GeoChartRegionSelectSection extends Component<Props$a, SpreadsheetChildEnv> {
11930
11938
  static template: string;
11931
11939
  static components: {
11932
11940
  Section: typeof Section;
@@ -11941,13 +11949,7 @@ declare class GeoChartRegionSelectSection extends Component<Props$f, Spreadsheet
11941
11949
  get selectedRegion(): string;
11942
11950
  }
11943
11951
 
11944
- interface Props$e {
11945
- chartId: UID;
11946
- definition: LineChartDefinition;
11947
- canUpdateChart: (chartId: UID, definition: LineChartDefinition) => DispatchResult;
11948
- updateChart: (chartId: UID, definition: LineChartDefinition) => DispatchResult;
11949
- }
11950
- declare class LineChartDesignPanel extends GenericZoomableChartDesignPanel<Props$e> {
11952
+ declare class LineChartDesignPanel extends GenericZoomableChartDesignPanel<ChartSidePanelProps<LineChartDefinition>> {
11951
11953
  static template: string;
11952
11954
  static components: {
11953
11955
  ChartShowDataMarkers: typeof ChartShowDataMarkers;
@@ -11963,13 +11965,7 @@ declare class LineChartDesignPanel extends GenericZoomableChartDesignPanel<Props
11963
11965
  };
11964
11966
  }
11965
11967
 
11966
- interface Props$d {
11967
- chartId: UID;
11968
- definition: RadarChartDefinition;
11969
- canUpdateChart: (chartId: UID, definition: GenericDefinition<RadarChartDefinition>) => DispatchResult;
11970
- updateChart: (chartId: UID, definition: GenericDefinition<RadarChartDefinition>) => DispatchResult;
11971
- }
11972
- declare class RadarChartDesignPanel extends Component<Props$d, SpreadsheetChildEnv> {
11968
+ declare class RadarChartDesignPanel extends Component<ChartSidePanelProps<RadarChartDefinition>, SpreadsheetChildEnv> {
11973
11969
  static template: string;
11974
11970
  static components: {
11975
11971
  GeneralDesignEditor: typeof GeneralDesignEditor;
@@ -11989,13 +11985,7 @@ declare class RadarChartDesignPanel extends Component<Props$d, SpreadsheetChildE
11989
11985
  };
11990
11986
  }
11991
11987
 
11992
- interface Props$c {
11993
- chartId: UID;
11994
- definition: SunburstChartDefinition;
11995
- canUpdateChart: (chartId: UID, definition: Partial<SunburstChartDefinition>) => DispatchResult;
11996
- updateChart: (chartId: UID, definition: Partial<SunburstChartDefinition>) => DispatchResult;
11997
- }
11998
- declare class SunburstChartDesignPanel extends Component<Props$c, SpreadsheetChildEnv> {
11988
+ declare class SunburstChartDesignPanel extends Component<ChartSidePanelProps<SunburstChartDefinition>, SpreadsheetChildEnv> {
11999
11989
  static template: string;
12000
11990
  static components: {
12001
11991
  GeneralDesignEditor: typeof GeneralDesignEditor;
@@ -12012,11 +12002,8 @@ declare class SunburstChartDesignPanel extends Component<Props$c, SpreadsheetChi
12012
12002
  static props: {
12013
12003
  chartId: StringConstructor;
12014
12004
  definition: ObjectConstructor;
12005
+ canUpdateChart: FunctionConstructor;
12015
12006
  updateChart: FunctionConstructor;
12016
- canUpdateChart: {
12017
- type: FunctionConstructor;
12018
- optional: boolean;
12019
- };
12020
12007
  };
12021
12008
  defaults: {
12022
12009
  showValues: boolean;
@@ -12033,12 +12020,12 @@ declare class SunburstChartDesignPanel extends Component<Props$c, SpreadsheetChi
12033
12020
  onPieHoleSizeChange(pieHolePercentage: number): void;
12034
12021
  }
12035
12022
 
12036
- interface Props$b {
12023
+ interface Props$9 {
12037
12024
  chartId: UID;
12038
12025
  definition: TreeMapChartDefinition;
12039
12026
  onColorChanged: (colors: TreeMapCategoryColorOptions) => DispatchResult;
12040
12027
  }
12041
- declare class TreeMapCategoryColors extends Component<Props$b, SpreadsheetChildEnv> {
12028
+ declare class TreeMapCategoryColors extends Component<Props$9, SpreadsheetChildEnv> {
12042
12029
  static template: string;
12043
12030
  static components: {
12044
12031
  Checkbox: typeof Checkbox;
@@ -12055,12 +12042,12 @@ declare class TreeMapCategoryColors extends Component<Props$b, SpreadsheetChildE
12055
12042
  useValueBasedGradient(useValueBasedGradient: boolean): void;
12056
12043
  }
12057
12044
 
12058
- interface Props$a {
12045
+ interface Props$8 {
12059
12046
  chartId: UID;
12060
12047
  definition: TreeMapChartDefinition;
12061
12048
  onColorChanged: (colors: TreeMapColorScaleOptions) => DispatchResult;
12062
12049
  }
12063
- declare class TreeMapColorScale extends Component<Props$a, SpreadsheetChildEnv> {
12050
+ declare class TreeMapColorScale extends Component<Props$8, SpreadsheetChildEnv> {
12064
12051
  static template: string;
12065
12052
  static components: {
12066
12053
  RoundColorPicker: typeof RoundColorPicker;
@@ -12074,13 +12061,7 @@ declare class TreeMapColorScale extends Component<Props$a, SpreadsheetChildEnv>
12074
12061
  setColorScaleColor(point: "minColor" | "midColor" | "maxColor", color: string): void;
12075
12062
  }
12076
12063
 
12077
- interface Props$9 {
12078
- chartId: UID;
12079
- definition: TreeMapChartDefinition;
12080
- canUpdateChart: (chartId: UID, definition: Partial<TreeMapChartDefinition>) => DispatchResult;
12081
- updateChart: (chartId: UID, definition: Partial<TreeMapChartDefinition>) => DispatchResult;
12082
- }
12083
- declare class TreeMapChartDesignPanel extends Component<Props$9, SpreadsheetChildEnv> {
12064
+ declare class TreeMapChartDesignPanel extends Component<ChartSidePanelProps<TreeMapChartDefinition>, SpreadsheetChildEnv> {
12084
12065
  static template: string;
12085
12066
  static components: {
12086
12067
  GeneralDesignEditor: typeof GeneralDesignEditor;
@@ -12098,11 +12079,8 @@ declare class TreeMapChartDesignPanel extends Component<Props$9, SpreadsheetChil
12098
12079
  static props: {
12099
12080
  chartId: StringConstructor;
12100
12081
  definition: ObjectConstructor;
12082
+ canUpdateChart: FunctionConstructor;
12101
12083
  updateChart: FunctionConstructor;
12102
- canUpdateChart: {
12103
- type: FunctionConstructor;
12104
- optional: boolean;
12105
- };
12106
12084
  };
12107
12085
  private savedColors;
12108
12086
  defaults: {
@@ -12126,13 +12104,7 @@ declare class TreeMapChartDesignPanel extends Component<Props$9, SpreadsheetChil
12126
12104
  }[];
12127
12105
  }
12128
12106
 
12129
- interface Props$8 {
12130
- chartId: UID;
12131
- definition: WaterfallChartDefinition;
12132
- canUpdateChart: (chartId: UID, definition: GenericDefinition<WaterfallChartDefinition>) => DispatchResult;
12133
- updateChart: (chartId: UID, definition: GenericDefinition<WaterfallChartDefinition>) => DispatchResult;
12134
- }
12135
- declare class WaterfallChartDesignPanel extends Component<Props$8, SpreadsheetChildEnv> {
12107
+ declare class WaterfallChartDesignPanel extends Component<ChartSidePanelProps<WaterfallChartDefinition>, SpreadsheetChildEnv> {
12136
12108
  static template: string;
12137
12109
  static components: {
12138
12110
  GeneralDesignEditor: typeof GeneralDesignEditor;
@@ -12149,11 +12121,8 @@ declare class WaterfallChartDesignPanel extends Component<Props$8, SpreadsheetCh
12149
12121
  static props: {
12150
12122
  chartId: StringConstructor;
12151
12123
  definition: ObjectConstructor;
12124
+ canUpdateChart: FunctionConstructor;
12152
12125
  updateChart: FunctionConstructor;
12153
- canUpdateChart: {
12154
- type: FunctionConstructor;
12155
- optional: boolean;
12156
- };
12157
12126
  };
12158
12127
  axisChoices: {
12159
12128
  value: string;
@@ -12712,6 +12681,7 @@ declare class ClickableCellsStore extends SpreadsheetStore {
12712
12681
  private getClickableItem;
12713
12682
  private findClickableItem;
12714
12683
  get clickableCells(): ClickableCell[];
12684
+ private getClickableCellRect;
12715
12685
  }
12716
12686
 
12717
12687
  interface Props$4 {
@@ -13294,6 +13264,7 @@ declare const helpers: {
13294
13264
  isNumber: typeof isNumber;
13295
13265
  isDateTime: typeof isDateTime;
13296
13266
  createCustomFields: typeof createCustomFields;
13267
+ schemeToColorScale: typeof schemeToColorScale;
13297
13268
  };
13298
13269
  declare const links: {
13299
13270
  isMarkdownLink: typeof isMarkdownLink;
@@ -13409,9 +13380,7 @@ declare const constants: {
13409
13380
  };
13410
13381
  ChartTerms: {
13411
13382
  [key: string]: any;
13412
- GeoChart: {
13413
- ColorScales: Record<Extract<GeoChartColorScale, string>, string>;
13414
- };
13383
+ ColorScales: Record<Extract<ChartColorScale, string>, string>;
13415
13384
  };
13416
13385
  FIGURE_ID_SPLITTER: string;
13417
13386
  GRID_ICON_EDGE_LENGTH: number;
@@ -13419,6 +13388,7 @@ declare const constants: {
13419
13388
  };
13420
13389
  declare const chartHelpers: {
13421
13390
  getBarChartData(definition: GenericDefinition<BarChartDefinition>, dataSets: DataSet[], labelRange: Range | undefined, getters: Getters): ChartRuntimeGenerationArgs;
13391
+ getCalendarChartData(definition: GenericDefinition<CalendarChartDefinition>, dataSets: DataSet[], labelRange: Range | undefined, getters: Getters): ChartRuntimeGenerationArgs;
13422
13392
  getPyramidChartData(definition: PyramidChartDefinition, dataSets: DataSet[], labelRange: Range | undefined, getters: Getters): ChartRuntimeGenerationArgs;
13423
13393
  getLineChartData(definition: GenericDefinition<LineChartDefinition>, dataSets: DataSet[], labelRange: Range | undefined, getters: Getters): ChartRuntimeGenerationArgs;
13424
13394
  getPieChartData(definition: GenericDefinition<PieChartDefinition>, dataSets: DataSet[], labelRange: Range | undefined, getters: Getters): ChartRuntimeGenerationArgs;
@@ -13434,6 +13404,10 @@ declare const chartHelpers: {
13434
13404
  makeDatasetsCumulative(datasets: DatasetValues[], order: "asc" | "desc"): DatasetValues[];
13435
13405
  getTopPaddingForDashboard(definition: GenericDefinition<PieChartDefinition | LineChartDefinition | BarChartDefinition>, getters: Getters): 0 | 30;
13436
13406
  getBarChartDatasets(definition: GenericDefinition<BarChartDefinition>, args: ChartRuntimeGenerationArgs): chart_js.ChartDataset<"bar" | "line">[];
13407
+ getCalendarChartDatasetAndLabels(definition: CalendarChartDefinition, args: ChartRuntimeGenerationArgs): {
13408
+ datasets: chart_js.ChartDataset<"calendar">[];
13409
+ labels: string[];
13410
+ };
13437
13411
  getWaterfallDatasetAndLabels(definition: GenericDefinition<WaterfallChartDefinition>, args: ChartRuntimeGenerationArgs): {
13438
13412
  datasets: chart_js.ChartDataset[];
13439
13413
  labels: string[];
@@ -13454,6 +13428,10 @@ declare const chartHelpers: {
13454
13428
  autoPadding: boolean;
13455
13429
  padding: chart_js.Scriptable<chart_js_dist_types_geometric.Padding, chart_js.ScriptableContext<keyof chart_js.ChartTypeRegistry>>;
13456
13430
  }>> | undefined;
13431
+ getCalendarChartLayout(definition: GenericDefinition<ChartWithDataSetDefinition>, args: ChartRuntimeGenerationArgs): chart_js_dist_types_utils._DeepPartialObject<Partial<{
13432
+ autoPadding: boolean;
13433
+ padding: chart_js.Scriptable<chart_js_dist_types_geometric.Padding, chart_js.ScriptableContext<keyof chart_js.ChartTypeRegistry>>;
13434
+ }>> | undefined;
13457
13435
  getBarChartLegend(definition: GenericDefinition<BarChartDefinition>, args: ChartRuntimeGenerationArgs): chart_js_dist_types_utils._DeepPartialObject<chart_js.LegendOptions<any>>;
13458
13436
  getLineChartLegend(definition: GenericDefinition<LineChartDefinition>, args: ChartRuntimeGenerationArgs): chart_js_dist_types_utils._DeepPartialObject<chart_js.LegendOptions<any>>;
13459
13437
  getPieChartLegend(definition: GenericDefinition<LineChartDefinition>, args: ChartRuntimeGenerationArgs): chart_js_dist_types_utils._DeepPartialObject<chart_js.LegendOptions<any>>;
@@ -13468,6 +13446,8 @@ declare const chartHelpers: {
13468
13446
  onClick: (event: any, legendItem: any, legend: any) => void;
13469
13447
  };
13470
13448
  getBarChartScales(definition: GenericDefinition<BarChartDefinition>, args: ChartRuntimeGenerationArgs): chart_js_dist_types_utils.DeepPartial<chart_js.ScaleChartOptions<"line" | "bar">["scales"]>;
13449
+ getCalendarChartScales(definition: GenericDefinition<BarChartDefinition>, datasets: chart_js.ChartDataset[]): chart_js_dist_types_utils.DeepPartial<chart_js.ScaleChartOptions<"calendar">["scales"]>;
13450
+ getCalendarColorScale(definition: CalendarChartDefinition, args: ChartRuntimeGenerationArgs): ChartColorScalePluginOptions | undefined;
13471
13451
  getLineChartScales(definition: GenericDefinition<LineChartDefinition>, args: ChartRuntimeGenerationArgs): chart_js_dist_types_utils.DeepPartial<chart_js.ScaleChartOptions<"line">["scales"]>;
13472
13452
  getScatterChartScales(definition: GenericDefinition<ScatterChartDefinition>, args: ChartRuntimeGenerationArgs): chart_js_dist_types_utils.DeepPartial<chart_js.ScaleChartOptions<"line">["scales"]>;
13473
13453
  getWaterfallChartScales(definition: WaterfallChartDefinition, args: ChartRuntimeGenerationArgs): chart_js_dist_types_utils._DeepPartialObject<{
@@ -13485,12 +13465,15 @@ declare const chartHelpers: {
13485
13465
  getFunnelChartScales(definition: FunnelChartDefinition, args: ChartRuntimeGenerationArgs): chart_js_dist_types_utils._DeepPartialObject<{
13486
13466
  [key: string]: chart_js.ScaleOptionsByType<"radialLinear" | keyof chart_js.CartesianScaleTypeRegistry>;
13487
13467
  }>;
13468
+ getRuntimeColorScale(colorScale: ChartColorScale, minValue?: number, maxValue?: number): (value: number) => Color;
13488
13469
  getChartShowValues(definition: ChartWithDataSetDefinition, args: ChartRuntimeGenerationArgs): ChartShowValuesPluginOptions;
13470
+ getCalendarChartShowValues(definition: CalendarChartDefinition, args: ChartRuntimeGenerationArgs): ChartShowValuesPluginOptions;
13489
13471
  getSunburstShowValues(definition: SunburstChartDefinition, args: ChartRuntimeGenerationArgs): ChartSunburstLabelsPluginOptions;
13490
13472
  getPyramidChartShowValues(definition: ChartWithDataSetDefinition, args: ChartRuntimeGenerationArgs): ChartShowValuesPluginOptions;
13491
13473
  getWaterfallChartShowValues(definition: WaterfallChartDefinition, args: ChartRuntimeGenerationArgs): ChartShowValuesPluginOptions;
13492
13474
  getChartTitle(definition: ChartWithDataSetDefinition, getters: Getters): chart_js_dist_types_utils._DeepPartialObject<chart_js.TitleOptions>;
13493
13475
  getBarChartTooltip(definition: GenericDefinition<BarChartDefinition>, args: ChartRuntimeGenerationArgs): chart_js_dist_types_utils._DeepPartialObject<chart_js.TooltipOptions<any>>;
13476
+ getCalendarChartTooltip(definition: CalendarChartDefinition, args: ChartRuntimeGenerationArgs): chart_js_dist_types_utils._DeepPartialObject<chart_js.TooltipOptions<any>>;
13494
13477
  getLineChartTooltip(definition: GenericDefinition<LineChartDefinition>, args: ChartRuntimeGenerationArgs): chart_js_dist_types_utils._DeepPartialObject<chart_js.TooltipOptions<any>>;
13495
13478
  getPieChartTooltip(definition: PieChartDefinition, args: ChartRuntimeGenerationArgs): chart_js_dist_types_utils._DeepPartialObject<chart_js.TooltipOptions<any>>;
13496
13479
  getWaterfallChartTooltip(definition: WaterfallChartDefinition, args: ChartRuntimeGenerationArgs): chart_js_dist_types_utils._DeepPartialObject<chart_js.TooltipOptions<any>>;
@@ -13575,4 +13558,4 @@ declare const chartHelpers: {
13575
13558
  WaterfallChart: typeof WaterfallChart;
13576
13559
  };
13577
13560
 
13578
- export { AST, ASTFuncall, AboveAverageRule, AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, ActivateNextSheetCommand, ActivatePreviousSheetCommand, ActivateSheetCommand, AdaptSheetName, AddColumnsRowsCommand, AddConditionalFormatCommand, AddDataValidationCommand, AddFigureChartToCarouselCommand, AddFunctionDescription, AddMergeCommand, AddNewChartToCarouselCommand, AddPivotCommand, AdjacentEdge, Aggregator, Alias, Align, AlphanumericIncrementModifier, AnchorOffset, AnchorZone, ApplyRangeChange, ApplyRangeChangeResult, Arg, ArgDefinition, ArgProposal, ArgType, AutoFillCellCommand, AutofillAutoCommand, AutofillCellData, AutofillCommand, AutofillData, AutofillModifier, AutofillModifierImplementation, AutofillResult, AutofillSelectCommand, AutofillTableCommand, AutoresizeColumnsCommand, AutoresizeRowsCommand, AxesDesign, AxisDesign, AxisType, BadExpressionError, BeginsWithRule, BooleanCell, Border$1 as Border, BorderData, BorderDescr, BorderDescrWithOpacity, BorderPosition, BorderStyle, BoundedRange, Box, BoxTextContent, CHART_TYPES, CSSProperties, CancelledReason, Carousel, CarouselItem, Cell, CellErrorType, CellIsRule, CellPosition, CellValue, CellValueType, ChangeType, ChartAxisFormats, ChartCreationContext, ChartDatasetOrientation, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartRuntimeGenerationArgs, ChartStyle, ChartType, ChartWithAxisDefinition, ChartWithDataSetDefinition, CircularDependencyError, CleanClipBoardHighlightCommand, ClearCellCommand, ClearCellsCommand, ClearFormattingCommand, Client, ClientDisconnectedError, ClientId, ClientJoinedMessage, ClientLeftMessage, ClientMovedMessage, ClientPosition, ClientWithColor, ClientWithPosition, ClipboardCell, ClipboardCellData, ClipboardCopyOptions, 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, CorePlugin, CoreTable, CoreTableType, CoreViewCommand, CoreViewCommandTypes, CoreViewPlugin, CreateCarouselCommand, CreateChartCommand, CreateFigureCommand, CreateImageOverCommand, CreateRevisionOptions, CreateSheetCommand, CreateTableCommand, CreateTableStyleCommand, CriterionFilter, Currency, CustomFormulaCriterion, CustomizedDataSet, CutCommand, DEFAULT_LOCALE, DEFAULT_LOCALES, DIRECTION, DOMCoordinates, DOMDimension, DataBarFill, DataBarRule, DataBarRuleInternal, DataFilterValue, DataSet, DataValidationCriterion, DataValidationCriterionType, DataValidationDateCriterion, DataValidationRule, DataValidationRuleData, DatasetDesign, DatasetValues, DateCriterionValue, DateIncrementModifier, DateIsAfterCriterion, DateIsBeforeCriterion, DateIsBetweenCriterion, DateIsCriterion, DateIsNotBetweenCriterion, DateIsOnOrAfterCriterion, DateIsOnOrBeforeCriterion, DateIsValidCriterion, DebouncedFunction, DeleteCellCommand, DeleteChartCommand, DeleteContentCommand, DeleteFigureCommand, DeleteSheetCommand, DeleteUnfilteredContentCommand, Dependencies, Dimension, DimensionTree, DimensionTreeNode, Direction$1 as Direction, DispatchResult, DivisionByZeroError, DuplicatePivotCommand, DuplicatePivotInNewSheetCommand, DuplicateSheetCommand, DynamicTable, EdgeScrollInfo, EditTextOptions, EditionMode, EmptyCell, EndsWithRule, EnrichedToken, EnsureRange, ErrorCell, ErrorValue, 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$1 as Image, Immutable, Increment, IncrementModifier, InformationNotification, InitPivotParams, InsertCellCommand, InsertNewPivotCommand, InsertPivotCommand, InsertPivotWithTableCommand, InvalidReferenceError, IsBetweenCriterion, IsCheckboxCriterion, IsEqualCriterion, IsGreaterOrEqualToCriterion, IsGreaterThanCriterion, IsLessOrEqualToCriterion, IsLessThanCriterion, IsNotBetweenCriterion, IsNotEqualCriterion, IsValueInListCriterion, IsValueInRangeCriterion, LabelValues, LayerName, Lazy, Link, LiteralCell, LocalCommand, LocalTransportService, Locale, LocaleCode, LocaleFormat, LookupCaches, Matrix, Maybe, MenuMouseEvent, Merge, MinimalClipboardData, Model, MoveColumnsRowsCommand, MoveConditionalFormatCommand, MoveRangeCommand, MoveSheetCommand, MoveViewportDownCommand, MoveViewportToCellCommand, MoveViewportUpCommand, NEXT_VALUE, NewLocalStateUpdateEvent, NotAvailableError, NotContainsTextRule, NotificationType, NumberCell, OSClipboardContent, Offset, OperationSequenceNode, OrderedLayers, PREVIOUS_VALUE, PaintFormat, PaneDivision, ParsedOSClipboardContent, ParsedOsClipboardContentWithImageData, PasteCommand, PasteFromOSClipboardCommand, Pivot, PivotColRowDomain, PivotCollapsedDomains, PivotCoreDefinition, PivotCoreDimension, PivotCoreMeasure, PivotCustomGroup, PivotCustomGroupedField, PivotDimension$1 as PivotDimension, PivotDomain, PivotEmptyCell, PivotField, PivotFields, PivotHeaderCell, PivotMeasure, PivotMeasureDisplay, PivotMeasureDisplayType, PivotMeasureHeaderCell, PivotNode, PivotRuntimeDefinition, PivotSortedColumn, PivotStartPresenceTracking, PivotStopPresenceTracking, PivotStyle, PivotTableCell, PivotTableColumn, PivotTableData, PivotTableRow, PivotTimeAdapter, PivotTimeAdapterNotNull, PivotValueCell, Pixel, PixelPosition, PopOutChartFromCarouselCommand, Position, PositionDependentCommand, RGBA, Range, RangeAdapter, RangeCompiledFormula, RangeData, RangePart, RangeProvider, RangeStringOptions, RangesDependentCommand, Rect, RedoCommand, Ref, ReferenceDenormalizer, RefreshPivotCommand, Registry, RemoteRevisionMessage, RemoteRevisionReceivedEvent, RemoveColumnsRowsCommand, RemoveConditionalFormatCommand, RemoveDataValidationCommand, RemoveDuplicatesCommand, RemoveMergeCommand, RemovePivotCommand, RemoveTableCommand, RemoveTableStyleCommand, RenamePivotCommand, RenameSheetCommand, RenderingBorder, RenderingBox, RenderingGridIcon, RepeatPasteCommand, ReplaceSearchCommand, RequestRedoCommand, RequestUndoCommand, ResizeColumnsRowsCommand, ResizeDirection, ResizeTableCommand, ResizeViewportCommand, Revision, RevisionAcknowledgedEvent, RevisionData, RevisionRedone, RevisionRedoneMessage, RevisionUndone, RevisionUndoneMessage, Row, SPREADSHEET_DIMENSIONS, ScrollDirection$1 as ScrollDirection, SelectFigureCommand, Selection$1 as Selection, SelectionStep, SetBorderCommand, SetBorderTargetCommand, SetContextualFormatCommand, SetDecimalCommand, SetDecimalStep, SetFormattingCommand, SetGridLinesVisibilityCommand, SetViewportOffsetCommand, SetZoneBordersCommand, SetZoomCommand, Sheet, SheetDOMScrollInfo, SheetData, SheetDependentCommand, SheetEditingCommand, ShowFormulaCommand, ShowSheetCommand, SingleColorRule, SingleColorRules, SnapshotEvent, SortCommand, SortDirection, SortOptions, SplillBlockedError, SplitPivotFormulaCommand, SplitTextIntoColumnsCommand, Spreadsheet, SpreadsheetClipboardData, 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, UnknownFunctionError, UpdateCarouselActiveItemCommand, UpdateCarouselCommand, UpdateCellCommand, UpdateCellData, UpdateCellPositionCommand, UpdateChartCommand, UpdateFigureCommand, UpdateFilterCommand, UpdateLocaleCommand, UpdatePivotCommand, UpdateTableCommand, Validation, ValueAndLabel, ValuesFilter, VerticalAlign, Viewport, WorkbookData, WorkbookHistory, Wrapping, Zone, ZoneDependentCommand, ZoneDimension, ZoomableChartDefinition, __info__, addFunction, addRenderingLayer, astToFormula, availableConditionalFormatOperators, availableDataValidationOperators, availableFiltersOperators, borderStyles, canExecuteInReadonly, categories, chartHelpers, compile, compileTokens, components, constants, containsBlanksRule, containsErrorsRule, convertAstNodes, coreTypes, createAutocompleteArgumentsProvider, errorTypes, filterDateCriterionOperators, filterNumberCriterionOperators, filterTextCriterionOperators, findCellInNewZone, functionCache, getCaretDownSvg, getCaretUpSvg, helpers, hooks, invalidSubtotalFormulasCommands, 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 };
13561
+ export { AST, ASTFuncall, AboveAverageRule, AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, ActivateNextSheetCommand, ActivatePreviousSheetCommand, ActivateSheetCommand, AdaptSheetName, AddColumnsRowsCommand, AddConditionalFormatCommand, AddDataValidationCommand, AddFigureChartToCarouselCommand, AddFunctionDescription, AddMergeCommand, AddNewChartToCarouselCommand, AddPivotCommand, AdjacentEdge, Aggregator, Alias, Align, AlphanumericIncrementModifier, AnchorOffset, AnchorZone, ApplyRangeChange, ApplyRangeChangeResult, Arg, ArgDefinition, ArgProposal, ArgType, AutoFillCellCommand, AutofillAutoCommand, AutofillCellData, AutofillCommand, AutofillData, AutofillModifier, AutofillModifierImplementation, AutofillResult, AutofillSelectCommand, AutofillTableCommand, AutoresizeColumnsCommand, AutoresizeRowsCommand, AxesDesign, AxisDesign, AxisType, BadExpressionError, BeginsWithRule, BooleanCell, Border$1 as Border, BorderData, BorderDescr, BorderDescrWithOpacity, BorderPosition, BorderStyle, BoundedRange, Box, BoxTextContent, CHART_TYPES, CSSProperties, CancelledReason, Carousel, CarouselItem, Cell, CellErrorType, CellIsRule, CellPosition, CellValue, CellValueType, ChangeType, ChartAxisFormats, ChartColorScale, ChartCreationContext, ChartDatasetOrientation, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartRuntimeGenerationArgs, ChartStyle, ChartType, ChartWithAxisDefinition, ChartWithColorScaleDefinition, ChartWithDataSetDefinition, ChartWithTitleDefinition, CircularDependencyError, CleanClipBoardHighlightCommand, ClearCellCommand, ClearCellsCommand, ClearFormattingCommand, Client, ClientDisconnectedError, ClientId, ClientJoinedMessage, ClientLeftMessage, ClientMovedMessage, ClientPosition, ClientWithColor, ClientWithPosition, ClipboardCell, ClipboardCellData, ClipboardCopyOptions, 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, CorePlugin, CoreTable, CoreTableType, CoreViewCommand, CoreViewCommandTypes, CoreViewPlugin, CreateCarouselCommand, CreateChartCommand, CreateFigureCommand, CreateImageOverCommand, CreateRevisionOptions, CreateSheetCommand, CreateTableCommand, CreateTableStyleCommand, CriterionFilter, Currency, CustomFormulaCriterion, CustomizedDataSet, CutCommand, DEFAULT_LOCALE, DEFAULT_LOCALES, DIRECTION, DOMCoordinates, DOMDimension, DataBarFill, DataBarRule, DataBarRuleInternal, DataFilterValue, DataSet, DataValidationCriterion, DataValidationCriterionType, DataValidationDateCriterion, DataValidationRule, DataValidationRuleData, DatasetDesign, DatasetValues, DateCriterionValue, DateIncrementModifier, DateIsAfterCriterion, DateIsBeforeCriterion, DateIsBetweenCriterion, DateIsCriterion, DateIsNotBetweenCriterion, DateIsOnOrAfterCriterion, DateIsOnOrBeforeCriterion, DateIsValidCriterion, DebouncedFunction, DeleteCellCommand, DeleteChartCommand, DeleteContentCommand, DeleteFigureCommand, DeleteSheetCommand, DeleteUnfilteredContentCommand, Dependencies, Dimension, DimensionTree, DimensionTreeNode, Direction$1 as Direction, DispatchResult, DivisionByZeroError, DuplicateCarouselChartCommand, DuplicatePivotCommand, DuplicatePivotInNewSheetCommand, DuplicateSheetCommand, DynamicTable, EdgeScrollInfo, EditTextOptions, EditionMode, EmptyCell, EndsWithRule, EnrichedToken, EnsureRange, ErrorCell, ErrorValue, 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$1 as Image, Immutable, Increment, IncrementModifier, InformationNotification, InitPivotParams, InsertCellCommand, InsertNewPivotCommand, InsertPivotCommand, InsertPivotWithTableCommand, InvalidReferenceError, IsBetweenCriterion, IsCheckboxCriterion, IsEqualCriterion, IsGreaterOrEqualToCriterion, IsGreaterThanCriterion, IsLessOrEqualToCriterion, IsLessThanCriterion, IsNotBetweenCriterion, IsNotEqualCriterion, IsValueInListCriterion, IsValueInRangeCriterion, LabelValues, LayerName, Lazy, Link, LiteralCell, LocalCommand, LocalTransportService, Locale, LocaleCode, LocaleFormat, LookupCaches, Matrix, Maybe, MenuMouseEvent, Merge, MinimalClipboardData, Model, MoveColumnsRowsCommand, MoveConditionalFormatCommand, MoveRangeCommand, MoveSheetCommand, MoveViewportDownCommand, MoveViewportToCellCommand, MoveViewportUpCommand, NEXT_VALUE, NewLocalStateUpdateEvent, NotAvailableError, NotContainsTextRule, NotificationType, NumberCell, OSClipboardContent, Offset, OperationSequenceNode, OrderedLayers, PREVIOUS_VALUE, PaintFormat, PaneDivision, ParsedOSClipboardContent, ParsedOsClipboardContentWithImageData, PasteCommand, PasteFromOSClipboardCommand, Pivot, PivotColRowDomain, PivotCollapsedDomains, PivotCoreDefinition, PivotCoreDimension, PivotCoreMeasure, PivotCustomGroup, PivotCustomGroupedField, PivotDimension$1 as PivotDimension, PivotDomain, PivotEmptyCell, PivotField, PivotFields, PivotHeaderCell, PivotMeasure, PivotMeasureDisplay, PivotMeasureDisplayType, PivotMeasureHeaderCell, PivotNode, PivotRuntimeDefinition, PivotSortedColumn, PivotStartPresenceTracking, PivotStopPresenceTracking, PivotStyle, PivotTableCell, PivotTableColumn, PivotTableData, PivotTableRow, PivotTimeAdapter, PivotTimeAdapterNotNull, PivotValueCell, Pixel, PixelPosition, PopOutChartFromCarouselCommand, Position, PositionDependentCommand, RGBA, Range, RangeAdapter, RangeCompiledFormula, RangeData, RangePart, RangeProvider, RangeStringOptions, RangesDependentCommand, Rect, RedoCommand, Ref, ReferenceDenormalizer, RefreshPivotCommand, Registry, RemoteRevisionMessage, RemoteRevisionReceivedEvent, RemoveColumnsRowsCommand, RemoveConditionalFormatCommand, RemoveDataValidationCommand, RemoveDuplicatesCommand, RemoveMergeCommand, RemovePivotCommand, RemoveTableCommand, RemoveTableStyleCommand, RenamePivotCommand, RenameSheetCommand, RenderingBorder, RenderingBox, RenderingGridIcon, RepeatPasteCommand, ReplaceSearchCommand, RequestRedoCommand, RequestUndoCommand, ResizeColumnsRowsCommand, ResizeDirection, ResizeTableCommand, ResizeViewportCommand, Revision, RevisionAcknowledgedEvent, RevisionData, RevisionRedone, RevisionRedoneMessage, RevisionUndone, RevisionUndoneMessage, Row, SPREADSHEET_DIMENSIONS, ScrollDirection$1 as ScrollDirection, SelectFigureCommand, Selection$1 as Selection, SelectionStep, SetBorderCommand, SetBorderTargetCommand, SetContextualFormatCommand, SetDecimalCommand, SetDecimalStep, SetFormattingCommand, SetGridLinesVisibilityCommand, SetViewportOffsetCommand, SetZoneBordersCommand, SetZoomCommand, Sheet, SheetDOMScrollInfo, SheetData, SheetDependentCommand, SheetEditingCommand, ShowFormulaCommand, ShowSheetCommand, SingleColorRule, SingleColorRules, SnapshotEvent, SortCommand, SortDirection, SortOptions, SplillBlockedError, SplitPivotFormulaCommand, SplitTextIntoColumnsCommand, Spreadsheet, SpreadsheetClipboardData, 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, UnknownFunctionError, UpdateCarouselActiveItemCommand, UpdateCarouselCommand, UpdateCellCommand, UpdateCellData, UpdateCellPositionCommand, UpdateChartCommand, UpdateFigureCommand, UpdateFilterCommand, UpdateLocaleCommand, UpdatePivotCommand, UpdateTableCommand, Validation, ValueAndLabel, ValuesFilter, VerticalAlign, Viewport, WorkbookData, WorkbookHistory, Wrapping, Zone, ZoneDependentCommand, ZoneDimension, ZoomableChartDefinition, __info__, addFunction, addRenderingLayer, astToFormula, availableConditionalFormatOperators, availableDataValidationOperators, availableFiltersOperators, borderStyles, canExecuteInReadonly, categories, chartHelpers, compile, compileTokens, components, constants, containsBlanksRule, containsErrorsRule, convertAstNodes, coreTypes, createAutocompleteArgumentsProvider, errorTypes, filterDateCriterionOperators, filterNumberCriterionOperators, filterTextCriterionOperators, findCellInNewZone, functionCache, getCaretDownSvg, getCaretUpSvg, helpers, hooks, invalidSubtotalFormulasCommands, invalidateBordersCommands, invalidateCFEvaluationCommands, invalidateChartEvaluationCommands, invalidateDependenciesCommands, invalidateEvaluationCommands, isCoreCommand, isHeadersDependant, isMatrix, isPositionDependent, isRangeDependant, isSheetDependent, isTargetDependent, isZoneDependent, iterateAstNodes, links, load, notContainsBlanksRule, notContainsErrorsRule, parse, parseTokens, readonlyAllowedCommands, registries, schemeToColorScale, setDefaultSheetViewSize, setTranslationMethod, stores, tokenColors, tokenize };