@odoo/o-spreadsheet 17.4.0-alpha.1 → 17.4.0-alpha.2
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 +340 -262
- package/dist/o-spreadsheet.d.ts +78 -62
- package/dist/o-spreadsheet.esm.js +340 -262
- package/dist/o-spreadsheet.iife.js +340 -262
- package/dist/o-spreadsheet.iife.min.js +375 -371
- package/dist/o_spreadsheet.xml +33 -23
- package/package.json +1 -1
package/dist/o-spreadsheet.d.ts
CHANGED
|
@@ -562,25 +562,31 @@ interface PivotTableData {
|
|
|
562
562
|
cols: PivotTableColumn[][];
|
|
563
563
|
rows: PivotTableRow[];
|
|
564
564
|
measures: string[];
|
|
565
|
-
rowTitle?: string;
|
|
566
565
|
}
|
|
567
|
-
interface
|
|
568
|
-
|
|
569
|
-
domain
|
|
570
|
-
|
|
571
|
-
|
|
566
|
+
interface PivotHeaderCell {
|
|
567
|
+
type: "HEADER";
|
|
568
|
+
domain: PivotDomain;
|
|
569
|
+
}
|
|
570
|
+
interface PivotValueCell {
|
|
571
|
+
type: "VALUE";
|
|
572
|
+
domain: PivotDomain;
|
|
573
|
+
measure: string;
|
|
574
|
+
}
|
|
575
|
+
interface PivotEmptyCell {
|
|
576
|
+
type: "EMPTY";
|
|
572
577
|
}
|
|
578
|
+
type PivotTableCell = PivotHeaderCell | PivotValueCell | PivotEmptyCell;
|
|
573
579
|
interface PivotTimeAdapter<T> {
|
|
574
580
|
normalizeFunctionValue: (value: string) => T;
|
|
575
581
|
formatValue: (normalizedValue: T, locale?: Locale) => string;
|
|
576
582
|
getFormat: (locale?: Locale) => Format | undefined;
|
|
577
583
|
toCellValue: (normalizedValue: T) => CellValue;
|
|
578
584
|
}
|
|
579
|
-
interface
|
|
585
|
+
interface PivotNode {
|
|
580
586
|
field: string;
|
|
581
|
-
value: string;
|
|
587
|
+
value: string | number | boolean;
|
|
582
588
|
}
|
|
583
|
-
type
|
|
589
|
+
type PivotDomain = PivotNode[];
|
|
584
590
|
|
|
585
591
|
interface Table {
|
|
586
592
|
readonly id: TableId;
|
|
@@ -4194,12 +4200,11 @@ declare class SpreadsheetPivotTable {
|
|
|
4194
4200
|
readonly columns: PivotTableColumn[][];
|
|
4195
4201
|
readonly rows: PivotTableRow[];
|
|
4196
4202
|
readonly measures: string[];
|
|
4197
|
-
readonly rowTitle?: string;
|
|
4198
4203
|
readonly maxIndent: number;
|
|
4199
4204
|
readonly pivotCells: {
|
|
4200
4205
|
[key: string]: PivotTableCell[][];
|
|
4201
4206
|
};
|
|
4202
|
-
constructor(columns: PivotTableColumn[][], rows: PivotTableRow[], measures: string[]
|
|
4207
|
+
constructor(columns: PivotTableColumn[][], rows: PivotTableRow[], measures: string[]);
|
|
4203
4208
|
/**
|
|
4204
4209
|
* Get the number of columns leafs (i.e. the number of the last row of columns)
|
|
4205
4210
|
*/
|
|
@@ -4215,7 +4220,6 @@ declare class SpreadsheetPivotTable {
|
|
|
4215
4220
|
cols: PivotTableColumn[][];
|
|
4216
4221
|
rows: PivotTableRow[];
|
|
4217
4222
|
measures: string[];
|
|
4218
|
-
rowTitle: string | undefined;
|
|
4219
4223
|
};
|
|
4220
4224
|
}
|
|
4221
4225
|
|
|
@@ -4229,8 +4233,9 @@ interface Pivot<T = PivotRuntimeDefinition> {
|
|
|
4229
4233
|
isValid(): boolean;
|
|
4230
4234
|
getTableStructure(): SpreadsheetPivotTable;
|
|
4231
4235
|
getFields(): PivotFields | undefined;
|
|
4232
|
-
getPivotHeaderValueAndFormat(domain:
|
|
4233
|
-
getPivotCellValueAndFormat(measure: string, domain:
|
|
4236
|
+
getPivotHeaderValueAndFormat(domain: PivotDomain): FPayload;
|
|
4237
|
+
getPivotCellValueAndFormat(measure: string, domain: PivotDomain): FPayload;
|
|
4238
|
+
getPivotMeasureValue(measure: string, domain: PivotDomain): FPayload;
|
|
4234
4239
|
getMeasure: (name: string) => PivotMeasure;
|
|
4235
4240
|
assertIsValid({ throwOnError }: {
|
|
4236
4241
|
throwOnError: boolean;
|
|
@@ -4272,7 +4277,7 @@ declare class PivotUIPlugin extends UIPlugin {
|
|
|
4272
4277
|
* If the cell is the result of PIVOT, the result is the domain of the cell
|
|
4273
4278
|
* as if it was the individual pivot formula
|
|
4274
4279
|
*/
|
|
4275
|
-
getPivotDomainArgsFromPosition(position: CellPosition):
|
|
4280
|
+
getPivotDomainArgsFromPosition(position: CellPosition): PivotDomain | undefined;
|
|
4276
4281
|
getPivot(pivotId: UID): Pivot<PivotRuntimeDefinition>;
|
|
4277
4282
|
isPivotUnused(pivotId: UID): boolean;
|
|
4278
4283
|
/**
|
|
@@ -4280,7 +4285,7 @@ declare class PivotUIPlugin extends UIPlugin {
|
|
|
4280
4285
|
* a pivot function are valid according to the pivot definition.
|
|
4281
4286
|
* e.g. =PIVOT.VALUE(1,"revenue","country_id",...,"create_date:month",...,"source_id",...)
|
|
4282
4287
|
*/
|
|
4283
|
-
areDomainArgsFieldsValid(pivotId: UID,
|
|
4288
|
+
areDomainArgsFieldsValid(pivotId: UID, domain: PivotDomain): boolean;
|
|
4284
4289
|
/**
|
|
4285
4290
|
* Refresh the cache of a pivot
|
|
4286
4291
|
*/
|
|
@@ -7246,15 +7251,18 @@ interface ClosedSidePanel {
|
|
|
7246
7251
|
}
|
|
7247
7252
|
type SidePanelState = OpenSidePanel | ClosedSidePanel;
|
|
7248
7253
|
declare class SidePanelStore extends SpreadsheetStore {
|
|
7249
|
-
mutators: readonly ["open", "toggle", "close"];
|
|
7254
|
+
mutators: readonly ["open", "toggle", "close", "changePanelSize", "resetPanelSize"];
|
|
7250
7255
|
initialPanelProps: SidePanelProps;
|
|
7251
7256
|
componentTag: string;
|
|
7257
|
+
panelSize: number;
|
|
7252
7258
|
get isOpen(): boolean;
|
|
7253
7259
|
get panelProps(): SidePanelProps;
|
|
7254
7260
|
get panelKey(): string | undefined;
|
|
7255
7261
|
open(componentTag: string, panelProps?: SidePanelProps): void;
|
|
7256
7262
|
toggle(componentTag: string, panelProps: SidePanelProps): void;
|
|
7257
7263
|
close(): void;
|
|
7264
|
+
changePanelSize(size: number, spreadsheetElWidth: number): void;
|
|
7265
|
+
resetPanelSize(): void;
|
|
7258
7266
|
private computeState;
|
|
7259
7267
|
}
|
|
7260
7268
|
|
|
@@ -9065,55 +9073,14 @@ declare function makePivotFormula(formula: "PIVOT.VALUE" | "PIVOT.HEADER", args:
|
|
|
9065
9073
|
*
|
|
9066
9074
|
*/
|
|
9067
9075
|
declare function getMaxObjectId(o: object): number;
|
|
9068
|
-
/**
|
|
9069
|
-
* Get the first Pivot function description of the given formula.
|
|
9070
|
-
*/
|
|
9071
|
-
declare function getFirstPivotFunction(tokens: Token[]): {
|
|
9072
|
-
functionName: string;
|
|
9073
|
-
args: AST[];
|
|
9074
|
-
};
|
|
9075
|
-
/**
|
|
9076
|
-
* Parse a spreadsheet formula and detect the number of PIVOT functions that are
|
|
9077
|
-
* present in the given formula.
|
|
9078
|
-
*/
|
|
9079
|
-
declare function getNumberOfPivotFunctions(tokens: Token[]): number;
|
|
9080
9076
|
/**
|
|
9081
9077
|
* Parse a dimension string into a pivot dimension definition.
|
|
9082
9078
|
* e.g "create_date:month" => { name: "create_date", granularity: "month" }
|
|
9083
9079
|
*/
|
|
9084
9080
|
declare function parseDimension(dimension: string): PivotCoreDimension;
|
|
9085
9081
|
declare function isDateField(field: PivotField): boolean;
|
|
9086
|
-
|
|
9087
|
-
|
|
9088
|
-
* to insert a field name string in a formula.
|
|
9089
|
-
*/
|
|
9090
|
-
declare function makeFieldProposal(field: PivotField, granularity?: Granularity): {
|
|
9091
|
-
text: string;
|
|
9092
|
-
description: string;
|
|
9093
|
-
htmlContent: {
|
|
9094
|
-
value: string;
|
|
9095
|
-
color: "#00a82d";
|
|
9096
|
-
}[];
|
|
9097
|
-
fuzzySearchKey: string;
|
|
9098
|
-
};
|
|
9099
|
-
/**
|
|
9100
|
-
* Perform the autocomplete of the composer by inserting the value
|
|
9101
|
-
* at the cursor position, replacing the current token if necessary.
|
|
9102
|
-
* Must be bound to the autocomplete provider.
|
|
9103
|
-
*/
|
|
9104
|
-
declare function insertTokenAfterArgSeparator(this: {
|
|
9105
|
-
composer: ComposerStore;
|
|
9106
|
-
}, tokenAtCursor: EnrichedToken, value: string): void;
|
|
9107
|
-
/**
|
|
9108
|
-
* Perform the autocomplete of the composer by inserting the value
|
|
9109
|
-
* at the cursor position, replacing the current token if necessary.
|
|
9110
|
-
* Must be bound to the autocomplete provider.
|
|
9111
|
-
* @param {EnrichedToken} tokenAtCursor
|
|
9112
|
-
* @param {string} value
|
|
9113
|
-
*/
|
|
9114
|
-
declare function insertTokenAfterLeftParenthesis(this: {
|
|
9115
|
-
composer: ComposerStore;
|
|
9116
|
-
}, tokenAtCursor: EnrichedToken, value: string): void;
|
|
9082
|
+
declare function toPivotDomain(domainStr: string[]): PivotDomain;
|
|
9083
|
+
declare function flatPivotDomain(domain: PivotDomain): (string | number | boolean)[];
|
|
9117
9084
|
|
|
9118
9085
|
interface Props$c {
|
|
9119
9086
|
definition: PivotRuntimeDefinition;
|
|
@@ -9232,6 +9199,50 @@ declare function getDefaultChartJsRuntime(chart: AbstractChart, labels: string[]
|
|
|
9232
9199
|
/** See https://www.chartjs.org/docs/latest/charts/area.html#filling-modes */
|
|
9233
9200
|
declare function getFillingMode(index: number): "origin" | number;
|
|
9234
9201
|
|
|
9202
|
+
/**
|
|
9203
|
+
* Create a proposal entry for the compose autowcomplete
|
|
9204
|
+
* to insert a field name string in a formula.
|
|
9205
|
+
*/
|
|
9206
|
+
declare function makeFieldProposal(field: PivotField, granularity?: Granularity): {
|
|
9207
|
+
text: string;
|
|
9208
|
+
description: string;
|
|
9209
|
+
htmlContent: {
|
|
9210
|
+
value: string;
|
|
9211
|
+
color: "#00a82d";
|
|
9212
|
+
}[];
|
|
9213
|
+
fuzzySearchKey: string;
|
|
9214
|
+
};
|
|
9215
|
+
/**
|
|
9216
|
+
* Perform the autocomplete of the composer by inserting the value
|
|
9217
|
+
* at the cursor position, replacing the current token if necessary.
|
|
9218
|
+
* Must be bound to the autocomplete provider.
|
|
9219
|
+
*/
|
|
9220
|
+
declare function insertTokenAfterArgSeparator(this: {
|
|
9221
|
+
composer: ComposerStore;
|
|
9222
|
+
}, tokenAtCursor: EnrichedToken, value: string): void;
|
|
9223
|
+
/**
|
|
9224
|
+
* Perform the autocomplete of the composer by inserting the value
|
|
9225
|
+
* at the cursor position, replacing the current token if necessary.
|
|
9226
|
+
* Must be bound to the autocomplete provider.
|
|
9227
|
+
* @param {EnrichedToken} tokenAtCursor
|
|
9228
|
+
* @param {string} value
|
|
9229
|
+
*/
|
|
9230
|
+
declare function insertTokenAfterLeftParenthesis(this: {
|
|
9231
|
+
composer: ComposerStore;
|
|
9232
|
+
}, tokenAtCursor: EnrichedToken, value: string): void;
|
|
9233
|
+
/**
|
|
9234
|
+
* Get the first Pivot function description of the given formula.
|
|
9235
|
+
*/
|
|
9236
|
+
declare function getFirstPivotFunction(tokens: Token[]): {
|
|
9237
|
+
functionName: string;
|
|
9238
|
+
args: AST[];
|
|
9239
|
+
};
|
|
9240
|
+
/**
|
|
9241
|
+
* Parse a spreadsheet formula and detect the number of PIVOT functions that are
|
|
9242
|
+
* present in the given formula.
|
|
9243
|
+
*/
|
|
9244
|
+
declare function getNumberOfPivotFunctions(tokens: Token[]): number;
|
|
9245
|
+
|
|
9235
9246
|
declare function getPivotHighlights(getters: Getters, pivotId: UID): Highlight$1[];
|
|
9236
9247
|
|
|
9237
9248
|
declare function pivotTimeAdapter(granularity: Granularity): PivotTimeAdapter<string | number | false>;
|
|
@@ -9630,10 +9641,12 @@ declare class SidePanel extends Component<{}, SpreadsheetChildEnv> {
|
|
|
9630
9641
|
static template: string;
|
|
9631
9642
|
static props: {};
|
|
9632
9643
|
sidePanelStore: Store<SidePanelStore>;
|
|
9644
|
+
spreadsheetRect: Rect;
|
|
9633
9645
|
setup(): void;
|
|
9634
9646
|
get panel(): SidePanelContent;
|
|
9635
9647
|
close(): void;
|
|
9636
9648
|
getTitle(): string;
|
|
9649
|
+
startHandleDrag(ev: MouseEvent): void;
|
|
9637
9650
|
}
|
|
9638
9651
|
|
|
9639
9652
|
declare const sortRange: ActionSpec;
|
|
@@ -10142,13 +10155,14 @@ declare class Spreadsheet extends Component<SpreadsheetProps, SpreadsheetChildEn
|
|
|
10142
10155
|
spreadsheetRef: {
|
|
10143
10156
|
el: HTMLElement | null;
|
|
10144
10157
|
};
|
|
10158
|
+
spreadsheetRect: Rect;
|
|
10145
10159
|
private _focusGrid?;
|
|
10146
10160
|
private keyDownMapping;
|
|
10147
10161
|
private isViewportTooSmall;
|
|
10148
10162
|
private notificationStore;
|
|
10149
10163
|
private composerFocusStore;
|
|
10150
10164
|
get model(): Model;
|
|
10151
|
-
getStyle():
|
|
10165
|
+
getStyle(): string;
|
|
10152
10166
|
setup(): void;
|
|
10153
10167
|
private bindModelEvents;
|
|
10154
10168
|
private unbindModelEvents;
|
|
@@ -11187,6 +11201,8 @@ declare const helpers: {
|
|
|
11187
11201
|
insertTokenAfterLeftParenthesis: typeof insertTokenAfterLeftParenthesis;
|
|
11188
11202
|
mergeContiguousZones: typeof mergeContiguousZones;
|
|
11189
11203
|
getPivotHighlights: typeof getPivotHighlights;
|
|
11204
|
+
toPivotDomain: typeof toPivotDomain;
|
|
11205
|
+
flatPivotDomain: typeof flatPivotDomain;
|
|
11190
11206
|
pivotTimeAdapter: typeof pivotTimeAdapter;
|
|
11191
11207
|
UNDO_REDO_PIVOT_COMMANDS: string[];
|
|
11192
11208
|
};
|
|
@@ -11275,4 +11291,4 @@ declare const constants: {
|
|
|
11275
11291
|
};
|
|
11276
11292
|
};
|
|
11277
11293
|
|
|
11278
|
-
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, 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,
|
|
11294
|
+
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, 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, 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, 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, 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, PivotNode, PivotRuntimeDefinition, PivotTableCell, PivotTableColumn, PivotTableData, PivotTableRow, PivotTimeAdapter, 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, 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, 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 };
|