@odoo/o-spreadsheet 18.1.26 → 18.1.28

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.26
6
- * @date 2025-06-19T18:21:37.648Z
7
- * @hash 06479d4
5
+ * @version 18.1.28
6
+ * @date 2025-06-27T09:12:45.644Z
7
+ * @hash 25dd087
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;
@@ -20970,7 +21027,7 @@ class AbstractComposerStore extends SpreadsheetStore {
20970
21027
  }
20971
21028
  captureSelection(zone, col, row) {
20972
21029
  this.model.selection.capture(this, {
20973
- cell: { col: col || zone.left, row: row || zone.right },
21030
+ cell: { col: col ?? zone.left, row: row ?? zone.right },
20974
21031
  zone,
20975
21032
  }, {
20976
21033
  handleEvent: this.handleEvent.bind(this),
@@ -42742,6 +42799,9 @@ class ConditionalFormattingPanel extends owl.Component {
42742
42799
  this.switchToList();
42743
42800
  }
42744
42801
  }
42802
+ else if (!this.editedCF) {
42803
+ this.switchToList();
42804
+ }
42745
42805
  });
42746
42806
  }
42747
42807
  get conditionalFormats() {
@@ -46765,7 +46825,7 @@ class SpreadsheetPivot {
46765
46825
  }
46766
46826
  getTypeFromZone(sheetId, zone) {
46767
46827
  const cells = this.getters.getEvaluatedCellsInZone(sheetId, zone);
46768
- const nonEmptyCells = cells.filter((cell) => cell.type !== CellValueType.empty);
46828
+ const nonEmptyCells = cells.filter((cell) => !(cell.type === CellValueType.empty || cell.value === ""));
46769
46829
  if (nonEmptyCells.length === 0) {
46770
46830
  return "integer";
46771
46831
  }
@@ -50322,15 +50382,16 @@ class GridAddRowsFooter extends owl.Component {
50322
50382
  }
50323
50383
  }
50324
50384
 
50385
+ const PAINT_FORMAT_HANDLER_KEYS = [
50386
+ "cell",
50387
+ "border",
50388
+ "table",
50389
+ "conditionalFormat",
50390
+ "merge",
50391
+ ];
50325
50392
  class PaintFormatStore extends SpreadsheetStore {
50326
50393
  mutators = ["activate", "cancel", "pasteFormat"];
50327
50394
  highlightStore = this.get(HighlightStore);
50328
- clipboardHandlers = [
50329
- new CellClipboardHandler(this.getters, this.model.dispatch),
50330
- new BorderClipboardHandler(this.getters, this.model.dispatch),
50331
- new TableClipboardHandler(this.getters, this.model.dispatch),
50332
- new ConditionalFormatClipboardHandler(this.getters, this.model.dispatch),
50333
- ];
50334
50395
  status = "inactive";
50335
50396
  copiedData;
50336
50397
  constructor(get) {
@@ -50361,24 +50422,38 @@ class PaintFormatStore extends SpreadsheetStore {
50361
50422
  get isActive() {
50362
50423
  return this.status !== "inactive";
50363
50424
  }
50425
+ get clipboardHandlers() {
50426
+ return PAINT_FORMAT_HANDLER_KEYS.map((handlerName) => {
50427
+ const HandlerClass = clipboardHandlersRegistries.cellHandlers.get(handlerName);
50428
+ return {
50429
+ handlerName,
50430
+ handler: new HandlerClass(this.getters, this.model.dispatch),
50431
+ };
50432
+ });
50433
+ }
50364
50434
  copyFormats() {
50365
50435
  const sheetId = this.getters.getActiveSheetId();
50366
50436
  const zones = this.getters.getSelectedZones();
50367
- const copiedData = {};
50368
- for (const handler of this.clipboardHandlers) {
50369
- Object.assign(copiedData, handler.copy(getClipboardDataPositions(sheetId, zones)));
50437
+ const copiedData = { zones, sheetId };
50438
+ for (const { handlerName, handler } of this.clipboardHandlers) {
50439
+ const handlerResult = handler.copy(getClipboardDataPositions(sheetId, zones));
50440
+ if (handlerResult !== undefined) {
50441
+ copiedData[handlerName] = handlerResult;
50442
+ }
50370
50443
  }
50371
50444
  return copiedData;
50372
50445
  }
50373
50446
  paintFormat(sheetId, target) {
50374
- if (this.copiedData) {
50375
- for (const handler of this.clipboardHandlers) {
50376
- handler.paste({ zones: target, sheetId }, this.copiedData, {
50377
- isCutOperation: false,
50378
- pasteOption: "onlyFormat",
50379
- });
50380
- }
50447
+ if (!this.copiedData) {
50448
+ return;
50381
50449
  }
50450
+ const options = {
50451
+ isCutOperation: false,
50452
+ pasteOption: "onlyFormat",
50453
+ };
50454
+ const { target: pasteTarget, selectedZones } = getPasteTargetFromHandlers(sheetId, target, this.copiedData, this.clipboardHandlers, options);
50455
+ applyClipboardHandlersPaste(this.clipboardHandlers, this.copiedData, pasteTarget, options);
50456
+ selectPastedZone(this.model.selection, target, selectedZones);
50382
50457
  if (this.status === "oneOff") {
50383
50458
  this.cancel();
50384
50459
  }
@@ -55544,7 +55619,7 @@ class DataValidationPlugin extends CorePlugin {
55544
55619
  else if (newRule.criterion.type === "isValueInList") {
55545
55620
  newRule.criterion.values = Array.from(new Set(newRule.criterion.values));
55546
55621
  }
55547
- const adaptedRules = this.removeRangesFromRules(sheetId, newRule.ranges, rules);
55622
+ const adaptedRules = this.removeRangesFromRules(sheetId, newRule.ranges, rules, newRule.id);
55548
55623
  const ruleIndex = adaptedRules.findIndex((rule) => rule.id === newRule.id);
55549
55624
  if (ruleIndex !== -1) {
55550
55625
  adaptedRules[ruleIndex] = newRule;
@@ -55554,9 +55629,12 @@ class DataValidationPlugin extends CorePlugin {
55554
55629
  this.history.update("rules", sheetId, [...adaptedRules, newRule]);
55555
55630
  }
55556
55631
  }
55557
- removeRangesFromRules(sheetId, ranges, rules) {
55632
+ removeRangesFromRules(sheetId, ranges, rules, editingRuleId) {
55558
55633
  rules = deepCopy(rules);
55559
55634
  for (const rule of rules) {
55635
+ if (rule.id === editingRuleId) {
55636
+ continue; // Skip the rule being edited to preserve its place in the list
55637
+ }
55560
55638
  rule.ranges = this.getters.recomputeRanges(rule.ranges, ranges);
55561
55639
  }
55562
55640
  return rules.filter((rule) => rule.ranges.length > 0);
@@ -67290,49 +67368,17 @@ class ClipboardPlugin extends UIPlugin {
67290
67368
  if (!copiedData) {
67291
67369
  return;
67292
67370
  }
67293
- let zone = undefined;
67294
- let selectedZones = [];
67295
67371
  const sheetId = this.getters.getActiveSheetId();
67296
- let target = {
67297
- sheetId,
67298
- zones,
67299
- };
67300
67372
  const handlers = this.selectClipboardHandlers(copiedData);
67301
- for (const { handlerName, handler } of handlers) {
67302
- const handlerData = copiedData[handlerName];
67303
- if (!handlerData) {
67304
- continue;
67305
- }
67306
- const currentTarget = handler.getPasteTarget(sheetId, zones, handlerData, options);
67307
- if (currentTarget.figureId) {
67308
- target.figureId = currentTarget.figureId;
67309
- }
67310
- for (const targetZone of currentTarget.zones) {
67311
- selectedZones.push(targetZone);
67312
- if (zone === undefined) {
67313
- zone = targetZone;
67314
- continue;
67315
- }
67316
- zone = union(zone, targetZone);
67317
- }
67318
- }
67373
+ const { target, zone, selectedZones } = getPasteTargetFromHandlers(sheetId, zones, copiedData, handlers, options);
67319
67374
  if (zone !== undefined) {
67320
- this.addMissingDimensions(this.getters.getActiveSheetId(), zone.right - zone.left + 1, zone.bottom - zone.top + 1, zone.left, zone.top);
67375
+ this.addMissingDimensions(sheetId, zone.right - zone.left + 1, zone.bottom - zone.top + 1, zone.left, zone.top);
67321
67376
  }
67322
- handlers.forEach(({ handlerName, handler }) => {
67323
- const handlerData = copiedData[handlerName];
67324
- if (handlerData) {
67325
- handler.paste(target, handlerData, options);
67326
- }
67327
- });
67377
+ applyClipboardHandlersPaste(handlers, copiedData, target, options);
67328
67378
  if (!options?.selectTarget) {
67329
67379
  return;
67330
67380
  }
67331
- const selection = zones[0];
67332
- const col = selection.left;
67333
- const row = selection.top;
67334
- this.selection.getBackToDefault();
67335
- this.selection.selectZone({ cell: { col, row }, zone: union(...selectedZones) }, { scrollIntoView: false });
67381
+ selectPastedZone(this.selection, zones, selectedZones);
67336
67382
  }
67337
67383
  /**
67338
67384
  * Add columns and/or rows to ensure that col + width and row + height are still
@@ -73204,26 +73250,28 @@ class SelectionStreamProcessorImpl {
73204
73250
  bottom: Math.min(this.getters.getNumberRows(sheetId) - 1, bottom),
73205
73251
  };
73206
73252
  };
73207
- const { col: refCol, row: refRow } = this.getReferencePosition();
73253
+ const { cell: refCell, zone: refZone } = this.getReferenceAnchor();
73254
+ const { col: refCol, row: refRow } = refCell;
73208
73255
  // check if we can shrink selection
73209
73256
  let n = 0;
73210
73257
  while (result !== null) {
73211
73258
  n++;
73212
73259
  if (deltaCol < 0) {
73213
73260
  const newRight = this.getNextAvailableCol(deltaCol, right - (n - 1), refRow);
73214
- result = refCol <= right - n ? expand({ top, left, bottom, right: newRight }) : null;
73261
+ result = refZone.right <= right - n ? expand({ top, left, bottom, right: newRight }) : null;
73215
73262
  }
73216
73263
  if (deltaCol > 0) {
73217
73264
  const newLeft = this.getNextAvailableCol(deltaCol, left + (n - 1), refRow);
73218
- result = left + n <= refCol ? expand({ top, left: newLeft, bottom, right }) : null;
73265
+ result = left + n <= refZone.left ? expand({ top, left: newLeft, bottom, right }) : null;
73219
73266
  }
73220
73267
  if (deltaRow < 0) {
73221
73268
  const newBottom = this.getNextAvailableRow(deltaRow, refCol, bottom - (n - 1));
73222
- result = refRow <= bottom - n ? expand({ top, left, bottom: newBottom, right }) : null;
73269
+ result =
73270
+ refZone.bottom <= bottom - n ? expand({ top, left, bottom: newBottom, right }) : null;
73223
73271
  }
73224
73272
  if (deltaRow > 0) {
73225
73273
  const newTop = this.getNextAvailableRow(deltaRow, refCol, top + (n - 1));
73226
- result = top + n <= refRow ? expand({ top: newTop, left, bottom, right }) : null;
73274
+ result = top + n <= refZone.top ? expand({ top: newTop, left, bottom, right }) : null;
73227
73275
  }
73228
73276
  result = result ? reorderZone(result) : result;
73229
73277
  if (result && !isEqual(result, anchor.zone)) {
@@ -73453,18 +73501,26 @@ class SelectionStreamProcessorImpl {
73453
73501
  * If the anchor is hidden, browses from left to right and top to bottom to
73454
73502
  * find a visible cell.
73455
73503
  */
73456
- getReferencePosition() {
73504
+ getReferenceAnchor() {
73457
73505
  const sheetId = this.getters.getActiveSheetId();
73458
73506
  const anchor = this.anchor;
73459
73507
  const { left, right, top, bottom } = anchor.zone;
73460
73508
  const { col: anchorCol, row: anchorRow } = anchor.cell;
73509
+ const col = this.getters.isColHidden(sheetId, anchorCol)
73510
+ ? this.getters.findVisibleHeader(sheetId, "COL", left, right) || anchorCol
73511
+ : anchorCol;
73512
+ const row = this.getters.isRowHidden(sheetId, anchorRow)
73513
+ ? this.getters.findVisibleHeader(sheetId, "ROW", top, bottom) || anchorRow
73514
+ : anchorRow;
73515
+ const zone = this.getters.expandZone(sheetId, {
73516
+ left: col,
73517
+ right: col,
73518
+ top: row,
73519
+ bottom: row,
73520
+ });
73461
73521
  return {
73462
- col: this.getters.isColHidden(sheetId, anchorCol)
73463
- ? this.getters.findVisibleHeader(sheetId, "COL", left, right) || anchorCol
73464
- : anchorCol,
73465
- row: this.getters.isRowHidden(sheetId, anchorRow)
73466
- ? this.getters.findVisibleHeader(sheetId, "ROW", top, bottom) || anchorRow
73467
- : anchorRow,
73522
+ cell: { col, row },
73523
+ zone,
73468
73524
  };
73469
73525
  }
73470
73526
  deltaToTarget(position, direction, step) {
@@ -76574,6 +76630,6 @@ exports.tokenColors = tokenColors;
76574
76630
  exports.tokenize = tokenize;
76575
76631
 
76576
76632
 
76577
- __info__.version = "18.1.26";
76578
- __info__.date = "2025-06-19T18:21:37.648Z";
76579
- __info__.hash = "06479d4";
76633
+ __info__.version = "18.1.28";
76634
+ __info__.date = "2025-06-27T09:12:45.644Z";
76635
+ __info__.hash = "25dd087";
@@ -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 };