@odoo/o-spreadsheet 18.3.19 → 18.3.21

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.3.19
6
- * @date 2025-09-05T07:38:30.661Z
7
- * @hash 77fd307
5
+ * @version 18.3.21
6
+ * @date 2025-09-19T07:25:12.089Z
7
+ * @hash b64ee85
8
8
  */
9
9
 
10
10
  'use strict';
@@ -864,8 +864,19 @@ function memoize(func) {
864
864
  },
865
865
  }[funcName];
866
866
  }
867
+ /**
868
+ * Removes the specified indexes from the array.
869
+ * Sparse (empty) elements are transformed to undefined (unless their index is explicitly removed).
870
+ */
867
871
  function removeIndexesFromArray(array, indexes) {
868
- return array.filter((_, index) => !indexes.includes(index));
872
+ const toRemove = new Set(indexes);
873
+ const newArray = [];
874
+ for (let i = 0; i < array.length; i++) {
875
+ if (!toRemove.has(i)) {
876
+ newArray.push(array[i]);
877
+ }
878
+ }
879
+ return newArray;
869
880
  }
870
881
  function insertItemsAtIndex(array, items, index) {
871
882
  const newArray = [...array];
@@ -7209,7 +7220,7 @@ class ClipboardHandler {
7209
7220
  this.getters = getters;
7210
7221
  this.dispatch = dispatch;
7211
7222
  }
7212
- copy(data, isCutOperation) {
7223
+ copy(data, isCutOperation, mode = "copyPaste") {
7213
7224
  return;
7214
7225
  }
7215
7226
  paste(target, clippedContent, options) { }
@@ -7228,7 +7239,7 @@ class ClipboardHandler {
7228
7239
  }
7229
7240
 
7230
7241
  class AbstractCellClipboardHandler extends ClipboardHandler {
7231
- copy(data) {
7242
+ copy(data, isCutOperation, mode = "copyPaste") {
7232
7243
  return;
7233
7244
  }
7234
7245
  pasteFromCopy(sheetId, target, content, options) {
@@ -8951,7 +8962,7 @@ class CellClipboardHandler extends AbstractCellClipboardHandler {
8951
8962
  }
8952
8963
  return "Success" /* CommandResult.Success */;
8953
8964
  }
8954
- copy(data) {
8965
+ copy(data, isCutOperation, mode = "copyPaste") {
8955
8966
  const sheetId = data.sheetId;
8956
8967
  const { clippedZones, rowsIndexes, columnsIndexes } = data;
8957
8968
  const clippedCells = [];
@@ -8964,7 +8975,7 @@ class CellClipboardHandler extends AbstractCellClipboardHandler {
8964
8975
  const evaluatedCell = this.getters.getEvaluatedCell(position);
8965
8976
  const pivotId = this.getters.getPivotIdFromPosition(position);
8966
8977
  const spreader = this.getters.getArrayFormulaSpreadingOn(position);
8967
- if (pivotId && spreader) {
8978
+ if (mode !== "shiftCells" && pivotId && spreader) {
8968
8979
  const pivotZone = this.getters.getSpreadZone(spreader);
8969
8980
  if ((!deepEquals(spreader, position) || !isCopyingOneCell) &&
8970
8981
  pivotZone &&
@@ -8982,7 +8993,7 @@ class CellClipboardHandler extends AbstractCellClipboardHandler {
8982
8993
  };
8983
8994
  }
8984
8995
  }
8985
- else {
8996
+ else if (mode !== "shiftCells") {
8986
8997
  if (spreader && !deepEquals(spreader, position)) {
8987
8998
  const isSpreaderCopied = rowsIndexes.includes(spreader.row) && columnsIndexes.includes(spreader.col);
8988
8999
  const content = isSpreaderCopied
@@ -9682,7 +9693,7 @@ class SheetClipboardHandler extends AbstractCellClipboardHandler {
9682
9693
  }
9683
9694
 
9684
9695
  class TableClipboardHandler extends AbstractCellClipboardHandler {
9685
- copy(data, isCutOperation) {
9696
+ copy(data, isCutOperation, mode = "copyPaste") {
9686
9697
  const sheetId = data.sheetId;
9687
9698
  const { rowsIndexes, columnsIndexes, zones } = data;
9688
9699
  const copiedTablesIds = new Set();
@@ -9720,11 +9731,13 @@ class TableClipboardHandler extends AbstractCellClipboardHandler {
9720
9731
  type: coreTable.type,
9721
9732
  };
9722
9733
  }
9723
- tableCellsInRow.push({
9724
- table: copiedTable,
9725
- style: this.getTableStyleToCopy(position),
9726
- isWholeTableCopied: copiedTablesIds.has(table.id),
9727
- });
9734
+ if (mode !== "shiftCells") {
9735
+ tableCellsInRow.push({
9736
+ table: copiedTable,
9737
+ style: this.getTableStyleToCopy(position),
9738
+ isWholeTableCopied: copiedTablesIds.has(table.id),
9739
+ });
9740
+ }
9728
9741
  }
9729
9742
  }
9730
9743
  return {
@@ -14808,8 +14821,9 @@ function interactiveSort(env, sheetId, anchor, zone, sortDirection, sortOptions)
14808
14821
  }
14809
14822
 
14810
14823
  function sortMatrix(matrix, locale, ...criteria) {
14811
- for (const [i, value] of criteria.entries()) {
14812
- assert(() => value !== undefined, _t("Value for parameter %d is missing, while the function [[FUNCTION_NAME]] expect a number or a range.", i + 1));
14824
+ for (let i = 0; i < criteria.length; i++) {
14825
+ const param = i % 2 === 0 ? "sort_column" : "is_ascending";
14826
+ assert(() => criteria[i] !== undefined, _t("Value for parameter %s is missing in [[FUNCTION_NAME]].", param));
14813
14827
  }
14814
14828
  const sortingOrders = [];
14815
14829
  const sortColumns = [];
@@ -30886,7 +30900,7 @@ const SUPPORTED_HORIZONTAL_ALIGNMENTS = [
30886
30900
  ];
30887
30901
  const SUPPORTED_VERTICAL_ALIGNMENTS = ["top", "center", "bottom"];
30888
30902
  const SUPPORTED_FONTS = ["Arial"];
30889
- const SUPPORTED_FILL_PATTERNS = ["solid"];
30903
+ const SUPPORTED_FILL_PATTERNS = ["solid", "none"];
30890
30904
  const SUPPORTED_CF_TYPES = [
30891
30905
  "expression",
30892
30906
  "cellIs",
@@ -31071,7 +31085,7 @@ const SUBTOTAL_FUNCTION_CONVERSION_MAP = {
31071
31085
  };
31072
31086
  /** Mapping between Excel format indexes (see XLSX_FORMAT_MAP) and some supported formats */
31073
31087
  const XLSX_FORMATS_CONVERSION_MAP = {
31074
- 0: "",
31088
+ 0: "General",
31075
31089
  1: "0",
31076
31090
  2: "0.00",
31077
31091
  3: "#,#00",
@@ -31397,11 +31411,11 @@ const XLSX_DATE_FORMAT_REGEX = /^(yy|yyyy|m{1,5}|d{1,4}|h{1,2}|s{1,2}|am\/pm|a\/
31397
31411
  * Excel format are defined in openXML §18.8.31
31398
31412
  */
31399
31413
  function convertXlsxFormat(numFmtId, formats, warningManager) {
31400
- if (numFmtId === 0) {
31401
- return undefined;
31402
- }
31403
31414
  // Format is either defined in the imported data, or the formatId is defined in openXML §18.8.30
31404
31415
  let format = XLSX_FORMATS_CONVERSION_MAP[numFmtId] || formats.find((f) => f.id === numFmtId)?.format;
31416
+ if (format === "General") {
31417
+ return undefined;
31418
+ }
31405
31419
  if (format) {
31406
31420
  try {
31407
31421
  let convertedFormat = format.replace(/\[(.*)-[A-Z0-9]{3}\]/g, "[$1]"); // remove currency and locale/date system/number system info (ECMA §18.8.31)
@@ -34246,10 +34260,11 @@ class XlsxSheetExtractor extends XlsxBaseExtractor {
34246
34260
  });
34247
34261
  }
34248
34262
  extractRows(worksheet) {
34263
+ const spilledCells = new Set();
34249
34264
  return this.mapOnElements({ parent: worksheet, query: "sheetData row" }, (rowElement) => {
34250
34265
  return {
34251
34266
  index: this.extractAttr(rowElement, "r", { required: true })?.asNum(),
34252
- cells: this.extractCells(rowElement),
34267
+ cells: this.extractCells(rowElement, spilledCells),
34253
34268
  height: this.extractAttr(rowElement, "ht")?.asNum(),
34254
34269
  customHeight: this.extractAttr(rowElement, "customHeight")?.asBool(),
34255
34270
  hidden: this.extractAttr(rowElement, "hidden")?.asBool(),
@@ -34259,14 +34274,26 @@ class XlsxSheetExtractor extends XlsxBaseExtractor {
34259
34274
  };
34260
34275
  });
34261
34276
  }
34262
- extractCells(row) {
34277
+ extractCells(row, spilledCells) {
34263
34278
  return this.mapOnElements({ parent: row, query: "c" }, (cellElement) => {
34279
+ const xc = this.extractAttr(cellElement, "r", { required: true })?.asString();
34280
+ const formula = this.extractCellFormula(cellElement);
34281
+ if (formula?.ref && formula.sharedIndex === undefined) {
34282
+ const zone = toZone(formula.ref);
34283
+ for (const { col, row } of positions(zone)) {
34284
+ const followerXc = toXC(col, row);
34285
+ if (followerXc !== xc) {
34286
+ spilledCells.add(followerXc);
34287
+ }
34288
+ }
34289
+ }
34290
+ const isSpilled = spilledCells.has(xc);
34264
34291
  return {
34265
- xc: this.extractAttr(cellElement, "r", { required: true })?.asString(),
34292
+ xc,
34266
34293
  styleIndex: this.extractAttr(cellElement, "s")?.asNum(),
34267
34294
  type: CELL_TYPE_CONVERSION_MAP[this.extractAttr(cellElement, "t", { default: "n" })?.asString()],
34268
- value: this.extractChildTextContent(cellElement, "v"),
34269
- formula: this.extractCellFormula(cellElement),
34295
+ value: isSpilled ? undefined : this.extractChildTextContent(cellElement, "v") ?? undefined,
34296
+ formula: isSpilled ? undefined : formula,
34270
34297
  };
34271
34298
  });
34272
34299
  }
@@ -34274,11 +34301,14 @@ class XlsxSheetExtractor extends XlsxBaseExtractor {
34274
34301
  const formulaElement = this.querySelector(cellElement, "f");
34275
34302
  if (!formulaElement)
34276
34303
  return undefined;
34277
- return {
34278
- content: this.extractTextContent(formulaElement),
34279
- sharedIndex: this.extractAttr(formulaElement, "si")?.asNum(),
34280
- ref: this.extractAttr(formulaElement, "ref")?.asString(),
34281
- };
34304
+ const content = this.extractTextContent(formulaElement);
34305
+ const sharedIndex = this.extractAttr(formulaElement, "si")?.asNum();
34306
+ const ref = this.extractAttr(formulaElement, "ref")?.asString();
34307
+ // This is the case of spilled cells of array formulas where <f> is empty
34308
+ if ((content === undefined || content.trim() === "") && sharedIndex === undefined) {
34309
+ return undefined;
34310
+ }
34311
+ return { content, sharedIndex, ref };
34282
34312
  }
34283
34313
  extractHyperLinks(worksheet) {
34284
34314
  return this.mapOnElements({ parent: worksheet, query: "hyperlink" }, (linkElement) => {
@@ -48861,12 +48891,13 @@ class PivotLayoutConfigurator extends owl.Component {
48861
48891
  addCalculatedMeasure() {
48862
48892
  const { measures } = this.props.definition;
48863
48893
  const measureName = this.env.model.getters.generateNewCalculatedMeasureName(measures);
48894
+ const aggregator = "sum";
48864
48895
  this.props.onDimensionsUpdated({
48865
48896
  measures: measures.concat([
48866
48897
  {
48867
- id: this.getMeasureId(measureName),
48898
+ id: this.getMeasureId(measureName, aggregator),
48868
48899
  fieldName: measureName,
48869
- aggregator: "sum",
48900
+ aggregator,
48870
48901
  computedBy: {
48871
48902
  sheetId: this.env.model.getters.getActiveSheetId(),
48872
48903
  formula: "=0",
@@ -66217,7 +66248,7 @@ function withPivotPresentationLayer (PivotClass) {
66217
66248
  return { value: 0 };
66218
66249
  }
66219
66250
  const { columns, rows } = super.definition;
66220
- if (columns.length + rows.length !== domain.length) {
66251
+ if (measure.aggregator && columns.length + rows.length !== domain.length) {
66221
66252
  const values = this.getValuesToAggregate(measure, domain);
66222
66253
  const aggregator = AGGREGATORS_FN[measure.aggregator];
66223
66254
  if (!aggregator) {
@@ -66236,11 +66267,17 @@ function withPivotPresentationLayer (PivotClass) {
66236
66267
  if (columns.find((col) => col.nameWithGranularity === symbolName)) {
66237
66268
  const { colDomain } = domainToColRowDomain(this, domain);
66238
66269
  const symbolIndex = colDomain.findIndex((node) => node.field === symbolName);
66270
+ if (symbolIndex === -1) {
66271
+ return new NotAvailableError();
66272
+ }
66239
66273
  return this.getPivotHeaderValueAndFormat(colDomain.slice(0, symbolIndex + 1));
66240
66274
  }
66241
66275
  if (rows.find((row) => row.nameWithGranularity === symbolName)) {
66242
66276
  const { rowDomain } = domainToColRowDomain(this, domain);
66243
66277
  const symbolIndex = rowDomain.findIndex((row) => row.field === symbolName);
66278
+ if (symbolIndex === -1) {
66279
+ return new NotAvailableError();
66280
+ }
66244
66281
  return this.getPivotHeaderValueAndFormat(rowDomain.slice(0, symbolIndex + 1));
66245
66282
  }
66246
66283
  return this.getPivotCellValueAndFormat(symbolName, domain);
@@ -68831,7 +68868,7 @@ class DataCleanupPlugin extends UIPlugin {
68831
68868
  bottom: rowIndex,
68832
68869
  }));
68833
68870
  const handler = new CellClipboardHandler(this.getters, this.dispatch);
68834
- const data = handler.copy(getClipboardDataPositions(sheetId, rowsToKeep));
68871
+ const data = handler.copy(getClipboardDataPositions(sheetId, rowsToKeep), false);
68835
68872
  if (!data) {
68836
68873
  return;
68837
68874
  }
@@ -70871,12 +70908,12 @@ class ClipboardPlugin extends UIPlugin {
70871
70908
  }
70872
70909
  case "INSERT_CELL": {
70873
70910
  const { cut, paste } = this.getInsertCellsTargets(cmd.zone, cmd.shiftDimension);
70874
- const copiedData = this.copy(cut);
70911
+ const copiedData = this.copy(cut, "shiftCells");
70875
70912
  return this.isPasteAllowed(paste, copiedData, { isCutOperation: true });
70876
70913
  }
70877
70914
  case "DELETE_CELL": {
70878
70915
  const { cut, paste } = this.getDeleteCellsTargets(cmd.zone, cmd.shiftDimension);
70879
- const copiedData = this.copy(cut);
70916
+ const copiedData = this.copy(cut, "shiftCells");
70880
70917
  return this.isPasteAllowed(paste, copiedData, { isCutOperation: true });
70881
70918
  }
70882
70919
  }
@@ -70987,13 +71024,13 @@ class ClipboardPlugin extends UIPlugin {
70987
71024
  });
70988
71025
  break;
70989
71026
  }
70990
- const copiedData = this.copy(cut);
71027
+ const copiedData = this.copy(cut, "shiftCells");
70991
71028
  this.paste(paste, copiedData, { isCutOperation: true });
70992
71029
  break;
70993
71030
  }
70994
71031
  case "INSERT_CELL": {
70995
71032
  const { cut, paste } = this.getInsertCellsTargets(cmd.zone, cmd.shiftDimension);
70996
- const copiedData = this.copy(cut);
71033
+ const copiedData = this.copy(cut, "shiftCells");
70997
71034
  this.paste(paste, copiedData, { isCutOperation: true });
70998
71035
  break;
70999
71036
  }
@@ -71108,11 +71145,11 @@ class ClipboardPlugin extends UIPlugin {
71108
71145
  }
71109
71146
  return false;
71110
71147
  }
71111
- copy(zones) {
71148
+ copy(zones, mode = "copyPaste") {
71112
71149
  let copiedData = {};
71113
71150
  const clipboardData = this.getClipboardData(zones);
71114
71151
  for (const { handlerName, handler } of this.selectClipboardHandlers(clipboardData)) {
71115
- const data = handler.copy(clipboardData, this._isCutOperation);
71152
+ const data = handler.copy(clipboardData, this._isCutOperation, mode);
71116
71153
  copiedData[handlerName] = data;
71117
71154
  const minimalKeys = ["sheetId", "cells", "zones", "figureId"];
71118
71155
  for (const key of minimalKeys) {
@@ -72036,13 +72073,10 @@ class GridSelectionPlugin extends UIPlugin {
72036
72073
  const deltaCol = isBasedBefore && isCol ? thickness : 0;
72037
72074
  const deltaRow = isBasedBefore && !isCol ? thickness : 0;
72038
72075
  const toRemove = isBasedBefore ? cmd.elements.map((el) => el + thickness) : cmd.elements;
72039
- const originalSize = Object.fromEntries(toRemove.map((element) => {
72040
- const size = isCol
72041
- ? this.getters.getColSize(cmd.sheetId, element)
72042
- : this.getters.getUserRowSize(cmd.sheetId, element);
72043
- const isDefaultCol = isCol && size === DEFAULT_CELL_WIDTH;
72044
- return [element, isDefaultCol ? undefined : size];
72045
- }));
72076
+ const originalSize = {};
72077
+ for (const element of toRemove) {
72078
+ originalSize[element] = this.getters.getHeaderSize(cmd.sheetId, cmd.dimension, element);
72079
+ }
72046
72080
  const target = [
72047
72081
  {
72048
72082
  left: isCol ? start + deltaCol : 0,
@@ -72063,7 +72097,7 @@ class GridSelectionPlugin extends UIPlugin {
72063
72097
  ];
72064
72098
  for (const Handler of clipboardHandlersRegistries.cellHandlers.getAll()) {
72065
72099
  const handler = new Handler(this.getters, this.dispatch);
72066
- const data = handler.copy(getClipboardDataPositions(sheetId, target));
72100
+ const data = handler.copy(getClipboardDataPositions(sheetId, target), false, "shiftCells");
72067
72101
  if (!data) {
72068
72102
  continue;
72069
72103
  }
@@ -72078,11 +72112,11 @@ class GridSelectionPlugin extends UIPlugin {
72078
72112
  for (const element of toRemove) {
72079
72113
  const size = originalSize[element];
72080
72114
  const currentSize = this.getters.getHeaderSize(cmd.sheetId, cmd.dimension, currentIndex);
72081
- if (size && size != currentSize) {
72115
+ if (size != currentSize) {
72082
72116
  resizingGroups[size] ??= [];
72083
72117
  resizingGroups[size].push(currentIndex);
72084
- currentIndex += 1;
72085
72118
  }
72119
+ currentIndex += 1;
72086
72120
  }
72087
72121
  for (const size in resizingGroups) {
72088
72122
  this.dispatch("RESIZE_COLUMNS_ROWS", {
@@ -80254,7 +80288,7 @@ class Model extends EventBus {
80254
80288
  handlers = [];
80255
80289
  uiHandlers = [];
80256
80290
  coreHandlers = [];
80257
- constructor(data = {}, config = {}, stateUpdateMessages = [], uuidGenerator = new UuidGenerator(), verboseImport = true) {
80291
+ constructor(data = {}, config = {}, stateUpdateMessages = [], uuidGenerator = new UuidGenerator(), verboseImport = false) {
80258
80292
  const start = performance.now();
80259
80293
  console.debug("##### Model creation #####");
80260
80294
  super();
@@ -80997,6 +81031,6 @@ exports.tokenColors = tokenColors;
80997
81031
  exports.tokenize = tokenize;
80998
81032
 
80999
81033
 
81000
- __info__.version = "18.3.19";
81001
- __info__.date = "2025-09-05T07:38:30.661Z";
81002
- __info__.hash = "77fd307";
81034
+ __info__.version = "18.3.21";
81035
+ __info__.date = "2025-09-19T07:25:12.089Z";
81036
+ __info__.hash = "b64ee85";
@@ -2603,6 +2603,7 @@ interface ClipboardOptions {
2603
2603
  selectTarget?: boolean;
2604
2604
  }
2605
2605
  type ClipboardPasteOptions = "onlyFormat" | "asValue";
2606
+ type ClipboardCopyOptions = "copyPaste" | "shiftCells";
2606
2607
  type ClipboardOperation = "CUT" | "COPY";
2607
2608
  type ClipboardCellData = {
2608
2609
  sheetId: UID;
@@ -6622,7 +6623,7 @@ declare class ClipboardHandler<T> {
6622
6623
  protected getters: Getters;
6623
6624
  protected dispatch: CommandDispatcher["dispatch"];
6624
6625
  constructor(getters: Getters, dispatch: CommandDispatcher["dispatch"]);
6625
- copy(data: ClipboardData, isCutOperation: boolean): T | undefined;
6626
+ copy(data: ClipboardData, isCutOperation: boolean, mode?: ClipboardCopyOptions): T | undefined;
6626
6627
  paste(target: ClipboardPasteTarget, clippedContent: T, options: ClipboardOptions): void;
6627
6628
  isPasteAllowed(sheetId: UID, target: Zone[], content: T, option: ClipboardOptions): CommandResult;
6628
6629
  isCutAllowed(data: ClipboardData): CommandResult;
@@ -6631,7 +6632,7 @@ declare class ClipboardHandler<T> {
6631
6632
  }
6632
6633
 
6633
6634
  declare class AbstractCellClipboardHandler<T, T1> extends ClipboardHandler<T> {
6634
- copy(data: ClipboardCellData): T | undefined;
6635
+ copy(data: ClipboardCellData, isCutOperation: boolean, mode?: ClipboardCopyOptions): T | undefined;
6635
6636
  pasteFromCopy(sheetId: UID, target: Zone[], content: T1[][], options?: ClipboardOptions): void;
6636
6637
  protected pasteZone(sheetId: UID, col: HeaderIndex, row: HeaderIndex, data: T1[][], clipboardOptions?: ClipboardOptions): void;
6637
6638
  }
@@ -12607,4 +12608,4 @@ declare const chartHelpers: {
12607
12608
  WaterfallChart: typeof WaterfallChart;
12608
12609
  };
12609
12610
 
12610
- 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, BorderPosition, BorderStyle, Box, BoxTextContent, CHART_TYPES, CSSProperties, CancelledReason, Cell, CellErrorType, CellIsRule, CellPosition, CellValue, CellValueType, ChangeType, ChartAxisFormats, ChartCreationContext, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartRuntimeGenerationArgs, ChartStyle, ChartType, ChartWithAxisDefinition, ChartWithDataSetDefinition, CleanClipBoardHighlightCommand, ClearCellCommand, ClearCellsCommand, ClearFormattingCommand, Client, ClientId, ClientJoinedMessage, ClientLeftMessage, ClientMovedMessage, ClientPosition, ClipboardCell, ClipboardCellData, ClipboardData, ClipboardFigureData, ClipboardMIMEType, ClipboardOperation, ClipboardOptions, ClipboardPasteOptions, ClipboardPasteTarget, Cloneable, CollaborationMessage, CollaborativeEvent, CollaborativeEventReceived, CollaborativeEventTypes, Color, ColorScaleMidPointThreshold, ColorScaleRule, ColorScaleThreshold, ColorSheetCommand, Command, CommandDispatcher, CommandHandler, CommandResult, CommandTypes, CommonPivotCoreDefinition, CompiledFormula, ComposerFocusType, ComputeFunction, ComputedTableStyle, ConditionalFormat, ConditionalFormatInternal, ConditionalFormatRule, ConditionalFormatRuleInternal, ConditionalFormattingOperatorValues, ConsecutiveIndexes, ContainsTextRule, CopyCommand, CopyModifier, CopyPasteCellsAboveCommand, CopyPasteCellsOnLeftCommand, CoreCommand, CoreCommandDispatcher, CoreCommandTypes, CoreGetters, CorePlugin, CoreTable, CoreTableType, CoreViewCommand, CoreViewCommandTypes, CoreViewPlugin, CreateChartCommand, CreateFigureCommand, CreateImageOverCommand, CreateRevisionOptions, CreateSheetCommand, CreateTableCommand, CreateTableStyleCommand, Currency, CustomFormulaCriterion, CustomizedDataSet, CutCommand, DEFAULT_LOCALE, DEFAULT_LOCALES, DIRECTION, DOMCoordinates, DOMDimension, DataBarFill, DataBarRule, DataBarRuleInternal, DataSet, DataValidationCriterion, DataValidationCriterionType, DataValidationDateCriterion, DataValidationRule, DataValidationRuleData, DatasetDesign, DatasetValues, DateCriterionValue, DateIncrementModifier, DateIsAfterCriterion, DateIsBeforeCriterion, DateIsBetweenCriterion, DateIsCriterion, DateIsNotBetweenCriterion, DateIsOnOrAfterCriterion, DateIsOnOrBeforeCriterion, DateIsValidCriterion, DebouncedFunction, DeleteCellCommand, DeleteContentCommand, DeleteFigureCommand, DeleteSheetCommand, 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, EvaluationError, ExcelChartDataset, ExcelChartDefinition, ExcelChartType, ExcelFigureSize, ExcelFilterData, ExcelHeaderData, ExcelSheetData, ExcelTableData, ExcelWorkbookData, ExpressionRule, Figure, FigureData, FigureInfo, FigureSize, FigureUI, Filter, FilterId, FoldAllHeaderGroupsCommand, FoldHeaderGroupCommand, FoldHeaderGroupsInZoneCommand, Format, FormattedValue, FormulaCell, FormulaModifier, FormulaToExecute, FreezeColumnsCommand, FreezeRowsCommand, FunctionDescription, FunctionRegistry, FunctionResultNumber, FunctionResultObject, GeneratorCell, GenericDefinition, GetSymbolValue, Getters, Granularity, GridClickModifiers, GridRenderingContext, GroupHeadersCommand, HSLA, HeaderData, HeaderDimensions, HeaderGroup, HeaderIndex, HeadersDependentCommand, HideColumnsRowsCommand, HideSheetCommand, Highlight$1 as Highlight, HistoryChange, IconSet, IconSetRule, IconThreshold, Image, Immutable, Increment, IncrementModifier, InformationNotification, InitPivotParams, InsertCellCommand, InsertNewPivotCommand, InsertPivotCommand, InsertPivotWithTableCommand, IsBetweenCriterion, IsCheckboxCriterion, IsEqualCriterion, IsGreaterOrEqualToCriterion, IsGreaterThanCriterion, IsLessOrEqualToCriterion, IsLessThanCriterion, IsNotBetweenCriterion, IsNotEqualCriterion, IsValueInListCriterion, IsValueInRangeCriterion, LabelValues, LayerName, Lazy, Link, LiteralCell, LocalCommand, Locale, LocaleCode, LocaleFormat, 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, 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, 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, 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, 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, Token, Tooltip, Top10Rule, Transformation, TransformationFactory, TransportService, TrendConfiguration, TrendType, TrimWhitespaceCommand, UID, UIPlugin, UnGroupHeadersCommand, UnboundedZone, UndoCommand, UnexpectedRevisionIdEvent, UnfoldAllHeaderGroupsCommand, UnfoldHeaderGroupCommand, UnfoldHeaderGroupsInZoneCommand, UnfreezeColumnsCommand, UnfreezeColumnsRowsCommand, UnfreezeRowsCommand, UnhideColumnsRowsCommand, UpdateCellCommand, UpdateCellData, UpdateCellPositionCommand, UpdateChartCommand, UpdateFigureCommand, UpdateFilterCommand, UpdateLocaleCommand, UpdatePivotCommand, UpdateTableCommand, Validation, VerticalAlign, Viewport, WorkbookData, WorkbookHistory, Wrapping, Zone, ZoneDependentCommand, ZoneDimension, __info__, addFunction, addRenderingLayer, astToFormula, borderStyles, canExecuteInReadonly, chartHelpers, compile, compileTokens, components, constants, containsBlanksRule, containsErrorsRule, convertAstNodes, coreTypes, findCellInNewZone, functionCache, helpers, hooks, invalidateBordersCommands, invalidateCFEvaluationCommands, invalidateChartEvaluationCommands, invalidateDependenciesCommands, invalidateEvaluationCommands, isCoreCommand, isHeadersDependant, isMatrix, isPositionDependent, isRangeDependant, isSheetDependent, isTargetDependent, isZoneDependent, iterateAstNodes, links, load, notContainsBlanksRule, notContainsErrorsRule, parse, parseTokens, readonlyAllowedCommands, registries, setDefaultSheetViewSize, setTranslationMethod, stores, tokenColors, tokenize };
12611
+ 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, BorderPosition, BorderStyle, Box, BoxTextContent, CHART_TYPES, CSSProperties, CancelledReason, Cell, CellErrorType, CellIsRule, CellPosition, CellValue, CellValueType, ChangeType, ChartAxisFormats, ChartCreationContext, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartRuntimeGenerationArgs, ChartStyle, ChartType, ChartWithAxisDefinition, ChartWithDataSetDefinition, CleanClipBoardHighlightCommand, ClearCellCommand, ClearCellsCommand, ClearFormattingCommand, Client, ClientId, ClientJoinedMessage, ClientLeftMessage, ClientMovedMessage, ClientPosition, 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, 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, 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, EvaluationError, ExcelChartDataset, ExcelChartDefinition, ExcelChartType, ExcelFigureSize, ExcelFilterData, ExcelHeaderData, ExcelSheetData, ExcelTableData, ExcelWorkbookData, ExpressionRule, Figure, FigureData, FigureInfo, FigureSize, FigureUI, Filter, FilterId, FoldAllHeaderGroupsCommand, FoldHeaderGroupCommand, FoldHeaderGroupsInZoneCommand, Format, FormattedValue, FormulaCell, FormulaModifier, FormulaToExecute, FreezeColumnsCommand, FreezeRowsCommand, FunctionDescription, FunctionRegistry, FunctionResultNumber, FunctionResultObject, GeneratorCell, GenericDefinition, GetSymbolValue, Getters, Granularity, GridClickModifiers, GridRenderingContext, GroupHeadersCommand, HSLA, HeaderData, HeaderDimensions, HeaderGroup, HeaderIndex, HeadersDependentCommand, HideColumnsRowsCommand, HideSheetCommand, Highlight$1 as Highlight, HistoryChange, IconSet, IconSetRule, IconThreshold, Image, Immutable, Increment, IncrementModifier, InformationNotification, InitPivotParams, InsertCellCommand, InsertNewPivotCommand, InsertPivotCommand, InsertPivotWithTableCommand, IsBetweenCriterion, IsCheckboxCriterion, IsEqualCriterion, IsGreaterOrEqualToCriterion, IsGreaterThanCriterion, IsLessOrEqualToCriterion, IsLessThanCriterion, IsNotBetweenCriterion, IsNotEqualCriterion, IsValueInListCriterion, IsValueInRangeCriterion, LabelValues, LayerName, Lazy, Link, LiteralCell, LocalCommand, Locale, LocaleCode, LocaleFormat, 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, 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, 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, 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, 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, Token, Tooltip, Top10Rule, Transformation, TransformationFactory, TransportService, TrendConfiguration, TrendType, TrimWhitespaceCommand, UID, UIPlugin, UnGroupHeadersCommand, UnboundedZone, UndoCommand, UnexpectedRevisionIdEvent, UnfoldAllHeaderGroupsCommand, UnfoldHeaderGroupCommand, UnfoldHeaderGroupsInZoneCommand, UnfreezeColumnsCommand, UnfreezeColumnsRowsCommand, UnfreezeRowsCommand, UnhideColumnsRowsCommand, UpdateCellCommand, UpdateCellData, UpdateCellPositionCommand, UpdateChartCommand, UpdateFigureCommand, UpdateFilterCommand, UpdateLocaleCommand, UpdatePivotCommand, UpdateTableCommand, Validation, VerticalAlign, Viewport, WorkbookData, WorkbookHistory, Wrapping, Zone, ZoneDependentCommand, ZoneDimension, __info__, addFunction, addRenderingLayer, astToFormula, borderStyles, canExecuteInReadonly, chartHelpers, compile, compileTokens, components, constants, containsBlanksRule, containsErrorsRule, convertAstNodes, coreTypes, findCellInNewZone, functionCache, helpers, hooks, invalidateBordersCommands, invalidateCFEvaluationCommands, invalidateChartEvaluationCommands, invalidateDependenciesCommands, invalidateEvaluationCommands, isCoreCommand, isHeadersDependant, isMatrix, isPositionDependent, isRangeDependant, isSheetDependent, isTargetDependent, isZoneDependent, iterateAstNodes, links, load, notContainsBlanksRule, notContainsErrorsRule, parse, parseTokens, readonlyAllowedCommands, registries, setDefaultSheetViewSize, setTranslationMethod, stores, tokenColors, tokenize };