@odoo/o-spreadsheet 18.2.0-alpha.4 → 18.2.0-alpha.6

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.
@@ -1537,6 +1537,7 @@ type StatefulStream<Event, State> = {
1537
1537
  resetDefaultAnchor: (owner: unknown, state: State) => void;
1538
1538
  resetAnchor: (owner: unknown, state: State) => void;
1539
1539
  observe: (owner: unknown, callbacks: StreamCallbacks<Event>) => void;
1540
+ detachObserver: (owner: unknown) => void;
1540
1541
  release: (owner: unknown) => void;
1541
1542
  getBackToDefault(): void;
1542
1543
  };
@@ -2070,8 +2071,6 @@ declare class InternalViewport {
2070
2071
  right: HeaderIndex;
2071
2072
  offsetX: Pixel;
2072
2073
  offsetY: Pixel;
2073
- offsetScrollbarX: Pixel;
2074
- offsetScrollbarY: Pixel;
2075
2074
  canScrollVertically: boolean;
2076
2075
  canScrollHorizontally: boolean;
2077
2076
  viewportWidth: Pixel;
@@ -2127,11 +2126,11 @@ declare class InternalViewport {
2127
2126
  private setViewportOffsetX;
2128
2127
  private setViewportOffsetY;
2129
2128
  /** Corrects the viewport's horizontal offset based on the current structure
2130
- * To make sure that at least on column is visible inside the viewport.
2129
+ * To make sure that at least one column is visible inside the viewport.
2131
2130
  */
2132
2131
  private adjustViewportOffsetX;
2133
2132
  /** Corrects the viewport's vertical offset based on the current structure
2134
- * To make sure that at least on row is visible inside the viewport.
2133
+ * To make sure that at least one row is visible inside the viewport.
2135
2134
  */
2136
2135
  private adjustViewportOffsetY;
2137
2136
  /** Updates the pane zone and snapped offset based on its horizontal
@@ -2140,14 +2139,12 @@ declare class InternalViewport {
2140
2139
  /** Updates the pane zone and snapped offset based on its vertical
2141
2140
  * offset (will find Top) and its width (will find Bottom) */
2142
2141
  private adjustViewportZoneY;
2142
+ /** represents the part of the header on the topLeft that could be partially
2143
+ * hidden due to the scroll
2144
+ * */
2145
+ private get snapCorrection();
2143
2146
  }
2144
2147
 
2145
- type SheetViewports = {
2146
- topLeft: InternalViewport | undefined;
2147
- bottomLeft: InternalViewport | undefined;
2148
- topRight: InternalViewport | undefined;
2149
- bottomRight: InternalViewport;
2150
- };
2151
2148
  /**
2152
2149
  * EdgeScrollCases Schema
2153
2150
  *
@@ -2190,8 +2187,8 @@ type SheetViewports = {
2190
2187
  *
2191
2188
  */
2192
2189
  declare class SheetViewPlugin extends UIPlugin {
2193
- static getters: readonly ["getColIndex", "getRowIndex", "getActiveMainViewport", "getSheetViewDimension", "getSheetViewDimensionWithHeaders", "getMainViewportRect", "isVisibleInViewport", "getEdgeScrollCol", "getEdgeScrollRow", "getVisibleFigures", "getVisibleRect", "getVisibleRectWithoutHeaders", "getVisibleCellPositions", "getColRowOffsetInViewport", "getMainViewportCoordinates", "getActiveSheetScrollInfo", "getActiveSheetDOMScrollInfo", "getSheetViewVisibleCols", "getSheetViewVisibleRows", "getFrozenSheetViewRatio", "isPositionVisible", "getColDimensionsInViewport", "getRowDimensionsInViewport", "getAllActiveViewportsZones", "getRect"];
2194
- readonly viewports: Record<UID, SheetViewports | undefined>;
2190
+ static getters: readonly ["getColIndex", "getRowIndex", "getActiveMainViewport", "getSheetViewDimension", "getSheetViewDimensionWithHeaders", "getMainViewportRect", "isVisibleInViewport", "getEdgeScrollCol", "getEdgeScrollRow", "getVisibleFigures", "getVisibleRect", "getVisibleRectWithoutHeaders", "getVisibleCellPositions", "getColRowOffsetInViewport", "getMainViewportCoordinates", "getActiveSheetScrollInfo", "getSheetViewVisibleCols", "getSheetViewVisibleRows", "getFrozenSheetViewRatio", "isPixelPositionVisible", "getColDimensionsInViewport", "getRowDimensionsInViewport", "getAllActiveViewportsZonesAndRect", "getRect"];
2191
+ private viewports;
2195
2192
  /**
2196
2193
  * The viewport dimensions are usually set by one of the components
2197
2194
  * (i.e. when grid component is mounted) to properly reflect its state in the DOM.
@@ -2225,16 +2222,11 @@ declare class SheetViewPlugin extends UIPlugin {
2225
2222
  getSheetViewDimension(): DOMDimension;
2226
2223
  /** type as pane, not viewport but basically pane extends viewport */
2227
2224
  getActiveMainViewport(): Viewport;
2228
- /**
2229
- * Return the scroll info of the active sheet, ie. the offset between the viewport left/top side and
2230
- * the grid left/top side, snapped to the columns/rows.
2231
- */
2232
- getActiveSheetScrollInfo(): SheetScrollInfo;
2233
2225
  /**
2234
2226
  * Return the DOM scroll info of the active sheet, ie. the offset between the viewport left/top side and
2235
2227
  * the grid left/top side, corresponding to the scroll of the scrollbars and not snapped to the grid.
2236
2228
  */
2237
- getActiveSheetDOMScrollInfo(): SheetDOMScrollInfo;
2229
+ getActiveSheetScrollInfo(): SheetDOMScrollInfo;
2238
2230
  getSheetViewVisibleCols(): HeaderIndex[];
2239
2231
  getSheetViewVisibleRows(): HeaderIndex[];
2240
2232
  /**
@@ -2246,13 +2238,13 @@ declare class SheetViewPlugin extends UIPlugin {
2246
2238
  */
2247
2239
  getMainViewportRect(): Rect;
2248
2240
  private getMaximumSheetOffset;
2249
- getColRowOffsetInViewport(dimension: Dimension, referenceIndex: HeaderIndex, index: HeaderIndex): Pixel;
2241
+ getColRowOffsetInViewport(dimension: Dimension, referenceHeaderIndex: HeaderIndex, targetHeaderIndex: HeaderIndex): Pixel;
2250
2242
  /**
2251
2243
  * Check if a given position is visible in the viewport.
2252
2244
  */
2253
2245
  isVisibleInViewport({ sheetId, col, row }: CellPosition): boolean;
2254
2246
  getEdgeScrollCol(x: number, previousX: number, startingX: number): EdgeScrollInfo;
2255
- getEdgeScrollRow(y: number, previousY: number, tartingY: number): EdgeScrollInfo;
2247
+ getEdgeScrollRow(y: number, previousY: number, startingY: number): EdgeScrollInfo;
2256
2248
  /**
2257
2249
  * Computes the coordinates and size to draw the zone on the canvas
2258
2250
  */
@@ -2282,7 +2274,10 @@ declare class SheetViewPlugin extends UIPlugin {
2282
2274
  * of the current viewport
2283
2275
  */
2284
2276
  getRowDimensionsInViewport(sheetId: UID, row: HeaderIndex): HeaderDimensions;
2285
- getAllActiveViewportsZones(): Zone[];
2277
+ getAllActiveViewportsZonesAndRect(): {
2278
+ zone: Zone;
2279
+ rect: Rect;
2280
+ }[];
2286
2281
  private ensureMainViewportExist;
2287
2282
  private getSubViewports;
2288
2283
  private checkPositiveDimension;
@@ -2309,12 +2304,12 @@ declare class SheetViewPlugin extends UIPlugin {
2309
2304
  */
2310
2305
  private shiftVertically;
2311
2306
  getVisibleFigures(): Figure[];
2312
- isPositionVisible(position: PixelPosition): boolean;
2307
+ isPixelPositionVisible(position: PixelPosition): boolean;
2313
2308
  getFrozenSheetViewRatio(sheetId: UID): {
2314
2309
  xRatio: number;
2315
2310
  yRatio: number;
2316
2311
  };
2317
- private recomposeRect;
2312
+ mapViewportsToRect(sheetId: UID, rectCallBack: (viewport: InternalViewport) => Rect | undefined): Rect;
2318
2313
  }
2319
2314
 
2320
2315
  declare enum ClipboardMIMEType {
@@ -3404,6 +3399,7 @@ type Matrix<T = unknown> = T[][];
3404
3399
  type FunctionResultObject = {
3405
3400
  value: CellValue;
3406
3401
  format?: Format;
3402
+ errorOriginPosition?: CellPosition;
3407
3403
  message?: string;
3408
3404
  };
3409
3405
  type FunctionResultNumber = {
@@ -3459,10 +3455,6 @@ interface PaneDivision {
3459
3455
  ySplit: number;
3460
3456
  }
3461
3457
  type BorderPosition = "all" | "hv" | "h" | "v" | "external" | "left" | "top" | "right" | "bottom" | "clear";
3462
- type BorderDescription = {
3463
- vertical?: BorderDescr;
3464
- horizontal?: BorderDescr;
3465
- } | undefined;
3466
3458
  declare const enum DIRECTION {
3467
3459
  UP = "up",
3468
3460
  DOWN = "down",
@@ -4103,7 +4095,7 @@ declare class CorePlugin<State = any> extends BasePlugin<State, CoreCommand> imp
4103
4095
  }
4104
4096
 
4105
4097
  interface BordersPluginState {
4106
- readonly borders: Record<UID, (BorderDescription[] | undefined)[] | undefined>;
4098
+ readonly borders: Record<UID, ((Border$1 | undefined)[] | undefined)[] | undefined>;
4107
4099
  }
4108
4100
  /**
4109
4101
  * Formatting plugin.
@@ -4866,7 +4858,7 @@ declare class SheetPlugin extends CorePlugin<SheetState> implements SheetState {
4866
4858
  getCellPosition(cellId: UID): CellPosition;
4867
4859
  getNumberCols(sheetId: UID): number;
4868
4860
  getNumberRows(sheetId: UID): number;
4869
- getNumberHeaders(sheetId: UID, dimension: Dimension): number;
4861
+ getNumberHeaders(sheetId: UID, dimension: Dimension): HeaderIndex;
4870
4862
  getNextSheetName(baseName?: string): string;
4871
4863
  getSheetSize(sheetId: UID): ZoneDimension;
4872
4864
  getSheetZone(sheetId: UID): Zone;
@@ -6123,27 +6115,13 @@ interface Image {
6123
6115
  * Column and row headers are not included in the viewport.
6124
6116
  */
6125
6117
  type Viewport = Zone & Alias;
6126
- interface SheetScrollInfo {
6127
- /**
6128
- * The offset in the X coordinate between the viewport left side and
6129
- * the grid left side (left of column "A").
6130
- */
6131
- scrollX: Pixel;
6132
- /**
6133
- * The offset in the Y coordinate between the viewport top side and
6134
- * the grid top side (top of row "1").
6135
- */
6136
- scrollY: Pixel;
6137
- }
6138
6118
  interface SheetDOMScrollInfo {
6139
6119
  /**
6140
- * The scrollBar offset in the X coordinate, which can differ from offsetX as
6141
- * the former is "smooth" and the latter will "snap" from one cell coordinate to the other
6120
+ * The scrollBar offset in the X coordinate
6142
6121
  */
6143
6122
  scrollX: Pixel;
6144
6123
  /**
6145
- * The scrollBar offset in the Y coordinate, which can differ from offsetX as
6146
- * the former is "smooth" and the latter will "snap" from one cell coordinate to the other
6124
+ * The scrollBar offset in the Y coordinate
6147
6125
  */
6148
6126
  scrollY: Pixel;
6149
6127
  }
@@ -8177,25 +8155,6 @@ declare class ContentEditableHelper {
8177
8155
  start: number;
8178
8156
  end: number;
8179
8157
  };
8180
- /**
8181
- * Computes the text 'index' inside this.el based on the currently selected node and its offset.
8182
- * The selected node is either a Text node or an Element node.
8183
- *
8184
- * case 1 -Text node:
8185
- * the offset is the number of characters from the start of the node. We have to add this offset to the
8186
- * content length of all previous nodes.
8187
- *
8188
- * case 2 - Element node:
8189
- * the offset is the number of child nodes before the selected node. We have to add the content length of
8190
- * all the bnodes prior to the selected node as well as the content of the child node before the offset.
8191
- *
8192
- * See the MDN documentation for more details.
8193
- * https://developer.mozilla.org/en-US/docs/Web/API/Range/startOffset
8194
- * https://developer.mozilla.org/en-US/docs/Web/API/Range/endOffset
8195
- *
8196
- */
8197
- private findSelectionIndex;
8198
- private getStartAndEndSelection;
8199
8158
  getText(): string;
8200
8159
  }
8201
8160
 
@@ -8304,7 +8263,7 @@ declare abstract class AbstractComposerStore extends SpreadsheetStore {
8304
8263
  * Replace the reference of the old zone by the new one.
8305
8264
  */
8306
8265
  private updateComposerRange;
8307
- private getZoneReference;
8266
+ protected getZoneReference(zone: Zone | UnboundedZone): string;
8308
8267
  private getRangeReference;
8309
8268
  /**
8310
8269
  * Replace the current selection by a new text.
@@ -10024,6 +9983,7 @@ interface Props$i {
10024
9983
  onConfirm: (content: string) => void;
10025
9984
  composerContent: string;
10026
9985
  defaultRangeSheetId: UID;
9986
+ defaultStatic?: boolean;
10027
9987
  contextualAutocomplete?: AutoCompleteProviderDefinition;
10028
9988
  placeholder?: string;
10029
9989
  class?: string;
@@ -10041,6 +10001,10 @@ declare class StandaloneComposer extends Component<Props$i, SpreadsheetChildEnv>
10041
10001
  type: StringConstructor;
10042
10002
  optional: boolean;
10043
10003
  };
10004
+ defaultStatic: {
10005
+ type: BooleanConstructor;
10006
+ optional: boolean;
10007
+ };
10044
10008
  onConfirm: FunctionConstructor;
10045
10009
  contextualAutocomplete: {
10046
10010
  type: ObjectConstructor;
@@ -10068,6 +10032,7 @@ declare class StandaloneComposer extends Component<Props$i, SpreadsheetChildEnv>
10068
10032
  };
10069
10033
  static defaultProps: {
10070
10034
  composerContent: string;
10035
+ defaultStatic: boolean;
10071
10036
  };
10072
10037
  private composerFocusStore;
10073
10038
  private standaloneComposerStore;
@@ -13232,4 +13197,4 @@ declare const chartHelpers: {
13232
13197
  WaterfallChart: typeof WaterfallChart;
13233
13198
  };
13234
13199
 
13235
- export { AST, ASTFuncall, AboveAverageRule, AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, ActivateNextSheetCommand, ActivatePreviousSheetCommand, ActivateSheetCommand, AddColumnsRowsCommand, AddConditionalFormatCommand, AddDataValidationCommand, AddFunctionDescription, AddMergeCommand, AddPivotCommand, Aggregator, Alias, Align, AlphanumericIncrementModifier, 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, BorderDescription, BorderPosition, BorderStyle, Box, BoxTextContent, CHART_TYPES, CSSProperties, CancelledReason, Cell, CellErrorType, CellIsRule, CellPosition, CellValue, CellValueType, ChangeType, ChartAxisFormats, ChartCreationContext, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartRuntimeGenerationArgs, ChartType, 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, 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, FigureSize, 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, Matrix, Maybe, MenuMouseEvent, Merge, Model, MoveColumnsRowsCommand, MoveConditionalFormatCommand, MoveRangeCommand, MoveSheetCommand, MoveViewportDownCommand, MoveViewportToCellCommand, MoveViewportUpCommand, NewLocalStateUpdateEvent, NotContainsTextRule, NotificationType, NumberCell, OSClipboardContent, Offset, OperationSequenceNode, OrderedLayers, PaintFormat, PaneDivision, ParsedOSClipboardContent, PasteCommand, PasteFromOSClipboardCommand, Pivot, PivotColRowDomain, PivotCoreDefinition, PivotCoreDimension, PivotCoreMeasure, PivotDimension$1 as PivotDimension, PivotDomain, PivotEmptyCell, PivotField, PivotFields, PivotHeaderCell, PivotMeasure, PivotMeasureDisplay, PivotMeasureDisplayType, PivotMeasureHeaderCell, PivotNode, PivotRuntimeDefinition, PivotSortedColumn, PivotTableCell, PivotTableColumn, PivotTableData, PivotTableRow, PivotTimeAdapter, PivotTimeAdapterNotNull, PivotValueCell, Pixel, PixelPosition, Position$1 as Position, PositionDependentCommand, PropsOf, RGBA, Range, RangeCompiledFormula, RangeData, RangePart, RangeProvider, 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, RevisionsDroppedEvent, Row, SPREADSHEET_DIMENSIONS, ScrollDirection$1 as ScrollDirection, SelectFigureCommand, Selection, SelectionStep, SetBorderCommand, SetContextualFormatCommand, SetDecimalCommand, SetDecimalStep, SetFormattingCommand, SetGridLinesVisibilityCommand, SetViewportOffsetCommand, SetZoneBordersCommand, Sheet, SheetDOMScrollInfo, SheetData, SheetDependentCommand, SheetScrollInfo, 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, 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 };
13200
+ export { AST, ASTFuncall, AboveAverageRule, AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, ActivateNextSheetCommand, ActivatePreviousSheetCommand, ActivateSheetCommand, AddColumnsRowsCommand, AddConditionalFormatCommand, AddDataValidationCommand, AddFunctionDescription, AddMergeCommand, AddPivotCommand, Aggregator, Alias, Align, AlphanumericIncrementModifier, 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, ChartType, 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, 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, FigureSize, 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, Matrix, Maybe, MenuMouseEvent, Merge, Model, MoveColumnsRowsCommand, MoveConditionalFormatCommand, MoveRangeCommand, MoveSheetCommand, MoveViewportDownCommand, MoveViewportToCellCommand, MoveViewportUpCommand, NewLocalStateUpdateEvent, NotContainsTextRule, NotificationType, NumberCell, OSClipboardContent, Offset, OperationSequenceNode, OrderedLayers, PaintFormat, PaneDivision, ParsedOSClipboardContent, PasteCommand, PasteFromOSClipboardCommand, Pivot, PivotColRowDomain, PivotCoreDefinition, PivotCoreDimension, PivotCoreMeasure, PivotDimension$1 as PivotDimension, PivotDomain, PivotEmptyCell, PivotField, PivotFields, PivotHeaderCell, PivotMeasure, PivotMeasureDisplay, PivotMeasureDisplayType, PivotMeasureHeaderCell, PivotNode, PivotRuntimeDefinition, PivotSortedColumn, PivotTableCell, PivotTableColumn, PivotTableData, PivotTableRow, PivotTimeAdapter, PivotTimeAdapterNotNull, PivotValueCell, Pixel, PixelPosition, Position$1 as Position, PositionDependentCommand, PropsOf, RGBA, Range, RangeCompiledFormula, RangeData, RangePart, RangeProvider, 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, RevisionsDroppedEvent, Row, SPREADSHEET_DIMENSIONS, ScrollDirection$1 as ScrollDirection, SelectFigureCommand, Selection, SelectionStep, SetBorderCommand, SetContextualFormatCommand, SetDecimalCommand, SetDecimalStep, SetFormattingCommand, SetGridLinesVisibilityCommand, SetViewportOffsetCommand, SetZoneBordersCommand, Sheet, SheetDOMScrollInfo, SheetData, SheetDependentCommand, 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, 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 };