@odoo/o-spreadsheet 18.4.0-alpha.8 → 18.4.0

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.
@@ -33,6 +33,7 @@ interface ExcelFigureSize {
33
33
  type ResizeDirection = -1 | 0 | 1;
34
34
 
35
35
  type ImageSVG = {
36
+ name: string;
36
37
  width: number;
37
38
  height: number;
38
39
  paths: {
@@ -1244,6 +1245,7 @@ interface SheetData {
1244
1245
  }
1245
1246
  interface WorkbookSettings {
1246
1247
  locale: Locale;
1248
+ disableCellAnimations?: boolean;
1247
1249
  }
1248
1250
  type PivotData = {
1249
1251
  formulaId: string;
@@ -2154,13 +2156,6 @@ declare class UIPlugin<State = any> extends BasePlugin<State, Command> {
2154
2156
  drawLayer(ctx: GridRenderingContext, layer: LayerName): void;
2155
2157
  }
2156
2158
 
2157
- type MinimalClipboardData = {
2158
- sheetId?: UID;
2159
- cells?: ClipboardCell[][];
2160
- zones?: Zone[];
2161
- figureId?: UID;
2162
- [key: string]: unknown;
2163
- };
2164
2159
  interface SpreadsheetClipboardData extends MinimalClipboardData {
2165
2160
  version?: string;
2166
2161
  clipboardId?: string;
@@ -2639,6 +2634,13 @@ type ClipboardPasteTarget = {
2639
2634
  zones: Zone[];
2640
2635
  figureId?: UID;
2641
2636
  };
2637
+ type MinimalClipboardData = {
2638
+ sheetId?: UID;
2639
+ cells?: ClipboardCell[][];
2640
+ zones?: Zone[];
2641
+ figureId?: UID;
2642
+ [key: string]: unknown;
2643
+ };
2642
2644
 
2643
2645
  /**
2644
2646
  * There are two kinds of commands: CoreCommands and LocalCommands
@@ -4138,12 +4140,14 @@ type IsCheckboxCriterion = {
4138
4140
  type IsValueInListCriterion = {
4139
4141
  type: "isValueInList";
4140
4142
  values: string[];
4141
- displayStyle: "arrow" | "plainText";
4143
+ colors?: Record<string, Color | undefined>;
4144
+ displayStyle: "arrow" | "plainText" | "chip";
4142
4145
  };
4143
4146
  type IsValueInRangeCriterion = {
4144
4147
  type: "isValueInRange";
4145
4148
  values: string[];
4146
- displayStyle: "arrow" | "plainText";
4149
+ colors?: Record<string, Color | undefined>;
4150
+ displayStyle: "arrow" | "plainText" | "chip";
4147
4151
  };
4148
4152
  type CustomFormulaCriterion = {
4149
4153
  type: "customFormula";
@@ -5125,7 +5129,6 @@ declare class PivotCorePlugin extends CorePlugin<CoreState> implements CoreState
5125
5129
  private replaceMeasureFormula;
5126
5130
  private checkSortedColumnInMeasures;
5127
5131
  private checkDuplicatedMeasureIds;
5128
- private repairSortedColumn;
5129
5132
  /**
5130
5133
  * Import the pivots
5131
5134
  */
@@ -5541,10 +5544,12 @@ type SheetValidationResult = {
5541
5544
  [col: HeaderIndex]: Array<Lazy<ValidationResult>>;
5542
5545
  };
5543
5546
  declare class EvaluationDataValidationPlugin extends CoreViewPlugin {
5544
- static getters: readonly ["getDataValidationInvalidCriterionValueMessage", "getInvalidDataValidationMessage", "getValidationResultForCellValue", "isCellValidCheckbox", "isDataValidationInvalid"];
5547
+ static getters: readonly ["getDataValidationInvalidCriterionValueMessage", "getInvalidDataValidationMessage", "getValidationResultForCellValue", "getDataValidationRangeValues", "isCellValidCheckbox", "getDataValidationCellStyle", "getDataValidationChipStyle", "isDataValidationInvalid"];
5545
5548
  validationResults: Record<UID, SheetValidationResult>;
5546
5549
  handle(cmd: CoreViewCommand): void;
5547
5550
  isDataValidationInvalid(cellPosition: CellPosition): boolean;
5551
+ getDataValidationCellStyle(position: CellPosition): Style | undefined;
5552
+ getDataValidationChipStyle(position: CellPosition): Style | undefined;
5548
5553
  getInvalidDataValidationMessage(cellPosition: CellPosition): string | undefined;
5549
5554
  /**
5550
5555
  * Check if the value is valid for the given criterion, and return an error message if not.
@@ -5552,9 +5557,13 @@ declare class EvaluationDataValidationPlugin extends CoreViewPlugin {
5552
5557
  * The value must be canonicalized.
5553
5558
  */
5554
5559
  getDataValidationInvalidCriterionValueMessage(criterionType: DataValidationCriterionType, value: string): string | undefined;
5560
+ getDataValidationRangeValues(sheetId: UID, criterion: EvaluatedCriterion): string[];
5555
5561
  isCellValidCheckbox(cellPosition: CellPosition): boolean;
5556
5562
  /** Get the validation result if the cell on the given position had the given value */
5557
5563
  getValidationResultForCellValue(cellValue: CellValue, cellPosition: CellPosition): ValidationResult;
5564
+ private hasChip;
5565
+ private getDataValidationStyle;
5566
+ private getValueColor;
5558
5567
  private isValidFormula;
5559
5568
  private getValidationResultForCell;
5560
5569
  private computeSheetValidationResults;
@@ -5634,7 +5643,7 @@ declare class CellIconPlugin extends CoreViewPlugin {
5634
5643
  private cellIconsCache;
5635
5644
  handle(cmd: Command): void;
5636
5645
  getCellIcons(position: CellPosition): GridIcon[];
5637
- getCellIconRect(icon: GridIcon): Rect;
5646
+ getCellIconRect(icon: GridIcon, cellRect: Rect): Rect;
5638
5647
  private getIconHorizontalPosition;
5639
5648
  private computeCellIcons;
5640
5649
  doesCellHaveGridIcon(position: CellPosition): boolean;
@@ -6547,24 +6556,50 @@ interface BoxTextContent {
6547
6556
  textLines: string[];
6548
6557
  width: Pixel;
6549
6558
  align: Align;
6559
+ fontSizePx: number;
6560
+ x: Pixel;
6561
+ y: Pixel;
6550
6562
  }
6551
- interface Box extends Rect {
6563
+ type BorderDescrWithOpacity = BorderDescr & {
6564
+ opacity?: number;
6565
+ };
6566
+ type RenderingBorder = {
6567
+ top?: BorderDescrWithOpacity;
6568
+ right?: BorderDescrWithOpacity;
6569
+ bottom?: BorderDescrWithOpacity;
6570
+ left?: BorderDescrWithOpacity;
6571
+ };
6572
+ type RenderingGridIcon = GridIcon & {
6573
+ clipRect?: Rect;
6574
+ };
6575
+ interface RenderingBox {
6576
+ id: string;
6552
6577
  content?: BoxTextContent;
6553
6578
  style: Style;
6579
+ chip?: {
6580
+ x: number;
6581
+ y: number;
6582
+ width: Pixel;
6583
+ height: Pixel;
6584
+ color: Color;
6585
+ };
6554
6586
  dataBarFill?: DataBarFill;
6555
- border?: Border$1;
6587
+ border?: RenderingBorder;
6556
6588
  clipRect?: Rect;
6557
6589
  isError?: boolean;
6558
6590
  isMerge?: boolean;
6559
- verticalAlign?: VerticalAlign;
6560
6591
  isOverflow?: boolean;
6561
- overlayColor: Color | undefined;
6592
+ overlayColor?: Color;
6562
6593
  icons: {
6563
- left?: GridIcon;
6564
- right?: GridIcon;
6565
- center?: GridIcon;
6594
+ left?: RenderingGridIcon;
6595
+ right?: RenderingGridIcon;
6596
+ center?: RenderingGridIcon;
6566
6597
  };
6598
+ textOpacity?: number;
6599
+ skipCellGridLines?: boolean;
6600
+ disabledAnimation?: boolean;
6567
6601
  }
6602
+ type Box = RenderingBox & Rect;
6568
6603
  interface Image {
6569
6604
  clipIcon: Rect | null;
6570
6605
  size: Pixel;
@@ -6914,7 +6949,7 @@ declare class OTRegistry extends Registry<Map<CoreCommandTypes, TransformationFu
6914
6949
  interface CellClickableItem {
6915
6950
  condition: (position: CellPosition, getters: Getters) => boolean;
6916
6951
  execute: (position: CellPosition, env: SpreadsheetChildEnv, isMiddleClick?: boolean) => void;
6917
- title?: string;
6952
+ title?: string | ((position: CellPosition, getters: Getters) => string);
6918
6953
  sequence: number;
6919
6954
  }
6920
6955
 
@@ -7028,15 +7063,43 @@ declare class Section extends Component<Props$1i, SpreadsheetChildEnv> {
7028
7063
  };
7029
7064
  }
7030
7065
 
7066
+ interface Renderer {
7067
+ drawLayer(ctx: GridRenderingContext, layer: LayerName, timestamp: number | undefined): void;
7068
+ renderingLayers: Readonly<LayerName[]>;
7069
+ }
7070
+ declare class RendererStore {
7071
+ mutators: readonly ["register", "unRegister", "draw", "startAnimation", "stopAnimation"];
7072
+ private renderers;
7073
+ private model;
7074
+ private context;
7075
+ private animationFrameId;
7076
+ private registeredAnimations;
7077
+ constructor(get: Get);
7078
+ register(renderer: Renderer): void;
7079
+ unRegister(renderer: Renderer): void;
7080
+ private drawLayer;
7081
+ draw(context?: GridRenderingContext, timestamp?: number): string;
7082
+ startAnimation(animationId: string): string;
7083
+ stopAnimation(animationId: string): string;
7084
+ dispose(): void;
7085
+ }
7086
+
7031
7087
  declare class SpreadsheetStore extends DisposableStore {
7032
7088
  protected model: Model;
7033
7089
  protected getters: Getters;
7034
- private renderer;
7090
+ protected renderer: {
7091
+ readonly register: (renderer: Renderer) => void;
7092
+ readonly unRegister: (renderer: Renderer) => void;
7093
+ readonly draw: (context?: GridRenderingContext | undefined, timestamp?: number | undefined) => void;
7094
+ readonly startAnimation: (animationId: string) => void;
7095
+ readonly stopAnimation: (animationId: string) => void;
7096
+ readonly mutators: readonly ["register", "unRegister", "draw", "startAnimation", "stopAnimation"];
7097
+ };
7035
7098
  constructor(get: Get);
7036
7099
  get renderingLayers(): Readonly<LayerName[]>;
7037
7100
  protected handle(cmd: Command): void;
7038
7101
  protected finalize(): void;
7039
- drawLayer(ctx: GridRenderingContext, layer: LayerName): void;
7102
+ drawLayer(ctx: GridRenderingContext, layer: LayerName, timestamp: number | undefined): void;
7040
7103
  }
7041
7104
 
7042
7105
  interface HighlightProvider {
@@ -8346,6 +8409,7 @@ declare class TextValueProvider extends Component<Props$W> {
8346
8409
  };
8347
8410
  private autoCompleteListRef;
8348
8411
  setup(): void;
8412
+ getCss(html: HtmlContent): string;
8349
8413
  }
8350
8414
 
8351
8415
  declare class ContentEditableHelper {
@@ -8599,6 +8663,7 @@ type HtmlContent = {
8599
8663
  onHover?: (rect: Rect) => void;
8600
8664
  onStopHover?: () => void;
8601
8665
  color?: Color;
8666
+ backgroundColor?: Color;
8602
8667
  classes?: string[];
8603
8668
  };
8604
8669
  interface CellComposerProps {
@@ -9046,38 +9111,58 @@ interface FigureContent {
9046
9111
  borderWidth?: number;
9047
9112
  }
9048
9113
 
9049
- interface SidePanelProps {
9114
+ interface SidePanelComponentProps {
9050
9115
  onCloseSidePanel?: () => void;
9051
9116
  [key: string]: any;
9052
9117
  }
9053
9118
  interface OpenSidePanel {
9054
9119
  isOpen: true;
9055
- props?: SidePanelProps;
9120
+ props?: SidePanelComponentProps;
9056
9121
  key?: string;
9057
9122
  }
9058
9123
  interface ClosedSidePanel {
9059
9124
  isOpen: false;
9060
9125
  }
9061
9126
  type SidePanelState = OpenSidePanel | ClosedSidePanel;
9062
- declare class SidePanelStore extends SpreadsheetStore {
9063
- mutators: readonly ["open", "toggle", "close", "changePanelSize", "resetPanelSize"];
9064
- initialPanelProps: SidePanelProps;
9127
+ interface PanelInfo {
9128
+ initialPanelProps: SidePanelComponentProps;
9065
9129
  componentTag: string;
9066
- panelSize: number;
9130
+ size: number;
9131
+ isCollapsed?: boolean;
9132
+ }
9133
+ declare class SidePanelStore extends SpreadsheetStore {
9134
+ mutators: readonly ["open", "toggle", "close", "changePanelSize", "resetPanelSize", "togglePinPanel", "closeMainPanel", "changeSpreadsheetWidth", "toggleCollapsePanel"];
9135
+ mainPanel: (PanelInfo & {
9136
+ isCollapsed?: boolean;
9137
+ isPinned?: boolean;
9138
+ }) | undefined;
9139
+ secondaryPanel: PanelInfo | undefined;
9140
+ availableWidth: number;
9067
9141
  screenWidthStore: {
9068
9142
  readonly setSmallThreshhold: (isSmall: () => boolean) => void;
9069
9143
  readonly mutators: readonly ["setSmallThreshhold"];
9070
9144
  readonly isSmall: boolean;
9071
9145
  };
9072
- get isOpen(): boolean;
9073
- get panelProps(): SidePanelProps;
9074
- get panelKey(): string | undefined;
9075
- open(componentTag: string, panelProps?: SidePanelProps): void;
9076
- toggle(componentTag: string, panelProps: SidePanelProps): void;
9146
+ get isMainPanelOpen(): boolean;
9147
+ get isSecondaryPanelOpen(): boolean;
9148
+ get mainPanelProps(): SidePanelComponentProps | undefined;
9149
+ get mainPanelKey(): string | undefined;
9150
+ get secondaryPanelProps(): SidePanelComponentProps | undefined;
9151
+ get secondaryPanelKey(): string | undefined;
9152
+ get totalPanelSize(): number;
9153
+ private getPanelProps;
9154
+ private getPanelKey;
9155
+ open(componentTag: string, initialPanelProps?: SidePanelComponentProps): void;
9156
+ private _openPanel;
9157
+ toggle(componentTag: string, panelProps: SidePanelComponentProps): void;
9077
9158
  close(): void;
9078
- changePanelSize(size: number, spreadsheetElWidth: number): void;
9079
- resetPanelSize(): void;
9159
+ closeMainPanel(): void;
9160
+ changePanelSize(panel: "mainPanel" | "secondaryPanel", size: number): void;
9161
+ resetPanelSize(panel: "mainPanel" | "secondaryPanel"): void;
9162
+ togglePinPanel(): void;
9163
+ toggleCollapsePanel(panel: "mainPanel" | "secondaryPanel"): void;
9080
9164
  private computeState;
9165
+ changeSpreadsheetWidth(width: number): void;
9081
9166
  }
9082
9167
 
9083
9168
  interface SidePanelContent {
@@ -9256,6 +9341,7 @@ declare class Menu extends Component<MenuProps, SpreadsheetChildEnv> {
9256
9341
  get menuStyle(): string;
9257
9342
  onMouseEnter(menu: Action, ev: PointerEvent): void;
9258
9343
  onMouseLeave(menu: Action, ev: PointerEvent): void;
9344
+ onClickMenu(menu: Action, ev: CustomEvent): void;
9259
9345
  }
9260
9346
 
9261
9347
  interface Props$N {
@@ -9548,6 +9634,7 @@ declare class GridComposer extends Component<Props$I, SpreadsheetChildEnv> {
9548
9634
  private rect;
9549
9635
  private isEditing;
9550
9636
  private isCellReferenceVisible;
9637
+ private currentEditedCell;
9551
9638
  private composerStore;
9552
9639
  composerFocusStore: Store<ComposerFocusStore>;
9553
9640
  private composerInterface;
@@ -11580,18 +11667,6 @@ declare class ClientFocusStore extends SpreadsheetStore {
11580
11667
  unfocusClient(clientId: ClientId): void;
11581
11668
  }
11582
11669
 
11583
- interface Renderer {
11584
- drawLayer(ctx: GridRenderingContext, layer: LayerName): void;
11585
- renderingLayers: Readonly<LayerName[]>;
11586
- }
11587
- declare class RendererStore {
11588
- mutators: readonly ["register", "unRegister", "drawLayer"];
11589
- private renderers;
11590
- register(renderer: Renderer): void;
11591
- unRegister(renderer: Renderer): void;
11592
- drawLayer(context: GridRenderingContext, layer: LayerName): string;
11593
- }
11594
-
11595
11670
  declare class LocalTransportService implements TransportService<CollaborationMessage> {
11596
11671
  private listeners;
11597
11672
  sendMessage(message: CollaborationMessage): Promise<void>;
@@ -11968,16 +12043,64 @@ declare class HeaderGroupContainer extends Component<Props$2, SpreadsheetChildEn
11968
12043
  get frozenPaneContainerSize(): Pixel;
11969
12044
  }
11970
12045
 
11971
- declare class SidePanel extends Component<{}, SpreadsheetChildEnv> {
12046
+ interface SidePanelProps {
12047
+ panelContent: SidePanelContent;
12048
+ panelProps: SidePanelComponentProps;
12049
+ onCloseSidePanel: () => void;
12050
+ onStartHandleDrag: (ev: MouseEvent) => void;
12051
+ onResetPanelSize: () => void;
12052
+ isPinned?: boolean;
12053
+ onTogglePinPanel?: () => void;
12054
+ onToggleCollapsePanel?: () => void;
12055
+ isCollapsed?: boolean;
12056
+ }
12057
+ declare class SidePanel extends Component<SidePanelProps, SpreadsheetChildEnv> {
12058
+ static template: string;
12059
+ static props: {
12060
+ panelContent: ObjectConstructor;
12061
+ panelProps: ObjectConstructor;
12062
+ onCloseSidePanel: FunctionConstructor;
12063
+ onStartHandleDrag: FunctionConstructor;
12064
+ onResetPanelSize: FunctionConstructor;
12065
+ isPinned: {
12066
+ type: BooleanConstructor;
12067
+ optional: boolean;
12068
+ };
12069
+ onTogglePinPanel: {
12070
+ type: FunctionConstructor;
12071
+ optional: boolean;
12072
+ };
12073
+ onToggleCollapsePanel: {
12074
+ type: FunctionConstructor;
12075
+ optional: boolean;
12076
+ };
12077
+ isCollapsed: {
12078
+ type: BooleanConstructor;
12079
+ optional: boolean;
12080
+ };
12081
+ };
12082
+ spreadsheetRect: Rect;
12083
+ getTitle(): string;
12084
+ get pinInfoMessage(): string;
12085
+ }
12086
+
12087
+ declare class SidePanels extends Component<{}, SpreadsheetChildEnv> {
11972
12088
  static template: string;
11973
12089
  static props: {};
12090
+ static components: {
12091
+ SidePanel: typeof SidePanel;
12092
+ };
11974
12093
  sidePanelStore: Store<SidePanelStore>;
11975
12094
  spreadsheetRect: Rect;
11976
12095
  setup(): void;
11977
- get panel(): SidePanelContent;
11978
- close(): void;
11979
- getTitle(): string;
11980
- startHandleDrag(ev: MouseEvent): void;
12096
+ startHandleDrag(panel: "mainPanel" | "secondaryPanel", ev: MouseEvent): void;
12097
+ get mainPanelProps(): SidePanel["props"] | undefined;
12098
+ get secondaryPanelProps(): SidePanelProps | undefined;
12099
+ get panelList(): {
12100
+ key: string | undefined;
12101
+ props: SidePanelProps | undefined;
12102
+ style: string;
12103
+ }[];
11981
12104
  }
11982
12105
 
11983
12106
  interface State$1 {
@@ -12191,7 +12314,7 @@ declare class Spreadsheet extends Component<SpreadsheetProps, SpreadsheetChildEn
12191
12314
  Grid: typeof Grid;
12192
12315
  BottomBar: typeof BottomBar;
12193
12316
  SmallBottomBar: typeof SmallBottomBar;
12194
- SidePanel: typeof SidePanel;
12317
+ SidePanels: typeof SidePanels;
12195
12318
  SpreadsheetDashboard: typeof SpreadsheetDashboard;
12196
12319
  HeaderGroupContainer: typeof HeaderGroupContainer;
12197
12320
  FullScreenChart: typeof FullScreenChart;
@@ -13039,4 +13162,4 @@ declare const chartHelpers: {
13039
13162
  WaterfallChart: typeof WaterfallChart;
13040
13163
  };
13041
13164
 
13042
- export { AST, ASTFuncall, AboveAverageRule, AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, ActivateNextSheetCommand, ActivatePreviousSheetCommand, ActivateSheetCommand, AddColumnsRowsCommand, AddConditionalFormatCommand, AddDataValidationCommand, AddFunctionDescription, AddMergeCommand, AddPivotCommand, Aggregator, Alias, Align, AlphanumericIncrementModifier, AnchorOffset, 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, ChartDatasetOrientation, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartRuntimeGenerationArgs, ChartStyle, ChartType, ChartWithAxisDefinition, ChartWithDataSetDefinition, CleanClipBoardHighlightCommand, ClearCellCommand, ClearCellsCommand, ClearFormattingCommand, Client, ClientDisconnectedError, ClientId, ClientJoinedMessage, ClientLeftMessage, ClientMovedMessage, ClientPosition, ClientWithColor, ClientWithPosition, 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, CriterionFilter, Currency, CustomFormulaCriterion, CustomizedDataSet, CutCommand, DEFAULT_LOCALE, DEFAULT_LOCALES, DIRECTION, DOMCoordinates, DOMDimension, DataBarFill, DataBarRule, DataBarRuleInternal, DataFilterValue, DataSet, DataValidationCriterion, DataValidationCriterionType, DataValidationDateCriterion, DataValidationRule, DataValidationRuleData, DatasetDesign, DatasetValues, DateCriterionValue, DateIncrementModifier, DateIsAfterCriterion, DateIsBeforeCriterion, DateIsBetweenCriterion, DateIsCriterion, DateIsNotBetweenCriterion, DateIsOnOrAfterCriterion, DateIsOnOrBeforeCriterion, DateIsValidCriterion, DebouncedFunction, DeleteCellCommand, DeleteContentCommand, DeleteFigureCommand, DeleteSheetCommand, DeleteUnfilteredContentCommand, 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, EvaluatedCriterion, EvaluatedDateCriterion, EvaluationError, ExcelChartDataset, ExcelChartDefinition, ExcelChartTrendConfiguration, ExcelChartType, ExcelFigureSize, ExcelFilterData, ExcelHeaderData, ExcelSheetData, ExcelTableData, ExcelTrendlineType, ExcelWorkbookData, ExpressionRule, Figure, FigureData, FigureInfo, FigureSize, FigureUI, Filter, FilterCriterionType, FilterId, FoldAllHeaderGroupsCommand, FoldHeaderGroupCommand, FoldHeaderGroupsInZoneCommand, Format, FormattedValue, FormulaCell, FormulaModifier, FormulaToExecute, FreezeColumnsCommand, FreezeRowsCommand, FunctionDescription, FunctionRegistry, FunctionResultNumber, FunctionResultObject, GeneratorCell, GenericCriterion, GenericCriterionType, GenericDateCriterion, 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, LocalTransportService, 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, ParsedOsClipboardContentWithImageData, PasteCommand, PasteFromOSClipboardCommand, Pivot, PivotColRowDomain, PivotCollapsedDomains, 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, PivotVisibilityOptions, Pixel, PixelPosition, Position$1 as Position, PositionDependentCommand, PropsOf, RGBA, Range, RangeAdapter$1 as RangeAdapter, RangeCompiledFormula, RangeData, RangePart, RangeProvider, RangeStringOptions, 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$1 as Selection, SelectionStep, SetBorderCommand, SetBorderTargetCommand, SetContextualFormatCommand, SetDecimalCommand, SetDecimalStep, SetFormattingCommand, SetGridLinesVisibilityCommand, SetViewportOffsetCommand, SetZoneBordersCommand, Sheet, SheetDOMScrollInfo, SheetData, SheetDependentCommand, SheetEditingCommand, 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, ToggleCheckboxCommand, 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, ValuesFilter, VerticalAlign, Viewport, WorkbookData, WorkbookHistory, Wrapping, Zone, ZoneDependentCommand, ZoneDimension, __info__, addFunction, addRenderingLayer, astToFormula, availableConditionalFormatOperators, availableDataValidationOperators, availableFiltersOperators, borderStyles, canExecuteInReadonly, chartHelpers, compile, compileTokens, components, constants, containsBlanksRule, containsErrorsRule, convertAstNodes, coreTypes, filterDateCriterionOperators, filterNumberCriterionOperators, filterTextCriterionOperators, 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 };
13165
+ export { AST, ASTFuncall, AboveAverageRule, AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, ActivateNextSheetCommand, ActivatePreviousSheetCommand, ActivateSheetCommand, AddColumnsRowsCommand, AddConditionalFormatCommand, AddDataValidationCommand, AddFunctionDescription, AddMergeCommand, AddPivotCommand, Aggregator, Alias, Align, AlphanumericIncrementModifier, AnchorOffset, 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, BorderDescrWithOpacity, BorderPosition, BorderStyle, Box, BoxTextContent, CHART_TYPES, CSSProperties, CancelledReason, Cell, CellErrorType, CellIsRule, CellPosition, CellValue, CellValueType, ChangeType, ChartAxisFormats, ChartCreationContext, ChartDatasetOrientation, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartRuntimeGenerationArgs, ChartStyle, ChartType, ChartWithAxisDefinition, ChartWithDataSetDefinition, CleanClipBoardHighlightCommand, ClearCellCommand, ClearCellsCommand, ClearFormattingCommand, Client, ClientDisconnectedError, ClientId, ClientJoinedMessage, ClientLeftMessage, ClientMovedMessage, ClientPosition, ClientWithColor, ClientWithPosition, 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, CriterionFilter, Currency, CustomFormulaCriterion, CustomizedDataSet, CutCommand, DEFAULT_LOCALE, DEFAULT_LOCALES, DIRECTION, DOMCoordinates, DOMDimension, DataBarFill, DataBarRule, DataBarRuleInternal, DataFilterValue, DataSet, DataValidationCriterion, DataValidationCriterionType, DataValidationDateCriterion, DataValidationRule, DataValidationRuleData, DatasetDesign, DatasetValues, DateCriterionValue, DateIncrementModifier, DateIsAfterCriterion, DateIsBeforeCriterion, DateIsBetweenCriterion, DateIsCriterion, DateIsNotBetweenCriterion, DateIsOnOrAfterCriterion, DateIsOnOrBeforeCriterion, DateIsValidCriterion, DebouncedFunction, DeleteCellCommand, DeleteContentCommand, DeleteFigureCommand, DeleteSheetCommand, DeleteUnfilteredContentCommand, 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, EvaluatedCriterion, EvaluatedDateCriterion, EvaluationError, ExcelChartDataset, ExcelChartDefinition, ExcelChartTrendConfiguration, ExcelChartType, ExcelFigureSize, ExcelFilterData, ExcelHeaderData, ExcelSheetData, ExcelTableData, ExcelTrendlineType, ExcelWorkbookData, ExpressionRule, Figure, FigureData, FigureInfo, FigureSize, FigureUI, Filter, FilterCriterionType, FilterId, FoldAllHeaderGroupsCommand, FoldHeaderGroupCommand, FoldHeaderGroupsInZoneCommand, Format, FormattedValue, FormulaCell, FormulaModifier, FormulaToExecute, FreezeColumnsCommand, FreezeRowsCommand, FunctionDescription, FunctionRegistry, FunctionResultNumber, FunctionResultObject, GeneratorCell, GenericCriterion, GenericCriterionType, GenericDateCriterion, 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, LocalTransportService, 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, ParsedOsClipboardContentWithImageData, PasteCommand, PasteFromOSClipboardCommand, Pivot, PivotColRowDomain, PivotCollapsedDomains, 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, PivotVisibilityOptions, Pixel, PixelPosition, Position$1 as Position, PositionDependentCommand, PropsOf, RGBA, Range, RangeAdapter$1 as RangeAdapter, RangeCompiledFormula, RangeData, RangePart, RangeProvider, RangeStringOptions, RangesDependentCommand, Rect, RedoCommand, Ref, ReferenceDenormalizer, RefreshPivotCommand, Registry, RemoteRevisionMessage, RemoteRevisionReceivedEvent, RemoveColumnsRowsCommand, RemoveConditionalFormatCommand, RemoveDataValidationCommand, RemoveDuplicatesCommand, RemoveMergeCommand, RemovePivotCommand, RemoveTableCommand, RemoveTableStyleCommand, RenamePivotCommand, RenameSheetCommand, RenderingBorder, RenderingBox, RenderingGridIcon, RepeatPasteCommand, ReplaceSearchCommand, RequestRedoCommand, RequestUndoCommand, ResizeColumnsRowsCommand, ResizeDirection, ResizeTableCommand, ResizeViewportCommand, Revision, RevisionAcknowledgedEvent, RevisionData, RevisionRedone, RevisionRedoneMessage, RevisionUndone, RevisionUndoneMessage, Row, SPREADSHEET_DIMENSIONS, ScrollDirection$1 as ScrollDirection, SelectFigureCommand, Selection$1 as Selection, SelectionStep, SetBorderCommand, SetBorderTargetCommand, SetContextualFormatCommand, SetDecimalCommand, SetDecimalStep, SetFormattingCommand, SetGridLinesVisibilityCommand, SetViewportOffsetCommand, SetZoneBordersCommand, Sheet, SheetDOMScrollInfo, SheetData, SheetDependentCommand, SheetEditingCommand, 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, ToggleCheckboxCommand, 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, ValuesFilter, VerticalAlign, Viewport, WorkbookData, WorkbookHistory, Wrapping, Zone, ZoneDependentCommand, ZoneDimension, __info__, addFunction, addRenderingLayer, astToFormula, availableConditionalFormatOperators, availableDataValidationOperators, availableFiltersOperators, borderStyles, canExecuteInReadonly, chartHelpers, compile, compileTokens, components, constants, containsBlanksRule, containsErrorsRule, convertAstNodes, coreTypes, filterDateCriterionOperators, filterNumberCriterionOperators, filterTextCriterionOperators, 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 };