@odoo/o-spreadsheet 17.4.0-alpha.7 → 17.4.0-alpha.9
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 +811 -742
- package/dist/o-spreadsheet.d.ts +47 -31
- package/dist/o-spreadsheet.esm.js +811 -742
- package/dist/o-spreadsheet.iife.js +811 -742
- package/dist/o-spreadsheet.iife.min.js +345 -345
- package/dist/o_spreadsheet.xml +5 -5
- package/package.json +1 -1
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;
|
|
@@ -4281,7 +4291,7 @@ declare class PivotUIPlugin extends UIPlugin {
|
|
|
4281
4291
|
*/
|
|
4282
4292
|
getPivotIdFromPosition(position: CellPosition): "" | UID | undefined;
|
|
4283
4293
|
isSpillPivotFormula(position: CellPosition): boolean;
|
|
4284
|
-
getFirstPivotFunction(tokens: Token[]): {
|
|
4294
|
+
getFirstPivotFunction(sheetId: UID, tokens: Token[]): {
|
|
4285
4295
|
functionName: string;
|
|
4286
4296
|
args: (CellValue | Matrix<CellValue> | undefined)[];
|
|
4287
4297
|
} | undefined;
|
|
@@ -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
|
*/
|
|
@@ -5883,7 +5887,7 @@ declare class ClipboardHandler<T> {
|
|
|
5883
5887
|
protected dispatch: CommandDispatcher["dispatch"];
|
|
5884
5888
|
constructor(getters: Getters, dispatch: CommandDispatcher["dispatch"]);
|
|
5885
5889
|
copy(data: ClipboardData): T | undefined;
|
|
5886
|
-
paste(target: ClipboardPasteTarget, clippedContent: T, options: ClipboardOptions
|
|
5890
|
+
paste(target: ClipboardPasteTarget, clippedContent: T, options: ClipboardOptions): void;
|
|
5887
5891
|
isPasteAllowed(sheetId: UID, target: Zone[], content: T, option: ClipboardOptions): CommandResult;
|
|
5888
5892
|
isCutAllowed(data: ClipboardData): CommandResult;
|
|
5889
5893
|
getPasteTarget(sheetId: UID, target: Zone[], content: T, options: ClipboardOptions): ClipboardPasteTarget;
|
|
@@ -6957,7 +6961,7 @@ declare class RoundColorPicker extends Component<Props$U, SpreadsheetChildEnv> {
|
|
|
6957
6961
|
}
|
|
6958
6962
|
|
|
6959
6963
|
interface Props$T {
|
|
6960
|
-
title
|
|
6964
|
+
title?: string;
|
|
6961
6965
|
updateTitle: (title: string) => void;
|
|
6962
6966
|
name?: string;
|
|
6963
6967
|
toggleItalic?: () => void;
|
|
@@ -6973,7 +6977,10 @@ declare class ChartTitle extends Component<Props$T, SpreadsheetChildEnv> {
|
|
|
6973
6977
|
ColorPickerWidget: typeof ColorPickerWidget;
|
|
6974
6978
|
};
|
|
6975
6979
|
static props: {
|
|
6976
|
-
title:
|
|
6980
|
+
title: {
|
|
6981
|
+
type: StringConstructor;
|
|
6982
|
+
optional: boolean;
|
|
6983
|
+
};
|
|
6977
6984
|
updateTitle: FunctionConstructor;
|
|
6978
6985
|
name: {
|
|
6979
6986
|
type: StringConstructor;
|
|
@@ -7000,6 +7007,9 @@ declare class ChartTitle extends Component<Props$T, SpreadsheetChildEnv> {
|
|
|
7000
7007
|
optional: boolean;
|
|
7001
7008
|
};
|
|
7002
7009
|
};
|
|
7010
|
+
static defaultProps: {
|
|
7011
|
+
title: string;
|
|
7012
|
+
};
|
|
7003
7013
|
openedEl: HTMLElement | null;
|
|
7004
7014
|
setup(): void;
|
|
7005
7015
|
state: {
|
|
@@ -9004,6 +9014,7 @@ declare class CogWheelMenu extends Component<Props$k, SpreadsheetChildEnv> {
|
|
|
9004
9014
|
private buttonRef;
|
|
9005
9015
|
private popover;
|
|
9006
9016
|
setup(): void;
|
|
9017
|
+
onClick(item: CogWheelMenuItem): void;
|
|
9007
9018
|
get popoverProps(): {
|
|
9008
9019
|
anchorRect: {
|
|
9009
9020
|
x: number;
|
|
@@ -9024,6 +9035,7 @@ declare class FindAndReplaceStore extends SpreadsheetStore implements HighlightP
|
|
|
9024
9035
|
private currentSearchRegex;
|
|
9025
9036
|
private isSearchDirty;
|
|
9026
9037
|
private initialShowFormulaState;
|
|
9038
|
+
private preserveSelectedMatchIndex;
|
|
9027
9039
|
selectedMatchIndex: number | null;
|
|
9028
9040
|
toSearch: string;
|
|
9029
9041
|
toReplace: string;
|
|
@@ -9218,10 +9230,6 @@ declare class PivotDimensionOrder extends Component<Props$e, SpreadsheetChildEnv
|
|
|
9218
9230
|
};
|
|
9219
9231
|
}
|
|
9220
9232
|
|
|
9221
|
-
/**
|
|
9222
|
-
* Build a pivot formula expression
|
|
9223
|
-
*/
|
|
9224
|
-
declare function makePivotFormula(formula: "PIVOT.VALUE" | "PIVOT.HEADER", args: (string | boolean | number)[]): string;
|
|
9225
9233
|
/**
|
|
9226
9234
|
* Given an object of form {"1": {...}, "2": {...}, ...} get the maximum ID used
|
|
9227
9235
|
* in this object
|
|
@@ -9235,8 +9243,13 @@ declare function getMaxObjectId(o: object): number;
|
|
|
9235
9243
|
*/
|
|
9236
9244
|
declare function parseDimension(dimension: string): PivotCoreDimension;
|
|
9237
9245
|
declare function isDateField(field: PivotField): boolean;
|
|
9238
|
-
|
|
9239
|
-
|
|
9246
|
+
/**
|
|
9247
|
+
* Check if the fields in the domain part of
|
|
9248
|
+
* a pivot function are valid according to the pivot definition.
|
|
9249
|
+
* e.g. =PIVOT.VALUE(1,"revenue","country_id",...,"create_date:month",...,"source_id",...)
|
|
9250
|
+
*/
|
|
9251
|
+
declare function areDomainArgsFieldsValid(dimensions: string[], definition: PivotRuntimeDefinition): boolean;
|
|
9252
|
+
declare function createPivotFormula(formulaId: string, cell: PivotTableCell): string;
|
|
9240
9253
|
/**
|
|
9241
9254
|
* Parses the value defining a pivot group in a PIVOT formula
|
|
9242
9255
|
* e.g. given the following formula PIVOT.VALUE("1", "stage_id", "42", "status", "won"),
|
|
@@ -9316,6 +9329,7 @@ declare class PivotSidePanelStore extends SpreadsheetStore {
|
|
|
9316
9329
|
|
|
9317
9330
|
interface Props$c {
|
|
9318
9331
|
pivotId: UID;
|
|
9332
|
+
flipAxis: () => void;
|
|
9319
9333
|
}
|
|
9320
9334
|
declare class PivotTitleSection extends Component<Props$c, SpreadsheetChildEnv> {
|
|
9321
9335
|
static template: string;
|
|
@@ -9326,6 +9340,7 @@ declare class PivotTitleSection extends Component<Props$c, SpreadsheetChildEnv>
|
|
|
9326
9340
|
};
|
|
9327
9341
|
static props: {
|
|
9328
9342
|
pivotId: StringConstructor;
|
|
9343
|
+
flipAxis: FunctionConstructor;
|
|
9329
9344
|
};
|
|
9330
9345
|
get cogWheelMenuItems(): {
|
|
9331
9346
|
name: string;
|
|
@@ -10367,7 +10382,8 @@ type SprintfValues = (string | String | number)[] | [{
|
|
|
10367
10382
|
}];
|
|
10368
10383
|
type TranslationFunction = (string: string, ...values: SprintfValues) => string;
|
|
10369
10384
|
/***
|
|
10370
|
-
* Allow to inject a translation function from outside o-spreadsheet.
|
|
10385
|
+
* Allow to inject a translation function from outside o-spreadsheet. This should be called before instantiating
|
|
10386
|
+
* a model.
|
|
10371
10387
|
* @param tfn the function that will do the translation
|
|
10372
10388
|
* @param loaded a function that returns true when the translation is loaded
|
|
10373
10389
|
*/
|
|
@@ -11334,6 +11350,7 @@ declare const registries: {
|
|
|
11334
11350
|
pivotSidePanelRegistry: Registry<PivotRegistryItem$1>;
|
|
11335
11351
|
pivotNormalizationValueRegistry: Registry<(value: string, granularity?: string | undefined) => CellValue>;
|
|
11336
11352
|
supportedPivotPositionalFormulaRegistry: Registry<boolean>;
|
|
11353
|
+
pivotToFunctionValueRegistry: Registry<(value: CellValue, granularity?: string | undefined) => string>;
|
|
11337
11354
|
};
|
|
11338
11355
|
declare const helpers: {
|
|
11339
11356
|
arg: typeof arg;
|
|
@@ -11379,7 +11396,6 @@ declare const helpers: {
|
|
|
11379
11396
|
expandZoneOnInsertion: typeof expandZoneOnInsertion;
|
|
11380
11397
|
reduceZoneOnDeletion: typeof reduceZoneOnDeletion;
|
|
11381
11398
|
unquote: typeof unquote;
|
|
11382
|
-
makePivotFormula: typeof makePivotFormula;
|
|
11383
11399
|
getMaxObjectId: typeof getMaxObjectId;
|
|
11384
11400
|
getFunctionsFromTokens: typeof getFunctionsFromTokens;
|
|
11385
11401
|
getFirstPivotFunction: typeof getFirstPivotFunction;
|
|
@@ -11391,10 +11407,10 @@ declare const helpers: {
|
|
|
11391
11407
|
insertTokenAfterLeftParenthesis: typeof insertTokenAfterLeftParenthesis;
|
|
11392
11408
|
mergeContiguousZones: typeof mergeContiguousZones;
|
|
11393
11409
|
getPivotHighlights: typeof getPivotHighlights;
|
|
11394
|
-
toPivotDomain: typeof toPivotDomain;
|
|
11395
|
-
flatPivotDomain: typeof flatPivotDomain;
|
|
11396
11410
|
pivotTimeAdapter: typeof pivotTimeAdapter;
|
|
11397
11411
|
UNDO_REDO_PIVOT_COMMANDS: string[];
|
|
11412
|
+
createPivotFormula: typeof createPivotFormula;
|
|
11413
|
+
areDomainArgsFieldsValid: typeof areDomainArgsFieldsValid;
|
|
11398
11414
|
};
|
|
11399
11415
|
declare const links: {
|
|
11400
11416
|
isMarkdownLink: typeof isMarkdownLink;
|
|
@@ -11509,4 +11525,4 @@ declare const constants: {
|
|
|
11509
11525
|
};
|
|
11510
11526
|
};
|
|
11511
11527
|
|
|
11512
|
-
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 };
|
|
11528
|
+
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 };
|