@odoo/o-spreadsheet 17.2.1 → 17.3.0-alpha.1
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 +461 -174
- package/dist/o-spreadsheet.d.ts +58 -20
- package/dist/o-spreadsheet.esm.js +461 -174
- package/dist/o-spreadsheet.iife.js +461 -174
- package/dist/o-spreadsheet.iife.min.js +269 -264
- package/dist/o_spreadsheet.xml +28 -6
- package/package.json +2 -2
package/dist/o-spreadsheet.d.ts
CHANGED
|
@@ -408,6 +408,16 @@ interface Table {
|
|
|
408
408
|
readonly filters: Filter[];
|
|
409
409
|
readonly config: TableConfig;
|
|
410
410
|
}
|
|
411
|
+
interface StaticTable extends Table {
|
|
412
|
+
readonly type: "static" | "forceStatic";
|
|
413
|
+
}
|
|
414
|
+
interface DynamicTable extends Omit<Table, "filters"> {
|
|
415
|
+
readonly type: "dynamic";
|
|
416
|
+
}
|
|
417
|
+
type CoreTable = StaticTable | DynamicTable;
|
|
418
|
+
type CoreTableType = Extract<CoreTable, {
|
|
419
|
+
type: string;
|
|
420
|
+
}>["type"];
|
|
411
421
|
interface Filter {
|
|
412
422
|
readonly id: UID;
|
|
413
423
|
readonly rangeWithHeaders: Range;
|
|
@@ -682,6 +692,7 @@ interface CreateTableCommand extends RangesDependentCommand {
|
|
|
682
692
|
type: "CREATE_TABLE";
|
|
683
693
|
sheetId: UID;
|
|
684
694
|
config?: TableConfig;
|
|
695
|
+
tableType: CoreTableType;
|
|
685
696
|
}
|
|
686
697
|
interface RemoveTableCommand extends TargetDependentCommand {
|
|
687
698
|
type: "REMOVE_TABLE";
|
|
@@ -691,6 +702,7 @@ interface UpdateTableCommand {
|
|
|
691
702
|
zone: Zone;
|
|
692
703
|
sheetId: UID;
|
|
693
704
|
newTableRange?: RangeData;
|
|
705
|
+
tableType?: CoreTableType;
|
|
694
706
|
config?: Partial<TableConfig>;
|
|
695
707
|
}
|
|
696
708
|
interface AutofillTableCommand extends PositionDependentCommand {
|
|
@@ -3028,24 +3040,17 @@ declare class SheetPlugin extends CorePlugin<SheetState> implements SheetState {
|
|
|
3028
3040
|
}
|
|
3029
3041
|
|
|
3030
3042
|
interface TableState {
|
|
3031
|
-
tables: Record<UID, Record<TableId,
|
|
3043
|
+
tables: Record<UID, Record<TableId, CoreTable | undefined>>;
|
|
3032
3044
|
}
|
|
3033
3045
|
declare class TablePlugin extends CorePlugin<TableState> implements TableState {
|
|
3034
|
-
static getters: readonly ["
|
|
3035
|
-
readonly tables: Record<UID, Record<TableId,
|
|
3046
|
+
static getters: readonly ["getCoreTable", "getCoreTables"];
|
|
3047
|
+
readonly tables: Record<UID, Record<TableId, CoreTable | undefined>>;
|
|
3036
3048
|
adaptRanges(applyChange: ApplyRangeChange, sheetId?: UID): void;
|
|
3037
3049
|
allowDispatch(cmd: CoreCommand): CommandResult | CommandResult[];
|
|
3038
3050
|
handle(cmd: CoreCommand): void;
|
|
3039
|
-
|
|
3040
|
-
|
|
3041
|
-
|
|
3042
|
-
getFilterId(position: CellPosition): FilterId | undefined;
|
|
3043
|
-
getTable({ sheetId, col, row }: CellPosition): Table | undefined;
|
|
3044
|
-
/** Get the filter tables that are fully inside the given zone */
|
|
3045
|
-
getTablesInZone(sheetId: UID, zone: Zone): Table[];
|
|
3046
|
-
getTablesOverlappingZones(sheetId: UID, zones: Zone[]): Table[];
|
|
3047
|
-
getFilterHeaders(sheetId: UID): Position$1[];
|
|
3048
|
-
isFilterHeader({ sheetId, col, row }: CellPosition): boolean;
|
|
3051
|
+
getCoreTables(sheetId: UID): CoreTable[];
|
|
3052
|
+
getCoreTable({ sheetId, col, row }: CellPosition): CoreTable | undefined;
|
|
3053
|
+
private getTablesOverlappingZones;
|
|
3049
3054
|
/** Extend a table down one row */
|
|
3050
3055
|
private extendTableDown;
|
|
3051
3056
|
/** Extend a table right one col */
|
|
@@ -3062,10 +3067,14 @@ declare class TablePlugin extends CorePlugin<TableState> implements TableState {
|
|
|
3062
3067
|
*
|
|
3063
3068
|
*/
|
|
3064
3069
|
private canUpdateCellCmdExtendTable;
|
|
3070
|
+
private getTableFromZone;
|
|
3065
3071
|
private checkUpdatedTableZoneIsValid;
|
|
3066
3072
|
private checkTableConfigUpdateIsValid;
|
|
3067
|
-
private
|
|
3073
|
+
private createStaticTable;
|
|
3074
|
+
private createDynamicTable;
|
|
3068
3075
|
private updateTable;
|
|
3076
|
+
private updateStaticTable;
|
|
3077
|
+
private updateDynamicTable;
|
|
3069
3078
|
/**
|
|
3070
3079
|
* Update the old config of a table with the new partial config from an UpdateTable command.
|
|
3071
3080
|
*
|
|
@@ -3074,8 +3083,8 @@ declare class TablePlugin extends CorePlugin<TableState> implements TableState {
|
|
|
3074
3083
|
*/
|
|
3075
3084
|
private updateTableConfig;
|
|
3076
3085
|
private createFilterFromZone;
|
|
3077
|
-
private
|
|
3078
|
-
private
|
|
3086
|
+
private copyStaticTableForSheet;
|
|
3087
|
+
private copyDynamicTableForSheet;
|
|
3079
3088
|
private applyRangeChangeOnTable;
|
|
3080
3089
|
import(data: WorkbookData): void;
|
|
3081
3090
|
export(data: WorkbookData): void;
|
|
@@ -3259,6 +3268,7 @@ interface ExcelHeaderData extends HeaderData {
|
|
|
3259
3268
|
interface TableData {
|
|
3260
3269
|
range: string;
|
|
3261
3270
|
config?: TableConfig;
|
|
3271
|
+
type?: CoreTableType;
|
|
3262
3272
|
}
|
|
3263
3273
|
interface DataValidationRuleData extends Omit<DataValidationRule, "ranges"> {
|
|
3264
3274
|
ranges: string[];
|
|
@@ -3708,6 +3718,35 @@ declare class EvaluationDataValidationPlugin extends UIPlugin {
|
|
|
3708
3718
|
private getEvaluatedCriterionValues;
|
|
3709
3719
|
}
|
|
3710
3720
|
|
|
3721
|
+
declare class DynamicTablesPlugin extends UIPlugin {
|
|
3722
|
+
static getters: readonly ["canCreateDynamicTableOnZones", "doesZonesContainFilter", "getFilter", "getFilters", "getTable", "getTables", "getTablesOverlappingZones", "getFilterId", "getFilterHeaders", "isFilterHeader"];
|
|
3723
|
+
tables: Record<UID, Table[]>;
|
|
3724
|
+
handle(cmd: Command): void;
|
|
3725
|
+
finalize(): void;
|
|
3726
|
+
private computeTables;
|
|
3727
|
+
getFilters(sheetId: UID): Filter[];
|
|
3728
|
+
getTables(sheetId: UID): Table[];
|
|
3729
|
+
getFilter(position: CellPosition): Filter | undefined;
|
|
3730
|
+
getFilterId(position: CellPosition): FilterId | undefined;
|
|
3731
|
+
getTable({ sheetId, col, row }: CellPosition): Table | undefined;
|
|
3732
|
+
getTablesOverlappingZones(sheetId: UID, zones: Zone[]): Table[];
|
|
3733
|
+
doesZonesContainFilter(sheetId: UID, zones: Zone[]): boolean;
|
|
3734
|
+
getFilterHeaders(sheetId: UID): CellPosition[];
|
|
3735
|
+
isFilterHeader({ sheetId, col, row }: CellPosition): boolean;
|
|
3736
|
+
/**
|
|
3737
|
+
* Check if we can create a dynamic table on the given zones.
|
|
3738
|
+
* - The zones must be continuous
|
|
3739
|
+
* - The union of the zones must be either:
|
|
3740
|
+
* - A single cell that contains an array formula
|
|
3741
|
+
* - All the spread cells of a single array formula
|
|
3742
|
+
*/
|
|
3743
|
+
canCreateDynamicTableOnZones(sheetId: UID, zones: Zone[]): boolean;
|
|
3744
|
+
private coreTableToTable;
|
|
3745
|
+
private getDynamicTableFilters;
|
|
3746
|
+
private getDynamicTableFilterId;
|
|
3747
|
+
exportForExcel(data: ExcelWorkbookData): void;
|
|
3748
|
+
}
|
|
3749
|
+
|
|
3711
3750
|
interface HeaderSizeState {
|
|
3712
3751
|
tallestCellInRow: Immutable<Record<UID, Array<CellWithSize | undefined>>>;
|
|
3713
3752
|
}
|
|
@@ -4577,7 +4616,7 @@ type CoreGetters = PluginGetters<typeof SheetPlugin> & PluginGetters<typeof Head
|
|
|
4577
4616
|
type Getters = {
|
|
4578
4617
|
isReadonly: () => boolean;
|
|
4579
4618
|
isDashboard: () => boolean;
|
|
4580
|
-
} & CoreGetters & PluginGetters<typeof AutofillPlugin> & PluginGetters<typeof AutomaticSumPlugin> & PluginGetters<typeof HistoryPlugin> & PluginGetters<typeof ClipboardPlugin> & PluginGetters<typeof EvaluationPlugin> & PluginGetters<typeof EvaluationChartPlugin> & PluginGetters<typeof EvaluationConditionalFormatPlugin> & PluginGetters<typeof FindAndReplacePlugin> & PluginGetters<typeof HeaderVisibilityUIPlugin> & PluginGetters<typeof CustomColorsPlugin> & PluginGetters<typeof AutomaticSumPlugin> & PluginGetters<typeof GridSelectionPlugin> & PluginGetters<typeof CollaborativePlugin> & PluginGetters<typeof SortPlugin> & PluginGetters<typeof UIOptionsPlugin> & PluginGetters<typeof SheetUIPlugin> & PluginGetters<typeof SheetViewPlugin> & PluginGetters<typeof FilterEvaluationPlugin> & PluginGetters<typeof SplitToColumnsPlugin> & PluginGetters<typeof HeaderSizeUIPlugin> & PluginGetters<typeof EvaluationDataValidationPlugin> & PluginGetters<typeof HeaderPositionsUIPlugin> & PluginGetters<typeof TableStylePlugin>;
|
|
4619
|
+
} & CoreGetters & PluginGetters<typeof AutofillPlugin> & PluginGetters<typeof AutomaticSumPlugin> & PluginGetters<typeof HistoryPlugin> & PluginGetters<typeof ClipboardPlugin> & PluginGetters<typeof EvaluationPlugin> & PluginGetters<typeof EvaluationChartPlugin> & PluginGetters<typeof EvaluationConditionalFormatPlugin> & PluginGetters<typeof FindAndReplacePlugin> & PluginGetters<typeof HeaderVisibilityUIPlugin> & PluginGetters<typeof CustomColorsPlugin> & PluginGetters<typeof AutomaticSumPlugin> & PluginGetters<typeof GridSelectionPlugin> & PluginGetters<typeof CollaborativePlugin> & PluginGetters<typeof SortPlugin> & PluginGetters<typeof UIOptionsPlugin> & PluginGetters<typeof SheetUIPlugin> & PluginGetters<typeof SheetViewPlugin> & PluginGetters<typeof FilterEvaluationPlugin> & PluginGetters<typeof SplitToColumnsPlugin> & PluginGetters<typeof HeaderSizeUIPlugin> & PluginGetters<typeof EvaluationDataValidationPlugin> & PluginGetters<typeof HeaderPositionsUIPlugin> & PluginGetters<typeof TableStylePlugin> & PluginGetters<typeof DynamicTablesPlugin>;
|
|
4581
4620
|
|
|
4582
4621
|
type ArgType = "ANY" | "BOOLEAN" | "NUMBER" | "STRING" | "DATE" | "RANGE" | "RANGE<BOOLEAN>" | "RANGE<NUMBER>" | "RANGE<DATE>" | "RANGE<STRING>" | "RANGE<ANY>" | "META";
|
|
4583
4622
|
interface ArgDefinition {
|
|
@@ -6647,7 +6686,7 @@ interface Props$z {
|
|
|
6647
6686
|
interface AssistantState {
|
|
6648
6687
|
allowCellSelectionBehind: boolean;
|
|
6649
6688
|
}
|
|
6650
|
-
declare class FunctionDescriptionProvider extends Component<Props$z
|
|
6689
|
+
declare class FunctionDescriptionProvider extends Component<Props$z> {
|
|
6651
6690
|
static template: string;
|
|
6652
6691
|
static props: {
|
|
6653
6692
|
functionName: StringConstructor;
|
|
@@ -6659,7 +6698,6 @@ declare class FunctionDescriptionProvider extends Component<Props$z, Spreadsheet
|
|
|
6659
6698
|
setup(): void;
|
|
6660
6699
|
getContext(): Props$z;
|
|
6661
6700
|
onMouseMove(): void;
|
|
6662
|
-
get formulaArgSeparator(): string;
|
|
6663
6701
|
}
|
|
6664
6702
|
|
|
6665
6703
|
type HtmlContent = {
|
|
@@ -10051,4 +10089,4 @@ declare const constants: {
|
|
|
10051
10089
|
HIGHLIGHT_COLOR: string;
|
|
10052
10090
|
};
|
|
10053
10091
|
|
|
10054
|
-
export { AST, ASTFuncall, AboveAverageRule, AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, ActivateNextSheetCommand, ActivatePaintFormatCommand, ActivatePreviousSheetCommand, ActivateSheetCommand, AddColumnsRowsCommand, AddConditionalFormatCommand, AddDataValidationCommand, AddFunctionDescription, AddMergeCommand, Alias, Align, AlphanumericIncrementModifier, AnchorZone, ApplyRangeChange, ApplyRangeChangeResult, Arg, ArgDefinition, ArgType, AutoFillCellCommand, AutofillAutoCommand, AutofillCellData, AutofillCommand, AutofillData, AutofillModifier, AutofillModifierImplementation, AutofillResult, AutofillSelectCommand, AutofillTableCommand, AutoresizeColumnsCommand, AutoresizeRowsCommand, 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, 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, CompiledFormula, ComputeFunction, ComputedTableStyle, ConditionalFormat, ConditionalFormatInternal, ConditionalFormatRule, ConditionalFormattingOperatorValues, ConsecutiveIndexes, ContainsTextRule, CopyCommand, CopyModifier, CopyPasteCellsAboveCommand, CopyPasteCellsOnLeftCommand, CoreCommand, CoreCommandDispatcher, CoreCommandTypes, CoreGetters, CorePlugin, CoreViewCommand, CoreViewCommandTypes, CreateChartCommand, CreateFigureCommand, CreateImageOverCommand, CreateRevisionOptions, CreateSheetCommand, CreateTableCommand, Currency, CustomFormulaCriterion, CutCommand, DEFAULT_LOCALE, DEFAULT_LOCALES, DIRECTION, DOMCoordinates, DOMDimension, DataSet, DataValidationCriterion, DataValidationCriterionType, DataValidationDateCriterion, DataValidationRule, DataValidationRuleData, DatasetValues, DateCriterionValue, DateIsAfterCriterion, DateIsBeforeCriterion, DateIsBetweenCriterion, DateIsCriterion, DateIsNotBetweenCriterion, DateIsOnOrAfterCriterion, DateIsOnOrBeforeCriterion, DateIsValidCriterion, DebouncedFunction, DeleteCellCommand, DeleteContentCommand, DeleteFigureCommand, DeleteSheetCommand, Dependencies, Dimension, Direction$1 as Direction, DispatchResult, DuplicateSheetCommand, EdgeScrollInfo, EditTextOptions, EmptyCell, EndsWithRule, EnrichedToken, EnsureRange, ErrorCell, EvalContext, EvaluateCellsCommand, EvaluatedCell, EvaluationError, ExcelCellData, ExcelChartDataset, ExcelChartDefinition, ExcelChartType, ExcelFigureSize, ExcelFilterData, ExcelHeaderData, ExcelSheetData, ExcelTableData, ExcelWorkbookData, ExpressionRule, FPayload, FPayloadNumber, Figure, FigureData, FigureSize, Filter, FilterId, FoldAllHeaderGroupsCommand, FoldHeaderGroupCommand, FoldHeaderGroupsInZoneCommand, Format, FormattedValue, FormulaCell, FormulaModifier, FormulaToExecute, FreezeColumnsCommand, FreezeRowsCommand, FunctionDescription, FunctionRegistry, GeneratorCell, Getters, GridRenderingContext, GroupHeadersCommand, HSLA, HeaderData, HeaderDimensions, HeaderGroup, HeaderIndex, HeadersDependentCommand, HideColumnsRowsCommand, HideSheetCommand, Highlight$1 as Highlight, HistoryChange, IconSet, IconSetRule, IconThreshold, Image, Immutable, Increment, IncrementModifier, InformationNotification, InsertCellCommand, 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, Pixel, PixelPosition, Position$1 as Position, PositionDependentCommand, PropsOf, RGBA, Range, RangeCompiledFormula, RangeData, RangePart, RangeProvider, RangesDependentCommand, Rect, RedoCommand, Ref, ReferenceDenormalizer, Registry, RemoteRevisionMessage, RemoteRevisionReceivedEvent, RemoveColumnsRowsCommand, RemoveConditionalFormatCommand, RemoveDataValidationCommand, RemoveDuplicatesCommand, RemoveMergeCommand, RemoveTableCommand, RenameSheetCommand, RenderCanvasCommand, RepeatPasteCommand, ReplaceSearchCommand, RequestRedoCommand, RequestUndoCommand, ResizeColumnsRowsCommand, ResizeDirection, ResizeViewportCommand, Revision, RevisionAcknowledgedEvent, RevisionData, RevisionRedone, RevisionRedoneMessage, RevisionUndone, RevisionUndoneMessage, RevisionsDroppedEvent, Row, SPREADSHEET_DIMENSIONS, ScrollDirection$1 as ScrollDirection, SelectFigureCommand, Selection, SelectionStep, SetBorderCommand, SetColorCommand, SetDecimalCommand, SetDecimalStep, SetFormattingCommand, SetGridLinesVisibilityCommand, SetViewportOffsetCommand, SetZoneBordersCommand, Sheet, SheetDOMScrollInfo, SheetData, SheetDependentCommand, SheetScrollInfo, ShowFormulaCommand, ShowSheetCommand, SingleColorRule, SingleColorRules, SnapshotEvent, SortCommand, SortDirection, SortOptions, SplitTextIntoColumnsCommand, Spreadsheet, SpreadsheetChildEnv, SpreadsheetEnv, StartChangeHighlightCommand, StartCommand, StoreConstructor, StoreParams, Style, SumSelectionCommand, Table, TableConfig, TableData, TableElementStyle, TableId, TableStyle, TargetDependentCommand, TextCell, TextContainsCriterion, TextIsCriterion, TextIsEmailCriterion, TextIsLinkCriterion, TextNotContainsCriterion, TextRule, ThresholdType, TimePeriodRule, Token, Tooltip, Top10Rule, Transformation, TransformationFactory, TransportService, TrimWhitespaceCommand, UID, UIPlugin, UnGroupHeadersCommand, UnboundedZone, UndoCommand, UnexpectedRevisionIdEvent, UnfoldAllHeaderGroupsCommand, UnfoldHeaderGroupCommand, UnfoldHeaderGroupsInZoneCommand, UnfreezeColumnsCommand, UnfreezeColumnsRowsCommand, UnfreezeRowsCommand, UnhideColumnsRowsCommand, UpdateCellCommand, UpdateCellData, UpdateCellPositionCommand, UpdateChartCommand, UpdateFigureCommand, UpdateFilterCommand, UpdateLocaleCommand, 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, 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 };
|
|
10092
|
+
export { AST, ASTFuncall, AboveAverageRule, AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, ActivateNextSheetCommand, ActivatePaintFormatCommand, ActivatePreviousSheetCommand, ActivateSheetCommand, AddColumnsRowsCommand, AddConditionalFormatCommand, AddDataValidationCommand, AddFunctionDescription, AddMergeCommand, Alias, Align, AlphanumericIncrementModifier, AnchorZone, ApplyRangeChange, ApplyRangeChangeResult, Arg, ArgDefinition, ArgType, AutoFillCellCommand, AutofillAutoCommand, AutofillCellData, AutofillCommand, AutofillData, AutofillModifier, AutofillModifierImplementation, AutofillResult, AutofillSelectCommand, AutofillTableCommand, AutoresizeColumnsCommand, AutoresizeRowsCommand, 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, 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, CompiledFormula, 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, Currency, CustomFormulaCriterion, CutCommand, DEFAULT_LOCALE, DEFAULT_LOCALES, DIRECTION, DOMCoordinates, DOMDimension, DataSet, DataValidationCriterion, DataValidationCriterionType, DataValidationDateCriterion, DataValidationRule, DataValidationRuleData, DatasetValues, DateCriterionValue, DateIsAfterCriterion, DateIsBeforeCriterion, DateIsBetweenCriterion, DateIsCriterion, DateIsNotBetweenCriterion, DateIsOnOrAfterCriterion, DateIsOnOrBeforeCriterion, DateIsValidCriterion, DebouncedFunction, DeleteCellCommand, DeleteContentCommand, DeleteFigureCommand, DeleteSheetCommand, Dependencies, Dimension, Direction$1 as Direction, DispatchResult, DuplicateSheetCommand, DynamicTable, EdgeScrollInfo, EditTextOptions, EmptyCell, EndsWithRule, EnrichedToken, EnsureRange, ErrorCell, EvalContext, EvaluateCellsCommand, EvaluatedCell, EvaluationError, ExcelCellData, ExcelChartDataset, ExcelChartDefinition, ExcelChartType, ExcelFigureSize, ExcelFilterData, ExcelHeaderData, ExcelSheetData, ExcelTableData, ExcelWorkbookData, ExpressionRule, FPayload, FPayloadNumber, Figure, FigureData, FigureSize, Filter, FilterId, FoldAllHeaderGroupsCommand, FoldHeaderGroupCommand, FoldHeaderGroupsInZoneCommand, Format, FormattedValue, FormulaCell, FormulaModifier, FormulaToExecute, FreezeColumnsCommand, FreezeRowsCommand, FunctionDescription, FunctionRegistry, GeneratorCell, Getters, GridRenderingContext, GroupHeadersCommand, HSLA, HeaderData, HeaderDimensions, HeaderGroup, HeaderIndex, HeadersDependentCommand, HideColumnsRowsCommand, HideSheetCommand, Highlight$1 as Highlight, HistoryChange, IconSet, IconSetRule, IconThreshold, Image, Immutable, Increment, IncrementModifier, InformationNotification, InsertCellCommand, 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, Pixel, PixelPosition, Position$1 as Position, PositionDependentCommand, PropsOf, RGBA, Range, RangeCompiledFormula, RangeData, RangePart, RangeProvider, RangesDependentCommand, Rect, RedoCommand, Ref, ReferenceDenormalizer, Registry, RemoteRevisionMessage, RemoteRevisionReceivedEvent, RemoveColumnsRowsCommand, RemoveConditionalFormatCommand, RemoveDataValidationCommand, RemoveDuplicatesCommand, RemoveMergeCommand, RemoveTableCommand, RenameSheetCommand, RenderCanvasCommand, RepeatPasteCommand, ReplaceSearchCommand, RequestRedoCommand, RequestUndoCommand, ResizeColumnsRowsCommand, ResizeDirection, ResizeViewportCommand, Revision, RevisionAcknowledgedEvent, RevisionData, RevisionRedone, RevisionRedoneMessage, RevisionUndone, RevisionUndoneMessage, RevisionsDroppedEvent, Row, SPREADSHEET_DIMENSIONS, ScrollDirection$1 as ScrollDirection, SelectFigureCommand, Selection, SelectionStep, SetBorderCommand, SetColorCommand, SetDecimalCommand, SetDecimalStep, SetFormattingCommand, SetGridLinesVisibilityCommand, SetViewportOffsetCommand, SetZoneBordersCommand, Sheet, SheetDOMScrollInfo, SheetData, SheetDependentCommand, SheetScrollInfo, ShowFormulaCommand, ShowSheetCommand, SingleColorRule, SingleColorRules, SnapshotEvent, SortCommand, SortDirection, SortOptions, SplitTextIntoColumnsCommand, Spreadsheet, SpreadsheetChildEnv, SpreadsheetEnv, StartChangeHighlightCommand, StartCommand, StaticTable, StoreConstructor, StoreParams, Style, SumSelectionCommand, Table, TableConfig, TableData, TableElementStyle, TableId, TableStyle, TargetDependentCommand, TextCell, TextContainsCriterion, TextIsCriterion, TextIsEmailCriterion, TextIsLinkCriterion, TextNotContainsCriterion, TextRule, ThresholdType, TimePeriodRule, Token, Tooltip, Top10Rule, Transformation, TransformationFactory, TransportService, TrimWhitespaceCommand, UID, UIPlugin, UnGroupHeadersCommand, UnboundedZone, UndoCommand, UnexpectedRevisionIdEvent, UnfoldAllHeaderGroupsCommand, UnfoldHeaderGroupCommand, UnfoldHeaderGroupsInZoneCommand, UnfreezeColumnsCommand, UnfreezeColumnsRowsCommand, UnfreezeRowsCommand, UnhideColumnsRowsCommand, UpdateCellCommand, UpdateCellData, UpdateCellPositionCommand, UpdateChartCommand, UpdateFigureCommand, UpdateFilterCommand, UpdateLocaleCommand, 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, 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 };
|