@odoo/o-spreadsheet 17.5.0-alpha.3 → 17.5.0-alpha.4
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.
- package/dist/o-spreadsheet.cjs.js +23719 -23656
- package/dist/o-spreadsheet.d.ts +34 -42
- package/dist/o-spreadsheet.esm.js +23719 -23656
- package/dist/o-spreadsheet.iife.js +23716 -23653
- package/dist/o-spreadsheet.iife.min.js +281 -293
- package/dist/o_spreadsheet.xml +24 -21
- package/package.json +1 -1
package/dist/o-spreadsheet.d.ts
CHANGED
|
@@ -471,7 +471,8 @@ interface ChartCreationContext {
|
|
|
471
471
|
|
|
472
472
|
declare enum ClipboardMIMEType {
|
|
473
473
|
PlainText = "text/plain",
|
|
474
|
-
Html = "text/html"
|
|
474
|
+
Html = "text/html",
|
|
475
|
+
OSpreadsheet = "web application/o-spreadsheet"
|
|
475
476
|
}
|
|
476
477
|
type ClipboardContent = {
|
|
477
478
|
[type in ClipboardMIMEType]?: string;
|
|
@@ -1127,7 +1128,7 @@ interface CancelPaintFormatCommand {
|
|
|
1127
1128
|
interface PasteFromOSClipboardCommand {
|
|
1128
1129
|
type: "PASTE_FROM_OS_CLIPBOARD";
|
|
1129
1130
|
target: Zone[];
|
|
1130
|
-
|
|
1131
|
+
clipboardContent: ClipboardContent;
|
|
1131
1132
|
pasteOption?: ClipboardPasteOptions;
|
|
1132
1133
|
}
|
|
1133
1134
|
interface AutoresizeColumnsCommand {
|
|
@@ -1734,10 +1735,13 @@ type FunctionResultNumber = {
|
|
|
1734
1735
|
type Arg = Maybe<FunctionResultObject> | Matrix<FunctionResultObject>;
|
|
1735
1736
|
declare function isMatrix(x: any): x is Matrix<any>;
|
|
1736
1737
|
interface ClipboardCell {
|
|
1737
|
-
cell?: Cell;
|
|
1738
1738
|
evaluatedCell: EvaluatedCell;
|
|
1739
|
-
border?: Border$1;
|
|
1740
1739
|
position: CellPosition;
|
|
1740
|
+
content: string;
|
|
1741
|
+
style?: Style | undefined;
|
|
1742
|
+
format?: Format | undefined;
|
|
1743
|
+
tokens?: Token[];
|
|
1744
|
+
border?: Border$1;
|
|
1741
1745
|
}
|
|
1742
1746
|
interface HeaderDimensions {
|
|
1743
1747
|
start: Pixel;
|
|
@@ -2306,14 +2310,14 @@ type DataValidationDateCriterion = Extract<DataValidationCriterion, {
|
|
|
2306
2310
|
|
|
2307
2311
|
type ClipboardReadResult = {
|
|
2308
2312
|
status: "ok";
|
|
2309
|
-
content:
|
|
2313
|
+
content: ClipboardContent;
|
|
2310
2314
|
} | {
|
|
2311
2315
|
status: "permissionDenied" | "notImplemented";
|
|
2312
2316
|
};
|
|
2313
2317
|
interface ClipboardInterface {
|
|
2314
2318
|
write(clipboardContent: ClipboardContent): Promise<void>;
|
|
2315
2319
|
writeText(text: string): Promise<void>;
|
|
2316
|
-
|
|
2320
|
+
read(): Promise<ClipboardReadResult>;
|
|
2317
2321
|
}
|
|
2318
2322
|
|
|
2319
2323
|
interface NotificationStoreMethods {
|
|
@@ -2754,8 +2758,8 @@ declare class CellPlugin extends CorePlugin<CoreState$1> implements CoreState$1
|
|
|
2754
2758
|
*/
|
|
2755
2759
|
getCellById(cellId: UID): Cell | undefined;
|
|
2756
2760
|
private getFormulaCellContent;
|
|
2757
|
-
getTranslatedCellFormula(sheetId: UID, offsetX: number, offsetY: number,
|
|
2758
|
-
getFormulaMovedInSheet(targetSheetId: UID,
|
|
2761
|
+
getTranslatedCellFormula(sheetId: UID, offsetX: number, offsetY: number, tokens: Token[]): string;
|
|
2762
|
+
getFormulaMovedInSheet(originSheetId: UID, targetSheetId: UID, tokens: Token[]): string;
|
|
2759
2763
|
getCellStyle(position: CellPosition): Style;
|
|
2760
2764
|
/**
|
|
2761
2765
|
* Converts a zone to a XC coordinate system
|
|
@@ -4733,12 +4737,13 @@ declare class SheetUIPlugin extends UIPlugin {
|
|
|
4733
4737
|
*/
|
|
4734
4738
|
declare class ClipboardPlugin extends UIPlugin {
|
|
4735
4739
|
static layers: readonly ["Clipboard"];
|
|
4736
|
-
static getters: readonly ["getClipboardContent", "getClipboardTextContent", "isCutOperation", "isPaintingFormat"];
|
|
4740
|
+
static getters: readonly ["getClipboardContent", "getClipboardId", "getClipboardTextContent", "isCutOperation", "isPaintingFormat"];
|
|
4737
4741
|
private status;
|
|
4738
4742
|
private paintFormatStatus;
|
|
4739
4743
|
private originSheetId?;
|
|
4740
4744
|
private copiedData?;
|
|
4741
4745
|
private _isCutOperation;
|
|
4746
|
+
private clipboardId;
|
|
4742
4747
|
allowDispatch(cmd: LocalCommand): CommandResult;
|
|
4743
4748
|
handle(cmd: Command): void;
|
|
4744
4749
|
private convertOSClipboardData;
|
|
@@ -4765,7 +4770,9 @@ declare class ClipboardPlugin extends UIPlugin {
|
|
|
4765
4770
|
* considered as a copy content.
|
|
4766
4771
|
*/
|
|
4767
4772
|
getClipboardTextContent(): string;
|
|
4773
|
+
getClipboardId(): string;
|
|
4768
4774
|
getClipboardContent(): ClipboardContent;
|
|
4775
|
+
private getSerializedGridData;
|
|
4769
4776
|
private getPlainTextContent;
|
|
4770
4777
|
private getHTMLContent;
|
|
4771
4778
|
isCutOperation(): boolean;
|
|
@@ -7720,8 +7727,7 @@ declare class CellComposerStore extends AbstractComposerStore {
|
|
|
7720
7727
|
private canStopEdition;
|
|
7721
7728
|
stopEdition(direction?: Direction$1): void;
|
|
7722
7729
|
handle(cmd: Command): void;
|
|
7723
|
-
get
|
|
7724
|
-
get composerSelection(): ComposerSelection;
|
|
7730
|
+
get placeholder(): string | undefined;
|
|
7725
7731
|
get currentEditedCell(): CellPosition;
|
|
7726
7732
|
private onColumnsRemoved;
|
|
7727
7733
|
private onRowsRemoved;
|
|
@@ -7772,7 +7778,7 @@ interface FunctionDescriptionState {
|
|
|
7772
7778
|
functionDescription: FunctionDescription;
|
|
7773
7779
|
argToFocus: number;
|
|
7774
7780
|
}
|
|
7775
|
-
declare class
|
|
7781
|
+
declare class Composer extends Component<CellComposerProps, SpreadsheetChildEnv> {
|
|
7776
7782
|
static template: string;
|
|
7777
7783
|
static props: {
|
|
7778
7784
|
focus: {
|
|
@@ -8006,6 +8012,7 @@ interface Props$I {
|
|
|
8006
8012
|
onMenuClicked?: (ev: CustomEvent) => void;
|
|
8007
8013
|
menuId?: UID;
|
|
8008
8014
|
onMouseOver?: () => void;
|
|
8015
|
+
width?: number;
|
|
8009
8016
|
}
|
|
8010
8017
|
interface MenuState {
|
|
8011
8018
|
isOpen: boolean;
|
|
@@ -8041,6 +8048,10 @@ declare class Menu extends Component<Props$I, SpreadsheetChildEnv> {
|
|
|
8041
8048
|
type: FunctionConstructor;
|
|
8042
8049
|
optional: boolean;
|
|
8043
8050
|
};
|
|
8051
|
+
width: {
|
|
8052
|
+
type: NumberConstructor;
|
|
8053
|
+
optional: boolean;
|
|
8054
|
+
};
|
|
8044
8055
|
};
|
|
8045
8056
|
static components: {
|
|
8046
8057
|
Menu: typeof Menu;
|
|
@@ -8082,6 +8093,7 @@ declare class Menu extends Component<Props$I, SpreadsheetChildEnv> {
|
|
|
8082
8093
|
onMouseOverChildMenu(): void;
|
|
8083
8094
|
onMouseEnter(menu: Action, ev: MouseEvent): void;
|
|
8084
8095
|
onMouseLeave(menu: Action): void;
|
|
8096
|
+
get menuStyle(): string;
|
|
8085
8097
|
}
|
|
8086
8098
|
|
|
8087
8099
|
type ResizeAnchor = "top left" | "top" | "top right" | "right" | "bottom right" | "bottom" | "bottom left" | "left";
|
|
@@ -8218,7 +8230,7 @@ declare class GridComposer extends Component<Props$E, SpreadsheetChildEnv> {
|
|
|
8218
8230
|
onInputContextMenu: FunctionConstructor;
|
|
8219
8231
|
};
|
|
8220
8232
|
static components: {
|
|
8221
|
-
|
|
8233
|
+
Composer: typeof Composer;
|
|
8222
8234
|
};
|
|
8223
8235
|
private rect;
|
|
8224
8236
|
private isEditing;
|
|
@@ -8975,9 +8987,8 @@ declare class Grid extends Component<Props$p, SpreadsheetChildEnv> {
|
|
|
8975
8987
|
onInputContextMenu(ev: MouseEvent): void;
|
|
8976
8988
|
onCellRightClicked(col: HeaderIndex, row: HeaderIndex, { x, y }: DOMCoordinates): void;
|
|
8977
8989
|
toggleContextMenu(type: ContextMenuType, x: Pixel, y: Pixel): void;
|
|
8978
|
-
copy(cut: boolean, ev: ClipboardEvent): void
|
|
8990
|
+
copy(cut: boolean, ev: ClipboardEvent): Promise<void>;
|
|
8979
8991
|
paste(ev: ClipboardEvent): Promise<void>;
|
|
8980
|
-
private displayWarningCopyPasteNotSupported;
|
|
8981
8992
|
private clearFormatting;
|
|
8982
8993
|
private setHorizontalAlign;
|
|
8983
8994
|
closeMenu(): void;
|
|
@@ -9118,36 +9129,21 @@ declare class PieChartDesignPanel extends Component<Props$m, SpreadsheetChildEnv
|
|
|
9118
9129
|
get showValuesLabel(): string;
|
|
9119
9130
|
}
|
|
9120
9131
|
|
|
9121
|
-
interface CogWheelMenuItem {
|
|
9122
|
-
name: string;
|
|
9123
|
-
icon?: string;
|
|
9124
|
-
onClick: () => void;
|
|
9125
|
-
}
|
|
9126
9132
|
interface Props$l {
|
|
9127
|
-
items:
|
|
9133
|
+
items: ActionSpec[];
|
|
9128
9134
|
}
|
|
9129
9135
|
declare class CogWheelMenu extends Component<Props$l, SpreadsheetChildEnv> {
|
|
9130
9136
|
static template: string;
|
|
9131
9137
|
static components: {
|
|
9132
|
-
|
|
9138
|
+
Menu: typeof Menu;
|
|
9133
9139
|
};
|
|
9134
9140
|
static props: {
|
|
9135
9141
|
items: ArrayConstructor;
|
|
9136
9142
|
};
|
|
9137
9143
|
private buttonRef;
|
|
9138
|
-
private
|
|
9139
|
-
|
|
9140
|
-
|
|
9141
|
-
get popoverProps(): {
|
|
9142
|
-
anchorRect: {
|
|
9143
|
-
x: number;
|
|
9144
|
-
y: number;
|
|
9145
|
-
width: number;
|
|
9146
|
-
height: number;
|
|
9147
|
-
};
|
|
9148
|
-
positioning: string;
|
|
9149
|
-
};
|
|
9150
|
-
togglePopover(): void;
|
|
9144
|
+
private menuState;
|
|
9145
|
+
private menuId;
|
|
9146
|
+
toggleMenu(ev: MenuMouseEvent): void;
|
|
9151
9147
|
}
|
|
9152
9148
|
|
|
9153
9149
|
declare class FindAndReplaceStore extends SpreadsheetStore implements HighlightProvider {
|
|
@@ -9513,11 +9509,7 @@ declare class PivotTitleSection extends Component<Props$c, SpreadsheetChildEnv>
|
|
|
9513
9509
|
pivotId: StringConstructor;
|
|
9514
9510
|
flipAxis: FunctionConstructor;
|
|
9515
9511
|
};
|
|
9516
|
-
get cogWheelMenuItems():
|
|
9517
|
-
name: string;
|
|
9518
|
-
icon: string;
|
|
9519
|
-
onClick: () => void;
|
|
9520
|
-
}[];
|
|
9512
|
+
get cogWheelMenuItems(): ActionSpec[];
|
|
9521
9513
|
get name(): string;
|
|
9522
9514
|
get displayName(): string;
|
|
9523
9515
|
duplicatePivot(): void;
|
|
@@ -10285,7 +10277,7 @@ declare class TopBarComposer extends Component<any, SpreadsheetChildEnv> {
|
|
|
10285
10277
|
static template: string;
|
|
10286
10278
|
static props: {};
|
|
10287
10279
|
static components: {
|
|
10288
|
-
|
|
10280
|
+
Composer: typeof Composer;
|
|
10289
10281
|
};
|
|
10290
10282
|
private composerFocusStore;
|
|
10291
10283
|
private composerStore;
|
|
@@ -11734,4 +11726,4 @@ declare const constants: {
|
|
|
11734
11726
|
};
|
|
11735
11727
|
};
|
|
11736
11728
|
|
|
11737
|
-
export { AST, ASTFuncall, AboveAverageRule, AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, ActivateNextSheetCommand, ActivatePaintFormatCommand, 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, CancelPaintFormatCommand, CancelledReason, Cell, CellData, CellErrorType, CellIsRule, CellPosition, CellValue, CellValueType, ChangeType, ChartCreationContext, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartType, ChartWithAxisDefinition, CleanClipBoardHighlightCommand, ClearCellCommand, ClearFormattingCommand, Client, ClientId, ClientJoinedMessage, ClientLeftMessage, ClientMovedMessage, ClientPosition, ClipboardCell, ClipboardCellData, ClipboardContent, ClipboardData, ClipboardFigureData, ClipboardMIMEType, ClipboardOperation, ClipboardOptions, ClipboardPasteOptions, ClipboardPasteTarget, Cloneable, CollaborationMessage, CollaborativeEvent, CollaborativeEventReceived, CollaborativeEventTypes, Color, ColorScaleMidPointThreshold, ColorScaleRule, ColorScaleThreshold, Command, CommandDispatcher, CommandHandler, CommandResult, CommandTypes, CommonPivotCoreDefinition, CompiledFormula, ComposerFocusType, ComputeFunction, ComputedTableStyle, ConditionalFormat, ConditionalFormatInternal, ConditionalFormatRule, 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, DataSet, DataValidationCriterion, DataValidationCriterionType, DataValidationDateCriterion, DataValidationRule, DataValidationRuleData, DatasetDesign, DatasetValues, DateCriterionValue, DateIsAfterCriterion, DateIsBeforeCriterion, DateIsBetweenCriterion, DateIsCriterion, DateIsNotBetweenCriterion, DateIsOnOrAfterCriterion, DateIsOnOrBeforeCriterion, DateIsValidCriterion, DebouncedFunction, DeleteCellCommand, DeleteContentCommand, DeleteFigureCommand, DeleteSheetCommand, Dependencies, Dimension, 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, 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, Matrix, Maybe, MenuMouseEvent, Merge, Model, MoveColumnsRowsCommand, MoveConditionalFormatCommand, MoveRangeCommand, MoveSheetCommand, MoveViewportDownCommand, MoveViewportToCellCommand, MoveViewportUpCommand, NewLocalStateUpdateEvent, NotContainsTextRule, NotificationType, NumberCell, Offset, OperationSequenceNode, OrderedLayers, PLAIN_TEXT_FORMAT, PaneDivision, PasteCommand, PasteFromOSClipboardCommand, Pivot, PivotCoreDefinition, PivotCoreDimension, PivotCoreMeasure, PivotDimension$1 as PivotDimension, PivotDomain, PivotEmptyCell, PivotField, PivotFields, PivotHeaderCell, PivotMeasure, PivotMeasureHeaderCell, PivotNode, PivotRuntimeDefinition, 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, RevisionsDroppedEvent, Row, SPREADSHEET_DIMENSIONS, ScrollDirection$1 as ScrollDirection, SelectFigureCommand, Selection, SelectionStep, SetBorderCommand, 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, TableConfig, 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, invalidateDependenciesCommands, invalidateEvaluationCommands, isCoreCommand, isHeadersDependant, isMatrix, isPositionDependent, isRangeDependant, isSheetDependent, isTargetDependent, isZoneDependent, iterateAstNodes, links, load, notContainsBlanksRule, notContainsErrorsRule, parse, parseTokens, readonlyAllowedCommands, registries, setDefaultSheetViewSize, setTranslationMethod, stores, tokenColors, tokenize };
|
|
11729
|
+
export { AST, ASTFuncall, AboveAverageRule, AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, ActivateNextSheetCommand, ActivatePaintFormatCommand, 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, CancelPaintFormatCommand, CancelledReason, Cell, CellData, CellErrorType, CellIsRule, CellPosition, CellValue, CellValueType, ChangeType, ChartCreationContext, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartType, ChartWithAxisDefinition, CleanClipBoardHighlightCommand, ClearCellCommand, ClearFormattingCommand, Client, ClientId, ClientJoinedMessage, ClientLeftMessage, ClientMovedMessage, ClientPosition, ClipboardCell, ClipboardCellData, ClipboardContent, ClipboardData, ClipboardFigureData, ClipboardMIMEType, ClipboardOperation, ClipboardOptions, ClipboardPasteOptions, ClipboardPasteTarget, Cloneable, CollaborationMessage, CollaborativeEvent, CollaborativeEventReceived, CollaborativeEventTypes, Color, ColorScaleMidPointThreshold, ColorScaleRule, ColorScaleThreshold, Command, CommandDispatcher, CommandHandler, CommandResult, CommandTypes, CommonPivotCoreDefinition, CompiledFormula, ComposerFocusType, ComputeFunction, ComputedTableStyle, ConditionalFormat, ConditionalFormatInternal, ConditionalFormatRule, 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, DataSet, DataValidationCriterion, DataValidationCriterionType, DataValidationDateCriterion, DataValidationRule, DataValidationRuleData, DatasetDesign, DatasetValues, DateCriterionValue, DateIsAfterCriterion, DateIsBeforeCriterion, DateIsBetweenCriterion, DateIsCriterion, DateIsNotBetweenCriterion, DateIsOnOrAfterCriterion, DateIsOnOrBeforeCriterion, DateIsValidCriterion, DebouncedFunction, DeleteCellCommand, DeleteContentCommand, DeleteFigureCommand, DeleteSheetCommand, Dependencies, Dimension, 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, 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, Matrix, Maybe, MenuMouseEvent, Merge, Model, MoveColumnsRowsCommand, MoveConditionalFormatCommand, MoveRangeCommand, MoveSheetCommand, MoveViewportDownCommand, MoveViewportToCellCommand, MoveViewportUpCommand, NewLocalStateUpdateEvent, NotContainsTextRule, NotificationType, NumberCell, Offset, OperationSequenceNode, OrderedLayers, PLAIN_TEXT_FORMAT, PaneDivision, PasteCommand, PasteFromOSClipboardCommand, Pivot, PivotCoreDefinition, PivotCoreDimension, PivotCoreMeasure, PivotDimension$1 as PivotDimension, PivotDomain, PivotEmptyCell, PivotField, PivotFields, PivotHeaderCell, PivotMeasure, PivotMeasureHeaderCell, PivotNode, PivotRuntimeDefinition, 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, RevisionsDroppedEvent, Row, SPREADSHEET_DIMENSIONS, ScrollDirection$1 as ScrollDirection, SelectFigureCommand, Selection, SelectionStep, SetBorderCommand, 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, 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, invalidateDependenciesCommands, invalidateEvaluationCommands, isCoreCommand, isHeadersDependant, isMatrix, isPositionDependent, isRangeDependant, isSheetDependent, isTargetDependent, isZoneDependent, iterateAstNodes, links, load, notContainsBlanksRule, notContainsErrorsRule, parse, parseTokens, readonlyAllowedCommands, registries, setDefaultSheetViewSize, setTranslationMethod, stores, tokenColors, tokenize };
|