@odoo/o-spreadsheet 18.4.8 → 18.4.9

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;
@@ -3787,15 +3840,19 @@ type ApplyRangeChangeResult = {
3787
3840
  changeType: "NONE";
3788
3841
  };
3789
3842
  type ApplyRangeChange = (range: Range) => ApplyRangeChangeResult;
3843
+ type AdaptSheetName = {
3844
+ old: string;
3845
+ current: string;
3846
+ };
3790
3847
  type RangeAdapter$1 = {
3791
3848
  sheetId: UID;
3792
- sheetName: string;
3849
+ sheetName: AdaptSheetName;
3793
3850
  applyChange: ApplyRangeChange;
3794
3851
  };
3795
3852
  type Dimension = "COL" | "ROW";
3796
3853
  type ConsecutiveIndexes = HeaderIndex[];
3797
3854
  interface RangeProvider {
3798
- adaptRanges: (applyChange: ApplyRangeChange, sheetId?: UID, sheetName?: string) => void;
3855
+ adaptRanges: (applyChange: ApplyRangeChange, sheetId: UID, sheetName: AdaptSheetName) => void;
3799
3856
  }
3800
3857
  type Validation<T> = (toValidate: T) => CommandResult | CommandResult[];
3801
3858
  type Increment = 1 | -1 | 0;
@@ -4312,9 +4369,9 @@ declare class RangeAdapter implements CommandHandler<CoreCommand> {
4312
4369
  private providers;
4313
4370
  constructor(getters: CoreGetters);
4314
4371
  static getters: readonly ["adaptFormulaStringDependencies", "copyFormulaStringForSheet", "extendRange", "getRangeString", "getRangeFromSheetXC", "createAdaptedRanges", "getRangeData", "getRangeDataFromXc", "getRangeDataFromZone", "getRangeFromRangeData", "getRangeFromZone", "getRangesUnion", "recomputeRanges", "isRangeValid", "removeRangesSheetPrefix"];
4315
- allowDispatch(cmd: Command): CommandResult;
4372
+ allowDispatch(cmd: CoreCommand): CommandResult;
4316
4373
  beforeHandle(command: Command): void;
4317
- handle(cmd: Command): void;
4374
+ handle(cmd: CoreCommand): void;
4318
4375
  finalize(): void;
4319
4376
  /**
4320
4377
  * Return a modified adapting function that verifies that after adapting a range, the range is still valid.
@@ -4413,9 +4470,10 @@ declare class CorePlugin<State = any> extends BasePlugin<State, CoreCommand> imp
4413
4470
  * the type of change that occurred.
4414
4471
  *
4415
4472
  * @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
4473
+ * @param sheetId an sheetId to adapt either range of that sheet specifically, or ranges pointing to that sheet
4474
+ * @param sheetName couple of old and new sheet names to adapt ranges pointing to that sheet
4417
4475
  */
4418
- adaptRanges(applyChange: ApplyRangeChange, sheetId?: UID, sheetName?: string): void;
4476
+ adaptRanges(applyChange: ApplyRangeChange, sheetId: UID, sheetName: AdaptSheetName): void;
4419
4477
  /**
4420
4478
  * Implement this method to clean unused external resources, such as images
4421
4479
  * stored on a server which have been deleted.
@@ -4566,7 +4624,7 @@ declare class CellPlugin extends CorePlugin<CoreState$1> implements CoreState$1
4566
4624
  [id: string]: Cell;
4567
4625
  };
4568
4626
  };
4569
- adaptRanges(applyChange: ApplyRangeChange, sheetId?: UID, sheetName?: string): void;
4627
+ adaptRanges(applyChange: ApplyRangeChange, sheetId: UID, sheetName: AdaptSheetName): void;
4570
4628
  allowDispatch(cmd: CoreCommand): CommandResult | CommandResult[];
4571
4629
  handle(cmd: CoreCommand): void;
4572
4630
  private clearZones;
@@ -4683,7 +4741,7 @@ declare abstract class AbstractChart {
4683
4741
  * This function should be used to update all the ranges of the chart after
4684
4742
  * a grid change (add/remove col/row, rename sheet, ...)
4685
4743
  */
4686
- abstract updateRanges(applyChange: ApplyRangeChange): AbstractChart;
4744
+ abstract updateRanges(applyChange: ApplyRangeChange, sheetId: UID, adaptSheetName: AdaptSheetName): AbstractChart;
4687
4745
  /**
4688
4746
  * Duplicate the chart when a sheet is duplicated.
4689
4747
  * The ranges that are in the same sheet as the chart are adapted to the new sheetId.
@@ -4713,7 +4771,7 @@ declare class ChartPlugin extends CorePlugin<ChartState> implements ChartState {
4713
4771
  readonly charts: Record<UID, AbstractChart | undefined>;
4714
4772
  private createChart;
4715
4773
  private validateChartDefinition;
4716
- adaptRanges(applyChange: ApplyRangeChange): void;
4774
+ adaptRanges(applyChange: ApplyRangeChange, sheetId: UID, adaptSheetName: AdaptSheetName): void;
4717
4775
  allowDispatch(cmd: Command): CommandResult | CommandResult[];
4718
4776
  handle(cmd: CoreCommand): void;
4719
4777
  getContextCreationChart(figureId: UID): ChartCreationContext | undefined;
@@ -4750,7 +4808,7 @@ declare class ConditionalFormatPlugin extends CorePlugin<ConditionalFormatState>
4750
4808
  };
4751
4809
  adaptCFFormulas(applyChange: ApplyRangeChange): void;
4752
4810
  adaptCFRanges(sheetId: UID, applyChange: ApplyRangeChange): void;
4753
- adaptRanges(applyChange: ApplyRangeChange, sheetId?: UID, sheetName?: string): void;
4811
+ adaptRanges(applyChange: ApplyRangeChange, sheetId: UID): void;
4754
4812
  allowDispatch(cmd: Command): CommandResult | CommandResult[];
4755
4813
  handle(cmd: CoreCommand): void;
4756
4814
  import(data: WorkbookData): void;
@@ -4801,7 +4859,7 @@ declare class DataValidationPlugin extends CorePlugin<DataValidationState> imple
4801
4859
  readonly rules: {
4802
4860
  [sheet: string]: DataValidationRule[];
4803
4861
  };
4804
- adaptRanges(applyChange: ApplyRangeChange, sheetId?: UID, sheetName?: string): void;
4862
+ adaptRanges(applyChange: ApplyRangeChange, sheetId: UID): void;
4805
4863
  private adaptDVFormulas;
4806
4864
  private adaptDVRanges;
4807
4865
  allowDispatch(cmd: Command): CommandResult | CommandResult[];
@@ -4836,7 +4894,7 @@ declare class FigurePlugin extends CorePlugin<FigureState> implements FigureStat
4836
4894
  [sheet: string]: Record<UID, Figure | undefined> | undefined;
4837
4895
  };
4838
4896
  readonly insertionOrders: UID[];
4839
- adaptRanges(applyChange: ApplyRangeChange, sheetId?: UID): void;
4897
+ adaptRanges(applyChange: ApplyRangeChange, sheetId: UID): void;
4840
4898
  allowDispatch(cmd: CoreCommand): CommandResult | CommandResult[];
4841
4899
  beforeHandle(cmd: CoreCommand): void;
4842
4900
  handle(cmd: CoreCommand): void;
@@ -5016,7 +5074,7 @@ declare class MergePlugin extends CorePlugin<MergeState> implements MergeState {
5016
5074
  readonly mergeCellMap: Record<UID, SheetMergeCellMap | undefined>;
5017
5075
  allowDispatch(cmd: CoreCommand): CommandResult | CommandResult[];
5018
5076
  handle(cmd: CoreCommand): void;
5019
- adaptRanges(applyChange: ApplyRangeChange, sheetId?: UID, sheetName?: string): void;
5077
+ adaptRanges(applyChange: ApplyRangeChange, sheetId: UID): void;
5020
5078
  getMerges(sheetId: UID): Merge[];
5021
5079
  getMerge({ sheetId, col, row }: CellPosition): Merge | undefined;
5022
5080
  getMergesInZone(sheetId: UID, zone: Zone): Merge[];
@@ -5106,7 +5164,7 @@ declare class PivotCorePlugin extends CorePlugin<CoreState> implements CoreState
5106
5164
  readonly compiledMeasureFormulas: Record<UID, Record<string, RangeCompiledFormula>>;
5107
5165
  allowDispatch(cmd: CoreCommand): CommandResult | CommandResult[];
5108
5166
  handle(cmd: CoreCommand): void;
5109
- adaptRanges(applyChange: ApplyRangeChange, sheetId?: UID, sheetName?: string): void;
5167
+ adaptRanges(applyChange: ApplyRangeChange): void;
5110
5168
  getPivotDisplayName(pivotId: UID): string;
5111
5169
  getPivotName(pivotId: UID): string;
5112
5170
  /**
@@ -5327,7 +5385,7 @@ declare class TablePlugin extends CorePlugin<TableState> implements TableState {
5327
5385
  static getters: readonly ["getCoreTable", "getCoreTables", "getCoreTableMatchingTopLeft"];
5328
5386
  readonly tables: Record<UID, Record<TableId, CoreTable | undefined>>;
5329
5387
  readonly nextTableId: number;
5330
- adaptRanges(applyChange: ApplyRangeChange, sheetId?: UID, sheetName?: string): void;
5388
+ adaptRanges(applyChange: ApplyRangeChange, sheetId: UID): void;
5331
5389
  allowDispatch(cmd: CoreCommand): CommandResult | CommandResult[];
5332
5390
  handle(cmd: CoreCommand): void;
5333
5391
  getCoreTables(sheetId: UID): CoreTable[];
@@ -5579,59 +5637,6 @@ declare class EvaluationDataValidationPlugin extends CoreViewPlugin {
5579
5637
  private getEvaluatedCriterionValues;
5580
5638
  }
5581
5639
 
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
5640
  interface GridIcon {
5636
5641
  type: string;
5637
5642
  position: CellPosition;
@@ -11535,7 +11540,7 @@ declare class GaugeChart extends AbstractChart {
11535
11540
  private getDefinitionWithSpecificRanges;
11536
11541
  getDefinitionForExcel(): undefined;
11537
11542
  getContextCreation(): ChartCreationContext;
11538
- updateRanges(applyChange: ApplyRangeChange): GaugeChart;
11543
+ updateRanges(applyChange: ApplyRangeChange, sheetId: UID, adaptSheetName: AdaptSheetName): GaugeChart;
11539
11544
  }
11540
11545
 
11541
11546
  declare class LineChart extends AbstractChart {
@@ -13208,4 +13213,4 @@ declare const chartHelpers: {
13208
13213
  WaterfallChart: typeof WaterfallChart;
13209
13214
  };
13210
13215
 
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 };
13216
+ 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, 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 };