@odoo/o-spreadsheet 17.4.0-alpha.11 → 17.4.0-alpha.13
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 +756 -279
- package/dist/o-spreadsheet.d.ts +55 -27
- package/dist/o-spreadsheet.esm.js +756 -279
- package/dist/o-spreadsheet.iife.js +756 -279
- package/dist/o-spreadsheet.iife.min.js +345 -345
- package/dist/o_spreadsheet.xml +6 -6
- package/package.json +2 -2
- package/readme.md +2 -1
package/dist/o-spreadsheet.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ChartConfiguration } from 'chart.js';
|
|
1
|
+
import { ChartConfiguration, Chart } from 'chart.js';
|
|
2
2
|
import * as _odoo_owl from '@odoo/owl';
|
|
3
3
|
import { ComponentConstructor, Component } from '@odoo/owl';
|
|
4
4
|
|
|
@@ -603,12 +603,12 @@ interface PivotEmptyCell {
|
|
|
603
603
|
type PivotTableCell = PivotHeaderCell | PivotMeasureHeaderCell | PivotValueCell | PivotEmptyCell;
|
|
604
604
|
interface PivotTimeAdapterNotNull<T> {
|
|
605
605
|
normalizeFunctionValue: (value: Exclude<CellValue, null>) => T;
|
|
606
|
-
toValueAndFormat: (normalizedValue: T, locale?: Locale) =>
|
|
606
|
+
toValueAndFormat: (normalizedValue: T, locale?: Locale) => FunctionResultObject;
|
|
607
607
|
toFunctionValue: (normalizedValue: T) => string;
|
|
608
608
|
}
|
|
609
609
|
interface PivotTimeAdapter<T> {
|
|
610
610
|
normalizeFunctionValue: (value: CellValue) => T | null;
|
|
611
|
-
toValueAndFormat: (normalizedValue: T, locale?: Locale) =>
|
|
611
|
+
toValueAndFormat: (normalizedValue: T, locale?: Locale) => FunctionResultObject;
|
|
612
612
|
toFunctionValue: (normalizedValue: T) => string;
|
|
613
613
|
}
|
|
614
614
|
interface PivotNode {
|
|
@@ -1688,9 +1688,9 @@ interface Border$1 {
|
|
|
1688
1688
|
bottom?: BorderDescr;
|
|
1689
1689
|
right?: BorderDescr;
|
|
1690
1690
|
}
|
|
1691
|
-
type ReferenceDenormalizer = (range: Range, isMeta: boolean, functionName: string, paramNumber: number) =>
|
|
1692
|
-
type EnsureRange = (range: Range) => Matrix<
|
|
1693
|
-
type FormulaToExecute = (deps: Range[], refFn: ReferenceDenormalizer, range: EnsureRange, ctx: {}) => Matrix<
|
|
1691
|
+
type ReferenceDenormalizer = (range: Range, isMeta: boolean, functionName: string, paramNumber: number) => FunctionResultObject;
|
|
1692
|
+
type EnsureRange = (range: Range) => Matrix<FunctionResultObject>;
|
|
1693
|
+
type FormulaToExecute = (deps: Range[], refFn: ReferenceDenormalizer, range: EnsureRange, ctx: {}) => Matrix<FunctionResultObject> | FunctionResultObject;
|
|
1694
1694
|
interface CompiledFormula {
|
|
1695
1695
|
execute: FormulaToExecute;
|
|
1696
1696
|
tokens: Token[];
|
|
@@ -1700,16 +1700,16 @@ interface RangeCompiledFormula extends Omit<CompiledFormula, "dependencies"> {
|
|
|
1700
1700
|
dependencies: Range[];
|
|
1701
1701
|
}
|
|
1702
1702
|
type Matrix<T = unknown> = T[][];
|
|
1703
|
-
type
|
|
1703
|
+
type FunctionResultObject = {
|
|
1704
1704
|
value: CellValue;
|
|
1705
1705
|
format?: Format;
|
|
1706
1706
|
message?: string;
|
|
1707
1707
|
};
|
|
1708
|
-
type
|
|
1708
|
+
type FunctionResultNumber = {
|
|
1709
1709
|
value: number;
|
|
1710
1710
|
format?: string;
|
|
1711
1711
|
};
|
|
1712
|
-
type Arg = Maybe<
|
|
1712
|
+
type Arg = Maybe<FunctionResultObject> | Matrix<FunctionResultObject>;
|
|
1713
1713
|
declare function isMatrix(x: any): x is Matrix<any>;
|
|
1714
1714
|
interface ClipboardCell {
|
|
1715
1715
|
cell?: Cell;
|
|
@@ -1855,7 +1855,7 @@ type LocaleCode = string & Alias;
|
|
|
1855
1855
|
interface Locale {
|
|
1856
1856
|
name: string;
|
|
1857
1857
|
code: LocaleCode;
|
|
1858
|
-
thousandsSeparator
|
|
1858
|
+
thousandsSeparator?: string;
|
|
1859
1859
|
decimalSeparator: string;
|
|
1860
1860
|
dateFormat: string;
|
|
1861
1861
|
timeFormat: string;
|
|
@@ -1890,7 +1890,7 @@ interface FormulaCell extends CellAttributes {
|
|
|
1890
1890
|
readonly compiledFormula: RangeCompiledFormula;
|
|
1891
1891
|
}
|
|
1892
1892
|
type Cell = LiteralCell | FormulaCell;
|
|
1893
|
-
interface EvaluatedCellProperties extends
|
|
1893
|
+
interface EvaluatedCellProperties extends FunctionResultObject {
|
|
1894
1894
|
readonly format?: Format;
|
|
1895
1895
|
/**
|
|
1896
1896
|
* Cell value formatted based on the format
|
|
@@ -2606,6 +2606,10 @@ declare class BordersPlugin extends CorePlugin<BordersPluginState> implements Bo
|
|
|
2606
2606
|
* Get all the columns which contains at least a border
|
|
2607
2607
|
*/
|
|
2608
2608
|
private getColumnsWithBorders;
|
|
2609
|
+
/**
|
|
2610
|
+
* Get all the rows which contains at least a border
|
|
2611
|
+
*/
|
|
2612
|
+
private getRowsWithBorders;
|
|
2609
2613
|
/**
|
|
2610
2614
|
* Get the range of all the rows in the sheet
|
|
2611
2615
|
*/
|
|
@@ -4281,15 +4285,15 @@ interface Pivot<T = PivotRuntimeDefinition> {
|
|
|
4281
4285
|
isValid(): boolean;
|
|
4282
4286
|
getTableStructure(): SpreadsheetPivotTable;
|
|
4283
4287
|
getFields(): PivotFields;
|
|
4284
|
-
getPivotHeaderValueAndFormat(domain: PivotDomain):
|
|
4285
|
-
getPivotCellValueAndFormat(measure: string, domain: PivotDomain):
|
|
4286
|
-
getPivotMeasureValue(measure: string, domain: PivotDomain):
|
|
4288
|
+
getPivotHeaderValueAndFormat(domain: PivotDomain): FunctionResultObject;
|
|
4289
|
+
getPivotCellValueAndFormat(measure: string, domain: PivotDomain): FunctionResultObject;
|
|
4290
|
+
getPivotMeasureValue(measure: string, domain: PivotDomain): FunctionResultObject;
|
|
4287
4291
|
getMeasure: (name: string) => PivotMeasure;
|
|
4288
|
-
parseArgsToPivotDomain(args: Maybe<
|
|
4289
|
-
areDomainArgsFieldsValid(args: Maybe<
|
|
4292
|
+
parseArgsToPivotDomain(args: Maybe<FunctionResultObject>[]): PivotDomain;
|
|
4293
|
+
areDomainArgsFieldsValid(args: Maybe<FunctionResultObject>[]): boolean;
|
|
4290
4294
|
assertIsValid({ throwOnError }: {
|
|
4291
4295
|
throwOnError: boolean;
|
|
4292
|
-
}):
|
|
4296
|
+
}): FunctionResultObject | undefined;
|
|
4293
4297
|
getPossibleFieldValues(dimension: PivotDimension$1): {
|
|
4294
4298
|
value: string | boolean | number;
|
|
4295
4299
|
label: string;
|
|
@@ -5185,7 +5189,7 @@ interface ArgDefinition {
|
|
|
5185
5189
|
}
|
|
5186
5190
|
type ComputeFunction<R> = (this: EvalContext, ...args: Arg[]) => R;
|
|
5187
5191
|
interface AddFunctionDescription {
|
|
5188
|
-
compute: ComputeFunction<
|
|
5192
|
+
compute: ComputeFunction<FunctionResultObject | Matrix<FunctionResultObject> | CellValue | Matrix<CellValue>>;
|
|
5189
5193
|
description: string;
|
|
5190
5194
|
category?: string;
|
|
5191
5195
|
args: ArgDefinition[];
|
|
@@ -5420,6 +5424,22 @@ interface EdgeScrollInfo {
|
|
|
5420
5424
|
}
|
|
5421
5425
|
type ScrollDirection$1 = 1 | 0 | -1 | "reset";
|
|
5422
5426
|
|
|
5427
|
+
/**
|
|
5428
|
+
* State
|
|
5429
|
+
*
|
|
5430
|
+
* This file defines the basic types involved in maintaining the running state
|
|
5431
|
+
* of a o-spreadsheet.
|
|
5432
|
+
*
|
|
5433
|
+
* The most important exported values are:
|
|
5434
|
+
* - interface GridState: the internal type of the state managed by the model
|
|
5435
|
+
*/
|
|
5436
|
+
|
|
5437
|
+
declare global {
|
|
5438
|
+
interface Window {
|
|
5439
|
+
Chart: typeof Chart;
|
|
5440
|
+
}
|
|
5441
|
+
}
|
|
5442
|
+
|
|
5423
5443
|
/**
|
|
5424
5444
|
* RGBA to HEX representation (#RRGGBBAA).
|
|
5425
5445
|
*
|
|
@@ -5534,7 +5554,7 @@ declare function lazy<T>(fn: (() => T) | T): Lazy<T>;
|
|
|
5534
5554
|
/**
|
|
5535
5555
|
* Compares two objects.
|
|
5536
5556
|
*/
|
|
5537
|
-
declare function deepEquals(o1: any, o2: any
|
|
5557
|
+
declare function deepEquals(o1: any, o2: any): boolean;
|
|
5538
5558
|
|
|
5539
5559
|
interface ConstructorArgs {
|
|
5540
5560
|
readonly zone: Readonly<Zone | UnboundedZone>;
|
|
@@ -6255,6 +6275,7 @@ interface TopbarComponent {
|
|
|
6255
6275
|
id: UID;
|
|
6256
6276
|
component: any;
|
|
6257
6277
|
isVisible?: (env: SpreadsheetChildEnv) => boolean;
|
|
6278
|
+
sequence: number;
|
|
6258
6279
|
}
|
|
6259
6280
|
|
|
6260
6281
|
/**
|
|
@@ -9055,6 +9076,8 @@ declare class FindAndReplaceStore extends SpreadsheetStore implements HighlightP
|
|
|
9055
9076
|
private isSearchDirty;
|
|
9056
9077
|
private initialShowFormulaState;
|
|
9057
9078
|
private preserveSelectedMatchIndex;
|
|
9079
|
+
private irreplaceableMatchCount;
|
|
9080
|
+
private notificationStore;
|
|
9058
9081
|
selectedMatchIndex: number | null;
|
|
9059
9082
|
toSearch: string;
|
|
9060
9083
|
toReplace: string;
|
|
@@ -9105,6 +9128,10 @@ declare class FindAndReplaceStore extends SpreadsheetStore implements HighlightP
|
|
|
9105
9128
|
* Apply the replace function to all the matches one time.
|
|
9106
9129
|
*/
|
|
9107
9130
|
replaceAll(): void;
|
|
9131
|
+
/**
|
|
9132
|
+
* Show a warning message based on the number of matches replaced and irreplaceable.
|
|
9133
|
+
*/
|
|
9134
|
+
private showReplaceWarningMessage;
|
|
9108
9135
|
private replaceMatch;
|
|
9109
9136
|
private getSearchableString;
|
|
9110
9137
|
get highlights(): Highlight$1[];
|
|
@@ -9373,10 +9400,10 @@ declare class PivotTitleSection extends Component<Props$c, SpreadsheetChildEnv>
|
|
|
9373
9400
|
}
|
|
9374
9401
|
|
|
9375
9402
|
declare function isEvaluationError(error: Maybe<CellValue>): error is string;
|
|
9376
|
-
declare function toNumber(data:
|
|
9377
|
-
declare function toString(data:
|
|
9378
|
-
declare function toBoolean(data:
|
|
9379
|
-
declare function toJsDate(data:
|
|
9403
|
+
declare function toNumber(data: FunctionResultObject | CellValue | undefined, locale: Locale): number;
|
|
9404
|
+
declare function toString(data: FunctionResultObject | CellValue | undefined): string;
|
|
9405
|
+
declare function toBoolean(data: FunctionResultObject | CellValue | undefined): boolean;
|
|
9406
|
+
declare function toJsDate(data: FunctionResultObject | CellValue | undefined, locale: Locale): DateTime;
|
|
9380
9407
|
|
|
9381
9408
|
declare function arg(definition: string, description?: string): ArgDefinition;
|
|
9382
9409
|
|
|
@@ -9384,12 +9411,12 @@ interface FunctionRegistry extends Registry<FunctionDescription> {
|
|
|
9384
9411
|
add(functionName: string, addDescr: AddFunctionDescription): FunctionRegistry;
|
|
9385
9412
|
get(functionName: string): FunctionDescription;
|
|
9386
9413
|
mapping: {
|
|
9387
|
-
[functionName: string]: ComputeFunction<Matrix<
|
|
9414
|
+
[functionName: string]: ComputeFunction<Matrix<FunctionResultObject> | FunctionResultObject>;
|
|
9388
9415
|
};
|
|
9389
9416
|
}
|
|
9390
9417
|
declare class FunctionRegistry extends Registry<FunctionDescription> {
|
|
9391
9418
|
mapping: {
|
|
9392
|
-
[key: string]: ComputeFunction<Matrix<
|
|
9419
|
+
[key: string]: ComputeFunction<Matrix<FunctionResultObject> | FunctionResultObject>;
|
|
9393
9420
|
};
|
|
9394
9421
|
}
|
|
9395
9422
|
|
|
@@ -9412,7 +9439,7 @@ declare function getChartAxisTitleRuntime(design?: AxisDesign): {
|
|
|
9412
9439
|
/**
|
|
9413
9440
|
* Get a default chart js configuration
|
|
9414
9441
|
*/
|
|
9415
|
-
declare function getDefaultChartJsRuntime(chart: AbstractChart, labels: string[], fontColor: Color,
|
|
9442
|
+
declare function getDefaultChartJsRuntime(chart: AbstractChart, labels: string[], fontColor: Color, { format, locale, truncateLabels, horizontalChart, }: LocaleFormat & {
|
|
9416
9443
|
truncateLabels?: boolean;
|
|
9417
9444
|
horizontalChart?: boolean;
|
|
9418
9445
|
}): Required<ChartConfiguration>;
|
|
@@ -10477,6 +10504,7 @@ declare const registries: {
|
|
|
10477
10504
|
};
|
|
10478
10505
|
uuidGenerator: UuidGenerator;
|
|
10479
10506
|
add(name: string, value: Omit<TopbarComponent, "id">): Registry<TopbarComponent>;
|
|
10507
|
+
getAllOrdered(): TopbarComponent[];
|
|
10480
10508
|
content: {
|
|
10481
10509
|
[key: string]: TopbarComponent;
|
|
10482
10510
|
};
|
|
@@ -11569,4 +11597,4 @@ declare const constants: {
|
|
|
11569
11597
|
};
|
|
11570
11598
|
};
|
|
11571
11599
|
|
|
11572
|
-
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, DuplicatePivotInNewSheetCommand, DuplicateSheetCommand, DynamicTable, EdgeScrollInfo, EditTextOptions, EmptyCell, EndsWithRule, EnrichedToken, EnsureRange, ErrorCell, EvalContext, EvaluateCellsCommand, EvaluatedCell, EvaluationError, ExcelCellData, ExcelChartDataset, ExcelChartDefinition, ExcelChartType, ExcelFigureSize, ExcelFilterData, ExcelHeaderData, ExcelSheetData, ExcelTableData, ExcelWorkbookData, ExpressionRule,
|
|
11600
|
+
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, DuplicatePivotInNewSheetCommand, DuplicateSheetCommand, DynamicTable, EdgeScrollInfo, EditTextOptions, 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, 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 };
|