@odoo/o-spreadsheet 17.4.0-alpha.6 → 17.4.0-alpha.8
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 +824 -778
- package/dist/o-spreadsheet.d.ts +40 -44
- package/dist/o-spreadsheet.esm.js +824 -778
- package/dist/o-spreadsheet.iife.js +824 -778
- package/dist/o-spreadsheet.iife.min.js +345 -345
- package/dist/o_spreadsheet.xml +5 -5
- package/package.json +6 -4
package/dist/o-spreadsheet.d.ts
CHANGED
|
@@ -562,19 +562,20 @@ interface PivotDimension$1 extends PivotCoreDimension {
|
|
|
562
562
|
}
|
|
563
563
|
interface PivotTableColumn {
|
|
564
564
|
fields: string[];
|
|
565
|
-
values:
|
|
565
|
+
values: CellValue[];
|
|
566
566
|
width: number;
|
|
567
567
|
offset: number;
|
|
568
568
|
}
|
|
569
569
|
interface PivotTableRow {
|
|
570
570
|
fields: string[];
|
|
571
|
-
values:
|
|
571
|
+
values: CellValue[];
|
|
572
572
|
indent: number;
|
|
573
573
|
}
|
|
574
574
|
interface PivotTableData {
|
|
575
575
|
cols: PivotTableColumn[][];
|
|
576
576
|
rows: PivotTableRow[];
|
|
577
577
|
measures: string[];
|
|
578
|
+
fieldsType?: Record<string, string | undefined>;
|
|
578
579
|
}
|
|
579
580
|
interface PivotHeaderCell {
|
|
580
581
|
type: "HEADER";
|
|
@@ -594,15 +595,20 @@ interface PivotEmptyCell {
|
|
|
594
595
|
type: "EMPTY";
|
|
595
596
|
}
|
|
596
597
|
type PivotTableCell = PivotHeaderCell | PivotMeasureHeaderCell | PivotValueCell | PivotEmptyCell;
|
|
598
|
+
interface PivotTimeAdapterNotNull<T> {
|
|
599
|
+
normalizeFunctionValue: (value: Exclude<CellValue, null>) => T;
|
|
600
|
+
toValueAndFormat: (normalizedValue: T, locale?: Locale) => FPayload;
|
|
601
|
+
toFunctionValue: (normalizedValue: T) => string;
|
|
602
|
+
}
|
|
597
603
|
interface PivotTimeAdapter<T> {
|
|
598
|
-
normalizeFunctionValue: (value:
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
toCellValue: (normalizedValue: T) => CellValue;
|
|
604
|
+
normalizeFunctionValue: (value: CellValue) => T | null;
|
|
605
|
+
toValueAndFormat: (normalizedValue: T, locale?: Locale) => FPayload;
|
|
606
|
+
toFunctionValue: (normalizedValue: T) => string;
|
|
602
607
|
}
|
|
603
608
|
interface PivotNode {
|
|
604
609
|
field: string;
|
|
605
|
-
|
|
610
|
+
type: string;
|
|
611
|
+
value: CellValue;
|
|
606
612
|
}
|
|
607
613
|
type PivotDomain = PivotNode[];
|
|
608
614
|
|
|
@@ -4220,11 +4226,12 @@ declare class SpreadsheetPivotTable {
|
|
|
4220
4226
|
readonly columns: PivotTableColumn[][];
|
|
4221
4227
|
readonly rows: PivotTableRow[];
|
|
4222
4228
|
readonly measures: string[];
|
|
4229
|
+
readonly fieldsType: Record<string, string | undefined>;
|
|
4223
4230
|
readonly maxIndent: number;
|
|
4224
4231
|
readonly pivotCells: {
|
|
4225
4232
|
[key: string]: PivotTableCell[][];
|
|
4226
4233
|
};
|
|
4227
|
-
constructor(columns: PivotTableColumn[][], rows: PivotTableRow[], measures: string[]);
|
|
4234
|
+
constructor(columns: PivotTableColumn[][], rows: PivotTableRow[], measures: string[], fieldsType: Record<string, string | undefined>);
|
|
4228
4235
|
/**
|
|
4229
4236
|
* Get the number of columns leafs (i.e. the number of the last row of columns)
|
|
4230
4237
|
*/
|
|
@@ -4240,6 +4247,7 @@ declare class SpreadsheetPivotTable {
|
|
|
4240
4247
|
cols: PivotTableColumn[][];
|
|
4241
4248
|
rows: PivotTableRow[];
|
|
4242
4249
|
measures: string[];
|
|
4250
|
+
fieldsType: Record<string, string | undefined>;
|
|
4243
4251
|
};
|
|
4244
4252
|
}
|
|
4245
4253
|
|
|
@@ -4252,11 +4260,13 @@ interface Pivot<T = PivotRuntimeDefinition> {
|
|
|
4252
4260
|
init(params?: InitPivotParams): void;
|
|
4253
4261
|
isValid(): boolean;
|
|
4254
4262
|
getTableStructure(): SpreadsheetPivotTable;
|
|
4255
|
-
getFields(): PivotFields
|
|
4263
|
+
getFields(): PivotFields;
|
|
4256
4264
|
getPivotHeaderValueAndFormat(domain: PivotDomain): FPayload;
|
|
4257
4265
|
getPivotCellValueAndFormat(measure: string, domain: PivotDomain): FPayload;
|
|
4258
4266
|
getPivotMeasureValue(measure: string, domain: PivotDomain): FPayload;
|
|
4259
4267
|
getMeasure: (name: string) => PivotMeasure;
|
|
4268
|
+
parseArgsToPivotDomain(args: Maybe<FPayload>[]): PivotDomain;
|
|
4269
|
+
areDomainArgsFieldsValid(args: Maybe<FPayload>[]): boolean;
|
|
4260
4270
|
assertIsValid({ throwOnError }: {
|
|
4261
4271
|
throwOnError: boolean;
|
|
4262
4272
|
}): FPayload | undefined;
|
|
@@ -4268,7 +4278,7 @@ interface Pivot<T = PivotRuntimeDefinition> {
|
|
|
4268
4278
|
}
|
|
4269
4279
|
|
|
4270
4280
|
declare class PivotUIPlugin extends UIPlugin {
|
|
4271
|
-
static getters: readonly ["getPivot", "getFirstPivotFunction", "getPivotIdFromPosition", "getPivotCellFromPosition", "isPivotUnused", "
|
|
4281
|
+
static getters: readonly ["getPivot", "getFirstPivotFunction", "getPivotIdFromPosition", "getPivotCellFromPosition", "isPivotUnused", "isSpillPivotFormula"];
|
|
4272
4282
|
private pivots;
|
|
4273
4283
|
private unusedPivots?;
|
|
4274
4284
|
private custom;
|
|
@@ -4301,12 +4311,6 @@ declare class PivotUIPlugin extends UIPlugin {
|
|
|
4301
4311
|
getPivotCellFromPosition(position: CellPosition): PivotTableCell;
|
|
4302
4312
|
getPivot(pivotId: UID): Pivot<PivotRuntimeDefinition>;
|
|
4303
4313
|
isPivotUnused(pivotId: UID): boolean;
|
|
4304
|
-
/**
|
|
4305
|
-
* Check if the fields in the domain part of
|
|
4306
|
-
* a pivot function are valid according to the pivot definition.
|
|
4307
|
-
* e.g. =PIVOT.VALUE(1,"revenue","country_id",...,"create_date:month",...,"source_id",...)
|
|
4308
|
-
*/
|
|
4309
|
-
areDomainArgsFieldsValid(pivotId: UID, domain: PivotDomain): boolean;
|
|
4310
4314
|
/**
|
|
4311
4315
|
* Refresh the cache of a pivot
|
|
4312
4316
|
*/
|
|
@@ -4505,21 +4509,6 @@ declare class CollaborativePlugin extends UIPlugin {
|
|
|
4505
4509
|
drawLayer(renderingContext: GridRenderingContext): void;
|
|
4506
4510
|
}
|
|
4507
4511
|
|
|
4508
|
-
/**
|
|
4509
|
-
* Find and Replace Plugin
|
|
4510
|
-
*
|
|
4511
|
-
* This plugin is used in combination with the find_and_replace sidePanel
|
|
4512
|
-
* It is used to 'highlight' cells that match an input string according to
|
|
4513
|
-
* the given searchOptions. The second part of this plugin makes it possible
|
|
4514
|
-
* (again with the find_and_replace sidePanel), to replace the values that match
|
|
4515
|
-
* the search with a new value.
|
|
4516
|
-
*/
|
|
4517
|
-
declare class FindAndReplacePlugin extends UIPlugin {
|
|
4518
|
-
static getters: readonly [];
|
|
4519
|
-
handle(cmd: Command): void;
|
|
4520
|
-
private replaceMatch;
|
|
4521
|
-
}
|
|
4522
|
-
|
|
4523
4512
|
declare class HeaderVisibilityUIPlugin extends UIPlugin {
|
|
4524
4513
|
static getters: readonly ["getNextVisibleCellPosition", "findVisibleHeader", "findLastVisibleColRowIndex", "findFirstVisibleColRowIndex", "isRowHidden", "isColHidden", "isHeaderHidden"];
|
|
4525
4514
|
isRowHidden(sheetId: UID, index: number): boolean;
|
|
@@ -5159,7 +5148,7 @@ type CoreGetters = PluginGetters<typeof SheetPlugin> & PluginGetters<typeof Head
|
|
|
5159
5148
|
type Getters = {
|
|
5160
5149
|
isReadonly: () => boolean;
|
|
5161
5150
|
isDashboard: () => boolean;
|
|
5162
|
-
} & CoreGetters & PluginGetters<typeof AutofillPlugin> & PluginGetters<typeof AutomaticSumPlugin> & PluginGetters<typeof HistoryPlugin> & PluginGetters<typeof ClipboardPlugin> & PluginGetters<typeof EvaluationPlugin> & PluginGetters<typeof EvaluationChartPlugin> & PluginGetters<typeof EvaluationConditionalFormatPlugin> & PluginGetters<typeof
|
|
5151
|
+
} & CoreGetters & PluginGetters<typeof AutofillPlugin> & PluginGetters<typeof AutomaticSumPlugin> & PluginGetters<typeof HistoryPlugin> & PluginGetters<typeof ClipboardPlugin> & PluginGetters<typeof EvaluationPlugin> & PluginGetters<typeof EvaluationChartPlugin> & PluginGetters<typeof EvaluationConditionalFormatPlugin> & 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 CellComputedStylePlugin> & PluginGetters<typeof DynamicTablesPlugin> & PluginGetters<typeof PivotUIPlugin> & PluginGetters<typeof TableComputedStylePlugin>;
|
|
5163
5152
|
|
|
5164
5153
|
type ArgType = "ANY" | "BOOLEAN" | "NUMBER" | "STRING" | "DATE" | "RANGE" | "RANGE<BOOLEAN>" | "RANGE<NUMBER>" | "RANGE<DATE>" | "RANGE<STRING>" | "RANGE<ANY>" | "META";
|
|
5165
5154
|
interface ArgDefinition {
|
|
@@ -5898,7 +5887,7 @@ declare class ClipboardHandler<T> {
|
|
|
5898
5887
|
protected dispatch: CommandDispatcher["dispatch"];
|
|
5899
5888
|
constructor(getters: Getters, dispatch: CommandDispatcher["dispatch"]);
|
|
5900
5889
|
copy(data: ClipboardData): T | undefined;
|
|
5901
|
-
paste(target: ClipboardPasteTarget, clippedContent: T, options: ClipboardOptions
|
|
5890
|
+
paste(target: ClipboardPasteTarget, clippedContent: T, options: ClipboardOptions): void;
|
|
5902
5891
|
isPasteAllowed(sheetId: UID, target: Zone[], content: T, option: ClipboardOptions): CommandResult;
|
|
5903
5892
|
isCutAllowed(data: ClipboardData): CommandResult;
|
|
5904
5893
|
getPasteTarget(sheetId: UID, target: Zone[], content: T, options: ClipboardOptions): ClipboardPasteTarget;
|
|
@@ -9019,6 +9008,7 @@ declare class CogWheelMenu extends Component<Props$k, SpreadsheetChildEnv> {
|
|
|
9019
9008
|
private buttonRef;
|
|
9020
9009
|
private popover;
|
|
9021
9010
|
setup(): void;
|
|
9011
|
+
onClick(item: CogWheelMenuItem): void;
|
|
9022
9012
|
get popoverProps(): {
|
|
9023
9013
|
anchorRect: {
|
|
9024
9014
|
x: number;
|
|
@@ -9039,6 +9029,7 @@ declare class FindAndReplaceStore extends SpreadsheetStore implements HighlightP
|
|
|
9039
9029
|
private currentSearchRegex;
|
|
9040
9030
|
private isSearchDirty;
|
|
9041
9031
|
private initialShowFormulaState;
|
|
9032
|
+
private preserveSelectedMatchIndex;
|
|
9042
9033
|
selectedMatchIndex: number | null;
|
|
9043
9034
|
toSearch: string;
|
|
9044
9035
|
toReplace: string;
|
|
@@ -9089,6 +9080,7 @@ declare class FindAndReplaceStore extends SpreadsheetStore implements HighlightP
|
|
|
9089
9080
|
* Apply the replace function to all the matches one time.
|
|
9090
9081
|
*/
|
|
9091
9082
|
replaceAll(): void;
|
|
9083
|
+
private replaceMatch;
|
|
9092
9084
|
private getSearchableString;
|
|
9093
9085
|
get highlights(): Highlight$1[];
|
|
9094
9086
|
}
|
|
@@ -9232,10 +9224,6 @@ declare class PivotDimensionOrder extends Component<Props$e, SpreadsheetChildEnv
|
|
|
9232
9224
|
};
|
|
9233
9225
|
}
|
|
9234
9226
|
|
|
9235
|
-
/**
|
|
9236
|
-
* Build a pivot formula expression
|
|
9237
|
-
*/
|
|
9238
|
-
declare function makePivotFormula(formula: "PIVOT.VALUE" | "PIVOT.HEADER", args: (string | boolean | number)[]): string;
|
|
9239
9227
|
/**
|
|
9240
9228
|
* Given an object of form {"1": {...}, "2": {...}, ...} get the maximum ID used
|
|
9241
9229
|
* in this object
|
|
@@ -9249,8 +9237,13 @@ declare function getMaxObjectId(o: object): number;
|
|
|
9249
9237
|
*/
|
|
9250
9238
|
declare function parseDimension(dimension: string): PivotCoreDimension;
|
|
9251
9239
|
declare function isDateField(field: PivotField): boolean;
|
|
9252
|
-
|
|
9253
|
-
|
|
9240
|
+
/**
|
|
9241
|
+
* Check if the fields in the domain part of
|
|
9242
|
+
* a pivot function are valid according to the pivot definition.
|
|
9243
|
+
* e.g. =PIVOT.VALUE(1,"revenue","country_id",...,"create_date:month",...,"source_id",...)
|
|
9244
|
+
*/
|
|
9245
|
+
declare function areDomainArgsFieldsValid(dimensions: string[], definition: PivotRuntimeDefinition): boolean;
|
|
9246
|
+
declare function createPivotFormula(formulaId: string, cell: PivotTableCell): string;
|
|
9254
9247
|
/**
|
|
9255
9248
|
* Parses the value defining a pivot group in a PIVOT formula
|
|
9256
9249
|
* e.g. given the following formula PIVOT.VALUE("1", "stage_id", "42", "status", "won"),
|
|
@@ -9330,6 +9323,7 @@ declare class PivotSidePanelStore extends SpreadsheetStore {
|
|
|
9330
9323
|
|
|
9331
9324
|
interface Props$c {
|
|
9332
9325
|
pivotId: UID;
|
|
9326
|
+
flipAxis: () => void;
|
|
9333
9327
|
}
|
|
9334
9328
|
declare class PivotTitleSection extends Component<Props$c, SpreadsheetChildEnv> {
|
|
9335
9329
|
static template: string;
|
|
@@ -9340,6 +9334,7 @@ declare class PivotTitleSection extends Component<Props$c, SpreadsheetChildEnv>
|
|
|
9340
9334
|
};
|
|
9341
9335
|
static props: {
|
|
9342
9336
|
pivotId: StringConstructor;
|
|
9337
|
+
flipAxis: FunctionConstructor;
|
|
9343
9338
|
};
|
|
9344
9339
|
get cogWheelMenuItems(): {
|
|
9345
9340
|
name: string;
|
|
@@ -10381,7 +10376,8 @@ type SprintfValues = (string | String | number)[] | [{
|
|
|
10381
10376
|
}];
|
|
10382
10377
|
type TranslationFunction = (string: string, ...values: SprintfValues) => string;
|
|
10383
10378
|
/***
|
|
10384
|
-
* Allow to inject a translation function from outside o-spreadsheet.
|
|
10379
|
+
* Allow to inject a translation function from outside o-spreadsheet. This should be called before instantiating
|
|
10380
|
+
* a model.
|
|
10385
10381
|
* @param tfn the function that will do the translation
|
|
10386
10382
|
* @param loaded a function that returns true when the translation is loaded
|
|
10387
10383
|
*/
|
|
@@ -11348,6 +11344,7 @@ declare const registries: {
|
|
|
11348
11344
|
pivotSidePanelRegistry: Registry<PivotRegistryItem$1>;
|
|
11349
11345
|
pivotNormalizationValueRegistry: Registry<(value: string, granularity?: string | undefined) => CellValue>;
|
|
11350
11346
|
supportedPivotPositionalFormulaRegistry: Registry<boolean>;
|
|
11347
|
+
pivotToFunctionValueRegistry: Registry<(value: CellValue, granularity?: string | undefined) => string>;
|
|
11351
11348
|
};
|
|
11352
11349
|
declare const helpers: {
|
|
11353
11350
|
arg: typeof arg;
|
|
@@ -11393,7 +11390,6 @@ declare const helpers: {
|
|
|
11393
11390
|
expandZoneOnInsertion: typeof expandZoneOnInsertion;
|
|
11394
11391
|
reduceZoneOnDeletion: typeof reduceZoneOnDeletion;
|
|
11395
11392
|
unquote: typeof unquote;
|
|
11396
|
-
makePivotFormula: typeof makePivotFormula;
|
|
11397
11393
|
getMaxObjectId: typeof getMaxObjectId;
|
|
11398
11394
|
getFunctionsFromTokens: typeof getFunctionsFromTokens;
|
|
11399
11395
|
getFirstPivotFunction: typeof getFirstPivotFunction;
|
|
@@ -11405,10 +11401,10 @@ declare const helpers: {
|
|
|
11405
11401
|
insertTokenAfterLeftParenthesis: typeof insertTokenAfterLeftParenthesis;
|
|
11406
11402
|
mergeContiguousZones: typeof mergeContiguousZones;
|
|
11407
11403
|
getPivotHighlights: typeof getPivotHighlights;
|
|
11408
|
-
toPivotDomain: typeof toPivotDomain;
|
|
11409
|
-
flatPivotDomain: typeof flatPivotDomain;
|
|
11410
11404
|
pivotTimeAdapter: typeof pivotTimeAdapter;
|
|
11411
11405
|
UNDO_REDO_PIVOT_COMMANDS: string[];
|
|
11406
|
+
createPivotFormula: typeof createPivotFormula;
|
|
11407
|
+
areDomainArgsFieldsValid: typeof areDomainArgsFieldsValid;
|
|
11412
11408
|
};
|
|
11413
11409
|
declare const links: {
|
|
11414
11410
|
isMarkdownLink: typeof isMarkdownLink;
|
|
@@ -11523,4 +11519,4 @@ declare const constants: {
|
|
|
11523
11519
|
};
|
|
11524
11520
|
};
|
|
11525
11521
|
|
|
11526
|
-
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, PivotMeasureHeaderCell, 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 };
|
|
11522
|
+
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, 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 };
|