@odoo/o-spreadsheet 18.1.25 → 18.1.27

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.1.25
6
- * @date 2025-06-12T09:49:08.707Z
7
- * @hash a232524
5
+ * @version 18.1.27
6
+ * @date 2025-06-23T15:04:51.792Z
7
+ * @hash b25bcc7
8
8
  */
9
9
 
10
10
  'use strict';
@@ -6818,6 +6818,63 @@ function parseOSClipboardContent(content) {
6818
6818
  data: spreadsheetContent,
6819
6819
  };
6820
6820
  }
6821
+ /**
6822
+ * Applies each clipboard handler to paste its corresponding data into the target.
6823
+ */
6824
+ const applyClipboardHandlersPaste = (handlers, copiedData, target, options) => {
6825
+ handlers.forEach(({ handlerName, handler }) => {
6826
+ const data = copiedData[handlerName];
6827
+ if (data) {
6828
+ handler.paste(target, data, options);
6829
+ }
6830
+ });
6831
+ };
6832
+ /**
6833
+ * Returns the paste target based on clipboard handlers.
6834
+ * Also includes the full affected zone and the list of pasted zones for selection.
6835
+ */
6836
+ function getPasteTargetFromHandlers(sheetId, zones, copiedData, handlers, options) {
6837
+ let zone = undefined;
6838
+ let selectedZones = [];
6839
+ let target = {
6840
+ sheetId,
6841
+ zones,
6842
+ };
6843
+ for (const { handlerName, handler } of handlers) {
6844
+ const handlerData = copiedData[handlerName];
6845
+ if (!handlerData) {
6846
+ continue;
6847
+ }
6848
+ const currentTarget = handler.getPasteTarget(sheetId, zones, handlerData, options);
6849
+ if (currentTarget.figureId) {
6850
+ target.figureId = currentTarget.figureId;
6851
+ }
6852
+ for (const targetZone of currentTarget.zones) {
6853
+ selectedZones.push(targetZone);
6854
+ if (zone === undefined) {
6855
+ zone = targetZone;
6856
+ continue;
6857
+ }
6858
+ zone = union(zone, targetZone);
6859
+ }
6860
+ }
6861
+ return {
6862
+ target,
6863
+ zone,
6864
+ selectedZones,
6865
+ };
6866
+ }
6867
+ /**
6868
+ * Updates the selection after a paste operation.
6869
+ */
6870
+ const selectPastedZone = (selection, sourceZones, pastedZones) => {
6871
+ const anchorCell = {
6872
+ col: sourceZones[0].left,
6873
+ row: sourceZones[0].top,
6874
+ };
6875
+ selection.getBackToDefault();
6876
+ selection.selectZone({ cell: anchorCell, zone: union(...pastedZones) }, { scrollIntoView: false });
6877
+ };
6821
6878
 
6822
6879
  class ClipboardHandler {
6823
6880
  getters;
@@ -10204,6 +10261,7 @@ function drawLineOrBarOrRadarChartValues(chart, options, ctx) {
10204
10261
  if (isTrendLineAxis(dataset.xAxisID) || dataset.hidden) {
10205
10262
  continue;
10206
10263
  }
10264
+ const yAxisScale = chart.scales[dataset.yAxisID];
10207
10265
  for (let i = 0; i < dataset._parsed.length; i++) {
10208
10266
  const parsedValue = dataset._parsed[i];
10209
10267
  const value = Number(chart.config.type === "radar" ? parsedValue.r : parsedValue.y);
@@ -10214,10 +10272,18 @@ function drawLineOrBarOrRadarChartValues(chart, options, ctx) {
10214
10272
  const xPosition = point.x;
10215
10273
  let yPosition = 0;
10216
10274
  if (chart.config.type === "line" || chart.config.type === "radar") {
10217
- yPosition = point.y - 10;
10275
+ yPosition = value < 0 ? point.y + 10 : point.y - 10;
10218
10276
  }
10219
10277
  else {
10220
- yPosition = value < 0 ? point.y - point.height / 2 : point.y + point.height / 2;
10278
+ const yZeroLine = yAxisScale.getPixelForValue(0);
10279
+ const distanceFromAxisOrigin = Math.abs(yZeroLine - point.y);
10280
+ const textHeight = 12; // ChartJS default text height
10281
+ if (distanceFromAxisOrigin < textHeight) {
10282
+ yPosition = value < 0 ? yZeroLine + textHeight / 2 : yZeroLine - textHeight / 2;
10283
+ }
10284
+ else {
10285
+ yPosition = value < 0 ? point.y - point.height / 2 : point.y + point.height / 2;
10286
+ }
10221
10287
  }
10222
10288
  yPosition = Math.min(yPosition, yMax);
10223
10289
  yPosition = Math.max(yPosition, yMin);
@@ -10227,7 +10293,7 @@ function drawLineOrBarOrRadarChartValues(chart, options, ctx) {
10227
10293
  }
10228
10294
  for (const otherPosition of textsPositions[xPosition] || []) {
10229
10295
  if (Math.abs(otherPosition - yPosition) < 13) {
10230
- yPosition = otherPosition - 13;
10296
+ yPosition = value < 0 ? otherPosition + 13 : otherPosition - 13;
10231
10297
  }
10232
10298
  }
10233
10299
  textsPositions[xPosition].push(yPosition);
@@ -10246,6 +10312,8 @@ function drawHorizontalBarChartValues(chart, options, ctx) {
10246
10312
  if (isTrendLineAxis(dataset.xAxisID)) {
10247
10313
  return; // ignore trend lines
10248
10314
  }
10315
+ const xAxisScale = chart.scales[dataset.xAxisID];
10316
+ const xZeroLine = xAxisScale.getPixelForValue(0);
10249
10317
  for (let i = 0; i < dataset._parsed.length; i++) {
10250
10318
  const value = Number(dataset._parsed[i].x);
10251
10319
  if (isNaN(value)) {
@@ -10254,17 +10322,27 @@ function drawHorizontalBarChartValues(chart, options, ctx) {
10254
10322
  const displayValue = options.callback(value, dataset, i);
10255
10323
  const point = dataset.data[i];
10256
10324
  const yPosition = point.y;
10257
- let xPosition = value < 0 ? point.x + point.width / 2 : point.x - point.width / 2;
10258
- xPosition = Math.min(xPosition, xMax);
10259
- xPosition = Math.max(xPosition, xMin);
10325
+ const textWidth = computeTextWidth(ctx, displayValue, { fontSize: 12 }, "px");
10326
+ const distanceFromAxisOrigin = Math.abs(point.x - xZeroLine);
10327
+ const PADDING = 3;
10328
+ let xPosition;
10329
+ if (distanceFromAxisOrigin < textWidth) {
10330
+ xPosition =
10331
+ value < 0 ? xZeroLine - textWidth / 2 - PADDING : xZeroLine + textWidth / 2 + PADDING;
10332
+ }
10333
+ else {
10334
+ xPosition = value < 0 ? point.x + point.width / 2 : point.x - point.width / 2;
10335
+ xPosition = Math.min(xPosition, xMax);
10336
+ xPosition = Math.max(xPosition, xMin);
10337
+ }
10260
10338
  // Avoid overlapping texts with same Y
10261
10339
  if (!textsPositions[yPosition]) {
10262
10340
  textsPositions[yPosition] = [];
10263
10341
  }
10264
- const textWidth = computeTextWidth(ctx, displayValue, { fontSize: 12 }, "px");
10265
10342
  for (const otherPosition of textsPositions[yPosition]) {
10266
10343
  if (Math.abs(otherPosition - xPosition) < textWidth) {
10267
- xPosition = otherPosition + textWidth + 3;
10344
+ xPosition =
10345
+ value < 0 ? otherPosition - textWidth - PADDING : otherPosition + textWidth + PADDING;
10268
10346
  }
10269
10347
  }
10270
10348
  textsPositions[yPosition].push(xPosition);
@@ -30080,7 +30158,9 @@ function getPyramidChartShowValues(definition, args) {
30080
30158
  background: definition.background,
30081
30159
  callback: (value, dataset) => {
30082
30160
  value = Math.abs(Number(value));
30083
- return formatChartDatasetValue(axisFormats, locale)(value, dataset.xAxisID || "x");
30161
+ return value === 0
30162
+ ? ""
30163
+ : formatChartDatasetValue(axisFormats, locale)(value, dataset.xAxisID || "x");
30084
30164
  },
30085
30165
  };
30086
30166
  }
@@ -34580,6 +34660,10 @@ const REMOVE_ROWS_ACTION = (env) => {
34580
34660
  });
34581
34661
  };
34582
34662
  const CAN_REMOVE_COLUMNS_ROWS = (dimension, env) => {
34663
+ if ((dimension === "COL" && env.model.getters.getActiveRows().size > 0) ||
34664
+ (dimension === "ROW" && env.model.getters.getActiveCols().size > 0)) {
34665
+ return false;
34666
+ }
34583
34667
  const sheetId = env.model.getters.getActiveSheetId();
34584
34668
  const selectedElements = env.model.getters.getElementsFromSelection(dimension);
34585
34669
  const includesAllVisibleHeaders = env.model.getters.checkElementsIncludeAllVisibleHeaders(sheetId, dimension, selectedElements);
@@ -37559,11 +37643,11 @@ class OTRegistry extends Registry {
37559
37643
  * transformation function given
37560
37644
  */
37561
37645
  addTransformation(executed, toTransforms, fn) {
37562
- for (let toTransform of toTransforms) {
37563
- if (!this.content[toTransform]) {
37564
- this.content[toTransform] = new Map();
37565
- }
37566
- this.content[toTransform].set(executed, fn);
37646
+ if (!this.content[executed]) {
37647
+ this.content[executed] = new Map();
37648
+ }
37649
+ for (const toTransform of toTransforms) {
37650
+ this.content[executed].set(toTransform, fn);
37567
37651
  }
37568
37652
  return this;
37569
37653
  }
@@ -37572,7 +37656,7 @@ class OTRegistry extends Registry {
37572
37656
  * that the executed command happened.
37573
37657
  */
37574
37658
  getTransformation(toTransform, executed) {
37575
- return this.content[toTransform] && this.content[toTransform].get(executed);
37659
+ return this.content[executed] && this.content[executed].get(toTransform);
37576
37660
  }
37577
37661
  }
37578
37662
  const otRegistry = new OTRegistry();
@@ -46738,7 +46822,7 @@ class SpreadsheetPivot {
46738
46822
  }
46739
46823
  getTypeFromZone(sheetId, zone) {
46740
46824
  const cells = this.getters.getEvaluatedCellsInZone(sheetId, zone);
46741
- const nonEmptyCells = cells.filter((cell) => cell.type !== CellValueType.empty);
46825
+ const nonEmptyCells = cells.filter((cell) => !(cell.type === CellValueType.empty || cell.value === ""));
46742
46826
  if (nonEmptyCells.length === 0) {
46743
46827
  return "integer";
46744
46828
  }
@@ -50295,15 +50379,16 @@ class GridAddRowsFooter extends owl.Component {
50295
50379
  }
50296
50380
  }
50297
50381
 
50382
+ const PAINT_FORMAT_HANDLER_KEYS = [
50383
+ "cell",
50384
+ "border",
50385
+ "table",
50386
+ "conditionalFormat",
50387
+ "merge",
50388
+ ];
50298
50389
  class PaintFormatStore extends SpreadsheetStore {
50299
50390
  mutators = ["activate", "cancel", "pasteFormat"];
50300
50391
  highlightStore = this.get(HighlightStore);
50301
- clipboardHandlers = [
50302
- new CellClipboardHandler(this.getters, this.model.dispatch),
50303
- new BorderClipboardHandler(this.getters, this.model.dispatch),
50304
- new TableClipboardHandler(this.getters, this.model.dispatch),
50305
- new ConditionalFormatClipboardHandler(this.getters, this.model.dispatch),
50306
- ];
50307
50392
  status = "inactive";
50308
50393
  copiedData;
50309
50394
  constructor(get) {
@@ -50334,24 +50419,38 @@ class PaintFormatStore extends SpreadsheetStore {
50334
50419
  get isActive() {
50335
50420
  return this.status !== "inactive";
50336
50421
  }
50422
+ get clipboardHandlers() {
50423
+ return PAINT_FORMAT_HANDLER_KEYS.map((handlerName) => {
50424
+ const HandlerClass = clipboardHandlersRegistries.cellHandlers.get(handlerName);
50425
+ return {
50426
+ handlerName,
50427
+ handler: new HandlerClass(this.getters, this.model.dispatch),
50428
+ };
50429
+ });
50430
+ }
50337
50431
  copyFormats() {
50338
50432
  const sheetId = this.getters.getActiveSheetId();
50339
50433
  const zones = this.getters.getSelectedZones();
50340
- const copiedData = {};
50341
- for (const handler of this.clipboardHandlers) {
50342
- Object.assign(copiedData, handler.copy(getClipboardDataPositions(sheetId, zones)));
50434
+ const copiedData = { zones, sheetId };
50435
+ for (const { handlerName, handler } of this.clipboardHandlers) {
50436
+ const handlerResult = handler.copy(getClipboardDataPositions(sheetId, zones));
50437
+ if (handlerResult !== undefined) {
50438
+ copiedData[handlerName] = handlerResult;
50439
+ }
50343
50440
  }
50344
50441
  return copiedData;
50345
50442
  }
50346
50443
  paintFormat(sheetId, target) {
50347
- if (this.copiedData) {
50348
- for (const handler of this.clipboardHandlers) {
50349
- handler.paste({ zones: target, sheetId }, this.copiedData, {
50350
- isCutOperation: false,
50351
- pasteOption: "onlyFormat",
50352
- });
50353
- }
50444
+ if (!this.copiedData) {
50445
+ return;
50354
50446
  }
50447
+ const options = {
50448
+ isCutOperation: false,
50449
+ pasteOption: "onlyFormat",
50450
+ };
50451
+ const { target: pasteTarget, selectedZones } = getPasteTargetFromHandlers(sheetId, target, this.copiedData, this.clipboardHandlers, options);
50452
+ applyClipboardHandlersPaste(this.clipboardHandlers, this.copiedData, pasteTarget, options);
50453
+ selectPastedZone(this.model.selection, target, selectedZones);
50355
50454
  if (this.status === "oneOff") {
50356
50455
  this.cancel();
50357
50456
  }
@@ -55517,7 +55616,7 @@ class DataValidationPlugin extends CorePlugin {
55517
55616
  else if (newRule.criterion.type === "isValueInList") {
55518
55617
  newRule.criterion.values = Array.from(new Set(newRule.criterion.values));
55519
55618
  }
55520
- const adaptedRules = this.removeRangesFromRules(sheetId, newRule.ranges, rules);
55619
+ const adaptedRules = this.removeRangesFromRules(sheetId, newRule.ranges, rules, newRule.id);
55521
55620
  const ruleIndex = adaptedRules.findIndex((rule) => rule.id === newRule.id);
55522
55621
  if (ruleIndex !== -1) {
55523
55622
  adaptedRules[ruleIndex] = newRule;
@@ -55527,9 +55626,12 @@ class DataValidationPlugin extends CorePlugin {
55527
55626
  this.history.update("rules", sheetId, [...adaptedRules, newRule]);
55528
55627
  }
55529
55628
  }
55530
- removeRangesFromRules(sheetId, ranges, rules) {
55629
+ removeRangesFromRules(sheetId, ranges, rules, editingRuleId) {
55531
55630
  rules = deepCopy(rules);
55532
55631
  for (const rule of rules) {
55632
+ if (rule.id === editingRuleId) {
55633
+ continue; // Skip the rule being edited to preserve its place in the list
55634
+ }
55533
55635
  rule.ranges = this.getters.recomputeRanges(rule.ranges, ranges);
55534
55636
  }
55535
55637
  return rules.filter((rule) => rule.ranges.length > 0);
@@ -64267,10 +64369,20 @@ function transform(toTransform, executed) {
64267
64369
  */
64268
64370
  function transformAll(toTransform, executed) {
64269
64371
  let transformedCommands = [...toTransform];
64372
+ const possibleTransformations = new Set(otRegistry.getKeys());
64270
64373
  for (const executedCommand of executed) {
64271
- transformedCommands = transformedCommands
64272
- .map((cmd) => transform(cmd, executedCommand))
64273
- .filter(isDefined);
64374
+ // If the executed command is not in the registry, we skip it
64375
+ // because we know there won't be any transformation impacting the
64376
+ // commands to transform.
64377
+ if (possibleTransformations.has(executedCommand.type)) {
64378
+ transformedCommands = transformedCommands.reduce((acc, cmd) => {
64379
+ const transformed = transform(cmd, executedCommand);
64380
+ if (transformed) {
64381
+ acc.push(transformed);
64382
+ }
64383
+ return acc;
64384
+ }, []);
64385
+ }
64274
64386
  }
64275
64387
  return transformedCommands;
64276
64388
  }
@@ -65965,7 +66077,7 @@ class SheetUIPlugin extends UIPlugin {
65965
66077
  }
65966
66078
  const position = this.getters.getCellPosition(cell.id);
65967
66079
  const colSize = this.getters.getColSize(sheetId, position.col);
65968
- if (cell.isFormula) {
66080
+ if (cell.isFormula || this.getters.getArrayFormulaSpreadingOn(position)) {
65969
66081
  const content = this.getters.getEvaluatedCell(position).formattedValue;
65970
66082
  const evaluatedSize = getCellContentHeight(this.ctx, content, cell?.style, colSize);
65971
66083
  if (evaluatedSize > evaluatedRowSize && evaluatedSize > DEFAULT_CELL_HEIGHT) {
@@ -67253,49 +67365,17 @@ class ClipboardPlugin extends UIPlugin {
67253
67365
  if (!copiedData) {
67254
67366
  return;
67255
67367
  }
67256
- let zone = undefined;
67257
- let selectedZones = [];
67258
67368
  const sheetId = this.getters.getActiveSheetId();
67259
- let target = {
67260
- sheetId,
67261
- zones,
67262
- };
67263
67369
  const handlers = this.selectClipboardHandlers(copiedData);
67264
- for (const { handlerName, handler } of handlers) {
67265
- const handlerData = copiedData[handlerName];
67266
- if (!handlerData) {
67267
- continue;
67268
- }
67269
- const currentTarget = handler.getPasteTarget(sheetId, zones, handlerData, options);
67270
- if (currentTarget.figureId) {
67271
- target.figureId = currentTarget.figureId;
67272
- }
67273
- for (const targetZone of currentTarget.zones) {
67274
- selectedZones.push(targetZone);
67275
- if (zone === undefined) {
67276
- zone = targetZone;
67277
- continue;
67278
- }
67279
- zone = union(zone, targetZone);
67280
- }
67281
- }
67370
+ const { target, zone, selectedZones } = getPasteTargetFromHandlers(sheetId, zones, copiedData, handlers, options);
67282
67371
  if (zone !== undefined) {
67283
- this.addMissingDimensions(this.getters.getActiveSheetId(), zone.right - zone.left + 1, zone.bottom - zone.top + 1, zone.left, zone.top);
67372
+ this.addMissingDimensions(sheetId, zone.right - zone.left + 1, zone.bottom - zone.top + 1, zone.left, zone.top);
67284
67373
  }
67285
- handlers.forEach(({ handlerName, handler }) => {
67286
- const handlerData = copiedData[handlerName];
67287
- if (handlerData) {
67288
- handler.paste(target, handlerData, options);
67289
- }
67290
- });
67374
+ applyClipboardHandlersPaste(handlers, copiedData, target, options);
67291
67375
  if (!options?.selectTarget) {
67292
67376
  return;
67293
67377
  }
67294
- const selection = zones[0];
67295
- const col = selection.left;
67296
- const row = selection.top;
67297
- this.selection.getBackToDefault();
67298
- this.selection.selectZone({ cell: { col, row }, zone: union(...selectedZones) }, { scrollIntoView: false });
67378
+ selectPastedZone(this.selection, zones, selectedZones);
67299
67379
  }
67300
67380
  /**
67301
67381
  * Add columns and/or rows to ensure that col + width and row + height are still
@@ -76537,6 +76617,6 @@ exports.tokenColors = tokenColors;
76537
76617
  exports.tokenize = tokenize;
76538
76618
 
76539
76619
 
76540
- __info__.version = "18.1.25";
76541
- __info__.date = "2025-06-12T09:49:08.707Z";
76542
- __info__.hash = "a232524";
76620
+ __info__.version = "18.1.27";
76621
+ __info__.date = "2025-06-23T15:04:51.792Z";
76622
+ __info__.hash = "b25bcc7";
@@ -1910,13 +1910,6 @@ declare class UIPlugin<State = any> extends BasePlugin<State, Command> {
1910
1910
  drawLayer(ctx: GridRenderingContext, layer: LayerName): void;
1911
1911
  }
1912
1912
 
1913
- type MinimalClipboardData = {
1914
- sheetId?: UID;
1915
- cells?: ClipboardCell[][];
1916
- zones?: Zone[];
1917
- figureId?: UID;
1918
- [key: string]: unknown;
1919
- };
1920
1913
  interface SpreadsheetClipboardData extends MinimalClipboardData {
1921
1914
  version?: number;
1922
1915
  clipboardId?: string;
@@ -2357,6 +2350,13 @@ type ClipboardPasteTarget = {
2357
2350
  zones: Zone[];
2358
2351
  figureId?: UID;
2359
2352
  };
2353
+ type MinimalClipboardData = {
2354
+ sheetId?: UID;
2355
+ cells?: ClipboardCell[][];
2356
+ zones?: Zone[];
2357
+ figureId?: UID;
2358
+ [key: string]: unknown;
2359
+ };
2360
2360
 
2361
2361
  /**
2362
2362
  * There are two kinds of commands: CoreCommands and LocalCommands
@@ -13343,4 +13343,4 @@ declare const chartHelpers: {
13343
13343
  WaterfallChart: typeof WaterfallChart;
13344
13344
  };
13345
13345
 
13346
- export { AST, ASTFuncall, AboveAverageRule, AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, ActivateNextSheetCommand, ActivatePreviousSheetCommand, ActivateSheetCommand, AddColumnsRowsCommand, AddConditionalFormatCommand, AddDataValidationCommand, AddFunctionDescription, AddMergeCommand, AddPivotCommand, Aggregator, Alias, Align, AlphanumericIncrementModifier, AnchorZone, ApplyRangeChange, ApplyRangeChangeResult, Arg, ArgDefinition, ArgType, AutoFillCellCommand, AutofillAutoCommand, AutofillCellData, AutofillCommand, AutofillData, AutofillModifier, AutofillModifierImplementation, AutofillResult, AutofillSelectCommand, AutofillTableCommand, AutoresizeColumnsCommand, AutoresizeRowsCommand, AxesDesign, AxisDesign, AxisType, BeginsWithRule, BooleanCell, Border$1 as Border, BorderData, BorderDescr, BorderDescription, BorderPosition, BorderStyle, Box, BoxTextContent, CHART_TYPES, CSSProperties, CancelledReason, Cell, 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, 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, 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, SheetScrollInfo, ShowFormulaCommand, ShowSheetCommand, SingleColorRule, SingleColorRules, SnapshotEvent, SortCommand, SortDirection, SortOptions, SplitPivotFormulaCommand, SplitTextIntoColumnsCommand, Spreadsheet, SpreadsheetChildEnv, SpreadsheetPivotCoreDefinition, SpreadsheetPivotTable, StartChangeHighlightCommand, StartCommand, StaticTable, StoreConstructor, StoreParams, Style, SumSelectionCommand, Table, TableBorder, TableConfig, TableData$1 as TableData, TableElementStyle, TableId, TableStyle, TableStyleData, TableStyleTemplateName, TargetDependentCommand, TechnicalName, TextCell, TextContainsCriterion, TextIsCriterion, TextIsEmailCriterion, TextIsLinkCriterion, TextNotContainsCriterion, TextRule, ThresholdType, TimePeriodRule, TitleDesign, Token, Tooltip, Top10Rule, Transformation, TransformationFactory, TransportService, TrendConfiguration, TrendType, TrimWhitespaceCommand, UID, UIPlugin, UnGroupHeadersCommand, UnboundedZone, UndoCommand, UnexpectedRevisionIdEvent, UnfoldAllHeaderGroupsCommand, UnfoldHeaderGroupCommand, UnfoldHeaderGroupsInZoneCommand, UnfreezeColumnsCommand, UnfreezeColumnsRowsCommand, UnfreezeRowsCommand, UnhideColumnsRowsCommand, UpdateCellCommand, UpdateCellData, UpdateCellPositionCommand, UpdateChartCommand, UpdateFigureCommand, UpdateFilterCommand, UpdateLocaleCommand, UpdatePivotCommand, UpdateTableCommand, Validation, VerticalAlign, Viewport, WorkbookData, WorkbookHistory, Wrapping, Zone, ZoneDependentCommand, ZoneDimension, __info__, addFunction, addRenderingLayer, astToFormula, borderStyles, canExecuteInReadonly, 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 };
13346
+ export { AST, ASTFuncall, AboveAverageRule, AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, ActivateNextSheetCommand, ActivatePreviousSheetCommand, ActivateSheetCommand, AddColumnsRowsCommand, AddConditionalFormatCommand, AddDataValidationCommand, AddFunctionDescription, AddMergeCommand, AddPivotCommand, Aggregator, Alias, Align, AlphanumericIncrementModifier, AnchorZone, ApplyRangeChange, ApplyRangeChangeResult, Arg, ArgDefinition, ArgType, AutoFillCellCommand, AutofillAutoCommand, AutofillCellData, AutofillCommand, AutofillData, AutofillModifier, AutofillModifierImplementation, AutofillResult, AutofillSelectCommand, AutofillTableCommand, AutoresizeColumnsCommand, AutoresizeRowsCommand, AxesDesign, AxisDesign, AxisType, BeginsWithRule, BooleanCell, Border$1 as Border, BorderData, BorderDescr, BorderDescription, BorderPosition, BorderStyle, Box, BoxTextContent, CHART_TYPES, CSSProperties, CancelledReason, Cell, 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, 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, SheetScrollInfo, ShowFormulaCommand, ShowSheetCommand, SingleColorRule, SingleColorRules, SnapshotEvent, SortCommand, SortDirection, SortOptions, SplitPivotFormulaCommand, SplitTextIntoColumnsCommand, Spreadsheet, SpreadsheetChildEnv, SpreadsheetPivotCoreDefinition, SpreadsheetPivotTable, StartChangeHighlightCommand, StartCommand, StaticTable, StoreConstructor, StoreParams, Style, SumSelectionCommand, Table, TableBorder, TableConfig, TableData$1 as TableData, TableElementStyle, TableId, TableStyle, TableStyleData, TableStyleTemplateName, TargetDependentCommand, TechnicalName, TextCell, TextContainsCriterion, TextIsCriterion, TextIsEmailCriterion, TextIsLinkCriterion, TextNotContainsCriterion, TextRule, ThresholdType, TimePeriodRule, TitleDesign, Token, Tooltip, Top10Rule, Transformation, TransformationFactory, TransportService, TrendConfiguration, TrendType, TrimWhitespaceCommand, UID, UIPlugin, UnGroupHeadersCommand, UnboundedZone, UndoCommand, UnexpectedRevisionIdEvent, UnfoldAllHeaderGroupsCommand, UnfoldHeaderGroupCommand, UnfoldHeaderGroupsInZoneCommand, UnfreezeColumnsCommand, UnfreezeColumnsRowsCommand, UnfreezeRowsCommand, UnhideColumnsRowsCommand, UpdateCellCommand, UpdateCellData, UpdateCellPositionCommand, UpdateChartCommand, UpdateFigureCommand, UpdateFilterCommand, UpdateLocaleCommand, UpdatePivotCommand, UpdateTableCommand, Validation, VerticalAlign, Viewport, WorkbookData, WorkbookHistory, Wrapping, Zone, ZoneDependentCommand, ZoneDimension, __info__, addFunction, addRenderingLayer, astToFormula, borderStyles, canExecuteInReadonly, 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 };