@odoo/o-spreadsheet 18.4.8 → 18.4.10

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.
@@ -1677,6 +1677,59 @@ declare function createCurrencyFormat(currency: Partial<Currency>): Format;
1677
1677
  */
1678
1678
  declare function isNumber(value: string | undefined, locale: Locale): boolean;
1679
1679
 
1680
+ /**
1681
+ * Registry
1682
+ *
1683
+ * The Registry class is basically just a mapping from a string key to an object.
1684
+ * It is really not much more than an object. It is however useful for the
1685
+ * following reasons:
1686
+ *
1687
+ * 1. it let us react and execute code when someone add something to the registry
1688
+ * (for example, the FunctionRegistry subclass this for this purpose)
1689
+ * 2. it throws an error when the get operation fails
1690
+ * 3. it provides a chained API to add items to the registry.
1691
+ */
1692
+ declare class Registry<T> {
1693
+ content: {
1694
+ [key: string]: T;
1695
+ };
1696
+ /**
1697
+ * Add an item to the registry, you can only add if there is no item
1698
+ * already present in the registery with the given key
1699
+ *
1700
+ * Note that this also returns the registry, so another add method call can
1701
+ * be chained
1702
+ */
1703
+ add(key: string, value: T): this;
1704
+ /**
1705
+ * Replace (or add) an item to the registry
1706
+ *
1707
+ * Note that this also returns the registry, so another add method call can
1708
+ * be chained
1709
+ */
1710
+ replace(key: string, value: T): this;
1711
+ /**
1712
+ * Get an item from the registry
1713
+ */
1714
+ get(key: string): T;
1715
+ /**
1716
+ * Check if the key is already in the registry
1717
+ */
1718
+ contains(key: string): boolean;
1719
+ /**
1720
+ * Get a list of all elements in the registry
1721
+ */
1722
+ getAll(): T[];
1723
+ /**
1724
+ * Get a list of all keys in the registry
1725
+ */
1726
+ getKeys(): string[];
1727
+ /**
1728
+ * Remove an item from the registry
1729
+ */
1730
+ remove(key: string): void;
1731
+ }
1732
+
1680
1733
  declare function splitReference(ref: string): {
1681
1734
  sheetName?: string;
1682
1735
  xc: string;
@@ -2617,6 +2670,7 @@ interface ClipboardOptions {
2617
2670
  selectTarget?: boolean;
2618
2671
  }
2619
2672
  type ClipboardPasteOptions = "onlyFormat" | "asValue";
2673
+ type ClipboardCopyOptions = "copyPaste" | "shiftCells";
2620
2674
  type ClipboardOperation = "CUT" | "COPY";
2621
2675
  type ClipboardCellData = {
2622
2676
  sheetId: UID;
@@ -3787,15 +3841,19 @@ type ApplyRangeChangeResult = {
3787
3841
  changeType: "NONE";
3788
3842
  };
3789
3843
  type ApplyRangeChange = (range: Range) => ApplyRangeChangeResult;
3844
+ type AdaptSheetName = {
3845
+ old: string;
3846
+ current: string;
3847
+ };
3790
3848
  type RangeAdapter$1 = {
3791
3849
  sheetId: UID;
3792
- sheetName: string;
3850
+ sheetName: AdaptSheetName;
3793
3851
  applyChange: ApplyRangeChange;
3794
3852
  };
3795
3853
  type Dimension = "COL" | "ROW";
3796
3854
  type ConsecutiveIndexes = HeaderIndex[];
3797
3855
  interface RangeProvider {
3798
- adaptRanges: (applyChange: ApplyRangeChange, sheetId?: UID, sheetName?: string) => void;
3856
+ adaptRanges: (applyChange: ApplyRangeChange, sheetId: UID, sheetName: AdaptSheetName) => void;
3799
3857
  }
3800
3858
  type Validation<T> = (toValidate: T) => CommandResult | CommandResult[];
3801
3859
  type Increment = 1 | -1 | 0;
@@ -4312,9 +4370,9 @@ declare class RangeAdapter implements CommandHandler<CoreCommand> {
4312
4370
  private providers;
4313
4371
  constructor(getters: CoreGetters);
4314
4372
  static getters: readonly ["adaptFormulaStringDependencies", "copyFormulaStringForSheet", "extendRange", "getRangeString", "getRangeFromSheetXC", "createAdaptedRanges", "getRangeData", "getRangeDataFromXc", "getRangeDataFromZone", "getRangeFromRangeData", "getRangeFromZone", "getRangesUnion", "recomputeRanges", "isRangeValid", "removeRangesSheetPrefix"];
4315
- allowDispatch(cmd: Command): CommandResult;
4373
+ allowDispatch(cmd: CoreCommand): CommandResult;
4316
4374
  beforeHandle(command: Command): void;
4317
- handle(cmd: Command): void;
4375
+ handle(cmd: CoreCommand): void;
4318
4376
  finalize(): void;
4319
4377
  /**
4320
4378
  * Return a modified adapting function that verifies that after adapting a range, the range is still valid.
@@ -4413,9 +4471,10 @@ declare class CorePlugin<State = any> extends BasePlugin<State, CoreCommand> imp
4413
4471
  * the type of change that occurred.
4414
4472
  *
4415
4473
  * @param applyChange a function that, when called, will adapt the range according to the change on the grid
4416
- * @param sheetId an optional sheetId to adapt either range of that sheet specifically, or ranges pointing to that sheet
4474
+ * @param sheetId an sheetId to adapt either range of that sheet specifically, or ranges pointing to that sheet
4475
+ * @param sheetName couple of old and new sheet names to adapt ranges pointing to that sheet
4417
4476
  */
4418
- adaptRanges(applyChange: ApplyRangeChange, sheetId?: UID, sheetName?: string): void;
4477
+ adaptRanges(applyChange: ApplyRangeChange, sheetId: UID, sheetName: AdaptSheetName): void;
4419
4478
  /**
4420
4479
  * Implement this method to clean unused external resources, such as images
4421
4480
  * stored on a server which have been deleted.
@@ -4566,7 +4625,7 @@ declare class CellPlugin extends CorePlugin<CoreState$1> implements CoreState$1
4566
4625
  [id: string]: Cell;
4567
4626
  };
4568
4627
  };
4569
- adaptRanges(applyChange: ApplyRangeChange, sheetId?: UID, sheetName?: string): void;
4628
+ adaptRanges(applyChange: ApplyRangeChange, sheetId: UID, sheetName: AdaptSheetName): void;
4570
4629
  allowDispatch(cmd: CoreCommand): CommandResult | CommandResult[];
4571
4630
  handle(cmd: CoreCommand): void;
4572
4631
  private clearZones;
@@ -4683,7 +4742,7 @@ declare abstract class AbstractChart {
4683
4742
  * This function should be used to update all the ranges of the chart after
4684
4743
  * a grid change (add/remove col/row, rename sheet, ...)
4685
4744
  */
4686
- abstract updateRanges(applyChange: ApplyRangeChange): AbstractChart;
4745
+ abstract updateRanges(applyChange: ApplyRangeChange, sheetId: UID, adaptSheetName: AdaptSheetName): AbstractChart;
4687
4746
  /**
4688
4747
  * Duplicate the chart when a sheet is duplicated.
4689
4748
  * The ranges that are in the same sheet as the chart are adapted to the new sheetId.
@@ -4713,7 +4772,7 @@ declare class ChartPlugin extends CorePlugin<ChartState> implements ChartState {
4713
4772
  readonly charts: Record<UID, AbstractChart | undefined>;
4714
4773
  private createChart;
4715
4774
  private validateChartDefinition;
4716
- adaptRanges(applyChange: ApplyRangeChange): void;
4775
+ adaptRanges(applyChange: ApplyRangeChange, sheetId: UID, adaptSheetName: AdaptSheetName): void;
4717
4776
  allowDispatch(cmd: Command): CommandResult | CommandResult[];
4718
4777
  handle(cmd: CoreCommand): void;
4719
4778
  getContextCreationChart(figureId: UID): ChartCreationContext | undefined;
@@ -4750,7 +4809,7 @@ declare class ConditionalFormatPlugin extends CorePlugin<ConditionalFormatState>
4750
4809
  };
4751
4810
  adaptCFFormulas(applyChange: ApplyRangeChange): void;
4752
4811
  adaptCFRanges(sheetId: UID, applyChange: ApplyRangeChange): void;
4753
- adaptRanges(applyChange: ApplyRangeChange, sheetId?: UID, sheetName?: string): void;
4812
+ adaptRanges(applyChange: ApplyRangeChange, sheetId: UID): void;
4754
4813
  allowDispatch(cmd: Command): CommandResult | CommandResult[];
4755
4814
  handle(cmd: CoreCommand): void;
4756
4815
  import(data: WorkbookData): void;
@@ -4801,7 +4860,7 @@ declare class DataValidationPlugin extends CorePlugin<DataValidationState> imple
4801
4860
  readonly rules: {
4802
4861
  [sheet: string]: DataValidationRule[];
4803
4862
  };
4804
- adaptRanges(applyChange: ApplyRangeChange, sheetId?: UID, sheetName?: string): void;
4863
+ adaptRanges(applyChange: ApplyRangeChange, sheetId: UID): void;
4805
4864
  private adaptDVFormulas;
4806
4865
  private adaptDVRanges;
4807
4866
  allowDispatch(cmd: Command): CommandResult | CommandResult[];
@@ -4836,7 +4895,7 @@ declare class FigurePlugin extends CorePlugin<FigureState> implements FigureStat
4836
4895
  [sheet: string]: Record<UID, Figure | undefined> | undefined;
4837
4896
  };
4838
4897
  readonly insertionOrders: UID[];
4839
- adaptRanges(applyChange: ApplyRangeChange, sheetId?: UID): void;
4898
+ adaptRanges(applyChange: ApplyRangeChange, sheetId: UID): void;
4840
4899
  allowDispatch(cmd: CoreCommand): CommandResult | CommandResult[];
4841
4900
  beforeHandle(cmd: CoreCommand): void;
4842
4901
  handle(cmd: CoreCommand): void;
@@ -5016,7 +5075,7 @@ declare class MergePlugin extends CorePlugin<MergeState> implements MergeState {
5016
5075
  readonly mergeCellMap: Record<UID, SheetMergeCellMap | undefined>;
5017
5076
  allowDispatch(cmd: CoreCommand): CommandResult | CommandResult[];
5018
5077
  handle(cmd: CoreCommand): void;
5019
- adaptRanges(applyChange: ApplyRangeChange, sheetId?: UID, sheetName?: string): void;
5078
+ adaptRanges(applyChange: ApplyRangeChange, sheetId: UID): void;
5020
5079
  getMerges(sheetId: UID): Merge[];
5021
5080
  getMerge({ sheetId, col, row }: CellPosition): Merge | undefined;
5022
5081
  getMergesInZone(sheetId: UID, zone: Zone): Merge[];
@@ -5106,7 +5165,7 @@ declare class PivotCorePlugin extends CorePlugin<CoreState> implements CoreState
5106
5165
  readonly compiledMeasureFormulas: Record<UID, Record<string, RangeCompiledFormula>>;
5107
5166
  allowDispatch(cmd: CoreCommand): CommandResult | CommandResult[];
5108
5167
  handle(cmd: CoreCommand): void;
5109
- adaptRanges(applyChange: ApplyRangeChange, sheetId?: UID, sheetName?: string): void;
5168
+ adaptRanges(applyChange: ApplyRangeChange): void;
5110
5169
  getPivotDisplayName(pivotId: UID): string;
5111
5170
  getPivotName(pivotId: UID): string;
5112
5171
  /**
@@ -5327,7 +5386,7 @@ declare class TablePlugin extends CorePlugin<TableState> implements TableState {
5327
5386
  static getters: readonly ["getCoreTable", "getCoreTables", "getCoreTableMatchingTopLeft"];
5328
5387
  readonly tables: Record<UID, Record<TableId, CoreTable | undefined>>;
5329
5388
  readonly nextTableId: number;
5330
- adaptRanges(applyChange: ApplyRangeChange, sheetId?: UID, sheetName?: string): void;
5389
+ adaptRanges(applyChange: ApplyRangeChange, sheetId: UID): void;
5331
5390
  allowDispatch(cmd: CoreCommand): CommandResult | CommandResult[];
5332
5391
  handle(cmd: CoreCommand): void;
5333
5392
  getCoreTables(sheetId: UID): CoreTable[];
@@ -5579,59 +5638,6 @@ declare class EvaluationDataValidationPlugin extends CoreViewPlugin {
5579
5638
  private getEvaluatedCriterionValues;
5580
5639
  }
5581
5640
 
5582
- /**
5583
- * Registry
5584
- *
5585
- * The Registry class is basically just a mapping from a string key to an object.
5586
- * It is really not much more than an object. It is however useful for the
5587
- * following reasons:
5588
- *
5589
- * 1. it let us react and execute code when someone add something to the registry
5590
- * (for example, the FunctionRegistry subclass this for this purpose)
5591
- * 2. it throws an error when the get operation fails
5592
- * 3. it provides a chained API to add items to the registry.
5593
- */
5594
- declare class Registry<T> {
5595
- content: {
5596
- [key: string]: T;
5597
- };
5598
- /**
5599
- * Add an item to the registry, you can only add if there is no item
5600
- * already present in the registery with the given key
5601
- *
5602
- * Note that this also returns the registry, so another add method call can
5603
- * be chained
5604
- */
5605
- add(key: string, value: T): this;
5606
- /**
5607
- * Replace (or add) an item to the registry
5608
- *
5609
- * Note that this also returns the registry, so another add method call can
5610
- * be chained
5611
- */
5612
- replace(key: string, value: T): this;
5613
- /**
5614
- * Get an item from the registry
5615
- */
5616
- get(key: string): T;
5617
- /**
5618
- * Check if the key is already in the registry
5619
- */
5620
- contains(key: string): boolean;
5621
- /**
5622
- * Get a list of all elements in the registry
5623
- */
5624
- getAll(): T[];
5625
- /**
5626
- * Get a list of all keys in the registry
5627
- */
5628
- getKeys(): string[];
5629
- /**
5630
- * Remove an item from the registry
5631
- */
5632
- remove(key: string): void;
5633
- }
5634
-
5635
5641
  interface GridIcon {
5636
5642
  type: string;
5637
5643
  position: CellPosition;
@@ -6768,7 +6774,7 @@ declare class ClipboardHandler<T> {
6768
6774
  protected getters: Getters;
6769
6775
  protected dispatch: CommandDispatcher["dispatch"];
6770
6776
  constructor(getters: Getters, dispatch: CommandDispatcher["dispatch"]);
6771
- copy(data: ClipboardData, isCutOperation: boolean): T | undefined;
6777
+ copy(data: ClipboardData, isCutOperation: boolean, mode?: ClipboardCopyOptions): T | undefined;
6772
6778
  paste(target: ClipboardPasteTarget, clippedContent: T, options: ClipboardOptions): void;
6773
6779
  isPasteAllowed(sheetId: UID, target: Zone[], content: T, option: ClipboardOptions): CommandResult;
6774
6780
  isCutAllowed(data: ClipboardData): CommandResult;
@@ -6777,7 +6783,7 @@ declare class ClipboardHandler<T> {
6777
6783
  }
6778
6784
 
6779
6785
  declare class AbstractCellClipboardHandler<T, T1> extends ClipboardHandler<T> {
6780
- copy(data: ClipboardCellData): T | undefined;
6786
+ copy(data: ClipboardCellData, isCutOperation: boolean, mode?: ClipboardCopyOptions): T | undefined;
6781
6787
  pasteFromCopy(sheetId: UID, target: Zone[], content: T1[][], options?: ClipboardOptions): void;
6782
6788
  protected pasteZone(sheetId: UID, col: HeaderIndex, row: HeaderIndex, data: T1[][], clipboardOptions?: ClipboardOptions): void;
6783
6789
  }
@@ -11535,7 +11541,7 @@ declare class GaugeChart extends AbstractChart {
11535
11541
  private getDefinitionWithSpecificRanges;
11536
11542
  getDefinitionForExcel(): undefined;
11537
11543
  getContextCreation(): ChartCreationContext;
11538
- updateRanges(applyChange: ApplyRangeChange): GaugeChart;
11544
+ updateRanges(applyChange: ApplyRangeChange, sheetId: UID, adaptSheetName: AdaptSheetName): GaugeChart;
11539
11545
  }
11540
11546
 
11541
11547
  declare class LineChart extends AbstractChart {
@@ -13208,4 +13214,4 @@ declare const chartHelpers: {
13208
13214
  WaterfallChart: typeof WaterfallChart;
13209
13215
  };
13210
13216
 
13211
- export { AST, ASTFuncall, AboveAverageRule, AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, ActivateNextSheetCommand, ActivatePreviousSheetCommand, ActivateSheetCommand, AddColumnsRowsCommand, AddConditionalFormatCommand, AddDataValidationCommand, AddFunctionDescription, AddMergeCommand, AddPivotCommand, Aggregator, Alias, Align, AlphanumericIncrementModifier, AnchorOffset, AnchorZone, ApplyRangeChange, ApplyRangeChangeResult, Arg, ArgDefinition, ArgType, AutoFillCellCommand, AutofillAutoCommand, AutofillCellData, AutofillCommand, AutofillData, AutofillModifier, AutofillModifierImplementation, AutofillResult, AutofillSelectCommand, AutofillTableCommand, AutoresizeColumnsCommand, AutoresizeRowsCommand, AxesDesign, AxisDesign, AxisType, BeginsWithRule, BooleanCell, Border$1 as Border, BorderData, BorderDescr, BorderDescrWithOpacity, BorderPosition, BorderStyle, Box, BoxTextContent, CHART_TYPES, CSSProperties, CancelledReason, Cell, CellErrorType, CellIsRule, CellPosition, CellValue, CellValueType, ChangeType, ChartAxisFormats, ChartCreationContext, ChartDatasetOrientation, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartRuntimeGenerationArgs, ChartStyle, ChartType, ChartWithAxisDefinition, ChartWithDataSetDefinition, CleanClipBoardHighlightCommand, ClearCellCommand, ClearCellsCommand, ClearFormattingCommand, Client, ClientDisconnectedError, ClientId, ClientJoinedMessage, ClientLeftMessage, ClientMovedMessage, ClientPosition, ClientWithColor, ClientWithPosition, ClipboardCell, ClipboardCellData, ClipboardData, ClipboardFigureData, ClipboardMIMEType, ClipboardOperation, ClipboardOptions, ClipboardPasteOptions, ClipboardPasteTarget, Cloneable, CollaborationMessage, CollaborativeEvent, CollaborativeEventReceived, CollaborativeEventTypes, Color, ColorScaleMidPointThreshold, ColorScaleRule, ColorScaleThreshold, ColorSheetCommand, Command, CommandDispatcher, CommandHandler, CommandResult, CommandTypes, CommonPivotCoreDefinition, CompiledFormula, ComposerFocusType, ComputeFunction, ComputedTableStyle, ConditionalFormat, ConditionalFormatInternal, ConditionalFormatRule, ConditionalFormatRuleInternal, ConditionalFormattingOperatorValues, ConsecutiveIndexes, ContainsTextRule, CopyCommand, CopyModifier, CopyPasteCellsAboveCommand, CopyPasteCellsOnLeftCommand, CoreCommand, CoreCommandDispatcher, CoreCommandTypes, CoreGetters, CorePlugin, CoreTable, CoreTableType, CoreViewCommand, CoreViewCommandTypes, CoreViewPlugin, CreateChartCommand, CreateFigureCommand, CreateImageOverCommand, CreateRevisionOptions, CreateSheetCommand, CreateTableCommand, CreateTableStyleCommand, CriterionFilter, Currency, CustomFormulaCriterion, CustomizedDataSet, CutCommand, DEFAULT_LOCALE, DEFAULT_LOCALES, DIRECTION, DOMCoordinates, DOMDimension, DataBarFill, DataBarRule, DataBarRuleInternal, DataFilterValue, DataSet, DataValidationCriterion, DataValidationCriterionType, DataValidationDateCriterion, DataValidationRule, DataValidationRuleData, DatasetDesign, DatasetValues, DateCriterionValue, DateIncrementModifier, DateIsAfterCriterion, DateIsBeforeCriterion, DateIsBetweenCriterion, DateIsCriterion, DateIsNotBetweenCriterion, DateIsOnOrAfterCriterion, DateIsOnOrBeforeCriterion, DateIsValidCriterion, DebouncedFunction, DeleteCellCommand, DeleteContentCommand, DeleteFigureCommand, DeleteSheetCommand, DeleteUnfilteredContentCommand, Dependencies, Dimension, DimensionTree, DimensionTreeNode, Direction$1 as Direction, DispatchResult, DuplicatePivotCommand, DuplicatePivotInNewSheetCommand, DuplicateSheetCommand, DynamicTable, EdgeScrollInfo, EditTextOptions, EditionMode, EmptyCell, EndsWithRule, EnrichedToken, EnsureRange, ErrorCell, EvalContext, EvaluateCellsCommand, EvaluateChartsCommand, EvaluatedCell, EvaluatedCriterion, EvaluatedDateCriterion, EvaluationError, ExcelChartDataset, ExcelChartDefinition, ExcelChartTrendConfiguration, ExcelChartType, ExcelFigureSize, ExcelFilterData, ExcelHeaderData, ExcelSheetData, ExcelTableData, ExcelTrendlineType, ExcelWorkbookData, ExpressionRule, Figure, FigureData, FigureInfo, FigureSize, FigureUI, Filter, FilterCriterionType, FilterId, FoldAllHeaderGroupsCommand, FoldHeaderGroupCommand, FoldHeaderGroupsInZoneCommand, Format, FormattedValue, FormulaCell, FormulaModifier, FormulaToExecute, FreezeColumnsCommand, FreezeRowsCommand, FunctionDescription, FunctionRegistry, FunctionResultNumber, FunctionResultObject, GeneratorCell, GenericCriterion, GenericCriterionType, GenericDateCriterion, GenericDefinition, GetSymbolValue, Getters, Granularity, GridClickModifiers, GridRenderingContext, GroupHeadersCommand, HSLA, HeaderData, HeaderDimensions, HeaderGroup, HeaderIndex, HeadersDependentCommand, HideColumnsRowsCommand, HideSheetCommand, Highlight$1 as Highlight, HistoryChange, IconSet, IconSetRule, IconThreshold, Image, Immutable, Increment, IncrementModifier, InformationNotification, InitPivotParams, InsertCellCommand, InsertNewPivotCommand, InsertPivotCommand, InsertPivotWithTableCommand, IsBetweenCriterion, IsCheckboxCriterion, IsEqualCriterion, IsGreaterOrEqualToCriterion, IsGreaterThanCriterion, IsLessOrEqualToCriterion, IsLessThanCriterion, IsNotBetweenCriterion, IsNotEqualCriterion, IsValueInListCriterion, IsValueInRangeCriterion, LabelValues, LayerName, Lazy, Link, LiteralCell, LocalCommand, LocalTransportService, Locale, LocaleCode, LocaleFormat, LookupCaches, Matrix, Maybe, MenuMouseEvent, Merge, MinimalClipboardData, Model, MoveColumnsRowsCommand, MoveConditionalFormatCommand, MoveRangeCommand, MoveSheetCommand, MoveViewportDownCommand, MoveViewportToCellCommand, MoveViewportUpCommand, NewLocalStateUpdateEvent, NotContainsTextRule, NotificationType, NumberCell, OSClipboardContent, Offset, OperationSequenceNode, OrderedLayers, PaintFormat, PaneDivision, ParsedOSClipboardContent, ParsedOsClipboardContentWithImageData, PasteCommand, PasteFromOSClipboardCommand, Pivot, PivotColRowDomain, PivotCollapsedDomains, PivotCoreDefinition, PivotCoreDimension, PivotCoreMeasure, PivotDimension$1 as PivotDimension, PivotDomain, PivotEmptyCell, PivotField, PivotFields, PivotHeaderCell, PivotMeasure, PivotMeasureDisplay, PivotMeasureDisplayType, PivotMeasureHeaderCell, PivotNode, PivotRuntimeDefinition, PivotSortedColumn, PivotStartPresenceTracking, PivotStopPresenceTracking, PivotTableCell, PivotTableColumn, PivotTableData, PivotTableRow, PivotTimeAdapter, PivotTimeAdapterNotNull, PivotValueCell, PivotVisibilityOptions, Pixel, PixelPosition, Position$1 as Position, PositionDependentCommand, PropsOf, RGBA, Range, RangeAdapter$1 as RangeAdapter, RangeCompiledFormula, RangeData, RangePart, RangeProvider, RangeStringOptions, RangesDependentCommand, Rect, RedoCommand, Ref, ReferenceDenormalizer, RefreshPivotCommand, Registry, RemoteRevisionMessage, RemoteRevisionReceivedEvent, RemoveColumnsRowsCommand, RemoveConditionalFormatCommand, RemoveDataValidationCommand, RemoveDuplicatesCommand, RemoveMergeCommand, RemovePivotCommand, RemoveTableCommand, RemoveTableStyleCommand, RenamePivotCommand, RenameSheetCommand, RenderingBorder, RenderingBox, RenderingGridIcon, RepeatPasteCommand, ReplaceSearchCommand, RequestRedoCommand, RequestUndoCommand, ResizeColumnsRowsCommand, ResizeDirection, ResizeTableCommand, ResizeViewportCommand, Revision, RevisionAcknowledgedEvent, RevisionData, RevisionRedone, RevisionRedoneMessage, RevisionUndone, RevisionUndoneMessage, Row, SPREADSHEET_DIMENSIONS, ScrollDirection$1 as ScrollDirection, SelectFigureCommand, Selection$1 as Selection, SelectionStep, SetBorderCommand, SetBorderTargetCommand, SetContextualFormatCommand, SetDecimalCommand, SetDecimalStep, SetFormattingCommand, SetGridLinesVisibilityCommand, SetViewportOffsetCommand, SetZoneBordersCommand, Sheet, SheetDOMScrollInfo, SheetData, SheetDependentCommand, SheetEditingCommand, ShowFormulaCommand, ShowSheetCommand, SingleColorRule, SingleColorRules, SnapshotEvent, SortCommand, SortDirection, SortOptions, SplitPivotFormulaCommand, SplitTextIntoColumnsCommand, Spreadsheet, SpreadsheetChildEnv, SpreadsheetPivotCoreDefinition, SpreadsheetPivotTable, StartChangeHighlightCommand, StartCommand, StaticTable, StoreConstructor, StoreParams, Style, SumSelectionCommand, Table, TableBorder, TableConfig, TableData$1 as TableData, TableElementStyle, TableId, TableStyle, TableStyleData, TableStyleTemplateName, TargetDependentCommand, TechnicalName, TextCell, TextContainsCriterion, TextIsCriterion, TextIsEmailCriterion, TextIsLinkCriterion, TextNotContainsCriterion, TextRule, ThresholdType, TimePeriodRule, TitleDesign, ToggleCheckboxCommand, Token, Tooltip, Top10Rule, Transformation, TransformationFactory, TransportService, TrendConfiguration, TrendType, TrimWhitespaceCommand, UID, UIPlugin, UnGroupHeadersCommand, UnboundedZone, UndoCommand, UnexpectedRevisionIdEvent, UnfoldAllHeaderGroupsCommand, UnfoldHeaderGroupCommand, UnfoldHeaderGroupsInZoneCommand, UnfreezeColumnsCommand, UnfreezeColumnsRowsCommand, UnfreezeRowsCommand, UnhideColumnsRowsCommand, UpdateCellCommand, UpdateCellData, UpdateCellPositionCommand, UpdateChartCommand, UpdateFigureCommand, UpdateFilterCommand, UpdateLocaleCommand, UpdatePivotCommand, UpdateTableCommand, Validation, ValuesFilter, VerticalAlign, Viewport, WorkbookData, WorkbookHistory, Wrapping, Zone, ZoneDependentCommand, ZoneDimension, __info__, addFunction, addRenderingLayer, astToFormula, availableConditionalFormatOperators, availableDataValidationOperators, availableFiltersOperators, borderStyles, canExecuteInReadonly, chartHelpers, compile, compileTokens, components, constants, containsBlanksRule, containsErrorsRule, convertAstNodes, coreTypes, filterDateCriterionOperators, filterNumberCriterionOperators, filterTextCriterionOperators, findCellInNewZone, functionCache, helpers, hooks, invalidateBordersCommands, invalidateCFEvaluationCommands, invalidateChartEvaluationCommands, invalidateDependenciesCommands, invalidateEvaluationCommands, isCoreCommand, isHeadersDependant, isMatrix, isPositionDependent, isRangeDependant, isSheetDependent, isTargetDependent, isZoneDependent, iterateAstNodes, links, load, notContainsBlanksRule, notContainsErrorsRule, parse, parseTokens, readonlyAllowedCommands, registries, setDefaultSheetViewSize, setTranslationMethod, stores, tokenColors, tokenize };
13217
+ export { AST, ASTFuncall, AboveAverageRule, AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, ActivateNextSheetCommand, ActivatePreviousSheetCommand, ActivateSheetCommand, AdaptSheetName, AddColumnsRowsCommand, AddConditionalFormatCommand, AddDataValidationCommand, AddFunctionDescription, AddMergeCommand, AddPivotCommand, Aggregator, Alias, Align, AlphanumericIncrementModifier, AnchorOffset, AnchorZone, ApplyRangeChange, ApplyRangeChangeResult, Arg, ArgDefinition, ArgType, AutoFillCellCommand, AutofillAutoCommand, AutofillCellData, AutofillCommand, AutofillData, AutofillModifier, AutofillModifierImplementation, AutofillResult, AutofillSelectCommand, AutofillTableCommand, AutoresizeColumnsCommand, AutoresizeRowsCommand, AxesDesign, AxisDesign, AxisType, BeginsWithRule, BooleanCell, Border$1 as Border, BorderData, BorderDescr, BorderDescrWithOpacity, BorderPosition, BorderStyle, Box, BoxTextContent, CHART_TYPES, CSSProperties, CancelledReason, Cell, CellErrorType, CellIsRule, CellPosition, CellValue, CellValueType, ChangeType, ChartAxisFormats, ChartCreationContext, ChartDatasetOrientation, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartRuntimeGenerationArgs, ChartStyle, ChartType, ChartWithAxisDefinition, ChartWithDataSetDefinition, CleanClipBoardHighlightCommand, ClearCellCommand, ClearCellsCommand, ClearFormattingCommand, Client, ClientDisconnectedError, ClientId, ClientJoinedMessage, ClientLeftMessage, ClientMovedMessage, ClientPosition, ClientWithColor, ClientWithPosition, ClipboardCell, ClipboardCellData, 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, CoreGetters, CorePlugin, CoreTable, CoreTableType, CoreViewCommand, CoreViewCommandTypes, CoreViewPlugin, CreateChartCommand, CreateFigureCommand, CreateImageOverCommand, CreateRevisionOptions, CreateSheetCommand, CreateTableCommand, CreateTableStyleCommand, CriterionFilter, Currency, CustomFormulaCriterion, CustomizedDataSet, CutCommand, DEFAULT_LOCALE, DEFAULT_LOCALES, DIRECTION, DOMCoordinates, DOMDimension, DataBarFill, DataBarRule, DataBarRuleInternal, DataFilterValue, DataSet, DataValidationCriterion, DataValidationCriterionType, DataValidationDateCriterion, DataValidationRule, DataValidationRuleData, DatasetDesign, DatasetValues, DateCriterionValue, DateIncrementModifier, DateIsAfterCriterion, DateIsBeforeCriterion, DateIsBetweenCriterion, DateIsCriterion, DateIsNotBetweenCriterion, DateIsOnOrAfterCriterion, DateIsOnOrBeforeCriterion, DateIsValidCriterion, DebouncedFunction, DeleteCellCommand, DeleteContentCommand, DeleteFigureCommand, DeleteSheetCommand, DeleteUnfilteredContentCommand, Dependencies, Dimension, DimensionTree, DimensionTreeNode, Direction$1 as Direction, DispatchResult, DuplicatePivotCommand, DuplicatePivotInNewSheetCommand, DuplicateSheetCommand, DynamicTable, EdgeScrollInfo, EditTextOptions, EditionMode, EmptyCell, EndsWithRule, EnrichedToken, EnsureRange, ErrorCell, EvalContext, EvaluateCellsCommand, EvaluateChartsCommand, EvaluatedCell, EvaluatedCriterion, EvaluatedDateCriterion, EvaluationError, ExcelChartDataset, ExcelChartDefinition, ExcelChartTrendConfiguration, ExcelChartType, ExcelFigureSize, ExcelFilterData, ExcelHeaderData, ExcelSheetData, ExcelTableData, ExcelTrendlineType, ExcelWorkbookData, ExpressionRule, Figure, FigureData, FigureInfo, FigureSize, FigureUI, Filter, FilterCriterionType, FilterId, FoldAllHeaderGroupsCommand, FoldHeaderGroupCommand, FoldHeaderGroupsInZoneCommand, Format, FormattedValue, FormulaCell, FormulaModifier, FormulaToExecute, FreezeColumnsCommand, FreezeRowsCommand, FunctionDescription, FunctionRegistry, FunctionResultNumber, FunctionResultObject, GeneratorCell, GenericCriterion, GenericCriterionType, GenericDateCriterion, GenericDefinition, GetSymbolValue, Getters, Granularity, GridClickModifiers, GridRenderingContext, GroupHeadersCommand, HSLA, HeaderData, HeaderDimensions, HeaderGroup, HeaderIndex, HeadersDependentCommand, HideColumnsRowsCommand, HideSheetCommand, Highlight$1 as Highlight, HistoryChange, IconSet, IconSetRule, IconThreshold, Image, Immutable, Increment, IncrementModifier, InformationNotification, InitPivotParams, InsertCellCommand, InsertNewPivotCommand, InsertPivotCommand, InsertPivotWithTableCommand, IsBetweenCriterion, IsCheckboxCriterion, IsEqualCriterion, IsGreaterOrEqualToCriterion, IsGreaterThanCriterion, IsLessOrEqualToCriterion, IsLessThanCriterion, IsNotBetweenCriterion, IsNotEqualCriterion, IsValueInListCriterion, IsValueInRangeCriterion, LabelValues, LayerName, Lazy, Link, LiteralCell, LocalCommand, LocalTransportService, Locale, LocaleCode, LocaleFormat, LookupCaches, Matrix, Maybe, MenuMouseEvent, Merge, MinimalClipboardData, Model, MoveColumnsRowsCommand, MoveConditionalFormatCommand, MoveRangeCommand, MoveSheetCommand, MoveViewportDownCommand, MoveViewportToCellCommand, MoveViewportUpCommand, NewLocalStateUpdateEvent, NotContainsTextRule, NotificationType, NumberCell, OSClipboardContent, Offset, OperationSequenceNode, OrderedLayers, PaintFormat, PaneDivision, ParsedOSClipboardContent, ParsedOsClipboardContentWithImageData, PasteCommand, PasteFromOSClipboardCommand, Pivot, PivotColRowDomain, PivotCollapsedDomains, PivotCoreDefinition, PivotCoreDimension, PivotCoreMeasure, PivotDimension$1 as PivotDimension, PivotDomain, PivotEmptyCell, PivotField, PivotFields, PivotHeaderCell, PivotMeasure, PivotMeasureDisplay, PivotMeasureDisplayType, PivotMeasureHeaderCell, PivotNode, PivotRuntimeDefinition, PivotSortedColumn, PivotStartPresenceTracking, PivotStopPresenceTracking, PivotTableCell, PivotTableColumn, PivotTableData, PivotTableRow, PivotTimeAdapter, PivotTimeAdapterNotNull, PivotValueCell, PivotVisibilityOptions, Pixel, PixelPosition, Position$1 as Position, PositionDependentCommand, PropsOf, RGBA, Range, RangeAdapter$1 as RangeAdapter, RangeCompiledFormula, RangeData, RangePart, RangeProvider, RangeStringOptions, RangesDependentCommand, Rect, RedoCommand, Ref, ReferenceDenormalizer, RefreshPivotCommand, Registry, RemoteRevisionMessage, RemoteRevisionReceivedEvent, RemoveColumnsRowsCommand, RemoveConditionalFormatCommand, RemoveDataValidationCommand, RemoveDuplicatesCommand, RemoveMergeCommand, RemovePivotCommand, RemoveTableCommand, RemoveTableStyleCommand, RenamePivotCommand, RenameSheetCommand, RenderingBorder, RenderingBox, RenderingGridIcon, RepeatPasteCommand, ReplaceSearchCommand, RequestRedoCommand, RequestUndoCommand, ResizeColumnsRowsCommand, ResizeDirection, ResizeTableCommand, ResizeViewportCommand, Revision, RevisionAcknowledgedEvent, RevisionData, RevisionRedone, RevisionRedoneMessage, RevisionUndone, RevisionUndoneMessage, Row, SPREADSHEET_DIMENSIONS, ScrollDirection$1 as ScrollDirection, SelectFigureCommand, Selection$1 as Selection, SelectionStep, SetBorderCommand, SetBorderTargetCommand, SetContextualFormatCommand, SetDecimalCommand, SetDecimalStep, SetFormattingCommand, SetGridLinesVisibilityCommand, SetViewportOffsetCommand, SetZoneBordersCommand, Sheet, SheetDOMScrollInfo, SheetData, SheetDependentCommand, SheetEditingCommand, ShowFormulaCommand, ShowSheetCommand, SingleColorRule, SingleColorRules, SnapshotEvent, SortCommand, SortDirection, SortOptions, SplitPivotFormulaCommand, SplitTextIntoColumnsCommand, Spreadsheet, SpreadsheetChildEnv, SpreadsheetPivotCoreDefinition, SpreadsheetPivotTable, StartChangeHighlightCommand, StartCommand, StaticTable, StoreConstructor, StoreParams, Style, SumSelectionCommand, Table, TableBorder, TableConfig, TableData$1 as TableData, TableElementStyle, TableId, TableStyle, TableStyleData, TableStyleTemplateName, TargetDependentCommand, TechnicalName, TextCell, TextContainsCriterion, TextIsCriterion, TextIsEmailCriterion, TextIsLinkCriterion, TextNotContainsCriterion, TextRule, ThresholdType, TimePeriodRule, TitleDesign, ToggleCheckboxCommand, Token, Tooltip, Top10Rule, Transformation, TransformationFactory, TransportService, TrendConfiguration, TrendType, TrimWhitespaceCommand, UID, UIPlugin, UnGroupHeadersCommand, UnboundedZone, UndoCommand, UnexpectedRevisionIdEvent, UnfoldAllHeaderGroupsCommand, UnfoldHeaderGroupCommand, UnfoldHeaderGroupsInZoneCommand, UnfreezeColumnsCommand, UnfreezeColumnsRowsCommand, UnfreezeRowsCommand, UnhideColumnsRowsCommand, UpdateCellCommand, UpdateCellData, UpdateCellPositionCommand, UpdateChartCommand, UpdateFigureCommand, UpdateFilterCommand, UpdateLocaleCommand, UpdatePivotCommand, UpdateTableCommand, Validation, ValuesFilter, VerticalAlign, Viewport, WorkbookData, WorkbookHistory, Wrapping, Zone, ZoneDependentCommand, ZoneDimension, __info__, addFunction, addRenderingLayer, astToFormula, availableConditionalFormatOperators, availableDataValidationOperators, availableFiltersOperators, borderStyles, canExecuteInReadonly, chartHelpers, compile, compileTokens, components, constants, containsBlanksRule, containsErrorsRule, convertAstNodes, coreTypes, filterDateCriterionOperators, filterNumberCriterionOperators, filterTextCriterionOperators, findCellInNewZone, functionCache, helpers, hooks, invalidateBordersCommands, invalidateCFEvaluationCommands, invalidateChartEvaluationCommands, invalidateDependenciesCommands, invalidateEvaluationCommands, isCoreCommand, isHeadersDependant, isMatrix, isPositionDependent, isRangeDependant, isSheetDependent, isTargetDependent, isZoneDependent, iterateAstNodes, links, load, notContainsBlanksRule, notContainsErrorsRule, parse, parseTokens, readonlyAllowedCommands, registries, setDefaultSheetViewSize, setTranslationMethod, stores, tokenColors, tokenize };