@odoo/o-spreadsheet 17.4.0-alpha.0 → 17.4.0-alpha.2

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.
@@ -562,25 +562,31 @@ interface PivotTableData {
562
562
  cols: PivotTableColumn[][];
563
563
  rows: PivotTableRow[];
564
564
  measures: string[];
565
- rowTitle?: string;
566
565
  }
567
- interface PivotTableCell {
568
- isHeader: boolean;
569
- domain?: string[];
570
- content?: string;
571
- measure?: string;
566
+ interface PivotHeaderCell {
567
+ type: "HEADER";
568
+ domain: PivotDomain;
569
+ }
570
+ interface PivotValueCell {
571
+ type: "VALUE";
572
+ domain: PivotDomain;
573
+ measure: string;
574
+ }
575
+ interface PivotEmptyCell {
576
+ type: "EMPTY";
572
577
  }
578
+ type PivotTableCell = PivotHeaderCell | PivotValueCell | PivotEmptyCell;
573
579
  interface PivotTimeAdapter<T> {
574
580
  normalizeFunctionValue: (value: string) => T;
575
581
  formatValue: (normalizedValue: T, locale?: Locale) => string;
576
582
  getFormat: (locale?: Locale) => Format | undefined;
577
583
  toCellValue: (normalizedValue: T) => CellValue;
578
584
  }
579
- interface DomainArg {
585
+ interface PivotNode {
580
586
  field: string;
581
- value: string;
587
+ value: string | number | boolean;
582
588
  }
583
- type StringDomainArgs = string[];
589
+ type PivotDomain = PivotNode[];
584
590
 
585
591
  interface Table {
586
592
  readonly id: TableId;
@@ -4194,12 +4200,11 @@ declare class SpreadsheetPivotTable {
4194
4200
  readonly columns: PivotTableColumn[][];
4195
4201
  readonly rows: PivotTableRow[];
4196
4202
  readonly measures: string[];
4197
- readonly rowTitle?: string;
4198
4203
  readonly maxIndent: number;
4199
4204
  readonly pivotCells: {
4200
4205
  [key: string]: PivotTableCell[][];
4201
4206
  };
4202
- constructor(columns: PivotTableColumn[][], rows: PivotTableRow[], measures: string[], rowTitle?: string);
4207
+ constructor(columns: PivotTableColumn[][], rows: PivotTableRow[], measures: string[]);
4203
4208
  /**
4204
4209
  * Get the number of columns leafs (i.e. the number of the last row of columns)
4205
4210
  */
@@ -4215,7 +4220,6 @@ declare class SpreadsheetPivotTable {
4215
4220
  cols: PivotTableColumn[][];
4216
4221
  rows: PivotTableRow[];
4217
4222
  measures: string[];
4218
- rowTitle: string | undefined;
4219
4223
  };
4220
4224
  }
4221
4225
 
@@ -4229,8 +4233,9 @@ interface Pivot<T = PivotRuntimeDefinition> {
4229
4233
  isValid(): boolean;
4230
4234
  getTableStructure(): SpreadsheetPivotTable;
4231
4235
  getFields(): PivotFields | undefined;
4232
- getPivotHeaderValueAndFormat(domain: StringDomainArgs): FPayload;
4233
- getPivotCellValueAndFormat(measure: string, domain: StringDomainArgs): FPayload;
4236
+ getPivotHeaderValueAndFormat(domain: PivotDomain): FPayload;
4237
+ getPivotCellValueAndFormat(measure: string, domain: PivotDomain): FPayload;
4238
+ getPivotMeasureValue(measure: string, domain: PivotDomain): FPayload;
4234
4239
  getMeasure: (name: string) => PivotMeasure;
4235
4240
  assertIsValid({ throwOnError }: {
4236
4241
  throwOnError: boolean;
@@ -4272,7 +4277,7 @@ declare class PivotUIPlugin extends UIPlugin {
4272
4277
  * If the cell is the result of PIVOT, the result is the domain of the cell
4273
4278
  * as if it was the individual pivot formula
4274
4279
  */
4275
- getPivotDomainArgsFromPosition(position: CellPosition): (CellValue | Matrix<CellValue> | undefined)[] | undefined;
4280
+ getPivotDomainArgsFromPosition(position: CellPosition): PivotDomain | undefined;
4276
4281
  getPivot(pivotId: UID): Pivot<PivotRuntimeDefinition>;
4277
4282
  isPivotUnused(pivotId: UID): boolean;
4278
4283
  /**
@@ -4280,7 +4285,7 @@ declare class PivotUIPlugin extends UIPlugin {
4280
4285
  * a pivot function are valid according to the pivot definition.
4281
4286
  * e.g. =PIVOT.VALUE(1,"revenue","country_id",...,"create_date:month",...,"source_id",...)
4282
4287
  */
4283
- areDomainArgsFieldsValid(pivotId: UID, domainArgs: string[]): boolean;
4288
+ areDomainArgsFieldsValid(pivotId: UID, domain: PivotDomain): boolean;
4284
4289
  /**
4285
4290
  * Refresh the cache of a pivot
4286
4291
  */
@@ -7246,15 +7251,18 @@ interface ClosedSidePanel {
7246
7251
  }
7247
7252
  type SidePanelState = OpenSidePanel | ClosedSidePanel;
7248
7253
  declare class SidePanelStore extends SpreadsheetStore {
7249
- mutators: readonly ["open", "toggle", "close"];
7254
+ mutators: readonly ["open", "toggle", "close", "changePanelSize", "resetPanelSize"];
7250
7255
  initialPanelProps: SidePanelProps;
7251
7256
  componentTag: string;
7257
+ panelSize: number;
7252
7258
  get isOpen(): boolean;
7253
7259
  get panelProps(): SidePanelProps;
7254
7260
  get panelKey(): string | undefined;
7255
7261
  open(componentTag: string, panelProps?: SidePanelProps): void;
7256
7262
  toggle(componentTag: string, panelProps: SidePanelProps): void;
7257
7263
  close(): void;
7264
+ changePanelSize(size: number, spreadsheetElWidth: number): void;
7265
+ resetPanelSize(): void;
7258
7266
  private computeState;
7259
7267
  }
7260
7268
 
@@ -8270,6 +8278,7 @@ declare class FilterIcon extends Component<Props$v, SpreadsheetChildEnv> {
8270
8278
 
8271
8279
  declare class FilterIconsOverlay extends Component<{}, SpreadsheetChildEnv> {
8272
8280
  static template: string;
8281
+ static props: {};
8273
8282
  static components: {
8274
8283
  GridCellIcon: typeof GridCellIcon;
8275
8284
  FilterIcon: typeof FilterIcon;
@@ -9064,55 +9073,14 @@ declare function makePivotFormula(formula: "PIVOT.VALUE" | "PIVOT.HEADER", args:
9064
9073
  *
9065
9074
  */
9066
9075
  declare function getMaxObjectId(o: object): number;
9067
- /**
9068
- * Get the first Pivot function description of the given formula.
9069
- */
9070
- declare function getFirstPivotFunction(tokens: Token[]): {
9071
- functionName: string;
9072
- args: AST[];
9073
- };
9074
- /**
9075
- * Parse a spreadsheet formula and detect the number of PIVOT functions that are
9076
- * present in the given formula.
9077
- */
9078
- declare function getNumberOfPivotFunctions(tokens: Token[]): number;
9079
9076
  /**
9080
9077
  * Parse a dimension string into a pivot dimension definition.
9081
9078
  * e.g "create_date:month" => { name: "create_date", granularity: "month" }
9082
9079
  */
9083
9080
  declare function parseDimension(dimension: string): PivotCoreDimension;
9084
9081
  declare function isDateField(field: PivotField): boolean;
9085
- /**
9086
- * Create a proposal entry for the compose autocomplete
9087
- * to insert a field name string in a formula.
9088
- */
9089
- declare function makeFieldProposal(field: PivotField, granularity?: Granularity): {
9090
- text: string;
9091
- description: string;
9092
- htmlContent: {
9093
- value: string;
9094
- color: "#00a82d";
9095
- }[];
9096
- fuzzySearchKey: string;
9097
- };
9098
- /**
9099
- * Perform the autocomplete of the composer by inserting the value
9100
- * at the cursor position, replacing the current token if necessary.
9101
- * Must be bound to the autocomplete provider.
9102
- */
9103
- declare function insertTokenAfterArgSeparator(this: {
9104
- composer: ComposerStore;
9105
- }, tokenAtCursor: EnrichedToken, value: string): void;
9106
- /**
9107
- * Perform the autocomplete of the composer by inserting the value
9108
- * at the cursor position, replacing the current token if necessary.
9109
- * Must be bound to the autocomplete provider.
9110
- * @param {EnrichedToken} tokenAtCursor
9111
- * @param {string} value
9112
- */
9113
- declare function insertTokenAfterLeftParenthesis(this: {
9114
- composer: ComposerStore;
9115
- }, tokenAtCursor: EnrichedToken, value: string): void;
9082
+ declare function toPivotDomain(domainStr: string[]): PivotDomain;
9083
+ declare function flatPivotDomain(domain: PivotDomain): (string | number | boolean)[];
9116
9084
 
9117
9085
  interface Props$c {
9118
9086
  definition: PivotRuntimeDefinition;
@@ -9162,7 +9130,7 @@ declare class PivotLayoutConfigurator extends Component<Props$c, SpreadsheetChil
9162
9130
 
9163
9131
  declare class PivotSidePanelStore extends SpreadsheetStore {
9164
9132
  private pivotId;
9165
- mutators: readonly ["applyUpdate", "renamePivot", "update"];
9133
+ mutators: readonly ["reset", "deferUpdates", "applyUpdate", "discardPendingUpdate", "renamePivot", "update"];
9166
9134
  private updatesAreDeferred;
9167
9135
  private draft;
9168
9136
  constructor(get: Get, pivotId: UID);
@@ -9231,6 +9199,50 @@ declare function getDefaultChartJsRuntime(chart: AbstractChart, labels: string[]
9231
9199
  /** See https://www.chartjs.org/docs/latest/charts/area.html#filling-modes */
9232
9200
  declare function getFillingMode(index: number): "origin" | number;
9233
9201
 
9202
+ /**
9203
+ * Create a proposal entry for the compose autowcomplete
9204
+ * to insert a field name string in a formula.
9205
+ */
9206
+ declare function makeFieldProposal(field: PivotField, granularity?: Granularity): {
9207
+ text: string;
9208
+ description: string;
9209
+ htmlContent: {
9210
+ value: string;
9211
+ color: "#00a82d";
9212
+ }[];
9213
+ fuzzySearchKey: string;
9214
+ };
9215
+ /**
9216
+ * Perform the autocomplete of the composer by inserting the value
9217
+ * at the cursor position, replacing the current token if necessary.
9218
+ * Must be bound to the autocomplete provider.
9219
+ */
9220
+ declare function insertTokenAfterArgSeparator(this: {
9221
+ composer: ComposerStore;
9222
+ }, tokenAtCursor: EnrichedToken, value: string): void;
9223
+ /**
9224
+ * Perform the autocomplete of the composer by inserting the value
9225
+ * at the cursor position, replacing the current token if necessary.
9226
+ * Must be bound to the autocomplete provider.
9227
+ * @param {EnrichedToken} tokenAtCursor
9228
+ * @param {string} value
9229
+ */
9230
+ declare function insertTokenAfterLeftParenthesis(this: {
9231
+ composer: ComposerStore;
9232
+ }, tokenAtCursor: EnrichedToken, value: string): void;
9233
+ /**
9234
+ * Get the first Pivot function description of the given formula.
9235
+ */
9236
+ declare function getFirstPivotFunction(tokens: Token[]): {
9237
+ functionName: string;
9238
+ args: AST[];
9239
+ };
9240
+ /**
9241
+ * Parse a spreadsheet formula and detect the number of PIVOT functions that are
9242
+ * present in the given formula.
9243
+ */
9244
+ declare function getNumberOfPivotFunctions(tokens: Token[]): number;
9245
+
9234
9246
  declare function getPivotHighlights(getters: Getters, pivotId: UID): Highlight$1[];
9235
9247
 
9236
9248
  declare function pivotTimeAdapter(granularity: Granularity): PivotTimeAdapter<string | number | false>;
@@ -9629,10 +9641,12 @@ declare class SidePanel extends Component<{}, SpreadsheetChildEnv> {
9629
9641
  static template: string;
9630
9642
  static props: {};
9631
9643
  sidePanelStore: Store<SidePanelStore>;
9644
+ spreadsheetRect: Rect;
9632
9645
  setup(): void;
9633
9646
  get panel(): SidePanelContent;
9634
9647
  close(): void;
9635
9648
  getTitle(): string;
9649
+ startHandleDrag(ev: MouseEvent): void;
9636
9650
  }
9637
9651
 
9638
9652
  declare const sortRange: ActionSpec;
@@ -10141,13 +10155,14 @@ declare class Spreadsheet extends Component<SpreadsheetProps, SpreadsheetChildEn
10141
10155
  spreadsheetRef: {
10142
10156
  el: HTMLElement | null;
10143
10157
  };
10158
+ spreadsheetRect: Rect;
10144
10159
  private _focusGrid?;
10145
10160
  private keyDownMapping;
10146
10161
  private isViewportTooSmall;
10147
10162
  private notificationStore;
10148
10163
  private composerFocusStore;
10149
10164
  get model(): Model;
10150
- getStyle(): "grid-template-rows: auto;" | "grid-template-rows: 63px auto 37px";
10165
+ getStyle(): string;
10151
10166
  setup(): void;
10152
10167
  private bindModelEvents;
10153
10168
  private unbindModelEvents;
@@ -11186,6 +11201,8 @@ declare const helpers: {
11186
11201
  insertTokenAfterLeftParenthesis: typeof insertTokenAfterLeftParenthesis;
11187
11202
  mergeContiguousZones: typeof mergeContiguousZones;
11188
11203
  getPivotHighlights: typeof getPivotHighlights;
11204
+ toPivotDomain: typeof toPivotDomain;
11205
+ flatPivotDomain: typeof flatPivotDomain;
11189
11206
  pivotTimeAdapter: typeof pivotTimeAdapter;
11190
11207
  UNDO_REDO_PIVOT_COMMANDS: string[];
11191
11208
  };
@@ -11274,4 +11291,4 @@ declare const constants: {
11274
11291
  };
11275
11292
  };
11276
11293
 
11277
- export { AST, ASTFuncall, AboveAverageRule, AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, ActivateNextSheetCommand, ActivatePaintFormatCommand, 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, CancelPaintFormatCommand, CancelledReason, Cell, CellData, CellErrorType, CellIsRule, CellPosition, CellValue, CellValueType, ChangeType, ChartCreationContext, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartType, ChartWithAxisDefinition, CleanClipBoardHighlightCommand, ClearCellCommand, ClearFormattingCommand, Client, ClientId, ClientJoinedMessage, ClientLeftMessage, ClientMovedMessage, ClientPosition, ClipboardCell, ClipboardCellData, ClipboardContent, ClipboardData, ClipboardFigureData, ClipboardMIMEType, ClipboardOperation, ClipboardOptions, ClipboardPasteOptions, ClipboardPasteTarget, Cloneable, CollaborationMessage, CollaborativeEvent, CollaborativeEventReceived, CollaborativeEventTypes, Color, ColorScaleMidPointThreshold, ColorScaleRule, ColorScaleThreshold, Command, CommandDispatcher, CommandHandler, CommandResult, CommandTypes, CommonPivotCoreDefinition, CompiledFormula, ComputeFunction, ComputedTableStyle, ConditionalFormat, ConditionalFormatInternal, ConditionalFormatRule, ConditionalFormattingOperatorValues, ConsecutiveIndexes, ContainsTextRule, CopyCommand, CopyModifier, CopyPasteCellsAboveCommand, CopyPasteCellsOnLeftCommand, CoreCommand, CoreCommandDispatcher, CoreCommandTypes, CoreGetters, CorePlugin, CoreTable, CoreTableType, CoreViewCommand, CoreViewCommandTypes, CreateChartCommand, CreateFigureCommand, CreateImageOverCommand, CreateRevisionOptions, CreateSheetCommand, CreateTableCommand, CreateTableStyleCommand, Currency, CustomFormulaCriterion, CustomizedDataSet, CutCommand, DEFAULT_LOCALE, DEFAULT_LOCALES, DIRECTION, DOMCoordinates, DOMDimension, DataSet, DataValidationCriterion, DataValidationCriterionType, DataValidationDateCriterion, DataValidationRule, DataValidationRuleData, DatasetDesign, DatasetValues, DateCriterionValue, DateIsAfterCriterion, DateIsBeforeCriterion, DateIsBetweenCriterion, DateIsCriterion, DateIsNotBetweenCriterion, DateIsOnOrAfterCriterion, DateIsOnOrBeforeCriterion, DateIsValidCriterion, DebouncedFunction, DeleteCellCommand, DeleteContentCommand, DeleteFigureCommand, DeleteSheetCommand, Dependencies, Dimension, Direction$1 as Direction, DispatchResult, DomainArg, DuplicatePivotCommand, DuplicateSheetCommand, DynamicTable, EdgeScrollInfo, EditTextOptions, EmptyCell, EndsWithRule, EnrichedToken, EnsureRange, ErrorCell, EvalContext, EvaluateCellsCommand, EvaluatedCell, EvaluationError, ExcelCellData, ExcelChartDataset, ExcelChartDefinition, ExcelChartType, ExcelFigureSize, ExcelFilterData, ExcelHeaderData, ExcelSheetData, ExcelTableData, ExcelWorkbookData, ExpressionRule, FPayload, FPayloadNumber, Figure, FigureData, FigureSize, Filter, FilterId, FoldAllHeaderGroupsCommand, FoldHeaderGroupCommand, FoldHeaderGroupsInZoneCommand, Format, FormattedValue, FormulaCell, FormulaModifier, FormulaToExecute, FreezeColumnsCommand, FreezeRowsCommand, FunctionDescription, FunctionRegistry, GeneratorCell, 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, 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, Offset, OperationSequenceNode, OrderedLayers, PLAIN_TEXT_FORMAT, PaneDivision, PasteCommand, PasteFromOSClipboardCommand, Pivot, PivotCoreDefinition, PivotCoreDimension, PivotCoreMeasure, PivotDimension$1 as PivotDimension, PivotField, PivotFields, PivotMeasure, PivotRuntimeDefinition, PivotTableCell, PivotTableColumn, PivotTableData, PivotTableRow, PivotTimeAdapter, 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, SetDecimalCommand, SetDecimalStep, SetFormattingCommand, SetGridLinesVisibilityCommand, SetViewportOffsetCommand, SetZoneBordersCommand, Sheet, SheetDOMScrollInfo, SheetData, SheetDependentCommand, SheetScrollInfo, ShowFormulaCommand, ShowSheetCommand, SingleColorRule, SingleColorRules, SnapshotEvent, SortCommand, SortDirection, SortOptions, SplitTextIntoColumnsCommand, Spreadsheet, SpreadsheetChildEnv, SpreadsheetPivotCoreDefinition, SpreadsheetPivotTable, StartChangeHighlightCommand, StartCommand, StaticTable, StoreConstructor, StoreParams, StringDomainArgs, Style, SumSelectionCommand, Table, 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, 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, compile, compileTokens, components, constants, containsBlanksRule, containsErrorsRule, convertAstNodes, coreTypes, findCellInNewZone, functionCache, helpers, hooks, invalidateBordersCommands, invalidateCFEvaluationCommands, invalidateDependenciesCommands, invalidateEvaluationCommands, isCoreCommand, isHeadersDependant, isMatrix, isPositionDependent, isRangeDependant, isSheetDependent, isTargetDependent, isZoneDependent, iterateAstNodes, links, load, notContainsBlanksRule, notContainsErrorsRule, parse, parseTokens, readonlyAllowedCommands, registries, setDefaultSheetViewSize, setTranslationMethod, stores, tokenColors, tokenize };
11294
+ export { AST, ASTFuncall, AboveAverageRule, AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, ActivateNextSheetCommand, ActivatePaintFormatCommand, 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, CancelPaintFormatCommand, CancelledReason, Cell, CellData, CellErrorType, CellIsRule, CellPosition, CellValue, CellValueType, ChangeType, ChartCreationContext, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartType, ChartWithAxisDefinition, CleanClipBoardHighlightCommand, ClearCellCommand, ClearFormattingCommand, Client, ClientId, ClientJoinedMessage, ClientLeftMessage, ClientMovedMessage, ClientPosition, ClipboardCell, ClipboardCellData, ClipboardContent, ClipboardData, ClipboardFigureData, ClipboardMIMEType, ClipboardOperation, ClipboardOptions, ClipboardPasteOptions, ClipboardPasteTarget, Cloneable, CollaborationMessage, CollaborativeEvent, CollaborativeEventReceived, CollaborativeEventTypes, Color, ColorScaleMidPointThreshold, ColorScaleRule, ColorScaleThreshold, Command, CommandDispatcher, CommandHandler, CommandResult, CommandTypes, CommonPivotCoreDefinition, CompiledFormula, ComputeFunction, ComputedTableStyle, ConditionalFormat, ConditionalFormatInternal, ConditionalFormatRule, ConditionalFormattingOperatorValues, ConsecutiveIndexes, ContainsTextRule, CopyCommand, CopyModifier, CopyPasteCellsAboveCommand, CopyPasteCellsOnLeftCommand, CoreCommand, CoreCommandDispatcher, CoreCommandTypes, CoreGetters, CorePlugin, CoreTable, CoreTableType, CoreViewCommand, CoreViewCommandTypes, CreateChartCommand, CreateFigureCommand, CreateImageOverCommand, CreateRevisionOptions, CreateSheetCommand, CreateTableCommand, CreateTableStyleCommand, Currency, CustomFormulaCriterion, CustomizedDataSet, CutCommand, DEFAULT_LOCALE, DEFAULT_LOCALES, DIRECTION, DOMCoordinates, DOMDimension, DataSet, DataValidationCriterion, DataValidationCriterionType, DataValidationDateCriterion, DataValidationRule, DataValidationRuleData, DatasetDesign, DatasetValues, DateCriterionValue, DateIsAfterCriterion, DateIsBeforeCriterion, DateIsBetweenCriterion, DateIsCriterion, DateIsNotBetweenCriterion, DateIsOnOrAfterCriterion, DateIsOnOrBeforeCriterion, DateIsValidCriterion, DebouncedFunction, DeleteCellCommand, DeleteContentCommand, DeleteFigureCommand, DeleteSheetCommand, Dependencies, Dimension, Direction$1 as Direction, DispatchResult, DuplicatePivotCommand, DuplicateSheetCommand, DynamicTable, EdgeScrollInfo, EditTextOptions, EmptyCell, EndsWithRule, EnrichedToken, EnsureRange, ErrorCell, EvalContext, EvaluateCellsCommand, EvaluatedCell, EvaluationError, ExcelCellData, ExcelChartDataset, ExcelChartDefinition, ExcelChartType, ExcelFigureSize, ExcelFilterData, ExcelHeaderData, ExcelSheetData, ExcelTableData, ExcelWorkbookData, ExpressionRule, FPayload, FPayloadNumber, Figure, FigureData, FigureSize, Filter, FilterId, FoldAllHeaderGroupsCommand, FoldHeaderGroupCommand, FoldHeaderGroupsInZoneCommand, Format, FormattedValue, FormulaCell, FormulaModifier, FormulaToExecute, FreezeColumnsCommand, FreezeRowsCommand, FunctionDescription, FunctionRegistry, GeneratorCell, 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, 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, Offset, OperationSequenceNode, OrderedLayers, PLAIN_TEXT_FORMAT, PaneDivision, PasteCommand, PasteFromOSClipboardCommand, Pivot, PivotCoreDefinition, PivotCoreDimension, PivotCoreMeasure, PivotDimension$1 as PivotDimension, PivotDomain, PivotEmptyCell, PivotField, PivotFields, PivotHeaderCell, PivotMeasure, PivotNode, PivotRuntimeDefinition, PivotTableCell, PivotTableColumn, PivotTableData, PivotTableRow, PivotTimeAdapter, 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, SetDecimalCommand, SetDecimalStep, SetFormattingCommand, SetGridLinesVisibilityCommand, SetViewportOffsetCommand, SetZoneBordersCommand, Sheet, SheetDOMScrollInfo, SheetData, SheetDependentCommand, SheetScrollInfo, ShowFormulaCommand, ShowSheetCommand, SingleColorRule, SingleColorRules, SnapshotEvent, SortCommand, SortDirection, SortOptions, SplitTextIntoColumnsCommand, Spreadsheet, SpreadsheetChildEnv, SpreadsheetPivotCoreDefinition, SpreadsheetPivotTable, StartChangeHighlightCommand, StartCommand, StaticTable, StoreConstructor, StoreParams, Style, SumSelectionCommand, Table, 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, 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, compile, compileTokens, components, constants, containsBlanksRule, containsErrorsRule, convertAstNodes, coreTypes, findCellInNewZone, functionCache, helpers, hooks, invalidateBordersCommands, invalidateCFEvaluationCommands, invalidateDependenciesCommands, invalidateEvaluationCommands, isCoreCommand, isHeadersDependant, isMatrix, isPositionDependent, isRangeDependant, isSheetDependent, isTargetDependent, isZoneDependent, iterateAstNodes, links, load, notContainsBlanksRule, notContainsErrorsRule, parse, parseTokens, readonlyAllowedCommands, registries, setDefaultSheetViewSize, setTranslationMethod, stores, tokenColors, tokenize };