@odoo/o-spreadsheet 18.0.33 → 18.0.35

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.
@@ -2,9 +2,9 @@
2
2
  /**
3
3
  * This file is generated by o-spreadsheet build tools. Do not edit it.
4
4
  * @see https://github.com/odoo/o-spreadsheet
5
- * @version 18.0.33
6
- * @date 2025-06-12T09:17:53.747Z
7
- * @hash c1d64fb
5
+ * @version 18.0.35
6
+ * @date 2025-06-23T15:06:32.032Z
7
+ * @hash a38db25
8
8
  */
9
9
 
10
10
  'use strict';
@@ -6663,6 +6663,63 @@ function parseOSClipboardContent(content) {
6663
6663
  data: spreadsheetContent,
6664
6664
  };
6665
6665
  }
6666
+ /**
6667
+ * Applies each clipboard handler to paste its corresponding data into the target.
6668
+ */
6669
+ const applyClipboardHandlersPaste = (handlers, copiedData, target, options) => {
6670
+ handlers.forEach(({ handlerName, handler }) => {
6671
+ const data = copiedData[handlerName];
6672
+ if (data) {
6673
+ handler.paste(target, data, options);
6674
+ }
6675
+ });
6676
+ };
6677
+ /**
6678
+ * Returns the paste target based on clipboard handlers.
6679
+ * Also includes the full affected zone and the list of pasted zones for selection.
6680
+ */
6681
+ function getPasteTargetFromHandlers(sheetId, zones, copiedData, handlers, options) {
6682
+ let zone = undefined;
6683
+ let selectedZones = [];
6684
+ let target = {
6685
+ sheetId,
6686
+ zones,
6687
+ };
6688
+ for (const { handlerName, handler } of handlers) {
6689
+ const handlerData = copiedData[handlerName];
6690
+ if (!handlerData) {
6691
+ continue;
6692
+ }
6693
+ const currentTarget = handler.getPasteTarget(sheetId, zones, handlerData, options);
6694
+ if (currentTarget.figureId) {
6695
+ target.figureId = currentTarget.figureId;
6696
+ }
6697
+ for (const targetZone of currentTarget.zones) {
6698
+ selectedZones.push(targetZone);
6699
+ if (zone === undefined) {
6700
+ zone = targetZone;
6701
+ continue;
6702
+ }
6703
+ zone = union(zone, targetZone);
6704
+ }
6705
+ }
6706
+ return {
6707
+ target,
6708
+ zone,
6709
+ selectedZones,
6710
+ };
6711
+ }
6712
+ /**
6713
+ * Updates the selection after a paste operation.
6714
+ */
6715
+ const selectPastedZone = (selection, sourceZones, pastedZones) => {
6716
+ const anchorCell = {
6717
+ col: sourceZones[0].left,
6718
+ row: sourceZones[0].top,
6719
+ };
6720
+ selection.getBackToDefault();
6721
+ selection.selectZone({ cell: anchorCell, zone: union(...pastedZones) }, { scrollIntoView: false });
6722
+ };
6666
6723
 
6667
6724
  class ClipboardHandler {
6668
6725
  getters;
@@ -33670,6 +33727,10 @@ const REMOVE_ROWS_ACTION = (env) => {
33670
33727
  });
33671
33728
  };
33672
33729
  const CAN_REMOVE_COLUMNS_ROWS = (dimension, env) => {
33730
+ if ((dimension === "COL" && env.model.getters.getActiveRows().size > 0) ||
33731
+ (dimension === "ROW" && env.model.getters.getActiveCols().size > 0)) {
33732
+ return false;
33733
+ }
33673
33734
  const sheetId = env.model.getters.getActiveSheetId();
33674
33735
  const selectedElements = env.model.getters.getElementsFromSelection(dimension);
33675
33736
  const includesAllVisibleHeaders = env.model.getters.checkElementsIncludeAllVisibleHeaders(sheetId, dimension, selectedElements);
@@ -36390,11 +36451,11 @@ class OTRegistry extends Registry {
36390
36451
  * transformation function given
36391
36452
  */
36392
36453
  addTransformation(executed, toTransforms, fn) {
36393
- for (let toTransform of toTransforms) {
36394
- if (!this.content[toTransform]) {
36395
- this.content[toTransform] = new Map();
36396
- }
36397
- this.content[toTransform].set(executed, fn);
36454
+ if (!this.content[executed]) {
36455
+ this.content[executed] = new Map();
36456
+ }
36457
+ for (const toTransform of toTransforms) {
36458
+ this.content[executed].set(toTransform, fn);
36398
36459
  }
36399
36460
  return this;
36400
36461
  }
@@ -36403,7 +36464,7 @@ class OTRegistry extends Registry {
36403
36464
  * that the executed command happened.
36404
36465
  */
36405
36466
  getTransformation(toTransform, executed) {
36406
- return this.content[toTransform] && this.content[toTransform].get(executed);
36467
+ return this.content[executed] && this.content[executed].get(toTransform);
36407
36468
  }
36408
36469
  }
36409
36470
  const otRegistry = new OTRegistry();
@@ -44612,7 +44673,7 @@ class SpreadsheetPivot {
44612
44673
  }
44613
44674
  getTypeFromZone(sheetId, zone) {
44614
44675
  const cells = this.getters.getEvaluatedCellsInZone(sheetId, zone);
44615
- const nonEmptyCells = cells.filter((cell) => cell.type !== CellValueType.empty);
44676
+ const nonEmptyCells = cells.filter((cell) => !(cell.type === CellValueType.empty || cell.value === ""));
44616
44677
  if (nonEmptyCells.length === 0) {
44617
44678
  return "integer";
44618
44679
  }
@@ -48145,15 +48206,16 @@ class GridAddRowsFooter extends owl.Component {
48145
48206
  }
48146
48207
  }
48147
48208
 
48209
+ const PAINT_FORMAT_HANDLER_KEYS = [
48210
+ "cell",
48211
+ "border",
48212
+ "table",
48213
+ "conditionalFormat",
48214
+ "merge",
48215
+ ];
48148
48216
  class PaintFormatStore extends SpreadsheetStore {
48149
48217
  mutators = ["activate", "cancel", "pasteFormat"];
48150
48218
  highlightStore = this.get(HighlightStore);
48151
- clipboardHandlers = [
48152
- new CellClipboardHandler(this.getters, this.model.dispatch),
48153
- new BorderClipboardHandler(this.getters, this.model.dispatch),
48154
- new TableClipboardHandler(this.getters, this.model.dispatch),
48155
- new ConditionalFormatClipboardHandler(this.getters, this.model.dispatch),
48156
- ];
48157
48219
  status = "inactive";
48158
48220
  copiedData;
48159
48221
  constructor(get) {
@@ -48184,24 +48246,38 @@ class PaintFormatStore extends SpreadsheetStore {
48184
48246
  get isActive() {
48185
48247
  return this.status !== "inactive";
48186
48248
  }
48249
+ get clipboardHandlers() {
48250
+ return PAINT_FORMAT_HANDLER_KEYS.map((handlerName) => {
48251
+ const HandlerClass = clipboardHandlersRegistries.cellHandlers.get(handlerName);
48252
+ return {
48253
+ handlerName,
48254
+ handler: new HandlerClass(this.getters, this.model.dispatch),
48255
+ };
48256
+ });
48257
+ }
48187
48258
  copyFormats() {
48188
48259
  const sheetId = this.getters.getActiveSheetId();
48189
48260
  const zones = this.getters.getSelectedZones();
48190
- const copiedData = {};
48191
- for (const handler of this.clipboardHandlers) {
48192
- Object.assign(copiedData, handler.copy(getClipboardDataPositions(sheetId, zones)));
48261
+ const copiedData = { zones, sheetId };
48262
+ for (const { handlerName, handler } of this.clipboardHandlers) {
48263
+ const handlerResult = handler.copy(getClipboardDataPositions(sheetId, zones));
48264
+ if (handlerResult !== undefined) {
48265
+ copiedData[handlerName] = handlerResult;
48266
+ }
48193
48267
  }
48194
48268
  return copiedData;
48195
48269
  }
48196
48270
  paintFormat(sheetId, target) {
48197
- if (this.copiedData) {
48198
- for (const handler of this.clipboardHandlers) {
48199
- handler.paste({ zones: target, sheetId }, this.copiedData, {
48200
- isCutOperation: false,
48201
- pasteOption: "onlyFormat",
48202
- });
48203
- }
48271
+ if (!this.copiedData) {
48272
+ return;
48204
48273
  }
48274
+ const options = {
48275
+ isCutOperation: false,
48276
+ pasteOption: "onlyFormat",
48277
+ };
48278
+ const { target: pasteTarget, selectedZones } = getPasteTargetFromHandlers(sheetId, target, this.copiedData, this.clipboardHandlers, options);
48279
+ applyClipboardHandlersPaste(this.clipboardHandlers, this.copiedData, pasteTarget, options);
48280
+ selectPastedZone(this.model.selection, target, selectedZones);
48205
48281
  if (this.status === "oneOff") {
48206
48282
  this.cancel();
48207
48283
  }
@@ -53459,7 +53535,7 @@ class DataValidationPlugin extends CorePlugin {
53459
53535
  else if (newRule.criterion.type === "isValueInList") {
53460
53536
  newRule.criterion.values = Array.from(new Set(newRule.criterion.values));
53461
53537
  }
53462
- const adaptedRules = this.removeRangesFromRules(sheetId, newRule.ranges, rules);
53538
+ const adaptedRules = this.removeRangesFromRules(sheetId, newRule.ranges, rules, newRule.id);
53463
53539
  const ruleIndex = adaptedRules.findIndex((rule) => rule.id === newRule.id);
53464
53540
  if (ruleIndex !== -1) {
53465
53541
  adaptedRules[ruleIndex] = newRule;
@@ -53469,9 +53545,12 @@ class DataValidationPlugin extends CorePlugin {
53469
53545
  this.history.update("rules", sheetId, [...adaptedRules, newRule]);
53470
53546
  }
53471
53547
  }
53472
- removeRangesFromRules(sheetId, ranges, rules) {
53548
+ removeRangesFromRules(sheetId, ranges, rules, editingRuleId) {
53473
53549
  rules = deepCopy(rules);
53474
53550
  for (const rule of rules) {
53551
+ if (rule.id === editingRuleId) {
53552
+ continue; // Skip the rule being edited to preserve its place in the list
53553
+ }
53475
53554
  rule.ranges = this.getters.recomputeRanges(rule.ranges, ranges);
53476
53555
  }
53477
53556
  return rules.filter((rule) => rule.ranges.length > 0);
@@ -62202,10 +62281,20 @@ function transform(toTransform, executed) {
62202
62281
  */
62203
62282
  function transformAll(toTransform, executed) {
62204
62283
  let transformedCommands = [...toTransform];
62284
+ const possibleTransformations = new Set(otRegistry.getKeys());
62205
62285
  for (const executedCommand of executed) {
62206
- transformedCommands = transformedCommands
62207
- .map((cmd) => transform(cmd, executedCommand))
62208
- .filter(isDefined);
62286
+ // If the executed command is not in the registry, we skip it
62287
+ // because we know there won't be any transformation impacting the
62288
+ // commands to transform.
62289
+ if (possibleTransformations.has(executedCommand.type)) {
62290
+ transformedCommands = transformedCommands.reduce((acc, cmd) => {
62291
+ const transformed = transform(cmd, executedCommand);
62292
+ if (transformed) {
62293
+ acc.push(transformed);
62294
+ }
62295
+ return acc;
62296
+ }, []);
62297
+ }
62209
62298
  }
62210
62299
  return transformedCommands;
62211
62300
  }
@@ -62691,7 +62780,6 @@ class Session extends EventBus {
62691
62780
  if (this.waitingAck) {
62692
62781
  return;
62693
62782
  }
62694
- this.waitingAck = true;
62695
62783
  this.sendPendingMessage();
62696
62784
  }
62697
62785
  /**
@@ -62721,6 +62809,7 @@ class Session extends EventBus {
62721
62809
  throw new Error(`Trying to send a new revision while replaying initial revision. This can lead to endless dispatches every time the spreadsheet is open.
62722
62810
  ${JSON.stringify(message)}`);
62723
62811
  }
62812
+ this.waitingAck = true;
62724
62813
  this.transportService.sendMessage({
62725
62814
  ...message,
62726
62815
  serverRevisionId: this.serverRevisionId,
@@ -63861,7 +63950,7 @@ class SheetUIPlugin extends UIPlugin {
63861
63950
  }
63862
63951
  const position = this.getters.getCellPosition(cell.id);
63863
63952
  const colSize = this.getters.getColSize(sheetId, position.col);
63864
- if (cell.isFormula) {
63953
+ if (cell.isFormula || this.getters.getArrayFormulaSpreadingOn(position)) {
63865
63954
  const content = this.getters.getEvaluatedCell(position).formattedValue;
63866
63955
  const evaluatedSize = getCellContentHeight(this.ctx, content, cell?.style, colSize);
63867
63956
  if (evaluatedSize > evaluatedRowSize && evaluatedSize > DEFAULT_CELL_HEIGHT) {
@@ -65146,49 +65235,17 @@ class ClipboardPlugin extends UIPlugin {
65146
65235
  if (!copiedData) {
65147
65236
  return;
65148
65237
  }
65149
- let zone = undefined;
65150
- let selectedZones = [];
65151
65238
  const sheetId = this.getters.getActiveSheetId();
65152
- let target = {
65153
- sheetId,
65154
- zones,
65155
- };
65156
65239
  const handlers = this.selectClipboardHandlers(copiedData);
65157
- for (const { handlerName, handler } of handlers) {
65158
- const handlerData = copiedData[handlerName];
65159
- if (!handlerData) {
65160
- continue;
65161
- }
65162
- const currentTarget = handler.getPasteTarget(sheetId, zones, handlerData, options);
65163
- if (currentTarget.figureId) {
65164
- target.figureId = currentTarget.figureId;
65165
- }
65166
- for (const targetZone of currentTarget.zones) {
65167
- selectedZones.push(targetZone);
65168
- if (zone === undefined) {
65169
- zone = targetZone;
65170
- continue;
65171
- }
65172
- zone = union(zone, targetZone);
65173
- }
65174
- }
65240
+ const { target, zone, selectedZones } = getPasteTargetFromHandlers(sheetId, zones, copiedData, handlers, options);
65175
65241
  if (zone !== undefined) {
65176
- this.addMissingDimensions(this.getters.getActiveSheetId(), zone.right - zone.left + 1, zone.bottom - zone.top + 1, zone.left, zone.top);
65242
+ this.addMissingDimensions(sheetId, zone.right - zone.left + 1, zone.bottom - zone.top + 1, zone.left, zone.top);
65177
65243
  }
65178
- handlers.forEach(({ handlerName, handler }) => {
65179
- const handlerData = copiedData[handlerName];
65180
- if (handlerData) {
65181
- handler.paste(target, handlerData, options);
65182
- }
65183
- });
65244
+ applyClipboardHandlersPaste(handlers, copiedData, target, options);
65184
65245
  if (!options?.selectTarget) {
65185
65246
  return;
65186
65247
  }
65187
- const selection = zones[0];
65188
- const col = selection.left;
65189
- const row = selection.top;
65190
- this.selection.getBackToDefault();
65191
- this.selection.selectZone({ cell: { col, row }, zone: union(...selectedZones) }, { scrollIntoView: false });
65248
+ selectPastedZone(this.selection, zones, selectedZones);
65192
65249
  }
65193
65250
  /**
65194
65251
  * Add columns and/or rows to ensure that col + width and row + height are still
@@ -74447,6 +74504,6 @@ exports.tokenColors = tokenColors;
74447
74504
  exports.tokenize = tokenize;
74448
74505
 
74449
74506
 
74450
- __info__.version = "18.0.33";
74451
- __info__.date = "2025-06-12T09:17:53.747Z";
74452
- __info__.hash = "c1d64fb";
74507
+ __info__.version = "18.0.35";
74508
+ __info__.date = "2025-06-23T15:06:32.032Z";
74509
+ __info__.hash = "a38db25";
@@ -1448,13 +1448,6 @@ declare class UIPlugin<State = any> extends BasePlugin<State, Command> {
1448
1448
  drawLayer(ctx: GridRenderingContext, layer: LayerName): void;
1449
1449
  }
1450
1450
 
1451
- type MinimalClipboardData = {
1452
- sheetId?: UID;
1453
- cells?: ClipboardCell[][];
1454
- zones?: Zone[];
1455
- figureId?: UID;
1456
- [key: string]: unknown;
1457
- };
1458
1451
  interface SpreadsheetClipboardData extends MinimalClipboardData {
1459
1452
  version?: number;
1460
1453
  clipboardId?: string;
@@ -1895,6 +1888,13 @@ type ClipboardPasteTarget = {
1895
1888
  zones: Zone[];
1896
1889
  figureId?: UID;
1897
1890
  };
1891
+ type MinimalClipboardData = {
1892
+ sheetId?: UID;
1893
+ cells?: ClipboardCell[][];
1894
+ zones?: Zone[];
1895
+ figureId?: UID;
1896
+ [key: string]: unknown;
1897
+ };
1898
1898
 
1899
1899
  interface SearchOptions {
1900
1900
  matchCase: boolean;
@@ -12438,4 +12438,4 @@ declare const constants: {
12438
12438
  };
12439
12439
  };
12440
12440
 
12441
- 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, CellData, CellErrorType, CellIsRule, CellPosition, CellValue, CellValueType, ChangeType, ChartCreationContext, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartType, ChartWithAxisDefinition, 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, 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, EvaluatedCell, EvaluationError, ExcelCellData, 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, GetSymbolValue, Getters, Granularity, GridClickModifiers, GridRenderingContext, GroupHeadersCommand, HSLA, HeaderData, HeaderDimensions, HeaderGroup, HeaderIndex, HeadersDependentCommand, HideColumnsRowsCommand, HideSheetCommand, Highlight$1 as Highlight, HistoryChange, IconSet, IconSetRule, IconThreshold, Image, Immutable, Increment, IncrementModifier, InformationNotification, InitPivotParams, InsertCellCommand, InsertNewPivotCommand, InsertPivotCommand, InsertPivotWithTableCommand, IsBetweenCriterion, IsCheckboxCriterion, IsEqualCriterion, IsGreaterOrEqualToCriterion, IsGreaterThanCriterion, IsLessOrEqualToCriterion, IsLessThanCriterion, IsNotBetweenCriterion, IsNotEqualCriterion, IsValueInListCriterion, IsValueInRangeCriterion, LabelValues, LayerName, Lazy, Link, LiteralCell, LocalCommand, Locale, LocaleCode, LocaleFormat, LookupCaches, Matrix, Maybe, MenuMouseEvent, Merge, 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, PivotStartPresenceTracking, PivotStopPresenceTracking, 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, Row, SPREADSHEET_DIMENSIONS, ScrollDirection$1 as ScrollDirection, SelectFigureCommand, Selection, SelectionStep, SetBorderCommand, SetBorderTargetCommand, 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$1 as TableData, TableElementStyle, TableId, TableStyle, TableStyleData, TableStyleTemplateName, TargetDependentCommand, TechnicalName, TextCell, TextContainsCriterion, TextIsCriterion, TextIsEmailCriterion, TextIsLinkCriterion, TextNotContainsCriterion, TextRule, ThresholdType, TimePeriodRule, TitleDesign, Token, Tooltip, Top10Rule, Transformation, TransformationFactory, TransportService, TrendConfiguration, TrendType, TrimWhitespaceCommand, UID, UIPlugin, UnGroupHeadersCommand, UnboundedZone, UndoCommand, UnexpectedRevisionIdEvent, UnfoldAllHeaderGroupsCommand, UnfoldHeaderGroupCommand, UnfoldHeaderGroupsInZoneCommand, UnfreezeColumnsCommand, UnfreezeColumnsRowsCommand, UnfreezeRowsCommand, UnhideColumnsRowsCommand, UpdateCellCommand, UpdateCellData, UpdateCellPositionCommand, UpdateChartCommand, UpdateFigureCommand, UpdateFilterCommand, UpdateLocaleCommand, UpdatePivotCommand, UpdateTableCommand, Validation, VerticalAlign, Viewport, WorkbookData, WorkbookHistory, Wrapping, Zone, ZoneDependentCommand, ZoneDimension, __info__, addFunction, addRenderingLayer, astToFormula, borderStyles, canExecuteInReadonly, 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 };
12441
+ 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, CellData, CellErrorType, CellIsRule, CellPosition, CellValue, CellValueType, ChangeType, ChartCreationContext, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartType, ChartWithAxisDefinition, 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, 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, EvaluatedCell, EvaluationError, ExcelCellData, 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, GetSymbolValue, Getters, Granularity, GridClickModifiers, GridRenderingContext, GroupHeadersCommand, HSLA, HeaderData, HeaderDimensions, HeaderGroup, HeaderIndex, HeadersDependentCommand, HideColumnsRowsCommand, HideSheetCommand, Highlight$1 as Highlight, HistoryChange, IconSet, IconSetRule, IconThreshold, Image, Immutable, Increment, IncrementModifier, InformationNotification, InitPivotParams, InsertCellCommand, InsertNewPivotCommand, InsertPivotCommand, InsertPivotWithTableCommand, IsBetweenCriterion, IsCheckboxCriterion, IsEqualCriterion, IsGreaterOrEqualToCriterion, IsGreaterThanCriterion, IsLessOrEqualToCriterion, IsLessThanCriterion, IsNotBetweenCriterion, IsNotEqualCriterion, IsValueInListCriterion, IsValueInRangeCriterion, LabelValues, LayerName, Lazy, Link, LiteralCell, LocalCommand, Locale, LocaleCode, LocaleFormat, LookupCaches, Matrix, Maybe, MenuMouseEvent, Merge, MinimalClipboardData, Model, MoveColumnsRowsCommand, MoveConditionalFormatCommand, MoveRangeCommand, MoveSheetCommand, MoveViewportDownCommand, MoveViewportToCellCommand, MoveViewportUpCommand, NewLocalStateUpdateEvent, NotContainsTextRule, NotificationType, NumberCell, OSClipboardContent, Offset, OperationSequenceNode, OrderedLayers, PaintFormat, PaneDivision, ParsedOSClipboardContent, PasteCommand, PasteFromOSClipboardCommand, Pivot, PivotColRowDomain, PivotCoreDefinition, PivotCoreDimension, PivotCoreMeasure, PivotDimension$1 as PivotDimension, PivotDomain, PivotEmptyCell, PivotField, PivotFields, PivotHeaderCell, PivotMeasure, PivotMeasureDisplay, PivotMeasureDisplayType, PivotMeasureHeaderCell, PivotNode, PivotRuntimeDefinition, PivotStartPresenceTracking, PivotStopPresenceTracking, 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, Row, SPREADSHEET_DIMENSIONS, ScrollDirection$1 as ScrollDirection, SelectFigureCommand, Selection, SelectionStep, SetBorderCommand, SetBorderTargetCommand, 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$1 as TableData, TableElementStyle, TableId, TableStyle, TableStyleData, TableStyleTemplateName, TargetDependentCommand, TechnicalName, TextCell, TextContainsCriterion, TextIsCriterion, TextIsEmailCriterion, TextIsLinkCriterion, TextNotContainsCriterion, TextRule, ThresholdType, TimePeriodRule, TitleDesign, Token, Tooltip, Top10Rule, Transformation, TransformationFactory, TransportService, TrendConfiguration, TrendType, TrimWhitespaceCommand, UID, UIPlugin, UnGroupHeadersCommand, UnboundedZone, UndoCommand, UnexpectedRevisionIdEvent, UnfoldAllHeaderGroupsCommand, UnfoldHeaderGroupCommand, UnfoldHeaderGroupsInZoneCommand, UnfreezeColumnsCommand, UnfreezeColumnsRowsCommand, UnfreezeRowsCommand, UnhideColumnsRowsCommand, UpdateCellCommand, UpdateCellData, UpdateCellPositionCommand, UpdateChartCommand, UpdateFigureCommand, UpdateFilterCommand, UpdateLocaleCommand, UpdatePivotCommand, UpdateTableCommand, Validation, VerticalAlign, Viewport, WorkbookData, WorkbookHistory, Wrapping, Zone, ZoneDependentCommand, ZoneDimension, __info__, addFunction, addRenderingLayer, astToFormula, borderStyles, canExecuteInReadonly, 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 };