@odoo/o-spreadsheet 18.2.18 → 18.2.20

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.18
6
- * @date 2025-06-19T18:24:41.051Z
7
- * @hash 024c134
5
+ * @version 18.2.20
6
+ * @date 2025-06-27T09:11:55.800Z
7
+ * @hash 16dfc38
8
8
  */
9
9
 
10
10
  'use strict';
@@ -6827,6 +6827,63 @@ function parseOSClipboardContent(content) {
6827
6827
  data: spreadsheetContent,
6828
6828
  };
6829
6829
  }
6830
+ /**
6831
+ * Applies each clipboard handler to paste its corresponding data into the target.
6832
+ */
6833
+ const applyClipboardHandlersPaste = (handlers, copiedData, target, options) => {
6834
+ handlers.forEach(({ handlerName, handler }) => {
6835
+ const data = copiedData[handlerName];
6836
+ if (data) {
6837
+ handler.paste(target, data, options);
6838
+ }
6839
+ });
6840
+ };
6841
+ /**
6842
+ * Returns the paste target based on clipboard handlers.
6843
+ * Also includes the full affected zone and the list of pasted zones for selection.
6844
+ */
6845
+ function getPasteTargetFromHandlers(sheetId, zones, copiedData, handlers, options) {
6846
+ let zone = undefined;
6847
+ let selectedZones = [];
6848
+ let target = {
6849
+ sheetId,
6850
+ zones,
6851
+ };
6852
+ for (const { handlerName, handler } of handlers) {
6853
+ const handlerData = copiedData[handlerName];
6854
+ if (!handlerData) {
6855
+ continue;
6856
+ }
6857
+ const currentTarget = handler.getPasteTarget(sheetId, zones, handlerData, options);
6858
+ if (currentTarget.figureId) {
6859
+ target.figureId = currentTarget.figureId;
6860
+ }
6861
+ for (const targetZone of currentTarget.zones) {
6862
+ selectedZones.push(targetZone);
6863
+ if (zone === undefined) {
6864
+ zone = targetZone;
6865
+ continue;
6866
+ }
6867
+ zone = union(zone, targetZone);
6868
+ }
6869
+ }
6870
+ return {
6871
+ target,
6872
+ zone,
6873
+ selectedZones,
6874
+ };
6875
+ }
6876
+ /**
6877
+ * Updates the selection after a paste operation.
6878
+ */
6879
+ const selectPastedZone = (selection, sourceZones, pastedZones) => {
6880
+ const anchorCell = {
6881
+ col: sourceZones[0].left,
6882
+ row: sourceZones[0].top,
6883
+ };
6884
+ selection.getBackToDefault();
6885
+ selection.selectZone({ cell: anchorCell, zone: union(...pastedZones) }, { scrollIntoView: false });
6886
+ };
6830
6887
 
6831
6888
  class ClipboardHandler {
6832
6889
  getters;
@@ -21143,7 +21200,7 @@ class AbstractComposerStore extends SpreadsheetStore {
21143
21200
  }
21144
21201
  captureSelection(zone, col, row) {
21145
21202
  this.model.selection.capture(this, {
21146
- cell: { col: col || zone.left, row: row || zone.right },
21203
+ cell: { col: col ?? zone.left, row: row ?? zone.right },
21147
21204
  zone,
21148
21205
  }, {
21149
21206
  handleEvent: this.handleEvent.bind(this),
@@ -43087,6 +43144,9 @@ class ConditionalFormattingPanel extends owl.Component {
43087
43144
  this.switchToList();
43088
43145
  }
43089
43146
  }
43147
+ else if (!this.editedCF) {
43148
+ this.switchToList();
43149
+ }
43090
43150
  });
43091
43151
  }
43092
43152
  get conditionalFormats() {
@@ -47107,7 +47167,7 @@ class SpreadsheetPivot {
47107
47167
  }
47108
47168
  getTypeFromZone(sheetId, zone) {
47109
47169
  const cells = this.getters.getEvaluatedCellsInZone(sheetId, zone);
47110
- const nonEmptyCells = cells.filter((cell) => cell.type !== CellValueType.empty);
47170
+ const nonEmptyCells = cells.filter((cell) => !(cell.type === CellValueType.empty || cell.value === ""));
47111
47171
  if (nonEmptyCells.length === 0) {
47112
47172
  return "integer";
47113
47173
  }
@@ -50657,15 +50717,16 @@ class GridAddRowsFooter extends owl.Component {
50657
50717
  }
50658
50718
  }
50659
50719
 
50720
+ const PAINT_FORMAT_HANDLER_KEYS = [
50721
+ "cell",
50722
+ "border",
50723
+ "table",
50724
+ "conditionalFormat",
50725
+ "merge",
50726
+ ];
50660
50727
  class PaintFormatStore extends SpreadsheetStore {
50661
50728
  mutators = ["activate", "cancel", "pasteFormat"];
50662
50729
  highlightStore = this.get(HighlightStore);
50663
- clipboardHandlers = [
50664
- new CellClipboardHandler(this.getters, this.model.dispatch),
50665
- new BorderClipboardHandler(this.getters, this.model.dispatch),
50666
- new TableClipboardHandler(this.getters, this.model.dispatch),
50667
- new ConditionalFormatClipboardHandler(this.getters, this.model.dispatch),
50668
- ];
50669
50730
  status = "inactive";
50670
50731
  copiedData;
50671
50732
  constructor(get) {
@@ -50696,24 +50757,38 @@ class PaintFormatStore extends SpreadsheetStore {
50696
50757
  get isActive() {
50697
50758
  return this.status !== "inactive";
50698
50759
  }
50760
+ get clipboardHandlers() {
50761
+ return PAINT_FORMAT_HANDLER_KEYS.map((handlerName) => {
50762
+ const HandlerClass = clipboardHandlersRegistries.cellHandlers.get(handlerName);
50763
+ return {
50764
+ handlerName,
50765
+ handler: new HandlerClass(this.getters, this.model.dispatch),
50766
+ };
50767
+ });
50768
+ }
50699
50769
  copyFormats() {
50700
50770
  const sheetId = this.getters.getActiveSheetId();
50701
50771
  const zones = this.getters.getSelectedZones();
50702
- const copiedData = {};
50703
- for (const handler of this.clipboardHandlers) {
50704
- Object.assign(copiedData, handler.copy(getClipboardDataPositions(sheetId, zones)));
50772
+ const copiedData = { zones, sheetId };
50773
+ for (const { handlerName, handler } of this.clipboardHandlers) {
50774
+ const handlerResult = handler.copy(getClipboardDataPositions(sheetId, zones));
50775
+ if (handlerResult !== undefined) {
50776
+ copiedData[handlerName] = handlerResult;
50777
+ }
50705
50778
  }
50706
50779
  return copiedData;
50707
50780
  }
50708
50781
  paintFormat(sheetId, target) {
50709
- if (this.copiedData) {
50710
- for (const handler of this.clipboardHandlers) {
50711
- handler.paste({ zones: target, sheetId }, this.copiedData, {
50712
- isCutOperation: false,
50713
- pasteOption: "onlyFormat",
50714
- });
50715
- }
50782
+ if (!this.copiedData) {
50783
+ return;
50716
50784
  }
50785
+ const options = {
50786
+ isCutOperation: false,
50787
+ pasteOption: "onlyFormat",
50788
+ };
50789
+ const { target: pasteTarget, selectedZones } = getPasteTargetFromHandlers(sheetId, target, this.copiedData, this.clipboardHandlers, options);
50790
+ applyClipboardHandlersPaste(this.clipboardHandlers, this.copiedData, pasteTarget, options);
50791
+ selectPastedZone(this.model.selection, target, selectedZones);
50717
50792
  if (this.status === "oneOff") {
50718
50793
  this.cancel();
50719
50794
  }
@@ -56014,7 +56089,7 @@ class DataValidationPlugin extends CorePlugin {
56014
56089
  else if (newRule.criterion.type === "isValueInList") {
56015
56090
  newRule.criterion.values = Array.from(new Set(newRule.criterion.values));
56016
56091
  }
56017
- const adaptedRules = this.removeRangesFromRules(sheetId, newRule.ranges, rules);
56092
+ const adaptedRules = this.removeRangesFromRules(sheetId, newRule.ranges, rules, newRule.id);
56018
56093
  const ruleIndex = adaptedRules.findIndex((rule) => rule.id === newRule.id);
56019
56094
  if (ruleIndex !== -1) {
56020
56095
  adaptedRules[ruleIndex] = newRule;
@@ -56024,9 +56099,12 @@ class DataValidationPlugin extends CorePlugin {
56024
56099
  this.history.update("rules", sheetId, [...adaptedRules, newRule]);
56025
56100
  }
56026
56101
  }
56027
- removeRangesFromRules(sheetId, ranges, rules) {
56102
+ removeRangesFromRules(sheetId, ranges, rules, editingRuleId) {
56028
56103
  rules = deepCopy(rules);
56029
56104
  for (const rule of rules) {
56105
+ if (rule.id === editingRuleId) {
56106
+ continue; // Skip the rule being edited to preserve its place in the list
56107
+ }
56030
56108
  rule.ranges = this.getters.recomputeRanges(rule.ranges, ranges);
56031
56109
  }
56032
56110
  return rules.filter((rule) => rule.ranges.length > 0);
@@ -67784,49 +67862,17 @@ class ClipboardPlugin extends UIPlugin {
67784
67862
  if (!copiedData) {
67785
67863
  return;
67786
67864
  }
67787
- let zone = undefined;
67788
- let selectedZones = [];
67789
67865
  const sheetId = this.getters.getActiveSheetId();
67790
- let target = {
67791
- sheetId,
67792
- zones,
67793
- };
67794
67866
  const handlers = this.selectClipboardHandlers(copiedData);
67795
- for (const { handlerName, handler } of handlers) {
67796
- const handlerData = copiedData[handlerName];
67797
- if (!handlerData) {
67798
- continue;
67799
- }
67800
- const currentTarget = handler.getPasteTarget(sheetId, zones, handlerData, options);
67801
- if (currentTarget.figureId) {
67802
- target.figureId = currentTarget.figureId;
67803
- }
67804
- for (const targetZone of currentTarget.zones) {
67805
- selectedZones.push(targetZone);
67806
- if (zone === undefined) {
67807
- zone = targetZone;
67808
- continue;
67809
- }
67810
- zone = union(zone, targetZone);
67811
- }
67812
- }
67867
+ const { target, zone, selectedZones } = getPasteTargetFromHandlers(sheetId, zones, copiedData, handlers, options);
67813
67868
  if (zone !== undefined) {
67814
- this.addMissingDimensions(this.getters.getActiveSheetId(), zone.right - zone.left + 1, zone.bottom - zone.top + 1, zone.left, zone.top);
67869
+ this.addMissingDimensions(sheetId, zone.right - zone.left + 1, zone.bottom - zone.top + 1, zone.left, zone.top);
67815
67870
  }
67816
- handlers.forEach(({ handlerName, handler }) => {
67817
- const handlerData = copiedData[handlerName];
67818
- if (handlerData) {
67819
- handler.paste(target, handlerData, options);
67820
- }
67821
- });
67871
+ applyClipboardHandlersPaste(handlers, copiedData, target, options);
67822
67872
  if (!options?.selectTarget) {
67823
67873
  return;
67824
67874
  }
67825
- const selection = zones[0];
67826
- const col = selection.left;
67827
- const row = selection.top;
67828
- this.selection.getBackToDefault();
67829
- this.selection.selectZone({ cell: { col, row }, zone: union(...selectedZones) }, { scrollIntoView: false });
67875
+ selectPastedZone(this.selection, zones, selectedZones);
67830
67876
  }
67831
67877
  /**
67832
67878
  * Add columns and/or rows to ensure that col + width and row + height are still
@@ -73649,26 +73695,28 @@ class SelectionStreamProcessorImpl {
73649
73695
  bottom: Math.min(this.getters.getNumberRows(sheetId) - 1, bottom),
73650
73696
  };
73651
73697
  };
73652
- const { col: refCol, row: refRow } = this.getReferencePosition();
73698
+ const { cell: refCell, zone: refZone } = this.getReferenceAnchor();
73699
+ const { col: refCol, row: refRow } = refCell;
73653
73700
  // check if we can shrink selection
73654
73701
  let n = 0;
73655
73702
  while (result !== null) {
73656
73703
  n++;
73657
73704
  if (deltaCol < 0) {
73658
73705
  const newRight = this.getNextAvailableCol(deltaCol, right - (n - 1), refRow);
73659
- result = refCol <= right - n ? expand({ top, left, bottom, right: newRight }) : null;
73706
+ result = refZone.right <= right - n ? expand({ top, left, bottom, right: newRight }) : null;
73660
73707
  }
73661
73708
  if (deltaCol > 0) {
73662
73709
  const newLeft = this.getNextAvailableCol(deltaCol, left + (n - 1), refRow);
73663
- result = left + n <= refCol ? expand({ top, left: newLeft, bottom, right }) : null;
73710
+ result = left + n <= refZone.left ? expand({ top, left: newLeft, bottom, right }) : null;
73664
73711
  }
73665
73712
  if (deltaRow < 0) {
73666
73713
  const newBottom = this.getNextAvailableRow(deltaRow, refCol, bottom - (n - 1));
73667
- result = refRow <= bottom - n ? expand({ top, left, bottom: newBottom, right }) : null;
73714
+ result =
73715
+ refZone.bottom <= bottom - n ? expand({ top, left, bottom: newBottom, right }) : null;
73668
73716
  }
73669
73717
  if (deltaRow > 0) {
73670
73718
  const newTop = this.getNextAvailableRow(deltaRow, refCol, top + (n - 1));
73671
- result = top + n <= refRow ? expand({ top: newTop, left, bottom, right }) : null;
73719
+ result = top + n <= refZone.top ? expand({ top: newTop, left, bottom, right }) : null;
73672
73720
  }
73673
73721
  result = result ? reorderZone(result) : result;
73674
73722
  if (result && !isEqual(result, anchor.zone)) {
@@ -73898,18 +73946,26 @@ class SelectionStreamProcessorImpl {
73898
73946
  * If the anchor is hidden, browses from left to right and top to bottom to
73899
73947
  * find a visible cell.
73900
73948
  */
73901
- getReferencePosition() {
73949
+ getReferenceAnchor() {
73902
73950
  const sheetId = this.getters.getActiveSheetId();
73903
73951
  const anchor = this.anchor;
73904
73952
  const { left, right, top, bottom } = anchor.zone;
73905
73953
  const { col: anchorCol, row: anchorRow } = anchor.cell;
73954
+ const col = this.getters.isColHidden(sheetId, anchorCol)
73955
+ ? this.getters.findVisibleHeader(sheetId, "COL", left, right) || anchorCol
73956
+ : anchorCol;
73957
+ const row = this.getters.isRowHidden(sheetId, anchorRow)
73958
+ ? this.getters.findVisibleHeader(sheetId, "ROW", top, bottom) || anchorRow
73959
+ : anchorRow;
73960
+ const zone = this.getters.expandZone(sheetId, {
73961
+ left: col,
73962
+ right: col,
73963
+ top: row,
73964
+ bottom: row,
73965
+ });
73906
73966
  return {
73907
- col: this.getters.isColHidden(sheetId, anchorCol)
73908
- ? this.getters.findVisibleHeader(sheetId, "COL", left, right) || anchorCol
73909
- : anchorCol,
73910
- row: this.getters.isRowHidden(sheetId, anchorRow)
73911
- ? this.getters.findVisibleHeader(sheetId, "ROW", top, bottom) || anchorRow
73912
- : anchorRow,
73967
+ cell: { col, row },
73968
+ zone,
73913
73969
  };
73914
73970
  }
73915
73971
  deltaToTarget(position, direction, step) {
@@ -77052,6 +77108,6 @@ exports.tokenColors = tokenColors;
77052
77108
  exports.tokenize = tokenize;
77053
77109
 
77054
77110
 
77055
- __info__.version = "18.2.18";
77056
- __info__.date = "2025-06-19T18:24:41.051Z";
77057
- __info__.hash = "024c134";
77111
+ __info__.version = "18.2.20";
77112
+ __info__.date = "2025-06-27T09:11:55.800Z";
77113
+ __info__.hash = "16dfc38";
@@ -1918,13 +1918,6 @@ declare class UIPlugin<State = any> extends BasePlugin<State, Command> {
1918
1918
  drawLayer(ctx: GridRenderingContext, layer: LayerName): void;
1919
1919
  }
1920
1920
 
1921
- type MinimalClipboardData = {
1922
- sheetId?: UID;
1923
- cells?: ClipboardCell[][];
1924
- zones?: Zone[];
1925
- figureId?: UID;
1926
- [key: string]: unknown;
1927
- };
1928
1921
  interface SpreadsheetClipboardData extends MinimalClipboardData {
1929
1922
  version?: number;
1930
1923
  clipboardId?: string;
@@ -2362,6 +2355,13 @@ type ClipboardPasteTarget = {
2362
2355
  zones: Zone[];
2363
2356
  figureId?: UID;
2364
2357
  };
2358
+ type MinimalClipboardData = {
2359
+ sheetId?: UID;
2360
+ cells?: ClipboardCell[][];
2361
+ zones?: Zone[];
2362
+ figureId?: UID;
2363
+ [key: string]: unknown;
2364
+ };
2365
2365
 
2366
2366
  /**
2367
2367
  * There are two kinds of commands: CoreCommands and LocalCommands
@@ -13500,4 +13500,4 @@ declare const chartHelpers: {
13500
13500
  WaterfallChart: typeof WaterfallChart;
13501
13501
  };
13502
13502
 
13503
- 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, 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 };
13503
+ 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 };