@odoo/o-spreadsheet 18.0.34 → 18.0.36

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.0.34
6
- * @date 2025-06-19T18:26:11.726Z
7
- * @hash 5526881
5
+ * @version 18.0.36
6
+ * @date 2025-06-27T09:11:51.920Z
7
+ * @hash b8dc998
8
8
  */
9
9
 
10
10
  'use strict';
@@ -6663,6 +6663,63 @@ function parseOSClipboardContent(content) {
6663
6663
  data: spreadsheetContent,
6664
6664
  };
6665
6665
  }
6666
+ /**
6667
+ * Applies each clipboard handler to paste its corresponding data into the target.
6668
+ */
6669
+ const applyClipboardHandlersPaste = (handlers, copiedData, target, options) => {
6670
+ handlers.forEach(({ handlerName, handler }) => {
6671
+ const data = copiedData[handlerName];
6672
+ if (data) {
6673
+ handler.paste(target, data, options);
6674
+ }
6675
+ });
6676
+ };
6677
+ /**
6678
+ * Returns the paste target based on clipboard handlers.
6679
+ * Also includes the full affected zone and the list of pasted zones for selection.
6680
+ */
6681
+ function getPasteTargetFromHandlers(sheetId, zones, copiedData, handlers, options) {
6682
+ let zone = undefined;
6683
+ let selectedZones = [];
6684
+ let target = {
6685
+ sheetId,
6686
+ zones,
6687
+ };
6688
+ for (const { handlerName, handler } of handlers) {
6689
+ const handlerData = copiedData[handlerName];
6690
+ if (!handlerData) {
6691
+ continue;
6692
+ }
6693
+ const currentTarget = handler.getPasteTarget(sheetId, zones, handlerData, options);
6694
+ if (currentTarget.figureId) {
6695
+ target.figureId = currentTarget.figureId;
6696
+ }
6697
+ for (const targetZone of currentTarget.zones) {
6698
+ selectedZones.push(targetZone);
6699
+ if (zone === undefined) {
6700
+ zone = targetZone;
6701
+ continue;
6702
+ }
6703
+ zone = union(zone, targetZone);
6704
+ }
6705
+ }
6706
+ return {
6707
+ target,
6708
+ zone,
6709
+ selectedZones,
6710
+ };
6711
+ }
6712
+ /**
6713
+ * Updates the selection after a paste operation.
6714
+ */
6715
+ const selectPastedZone = (selection, sourceZones, pastedZones) => {
6716
+ const anchorCell = {
6717
+ col: sourceZones[0].left,
6718
+ row: sourceZones[0].top,
6719
+ };
6720
+ selection.getBackToDefault();
6721
+ selection.selectZone({ cell: anchorCell, zone: union(...pastedZones) }, { scrollIntoView: false });
6722
+ };
6666
6723
 
6667
6724
  class ClipboardHandler {
6668
6725
  getters;
@@ -44616,7 +44673,7 @@ class SpreadsheetPivot {
44616
44673
  }
44617
44674
  getTypeFromZone(sheetId, zone) {
44618
44675
  const cells = this.getters.getEvaluatedCellsInZone(sheetId, zone);
44619
- const nonEmptyCells = cells.filter((cell) => cell.type !== CellValueType.empty);
44676
+ const nonEmptyCells = cells.filter((cell) => !(cell.type === CellValueType.empty || cell.value === ""));
44620
44677
  if (nonEmptyCells.length === 0) {
44621
44678
  return "integer";
44622
44679
  }
@@ -48149,15 +48206,16 @@ class GridAddRowsFooter extends owl.Component {
48149
48206
  }
48150
48207
  }
48151
48208
 
48209
+ const PAINT_FORMAT_HANDLER_KEYS = [
48210
+ "cell",
48211
+ "border",
48212
+ "table",
48213
+ "conditionalFormat",
48214
+ "merge",
48215
+ ];
48152
48216
  class PaintFormatStore extends SpreadsheetStore {
48153
48217
  mutators = ["activate", "cancel", "pasteFormat"];
48154
48218
  highlightStore = this.get(HighlightStore);
48155
- clipboardHandlers = [
48156
- new CellClipboardHandler(this.getters, this.model.dispatch),
48157
- new BorderClipboardHandler(this.getters, this.model.dispatch),
48158
- new TableClipboardHandler(this.getters, this.model.dispatch),
48159
- new ConditionalFormatClipboardHandler(this.getters, this.model.dispatch),
48160
- ];
48161
48219
  status = "inactive";
48162
48220
  copiedData;
48163
48221
  constructor(get) {
@@ -48188,24 +48246,38 @@ class PaintFormatStore extends SpreadsheetStore {
48188
48246
  get isActive() {
48189
48247
  return this.status !== "inactive";
48190
48248
  }
48249
+ get clipboardHandlers() {
48250
+ return PAINT_FORMAT_HANDLER_KEYS.map((handlerName) => {
48251
+ const HandlerClass = clipboardHandlersRegistries.cellHandlers.get(handlerName);
48252
+ return {
48253
+ handlerName,
48254
+ handler: new HandlerClass(this.getters, this.model.dispatch),
48255
+ };
48256
+ });
48257
+ }
48191
48258
  copyFormats() {
48192
48259
  const sheetId = this.getters.getActiveSheetId();
48193
48260
  const zones = this.getters.getSelectedZones();
48194
- const copiedData = {};
48195
- for (const handler of this.clipboardHandlers) {
48196
- Object.assign(copiedData, handler.copy(getClipboardDataPositions(sheetId, zones)));
48261
+ const copiedData = { zones, sheetId };
48262
+ for (const { handlerName, handler } of this.clipboardHandlers) {
48263
+ const handlerResult = handler.copy(getClipboardDataPositions(sheetId, zones));
48264
+ if (handlerResult !== undefined) {
48265
+ copiedData[handlerName] = handlerResult;
48266
+ }
48197
48267
  }
48198
48268
  return copiedData;
48199
48269
  }
48200
48270
  paintFormat(sheetId, target) {
48201
- if (this.copiedData) {
48202
- for (const handler of this.clipboardHandlers) {
48203
- handler.paste({ zones: target, sheetId }, this.copiedData, {
48204
- isCutOperation: false,
48205
- pasteOption: "onlyFormat",
48206
- });
48207
- }
48271
+ if (!this.copiedData) {
48272
+ return;
48208
48273
  }
48274
+ const options = {
48275
+ isCutOperation: false,
48276
+ pasteOption: "onlyFormat",
48277
+ };
48278
+ const { target: pasteTarget, selectedZones } = getPasteTargetFromHandlers(sheetId, target, this.copiedData, this.clipboardHandlers, options);
48279
+ applyClipboardHandlersPaste(this.clipboardHandlers, this.copiedData, pasteTarget, options);
48280
+ selectPastedZone(this.model.selection, target, selectedZones);
48209
48281
  if (this.status === "oneOff") {
48210
48282
  this.cancel();
48211
48283
  }
@@ -53463,7 +53535,7 @@ class DataValidationPlugin extends CorePlugin {
53463
53535
  else if (newRule.criterion.type === "isValueInList") {
53464
53536
  newRule.criterion.values = Array.from(new Set(newRule.criterion.values));
53465
53537
  }
53466
- const adaptedRules = this.removeRangesFromRules(sheetId, newRule.ranges, rules);
53538
+ const adaptedRules = this.removeRangesFromRules(sheetId, newRule.ranges, rules, newRule.id);
53467
53539
  const ruleIndex = adaptedRules.findIndex((rule) => rule.id === newRule.id);
53468
53540
  if (ruleIndex !== -1) {
53469
53541
  adaptedRules[ruleIndex] = newRule;
@@ -53473,9 +53545,12 @@ class DataValidationPlugin extends CorePlugin {
53473
53545
  this.history.update("rules", sheetId, [...adaptedRules, newRule]);
53474
53546
  }
53475
53547
  }
53476
- removeRangesFromRules(sheetId, ranges, rules) {
53548
+ removeRangesFromRules(sheetId, ranges, rules, editingRuleId) {
53477
53549
  rules = deepCopy(rules);
53478
53550
  for (const rule of rules) {
53551
+ if (rule.id === editingRuleId) {
53552
+ continue; // Skip the rule being edited to preserve its place in the list
53553
+ }
53479
53554
  rule.ranges = this.getters.recomputeRanges(rule.ranges, ranges);
53480
53555
  }
53481
53556
  return rules.filter((rule) => rule.ranges.length > 0);
@@ -65160,49 +65235,17 @@ class ClipboardPlugin extends UIPlugin {
65160
65235
  if (!copiedData) {
65161
65236
  return;
65162
65237
  }
65163
- let zone = undefined;
65164
- let selectedZones = [];
65165
65238
  const sheetId = this.getters.getActiveSheetId();
65166
- let target = {
65167
- sheetId,
65168
- zones,
65169
- };
65170
65239
  const handlers = this.selectClipboardHandlers(copiedData);
65171
- for (const { handlerName, handler } of handlers) {
65172
- const handlerData = copiedData[handlerName];
65173
- if (!handlerData) {
65174
- continue;
65175
- }
65176
- const currentTarget = handler.getPasteTarget(sheetId, zones, handlerData, options);
65177
- if (currentTarget.figureId) {
65178
- target.figureId = currentTarget.figureId;
65179
- }
65180
- for (const targetZone of currentTarget.zones) {
65181
- selectedZones.push(targetZone);
65182
- if (zone === undefined) {
65183
- zone = targetZone;
65184
- continue;
65185
- }
65186
- zone = union(zone, targetZone);
65187
- }
65188
- }
65240
+ const { target, zone, selectedZones } = getPasteTargetFromHandlers(sheetId, zones, copiedData, handlers, options);
65189
65241
  if (zone !== undefined) {
65190
- this.addMissingDimensions(this.getters.getActiveSheetId(), zone.right - zone.left + 1, zone.bottom - zone.top + 1, zone.left, zone.top);
65242
+ this.addMissingDimensions(sheetId, zone.right - zone.left + 1, zone.bottom - zone.top + 1, zone.left, zone.top);
65191
65243
  }
65192
- handlers.forEach(({ handlerName, handler }) => {
65193
- const handlerData = copiedData[handlerName];
65194
- if (handlerData) {
65195
- handler.paste(target, handlerData, options);
65196
- }
65197
- });
65244
+ applyClipboardHandlersPaste(handlers, copiedData, target, options);
65198
65245
  if (!options?.selectTarget) {
65199
65246
  return;
65200
65247
  }
65201
- const selection = zones[0];
65202
- const col = selection.left;
65203
- const row = selection.top;
65204
- this.selection.getBackToDefault();
65205
- this.selection.selectZone({ cell: { col, row }, zone: union(...selectedZones) }, { scrollIntoView: false });
65248
+ selectPastedZone(this.selection, zones, selectedZones);
65206
65249
  }
65207
65250
  /**
65208
65251
  * Add columns and/or rows to ensure that col + width and row + height are still
@@ -71153,26 +71196,28 @@ class SelectionStreamProcessorImpl {
71153
71196
  bottom: Math.min(this.getters.getNumberRows(sheetId) - 1, bottom),
71154
71197
  };
71155
71198
  };
71156
- const { col: refCol, row: refRow } = this.getReferencePosition();
71199
+ const { cell: refCell, zone: refZone } = this.getReferenceAnchor();
71200
+ const { col: refCol, row: refRow } = refCell;
71157
71201
  // check if we can shrink selection
71158
71202
  let n = 0;
71159
71203
  while (result !== null) {
71160
71204
  n++;
71161
71205
  if (deltaCol < 0) {
71162
71206
  const newRight = this.getNextAvailableCol(deltaCol, right - (n - 1), refRow);
71163
- result = refCol <= right - n ? expand({ top, left, bottom, right: newRight }) : null;
71207
+ result = refZone.right <= right - n ? expand({ top, left, bottom, right: newRight }) : null;
71164
71208
  }
71165
71209
  if (deltaCol > 0) {
71166
71210
  const newLeft = this.getNextAvailableCol(deltaCol, left + (n - 1), refRow);
71167
- result = left + n <= refCol ? expand({ top, left: newLeft, bottom, right }) : null;
71211
+ result = left + n <= refZone.left ? expand({ top, left: newLeft, bottom, right }) : null;
71168
71212
  }
71169
71213
  if (deltaRow < 0) {
71170
71214
  const newBottom = this.getNextAvailableRow(deltaRow, refCol, bottom - (n - 1));
71171
- result = refRow <= bottom - n ? expand({ top, left, bottom: newBottom, right }) : null;
71215
+ result =
71216
+ refZone.bottom <= bottom - n ? expand({ top, left, bottom: newBottom, right }) : null;
71172
71217
  }
71173
71218
  if (deltaRow > 0) {
71174
71219
  const newTop = this.getNextAvailableRow(deltaRow, refCol, top + (n - 1));
71175
- result = top + n <= refRow ? expand({ top: newTop, left, bottom, right }) : null;
71220
+ result = top + n <= refZone.top ? expand({ top: newTop, left, bottom, right }) : null;
71176
71221
  }
71177
71222
  result = result ? reorderZone(result) : result;
71178
71223
  if (result && !isEqual(result, anchor.zone)) {
@@ -71402,18 +71447,26 @@ class SelectionStreamProcessorImpl {
71402
71447
  * If the anchor is hidden, browses from left to right and top to bottom to
71403
71448
  * find a visible cell.
71404
71449
  */
71405
- getReferencePosition() {
71450
+ getReferenceAnchor() {
71406
71451
  const sheetId = this.getters.getActiveSheetId();
71407
71452
  const anchor = this.anchor;
71408
71453
  const { left, right, top, bottom } = anchor.zone;
71409
71454
  const { col: anchorCol, row: anchorRow } = anchor.cell;
71455
+ const col = this.getters.isColHidden(sheetId, anchorCol)
71456
+ ? this.getters.findVisibleHeader(sheetId, "COL", left, right) || anchorCol
71457
+ : anchorCol;
71458
+ const row = this.getters.isRowHidden(sheetId, anchorRow)
71459
+ ? this.getters.findVisibleHeader(sheetId, "ROW", top, bottom) || anchorRow
71460
+ : anchorRow;
71461
+ const zone = this.getters.expandZone(sheetId, {
71462
+ left: col,
71463
+ right: col,
71464
+ top: row,
71465
+ bottom: row,
71466
+ });
71410
71467
  return {
71411
- col: this.getters.isColHidden(sheetId, anchorCol)
71412
- ? this.getters.findVisibleHeader(sheetId, "COL", left, right) || anchorCol
71413
- : anchorCol,
71414
- row: this.getters.isRowHidden(sheetId, anchorRow)
71415
- ? this.getters.findVisibleHeader(sheetId, "ROW", top, bottom) || anchorRow
71416
- : anchorRow,
71468
+ cell: { col, row },
71469
+ zone,
71417
71470
  };
71418
71471
  }
71419
71472
  deltaToTarget(position, direction, step) {
@@ -74461,6 +74514,6 @@ exports.tokenColors = tokenColors;
74461
74514
  exports.tokenize = tokenize;
74462
74515
 
74463
74516
 
74464
- __info__.version = "18.0.34";
74465
- __info__.date = "2025-06-19T18:26:11.726Z";
74466
- __info__.hash = "5526881";
74517
+ __info__.version = "18.0.36";
74518
+ __info__.date = "2025-06-27T09:11:51.920Z";
74519
+ __info__.hash = "b8dc998";
@@ -1448,13 +1448,6 @@ declare class UIPlugin<State = any> extends BasePlugin<State, Command> {
1448
1448
  drawLayer(ctx: GridRenderingContext, layer: LayerName): void;
1449
1449
  }
1450
1450
 
1451
- type MinimalClipboardData = {
1452
- sheetId?: UID;
1453
- cells?: ClipboardCell[][];
1454
- zones?: Zone[];
1455
- figureId?: UID;
1456
- [key: string]: unknown;
1457
- };
1458
1451
  interface SpreadsheetClipboardData extends MinimalClipboardData {
1459
1452
  version?: number;
1460
1453
  clipboardId?: string;
@@ -1895,6 +1888,13 @@ type ClipboardPasteTarget = {
1895
1888
  zones: Zone[];
1896
1889
  figureId?: UID;
1897
1890
  };
1891
+ type MinimalClipboardData = {
1892
+ sheetId?: UID;
1893
+ cells?: ClipboardCell[][];
1894
+ zones?: Zone[];
1895
+ figureId?: UID;
1896
+ [key: string]: unknown;
1897
+ };
1898
1898
 
1899
1899
  interface SearchOptions {
1900
1900
  matchCase: boolean;
@@ -12438,4 +12438,4 @@ declare const constants: {
12438
12438
  };
12439
12439
  };
12440
12440
 
12441
- 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, CellData, CellErrorType, CellIsRule, CellPosition, CellValue, CellValueType, ChangeType, ChartCreationContext, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartType, ChartWithAxisDefinition, 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, EvaluatedCell, EvaluationError, ExcelCellData, 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, 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, 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, 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 };
12441
+ 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, CellData, CellErrorType, CellIsRule, CellPosition, CellValue, CellValueType, ChangeType, ChartCreationContext, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartType, ChartWithAxisDefinition, 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, EvaluatedCell, EvaluationError, ExcelCellData, 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, 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, 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, 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 };