@odoo/o-spreadsheet 17.4.0-alpha.7 → 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 +802 -736
- package/dist/o-spreadsheet.d.ts +38 -28
- package/dist/o-spreadsheet.esm.js +802 -736
- package/dist/o-spreadsheet.iife.js +802 -736
- 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;
|
|
@@ -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;
|
|
@@ -9004,6 +9008,7 @@ declare class CogWheelMenu extends Component<Props$k, SpreadsheetChildEnv> {
|
|
|
9004
9008
|
private buttonRef;
|
|
9005
9009
|
private popover;
|
|
9006
9010
|
setup(): void;
|
|
9011
|
+
onClick(item: CogWheelMenuItem): void;
|
|
9007
9012
|
get popoverProps(): {
|
|
9008
9013
|
anchorRect: {
|
|
9009
9014
|
x: number;
|
|
@@ -9024,6 +9029,7 @@ declare class FindAndReplaceStore extends SpreadsheetStore implements HighlightP
|
|
|
9024
9029
|
private currentSearchRegex;
|
|
9025
9030
|
private isSearchDirty;
|
|
9026
9031
|
private initialShowFormulaState;
|
|
9032
|
+
private preserveSelectedMatchIndex;
|
|
9027
9033
|
selectedMatchIndex: number | null;
|
|
9028
9034
|
toSearch: string;
|
|
9029
9035
|
toReplace: string;
|
|
@@ -9218,10 +9224,6 @@ declare class PivotDimensionOrder extends Component<Props$e, SpreadsheetChildEnv
|
|
|
9218
9224
|
};
|
|
9219
9225
|
}
|
|
9220
9226
|
|
|
9221
|
-
/**
|
|
9222
|
-
* Build a pivot formula expression
|
|
9223
|
-
*/
|
|
9224
|
-
declare function makePivotFormula(formula: "PIVOT.VALUE" | "PIVOT.HEADER", args: (string | boolean | number)[]): string;
|
|
9225
9227
|
/**
|
|
9226
9228
|
* Given an object of form {"1": {...}, "2": {...}, ...} get the maximum ID used
|
|
9227
9229
|
* in this object
|
|
@@ -9235,8 +9237,13 @@ declare function getMaxObjectId(o: object): number;
|
|
|
9235
9237
|
*/
|
|
9236
9238
|
declare function parseDimension(dimension: string): PivotCoreDimension;
|
|
9237
9239
|
declare function isDateField(field: PivotField): boolean;
|
|
9238
|
-
|
|
9239
|
-
|
|
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;
|
|
9240
9247
|
/**
|
|
9241
9248
|
* Parses the value defining a pivot group in a PIVOT formula
|
|
9242
9249
|
* e.g. given the following formula PIVOT.VALUE("1", "stage_id", "42", "status", "won"),
|
|
@@ -9316,6 +9323,7 @@ declare class PivotSidePanelStore extends SpreadsheetStore {
|
|
|
9316
9323
|
|
|
9317
9324
|
interface Props$c {
|
|
9318
9325
|
pivotId: UID;
|
|
9326
|
+
flipAxis: () => void;
|
|
9319
9327
|
}
|
|
9320
9328
|
declare class PivotTitleSection extends Component<Props$c, SpreadsheetChildEnv> {
|
|
9321
9329
|
static template: string;
|
|
@@ -9326,6 +9334,7 @@ declare class PivotTitleSection extends Component<Props$c, SpreadsheetChildEnv>
|
|
|
9326
9334
|
};
|
|
9327
9335
|
static props: {
|
|
9328
9336
|
pivotId: StringConstructor;
|
|
9337
|
+
flipAxis: FunctionConstructor;
|
|
9329
9338
|
};
|
|
9330
9339
|
get cogWheelMenuItems(): {
|
|
9331
9340
|
name: string;
|
|
@@ -10367,7 +10376,8 @@ type SprintfValues = (string | String | number)[] | [{
|
|
|
10367
10376
|
}];
|
|
10368
10377
|
type TranslationFunction = (string: string, ...values: SprintfValues) => string;
|
|
10369
10378
|
/***
|
|
10370
|
-
* 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.
|
|
10371
10381
|
* @param tfn the function that will do the translation
|
|
10372
10382
|
* @param loaded a function that returns true when the translation is loaded
|
|
10373
10383
|
*/
|
|
@@ -11334,6 +11344,7 @@ declare const registries: {
|
|
|
11334
11344
|
pivotSidePanelRegistry: Registry<PivotRegistryItem$1>;
|
|
11335
11345
|
pivotNormalizationValueRegistry: Registry<(value: string, granularity?: string | undefined) => CellValue>;
|
|
11336
11346
|
supportedPivotPositionalFormulaRegistry: Registry<boolean>;
|
|
11347
|
+
pivotToFunctionValueRegistry: Registry<(value: CellValue, granularity?: string | undefined) => string>;
|
|
11337
11348
|
};
|
|
11338
11349
|
declare const helpers: {
|
|
11339
11350
|
arg: typeof arg;
|
|
@@ -11379,7 +11390,6 @@ declare const helpers: {
|
|
|
11379
11390
|
expandZoneOnInsertion: typeof expandZoneOnInsertion;
|
|
11380
11391
|
reduceZoneOnDeletion: typeof reduceZoneOnDeletion;
|
|
11381
11392
|
unquote: typeof unquote;
|
|
11382
|
-
makePivotFormula: typeof makePivotFormula;
|
|
11383
11393
|
getMaxObjectId: typeof getMaxObjectId;
|
|
11384
11394
|
getFunctionsFromTokens: typeof getFunctionsFromTokens;
|
|
11385
11395
|
getFirstPivotFunction: typeof getFirstPivotFunction;
|
|
@@ -11391,10 +11401,10 @@ declare const helpers: {
|
|
|
11391
11401
|
insertTokenAfterLeftParenthesis: typeof insertTokenAfterLeftParenthesis;
|
|
11392
11402
|
mergeContiguousZones: typeof mergeContiguousZones;
|
|
11393
11403
|
getPivotHighlights: typeof getPivotHighlights;
|
|
11394
|
-
toPivotDomain: typeof toPivotDomain;
|
|
11395
|
-
flatPivotDomain: typeof flatPivotDomain;
|
|
11396
11404
|
pivotTimeAdapter: typeof pivotTimeAdapter;
|
|
11397
11405
|
UNDO_REDO_PIVOT_COMMANDS: string[];
|
|
11406
|
+
createPivotFormula: typeof createPivotFormula;
|
|
11407
|
+
areDomainArgsFieldsValid: typeof areDomainArgsFieldsValid;
|
|
11398
11408
|
};
|
|
11399
11409
|
declare const links: {
|
|
11400
11410
|
isMarkdownLink: typeof isMarkdownLink;
|
|
@@ -11509,4 +11519,4 @@ declare const constants: {
|
|
|
11509
11519
|
};
|
|
11510
11520
|
};
|
|
11511
11521
|
|
|
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 };
|
|
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 };
|