@odoo/o-spreadsheet 18.2.28 → 18.2.30

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.2.28
6
- * @date 2025-09-05T07:38:26.582Z
7
- * @hash 84335fb
5
+ * @version 18.2.30
6
+ * @date 2025-09-19T07:24:27.894Z
7
+ * @hash 16428fd
8
8
  */
9
9
 
10
10
  'use strict';
@@ -860,8 +860,19 @@ function memoize(func) {
860
860
  },
861
861
  }[funcName];
862
862
  }
863
+ /**
864
+ * Removes the specified indexes from the array.
865
+ * Sparse (empty) elements are transformed to undefined (unless their index is explicitly removed).
866
+ */
863
867
  function removeIndexesFromArray(array, indexes) {
864
- return array.filter((_, index) => !indexes.includes(index));
868
+ const toRemove = new Set(indexes);
869
+ const newArray = [];
870
+ for (let i = 0; i < array.length; i++) {
871
+ if (!toRemove.has(i)) {
872
+ newArray.push(array[i]);
873
+ }
874
+ }
875
+ return newArray;
865
876
  }
866
877
  function insertItemsAtIndex(array, items, index) {
867
878
  const newArray = [...array];
@@ -6905,7 +6916,7 @@ class ClipboardHandler {
6905
6916
  this.getters = getters;
6906
6917
  this.dispatch = dispatch;
6907
6918
  }
6908
- copy(data) {
6919
+ copy(data, mode = "copyPaste") {
6909
6920
  return;
6910
6921
  }
6911
6922
  paste(target, clippedContent, options) { }
@@ -6924,7 +6935,7 @@ class ClipboardHandler {
6924
6935
  }
6925
6936
 
6926
6937
  class AbstractCellClipboardHandler extends ClipboardHandler {
6927
- copy(data) {
6938
+ copy(data, mode = "copyPaste") {
6928
6939
  return;
6929
6940
  }
6930
6941
  pasteFromCopy(sheetId, target, content, options) {
@@ -8641,7 +8652,7 @@ class CellClipboardHandler extends AbstractCellClipboardHandler {
8641
8652
  }
8642
8653
  return "Success" /* CommandResult.Success */;
8643
8654
  }
8644
- copy(data) {
8655
+ copy(data, mode = "copyPaste") {
8645
8656
  const sheetId = data.sheetId;
8646
8657
  const { clippedZones, rowsIndexes, columnsIndexes } = data;
8647
8658
  const clippedCells = [];
@@ -8654,7 +8665,7 @@ class CellClipboardHandler extends AbstractCellClipboardHandler {
8654
8665
  const evaluatedCell = this.getters.getEvaluatedCell(position);
8655
8666
  const pivotId = this.getters.getPivotIdFromPosition(position);
8656
8667
  const spreader = this.getters.getArrayFormulaSpreadingOn(position);
8657
- if (pivotId && spreader) {
8668
+ if (mode !== "shiftCells" && pivotId && spreader) {
8658
8669
  const pivotZone = this.getters.getSpreadZone(spreader);
8659
8670
  if ((!deepEquals(spreader, position) || !isCopyingOneCell) &&
8660
8671
  pivotZone &&
@@ -8672,7 +8683,7 @@ class CellClipboardHandler extends AbstractCellClipboardHandler {
8672
8683
  };
8673
8684
  }
8674
8685
  }
8675
- else {
8686
+ else if (mode !== "shiftCells") {
8676
8687
  if (spreader && !deepEquals(spreader, position)) {
8677
8688
  const isSpreaderCopied = rowsIndexes.includes(spreader.row) && columnsIndexes.includes(spreader.col);
8678
8689
  const content = isSpreaderCopied
@@ -9365,7 +9376,7 @@ class SheetClipboardHandler extends AbstractCellClipboardHandler {
9365
9376
  }
9366
9377
 
9367
9378
  class TableClipboardHandler extends AbstractCellClipboardHandler {
9368
- copy(data) {
9379
+ copy(data, mode = "copyPaste") {
9369
9380
  const sheetId = data.sheetId;
9370
9381
  const { rowsIndexes, columnsIndexes, zones } = data;
9371
9382
  const copiedTablesIds = new Set();
@@ -9395,11 +9406,13 @@ class TableClipboardHandler extends AbstractCellClipboardHandler {
9395
9406
  type: coreTable.type,
9396
9407
  };
9397
9408
  }
9398
- tableCellsInRow.push({
9399
- table: copiedTable,
9400
- style: this.getTableStyleToCopy(position),
9401
- isWholeTableCopied: copiedTablesIds.has(table.id),
9402
- });
9409
+ if (mode !== "shiftCells") {
9410
+ tableCellsInRow.push({
9411
+ table: copiedTable,
9412
+ style: this.getTableStyleToCopy(position),
9413
+ isWholeTableCopied: copiedTablesIds.has(table.id),
9414
+ });
9415
+ }
9403
9416
  }
9404
9417
  }
9405
9418
  return {
@@ -15618,8 +15631,9 @@ function interactiveSort(env, sheetId, anchor, zone, sortDirection, sortOptions)
15618
15631
  }
15619
15632
 
15620
15633
  function sortMatrix(matrix, locale, ...criteria) {
15621
- for (const [i, value] of criteria.entries()) {
15622
- assert(() => value !== undefined, _t("Value for parameter %d is missing, while the function [[FUNCTION_NAME]] expect a number or a range.", i + 1));
15634
+ for (let i = 0; i < criteria.length; i++) {
15635
+ const param = i % 2 === 0 ? "sort_column" : "is_ascending";
15636
+ assert(() => criteria[i] !== undefined, _t("Value for parameter %s is missing in [[FUNCTION_NAME]].", param));
15623
15637
  }
15624
15638
  const sortingOrders = [];
15625
15639
  const sortColumns = [];
@@ -23795,7 +23809,7 @@ const SUPPORTED_HORIZONTAL_ALIGNMENTS = [
23795
23809
  ];
23796
23810
  const SUPPORTED_VERTICAL_ALIGNMENTS = ["top", "center", "bottom"];
23797
23811
  const SUPPORTED_FONTS = ["Arial"];
23798
- const SUPPORTED_FILL_PATTERNS = ["solid"];
23812
+ const SUPPORTED_FILL_PATTERNS = ["solid", "none"];
23799
23813
  const SUPPORTED_CF_TYPES = [
23800
23814
  "expression",
23801
23815
  "cellIs",
@@ -23980,7 +23994,7 @@ const SUBTOTAL_FUNCTION_CONVERSION_MAP = {
23980
23994
  };
23981
23995
  /** Mapping between Excel format indexes (see XLSX_FORMAT_MAP) and some supported formats */
23982
23996
  const XLSX_FORMATS_CONVERSION_MAP = {
23983
- 0: "",
23997
+ 0: "General",
23984
23998
  1: "0",
23985
23999
  2: "0.00",
23986
24000
  3: "#,#00",
@@ -24306,11 +24320,11 @@ const XLSX_DATE_FORMAT_REGEX = /^(yy|yyyy|m{1,5}|d{1,4}|h{1,2}|s{1,2}|am\/pm|a\/
24306
24320
  * Excel format are defined in openXML §18.8.31
24307
24321
  */
24308
24322
  function convertXlsxFormat(numFmtId, formats, warningManager) {
24309
- if (numFmtId === 0) {
24310
- return undefined;
24311
- }
24312
24323
  // Format is either defined in the imported data, or the formatId is defined in openXML §18.8.30
24313
24324
  let format = XLSX_FORMATS_CONVERSION_MAP[numFmtId] || formats.find((f) => f.id === numFmtId)?.format;
24325
+ if (format === "General") {
24326
+ return undefined;
24327
+ }
24314
24328
  if (format) {
24315
24329
  try {
24316
24330
  let convertedFormat = format.replace(/\[(.*)-[A-Z0-9]{3}\]/g, "[$1]"); // remove currency and locale/date system/number system info (ECMA §18.8.31)
@@ -27271,10 +27285,11 @@ class XlsxSheetExtractor extends XlsxBaseExtractor {
27271
27285
  });
27272
27286
  }
27273
27287
  extractRows(worksheet) {
27288
+ const spilledCells = new Set();
27274
27289
  return this.mapOnElements({ parent: worksheet, query: "sheetData row" }, (rowElement) => {
27275
27290
  return {
27276
27291
  index: this.extractAttr(rowElement, "r", { required: true })?.asNum(),
27277
- cells: this.extractCells(rowElement),
27292
+ cells: this.extractCells(rowElement, spilledCells),
27278
27293
  height: this.extractAttr(rowElement, "ht")?.asNum(),
27279
27294
  customHeight: this.extractAttr(rowElement, "customHeight")?.asBool(),
27280
27295
  hidden: this.extractAttr(rowElement, "hidden")?.asBool(),
@@ -27284,14 +27299,26 @@ class XlsxSheetExtractor extends XlsxBaseExtractor {
27284
27299
  };
27285
27300
  });
27286
27301
  }
27287
- extractCells(row) {
27302
+ extractCells(row, spilledCells) {
27288
27303
  return this.mapOnElements({ parent: row, query: "c" }, (cellElement) => {
27304
+ const xc = this.extractAttr(cellElement, "r", { required: true })?.asString();
27305
+ const formula = this.extractCellFormula(cellElement);
27306
+ if (formula?.ref && formula.sharedIndex === undefined) {
27307
+ const zone = toZone(formula.ref);
27308
+ for (const { col, row } of positions(zone)) {
27309
+ const followerXc = toXC(col, row);
27310
+ if (followerXc !== xc) {
27311
+ spilledCells.add(followerXc);
27312
+ }
27313
+ }
27314
+ }
27315
+ const isSpilled = spilledCells.has(xc);
27289
27316
  return {
27290
- xc: this.extractAttr(cellElement, "r", { required: true })?.asString(),
27317
+ xc,
27291
27318
  styleIndex: this.extractAttr(cellElement, "s")?.asNum(),
27292
27319
  type: CELL_TYPE_CONVERSION_MAP[this.extractAttr(cellElement, "t", { default: "n" })?.asString()],
27293
- value: this.extractChildTextContent(cellElement, "v"),
27294
- formula: this.extractCellFormula(cellElement),
27320
+ value: isSpilled ? undefined : this.extractChildTextContent(cellElement, "v") ?? undefined,
27321
+ formula: isSpilled ? undefined : formula,
27295
27322
  };
27296
27323
  });
27297
27324
  }
@@ -27299,11 +27326,14 @@ class XlsxSheetExtractor extends XlsxBaseExtractor {
27299
27326
  const formulaElement = this.querySelector(cellElement, "f");
27300
27327
  if (!formulaElement)
27301
27328
  return undefined;
27302
- return {
27303
- content: this.extractTextContent(formulaElement),
27304
- sharedIndex: this.extractAttr(formulaElement, "si")?.asNum(),
27305
- ref: this.extractAttr(formulaElement, "ref")?.asString(),
27306
- };
27329
+ const content = this.extractTextContent(formulaElement);
27330
+ const sharedIndex = this.extractAttr(formulaElement, "si")?.asNum();
27331
+ const ref = this.extractAttr(formulaElement, "ref")?.asString();
27332
+ // This is the case of spilled cells of array formulas where <f> is empty
27333
+ if ((content === undefined || content.trim() === "") && sharedIndex === undefined) {
27334
+ return undefined;
27335
+ }
27336
+ return { content, sharedIndex, ref };
27307
27337
  }
27308
27338
  extractHyperLinks(worksheet) {
27309
27339
  return this.mapOnElements({ parent: worksheet, query: "hyperlink" }, (linkElement) => {
@@ -46114,12 +46144,13 @@ class PivotLayoutConfigurator extends owl.Component {
46114
46144
  addCalculatedMeasure() {
46115
46145
  const { measures } = this.props.definition;
46116
46146
  const measureName = this.env.model.getters.generateNewCalculatedMeasureName(measures);
46147
+ const aggregator = "sum";
46117
46148
  this.props.onDimensionsUpdated({
46118
46149
  measures: measures.concat([
46119
46150
  {
46120
- id: this.getMeasureId(measureName),
46151
+ id: this.getMeasureId(measureName, aggregator),
46121
46152
  fieldName: measureName,
46122
- aggregator: "sum",
46153
+ aggregator,
46123
46154
  computedBy: {
46124
46155
  sheetId: this.env.model.getters.getActiveSheetId(),
46125
46156
  formula: "=0",
@@ -63279,7 +63310,7 @@ function withPivotPresentationLayer (PivotClass) {
63279
63310
  return { value: 0 };
63280
63311
  }
63281
63312
  const { columns, rows } = super.definition;
63282
- if (columns.length + rows.length !== domain.length) {
63313
+ if (measure.aggregator && columns.length + rows.length !== domain.length) {
63283
63314
  const values = this.getValuesToAggregate(measure, domain);
63284
63315
  const aggregator = AGGREGATORS_FN[measure.aggregator];
63285
63316
  if (!aggregator) {
@@ -63298,11 +63329,17 @@ function withPivotPresentationLayer (PivotClass) {
63298
63329
  if (columns.find((col) => col.nameWithGranularity === symbolName)) {
63299
63330
  const { colDomain } = domainToColRowDomain(this, domain);
63300
63331
  const symbolIndex = colDomain.findIndex((node) => node.field === symbolName);
63332
+ if (symbolIndex === -1) {
63333
+ return new NotAvailableError();
63334
+ }
63301
63335
  return this.getPivotHeaderValueAndFormat(colDomain.slice(0, symbolIndex + 1));
63302
63336
  }
63303
63337
  if (rows.find((row) => row.nameWithGranularity === symbolName)) {
63304
63338
  const { rowDomain } = domainToColRowDomain(this, domain);
63305
63339
  const symbolIndex = rowDomain.findIndex((row) => row.field === symbolName);
63340
+ if (symbolIndex === -1) {
63341
+ return new NotAvailableError();
63342
+ }
63306
63343
  return this.getPivotHeaderValueAndFormat(rowDomain.slice(0, symbolIndex + 1));
63307
63344
  }
63308
63345
  return this.getPivotCellValueAndFormat(symbolName, domain);
@@ -67808,12 +67845,12 @@ class ClipboardPlugin extends UIPlugin {
67808
67845
  }
67809
67846
  case "INSERT_CELL": {
67810
67847
  const { cut, paste } = this.getInsertCellsTargets(cmd.zone, cmd.shiftDimension);
67811
- const copiedData = this.copy(cut);
67848
+ const copiedData = this.copy(cut, "shiftCells");
67812
67849
  return this.isPasteAllowed(paste, copiedData, { isCutOperation: true });
67813
67850
  }
67814
67851
  case "DELETE_CELL": {
67815
67852
  const { cut, paste } = this.getDeleteCellsTargets(cmd.zone, cmd.shiftDimension);
67816
- const copiedData = this.copy(cut);
67853
+ const copiedData = this.copy(cut, "shiftCells");
67817
67854
  return this.isPasteAllowed(paste, copiedData, { isCutOperation: true });
67818
67855
  }
67819
67856
  }
@@ -67903,13 +67940,13 @@ class ClipboardPlugin extends UIPlugin {
67903
67940
  });
67904
67941
  break;
67905
67942
  }
67906
- const copiedData = this.copy(cut);
67943
+ const copiedData = this.copy(cut, "shiftCells");
67907
67944
  this.paste(paste, copiedData, { isCutOperation: true });
67908
67945
  break;
67909
67946
  }
67910
67947
  case "INSERT_CELL": {
67911
67948
  const { cut, paste } = this.getInsertCellsTargets(cmd.zone, cmd.shiftDimension);
67912
- const copiedData = this.copy(cut);
67949
+ const copiedData = this.copy(cut, "shiftCells");
67913
67950
  this.paste(paste, copiedData, { isCutOperation: true });
67914
67951
  break;
67915
67952
  }
@@ -68024,11 +68061,11 @@ class ClipboardPlugin extends UIPlugin {
68024
68061
  }
68025
68062
  return false;
68026
68063
  }
68027
- copy(zones) {
68064
+ copy(zones, mode = "copyPaste") {
68028
68065
  let copiedData = {};
68029
68066
  const clipboardData = this.getClipboardData(zones);
68030
68067
  for (const { handlerName, handler } of this.selectClipboardHandlers(clipboardData)) {
68031
- const data = handler.copy(clipboardData);
68068
+ const data = handler.copy(clipboardData, mode);
68032
68069
  copiedData[handlerName] = data;
68033
68070
  const minimalKeys = ["sheetId", "cells", "zones", "figureId"];
68034
68071
  for (const key of minimalKeys) {
@@ -68865,13 +68902,10 @@ class GridSelectionPlugin extends UIPlugin {
68865
68902
  const deltaCol = isBasedBefore && isCol ? thickness : 0;
68866
68903
  const deltaRow = isBasedBefore && !isCol ? thickness : 0;
68867
68904
  const toRemove = isBasedBefore ? cmd.elements.map((el) => el + thickness) : cmd.elements;
68868
- const originalSize = Object.fromEntries(toRemove.map((element) => {
68869
- const size = isCol
68870
- ? this.getters.getColSize(cmd.sheetId, element)
68871
- : this.getters.getUserRowSize(cmd.sheetId, element);
68872
- const isDefaultCol = isCol && size === DEFAULT_CELL_WIDTH;
68873
- return [element, isDefaultCol ? undefined : size];
68874
- }));
68905
+ const originalSize = {};
68906
+ for (const element of toRemove) {
68907
+ originalSize[element] = this.getters.getHeaderSize(cmd.sheetId, cmd.dimension, element);
68908
+ }
68875
68909
  const target = [
68876
68910
  {
68877
68911
  left: isCol ? start + deltaCol : 0,
@@ -68892,7 +68926,7 @@ class GridSelectionPlugin extends UIPlugin {
68892
68926
  ];
68893
68927
  for (const Handler of clipboardHandlersRegistries.cellHandlers.getAll()) {
68894
68928
  const handler = new Handler(this.getters, this.dispatch);
68895
- const data = handler.copy(getClipboardDataPositions(sheetId, target));
68929
+ const data = handler.copy(getClipboardDataPositions(sheetId, target), "shiftCells");
68896
68930
  if (!data) {
68897
68931
  continue;
68898
68932
  }
@@ -68907,11 +68941,11 @@ class GridSelectionPlugin extends UIPlugin {
68907
68941
  for (const element of toRemove) {
68908
68942
  const size = originalSize[element];
68909
68943
  const currentSize = this.getters.getHeaderSize(cmd.sheetId, cmd.dimension, currentIndex);
68910
- if (size && size != currentSize) {
68944
+ if (size != currentSize) {
68911
68945
  resizingGroups[size] ??= [];
68912
68946
  resizingGroups[size].push(currentIndex);
68913
- currentIndex += 1;
68914
68947
  }
68948
+ currentIndex += 1;
68915
68949
  }
68916
68950
  for (const size in resizingGroups) {
68917
68951
  this.dispatch("RESIZE_COLUMNS_ROWS", {
@@ -76580,7 +76614,7 @@ class Model extends EventBus {
76580
76614
  handlers = [];
76581
76615
  uiHandlers = [];
76582
76616
  coreHandlers = [];
76583
- constructor(data = {}, config = {}, stateUpdateMessages = [], uuidGenerator = new UuidGenerator(), verboseImport = true) {
76617
+ constructor(data = {}, config = {}, stateUpdateMessages = [], uuidGenerator = new UuidGenerator(), verboseImport = false) {
76584
76618
  const start = performance.now();
76585
76619
  console.debug("##### Model creation #####");
76586
76620
  super();
@@ -77316,6 +77350,6 @@ exports.tokenColors = tokenColors;
77316
77350
  exports.tokenize = tokenize;
77317
77351
 
77318
77352
 
77319
- __info__.version = "18.2.28";
77320
- __info__.date = "2025-09-05T07:38:26.582Z";
77321
- __info__.hash = "84335fb";
77353
+ __info__.version = "18.2.30";
77354
+ __info__.date = "2025-09-19T07:24:27.894Z";
77355
+ __info__.hash = "16428fd";
@@ -2338,6 +2338,7 @@ interface ClipboardOptions {
2338
2338
  selectTarget?: boolean;
2339
2339
  }
2340
2340
  type ClipboardPasteOptions = "onlyFormat" | "asValue";
2341
+ type ClipboardCopyOptions = "copyPaste" | "shiftCells";
2341
2342
  type ClipboardOperation = "CUT" | "COPY";
2342
2343
  type ClipboardCellData = {
2343
2344
  sheetId: UID;
@@ -6373,7 +6374,7 @@ declare class ClipboardHandler<T> {
6373
6374
  protected getters: Getters;
6374
6375
  protected dispatch: CommandDispatcher["dispatch"];
6375
6376
  constructor(getters: Getters, dispatch: CommandDispatcher["dispatch"]);
6376
- copy(data: ClipboardData): T | undefined;
6377
+ copy(data: ClipboardData, mode?: ClipboardCopyOptions): T | undefined;
6377
6378
  paste(target: ClipboardPasteTarget, clippedContent: T, options: ClipboardOptions): void;
6378
6379
  isPasteAllowed(sheetId: UID, target: Zone[], content: T, option: ClipboardOptions): CommandResult;
6379
6380
  isCutAllowed(data: ClipboardData): CommandResult;
@@ -6382,7 +6383,7 @@ declare class ClipboardHandler<T> {
6382
6383
  }
6383
6384
 
6384
6385
  declare class AbstractCellClipboardHandler<T, T1> extends ClipboardHandler<T> {
6385
- copy(data: ClipboardCellData): T | undefined;
6386
+ copy(data: ClipboardCellData, mode?: ClipboardCopyOptions): T | undefined;
6386
6387
  pasteFromCopy(sheetId: UID, target: Zone[], content: T1[][], options?: ClipboardOptions): void;
6387
6388
  protected pasteZone(sheetId: UID, col: HeaderIndex, row: HeaderIndex, data: T1[][], clipboardOptions?: ClipboardOptions): void;
6388
6389
  }
@@ -13507,4 +13508,4 @@ declare const chartHelpers: {
13507
13508
  WaterfallChart: typeof WaterfallChart;
13508
13509
  };
13509
13510
 
13510
- export { AST, ASTFuncall, AboveAverageRule, AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, ActivateNextSheetCommand, ActivatePreviousSheetCommand, ActivateSheetCommand, AddColumnsRowsCommand, AddConditionalFormatCommand, AddDataValidationCommand, AddFunctionDescription, AddMergeCommand, AddPivotCommand, Aggregator, Alias, Align, AlphanumericIncrementModifier, AnchorZone, ApplyRangeChange, ApplyRangeChangeResult, Arg, ArgDefinition, ArgType, AutoFillCellCommand, AutofillAutoCommand, AutofillCellData, AutofillCommand, AutofillData, AutofillModifier, AutofillModifierImplementation, AutofillResult, AutofillSelectCommand, AutofillTableCommand, AutoresizeColumnsCommand, AutoresizeRowsCommand, AxesDesign, AxisDesign, AxisType, BeginsWithRule, BooleanCell, Border$1 as Border, BorderData, BorderDescr, BorderPosition, BorderStyle, Box, BoxTextContent, CHART_TYPES, CSSProperties, CancelledReason, Cell, CellErrorType, CellIsRule, CellPosition, CellValue, CellValueType, ChangeType, ChartAxisFormats, ChartCreationContext, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartRuntimeGenerationArgs, ChartType, ChartWithDataSetDefinition, CleanClipBoardHighlightCommand, ClearCellCommand, ClearCellsCommand, ClearFormattingCommand, Client, ClientId, ClientJoinedMessage, ClientLeftMessage, ClientMovedMessage, ClientPosition, ClipboardCell, ClipboardCellData, ClipboardData, ClipboardFigureData, ClipboardMIMEType, ClipboardOperation, ClipboardOptions, ClipboardPasteOptions, ClipboardPasteTarget, Cloneable, CollaborationMessage, CollaborativeEvent, CollaborativeEventReceived, CollaborativeEventTypes, Color, ColorScaleMidPointThreshold, ColorScaleRule, ColorScaleThreshold, ColorSheetCommand, Command, CommandDispatcher, CommandHandler, CommandResult, CommandTypes, CommonPivotCoreDefinition, CompiledFormula, ComposerFocusType, ComputeFunction, ComputedTableStyle, ConditionalFormat, ConditionalFormatInternal, ConditionalFormatRule, ConditionalFormatRuleInternal, ConditionalFormattingOperatorValues, ConsecutiveIndexes, ContainsTextRule, CopyCommand, CopyModifier, CopyPasteCellsAboveCommand, CopyPasteCellsOnLeftCommand, CoreCommand, CoreCommandDispatcher, CoreCommandTypes, CoreGetters, CorePlugin, CoreTable, CoreTableType, CoreViewCommand, CoreViewCommandTypes, CoreViewPlugin, CreateChartCommand, CreateFigureCommand, CreateImageOverCommand, CreateRevisionOptions, CreateSheetCommand, CreateTableCommand, CreateTableStyleCommand, Currency, CustomFormulaCriterion, CustomizedDataSet, CutCommand, DEFAULT_LOCALE, DEFAULT_LOCALES, DIRECTION, DOMCoordinates, DOMDimension, DataBarFill, DataBarRule, DataBarRuleInternal, DataSet, DataValidationCriterion, DataValidationCriterionType, DataValidationDateCriterion, DataValidationRule, DataValidationRuleData, DatasetDesign, DatasetValues, DateCriterionValue, DateIncrementModifier, DateIsAfterCriterion, DateIsBeforeCriterion, DateIsBetweenCriterion, DateIsCriterion, DateIsNotBetweenCriterion, DateIsOnOrAfterCriterion, DateIsOnOrBeforeCriterion, DateIsValidCriterion, DebouncedFunction, DeleteCellCommand, DeleteContentCommand, DeleteFigureCommand, DeleteSheetCommand, Dependencies, Dimension, DimensionTree, DimensionTreeNode, Direction$1 as Direction, DispatchResult, DuplicatePivotCommand, DuplicatePivotInNewSheetCommand, DuplicateSheetCommand, DynamicTable, EdgeScrollInfo, EditTextOptions, EditionMode, EmptyCell, EndsWithRule, EnrichedToken, EnsureRange, ErrorCell, EvalContext, EvaluateCellsCommand, EvaluateChartsCommand, EvaluatedCell, EvaluationError, ExcelChartDataset, ExcelChartDefinition, ExcelChartType, ExcelFigureSize, ExcelFilterData, ExcelHeaderData, ExcelSheetData, ExcelTableData, ExcelWorkbookData, ExpressionRule, Figure, FigureData, FigureSize, Filter, FilterId, FoldAllHeaderGroupsCommand, FoldHeaderGroupCommand, FoldHeaderGroupsInZoneCommand, Format, FormattedValue, FormulaCell, FormulaModifier, FormulaToExecute, FreezeColumnsCommand, FreezeRowsCommand, FunctionDescription, FunctionRegistry, FunctionResultNumber, FunctionResultObject, GeneratorCell, GenericDefinition, GetSymbolValue, Getters, Granularity, GridClickModifiers, GridRenderingContext, GroupHeadersCommand, HSLA, HeaderData, HeaderDimensions, HeaderGroup, HeaderIndex, HeadersDependentCommand, HideColumnsRowsCommand, HideSheetCommand, Highlight$1 as Highlight, HistoryChange, IconSet, IconSetRule, IconThreshold, Image, Immutable, Increment, IncrementModifier, InformationNotification, InitPivotParams, InsertCellCommand, InsertNewPivotCommand, InsertPivotCommand, InsertPivotWithTableCommand, IsBetweenCriterion, IsCheckboxCriterion, IsEqualCriterion, IsGreaterOrEqualToCriterion, IsGreaterThanCriterion, IsLessOrEqualToCriterion, IsLessThanCriterion, IsNotBetweenCriterion, IsNotEqualCriterion, IsValueInListCriterion, IsValueInRangeCriterion, LabelValues, LayerName, Lazy, Link, LiteralCell, LocalCommand, Locale, LocaleCode, LocaleFormat, 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, PivotSortedColumn, 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, 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 };
13511
+ export { AST, ASTFuncall, AboveAverageRule, AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, ActivateNextSheetCommand, ActivatePreviousSheetCommand, ActivateSheetCommand, AddColumnsRowsCommand, AddConditionalFormatCommand, AddDataValidationCommand, AddFunctionDescription, AddMergeCommand, AddPivotCommand, Aggregator, Alias, Align, AlphanumericIncrementModifier, AnchorZone, ApplyRangeChange, ApplyRangeChangeResult, Arg, ArgDefinition, ArgType, AutoFillCellCommand, AutofillAutoCommand, AutofillCellData, AutofillCommand, AutofillData, AutofillModifier, AutofillModifierImplementation, AutofillResult, AutofillSelectCommand, AutofillTableCommand, AutoresizeColumnsCommand, AutoresizeRowsCommand, AxesDesign, AxisDesign, AxisType, BeginsWithRule, BooleanCell, Border$1 as Border, BorderData, BorderDescr, BorderPosition, BorderStyle, Box, BoxTextContent, CHART_TYPES, CSSProperties, CancelledReason, Cell, CellErrorType, CellIsRule, CellPosition, CellValue, CellValueType, ChangeType, ChartAxisFormats, ChartCreationContext, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartRuntimeGenerationArgs, ChartType, ChartWithDataSetDefinition, CleanClipBoardHighlightCommand, ClearCellCommand, ClearCellsCommand, ClearFormattingCommand, Client, ClientId, ClientJoinedMessage, ClientLeftMessage, ClientMovedMessage, ClientPosition, ClipboardCell, ClipboardCellData, 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, Dependencies, Dimension, DimensionTree, DimensionTreeNode, Direction$1 as Direction, DispatchResult, DuplicatePivotCommand, DuplicatePivotInNewSheetCommand, DuplicateSheetCommand, DynamicTable, EdgeScrollInfo, EditTextOptions, EditionMode, EmptyCell, EndsWithRule, EnrichedToken, EnsureRange, ErrorCell, EvalContext, EvaluateCellsCommand, EvaluateChartsCommand, EvaluatedCell, EvaluationError, ExcelChartDataset, ExcelChartDefinition, ExcelChartType, ExcelFigureSize, ExcelFilterData, ExcelHeaderData, ExcelSheetData, ExcelTableData, ExcelWorkbookData, ExpressionRule, Figure, FigureData, FigureSize, Filter, FilterId, FoldAllHeaderGroupsCommand, FoldHeaderGroupCommand, FoldHeaderGroupsInZoneCommand, Format, FormattedValue, FormulaCell, FormulaModifier, FormulaToExecute, FreezeColumnsCommand, FreezeRowsCommand, FunctionDescription, FunctionRegistry, FunctionResultNumber, FunctionResultObject, GeneratorCell, GenericDefinition, GetSymbolValue, Getters, Granularity, GridClickModifiers, GridRenderingContext, GroupHeadersCommand, HSLA, HeaderData, HeaderDimensions, HeaderGroup, HeaderIndex, HeadersDependentCommand, HideColumnsRowsCommand, HideSheetCommand, Highlight$1 as Highlight, HistoryChange, IconSet, IconSetRule, IconThreshold, Image, Immutable, Increment, IncrementModifier, InformationNotification, InitPivotParams, InsertCellCommand, InsertNewPivotCommand, InsertPivotCommand, InsertPivotWithTableCommand, IsBetweenCriterion, IsCheckboxCriterion, IsEqualCriterion, IsGreaterOrEqualToCriterion, IsGreaterThanCriterion, IsLessOrEqualToCriterion, IsLessThanCriterion, IsNotBetweenCriterion, IsNotEqualCriterion, IsValueInListCriterion, IsValueInRangeCriterion, LabelValues, LayerName, Lazy, Link, LiteralCell, LocalCommand, Locale, LocaleCode, LocaleFormat, 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, PivotSortedColumn, 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, 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 };