@odoo/o-spreadsheet 18.4.9 → 18.4.11

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.4.9
6
- * @date 2025-09-05T07:38:32.126Z
7
- * @hash a261873
5
+ * @version 18.4.11
6
+ * @date 2025-09-19T07:25:39.033Z
7
+ * @hash c7e71ac
8
8
  */
9
9
 
10
10
  'use strict';
@@ -891,8 +891,19 @@ function memoize(func) {
891
891
  },
892
892
  }[funcName];
893
893
  }
894
+ /**
895
+ * Removes the specified indexes from the array.
896
+ * Sparse (empty) elements are transformed to undefined (unless their index is explicitly removed).
897
+ */
894
898
  function removeIndexesFromArray(array, indexes) {
895
- return array.filter((_, index) => !indexes.includes(index));
899
+ const toRemove = new Set(indexes);
900
+ const newArray = [];
901
+ for (let i = 0; i < array.length; i++) {
902
+ if (!toRemove.has(i)) {
903
+ newArray.push(array[i]);
904
+ }
905
+ }
906
+ return newArray;
896
907
  }
897
908
  function insertItemsAtIndex(array, items, index) {
898
909
  const newArray = [...array];
@@ -7356,7 +7367,7 @@ class ClipboardHandler {
7356
7367
  this.getters = getters;
7357
7368
  this.dispatch = dispatch;
7358
7369
  }
7359
- copy(data, isCutOperation) {
7370
+ copy(data, isCutOperation, mode = "copyPaste") {
7360
7371
  return;
7361
7372
  }
7362
7373
  paste(target, clippedContent, options) { }
@@ -7375,7 +7386,7 @@ class ClipboardHandler {
7375
7386
  }
7376
7387
 
7377
7388
  class AbstractCellClipboardHandler extends ClipboardHandler {
7378
- copy(data) {
7389
+ copy(data, isCutOperation, mode = "copyPaste") {
7379
7390
  return;
7380
7391
  }
7381
7392
  pasteFromCopy(sheetId, target, content, options) {
@@ -8905,7 +8916,7 @@ class CellClipboardHandler extends AbstractCellClipboardHandler {
8905
8916
  }
8906
8917
  return "Success" /* CommandResult.Success */;
8907
8918
  }
8908
- copy(data) {
8919
+ copy(data, isCutOperation, mode = "copyPaste") {
8909
8920
  const sheetId = data.sheetId;
8910
8921
  const { clippedZones, rowsIndexes, columnsIndexes } = data;
8911
8922
  const clippedCells = [];
@@ -8918,7 +8929,7 @@ class CellClipboardHandler extends AbstractCellClipboardHandler {
8918
8929
  const evaluatedCell = this.getters.getEvaluatedCell(position);
8919
8930
  const pivotId = this.getters.getPivotIdFromPosition(position);
8920
8931
  const spreader = this.getters.getArrayFormulaSpreadingOn(position);
8921
- if (pivotId && spreader) {
8932
+ if (mode !== "shiftCells" && pivotId && spreader) {
8922
8933
  const pivotZone = this.getters.getSpreadZone(spreader);
8923
8934
  if ((!deepEquals(spreader, position) || !isCopyingOneCell) &&
8924
8935
  pivotZone &&
@@ -8936,7 +8947,7 @@ class CellClipboardHandler extends AbstractCellClipboardHandler {
8936
8947
  };
8937
8948
  }
8938
8949
  }
8939
- else {
8950
+ else if (mode !== "shiftCells") {
8940
8951
  if (spreader && !deepEquals(spreader, position)) {
8941
8952
  const isSpreaderCopied = rowsIndexes.includes(spreader.row) && columnsIndexes.includes(spreader.col);
8942
8953
  const content = isSpreaderCopied
@@ -9634,7 +9645,7 @@ class SheetClipboardHandler extends AbstractCellClipboardHandler {
9634
9645
  }
9635
9646
 
9636
9647
  class TableClipboardHandler extends AbstractCellClipboardHandler {
9637
- copy(data, isCutOperation) {
9648
+ copy(data, isCutOperation, mode = "copyPaste") {
9638
9649
  const sheetId = data.sheetId;
9639
9650
  const { rowsIndexes, columnsIndexes, zones } = data;
9640
9651
  const copiedTablesIds = new Set();
@@ -9672,11 +9683,13 @@ class TableClipboardHandler extends AbstractCellClipboardHandler {
9672
9683
  type: coreTable.type,
9673
9684
  };
9674
9685
  }
9675
- tableCellsInRow.push({
9676
- table: copiedTable,
9677
- style: this.getTableStyleToCopy(position),
9678
- isWholeTableCopied: copiedTablesIds.has(table.id),
9679
- });
9686
+ if (mode !== "shiftCells") {
9687
+ tableCellsInRow.push({
9688
+ table: copiedTable,
9689
+ style: this.getTableStyleToCopy(position),
9690
+ isWholeTableCopied: copiedTablesIds.has(table.id),
9691
+ });
9692
+ }
9680
9693
  }
9681
9694
  }
9682
9695
  return {
@@ -15203,8 +15216,9 @@ function interactiveSort(env, sheetId, anchor, zone, sortDirection, sortOptions)
15203
15216
  }
15204
15217
 
15205
15218
  function sortMatrix(matrix, locale, ...criteria) {
15206
- for (const [i, value] of criteria.entries()) {
15207
- assert(value !== undefined, _t("Value for parameter %d is missing, while the function [[FUNCTION_NAME]] expect a number or a range.", i + 1));
15219
+ for (let i = 0; i < criteria.length; i++) {
15220
+ const param = i % 2 === 0 ? "sort_column" : "is_ascending";
15221
+ assert(criteria[i] !== undefined, _t("Value for parameter %s is missing in [[FUNCTION_NAME]].", param));
15208
15222
  }
15209
15223
  const sortingOrders = [];
15210
15224
  const sortColumns = [];
@@ -37514,7 +37528,7 @@ const SUPPORTED_HORIZONTAL_ALIGNMENTS = [
37514
37528
  ];
37515
37529
  const SUPPORTED_VERTICAL_ALIGNMENTS = ["top", "center", "bottom"];
37516
37530
  const SUPPORTED_FONTS = ["Arial"];
37517
- const SUPPORTED_FILL_PATTERNS = ["solid"];
37531
+ const SUPPORTED_FILL_PATTERNS = ["solid", "none"];
37518
37532
  const SUPPORTED_CF_TYPES = [
37519
37533
  "expression",
37520
37534
  "cellIs",
@@ -37714,7 +37728,7 @@ const SUBTOTAL_FUNCTION_CONVERSION_MAP = {
37714
37728
  };
37715
37729
  /** Mapping between Excel format indexes (see XLSX_FORMAT_MAP) and some supported formats */
37716
37730
  const XLSX_FORMATS_CONVERSION_MAP = {
37717
- 0: "",
37731
+ 0: "General",
37718
37732
  1: "0",
37719
37733
  2: "0.00",
37720
37734
  3: "#,#00",
@@ -38040,11 +38054,11 @@ const XLSX_DATE_FORMAT_REGEX = /^(yy|yyyy|m{1,5}|d{1,4}|h{1,2}|s{1,2}|am\/pm|a\/
38040
38054
  * Excel format are defined in openXML §18.8.31
38041
38055
  */
38042
38056
  function convertXlsxFormat(numFmtId, formats, warningManager) {
38043
- if (numFmtId === 0) {
38044
- return undefined;
38045
- }
38046
38057
  // Format is either defined in the imported data, or the formatId is defined in openXML §18.8.30
38047
38058
  const format = XLSX_FORMATS_CONVERSION_MAP[numFmtId] || formats.find((f) => f.id === numFmtId)?.format;
38059
+ if (format === "General") {
38060
+ return undefined;
38061
+ }
38048
38062
  if (format) {
38049
38063
  try {
38050
38064
  let convertedFormat = format.replace(/\[(.*)-[A-Z0-9]{3}\]/g, "[$1]"); // remove currency and locale/date system/number system info (ECMA §18.8.31)
@@ -40622,10 +40636,11 @@ class XlsxSheetExtractor extends XlsxBaseExtractor {
40622
40636
  });
40623
40637
  }
40624
40638
  extractRows(worksheet) {
40639
+ const spilledCells = new Set();
40625
40640
  return this.mapOnElements({ parent: worksheet, query: "sheetData row" }, (rowElement) => {
40626
40641
  return {
40627
40642
  index: this.extractAttr(rowElement, "r", { required: true })?.asNum(),
40628
- cells: this.extractCells(rowElement),
40643
+ cells: this.extractCells(rowElement, spilledCells),
40629
40644
  height: this.extractAttr(rowElement, "ht")?.asNum(),
40630
40645
  customHeight: this.extractAttr(rowElement, "customHeight")?.asBool(),
40631
40646
  hidden: this.extractAttr(rowElement, "hidden")?.asBool(),
@@ -40635,14 +40650,26 @@ class XlsxSheetExtractor extends XlsxBaseExtractor {
40635
40650
  };
40636
40651
  });
40637
40652
  }
40638
- extractCells(row) {
40653
+ extractCells(row, spilledCells) {
40639
40654
  return this.mapOnElements({ parent: row, query: "c" }, (cellElement) => {
40655
+ const xc = this.extractAttr(cellElement, "r", { required: true })?.asString();
40656
+ const formula = this.extractCellFormula(cellElement);
40657
+ if (formula?.ref && formula.sharedIndex === undefined) {
40658
+ const zone = toZone(formula.ref);
40659
+ for (const { col, row } of positions(zone)) {
40660
+ const followerXc = toXC(col, row);
40661
+ if (followerXc !== xc) {
40662
+ spilledCells.add(followerXc);
40663
+ }
40664
+ }
40665
+ }
40666
+ const isSpilled = spilledCells.has(xc);
40640
40667
  return {
40641
- xc: this.extractAttr(cellElement, "r", { required: true })?.asString(),
40668
+ xc,
40642
40669
  styleIndex: this.extractAttr(cellElement, "s")?.asNum(),
40643
40670
  type: CELL_TYPE_CONVERSION_MAP[this.extractAttr(cellElement, "t", { default: "n" })?.asString()],
40644
- value: this.extractChildTextContent(cellElement, "v"),
40645
- formula: this.extractCellFormula(cellElement),
40671
+ value: isSpilled ? undefined : this.extractChildTextContent(cellElement, "v") ?? undefined,
40672
+ formula: isSpilled ? undefined : formula,
40646
40673
  };
40647
40674
  });
40648
40675
  }
@@ -40650,11 +40677,14 @@ class XlsxSheetExtractor extends XlsxBaseExtractor {
40650
40677
  const formulaElement = this.querySelector(cellElement, "f");
40651
40678
  if (!formulaElement)
40652
40679
  return undefined;
40653
- return {
40654
- content: this.extractTextContent(formulaElement),
40655
- sharedIndex: this.extractAttr(formulaElement, "si")?.asNum(),
40656
- ref: this.extractAttr(formulaElement, "ref")?.asString(),
40657
- };
40680
+ const content = this.extractTextContent(formulaElement);
40681
+ const sharedIndex = this.extractAttr(formulaElement, "si")?.asNum();
40682
+ const ref = this.extractAttr(formulaElement, "ref")?.asString();
40683
+ // This is the case of spilled cells of array formulas where <f> is empty
40684
+ if ((content === undefined || content.trim() === "") && sharedIndex === undefined) {
40685
+ return undefined;
40686
+ }
40687
+ return { content, sharedIndex, ref };
40658
40688
  }
40659
40689
  extractHyperLinks(worksheet) {
40660
40690
  return this.mapOnElements({ parent: worksheet, query: "hyperlink" }, (linkElement) => {
@@ -54474,12 +54504,13 @@ class PivotLayoutConfigurator extends owl.Component {
54474
54504
  addCalculatedMeasure() {
54475
54505
  const { measures } = this.props.definition;
54476
54506
  const measureName = this.env.model.getters.generateNewCalculatedMeasureName(measures);
54507
+ const aggregator = "sum";
54477
54508
  this.props.onDimensionsUpdated({
54478
54509
  measures: measures.concat([
54479
54510
  {
54480
- id: this.getMeasureId(measureName),
54511
+ id: this.getMeasureId(measureName, aggregator),
54481
54512
  fieldName: measureName,
54482
- aggregator: "sum",
54513
+ aggregator,
54483
54514
  computedBy: {
54484
54515
  sheetId: this.env.model.getters.getActiveSheetId(),
54485
54516
  formula: "=0",
@@ -67945,7 +67976,7 @@ function withPivotPresentationLayer (PivotClass) {
67945
67976
  return { value: 0 };
67946
67977
  }
67947
67978
  const { columns, rows } = super.definition;
67948
- if (columns.length + rows.length !== domain.length) {
67979
+ if (measure.aggregator && columns.length + rows.length !== domain.length) {
67949
67980
  const values = this.getValuesToAggregate(measure, domain);
67950
67981
  const aggregator = AGGREGATORS_FN[measure.aggregator];
67951
67982
  if (!aggregator) {
@@ -67964,11 +67995,17 @@ function withPivotPresentationLayer (PivotClass) {
67964
67995
  if (columns.find((col) => col.nameWithGranularity === symbolName)) {
67965
67996
  const { colDomain } = domainToColRowDomain(this, domain);
67966
67997
  const symbolIndex = colDomain.findIndex((node) => node.field === symbolName);
67998
+ if (symbolIndex === -1) {
67999
+ return new NotAvailableError();
68000
+ }
67967
68001
  return this.getPivotHeaderValueAndFormat(colDomain.slice(0, symbolIndex + 1));
67968
68002
  }
67969
68003
  if (rows.find((row) => row.nameWithGranularity === symbolName)) {
67970
68004
  const { rowDomain } = domainToColRowDomain(this, domain);
67971
68005
  const symbolIndex = rowDomain.findIndex((row) => row.field === symbolName);
68006
+ if (symbolIndex === -1) {
68007
+ return new NotAvailableError();
68008
+ }
67972
68009
  return this.getPivotHeaderValueAndFormat(rowDomain.slice(0, symbolIndex + 1));
67973
68010
  }
67974
68011
  return this.getPivotCellValueAndFormat(symbolName, domain);
@@ -70992,7 +71029,7 @@ class DataCleanupPlugin extends UIPlugin {
70992
71029
  bottom: rowIndex,
70993
71030
  }));
70994
71031
  const handler = new CellClipboardHandler(this.getters, this.dispatch);
70995
- const data = handler.copy(getClipboardDataPositions(sheetId, rowsToKeep));
71032
+ const data = handler.copy(getClipboardDataPositions(sheetId, rowsToKeep), false);
70996
71033
  if (!data) {
70997
71034
  return;
70998
71035
  }
@@ -73077,12 +73114,12 @@ class ClipboardPlugin extends UIPlugin {
73077
73114
  }
73078
73115
  case "INSERT_CELL": {
73079
73116
  const { cut, paste } = this.getInsertCellsTargets(cmd.zone, cmd.shiftDimension);
73080
- const copiedData = this.copy(cut);
73117
+ const copiedData = this.copy(cut, "shiftCells");
73081
73118
  return this.isPasteAllowed(paste, copiedData, { isCutOperation: true });
73082
73119
  }
73083
73120
  case "DELETE_CELL": {
73084
73121
  const { cut, paste } = this.getDeleteCellsTargets(cmd.zone, cmd.shiftDimension);
73085
- const copiedData = this.copy(cut);
73122
+ const copiedData = this.copy(cut, "shiftCells");
73086
73123
  return this.isPasteAllowed(paste, copiedData, { isCutOperation: true });
73087
73124
  }
73088
73125
  }
@@ -73193,13 +73230,13 @@ class ClipboardPlugin extends UIPlugin {
73193
73230
  });
73194
73231
  break;
73195
73232
  }
73196
- const copiedData = this.copy(cut);
73233
+ const copiedData = this.copy(cut, "shiftCells");
73197
73234
  this.paste(paste, copiedData, { isCutOperation: true });
73198
73235
  break;
73199
73236
  }
73200
73237
  case "INSERT_CELL": {
73201
73238
  const { cut, paste } = this.getInsertCellsTargets(cmd.zone, cmd.shiftDimension);
73202
- const copiedData = this.copy(cut);
73239
+ const copiedData = this.copy(cut, "shiftCells");
73203
73240
  this.paste(paste, copiedData, { isCutOperation: true });
73204
73241
  break;
73205
73242
  }
@@ -73314,11 +73351,11 @@ class ClipboardPlugin extends UIPlugin {
73314
73351
  }
73315
73352
  return false;
73316
73353
  }
73317
- copy(zones) {
73354
+ copy(zones, mode = "copyPaste") {
73318
73355
  const copiedData = {};
73319
73356
  const clipboardData = this.getClipboardData(zones);
73320
73357
  for (const { handlerName, handler } of this.selectClipboardHandlers(clipboardData)) {
73321
- const data = handler.copy(clipboardData, this._isCutOperation);
73358
+ const data = handler.copy(clipboardData, this._isCutOperation, mode);
73322
73359
  copiedData[handlerName] = data;
73323
73360
  const minimalKeys = ["sheetId", "cells", "zones", "figureId"];
73324
73361
  for (const key of minimalKeys) {
@@ -74305,13 +74342,10 @@ class GridSelectionPlugin extends UIPlugin {
74305
74342
  const deltaCol = isBasedBefore && isCol ? thickness : 0;
74306
74343
  const deltaRow = isBasedBefore && !isCol ? thickness : 0;
74307
74344
  const toRemove = isBasedBefore ? cmd.elements.map((el) => el + thickness) : cmd.elements;
74308
- const originalSize = Object.fromEntries(toRemove.map((element) => {
74309
- const size = isCol
74310
- ? this.getters.getColSize(cmd.sheetId, element)
74311
- : this.getters.getUserRowSize(cmd.sheetId, element);
74312
- const isDefaultCol = isCol && size === DEFAULT_CELL_WIDTH;
74313
- return [element, isDefaultCol ? undefined : size];
74314
- }));
74345
+ const originalSize = {};
74346
+ for (const element of toRemove) {
74347
+ originalSize[element] = this.getters.getHeaderSize(cmd.sheetId, cmd.dimension, element);
74348
+ }
74315
74349
  const target = [
74316
74350
  {
74317
74351
  left: isCol ? start + deltaCol : 0,
@@ -74332,7 +74366,7 @@ class GridSelectionPlugin extends UIPlugin {
74332
74366
  ];
74333
74367
  for (const Handler of clipboardHandlersRegistries.cellHandlers.getAll()) {
74334
74368
  const handler = new Handler(this.getters, this.dispatch);
74335
- const data = handler.copy(getClipboardDataPositions(sheetId, target));
74369
+ const data = handler.copy(getClipboardDataPositions(sheetId, target), false, "shiftCells");
74336
74370
  if (!data) {
74337
74371
  continue;
74338
74372
  }
@@ -74347,11 +74381,11 @@ class GridSelectionPlugin extends UIPlugin {
74347
74381
  for (const element of toRemove) {
74348
74382
  const size = originalSize[element];
74349
74383
  const currentSize = this.getters.getHeaderSize(cmd.sheetId, cmd.dimension, currentIndex);
74350
- if (size && size !== currentSize) {
74384
+ if (size !== currentSize) {
74351
74385
  resizingGroups[size] ??= [];
74352
74386
  resizingGroups[size].push(currentIndex);
74353
- currentIndex += 1;
74354
74387
  }
74388
+ currentIndex += 1;
74355
74389
  }
74356
74390
  for (const size in resizingGroups) {
74357
74391
  this.dispatch("RESIZE_COLUMNS_ROWS", {
@@ -84072,7 +84106,7 @@ class Model extends EventBus {
84072
84106
  handlers = [];
84073
84107
  uiHandlers = [];
84074
84108
  coreHandlers = [];
84075
- constructor(data = {}, config = {}, stateUpdateMessages = [], uuidGenerator = new UuidGenerator(), verboseImport = true) {
84109
+ constructor(data = {}, config = {}, stateUpdateMessages = [], uuidGenerator = new UuidGenerator(), verboseImport = false) {
84076
84110
  const start = performance.now();
84077
84111
  console.debug("##### Model creation #####");
84078
84112
  super();
@@ -84822,6 +84856,6 @@ exports.tokenColors = tokenColors;
84822
84856
  exports.tokenize = tokenize;
84823
84857
 
84824
84858
 
84825
- __info__.version = "18.4.9";
84826
- __info__.date = "2025-09-05T07:38:32.126Z";
84827
- __info__.hash = "a261873";
84859
+ __info__.version = "18.4.11";
84860
+ __info__.date = "2025-09-19T07:25:39.033Z";
84861
+ __info__.hash = "c7e71ac";
@@ -2670,6 +2670,7 @@ interface ClipboardOptions {
2670
2670
  selectTarget?: boolean;
2671
2671
  }
2672
2672
  type ClipboardPasteOptions = "onlyFormat" | "asValue";
2673
+ type ClipboardCopyOptions = "copyPaste" | "shiftCells";
2673
2674
  type ClipboardOperation = "CUT" | "COPY";
2674
2675
  type ClipboardCellData = {
2675
2676
  sheetId: UID;
@@ -6773,7 +6774,7 @@ declare class ClipboardHandler<T> {
6773
6774
  protected getters: Getters;
6774
6775
  protected dispatch: CommandDispatcher["dispatch"];
6775
6776
  constructor(getters: Getters, dispatch: CommandDispatcher["dispatch"]);
6776
- copy(data: ClipboardData, isCutOperation: boolean): T | undefined;
6777
+ copy(data: ClipboardData, isCutOperation: boolean, mode?: ClipboardCopyOptions): T | undefined;
6777
6778
  paste(target: ClipboardPasteTarget, clippedContent: T, options: ClipboardOptions): void;
6778
6779
  isPasteAllowed(sheetId: UID, target: Zone[], content: T, option: ClipboardOptions): CommandResult;
6779
6780
  isCutAllowed(data: ClipboardData): CommandResult;
@@ -6782,7 +6783,7 @@ declare class ClipboardHandler<T> {
6782
6783
  }
6783
6784
 
6784
6785
  declare class AbstractCellClipboardHandler<T, T1> extends ClipboardHandler<T> {
6785
- copy(data: ClipboardCellData): T | undefined;
6786
+ copy(data: ClipboardCellData, isCutOperation: boolean, mode?: ClipboardCopyOptions): T | undefined;
6786
6787
  pasteFromCopy(sheetId: UID, target: Zone[], content: T1[][], options?: ClipboardOptions): void;
6787
6788
  protected pasteZone(sheetId: UID, col: HeaderIndex, row: HeaderIndex, data: T1[][], clipboardOptions?: ClipboardOptions): void;
6788
6789
  }
@@ -13213,4 +13214,4 @@ declare const chartHelpers: {
13213
13214
  WaterfallChart: typeof WaterfallChart;
13214
13215
  };
13215
13216
 
13216
- export { AST, ASTFuncall, AboveAverageRule, AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, ActivateNextSheetCommand, ActivatePreviousSheetCommand, ActivateSheetCommand, AdaptSheetName, AddColumnsRowsCommand, AddConditionalFormatCommand, AddDataValidationCommand, AddFunctionDescription, AddMergeCommand, AddPivotCommand, Aggregator, Alias, Align, AlphanumericIncrementModifier, AnchorOffset, AnchorZone, ApplyRangeChange, ApplyRangeChangeResult, Arg, ArgDefinition, ArgType, AutoFillCellCommand, AutofillAutoCommand, AutofillCellData, AutofillCommand, AutofillData, AutofillModifier, AutofillModifierImplementation, AutofillResult, AutofillSelectCommand, AutofillTableCommand, AutoresizeColumnsCommand, AutoresizeRowsCommand, AxesDesign, AxisDesign, AxisType, BeginsWithRule, BooleanCell, Border$1 as Border, BorderData, BorderDescr, BorderDescrWithOpacity, BorderPosition, BorderStyle, Box, BoxTextContent, CHART_TYPES, CSSProperties, CancelledReason, Cell, CellErrorType, CellIsRule, CellPosition, CellValue, CellValueType, ChangeType, ChartAxisFormats, ChartCreationContext, ChartDatasetOrientation, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartRuntimeGenerationArgs, ChartStyle, ChartType, ChartWithAxisDefinition, ChartWithDataSetDefinition, CleanClipBoardHighlightCommand, ClearCellCommand, ClearCellsCommand, ClearFormattingCommand, Client, ClientDisconnectedError, ClientId, ClientJoinedMessage, ClientLeftMessage, ClientMovedMessage, ClientPosition, ClientWithColor, ClientWithPosition, ClipboardCell, ClipboardCellData, ClipboardData, ClipboardFigureData, ClipboardMIMEType, ClipboardOperation, ClipboardOptions, ClipboardPasteOptions, ClipboardPasteTarget, Cloneable, CollaborationMessage, CollaborativeEvent, CollaborativeEventReceived, CollaborativeEventTypes, Color, ColorScaleMidPointThreshold, ColorScaleRule, ColorScaleThreshold, ColorSheetCommand, Command, CommandDispatcher, CommandHandler, CommandResult, CommandTypes, CommonPivotCoreDefinition, CompiledFormula, ComposerFocusType, ComputeFunction, ComputedTableStyle, ConditionalFormat, ConditionalFormatInternal, ConditionalFormatRule, ConditionalFormatRuleInternal, ConditionalFormattingOperatorValues, ConsecutiveIndexes, ContainsTextRule, CopyCommand, CopyModifier, CopyPasteCellsAboveCommand, CopyPasteCellsOnLeftCommand, CoreCommand, CoreCommandDispatcher, CoreCommandTypes, CoreGetters, CorePlugin, CoreTable, CoreTableType, CoreViewCommand, CoreViewCommandTypes, CoreViewPlugin, CreateChartCommand, CreateFigureCommand, CreateImageOverCommand, CreateRevisionOptions, CreateSheetCommand, CreateTableCommand, CreateTableStyleCommand, CriterionFilter, Currency, CustomFormulaCriterion, CustomizedDataSet, CutCommand, DEFAULT_LOCALE, DEFAULT_LOCALES, DIRECTION, DOMCoordinates, DOMDimension, DataBarFill, DataBarRule, DataBarRuleInternal, DataFilterValue, DataSet, DataValidationCriterion, DataValidationCriterionType, DataValidationDateCriterion, DataValidationRule, DataValidationRuleData, DatasetDesign, DatasetValues, DateCriterionValue, DateIncrementModifier, DateIsAfterCriterion, DateIsBeforeCriterion, DateIsBetweenCriterion, DateIsCriterion, DateIsNotBetweenCriterion, DateIsOnOrAfterCriterion, DateIsOnOrBeforeCriterion, DateIsValidCriterion, DebouncedFunction, DeleteCellCommand, DeleteContentCommand, DeleteFigureCommand, DeleteSheetCommand, DeleteUnfilteredContentCommand, Dependencies, Dimension, DimensionTree, DimensionTreeNode, Direction$1 as Direction, DispatchResult, DuplicatePivotCommand, DuplicatePivotInNewSheetCommand, DuplicateSheetCommand, DynamicTable, EdgeScrollInfo, EditTextOptions, EditionMode, EmptyCell, EndsWithRule, EnrichedToken, EnsureRange, ErrorCell, EvalContext, EvaluateCellsCommand, EvaluateChartsCommand, EvaluatedCell, EvaluatedCriterion, EvaluatedDateCriterion, EvaluationError, ExcelChartDataset, ExcelChartDefinition, ExcelChartTrendConfiguration, ExcelChartType, ExcelFigureSize, ExcelFilterData, ExcelHeaderData, ExcelSheetData, ExcelTableData, ExcelTrendlineType, ExcelWorkbookData, ExpressionRule, Figure, FigureData, FigureInfo, FigureSize, FigureUI, Filter, FilterCriterionType, FilterId, FoldAllHeaderGroupsCommand, FoldHeaderGroupCommand, FoldHeaderGroupsInZoneCommand, Format, FormattedValue, FormulaCell, FormulaModifier, FormulaToExecute, FreezeColumnsCommand, FreezeRowsCommand, FunctionDescription, FunctionRegistry, FunctionResultNumber, FunctionResultObject, GeneratorCell, GenericCriterion, GenericCriterionType, GenericDateCriterion, GenericDefinition, GetSymbolValue, Getters, Granularity, GridClickModifiers, GridRenderingContext, GroupHeadersCommand, HSLA, HeaderData, HeaderDimensions, HeaderGroup, HeaderIndex, HeadersDependentCommand, HideColumnsRowsCommand, HideSheetCommand, Highlight$1 as Highlight, HistoryChange, IconSet, IconSetRule, IconThreshold, Image, Immutable, Increment, IncrementModifier, InformationNotification, InitPivotParams, InsertCellCommand, InsertNewPivotCommand, InsertPivotCommand, InsertPivotWithTableCommand, IsBetweenCriterion, IsCheckboxCriterion, IsEqualCriterion, IsGreaterOrEqualToCriterion, IsGreaterThanCriterion, IsLessOrEqualToCriterion, IsLessThanCriterion, IsNotBetweenCriterion, IsNotEqualCriterion, IsValueInListCriterion, IsValueInRangeCriterion, LabelValues, LayerName, Lazy, Link, LiteralCell, LocalCommand, LocalTransportService, Locale, LocaleCode, LocaleFormat, LookupCaches, Matrix, Maybe, MenuMouseEvent, Merge, MinimalClipboardData, Model, MoveColumnsRowsCommand, MoveConditionalFormatCommand, MoveRangeCommand, MoveSheetCommand, MoveViewportDownCommand, MoveViewportToCellCommand, MoveViewportUpCommand, NewLocalStateUpdateEvent, NotContainsTextRule, NotificationType, NumberCell, OSClipboardContent, Offset, OperationSequenceNode, OrderedLayers, PaintFormat, PaneDivision, ParsedOSClipboardContent, ParsedOsClipboardContentWithImageData, PasteCommand, PasteFromOSClipboardCommand, Pivot, PivotColRowDomain, PivotCollapsedDomains, PivotCoreDefinition, PivotCoreDimension, PivotCoreMeasure, PivotDimension$1 as PivotDimension, PivotDomain, PivotEmptyCell, PivotField, PivotFields, PivotHeaderCell, PivotMeasure, PivotMeasureDisplay, PivotMeasureDisplayType, PivotMeasureHeaderCell, PivotNode, PivotRuntimeDefinition, PivotSortedColumn, PivotStartPresenceTracking, PivotStopPresenceTracking, PivotTableCell, PivotTableColumn, PivotTableData, PivotTableRow, PivotTimeAdapter, PivotTimeAdapterNotNull, PivotValueCell, PivotVisibilityOptions, Pixel, PixelPosition, Position$1 as Position, PositionDependentCommand, PropsOf, RGBA, Range, RangeAdapter$1 as RangeAdapter, RangeCompiledFormula, RangeData, RangePart, RangeProvider, RangeStringOptions, RangesDependentCommand, Rect, RedoCommand, Ref, ReferenceDenormalizer, RefreshPivotCommand, Registry, RemoteRevisionMessage, RemoteRevisionReceivedEvent, RemoveColumnsRowsCommand, RemoveConditionalFormatCommand, RemoveDataValidationCommand, RemoveDuplicatesCommand, RemoveMergeCommand, RemovePivotCommand, RemoveTableCommand, RemoveTableStyleCommand, RenamePivotCommand, RenameSheetCommand, RenderingBorder, RenderingBox, RenderingGridIcon, RepeatPasteCommand, ReplaceSearchCommand, RequestRedoCommand, RequestUndoCommand, ResizeColumnsRowsCommand, ResizeDirection, ResizeTableCommand, ResizeViewportCommand, Revision, RevisionAcknowledgedEvent, RevisionData, RevisionRedone, RevisionRedoneMessage, RevisionUndone, RevisionUndoneMessage, Row, SPREADSHEET_DIMENSIONS, ScrollDirection$1 as ScrollDirection, SelectFigureCommand, Selection$1 as Selection, SelectionStep, SetBorderCommand, SetBorderTargetCommand, SetContextualFormatCommand, SetDecimalCommand, SetDecimalStep, SetFormattingCommand, SetGridLinesVisibilityCommand, SetViewportOffsetCommand, SetZoneBordersCommand, Sheet, SheetDOMScrollInfo, SheetData, SheetDependentCommand, SheetEditingCommand, ShowFormulaCommand, ShowSheetCommand, SingleColorRule, SingleColorRules, SnapshotEvent, SortCommand, SortDirection, SortOptions, SplitPivotFormulaCommand, SplitTextIntoColumnsCommand, Spreadsheet, SpreadsheetChildEnv, SpreadsheetPivotCoreDefinition, SpreadsheetPivotTable, StartChangeHighlightCommand, StartCommand, StaticTable, StoreConstructor, StoreParams, Style, SumSelectionCommand, Table, TableBorder, TableConfig, TableData$1 as TableData, TableElementStyle, TableId, TableStyle, TableStyleData, TableStyleTemplateName, TargetDependentCommand, TechnicalName, TextCell, TextContainsCriterion, TextIsCriterion, TextIsEmailCriterion, TextIsLinkCriterion, TextNotContainsCriterion, TextRule, ThresholdType, TimePeriodRule, TitleDesign, ToggleCheckboxCommand, Token, Tooltip, Top10Rule, Transformation, TransformationFactory, TransportService, TrendConfiguration, TrendType, TrimWhitespaceCommand, UID, UIPlugin, UnGroupHeadersCommand, UnboundedZone, UndoCommand, UnexpectedRevisionIdEvent, UnfoldAllHeaderGroupsCommand, UnfoldHeaderGroupCommand, UnfoldHeaderGroupsInZoneCommand, UnfreezeColumnsCommand, UnfreezeColumnsRowsCommand, UnfreezeRowsCommand, UnhideColumnsRowsCommand, UpdateCellCommand, UpdateCellData, UpdateCellPositionCommand, UpdateChartCommand, UpdateFigureCommand, UpdateFilterCommand, UpdateLocaleCommand, UpdatePivotCommand, UpdateTableCommand, Validation, ValuesFilter, VerticalAlign, Viewport, WorkbookData, WorkbookHistory, Wrapping, Zone, ZoneDependentCommand, ZoneDimension, __info__, addFunction, addRenderingLayer, astToFormula, availableConditionalFormatOperators, availableDataValidationOperators, availableFiltersOperators, borderStyles, canExecuteInReadonly, chartHelpers, compile, compileTokens, components, constants, containsBlanksRule, containsErrorsRule, convertAstNodes, coreTypes, filterDateCriterionOperators, filterNumberCriterionOperators, filterTextCriterionOperators, findCellInNewZone, functionCache, helpers, hooks, invalidateBordersCommands, invalidateCFEvaluationCommands, invalidateChartEvaluationCommands, invalidateDependenciesCommands, invalidateEvaluationCommands, isCoreCommand, isHeadersDependant, isMatrix, isPositionDependent, isRangeDependant, isSheetDependent, isTargetDependent, isZoneDependent, iterateAstNodes, links, load, notContainsBlanksRule, notContainsErrorsRule, parse, parseTokens, readonlyAllowedCommands, registries, setDefaultSheetViewSize, setTranslationMethod, stores, tokenColors, tokenize };
13217
+ export { AST, ASTFuncall, AboveAverageRule, AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, ActivateNextSheetCommand, ActivatePreviousSheetCommand, ActivateSheetCommand, AdaptSheetName, AddColumnsRowsCommand, AddConditionalFormatCommand, AddDataValidationCommand, AddFunctionDescription, AddMergeCommand, AddPivotCommand, Aggregator, Alias, Align, AlphanumericIncrementModifier, AnchorOffset, AnchorZone, ApplyRangeChange, ApplyRangeChangeResult, Arg, ArgDefinition, ArgType, AutoFillCellCommand, AutofillAutoCommand, AutofillCellData, AutofillCommand, AutofillData, AutofillModifier, AutofillModifierImplementation, AutofillResult, AutofillSelectCommand, AutofillTableCommand, AutoresizeColumnsCommand, AutoresizeRowsCommand, AxesDesign, AxisDesign, AxisType, BeginsWithRule, BooleanCell, Border$1 as Border, BorderData, BorderDescr, BorderDescrWithOpacity, BorderPosition, BorderStyle, Box, BoxTextContent, CHART_TYPES, CSSProperties, CancelledReason, Cell, CellErrorType, CellIsRule, CellPosition, CellValue, CellValueType, ChangeType, ChartAxisFormats, ChartCreationContext, ChartDatasetOrientation, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartRuntimeGenerationArgs, ChartStyle, ChartType, ChartWithAxisDefinition, ChartWithDataSetDefinition, CleanClipBoardHighlightCommand, ClearCellCommand, ClearCellsCommand, ClearFormattingCommand, Client, ClientDisconnectedError, ClientId, ClientJoinedMessage, ClientLeftMessage, ClientMovedMessage, ClientPosition, ClientWithColor, ClientWithPosition, ClipboardCell, ClipboardCellData, ClipboardCopyOptions, ClipboardData, ClipboardFigureData, ClipboardMIMEType, ClipboardOperation, ClipboardOptions, ClipboardPasteOptions, ClipboardPasteTarget, Cloneable, CollaborationMessage, CollaborativeEvent, CollaborativeEventReceived, CollaborativeEventTypes, Color, ColorScaleMidPointThreshold, ColorScaleRule, ColorScaleThreshold, ColorSheetCommand, Command, CommandDispatcher, CommandHandler, CommandResult, CommandTypes, CommonPivotCoreDefinition, CompiledFormula, ComposerFocusType, ComputeFunction, ComputedTableStyle, ConditionalFormat, ConditionalFormatInternal, ConditionalFormatRule, ConditionalFormatRuleInternal, ConditionalFormattingOperatorValues, ConsecutiveIndexes, ContainsTextRule, CopyCommand, CopyModifier, CopyPasteCellsAboveCommand, CopyPasteCellsOnLeftCommand, CoreCommand, CoreCommandDispatcher, CoreCommandTypes, CoreGetters, CorePlugin, CoreTable, CoreTableType, CoreViewCommand, CoreViewCommandTypes, CoreViewPlugin, CreateChartCommand, CreateFigureCommand, CreateImageOverCommand, CreateRevisionOptions, CreateSheetCommand, CreateTableCommand, CreateTableStyleCommand, CriterionFilter, Currency, CustomFormulaCriterion, CustomizedDataSet, CutCommand, DEFAULT_LOCALE, DEFAULT_LOCALES, DIRECTION, DOMCoordinates, DOMDimension, DataBarFill, DataBarRule, DataBarRuleInternal, DataFilterValue, DataSet, DataValidationCriterion, DataValidationCriterionType, DataValidationDateCriterion, DataValidationRule, DataValidationRuleData, DatasetDesign, DatasetValues, DateCriterionValue, DateIncrementModifier, DateIsAfterCriterion, DateIsBeforeCriterion, DateIsBetweenCriterion, DateIsCriterion, DateIsNotBetweenCriterion, DateIsOnOrAfterCriterion, DateIsOnOrBeforeCriterion, DateIsValidCriterion, DebouncedFunction, DeleteCellCommand, DeleteContentCommand, DeleteFigureCommand, DeleteSheetCommand, DeleteUnfilteredContentCommand, Dependencies, Dimension, DimensionTree, DimensionTreeNode, Direction$1 as Direction, DispatchResult, DuplicatePivotCommand, DuplicatePivotInNewSheetCommand, DuplicateSheetCommand, DynamicTable, EdgeScrollInfo, EditTextOptions, EditionMode, EmptyCell, EndsWithRule, EnrichedToken, EnsureRange, ErrorCell, EvalContext, EvaluateCellsCommand, EvaluateChartsCommand, EvaluatedCell, EvaluatedCriterion, EvaluatedDateCriterion, EvaluationError, ExcelChartDataset, ExcelChartDefinition, ExcelChartTrendConfiguration, ExcelChartType, ExcelFigureSize, ExcelFilterData, ExcelHeaderData, ExcelSheetData, ExcelTableData, ExcelTrendlineType, ExcelWorkbookData, ExpressionRule, Figure, FigureData, FigureInfo, FigureSize, FigureUI, Filter, FilterCriterionType, FilterId, FoldAllHeaderGroupsCommand, FoldHeaderGroupCommand, FoldHeaderGroupsInZoneCommand, Format, FormattedValue, FormulaCell, FormulaModifier, FormulaToExecute, FreezeColumnsCommand, FreezeRowsCommand, FunctionDescription, FunctionRegistry, FunctionResultNumber, FunctionResultObject, GeneratorCell, GenericCriterion, GenericCriterionType, GenericDateCriterion, GenericDefinition, GetSymbolValue, Getters, Granularity, GridClickModifiers, GridRenderingContext, GroupHeadersCommand, HSLA, HeaderData, HeaderDimensions, HeaderGroup, HeaderIndex, HeadersDependentCommand, HideColumnsRowsCommand, HideSheetCommand, Highlight$1 as Highlight, HistoryChange, IconSet, IconSetRule, IconThreshold, Image, Immutable, Increment, IncrementModifier, InformationNotification, InitPivotParams, InsertCellCommand, InsertNewPivotCommand, InsertPivotCommand, InsertPivotWithTableCommand, IsBetweenCriterion, IsCheckboxCriterion, IsEqualCriterion, IsGreaterOrEqualToCriterion, IsGreaterThanCriterion, IsLessOrEqualToCriterion, IsLessThanCriterion, IsNotBetweenCriterion, IsNotEqualCriterion, IsValueInListCriterion, IsValueInRangeCriterion, LabelValues, LayerName, Lazy, Link, LiteralCell, LocalCommand, LocalTransportService, Locale, LocaleCode, LocaleFormat, LookupCaches, Matrix, Maybe, MenuMouseEvent, Merge, MinimalClipboardData, Model, MoveColumnsRowsCommand, MoveConditionalFormatCommand, MoveRangeCommand, MoveSheetCommand, MoveViewportDownCommand, MoveViewportToCellCommand, MoveViewportUpCommand, NewLocalStateUpdateEvent, NotContainsTextRule, NotificationType, NumberCell, OSClipboardContent, Offset, OperationSequenceNode, OrderedLayers, PaintFormat, PaneDivision, ParsedOSClipboardContent, ParsedOsClipboardContentWithImageData, PasteCommand, PasteFromOSClipboardCommand, Pivot, PivotColRowDomain, PivotCollapsedDomains, PivotCoreDefinition, PivotCoreDimension, PivotCoreMeasure, PivotDimension$1 as PivotDimension, PivotDomain, PivotEmptyCell, PivotField, PivotFields, PivotHeaderCell, PivotMeasure, PivotMeasureDisplay, PivotMeasureDisplayType, PivotMeasureHeaderCell, PivotNode, PivotRuntimeDefinition, PivotSortedColumn, PivotStartPresenceTracking, PivotStopPresenceTracking, PivotTableCell, PivotTableColumn, PivotTableData, PivotTableRow, PivotTimeAdapter, PivotTimeAdapterNotNull, PivotValueCell, PivotVisibilityOptions, Pixel, PixelPosition, Position$1 as Position, PositionDependentCommand, PropsOf, RGBA, Range, RangeAdapter$1 as RangeAdapter, RangeCompiledFormula, RangeData, RangePart, RangeProvider, RangeStringOptions, RangesDependentCommand, Rect, RedoCommand, Ref, ReferenceDenormalizer, RefreshPivotCommand, Registry, RemoteRevisionMessage, RemoteRevisionReceivedEvent, RemoveColumnsRowsCommand, RemoveConditionalFormatCommand, RemoveDataValidationCommand, RemoveDuplicatesCommand, RemoveMergeCommand, RemovePivotCommand, RemoveTableCommand, RemoveTableStyleCommand, RenamePivotCommand, RenameSheetCommand, RenderingBorder, RenderingBox, RenderingGridIcon, RepeatPasteCommand, ReplaceSearchCommand, RequestRedoCommand, RequestUndoCommand, ResizeColumnsRowsCommand, ResizeDirection, ResizeTableCommand, ResizeViewportCommand, Revision, RevisionAcknowledgedEvent, RevisionData, RevisionRedone, RevisionRedoneMessage, RevisionUndone, RevisionUndoneMessage, Row, SPREADSHEET_DIMENSIONS, ScrollDirection$1 as ScrollDirection, SelectFigureCommand, Selection$1 as Selection, SelectionStep, SetBorderCommand, SetBorderTargetCommand, SetContextualFormatCommand, SetDecimalCommand, SetDecimalStep, SetFormattingCommand, SetGridLinesVisibilityCommand, SetViewportOffsetCommand, SetZoneBordersCommand, Sheet, SheetDOMScrollInfo, SheetData, SheetDependentCommand, SheetEditingCommand, ShowFormulaCommand, ShowSheetCommand, SingleColorRule, SingleColorRules, SnapshotEvent, SortCommand, SortDirection, SortOptions, SplitPivotFormulaCommand, SplitTextIntoColumnsCommand, Spreadsheet, SpreadsheetChildEnv, SpreadsheetPivotCoreDefinition, SpreadsheetPivotTable, StartChangeHighlightCommand, StartCommand, StaticTable, StoreConstructor, StoreParams, Style, SumSelectionCommand, Table, TableBorder, TableConfig, TableData$1 as TableData, TableElementStyle, TableId, TableStyle, TableStyleData, TableStyleTemplateName, TargetDependentCommand, TechnicalName, TextCell, TextContainsCriterion, TextIsCriterion, TextIsEmailCriterion, TextIsLinkCriterion, TextNotContainsCriterion, TextRule, ThresholdType, TimePeriodRule, TitleDesign, ToggleCheckboxCommand, Token, Tooltip, Top10Rule, Transformation, TransformationFactory, TransportService, TrendConfiguration, TrendType, TrimWhitespaceCommand, UID, UIPlugin, UnGroupHeadersCommand, UnboundedZone, UndoCommand, UnexpectedRevisionIdEvent, UnfoldAllHeaderGroupsCommand, UnfoldHeaderGroupCommand, UnfoldHeaderGroupsInZoneCommand, UnfreezeColumnsCommand, UnfreezeColumnsRowsCommand, UnfreezeRowsCommand, UnhideColumnsRowsCommand, UpdateCellCommand, UpdateCellData, UpdateCellPositionCommand, UpdateChartCommand, UpdateFigureCommand, UpdateFilterCommand, UpdateLocaleCommand, UpdatePivotCommand, UpdateTableCommand, Validation, ValuesFilter, VerticalAlign, Viewport, WorkbookData, WorkbookHistory, Wrapping, Zone, ZoneDependentCommand, ZoneDimension, __info__, addFunction, addRenderingLayer, astToFormula, availableConditionalFormatOperators, availableDataValidationOperators, availableFiltersOperators, borderStyles, canExecuteInReadonly, chartHelpers, compile, compileTokens, components, constants, containsBlanksRule, containsErrorsRule, convertAstNodes, coreTypes, filterDateCriterionOperators, filterNumberCriterionOperators, filterTextCriterionOperators, findCellInNewZone, functionCache, helpers, hooks, invalidateBordersCommands, invalidateCFEvaluationCommands, invalidateChartEvaluationCommands, invalidateDependenciesCommands, invalidateEvaluationCommands, isCoreCommand, isHeadersDependant, isMatrix, isPositionDependent, isRangeDependant, isSheetDependent, isTargetDependent, isZoneDependent, iterateAstNodes, links, load, notContainsBlanksRule, notContainsErrorsRule, parse, parseTokens, readonlyAllowedCommands, registries, setDefaultSheetViewSize, setTranslationMethod, stores, tokenColors, tokenize };