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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -31,7 +31,7 @@ interface LocaleFormat {
31
31
  }
32
32
 
33
33
  interface CellAttributes {
34
- readonly id: UID;
34
+ readonly id: number;
35
35
  /**
36
36
  * Raw cell content
37
37
  */
@@ -705,7 +705,7 @@ declare class CarouselPlugin extends CorePlugin<CarouselState> implements Carous
705
705
  }
706
706
 
707
707
  interface CoreState$1 {
708
- cells: Record<UID, Record<UID, Cell | undefined> | undefined>;
708
+ cells: Record<UID, Record<number, Cell | undefined> | undefined>;
709
709
  nextId: number;
710
710
  }
711
711
  /**
@@ -722,7 +722,7 @@ declare class CellPlugin extends CorePlugin<CoreState$1> implements CoreState$1
722
722
  [id: string]: Cell;
723
723
  };
724
724
  };
725
- adaptRanges(applyChange: ApplyRangeChange, sheetId: UID, sheetName: AdaptSheetName): void;
725
+ adaptRanges({ applyChange }: RangeAdapterFunctions, sheetId: UID, sheetName: AdaptSheetName): void;
726
726
  allowDispatch(cmd: CoreCommand): CommandResult | CommandResult[];
727
727
  handle(cmd: CoreCommand): void;
728
728
  private clearZones;
@@ -746,12 +746,12 @@ declare class CellPlugin extends CorePlugin<CoreState$1> implements CoreState$1
746
746
  export(data: WorkbookData): void;
747
747
  importCell(sheetId: UID, content?: string, format?: Format): Cell;
748
748
  exportForExcel(data: ExcelWorkbookData): void;
749
- getCells(sheetId: UID): Record<UID, Cell>;
749
+ getCells(sheetId: UID): Cell[];
750
750
  /**
751
751
  * get a cell by ID. Used in evaluation when evaluating an async cell, we need to be able to find it back after
752
752
  * starting an async evaluation even if it has been moved or re-allocated
753
753
  */
754
- getCellById(cellId: UID): Cell | undefined;
754
+ getCellById(cellId: number): Cell | undefined;
755
755
  getFormulaString(sheetId: UID, tokens: Token[], dependencies: Range[], useBoundedReference?: boolean): string;
756
756
  getTranslatedCellFormula(sheetId: UID, offsetX: number, offsetY: number, tokens: Token[]): string;
757
757
  getFormulaMovedInSheet(originSheetId: UID, targetSheetId: UID, tokens: Token[]): string;
@@ -784,7 +784,7 @@ declare class CellPlugin extends CorePlugin<CoreState$1> implements CoreState$1
784
784
  * gets the currently used style and format of a cell based on it's coordinates
785
785
  */
786
786
  private getFormat;
787
- private getNextUid;
787
+ private getNextCellId;
788
788
  private updateCell;
789
789
  private createCell;
790
790
  private createLiteralCell;
@@ -852,7 +852,7 @@ declare abstract class AbstractChart {
852
852
  * This function should be used to update all the ranges of the chart after
853
853
  * a grid change (add/remove col/row, rename sheet, ...)
854
854
  */
855
- abstract updateRanges(applyChange: ApplyRangeChange, sheetId: UID, adaptSheetName: AdaptSheetName): AbstractChart;
855
+ abstract updateRanges(rangeAdapters: RangeAdapterFunctions): AbstractChart;
856
856
  /**
857
857
  * Duplicate the chart when a sheet is duplicated.
858
858
  * The ranges that are in the same sheet as the chart are adapted to the new sheetId.
@@ -885,7 +885,7 @@ declare class ChartPlugin extends CorePlugin<ChartState> implements ChartState {
885
885
  readonly charts: Record<UID, FigureChart | undefined>;
886
886
  private createChart;
887
887
  private validateChartDefinition;
888
- adaptRanges(applyChange: ApplyRangeChange, sheetId: UID, adaptSheetName: AdaptSheetName): void;
888
+ adaptRanges(rangeAdapters: RangeAdapterFunctions): void;
889
889
  allowDispatch(cmd: Command): CommandResult | CommandResult[];
890
890
  handle(cmd: CoreCommand): void;
891
891
  getContextCreationChart(chartId: UID): ChartCreationContext | undefined;
@@ -923,9 +923,9 @@ declare class ConditionalFormatPlugin extends CorePlugin<ConditionalFormatState>
923
923
  readonly cfRules: {
924
924
  [sheet: string]: ConditionalFormatInternal[];
925
925
  };
926
- adaptCFFormulas(applyChange: ApplyRangeChange): void;
927
- adaptCFRanges(sheetId: UID, applyChange: ApplyRangeChange): void;
928
- adaptRanges(applyChange: ApplyRangeChange, sheetId: UID): void;
926
+ adaptCFFormulas({ applyChange, adaptFormulaString }: RangeAdapterFunctions): void;
927
+ adaptCFRanges(sheetId: UID, { applyChange }: RangeAdapterFunctions): void;
928
+ adaptRanges(rangeAdapters: RangeAdapterFunctions, sheetId: UID): void;
929
929
  allowDispatch(cmd: Command): CommandResult | CommandResult[];
930
930
  handle(cmd: CoreCommand): void;
931
931
  import(data: WorkbookData): void;
@@ -1104,7 +1104,7 @@ declare class DataValidationPlugin extends CorePlugin<DataValidationState> imple
1104
1104
  readonly rules: {
1105
1105
  [sheet: string]: DataValidationRule[];
1106
1106
  };
1107
- adaptRanges(applyChange: ApplyRangeChange, sheetId: UID): void;
1107
+ adaptRanges(rangeAdapters: RangeAdapterFunctions, sheetId: UID): void;
1108
1108
  private adaptDVFormulas;
1109
1109
  private adaptDVRanges;
1110
1110
  allowDispatch(cmd: Command): CommandResult | CommandResult[];
@@ -1139,7 +1139,7 @@ declare class FigurePlugin extends CorePlugin<FigureState> implements FigureStat
1139
1139
  [sheet: string]: Record<UID, Figure | undefined> | undefined;
1140
1140
  };
1141
1141
  readonly insertionOrders: UID[];
1142
- adaptRanges(applyChange: ApplyRangeChange, sheetId: UID): void;
1142
+ adaptRanges({ applyChange }: RangeAdapterFunctions, sheetId: UID): void;
1143
1143
  allowDispatch(cmd: CoreCommand): CommandResult | CommandResult[];
1144
1144
  beforeHandle(cmd: CoreCommand): void;
1145
1145
  handle(cmd: CoreCommand): void;
@@ -1340,7 +1340,7 @@ declare class MergePlugin extends CorePlugin<MergeState> implements MergeState {
1340
1340
  readonly mergeCellMap: Record<UID, SheetMergeCellMap | undefined>;
1341
1341
  allowDispatch(cmd: CoreCommand): CommandResult | CommandResult[];
1342
1342
  handle(cmd: CoreCommand): void;
1343
- adaptRanges(applyChange: ApplyRangeChange, sheetId: UID): void;
1343
+ adaptRanges(rangeAdapters: RangeAdapterFunctions, sheetId: UID): void;
1344
1344
  getMerges(sheetId: UID): Merge[];
1345
1345
  getMerge({ sheetId, col, row }: CellPosition): Merge | undefined;
1346
1346
  getMergesInZone(sheetId: UID, zone: Zone): Merge[];
@@ -1606,7 +1606,7 @@ declare class PivotCorePlugin extends CorePlugin<CoreState> implements CoreState
1606
1606
  readonly compiledMeasureFormulas: Record<UID, Record<string, MeasureState>>;
1607
1607
  allowDispatch(cmd: CoreCommand): CommandResult | CommandResult[];
1608
1608
  handle(cmd: CoreCommand): void;
1609
- adaptRanges(applyChange: ApplyRangeChange): void;
1609
+ adaptRanges({ applyChange, adaptFormulaString }: RangeAdapterFunctions): void;
1610
1610
  getPivotDisplayName(pivotId: UID): string;
1611
1611
  getPivotName(pivotId: UID): string;
1612
1612
  /**
@@ -1645,12 +1645,12 @@ declare class PivotCorePlugin extends CorePlugin<CoreState> implements CoreState
1645
1645
  export(data: WorkbookData): void;
1646
1646
  }
1647
1647
 
1648
- declare class RangeAdapter$1 implements CommandHandler<CoreCommand> {
1648
+ declare class RangeAdapterPlugin implements CommandHandler<CoreCommand> {
1649
1649
  private getters;
1650
1650
  private providers;
1651
1651
  private isAdaptingRanges;
1652
1652
  constructor(getters: CoreGetters);
1653
- static getters: readonly ["adaptFormulaStringDependencies", "copyFormulaStringForSheet", "extendRange", "getRangeString", "getRangeFromSheetXC", "createAdaptedRanges", "getRangeData", "getRangeDataFromXc", "getRangeDataFromZone", "getRangeFromRangeData", "getRangeFromZone", "getRangesUnion", "recomputeRanges", "isRangeValid", "removeRangesSheetPrefix"];
1653
+ static getters: readonly ["copyFormulaStringForSheet", "extendRange", "getRangeString", "getRangeFromSheetXC", "createAdaptedRanges", "getRangeData", "getRangeDataFromXc", "getRangeDataFromZone", "getRangeFromRangeData", "getRangeFromZone", "getRangesUnion", "recomputeRanges", "isRangeValid", "removeRangesSheetPrefix"];
1654
1654
  allowDispatch(cmd: CoreCommand): CommandResult;
1655
1655
  beforeHandle(command: Command): void;
1656
1656
  handle(cmd: CoreCommand): void;
@@ -1707,7 +1707,6 @@ declare class RangeAdapter$1 implements CommandHandler<CoreCommand> {
1707
1707
  getRangeFromRangeData(data: RangeData): Range;
1708
1708
  isRangeValid(rangeStr: string): boolean;
1709
1709
  getRangesUnion(ranges: Range[]): Range;
1710
- adaptFormulaStringDependencies(sheetId: UID, formula: string, applyChange: ApplyRangeChange): string;
1711
1710
  /**
1712
1711
  * Copy a formula string to another sheet.
1713
1712
  *
@@ -1733,14 +1732,14 @@ interface SheetState {
1733
1732
  readonly sheets: Record<UID, Sheet | undefined>;
1734
1733
  readonly orderedSheetIds: UID[];
1735
1734
  readonly sheetIdsMapName: Record<string, UID | undefined>;
1736
- readonly cellPosition: Record<UID, CellPosition | undefined>;
1735
+ readonly cellPosition: Record<number, CellPosition | undefined>;
1737
1736
  }
1738
1737
  declare class SheetPlugin extends CorePlugin<SheetState> implements SheetState {
1739
- static getters: readonly ["getSheetName", "tryGetSheetName", "getSheet", "tryGetSheet", "getSheetIdByName", "getSheetIds", "getVisibleSheetIds", "isSheetVisible", "doesHeaderExist", "doesHeadersExist", "getCell", "getCellPosition", "getColsZone", "getRowCells", "getRowsZone", "getNumberCols", "getNumberRows", "getNumberHeaders", "getGridLinesVisibility", "getNextSheetName", "getSheetSize", "getSheetZone", "getPaneDivisions", "checkZonesExistInSheet", "getCommandZones", "getUnboundedZone", "checkElementsIncludeAllNonFrozenHeaders", "getDuplicateSheetName", "tryGetCellPosition"];
1738
+ static getters: readonly ["getSheetName", "tryGetSheetName", "getSheet", "tryGetSheet", "getSheetIdByName", "getSheetIds", "getVisibleSheetIds", "isSheetVisible", "doesHeaderExist", "doesHeadersExist", "getCell", "getCellPosition", "getColsZone", "getRowCellIds", "getRowsZone", "getNumberCols", "getNumberRows", "getNumberHeaders", "getGridLinesVisibility", "getNextSheetName", "getSheetSize", "getSheetZone", "getPaneDivisions", "checkZonesExistInSheet", "getCommandZones", "getUnboundedZone", "checkElementsIncludeAllNonFrozenHeaders", "getDuplicateSheetName", "tryGetCellPosition"];
1740
1739
  readonly sheetIdsMapName: Record<string, UID | undefined>;
1741
1740
  readonly orderedSheetIds: UID[];
1742
1741
  readonly sheets: Record<UID, Sheet | undefined>;
1743
- readonly cellPosition: Record<UID, CellPosition | undefined>;
1742
+ readonly cellPosition: Record<number, CellPosition | undefined>;
1744
1743
  allowDispatch(cmd: CoreCommand): CommandResult | CommandResult[];
1745
1744
  beforeHandle(cmd: CoreCommand): void;
1746
1745
  handle(cmd: CoreCommand): void;
@@ -1767,10 +1766,10 @@ declare class SheetPlugin extends CorePlugin<SheetState> implements SheetState {
1767
1766
  doesHeadersExist(sheetId: UID, dimension: Dimension, headerIndexes: HeaderIndex[]): boolean;
1768
1767
  getCell({ sheetId, col, row }: CellPosition): Cell | undefined;
1769
1768
  getColsZone(sheetId: UID, start: HeaderIndex, end: HeaderIndex): Zone;
1770
- getRowCells(sheetId: UID, row: HeaderIndex): UID[];
1769
+ getRowCellIds(sheetId: UID, row: HeaderIndex): number[];
1771
1770
  getRowsZone(sheetId: UID, start: HeaderIndex, end: HeaderIndex): Zone;
1772
- getCellPosition(cellId: UID): CellPosition;
1773
- tryGetCellPosition(cellId: UID): CellPosition | undefined;
1771
+ getCellPosition(cellId: number): CellPosition;
1772
+ tryGetCellPosition(cellId: number): CellPosition | undefined;
1774
1773
  getNumberCols(sheetId: UID): number;
1775
1774
  getNumberRows(sheetId: UID): number;
1776
1775
  getNumberHeaders(sheetId: UID, dimension: Dimension): HeaderIndex;
@@ -1889,7 +1888,7 @@ declare class StylePlugin extends CorePlugin<StylePluginState> implements StyleP
1889
1888
  readonly styles: Record<UID, ZoneStyle[] | undefined>;
1890
1889
  allowDispatch(cmd: CoreCommand): CommandResult | CommandResult[];
1891
1890
  handle(cmd: CoreCommand): void;
1892
- adaptRanges(applyChange: ApplyRangeChange, sheetId: UID): void;
1891
+ adaptRanges({ applyChange }: RangeAdapterFunctions, sheetId: UID): void;
1893
1892
  private handleAddColumnn;
1894
1893
  private handleAddRows;
1895
1894
  private styleIsDefault;
@@ -2015,7 +2014,7 @@ declare class TablePlugin extends CorePlugin<TableState> implements TableState {
2015
2014
  static getters: readonly ["getCoreTable", "getCoreTables", "getCoreTableMatchingTopLeft"];
2016
2015
  readonly tables: Record<UID, Record<TableId, CoreTable | undefined>>;
2017
2016
  readonly nextTableId: number;
2018
- adaptRanges(applyChange: ApplyRangeChange, sheetId: UID): void;
2017
+ adaptRanges({ applyChange }: RangeAdapterFunctions, sheetId: UID): void;
2019
2018
  allowDispatch(cmd: CoreCommand): CommandResult | CommandResult[];
2020
2019
  handle(cmd: CoreCommand): void;
2021
2020
  getCoreTables(sheetId: UID): CoreTable[];
@@ -2115,7 +2114,7 @@ type PluginGetters<Plugin extends {
2115
2114
  new (...args: unknown[]): any;
2116
2115
  getters: readonly string[];
2117
2116
  }> = Pick<InstanceType<Plugin>, GetterNames<Plugin>>;
2118
- type RangeAdapterGetters = Pick<RangeAdapter$1, GetterNames<typeof RangeAdapter$1>>;
2117
+ type RangeAdapterGetters = Pick<RangeAdapterPlugin, GetterNames<typeof RangeAdapterPlugin>>;
2119
2118
  type CoreGetters = PluginGetters<typeof SheetPlugin> & PluginGetters<typeof HeaderSizePlugin> & PluginGetters<typeof HeaderVisibilityPlugin> & PluginGetters<typeof CellPlugin> & PluginGetters<typeof StylePlugin> & PluginGetters<typeof MergePlugin> & PluginGetters<typeof BordersPlugin> & PluginGetters<typeof ChartPlugin> & PluginGetters<typeof ImagePlugin> & PluginGetters<typeof CarouselPlugin> & PluginGetters<typeof FigurePlugin> & RangeAdapterGetters & PluginGetters<typeof ConditionalFormatPlugin> & PluginGetters<typeof TablePlugin> & PluginGetters<typeof SettingsPlugin> & PluginGetters<typeof HeaderGroupingPlugin> & PluginGetters<typeof DataValidationPlugin> & PluginGetters<typeof PivotCorePlugin>;
2120
2119
 
2121
2120
  type XLSXExportFile = XLSXExportImageFile | XLSXExportXMLFile;
@@ -2636,6 +2635,7 @@ interface ExcelChartDefinition {
2636
2635
  useRightAxis?: boolean;
2637
2636
  };
2638
2637
  readonly axesDesign?: AxesDesign;
2638
+ readonly showValues?: boolean;
2639
2639
  readonly horizontal?: boolean;
2640
2640
  readonly isDoughnut?: boolean;
2641
2641
  readonly pieHolePercentage?: number;
@@ -2890,7 +2890,7 @@ declare class BasePlugin<State = any, C = any> implements CommandHandler<C>, Val
2890
2890
  interface CorePluginConfig {
2891
2891
  readonly getters: CoreGetters;
2892
2892
  readonly stateObserver: StateObserver;
2893
- readonly range: RangeAdapter$1;
2893
+ readonly range: RangeAdapterPlugin;
2894
2894
  readonly dispatch: CoreCommandDispatcher["dispatch"];
2895
2895
  readonly canDispatch: CoreCommandDispatcher["dispatch"];
2896
2896
  readonly custom: ModelConfig["custom"];
@@ -2924,7 +2924,7 @@ declare class CorePlugin<State = any> extends BasePlugin<State, CoreCommand> imp
2924
2924
  * @param sheetId an sheetId to adapt either range of that sheet specifically, or ranges pointing to that sheet
2925
2925
  * @param sheetName couple of old and new sheet names to adapt ranges pointing to that sheet
2926
2926
  */
2927
- adaptRanges(applyChange: ApplyRangeChange, sheetId: UID, sheetName: AdaptSheetName): void;
2927
+ adaptRanges(rangeAdapterFunctions: RangeAdapterFunctions, sheetId: UID, sheetName: AdaptSheetName): void;
2928
2928
  }
2929
2929
 
2930
2930
  type ZoneBorderData = {
@@ -2948,7 +2948,7 @@ declare class BordersPlugin extends CorePlugin<BordersPluginState> implements Bo
2948
2948
  allowDispatch(cmd: CoreCommand): CommandResult | CommandResult[];
2949
2949
  handle(cmd: CoreCommand): void;
2950
2950
  beforeHandle(cmd: CoreCommand): void;
2951
- adaptRanges(applyChange: ApplyRangeChange, sheetId: UID): void;
2951
+ adaptRanges({ applyChange }: RangeAdapterFunctions, sheetId: UID): void;
2952
2952
  private onRowRemove;
2953
2953
  private onColRemove;
2954
2954
  getCellBorder(position: CellPosition): Border$1;
@@ -3941,7 +3941,7 @@ declare class FormulaTrackerPlugin extends CoreViewPlugin {
3941
3941
  static getters: readonly ["getCellsWithTrackedFormula"];
3942
3942
  private trackedCells;
3943
3943
  handle(cmd: Command): void;
3944
- getCellsWithTrackedFormula(formula: string): string[];
3944
+ getCellsWithTrackedFormula(formula: string): number[];
3945
3945
  }
3946
3946
 
3947
3947
  type Canvas2DContext = CanvasRenderingContext2D | OffscreenCanvasRenderingContext2D;
@@ -5667,7 +5667,7 @@ interface UpdateCellCommand extends PositionDependentCommand {
5667
5667
  */
5668
5668
  interface UpdateCellPositionCommand extends PositionDependentCommand {
5669
5669
  type: "UPDATE_CELL_POSITION";
5670
- cellId?: UID;
5670
+ cellId?: number;
5671
5671
  }
5672
5672
  interface AddColumnsRowsCommand extends SheetDependentCommand, SheetEditingCommand {
5673
5673
  type: "ADD_COLUMNS_ROWS";
@@ -6100,7 +6100,7 @@ interface ActivateSheetCommand {
6100
6100
  }
6101
6101
  interface EvaluateCellsCommand {
6102
6102
  type: "EVALUATE_CELLS";
6103
- cellIds?: UID[];
6103
+ cellIds?: number[];
6104
6104
  }
6105
6105
  interface EvaluateChartsCommand {
6106
6106
  type: "EVALUATE_CHARTS";
@@ -6666,7 +6666,7 @@ interface HeaderDimensions {
6666
6666
  end: Pixel;
6667
6667
  }
6668
6668
  interface Row {
6669
- cells: Record<number, UID | undefined>;
6669
+ cells: Record<number, number | undefined>;
6670
6670
  }
6671
6671
  interface Position {
6672
6672
  col: HeaderIndex;
@@ -6704,13 +6704,15 @@ declare const enum DIRECTION {
6704
6704
  RIGHT = "right"
6705
6705
  }
6706
6706
  type ChangeType = "REMOVE" | "RESIZE" | "MOVE" | "CHANGE" | "NONE";
6707
- type ApplyRangeChangeResult = {
6708
- changeType: Exclude<ChangeType, "NONE">;
6709
- range: Range;
6710
- } | {
6711
- changeType: "NONE";
6707
+ type ApplyRangeChangeResult<T> = {
6708
+ changeType: ChangeType;
6709
+ range: T;
6710
+ };
6711
+ type ApplyFormulaRangeChangeResult = {
6712
+ changeType: ChangeType;
6713
+ formula: string;
6712
6714
  };
6713
- type ApplyRangeChange = (range: Range) => ApplyRangeChangeResult;
6715
+ type ApplyRangeChange = (range: Range) => ApplyRangeChangeResult<Range>;
6714
6716
  type AdaptSheetName = {
6715
6717
  old: string;
6716
6718
  current: string;
@@ -6720,10 +6722,15 @@ type RangeAdapter = {
6720
6722
  sheetName: AdaptSheetName;
6721
6723
  applyChange: ApplyRangeChange;
6722
6724
  };
6725
+ type RangeAdapterFunctions = {
6726
+ applyChange: ApplyRangeChange;
6727
+ adaptRangeString: (defaultSheetId: UID, sheetXC: string) => ApplyRangeChangeResult<string>;
6728
+ adaptFormulaString: (defaultSheetId: UID, formula: string) => string;
6729
+ };
6723
6730
  type Dimension = "COL" | "ROW";
6724
6731
  type ConsecutiveIndexes = HeaderIndex[];
6725
6732
  interface RangeProvider {
6726
- adaptRanges: (applyChange: ApplyRangeChange, sheetId: UID, sheetName: AdaptSheetName) => void;
6733
+ adaptRanges: (adapterFunctions: RangeAdapterFunctions, sheetId: UID, sheetName: AdaptSheetName) => void;
6727
6734
  }
6728
6735
  type Validation<T> = (toValidate: T) => CommandResult | CommandResult[];
6729
6736
  type Increment = 1 | -1 | 0;
@@ -6799,6 +6806,7 @@ type SortDirection = "asc" | "desc";
6799
6806
  interface ValueAndLabel<T = string> {
6800
6807
  value: T;
6801
6808
  label: string;
6809
+ separator?: boolean;
6802
6810
  }
6803
6811
 
6804
6812
  interface BarChartDefinition extends CommonChartDefinition {
@@ -8699,10 +8707,62 @@ declare class ChartHumanizeNumbers extends Component<ChartSidePanelProps<ChartWi
8699
8707
  get title(): string;
8700
8708
  }
8701
8709
 
8710
+ interface SelectProps {
8711
+ onChange: (value: string) => void;
8712
+ values: ValueAndLabel[];
8713
+ selectedValue?: string;
8714
+ class?: string;
8715
+ popoverClass?: string;
8716
+ name?: string;
8717
+ }
8718
+ declare class Select extends Component<SelectProps, SpreadsheetChildEnv> {
8719
+ static template: string;
8720
+ static props: {
8721
+ onChange: FunctionConstructor;
8722
+ values: ArrayConstructor;
8723
+ selectedValue: {
8724
+ type: StringConstructor;
8725
+ optional: boolean;
8726
+ };
8727
+ class: {
8728
+ type: StringConstructor;
8729
+ optional: boolean;
8730
+ };
8731
+ popoverClass: {
8732
+ type: StringConstructor;
8733
+ optional: boolean;
8734
+ };
8735
+ name: {
8736
+ type: StringConstructor;
8737
+ optional: boolean;
8738
+ };
8739
+ };
8740
+ static components: {
8741
+ Popover: typeof Popover;
8742
+ };
8743
+ private selectRef;
8744
+ private dropdownRef;
8745
+ private state;
8746
+ setup(): void;
8747
+ onMouseDown(): void;
8748
+ onKeyDown(ev: KeyboardEvent): void;
8749
+ onExternalClick(ev: MouseEvent): void;
8750
+ onOptionClick(value: string): void;
8751
+ toggleDropdown(): void;
8752
+ private closeDropdown;
8753
+ get popoverProps(): PopoverProps;
8754
+ get selectedLabel(): string;
8755
+ onOptionHover(value: string): void;
8756
+ get activeValue(): string | undefined;
8757
+ private navigateToNextOption;
8758
+ private navigateToPreviousOption;
8759
+ }
8760
+
8702
8761
  declare class ChartLegend extends Component<ChartSidePanelProps<ChartWithDataSetDefinition>, SpreadsheetChildEnv> {
8703
8762
  static template: string;
8704
8763
  static components: {
8705
8764
  Section: typeof Section;
8765
+ Select: typeof Select;
8706
8766
  };
8707
8767
  static props: {
8708
8768
  chartId: StringConstructor;
@@ -8710,7 +8770,8 @@ declare class ChartLegend extends Component<ChartSidePanelProps<ChartWithDataSet
8710
8770
  canUpdateChart: FunctionConstructor;
8711
8771
  updateChart: FunctionConstructor;
8712
8772
  };
8713
- updateLegendPosition(ev: any): void;
8773
+ updateLegendPosition(value: LegendPosition): void;
8774
+ get legendValues(): ValueAndLabel[];
8714
8775
  }
8715
8776
 
8716
8777
  interface Props$V extends GenericInputProps {
@@ -8772,6 +8833,7 @@ declare class SeriesDesignEditor extends Component<Props$U, SpreadsheetChildEnv>
8772
8833
  SidePanelCollapsible: typeof SidePanelCollapsible;
8773
8834
  Section: typeof Section;
8774
8835
  RoundColorPicker: typeof RoundColorPicker;
8836
+ Select: typeof Select;
8775
8837
  };
8776
8838
  static props: {
8777
8839
  slots: {
@@ -8786,12 +8848,13 @@ declare class SeriesDesignEditor extends Component<Props$U, SpreadsheetChildEnv>
8786
8848
  protected state: {
8787
8849
  index: number;
8788
8850
  };
8789
- getDataSeries(): (string | undefined)[];
8790
- updateEditedSeries(ev: Event): void;
8851
+ getDataSeries(): string[];
8852
+ updateEditedSeries(index: string): void;
8791
8853
  updateDataSeriesColor(color: string): void;
8792
8854
  getDataSeriesColor(): "" | Color;
8793
8855
  updateDataSeriesLabel(ev: Event): void;
8794
- getDataSeriesLabel(): string | undefined;
8856
+ getDataSeriesLabel(): string;
8857
+ get selectOptions(): ValueAndLabel[];
8795
8858
  }
8796
8859
 
8797
8860
  interface Props$T extends ChartSidePanelProps<ChartWithDataSetDefinition> {
@@ -8806,6 +8869,7 @@ declare class SeriesWithAxisDesignEditor extends Component<Props$T, SpreadsheetC
8806
8869
  Section: typeof Section;
8807
8870
  RoundColorPicker: typeof RoundColorPicker;
8808
8871
  NumberInput: typeof NumberInput;
8872
+ Select: typeof Select;
8809
8873
  };
8810
8874
  static props: {
8811
8875
  slots: {
@@ -8827,9 +8891,10 @@ declare class SeriesWithAxisDesignEditor extends Component<Props$T, SpreadsheetC
8827
8891
  toggleDataTrend(index: number, display: boolean): void;
8828
8892
  getTrendLineConfiguration(index: number): TrendConfiguration | undefined;
8829
8893
  getTrendType(config: TrendConfiguration): "linear" | "" | TrendType | undefined;
8830
- onChangeTrendType(index: any, ev: InputEvent): void;
8831
- getPolynomialDegrees(index: number): number[];
8832
- onChangePolynomialDegree(index: number, ev: InputEvent): void;
8894
+ onChangeTrendType(index: number, type: string): void;
8895
+ get trendOptions(): ValueAndLabel[];
8896
+ getPolynomialDegrees(index: number): ValueAndLabel[];
8897
+ onChangePolynomialDegree(index: number, value: string): void;
8833
8898
  getMaxPolynomialDegree(index: any): number;
8834
8899
  get defaultWindowSize(): number;
8835
8900
  onChangeMovingAverageWindow(index: number, value: string): void;
@@ -9545,6 +9610,7 @@ declare class GaugeChartDesignPanel extends Component<ChartSidePanelProps<GaugeC
9545
9610
  ChartErrorSection: typeof ChartErrorSection;
9546
9611
  StandaloneComposer: typeof StandaloneComposer;
9547
9612
  ChartHumanizeNumbers: typeof ChartHumanizeNumbers;
9613
+ Select: typeof Select;
9548
9614
  };
9549
9615
  static props: {
9550
9616
  chartId: StringConstructor;
@@ -9560,12 +9626,16 @@ declare class GaugeChartDesignPanel extends Component<ChartSidePanelProps<GaugeC
9560
9626
  get isLowerInflectionPointInvalid(): boolean;
9561
9627
  get isUpperInflectionPointInvalid(): boolean;
9562
9628
  updateSectionColor(target: string, color: Color): void;
9629
+ updateSectionRuleOperator(inflectionPoint: "lowerInflectionPoint" | "upperInflectionPoint", operator: "<" | "<="): void;
9630
+ updateSectionRulePointType(inflectionPoint: "lowerInflectionPoint" | "upperInflectionPoint", type: "number" | "percentage"): void;
9563
9631
  updateSectionRule(sectionRule: SectionRule): void;
9564
9632
  onConfirmGaugeRange(editedRange: "rangeMin" | "rangeMax", content: string): void;
9565
9633
  getGaugeInflectionComposerProps(sectionType: "lowerColor" | "middleColor"): StandaloneComposer["props"];
9566
9634
  private checkSectionRuleFormulasAreValid;
9567
9635
  private valueIsValidNumber;
9568
9636
  get sheetId(): UID;
9637
+ get inflectionPointOperators(): ValueAndLabel[];
9638
+ get inflectionPointTypes(): ValueAndLabel[];
9569
9639
  }
9570
9640
 
9571
9641
  declare class LineConfigPanel extends GenericChartConfigPanel {
@@ -9589,6 +9659,7 @@ declare class ScorecardChartConfigPanel extends Component<ChartSidePanelProps<Sc
9589
9659
  SelectionInput: typeof SelectionInput;
9590
9660
  ChartErrorSection: typeof ChartErrorSection;
9591
9661
  Section: typeof Section;
9662
+ Select: typeof Select;
9592
9663
  };
9593
9664
  static props: {
9594
9665
  chartId: StringConstructor;
@@ -9608,7 +9679,8 @@ declare class ScorecardChartConfigPanel extends Component<ChartSidePanelProps<Sc
9608
9679
  onBaselineRangeChanged(ranges: string[]): void;
9609
9680
  updateBaselineRange(): void;
9610
9681
  getBaselineRange(): string;
9611
- updateBaselineMode(ev: any): void;
9682
+ updateBaselineMode(baselineMode: BaselineMode): void;
9683
+ get baselineModeOptions(): ValueAndLabel[];
9612
9684
  }
9613
9685
 
9614
9686
  type ColorPickerId = undefined | "backgroundColor" | "baselineColorUp" | "baselineColorDown";
@@ -11350,6 +11422,9 @@ declare class PivotDimensionGranularity extends Component<Props$m, SpreadsheetCh
11350
11422
  availableGranularities: SetConstructor;
11351
11423
  allGranularities: ArrayConstructor;
11352
11424
  };
11425
+ static components: {
11426
+ Select: typeof Select;
11427
+ };
11353
11428
  periods: {
11354
11429
  year: string;
11355
11430
  quarter: string;
@@ -11365,6 +11440,7 @@ declare class PivotDimensionGranularity extends Component<Props$m, SpreadsheetCh
11365
11440
  minute_number: string;
11366
11441
  second_number: string;
11367
11442
  };
11443
+ get granularityOptions(): ValueAndLabel[];
11368
11444
  }
11369
11445
 
11370
11446
  interface Props$l {
@@ -11377,6 +11453,10 @@ declare class PivotDimensionOrder extends Component<Props$l, SpreadsheetChildEnv
11377
11453
  dimension: ObjectConstructor;
11378
11454
  onUpdated: FunctionConstructor;
11379
11455
  };
11456
+ static components: {
11457
+ Select: typeof Select;
11458
+ };
11459
+ get orderSelectOptions(): ValueAndLabel[];
11380
11460
  }
11381
11461
 
11382
11462
  /**
@@ -11440,12 +11520,14 @@ interface Props$j {
11440
11520
  onMeasureUpdated: (measure: PivotMeasure) => void;
11441
11521
  onRemoved: () => void;
11442
11522
  generateMeasureId: (fieldName: string, aggregator?: string) => string;
11523
+ aggregators: any;
11443
11524
  }
11444
11525
  declare class PivotMeasureEditor extends Component<Props$j> {
11445
11526
  static template: string;
11446
11527
  static components: {
11447
11528
  PivotDimension: typeof PivotDimension;
11448
11529
  StandaloneComposer: typeof StandaloneComposer;
11530
+ Select: typeof Select;
11449
11531
  };
11450
11532
  static props: {
11451
11533
  definition: ObjectConstructor;
@@ -11464,6 +11546,7 @@ declare class PivotMeasureEditor extends Component<Props$j> {
11464
11546
  openShowValuesAs(): void;
11465
11547
  getColoredSymbolToken(token: Token): Color | undefined;
11466
11548
  get isCalculatedMeasureInvalid(): boolean;
11549
+ get aggregatorOptions(): ValueAndLabel[];
11467
11550
  }
11468
11551
 
11469
11552
  interface Props$i {
@@ -12010,6 +12093,7 @@ declare class GeoChartDesignPanel extends ChartWithAxisDesignPanel<ChartSidePane
12010
12093
  static components: {
12011
12094
  RoundColorPicker: typeof RoundColorPicker;
12012
12095
  ColorScalePicker: typeof ColorScalePicker;
12096
+ Select: typeof Select;
12013
12097
  GeneralDesignEditor: typeof GeneralDesignEditor;
12014
12098
  SidePanelCollapsible: typeof SidePanelCollapsible;
12015
12099
  Section: typeof Section;
@@ -12021,8 +12105,9 @@ declare class GeoChartDesignPanel extends ChartWithAxisDesignPanel<ChartSidePane
12021
12105
  };
12022
12106
  updateColorScale(colorScale: ChartColorScale | undefined): void;
12023
12107
  updateMissingValueColor(color: Color): void;
12024
- updateLegendPosition(ev: Event): void;
12108
+ updateLegendPosition(value: LegendPosition): void;
12025
12109
  get selectedMissingValueColor(): Color | "#ffffff";
12110
+ get legendValues(): ValueAndLabel[];
12026
12111
  }
12027
12112
 
12028
12113
  interface Props$a {
@@ -12034,15 +12119,17 @@ declare class GeoChartRegionSelectSection extends Component<Props$a, Spreadsheet
12034
12119
  static template: string;
12035
12120
  static components: {
12036
12121
  Section: typeof Section;
12122
+ Select: typeof Select;
12037
12123
  };
12038
12124
  static props: {
12039
12125
  chartId: StringConstructor;
12040
12126
  definition: ObjectConstructor;
12041
12127
  updateChart: FunctionConstructor;
12042
12128
  };
12043
- updateSelectedRegion(ev: Event): void;
12129
+ updateSelectedRegion(value: string): void;
12044
12130
  get availableRegions(): GeoChartRegion[];
12045
12131
  get selectedRegion(): string;
12132
+ get regionOptions(): ValueAndLabel[];
12046
12133
  }
12047
12134
 
12048
12135
  declare class LineChartDesignPanel extends GenericZoomableChartDesignPanel<ChartSidePanelProps<LineChartDefinition>> {
@@ -12305,7 +12392,7 @@ declare class ScorecardChart extends AbstractChart {
12305
12392
  getContextCreation(): ChartCreationContext;
12306
12393
  private getDefinitionWithSpecificRanges;
12307
12394
  getDefinitionForExcel(): undefined;
12308
- updateRanges(applyChange: ApplyRangeChange): ScorecardChart;
12395
+ updateRanges({ applyChange }: RangeAdapterFunctions): ScorecardChart;
12309
12396
  }
12310
12397
 
12311
12398
  declare class BarChart extends AbstractChart {
@@ -12332,7 +12419,7 @@ declare class BarChart extends AbstractChart {
12332
12419
  getDefinition(): BarChartDefinition;
12333
12420
  private getDefinitionWithSpecificDataSets;
12334
12421
  getDefinitionForExcel(): ExcelChartDefinition | undefined;
12335
- updateRanges(applyChange: ApplyRangeChange): BarChart;
12422
+ updateRanges({ applyChange }: RangeAdapterFunctions): BarChart;
12336
12423
  }
12337
12424
 
12338
12425
  declare class GaugeChart extends AbstractChart {
@@ -12350,7 +12437,7 @@ declare class GaugeChart extends AbstractChart {
12350
12437
  private getDefinitionWithSpecificRanges;
12351
12438
  getDefinitionForExcel(): undefined;
12352
12439
  getContextCreation(): ChartCreationContext;
12353
- updateRanges(applyChange: ApplyRangeChange, sheetId: UID, adaptSheetName: AdaptSheetName): GaugeChart;
12440
+ updateRanges({ applyChange, adaptFormulaString }: RangeAdapterFunctions): GaugeChart;
12354
12441
  }
12355
12442
 
12356
12443
  declare class LineChart extends AbstractChart {
@@ -12377,7 +12464,7 @@ declare class LineChart extends AbstractChart {
12377
12464
  getDefinition(): LineChartDefinition;
12378
12465
  private getDefinitionWithSpecificDataSets;
12379
12466
  getContextCreation(): ChartCreationContext;
12380
- updateRanges(applyChange: ApplyRangeChange): LineChart;
12467
+ updateRanges({ applyChange }: RangeAdapterFunctions): LineChart;
12381
12468
  getDefinitionForExcel(): ExcelChartDefinition | undefined;
12382
12469
  duplicateInDuplicatedSheet(newSheetId: UID): LineChart;
12383
12470
  copyInSheetId(sheetId: UID): LineChart;
@@ -12404,7 +12491,7 @@ declare class PieChart extends AbstractChart {
12404
12491
  duplicateInDuplicatedSheet(newSheetId: UID): PieChart;
12405
12492
  copyInSheetId(sheetId: UID): PieChart;
12406
12493
  getDefinitionForExcel(): ExcelChartDefinition | undefined;
12407
- updateRanges(applyChange: ApplyRangeChange): PieChart;
12494
+ updateRanges({ applyChange }: RangeAdapterFunctions): PieChart;
12408
12495
  }
12409
12496
 
12410
12497
  declare class WaterfallChart extends AbstractChart {
@@ -12436,7 +12523,7 @@ declare class WaterfallChart extends AbstractChart {
12436
12523
  getDefinition(): WaterfallChartDefinition;
12437
12524
  private getDefinitionWithSpecificDataSets;
12438
12525
  getDefinitionForExcel(): ExcelChartDefinition | undefined;
12439
- updateRanges(applyChange: ApplyRangeChange): WaterfallChart;
12526
+ updateRanges({ applyChange }: RangeAdapterFunctions): WaterfallChart;
12440
12527
  }
12441
12528
 
12442
12529
  declare function getPivotHighlights(getters: Getters, pivotId: UID): Highlight$1[];
@@ -12927,7 +13014,6 @@ declare class SidePanel extends Component<SidePanelProps, SpreadsheetChildEnv> {
12927
13014
  };
12928
13015
  spreadsheetRect: Rect;
12929
13016
  getTitle(): string;
12930
- get pinInfoMessage(): string;
12931
13017
  }
12932
13018
 
12933
13019
  declare class SidePanels extends Component<{}, SpreadsheetChildEnv> {
@@ -13732,4 +13818,4 @@ declare const chartHelpers: {
13732
13818
  WaterfallChart: typeof WaterfallChart;
13733
13819
  };
13734
13820
 
13735
- 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, CopyPasteCellsOnZoneCommand, 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, NumberTooLargeError, 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, TableMetaData, TableStyle, TableStyleData, TableStyleTemplateName, TargetDependentCommand, TechnicalName, TextCell, TextContainsCriterion, TextIsCriterion, TextIsEmailCriterion, TextIsLinkCriterion, TextNotContainsCriterion, TextRule, ThresholdType, TimePeriodRule, TitleDesign, ToggleCheckboxCommand, Token, Tooltip, Top10Criterion, 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 };
13821
+ 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, ApplyFormulaRangeChangeResult, 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, CopyPasteCellsOnZoneCommand, 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, NumberTooLargeError, 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, RangeAdapterFunctions, 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, TableMetaData, TableStyle, TableStyleData, TableStyleTemplateName, TargetDependentCommand, TechnicalName, TextCell, TextContainsCriterion, TextIsCriterion, TextIsEmailCriterion, TextIsLinkCriterion, TextNotContainsCriterion, TextRule, ThresholdType, TimePeriodRule, TitleDesign, ToggleCheckboxCommand, Token, Tooltip, Top10Criterion, 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 };