@odoo/o-spreadsheet 18.3.18 → 18.3.20

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.
@@ -1622,6 +1622,51 @@ declare function createCurrencyFormat(currency: Partial<Currency>): Format;
1622
1622
  */
1623
1623
  declare function isNumber(value: string | undefined, locale: Locale): boolean;
1624
1624
 
1625
+ /**
1626
+ * Registry
1627
+ *
1628
+ * The Registry class is basically just a mapping from a string key to an object.
1629
+ * It is really not much more than an object. It is however useful for the
1630
+ * following reasons:
1631
+ *
1632
+ * 1. it let us react and execute code when someone add something to the registry
1633
+ * (for example, the FunctionRegistry subclass this for this purpose)
1634
+ * 2. it throws an error when the get operation fails
1635
+ * 3. it provides a chained API to add items to the registry.
1636
+ */
1637
+ declare class Registry<T> {
1638
+ content: {
1639
+ [key: string]: T;
1640
+ };
1641
+ /**
1642
+ * Add an item to the registry
1643
+ *
1644
+ * Note that this also returns the registry, so another add method call can
1645
+ * be chained
1646
+ */
1647
+ add(key: string, value: T): Registry<T>;
1648
+ /**
1649
+ * Get an item from the registry
1650
+ */
1651
+ get(key: string): T;
1652
+ /**
1653
+ * Check if the key is already in the registry
1654
+ */
1655
+ contains(key: string): boolean;
1656
+ /**
1657
+ * Get a list of all elements in the registry
1658
+ */
1659
+ getAll(): T[];
1660
+ /**
1661
+ * Get a list of all keys in the registry
1662
+ */
1663
+ getKeys(): string[];
1664
+ /**
1665
+ * Remove an item from the registry
1666
+ */
1667
+ remove(key: string): void;
1668
+ }
1669
+
1625
1670
  declare function splitReference(ref: string): {
1626
1671
  sheetName?: string;
1627
1672
  xc: string;
@@ -2558,6 +2603,7 @@ interface ClipboardOptions {
2558
2603
  selectTarget?: boolean;
2559
2604
  }
2560
2605
  type ClipboardPasteOptions = "onlyFormat" | "asValue";
2606
+ type ClipboardCopyOptions = "copyPaste" | "shiftCells";
2561
2607
  type ClipboardOperation = "CUT" | "COPY";
2562
2608
  type ClipboardCellData = {
2563
2609
  sheetId: UID;
@@ -3726,15 +3772,19 @@ type ApplyRangeChangeResult = {
3726
3772
  changeType: "NONE";
3727
3773
  };
3728
3774
  type ApplyRangeChange = (range: Range) => ApplyRangeChangeResult;
3775
+ type AdaptSheetName = {
3776
+ old: string;
3777
+ current: string;
3778
+ };
3729
3779
  type RangeAdapter$1 = {
3730
3780
  sheetId: UID;
3731
- sheetName: string;
3781
+ sheetName: AdaptSheetName;
3732
3782
  applyChange: ApplyRangeChange;
3733
3783
  };
3734
3784
  type Dimension = "COL" | "ROW";
3735
3785
  type ConsecutiveIndexes = HeaderIndex[];
3736
3786
  interface RangeProvider {
3737
- adaptRanges: (applyChange: ApplyRangeChange, sheetId?: UID, sheetName?: string) => void;
3787
+ adaptRanges: (applyChange: ApplyRangeChange, sheetId: UID, sheetName: AdaptSheetName) => void;
3738
3788
  }
3739
3789
  type Validation<T> = (toValidate: T) => CommandResult | CommandResult[];
3740
3790
  type Increment = 1 | -1 | 0;
@@ -4246,9 +4296,9 @@ declare class RangeAdapter implements CommandHandler<CoreCommand> {
4246
4296
  private providers;
4247
4297
  constructor(getters: CoreGetters);
4248
4298
  static getters: readonly ["adaptFormulaStringDependencies", "copyFormulaStringForSheet", "extendRange", "getRangeString", "getRangeFromSheetXC", "createAdaptedRanges", "getRangeData", "getRangeDataFromXc", "getRangeDataFromZone", "getRangeFromRangeData", "getRangeFromZone", "getRangesUnion", "recomputeRanges", "isRangeValid", "removeRangesSheetPrefix"];
4249
- allowDispatch(cmd: Command): CommandResult;
4299
+ allowDispatch(cmd: CoreCommand): CommandResult;
4250
4300
  beforeHandle(command: Command): void;
4251
- handle(cmd: Command): void;
4301
+ handle(cmd: CoreCommand): void;
4252
4302
  finalize(): void;
4253
4303
  /**
4254
4304
  * Return a modified adapting function that verifies that after adapting a range, the range is still valid.
@@ -4347,9 +4397,10 @@ declare class CorePlugin<State = any> extends BasePlugin<State, CoreCommand> imp
4347
4397
  * the type of change that occurred.
4348
4398
  *
4349
4399
  * @param applyChange a function that, when called, will adapt the range according to the change on the grid
4350
- * @param sheetId an optional sheetId to adapt either range of that sheet specifically, or ranges pointing to that sheet
4400
+ * @param sheetId an sheetId to adapt either range of that sheet specifically, or ranges pointing to that sheet
4401
+ * @param sheetName couple of old and new sheet names to adapt ranges pointing to that sheet
4351
4402
  */
4352
- adaptRanges(applyChange: ApplyRangeChange, sheetId?: UID, sheetName?: string): void;
4403
+ adaptRanges(applyChange: ApplyRangeChange, sheetId: UID, sheetName: AdaptSheetName): void;
4353
4404
  /**
4354
4405
  * Implement this method to clean unused external resources, such as images
4355
4406
  * stored on a server which have been deleted.
@@ -4500,7 +4551,7 @@ declare class CellPlugin extends CorePlugin<CoreState$1> implements CoreState$1
4500
4551
  [id: string]: Cell;
4501
4552
  };
4502
4553
  };
4503
- adaptRanges(applyChange: ApplyRangeChange, sheetId?: UID, sheetName?: string): void;
4554
+ adaptRanges(applyChange: ApplyRangeChange, sheetId: UID, sheetName: AdaptSheetName): void;
4504
4555
  allowDispatch(cmd: CoreCommand): CommandResult | CommandResult[];
4505
4556
  handle(cmd: CoreCommand): void;
4506
4557
  private clearZones;
@@ -4617,7 +4668,7 @@ declare abstract class AbstractChart {
4617
4668
  * This function should be used to update all the ranges of the chart after
4618
4669
  * a grid change (add/remove col/row, rename sheet, ...)
4619
4670
  */
4620
- abstract updateRanges(applyChange: ApplyRangeChange): AbstractChart;
4671
+ abstract updateRanges(applyChange: ApplyRangeChange, sheetId: UID, adaptSheetName: AdaptSheetName): AbstractChart;
4621
4672
  /**
4622
4673
  * Duplicate the chart when a sheet is duplicated.
4623
4674
  * The ranges that are in the same sheet as the chart are adapted to the new sheetId.
@@ -4647,7 +4698,7 @@ declare class ChartPlugin extends CorePlugin<ChartState> implements ChartState {
4647
4698
  readonly charts: Record<UID, AbstractChart | undefined>;
4648
4699
  private createChart;
4649
4700
  private validateChartDefinition;
4650
- adaptRanges(applyChange: ApplyRangeChange): void;
4701
+ adaptRanges(applyChange: ApplyRangeChange, sheetId: UID, adaptSheetName: AdaptSheetName): void;
4651
4702
  allowDispatch(cmd: Command): CommandResult | CommandResult[];
4652
4703
  handle(cmd: CoreCommand): void;
4653
4704
  getContextCreationChart(figureId: UID): ChartCreationContext | undefined;
@@ -4684,7 +4735,7 @@ declare class ConditionalFormatPlugin extends CorePlugin<ConditionalFormatState>
4684
4735
  };
4685
4736
  adaptCFFormulas(applyChange: ApplyRangeChange): void;
4686
4737
  adaptCFRanges(sheetId: UID, applyChange: ApplyRangeChange): void;
4687
- adaptRanges(applyChange: ApplyRangeChange, sheetId?: UID, sheetName?: string): void;
4738
+ adaptRanges(applyChange: ApplyRangeChange, sheetId: UID): void;
4688
4739
  allowDispatch(cmd: Command): CommandResult | CommandResult[];
4689
4740
  handle(cmd: CoreCommand): void;
4690
4741
  import(data: WorkbookData): void;
@@ -4735,7 +4786,7 @@ declare class DataValidationPlugin extends CorePlugin<DataValidationState> imple
4735
4786
  readonly rules: {
4736
4787
  [sheet: string]: DataValidationRule[];
4737
4788
  };
4738
- adaptRanges(applyChange: ApplyRangeChange, sheetId?: UID, sheetName?: string): void;
4789
+ adaptRanges(applyChange: ApplyRangeChange, sheetId: UID): void;
4739
4790
  private adaptDVFormulas;
4740
4791
  private adaptDVRanges;
4741
4792
  allowDispatch(cmd: Command): CommandResult | CommandResult[];
@@ -4770,7 +4821,7 @@ declare class FigurePlugin extends CorePlugin<FigureState> implements FigureStat
4770
4821
  [sheet: string]: Record<UID, Figure | undefined> | undefined;
4771
4822
  };
4772
4823
  readonly insertionOrders: UID[];
4773
- adaptRanges(applyChange: ApplyRangeChange, sheetId?: UID): void;
4824
+ adaptRanges(applyChange: ApplyRangeChange, sheetId: UID): void;
4774
4825
  allowDispatch(cmd: CoreCommand): CommandResult | CommandResult[];
4775
4826
  beforeHandle(cmd: CoreCommand): void;
4776
4827
  handle(cmd: CoreCommand): void;
@@ -4950,7 +5001,7 @@ declare class MergePlugin extends CorePlugin<MergeState> implements MergeState {
4950
5001
  readonly mergeCellMap: Record<UID, SheetMergeCellMap | undefined>;
4951
5002
  allowDispatch(cmd: CoreCommand): CommandResult | CommandResult[];
4952
5003
  handle(cmd: CoreCommand): void;
4953
- adaptRanges(applyChange: ApplyRangeChange, sheetId?: UID, sheetName?: string): void;
5004
+ adaptRanges(applyChange: ApplyRangeChange, sheetId: UID): void;
4954
5005
  getMerges(sheetId: UID): Merge[];
4955
5006
  getMerge({ sheetId, col, row }: CellPosition): Merge | undefined;
4956
5007
  getMergesInZone(sheetId: UID, zone: Zone): Merge[];
@@ -5040,7 +5091,7 @@ declare class PivotCorePlugin extends CorePlugin<CoreState> implements CoreState
5040
5091
  readonly compiledMeasureFormulas: Record<UID, Record<string, RangeCompiledFormula>>;
5041
5092
  allowDispatch(cmd: CoreCommand): CommandResult | CommandResult[];
5042
5093
  handle(cmd: CoreCommand): void;
5043
- adaptRanges(applyChange: ApplyRangeChange, sheetId?: UID, sheetName?: string): void;
5094
+ adaptRanges(applyChange: ApplyRangeChange): void;
5044
5095
  getPivotDisplayName(pivotId: UID): string;
5045
5096
  getPivotName(pivotId: UID): string;
5046
5097
  /**
@@ -5262,7 +5313,7 @@ declare class TablePlugin extends CorePlugin<TableState> implements TableState {
5262
5313
  static getters: readonly ["getCoreTable", "getCoreTables", "getCoreTableMatchingTopLeft"];
5263
5314
  readonly tables: Record<UID, Record<TableId, CoreTable | undefined>>;
5264
5315
  readonly nextTableId: number;
5265
- adaptRanges(applyChange: ApplyRangeChange, sheetId?: UID, sheetName?: string): void;
5316
+ adaptRanges(applyChange: ApplyRangeChange, sheetId: UID): void;
5266
5317
  allowDispatch(cmd: CoreCommand): CommandResult | CommandResult[];
5267
5318
  handle(cmd: CoreCommand): void;
5268
5319
  getCoreTables(sheetId: UID): CoreTable[];
@@ -6544,51 +6595,6 @@ declare module "chart.js" {
6544
6595
  }
6545
6596
  }
6546
6597
 
6547
- /**
6548
- * Registry
6549
- *
6550
- * The Registry class is basically just a mapping from a string key to an object.
6551
- * It is really not much more than an object. It is however useful for the
6552
- * following reasons:
6553
- *
6554
- * 1. it let us react and execute code when someone add something to the registry
6555
- * (for example, the FunctionRegistry subclass this for this purpose)
6556
- * 2. it throws an error when the get operation fails
6557
- * 3. it provides a chained API to add items to the registry.
6558
- */
6559
- declare class Registry<T> {
6560
- content: {
6561
- [key: string]: T;
6562
- };
6563
- /**
6564
- * Add an item to the registry
6565
- *
6566
- * Note that this also returns the registry, so another add method call can
6567
- * be chained
6568
- */
6569
- add(key: string, value: T): Registry<T>;
6570
- /**
6571
- * Get an item from the registry
6572
- */
6573
- get(key: string): T;
6574
- /**
6575
- * Check if the key is already in the registry
6576
- */
6577
- contains(key: string): boolean;
6578
- /**
6579
- * Get a list of all elements in the registry
6580
- */
6581
- getAll(): T[];
6582
- /**
6583
- * Get a list of all keys in the registry
6584
- */
6585
- getKeys(): string[];
6586
- /**
6587
- * Remove an item from the registry
6588
- */
6589
- remove(key: string): void;
6590
- }
6591
-
6592
6598
  interface MigrationStep {
6593
6599
  migrate: (data: any) => any;
6594
6600
  }
@@ -6617,7 +6623,7 @@ declare class ClipboardHandler<T> {
6617
6623
  protected getters: Getters;
6618
6624
  protected dispatch: CommandDispatcher["dispatch"];
6619
6625
  constructor(getters: Getters, dispatch: CommandDispatcher["dispatch"]);
6620
- copy(data: ClipboardData, isCutOperation: boolean): T | undefined;
6626
+ copy(data: ClipboardData, isCutOperation: boolean, mode?: ClipboardCopyOptions): T | undefined;
6621
6627
  paste(target: ClipboardPasteTarget, clippedContent: T, options: ClipboardOptions): void;
6622
6628
  isPasteAllowed(sheetId: UID, target: Zone[], content: T, option: ClipboardOptions): CommandResult;
6623
6629
  isCutAllowed(data: ClipboardData): CommandResult;
@@ -6626,7 +6632,7 @@ declare class ClipboardHandler<T> {
6626
6632
  }
6627
6633
 
6628
6634
  declare class AbstractCellClipboardHandler<T, T1> extends ClipboardHandler<T> {
6629
- copy(data: ClipboardCellData): T | undefined;
6635
+ copy(data: ClipboardCellData, isCutOperation: boolean, mode?: ClipboardCopyOptions): T | undefined;
6630
6636
  pasteFromCopy(sheetId: UID, target: Zone[], content: T1[][], options?: ClipboardOptions): void;
6631
6637
  protected pasteZone(sheetId: UID, col: HeaderIndex, row: HeaderIndex, data: T1[][], clipboardOptions?: ClipboardOptions): void;
6632
6638
  }
@@ -11115,7 +11121,7 @@ declare class GaugeChart extends AbstractChart {
11115
11121
  private getDefinitionWithSpecificRanges;
11116
11122
  getDefinitionForExcel(): undefined;
11117
11123
  getContextCreation(): ChartCreationContext;
11118
- updateRanges(applyChange: ApplyRangeChange): GaugeChart;
11124
+ updateRanges(applyChange: ApplyRangeChange, sheetId: UID, adaptSheetName: AdaptSheetName): GaugeChart;
11119
11125
  }
11120
11126
 
11121
11127
  declare class LineChart extends AbstractChart {
@@ -12602,4 +12608,4 @@ declare const chartHelpers: {
12602
12608
  WaterfallChart: typeof WaterfallChart;
12603
12609
  };
12604
12610
 
12605
- export { AST, ASTFuncall, AboveAverageRule, AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, ActivateNextSheetCommand, ActivatePreviousSheetCommand, ActivateSheetCommand, AddColumnsRowsCommand, AddConditionalFormatCommand, AddDataValidationCommand, AddFunctionDescription, AddMergeCommand, AddPivotCommand, Aggregator, Alias, Align, AlphanumericIncrementModifier, AnchorOffset, AnchorZone, ApplyRangeChange, ApplyRangeChangeResult, Arg, ArgDefinition, ArgType, AutoFillCellCommand, AutofillAutoCommand, AutofillCellData, AutofillCommand, AutofillData, AutofillModifier, AutofillModifierImplementation, AutofillResult, AutofillSelectCommand, AutofillTableCommand, AutoresizeColumnsCommand, AutoresizeRowsCommand, AxesDesign, AxisDesign, AxisType, BeginsWithRule, BooleanCell, Border$1 as Border, BorderData, BorderDescr, BorderPosition, BorderStyle, Box, BoxTextContent, CHART_TYPES, CSSProperties, CancelledReason, Cell, CellErrorType, CellIsRule, CellPosition, CellValue, CellValueType, ChangeType, ChartAxisFormats, ChartCreationContext, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartRuntimeGenerationArgs, ChartStyle, ChartType, ChartWithAxisDefinition, ChartWithDataSetDefinition, CleanClipBoardHighlightCommand, ClearCellCommand, ClearCellsCommand, ClearFormattingCommand, Client, ClientId, ClientJoinedMessage, ClientLeftMessage, ClientMovedMessage, ClientPosition, ClipboardCell, ClipboardCellData, ClipboardData, ClipboardFigureData, ClipboardMIMEType, ClipboardOperation, ClipboardOptions, ClipboardPasteOptions, ClipboardPasteTarget, Cloneable, CollaborationMessage, CollaborativeEvent, CollaborativeEventReceived, CollaborativeEventTypes, Color, ColorScaleMidPointThreshold, ColorScaleRule, ColorScaleThreshold, ColorSheetCommand, Command, CommandDispatcher, CommandHandler, CommandResult, CommandTypes, CommonPivotCoreDefinition, CompiledFormula, ComposerFocusType, ComputeFunction, ComputedTableStyle, ConditionalFormat, ConditionalFormatInternal, ConditionalFormatRule, ConditionalFormatRuleInternal, ConditionalFormattingOperatorValues, ConsecutiveIndexes, ContainsTextRule, CopyCommand, CopyModifier, CopyPasteCellsAboveCommand, CopyPasteCellsOnLeftCommand, CoreCommand, CoreCommandDispatcher, CoreCommandTypes, CoreGetters, CorePlugin, CoreTable, CoreTableType, CoreViewCommand, CoreViewCommandTypes, CoreViewPlugin, CreateChartCommand, CreateFigureCommand, CreateImageOverCommand, CreateRevisionOptions, CreateSheetCommand, CreateTableCommand, CreateTableStyleCommand, Currency, CustomFormulaCriterion, CustomizedDataSet, CutCommand, DEFAULT_LOCALE, DEFAULT_LOCALES, DIRECTION, DOMCoordinates, DOMDimension, DataBarFill, DataBarRule, DataBarRuleInternal, DataSet, DataValidationCriterion, DataValidationCriterionType, DataValidationDateCriterion, DataValidationRule, DataValidationRuleData, DatasetDesign, DatasetValues, DateCriterionValue, DateIncrementModifier, DateIsAfterCriterion, DateIsBeforeCriterion, DateIsBetweenCriterion, DateIsCriterion, DateIsNotBetweenCriterion, DateIsOnOrAfterCriterion, DateIsOnOrBeforeCriterion, DateIsValidCriterion, DebouncedFunction, DeleteCellCommand, DeleteContentCommand, DeleteFigureCommand, DeleteSheetCommand, DeleteUnfilteredContentCommand, Dependencies, Dimension, DimensionTree, DimensionTreeNode, Direction$1 as Direction, DispatchResult, DuplicatePivotCommand, DuplicatePivotInNewSheetCommand, DuplicateSheetCommand, DynamicTable, EdgeScrollInfo, EditTextOptions, EditionMode, EmptyCell, EndsWithRule, EnrichedToken, EnsureRange, ErrorCell, EvalContext, EvaluateCellsCommand, EvaluateChartsCommand, EvaluatedCell, EvaluationError, ExcelChartDataset, ExcelChartDefinition, ExcelChartType, ExcelFigureSize, ExcelFilterData, ExcelHeaderData, ExcelSheetData, ExcelTableData, ExcelWorkbookData, ExpressionRule, Figure, FigureData, FigureInfo, FigureSize, FigureUI, Filter, FilterId, FoldAllHeaderGroupsCommand, FoldHeaderGroupCommand, FoldHeaderGroupsInZoneCommand, Format, FormattedValue, FormulaCell, FormulaModifier, FormulaToExecute, FreezeColumnsCommand, FreezeRowsCommand, FunctionDescription, FunctionRegistry, FunctionResultNumber, FunctionResultObject, GeneratorCell, GenericDefinition, GetSymbolValue, Getters, Granularity, GridClickModifiers, GridRenderingContext, GroupHeadersCommand, HSLA, HeaderData, HeaderDimensions, HeaderGroup, HeaderIndex, HeadersDependentCommand, HideColumnsRowsCommand, HideSheetCommand, Highlight$1 as Highlight, HistoryChange, IconSet, IconSetRule, IconThreshold, Image, Immutable, Increment, IncrementModifier, InformationNotification, InitPivotParams, InsertCellCommand, InsertNewPivotCommand, InsertPivotCommand, InsertPivotWithTableCommand, IsBetweenCriterion, IsCheckboxCriterion, IsEqualCriterion, IsGreaterOrEqualToCriterion, IsGreaterThanCriterion, IsLessOrEqualToCriterion, IsLessThanCriterion, IsNotBetweenCriterion, IsNotEqualCriterion, IsValueInListCriterion, IsValueInRangeCriterion, LabelValues, LayerName, Lazy, Link, LiteralCell, LocalCommand, Locale, LocaleCode, LocaleFormat, LookupCaches, Matrix, Maybe, MenuMouseEvent, Merge, 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, PivotCoreDefinition, PivotCoreDimension, PivotCoreMeasure, PivotDimension$1 as PivotDimension, PivotDomain, PivotEmptyCell, PivotField, PivotFields, PivotHeaderCell, PivotMeasure, PivotMeasureDisplay, PivotMeasureDisplayType, PivotMeasureHeaderCell, PivotNode, PivotRuntimeDefinition, PivotSortedColumn, PivotStartPresenceTracking, PivotStopPresenceTracking, PivotTableCell, PivotTableColumn, PivotTableData, PivotTableRow, PivotTimeAdapter, PivotTimeAdapterNotNull, PivotValueCell, Pixel, PixelPosition, Position$1 as Position, PositionDependentCommand, PropsOf, RGBA, Range, RangeAdapter$1 as RangeAdapter, RangeCompiledFormula, RangeData, RangePart, RangeProvider, RangeStringOptions, RangesDependentCommand, Rect, RedoCommand, Ref, ReferenceDenormalizer, RefreshPivotCommand, Registry, RemoteRevisionMessage, RemoteRevisionReceivedEvent, RemoveColumnsRowsCommand, RemoveConditionalFormatCommand, RemoveDataValidationCommand, RemoveDuplicatesCommand, RemoveMergeCommand, RemovePivotCommand, RemoveTableCommand, RemoveTableStyleCommand, RenamePivotCommand, RenameSheetCommand, RepeatPasteCommand, ReplaceSearchCommand, RequestRedoCommand, RequestUndoCommand, ResizeColumnsRowsCommand, ResizeDirection, ResizeTableCommand, ResizeViewportCommand, Revision, RevisionAcknowledgedEvent, RevisionData, RevisionRedone, RevisionRedoneMessage, RevisionUndone, RevisionUndoneMessage, Row, SPREADSHEET_DIMENSIONS, ScrollDirection$1 as ScrollDirection, SelectFigureCommand, Selection, SelectionStep, SetBorderCommand, SetBorderTargetCommand, SetContextualFormatCommand, SetDecimalCommand, SetDecimalStep, SetFormattingCommand, SetGridLinesVisibilityCommand, SetViewportOffsetCommand, SetZoneBordersCommand, Sheet, SheetDOMScrollInfo, SheetData, SheetDependentCommand, SheetEditingCommand, ShowFormulaCommand, ShowSheetCommand, SingleColorRule, SingleColorRules, SnapshotEvent, SortCommand, SortDirection, SortOptions, SplitPivotFormulaCommand, SplitTextIntoColumnsCommand, Spreadsheet, SpreadsheetChildEnv, SpreadsheetPivotCoreDefinition, SpreadsheetPivotTable, StartChangeHighlightCommand, StartCommand, StaticTable, StoreConstructor, StoreParams, Style, SumSelectionCommand, Table, TableBorder, TableConfig, TableData$1 as TableData, TableElementStyle, TableId, TableStyle, TableStyleData, TableStyleTemplateName, TargetDependentCommand, TechnicalName, TextCell, TextContainsCriterion, TextIsCriterion, TextIsEmailCriterion, TextIsLinkCriterion, TextNotContainsCriterion, TextRule, ThresholdType, TimePeriodRule, TitleDesign, Token, Tooltip, Top10Rule, Transformation, TransformationFactory, TransportService, TrendConfiguration, TrendType, TrimWhitespaceCommand, UID, UIPlugin, UnGroupHeadersCommand, UnboundedZone, UndoCommand, UnexpectedRevisionIdEvent, UnfoldAllHeaderGroupsCommand, UnfoldHeaderGroupCommand, UnfoldHeaderGroupsInZoneCommand, UnfreezeColumnsCommand, UnfreezeColumnsRowsCommand, UnfreezeRowsCommand, UnhideColumnsRowsCommand, UpdateCellCommand, UpdateCellData, UpdateCellPositionCommand, UpdateChartCommand, UpdateFigureCommand, UpdateFilterCommand, UpdateLocaleCommand, UpdatePivotCommand, UpdateTableCommand, Validation, VerticalAlign, Viewport, WorkbookData, WorkbookHistory, Wrapping, Zone, ZoneDependentCommand, ZoneDimension, __info__, addFunction, addRenderingLayer, astToFormula, borderStyles, canExecuteInReadonly, chartHelpers, compile, compileTokens, components, constants, containsBlanksRule, containsErrorsRule, convertAstNodes, coreTypes, findCellInNewZone, functionCache, helpers, hooks, invalidateBordersCommands, invalidateCFEvaluationCommands, invalidateChartEvaluationCommands, invalidateDependenciesCommands, invalidateEvaluationCommands, isCoreCommand, isHeadersDependant, isMatrix, isPositionDependent, isRangeDependant, isSheetDependent, isTargetDependent, isZoneDependent, iterateAstNodes, links, load, notContainsBlanksRule, notContainsErrorsRule, parse, parseTokens, readonlyAllowedCommands, registries, setDefaultSheetViewSize, setTranslationMethod, stores, tokenColors, tokenize };
12611
+ 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, BorderPosition, BorderStyle, Box, BoxTextContent, CHART_TYPES, CSSProperties, CancelledReason, Cell, CellErrorType, CellIsRule, CellPosition, CellValue, CellValueType, ChangeType, ChartAxisFormats, ChartCreationContext, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartRuntimeGenerationArgs, ChartStyle, ChartType, ChartWithAxisDefinition, ChartWithDataSetDefinition, CleanClipBoardHighlightCommand, ClearCellCommand, ClearCellsCommand, ClearFormattingCommand, Client, ClientId, ClientJoinedMessage, ClientLeftMessage, ClientMovedMessage, ClientPosition, ClipboardCell, ClipboardCellData, 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, Currency, CustomFormulaCriterion, CustomizedDataSet, CutCommand, DEFAULT_LOCALE, DEFAULT_LOCALES, DIRECTION, DOMCoordinates, DOMDimension, DataBarFill, DataBarRule, DataBarRuleInternal, DataSet, DataValidationCriterion, DataValidationCriterionType, DataValidationDateCriterion, DataValidationRule, DataValidationRuleData, DatasetDesign, DatasetValues, DateCriterionValue, DateIncrementModifier, DateIsAfterCriterion, DateIsBeforeCriterion, DateIsBetweenCriterion, DateIsCriterion, DateIsNotBetweenCriterion, DateIsOnOrAfterCriterion, DateIsOnOrBeforeCriterion, DateIsValidCriterion, DebouncedFunction, DeleteCellCommand, DeleteContentCommand, DeleteFigureCommand, DeleteSheetCommand, DeleteUnfilteredContentCommand, Dependencies, Dimension, DimensionTree, DimensionTreeNode, Direction$1 as Direction, DispatchResult, DuplicatePivotCommand, DuplicatePivotInNewSheetCommand, DuplicateSheetCommand, DynamicTable, EdgeScrollInfo, EditTextOptions, EditionMode, EmptyCell, EndsWithRule, EnrichedToken, EnsureRange, ErrorCell, EvalContext, EvaluateCellsCommand, EvaluateChartsCommand, EvaluatedCell, EvaluationError, ExcelChartDataset, ExcelChartDefinition, ExcelChartType, ExcelFigureSize, ExcelFilterData, ExcelHeaderData, ExcelSheetData, ExcelTableData, ExcelWorkbookData, ExpressionRule, Figure, FigureData, FigureInfo, FigureSize, FigureUI, Filter, FilterId, FoldAllHeaderGroupsCommand, FoldHeaderGroupCommand, FoldHeaderGroupsInZoneCommand, Format, FormattedValue, FormulaCell, FormulaModifier, FormulaToExecute, FreezeColumnsCommand, FreezeRowsCommand, FunctionDescription, FunctionRegistry, FunctionResultNumber, FunctionResultObject, GeneratorCell, GenericDefinition, GetSymbolValue, Getters, Granularity, GridClickModifiers, GridRenderingContext, GroupHeadersCommand, HSLA, HeaderData, HeaderDimensions, HeaderGroup, HeaderIndex, HeadersDependentCommand, HideColumnsRowsCommand, HideSheetCommand, Highlight$1 as Highlight, HistoryChange, IconSet, IconSetRule, IconThreshold, Image, Immutable, Increment, IncrementModifier, InformationNotification, InitPivotParams, InsertCellCommand, InsertNewPivotCommand, InsertPivotCommand, InsertPivotWithTableCommand, IsBetweenCriterion, IsCheckboxCriterion, IsEqualCriterion, IsGreaterOrEqualToCriterion, IsGreaterThanCriterion, IsLessOrEqualToCriterion, IsLessThanCriterion, IsNotBetweenCriterion, IsNotEqualCriterion, IsValueInListCriterion, IsValueInRangeCriterion, LabelValues, LayerName, Lazy, Link, LiteralCell, LocalCommand, Locale, LocaleCode, LocaleFormat, LookupCaches, Matrix, Maybe, MenuMouseEvent, Merge, 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, PivotCoreDefinition, PivotCoreDimension, PivotCoreMeasure, PivotDimension$1 as PivotDimension, PivotDomain, PivotEmptyCell, PivotField, PivotFields, PivotHeaderCell, PivotMeasure, PivotMeasureDisplay, PivotMeasureDisplayType, PivotMeasureHeaderCell, PivotNode, PivotRuntimeDefinition, PivotSortedColumn, PivotStartPresenceTracking, PivotStopPresenceTracking, PivotTableCell, PivotTableColumn, PivotTableData, PivotTableRow, PivotTimeAdapter, PivotTimeAdapterNotNull, PivotValueCell, Pixel, PixelPosition, Position$1 as Position, PositionDependentCommand, PropsOf, RGBA, Range, RangeAdapter$1 as RangeAdapter, RangeCompiledFormula, RangeData, RangePart, RangeProvider, RangeStringOptions, RangesDependentCommand, Rect, RedoCommand, Ref, ReferenceDenormalizer, RefreshPivotCommand, Registry, RemoteRevisionMessage, RemoteRevisionReceivedEvent, RemoveColumnsRowsCommand, RemoveConditionalFormatCommand, RemoveDataValidationCommand, RemoveDuplicatesCommand, RemoveMergeCommand, RemovePivotCommand, RemoveTableCommand, RemoveTableStyleCommand, RenamePivotCommand, RenameSheetCommand, RepeatPasteCommand, ReplaceSearchCommand, RequestRedoCommand, RequestUndoCommand, ResizeColumnsRowsCommand, ResizeDirection, ResizeTableCommand, ResizeViewportCommand, Revision, RevisionAcknowledgedEvent, RevisionData, RevisionRedone, RevisionRedoneMessage, RevisionUndone, RevisionUndoneMessage, Row, SPREADSHEET_DIMENSIONS, ScrollDirection$1 as ScrollDirection, SelectFigureCommand, Selection, SelectionStep, SetBorderCommand, SetBorderTargetCommand, SetContextualFormatCommand, SetDecimalCommand, SetDecimalStep, SetFormattingCommand, SetGridLinesVisibilityCommand, SetViewportOffsetCommand, SetZoneBordersCommand, Sheet, SheetDOMScrollInfo, SheetData, SheetDependentCommand, SheetEditingCommand, ShowFormulaCommand, ShowSheetCommand, SingleColorRule, SingleColorRules, SnapshotEvent, SortCommand, SortDirection, SortOptions, SplitPivotFormulaCommand, SplitTextIntoColumnsCommand, Spreadsheet, SpreadsheetChildEnv, SpreadsheetPivotCoreDefinition, SpreadsheetPivotTable, StartChangeHighlightCommand, StartCommand, StaticTable, StoreConstructor, StoreParams, Style, SumSelectionCommand, Table, TableBorder, TableConfig, TableData$1 as TableData, TableElementStyle, TableId, TableStyle, TableStyleData, TableStyleTemplateName, TargetDependentCommand, TechnicalName, TextCell, TextContainsCriterion, TextIsCriterion, TextIsEmailCriterion, TextIsLinkCriterion, TextNotContainsCriterion, TextRule, ThresholdType, TimePeriodRule, TitleDesign, Token, Tooltip, Top10Rule, Transformation, TransformationFactory, TransportService, TrendConfiguration, TrendType, TrimWhitespaceCommand, UID, UIPlugin, UnGroupHeadersCommand, UnboundedZone, UndoCommand, UnexpectedRevisionIdEvent, UnfoldAllHeaderGroupsCommand, UnfoldHeaderGroupCommand, UnfoldHeaderGroupsInZoneCommand, UnfreezeColumnsCommand, UnfreezeColumnsRowsCommand, UnfreezeRowsCommand, UnhideColumnsRowsCommand, UpdateCellCommand, UpdateCellData, UpdateCellPositionCommand, UpdateChartCommand, UpdateFigureCommand, UpdateFilterCommand, UpdateLocaleCommand, UpdatePivotCommand, UpdateTableCommand, Validation, VerticalAlign, Viewport, WorkbookData, WorkbookHistory, Wrapping, Zone, ZoneDependentCommand, ZoneDimension, __info__, addFunction, addRenderingLayer, astToFormula, borderStyles, canExecuteInReadonly, chartHelpers, compile, compileTokens, components, constants, containsBlanksRule, containsErrorsRule, convertAstNodes, coreTypes, findCellInNewZone, functionCache, helpers, hooks, invalidateBordersCommands, invalidateCFEvaluationCommands, invalidateChartEvaluationCommands, invalidateDependenciesCommands, invalidateEvaluationCommands, isCoreCommand, isHeadersDependant, isMatrix, isPositionDependent, isRangeDependant, isSheetDependent, isTargetDependent, isZoneDependent, iterateAstNodes, links, load, notContainsBlanksRule, notContainsErrorsRule, parse, parseTokens, readonlyAllowedCommands, registries, setDefaultSheetViewSize, setTranslationMethod, stores, tokenColors, tokenize };