@odoo/o-spreadsheet 18.3.17 → 18.3.19

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;
@@ -3726,15 +3771,19 @@ type ApplyRangeChangeResult = {
3726
3771
  changeType: "NONE";
3727
3772
  };
3728
3773
  type ApplyRangeChange = (range: Range) => ApplyRangeChangeResult;
3774
+ type AdaptSheetName = {
3775
+ old: string;
3776
+ current: string;
3777
+ };
3729
3778
  type RangeAdapter$1 = {
3730
3779
  sheetId: UID;
3731
- sheetName: string;
3780
+ sheetName: AdaptSheetName;
3732
3781
  applyChange: ApplyRangeChange;
3733
3782
  };
3734
3783
  type Dimension = "COL" | "ROW";
3735
3784
  type ConsecutiveIndexes = HeaderIndex[];
3736
3785
  interface RangeProvider {
3737
- adaptRanges: (applyChange: ApplyRangeChange, sheetId?: UID, sheetName?: string) => void;
3786
+ adaptRanges: (applyChange: ApplyRangeChange, sheetId: UID, sheetName: AdaptSheetName) => void;
3738
3787
  }
3739
3788
  type Validation<T> = (toValidate: T) => CommandResult | CommandResult[];
3740
3789
  type Increment = 1 | -1 | 0;
@@ -4246,9 +4295,9 @@ declare class RangeAdapter implements CommandHandler<CoreCommand> {
4246
4295
  private providers;
4247
4296
  constructor(getters: CoreGetters);
4248
4297
  static getters: readonly ["adaptFormulaStringDependencies", "copyFormulaStringForSheet", "extendRange", "getRangeString", "getRangeFromSheetXC", "createAdaptedRanges", "getRangeData", "getRangeDataFromXc", "getRangeDataFromZone", "getRangeFromRangeData", "getRangeFromZone", "getRangesUnion", "recomputeRanges", "isRangeValid", "removeRangesSheetPrefix"];
4249
- allowDispatch(cmd: Command): CommandResult;
4298
+ allowDispatch(cmd: CoreCommand): CommandResult;
4250
4299
  beforeHandle(command: Command): void;
4251
- handle(cmd: Command): void;
4300
+ handle(cmd: CoreCommand): void;
4252
4301
  finalize(): void;
4253
4302
  /**
4254
4303
  * Return a modified adapting function that verifies that after adapting a range, the range is still valid.
@@ -4347,9 +4396,10 @@ declare class CorePlugin<State = any> extends BasePlugin<State, CoreCommand> imp
4347
4396
  * the type of change that occurred.
4348
4397
  *
4349
4398
  * @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
4399
+ * @param sheetId an sheetId to adapt either range of that sheet specifically, or ranges pointing to that sheet
4400
+ * @param sheetName couple of old and new sheet names to adapt ranges pointing to that sheet
4351
4401
  */
4352
- adaptRanges(applyChange: ApplyRangeChange, sheetId?: UID, sheetName?: string): void;
4402
+ adaptRanges(applyChange: ApplyRangeChange, sheetId: UID, sheetName: AdaptSheetName): void;
4353
4403
  /**
4354
4404
  * Implement this method to clean unused external resources, such as images
4355
4405
  * stored on a server which have been deleted.
@@ -4500,7 +4550,7 @@ declare class CellPlugin extends CorePlugin<CoreState$1> implements CoreState$1
4500
4550
  [id: string]: Cell;
4501
4551
  };
4502
4552
  };
4503
- adaptRanges(applyChange: ApplyRangeChange, sheetId?: UID, sheetName?: string): void;
4553
+ adaptRanges(applyChange: ApplyRangeChange, sheetId: UID, sheetName: AdaptSheetName): void;
4504
4554
  allowDispatch(cmd: CoreCommand): CommandResult | CommandResult[];
4505
4555
  handle(cmd: CoreCommand): void;
4506
4556
  private clearZones;
@@ -4617,7 +4667,7 @@ declare abstract class AbstractChart {
4617
4667
  * This function should be used to update all the ranges of the chart after
4618
4668
  * a grid change (add/remove col/row, rename sheet, ...)
4619
4669
  */
4620
- abstract updateRanges(applyChange: ApplyRangeChange): AbstractChart;
4670
+ abstract updateRanges(applyChange: ApplyRangeChange, sheetId: UID, adaptSheetName: AdaptSheetName): AbstractChart;
4621
4671
  /**
4622
4672
  * Duplicate the chart when a sheet is duplicated.
4623
4673
  * The ranges that are in the same sheet as the chart are adapted to the new sheetId.
@@ -4647,7 +4697,7 @@ declare class ChartPlugin extends CorePlugin<ChartState> implements ChartState {
4647
4697
  readonly charts: Record<UID, AbstractChart | undefined>;
4648
4698
  private createChart;
4649
4699
  private validateChartDefinition;
4650
- adaptRanges(applyChange: ApplyRangeChange): void;
4700
+ adaptRanges(applyChange: ApplyRangeChange, sheetId: UID, adaptSheetName: AdaptSheetName): void;
4651
4701
  allowDispatch(cmd: Command): CommandResult | CommandResult[];
4652
4702
  handle(cmd: CoreCommand): void;
4653
4703
  getContextCreationChart(figureId: UID): ChartCreationContext | undefined;
@@ -4684,7 +4734,7 @@ declare class ConditionalFormatPlugin extends CorePlugin<ConditionalFormatState>
4684
4734
  };
4685
4735
  adaptCFFormulas(applyChange: ApplyRangeChange): void;
4686
4736
  adaptCFRanges(sheetId: UID, applyChange: ApplyRangeChange): void;
4687
- adaptRanges(applyChange: ApplyRangeChange, sheetId?: UID, sheetName?: string): void;
4737
+ adaptRanges(applyChange: ApplyRangeChange, sheetId: UID): void;
4688
4738
  allowDispatch(cmd: Command): CommandResult | CommandResult[];
4689
4739
  handle(cmd: CoreCommand): void;
4690
4740
  import(data: WorkbookData): void;
@@ -4735,7 +4785,7 @@ declare class DataValidationPlugin extends CorePlugin<DataValidationState> imple
4735
4785
  readonly rules: {
4736
4786
  [sheet: string]: DataValidationRule[];
4737
4787
  };
4738
- adaptRanges(applyChange: ApplyRangeChange, sheetId?: UID, sheetName?: string): void;
4788
+ adaptRanges(applyChange: ApplyRangeChange, sheetId: UID): void;
4739
4789
  private adaptDVFormulas;
4740
4790
  private adaptDVRanges;
4741
4791
  allowDispatch(cmd: Command): CommandResult | CommandResult[];
@@ -4770,7 +4820,7 @@ declare class FigurePlugin extends CorePlugin<FigureState> implements FigureStat
4770
4820
  [sheet: string]: Record<UID, Figure | undefined> | undefined;
4771
4821
  };
4772
4822
  readonly insertionOrders: UID[];
4773
- adaptRanges(applyChange: ApplyRangeChange, sheetId?: UID): void;
4823
+ adaptRanges(applyChange: ApplyRangeChange, sheetId: UID): void;
4774
4824
  allowDispatch(cmd: CoreCommand): CommandResult | CommandResult[];
4775
4825
  beforeHandle(cmd: CoreCommand): void;
4776
4826
  handle(cmd: CoreCommand): void;
@@ -4950,7 +5000,7 @@ declare class MergePlugin extends CorePlugin<MergeState> implements MergeState {
4950
5000
  readonly mergeCellMap: Record<UID, SheetMergeCellMap | undefined>;
4951
5001
  allowDispatch(cmd: CoreCommand): CommandResult | CommandResult[];
4952
5002
  handle(cmd: CoreCommand): void;
4953
- adaptRanges(applyChange: ApplyRangeChange, sheetId?: UID, sheetName?: string): void;
5003
+ adaptRanges(applyChange: ApplyRangeChange, sheetId: UID): void;
4954
5004
  getMerges(sheetId: UID): Merge[];
4955
5005
  getMerge({ sheetId, col, row }: CellPosition): Merge | undefined;
4956
5006
  getMergesInZone(sheetId: UID, zone: Zone): Merge[];
@@ -5040,7 +5090,7 @@ declare class PivotCorePlugin extends CorePlugin<CoreState> implements CoreState
5040
5090
  readonly compiledMeasureFormulas: Record<UID, Record<string, RangeCompiledFormula>>;
5041
5091
  allowDispatch(cmd: CoreCommand): CommandResult | CommandResult[];
5042
5092
  handle(cmd: CoreCommand): void;
5043
- adaptRanges(applyChange: ApplyRangeChange, sheetId?: UID, sheetName?: string): void;
5093
+ adaptRanges(applyChange: ApplyRangeChange): void;
5044
5094
  getPivotDisplayName(pivotId: UID): string;
5045
5095
  getPivotName(pivotId: UID): string;
5046
5096
  /**
@@ -5262,7 +5312,7 @@ declare class TablePlugin extends CorePlugin<TableState> implements TableState {
5262
5312
  static getters: readonly ["getCoreTable", "getCoreTables", "getCoreTableMatchingTopLeft"];
5263
5313
  readonly tables: Record<UID, Record<TableId, CoreTable | undefined>>;
5264
5314
  readonly nextTableId: number;
5265
- adaptRanges(applyChange: ApplyRangeChange, sheetId?: UID, sheetName?: string): void;
5315
+ adaptRanges(applyChange: ApplyRangeChange, sheetId: UID): void;
5266
5316
  allowDispatch(cmd: CoreCommand): CommandResult | CommandResult[];
5267
5317
  handle(cmd: CoreCommand): void;
5268
5318
  getCoreTables(sheetId: UID): CoreTable[];
@@ -6544,51 +6594,6 @@ declare module "chart.js" {
6544
6594
  }
6545
6595
  }
6546
6596
 
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
6597
  interface MigrationStep {
6593
6598
  migrate: (data: any) => any;
6594
6599
  }
@@ -11115,7 +11120,7 @@ declare class GaugeChart extends AbstractChart {
11115
11120
  private getDefinitionWithSpecificRanges;
11116
11121
  getDefinitionForExcel(): undefined;
11117
11122
  getContextCreation(): ChartCreationContext;
11118
- updateRanges(applyChange: ApplyRangeChange): GaugeChart;
11123
+ updateRanges(applyChange: ApplyRangeChange, sheetId: UID, adaptSheetName: AdaptSheetName): GaugeChart;
11119
11124
  }
11120
11125
 
11121
11126
  declare class LineChart extends AbstractChart {
@@ -12602,4 +12607,4 @@ declare const chartHelpers: {
12602
12607
  WaterfallChart: typeof WaterfallChart;
12603
12608
  };
12604
12609
 
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 };
12610
+ 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, 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 };