@odoo/o-spreadsheet 18.3.1 → 18.4.0-alpha.1
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 +41628 -41441
- package/dist/o-spreadsheet.d.ts +87 -76
- package/dist/o-spreadsheet.esm.js +41629 -41442
- package/dist/o-spreadsheet.iife.js +41699 -41512
- package/dist/o-spreadsheet.iife.min.js +1737 -1715
- package/dist/o_spreadsheet.xml +10 -9
- package/package.json +11 -6
package/dist/o-spreadsheet.d.ts
CHANGED
|
@@ -562,6 +562,7 @@ interface DataSet {
|
|
|
562
562
|
readonly rightYAxis?: boolean;
|
|
563
563
|
readonly backgroundColor?: Color;
|
|
564
564
|
readonly customLabel?: string;
|
|
565
|
+
readonly trend?: TrendConfiguration;
|
|
565
566
|
}
|
|
566
567
|
interface ExcelChartDataset {
|
|
567
568
|
readonly label?: {
|
|
@@ -572,7 +573,15 @@ interface ExcelChartDataset {
|
|
|
572
573
|
readonly range: string;
|
|
573
574
|
readonly backgroundColor?: Color;
|
|
574
575
|
readonly rightYAxis?: boolean;
|
|
576
|
+
readonly trend?: ExcelChartTrendConfiguration;
|
|
577
|
+
}
|
|
578
|
+
interface ExcelChartTrendConfiguration {
|
|
579
|
+
readonly type?: ExcelTrendlineType;
|
|
580
|
+
readonly order?: number;
|
|
581
|
+
readonly color?: Color;
|
|
582
|
+
readonly window?: number;
|
|
575
583
|
}
|
|
584
|
+
type ExcelTrendlineType = "poly" | "exp" | "log" | "movingAvg" | "linear";
|
|
576
585
|
type ExcelChartType = "line" | "bar" | "pie" | "combo" | "scatter" | "radar";
|
|
577
586
|
interface ExcelChartDefinition {
|
|
578
587
|
readonly title?: TitleDesign;
|
|
@@ -1398,6 +1407,11 @@ declare class Session extends EventBus<CollaborativeEvent> {
|
|
|
1398
1407
|
*/
|
|
1399
1408
|
private debouncedMove;
|
|
1400
1409
|
private pendingMessages;
|
|
1410
|
+
/**
|
|
1411
|
+
* Stored position of the client, if session.move is called while the client is not in a session.
|
|
1412
|
+
* Will be used to send the position to the server when the client joins.
|
|
1413
|
+
*/
|
|
1414
|
+
private awaitingClientPosition;
|
|
1401
1415
|
private waitingAck;
|
|
1402
1416
|
/**
|
|
1403
1417
|
* Flag used to block all commands when an undo or redo is triggered, until
|
|
@@ -1731,7 +1745,6 @@ type StatefulStream<Event, State> = {
|
|
|
1731
1745
|
resetDefaultAnchor: (owner: unknown, state: State) => void;
|
|
1732
1746
|
resetAnchor: (owner: unknown, state: State) => void;
|
|
1733
1747
|
observe: (owner: unknown, callbacks: StreamCallbacks<Event>) => void;
|
|
1734
|
-
detachObserver: (owner: unknown) => void;
|
|
1735
1748
|
release: (owner: unknown) => void;
|
|
1736
1749
|
getBackToDefault(): void;
|
|
1737
1750
|
};
|
|
@@ -3632,7 +3645,7 @@ interface Border$1 {
|
|
|
3632
3645
|
type ReferenceDenormalizer = (range: Range, isMeta: boolean, functionName: string, paramNumber: number) => FunctionResultObject;
|
|
3633
3646
|
type EnsureRange = (range: Range) => Matrix<FunctionResultObject>;
|
|
3634
3647
|
type GetSymbolValue = (symbolName: string) => Arg;
|
|
3635
|
-
type FormulaToExecute = (deps: Range[], refFn: ReferenceDenormalizer, range: EnsureRange, getSymbolValue: GetSymbolValue, ctx:
|
|
3648
|
+
type FormulaToExecute = (deps: Range[], refFn: ReferenceDenormalizer, range: EnsureRange, getSymbolValue: GetSymbolValue, ctx: object) => Matrix<FunctionResultObject> | FunctionResultObject;
|
|
3636
3649
|
interface CompiledFormula {
|
|
3637
3650
|
execute: FormulaToExecute;
|
|
3638
3651
|
tokens: Token[];
|
|
@@ -8131,17 +8144,6 @@ declare class TextValueProvider extends Component<Props$U> {
|
|
|
8131
8144
|
setup(): void;
|
|
8132
8145
|
}
|
|
8133
8146
|
|
|
8134
|
-
declare class AutoCompleteStore extends SpreadsheetStore {
|
|
8135
|
-
mutators: readonly ["useProvider", "moveSelection", "hide", "selectIndex"];
|
|
8136
|
-
selectedIndex: number | undefined;
|
|
8137
|
-
provider: AutoCompleteProvider | undefined;
|
|
8138
|
-
get selectedProposal(): AutoCompleteProposal | undefined;
|
|
8139
|
-
useProvider(provider: AutoCompleteProvider): void;
|
|
8140
|
-
hide(): void;
|
|
8141
|
-
selectIndex(index: number): void;
|
|
8142
|
-
moveSelection(direction: "previous" | "next"): void;
|
|
8143
|
-
}
|
|
8144
|
-
|
|
8145
8147
|
declare class ContentEditableHelper {
|
|
8146
8148
|
el: HTMLElement;
|
|
8147
8149
|
constructor(el: HTMLElement);
|
|
@@ -8236,7 +8238,7 @@ interface ComposerSelection {
|
|
|
8236
8238
|
end: number;
|
|
8237
8239
|
}
|
|
8238
8240
|
declare abstract class AbstractComposerStore extends SpreadsheetStore {
|
|
8239
|
-
mutators: readonly ["startEdition", "setCurrentContent", "stopEdition", "stopComposerRangeSelection", "cancelEdition", "cycleReferences", "toggleEditionMode", "changeComposerCursorSelection", "replaceComposerCursorSelection", "hoverToken"];
|
|
8241
|
+
mutators: readonly ["startEdition", "setCurrentContent", "stopEdition", "stopComposerRangeSelection", "cancelEdition", "cycleReferences", "hideHelp", "autoCompleteOrStop", "insertAutoCompleteValue", "moveAutoCompleteSelection", "selectAutoCompleteIndex", "toggleEditionMode", "changeComposerCursorSelection", "replaceComposerCursorSelection", "hoverToken"];
|
|
8240
8242
|
protected col: HeaderIndex;
|
|
8241
8243
|
protected row: HeaderIndex;
|
|
8242
8244
|
editionMode: EditionMode;
|
|
@@ -8247,12 +8249,14 @@ declare abstract class AbstractComposerStore extends SpreadsheetStore {
|
|
|
8247
8249
|
protected selectionEnd: number;
|
|
8248
8250
|
protected initialContent: string | undefined;
|
|
8249
8251
|
private colorIndexByRange;
|
|
8252
|
+
private autoComplete;
|
|
8250
8253
|
hoveredTokens: EnrichedToken[];
|
|
8251
8254
|
hoveredContentEvaluation: string;
|
|
8255
|
+
private autoCompleteKeepLast;
|
|
8252
8256
|
protected notificationStore: {
|
|
8253
8257
|
readonly notifyUser: (notification: InformationNotification) => void;
|
|
8254
|
-
readonly raiseError: (text: string, callback?: (() => void) | undefined) => void;
|
|
8255
8258
|
readonly askConfirmation: (content: string, confirm: () => void, cancel?: (() => void) | undefined) => void;
|
|
8259
|
+
readonly raiseError: (text: string, callback?: (() => void) | undefined) => void;
|
|
8256
8260
|
readonly updateNotificationCallbacks: (methods: Partial<NotificationStoreMethods>) => void;
|
|
8257
8261
|
readonly mutators: readonly ["notifyUser", "raiseError", "askConfirmation", "updateNotificationCallbacks"];
|
|
8258
8262
|
};
|
|
@@ -8277,6 +8281,9 @@ declare abstract class AbstractComposerStore extends SpreadsheetStore {
|
|
|
8277
8281
|
* Return the (enriched) token just before the cursor.
|
|
8278
8282
|
*/
|
|
8279
8283
|
get tokenAtCursor(): EnrichedToken | undefined;
|
|
8284
|
+
get autoCompleteProposals(): AutoCompleteProposal[];
|
|
8285
|
+
get autoCompleteSelectedIndex(): number | undefined;
|
|
8286
|
+
get isAutoCompleteDisplayed(): boolean;
|
|
8280
8287
|
cycleReferences(): void;
|
|
8281
8288
|
toggleEditionMode(): void;
|
|
8282
8289
|
hoverToken(tokenIndex: number | undefined): void;
|
|
@@ -8350,7 +8357,13 @@ declare abstract class AbstractComposerStore extends SpreadsheetStore {
|
|
|
8350
8357
|
* Return ranges currently referenced in the composer
|
|
8351
8358
|
*/
|
|
8352
8359
|
private getReferencedRanges;
|
|
8353
|
-
|
|
8360
|
+
private updateAutoCompleteProvider;
|
|
8361
|
+
private findAutocompleteProvider;
|
|
8362
|
+
hideHelp(): void;
|
|
8363
|
+
autoCompleteOrStop(direction: Direction$1): void;
|
|
8364
|
+
insertAutoCompleteValue(value: string): void;
|
|
8365
|
+
selectAutoCompleteIndex(index: number): void;
|
|
8366
|
+
moveAutoCompleteSelection(direction: "previous" | "next"): void;
|
|
8354
8367
|
/**
|
|
8355
8368
|
* Function used to determine when composer selection can start.
|
|
8356
8369
|
* Three conditions are necessary:
|
|
@@ -8460,7 +8473,6 @@ declare class Composer extends Component<CellComposerProps, SpreadsheetChildEnv>
|
|
|
8460
8473
|
};
|
|
8461
8474
|
contentHelper: ContentEditableHelper;
|
|
8462
8475
|
composerState: ComposerState;
|
|
8463
|
-
autoCompleteState: Store<AutoCompleteStore>;
|
|
8464
8476
|
functionDescriptionState: FunctionDescriptionState;
|
|
8465
8477
|
assistant: {
|
|
8466
8478
|
forcedClosed: boolean;
|
|
@@ -8497,7 +8509,6 @@ declare class Composer extends Component<CellComposerProps, SpreadsheetChildEnv>
|
|
|
8497
8509
|
onInput(ev: InputEvent): void;
|
|
8498
8510
|
onKeyup(ev: KeyboardEvent): void;
|
|
8499
8511
|
onBlur(ev: FocusEvent): void;
|
|
8500
|
-
updateAutoCompleteIndex(index: number): void;
|
|
8501
8512
|
/**
|
|
8502
8513
|
* This is required to ensure the content helper selection is
|
|
8503
8514
|
* properly updated on "onclick" events. Depending on the browser,
|
|
@@ -8541,7 +8552,7 @@ declare class Composer extends Component<CellComposerProps, SpreadsheetChildEnv>
|
|
|
8541
8552
|
* This function computes all the possible arguments to focus for different numbers of arguments supplied.
|
|
8542
8553
|
*/
|
|
8543
8554
|
private getArgsToFocus;
|
|
8544
|
-
|
|
8555
|
+
autoComplete(value: string): void;
|
|
8545
8556
|
get displaySpeechBubble(): boolean;
|
|
8546
8557
|
}
|
|
8547
8558
|
|
|
@@ -8589,60 +8600,12 @@ interface AutoCompleteProviderDefinition {
|
|
|
8589
8600
|
getProposals(this: {
|
|
8590
8601
|
composer: ComposerStoreInterface;
|
|
8591
8602
|
getters: Getters;
|
|
8592
|
-
}, tokenAtCursor: EnrichedToken, content: string): AutoCompleteProposal[] | undefined;
|
|
8603
|
+
}, tokenAtCursor: EnrichedToken, content: string): AutoCompleteProposal[] | Promise<AutoCompleteProposal[]> | undefined;
|
|
8593
8604
|
selectProposal(this: {
|
|
8594
8605
|
composer: ComposerStoreInterface;
|
|
8595
8606
|
}, tokenAtCursor: EnrichedToken, text: string): void;
|
|
8596
8607
|
}
|
|
8597
8608
|
|
|
8598
|
-
/**
|
|
8599
|
-
* An AutofillRule is used to generate what to do when we need to autofill
|
|
8600
|
-
* a cell. (In a AutofillGenerator, see plugins/autofill.ts)
|
|
8601
|
-
*
|
|
8602
|
-
* When we generate the rules to autofill, we take the first matching rule
|
|
8603
|
-
* (ordered by sequence), and we generate the AutofillModifier with generateRule
|
|
8604
|
-
*/
|
|
8605
|
-
interface AutofillRule {
|
|
8606
|
-
condition: (cell: Cell, cells: (Cell | undefined)[]) => boolean;
|
|
8607
|
-
generateRule: (cell: Cell, cells: (Cell | undefined)[], direction: DIRECTION) => AutofillModifier;
|
|
8608
|
-
sequence: number;
|
|
8609
|
-
}
|
|
8610
|
-
|
|
8611
|
-
/**
|
|
8612
|
-
* This registry is intended to map a type of figure (tag) to a class of
|
|
8613
|
-
* component, that will be used in the UI to represent the figure.
|
|
8614
|
-
*
|
|
8615
|
-
* The most important type of figure will be the Chart
|
|
8616
|
-
*/
|
|
8617
|
-
interface FigureContent {
|
|
8618
|
-
Component: any;
|
|
8619
|
-
menuBuilder: (figureId: UID, onFigureDeleted: () => void, env: SpreadsheetChildEnv) => Action[];
|
|
8620
|
-
SidePanelComponent?: string;
|
|
8621
|
-
keepRatio?: boolean;
|
|
8622
|
-
minFigSize?: number;
|
|
8623
|
-
borderWidth?: number;
|
|
8624
|
-
}
|
|
8625
|
-
|
|
8626
|
-
/**
|
|
8627
|
-
* The class Registry is extended in order to add the function addChild
|
|
8628
|
-
*
|
|
8629
|
-
*/
|
|
8630
|
-
declare class MenuItemRegistry extends Registry<ActionSpec> {
|
|
8631
|
-
/**
|
|
8632
|
-
* @override
|
|
8633
|
-
*/
|
|
8634
|
-
add(key: string, value: ActionSpec): MenuItemRegistry;
|
|
8635
|
-
/**
|
|
8636
|
-
* Add a subitem to an existing item
|
|
8637
|
-
* @param path Path of items to add this subitem
|
|
8638
|
-
* @param value Subitem to add
|
|
8639
|
-
*/
|
|
8640
|
-
addChild(key: string, path: string[], value: ActionSpec | ActionBuilder, options?: {
|
|
8641
|
-
force: boolean;
|
|
8642
|
-
}): MenuItemRegistry;
|
|
8643
|
-
getMenuItems(): Action[];
|
|
8644
|
-
}
|
|
8645
|
-
|
|
8646
8609
|
interface Props$R {
|
|
8647
8610
|
onConfirm: (content: string) => void;
|
|
8648
8611
|
composerContent: string;
|
|
@@ -8847,6 +8810,21 @@ interface ChartSidePanel {
|
|
|
8847
8810
|
design: new (...args: any) => Component;
|
|
8848
8811
|
}
|
|
8849
8812
|
|
|
8813
|
+
/**
|
|
8814
|
+
* This registry is intended to map a type of figure (tag) to a class of
|
|
8815
|
+
* component, that will be used in the UI to represent the figure.
|
|
8816
|
+
*
|
|
8817
|
+
* The most important type of figure will be the Chart
|
|
8818
|
+
*/
|
|
8819
|
+
interface FigureContent {
|
|
8820
|
+
Component: any;
|
|
8821
|
+
menuBuilder: (figureId: UID, onFigureDeleted: () => void, env: SpreadsheetChildEnv) => Action[];
|
|
8822
|
+
SidePanelComponent?: string;
|
|
8823
|
+
keepRatio?: boolean;
|
|
8824
|
+
minFigSize?: number;
|
|
8825
|
+
borderWidth?: number;
|
|
8826
|
+
}
|
|
8827
|
+
|
|
8850
8828
|
interface SidePanelProps {
|
|
8851
8829
|
onCloseSidePanel?: () => void;
|
|
8852
8830
|
[key: string]: any;
|
|
@@ -8887,6 +8865,39 @@ interface SidePanelContent {
|
|
|
8887
8865
|
computeState?: (getters: Getters, initialProps: object) => SidePanelState;
|
|
8888
8866
|
}
|
|
8889
8867
|
|
|
8868
|
+
/**
|
|
8869
|
+
* The class Registry is extended in order to add the function addChild
|
|
8870
|
+
*
|
|
8871
|
+
*/
|
|
8872
|
+
declare class MenuItemRegistry extends Registry<ActionSpec> {
|
|
8873
|
+
/**
|
|
8874
|
+
* @override
|
|
8875
|
+
*/
|
|
8876
|
+
add(key: string, value: ActionSpec): MenuItemRegistry;
|
|
8877
|
+
/**
|
|
8878
|
+
* Add a subitem to an existing item
|
|
8879
|
+
* @param path Path of items to add this subitem
|
|
8880
|
+
* @param value Subitem to add
|
|
8881
|
+
*/
|
|
8882
|
+
addChild(key: string, path: string[], value: ActionSpec | ActionBuilder, options?: {
|
|
8883
|
+
force: boolean;
|
|
8884
|
+
}): MenuItemRegistry;
|
|
8885
|
+
getMenuItems(): Action[];
|
|
8886
|
+
}
|
|
8887
|
+
|
|
8888
|
+
/**
|
|
8889
|
+
* An AutofillRule is used to generate what to do when we need to autofill
|
|
8890
|
+
* a cell. (In a AutofillGenerator, see plugins/autofill.ts)
|
|
8891
|
+
*
|
|
8892
|
+
* When we generate the rules to autofill, we take the first matching rule
|
|
8893
|
+
* (ordered by sequence), and we generate the AutofillModifier with generateRule
|
|
8894
|
+
*/
|
|
8895
|
+
interface AutofillRule {
|
|
8896
|
+
condition: (cell: Cell, cells: (Cell | undefined)[]) => boolean;
|
|
8897
|
+
generateRule: (cell: Cell, cells: (Cell | undefined)[], direction: DIRECTION) => AutofillModifier;
|
|
8898
|
+
sequence: number;
|
|
8899
|
+
}
|
|
8900
|
+
|
|
8890
8901
|
declare function transformRangeData(range: RangeData, executed: CoreCommand): RangeData | undefined;
|
|
8891
8902
|
|
|
8892
8903
|
interface ComposerInterface {
|
|
@@ -10673,17 +10684,11 @@ declare function toJsDate(data: FunctionResultObject | CellValue | undefined, lo
|
|
|
10673
10684
|
|
|
10674
10685
|
declare function arg(definition: string, description?: string): ArgDefinition;
|
|
10675
10686
|
|
|
10676
|
-
interface FunctionRegistry extends Registry<FunctionDescription> {
|
|
10677
|
-
add(functionName: string, addDescr: AddFunctionDescription): FunctionRegistry;
|
|
10678
|
-
get(functionName: string): FunctionDescription;
|
|
10679
|
-
mapping: {
|
|
10680
|
-
[functionName: string]: ComputeFunction<Matrix<FunctionResultObject> | FunctionResultObject>;
|
|
10681
|
-
};
|
|
10682
|
-
}
|
|
10683
10687
|
declare class FunctionRegistry extends Registry<FunctionDescription> {
|
|
10684
10688
|
mapping: {
|
|
10685
10689
|
[key: string]: ComputeFunction<Matrix<FunctionResultObject> | FunctionResultObject>;
|
|
10686
10690
|
};
|
|
10691
|
+
add(name: string, addDescr: AddFunctionDescription): this;
|
|
10687
10692
|
}
|
|
10688
10693
|
|
|
10689
10694
|
/**
|
|
@@ -12452,6 +12457,12 @@ declare const chartHelpers: {
|
|
|
12452
12457
|
isTrendLineAxis(axisID: string): axisID is "x1" | "xMovingAverage";
|
|
12453
12458
|
TREND_LINE_XAXIS_ID: "x1";
|
|
12454
12459
|
MOVING_AVERAGE_TREND_LINE_XAXIS_ID: "xMovingAverage";
|
|
12460
|
+
SPREADSHEET_TO_EXCEL_TRENDLINE_TYPE_MAPPING: {
|
|
12461
|
+
readonly exponential: "exp";
|
|
12462
|
+
readonly logarithmic: "log";
|
|
12463
|
+
readonly polynomial: "poly";
|
|
12464
|
+
readonly trailingMovingAverage: "movingAvg";
|
|
12465
|
+
};
|
|
12455
12466
|
CHART_AXIS_CHOICES: {
|
|
12456
12467
|
value: string;
|
|
12457
12468
|
label: string;
|
|
@@ -12477,4 +12488,4 @@ declare const chartHelpers: {
|
|
|
12477
12488
|
WaterfallChart: typeof WaterfallChart;
|
|
12478
12489
|
};
|
|
12479
12490
|
|
|
12480
|
-
export { AST, ASTFuncall, AboveAverageRule, AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, ActivateNextSheetCommand, ActivatePreviousSheetCommand, ActivateSheetCommand, AddColumnsRowsCommand, AddConditionalFormatCommand, AddDataValidationCommand, AddFunctionDescription, AddMergeCommand, AddPivotCommand, Aggregator, Alias, Align, AlphanumericIncrementModifier, AnchorOffset, 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, BorderPosition, BorderStyle, Box, BoxTextContent, CHART_TYPES, CSSProperties, CancelledReason, Cell, CellErrorType, CellIsRule, CellPosition, CellValue, CellValueType, ChangeType, ChartAxisFormats, ChartCreationContext, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartRuntimeGenerationArgs, ChartStyle, ChartType, ChartWithAxisDefinition, ChartWithDataSetDefinition, CleanClipBoardHighlightCommand, ClearCellCommand, ClearCellsCommand, ClearFormattingCommand, Client, ClientId, ClientJoinedMessage, ClientLeftMessage, ClientMovedMessage, ClientPosition, ClipboardCell, ClipboardCellData, ClipboardData, ClipboardFigureData, ClipboardMIMEType, ClipboardOperation, ClipboardOptions, ClipboardPasteOptions, ClipboardPasteTarget, Cloneable, CollaborationMessage, CollaborativeEvent, CollaborativeEventReceived, CollaborativeEventTypes, Color, ColorScaleMidPointThreshold, ColorScaleRule, ColorScaleThreshold, ColorSheetCommand, Command, CommandDispatcher, CommandHandler, CommandResult, CommandTypes, CommonPivotCoreDefinition, CompiledFormula, ComposerFocusType, ComputeFunction, ComputedTableStyle, ConditionalFormat, ConditionalFormatInternal, ConditionalFormatRule, ConditionalFormatRuleInternal, ConditionalFormattingOperatorValues, ConsecutiveIndexes, ContainsTextRule, CopyCommand, CopyModifier, CopyPasteCellsAboveCommand, CopyPasteCellsOnLeftCommand, CoreCommand, CoreCommandDispatcher, CoreCommandTypes, CoreGetters, CorePlugin, CoreTable, CoreTableType, CoreViewCommand, CoreViewCommandTypes, CoreViewPlugin, CreateChartCommand, CreateFigureCommand, CreateImageOverCommand, CreateRevisionOptions, CreateSheetCommand, CreateTableCommand, CreateTableStyleCommand, Currency, CustomFormulaCriterion, CustomizedDataSet, CutCommand, DEFAULT_LOCALE, DEFAULT_LOCALES, DIRECTION, DOMCoordinates, DOMDimension, DataBarFill, DataBarRule, DataBarRuleInternal, DataSet, DataValidationCriterion, DataValidationCriterionType, DataValidationDateCriterion, DataValidationRule, DataValidationRuleData, DatasetDesign, DatasetValues, DateCriterionValue, DateIncrementModifier, DateIsAfterCriterion, DateIsBeforeCriterion, DateIsBetweenCriterion, DateIsCriterion, DateIsNotBetweenCriterion, DateIsOnOrAfterCriterion, DateIsOnOrBeforeCriterion, DateIsValidCriterion, DebouncedFunction, DeleteCellCommand, DeleteContentCommand, DeleteFigureCommand, DeleteSheetCommand, DeleteUnfilteredContentCommand, Dependencies, Dimension, DimensionTree, DimensionTreeNode, Direction$1 as Direction, DispatchResult, DuplicatePivotCommand, DuplicatePivotInNewSheetCommand, DuplicateSheetCommand, DynamicTable, EdgeScrollInfo, EditTextOptions, EditionMode, EmptyCell, EndsWithRule, EnrichedToken, EnsureRange, ErrorCell, EvalContext, EvaluateCellsCommand, EvaluateChartsCommand, EvaluatedCell, EvaluationError, ExcelChartDataset, ExcelChartDefinition, ExcelChartType, ExcelFigureSize, ExcelFilterData, ExcelHeaderData, ExcelSheetData, ExcelTableData, ExcelWorkbookData, ExpressionRule, Figure, FigureData, FigureInfo, FigureSize, FigureUI, Filter, FilterId, FoldAllHeaderGroupsCommand, FoldHeaderGroupCommand, FoldHeaderGroupsInZoneCommand, Format, FormattedValue, FormulaCell, FormulaModifier, FormulaToExecute, FreezeColumnsCommand, FreezeRowsCommand, FunctionDescription, FunctionRegistry, FunctionResultNumber, FunctionResultObject, GeneratorCell, GenericDefinition, GetSymbolValue, Getters, Granularity, GridClickModifiers, GridRenderingContext, GroupHeadersCommand, HSLA, HeaderData, HeaderDimensions, HeaderGroup, HeaderIndex, HeadersDependentCommand, HideColumnsRowsCommand, HideSheetCommand, Highlight$1 as Highlight, HistoryChange, IconSet, IconSetRule, IconThreshold, Image, Immutable, Increment, IncrementModifier, InformationNotification, InitPivotParams, InsertCellCommand, InsertNewPivotCommand, InsertPivotCommand, InsertPivotWithTableCommand, IsBetweenCriterion, IsCheckboxCriterion, IsEqualCriterion, IsGreaterOrEqualToCriterion, IsGreaterThanCriterion, IsLessOrEqualToCriterion, IsLessThanCriterion, IsNotBetweenCriterion, IsNotEqualCriterion, IsValueInListCriterion, IsValueInRangeCriterion, LabelValues, LayerName, Lazy, Link, LiteralCell, LocalCommand, Locale, LocaleCode, LocaleFormat, LookupCaches, Matrix, Maybe, MenuMouseEvent, Merge, Model, MoveColumnsRowsCommand, MoveConditionalFormatCommand, MoveRangeCommand, MoveSheetCommand, MoveViewportDownCommand, MoveViewportToCellCommand, MoveViewportUpCommand, NewLocalStateUpdateEvent, NotContainsTextRule, NotificationType, NumberCell, OSClipboardContent, Offset, OperationSequenceNode, OrderedLayers, PaintFormat, PaneDivision, ParsedOSClipboardContent, ParsedOsClipboardContentWithImageData, PasteCommand, PasteFromOSClipboardCommand, Pivot, PivotColRowDomain, PivotCoreDefinition, PivotCoreDimension, PivotCoreMeasure, PivotDimension$1 as PivotDimension, PivotDomain, PivotEmptyCell, PivotField, PivotFields, PivotHeaderCell, PivotMeasure, PivotMeasureDisplay, PivotMeasureDisplayType, PivotMeasureHeaderCell, PivotNode, PivotRuntimeDefinition, PivotSortedColumn, PivotTableCell, PivotTableColumn, PivotTableData, PivotTableRow, PivotTimeAdapter, PivotTimeAdapterNotNull, PivotValueCell, Pixel, PixelPosition, Position$1 as Position, PositionDependentCommand, PropsOf, RGBA, Range, RangeAdapter$1 as RangeAdapter, RangeCompiledFormula, RangeData, RangePart, RangeProvider, RangeStringOptions, 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, Row, SPREADSHEET_DIMENSIONS, ScrollDirection$1 as ScrollDirection, SelectFigureCommand, Selection, SelectionStep, SetBorderCommand, SetBorderTargetCommand, SetContextualFormatCommand, SetDecimalCommand, SetDecimalStep, SetFormattingCommand, SetGridLinesVisibilityCommand, SetViewportOffsetCommand, SetZoneBordersCommand, Sheet, SheetDOMScrollInfo, SheetData, SheetDependentCommand, SheetEditingCommand, ShowFormulaCommand, ShowSheetCommand, SingleColorRule, SingleColorRules, SnapshotEvent, SortCommand, SortDirection, SortOptions, SplitPivotFormulaCommand, SplitTextIntoColumnsCommand, Spreadsheet, SpreadsheetChildEnv, SpreadsheetPivotCoreDefinition, SpreadsheetPivotTable, StartChangeHighlightCommand, StartCommand, StaticTable, StoreConstructor, StoreParams, Style, SumSelectionCommand, Table, TableBorder, 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, TrendConfiguration, TrendType, 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, chartHelpers, compile, compileTokens, components, constants, containsBlanksRule, containsErrorsRule, convertAstNodes, coreTypes, findCellInNewZone, functionCache, helpers, hooks, invalidateBordersCommands, invalidateCFEvaluationCommands, invalidateChartEvaluationCommands, invalidateDependenciesCommands, invalidateEvaluationCommands, isCoreCommand, isHeadersDependant, isMatrix, isPositionDependent, isRangeDependant, isSheetDependent, isTargetDependent, isZoneDependent, iterateAstNodes, links, load, notContainsBlanksRule, notContainsErrorsRule, parse, parseTokens, readonlyAllowedCommands, registries, setDefaultSheetViewSize, setTranslationMethod, stores, tokenColors, tokenize };
|
|
12491
|
+
export { AST, ASTFuncall, AboveAverageRule, AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, ActivateNextSheetCommand, ActivatePreviousSheetCommand, ActivateSheetCommand, AddColumnsRowsCommand, AddConditionalFormatCommand, AddDataValidationCommand, AddFunctionDescription, AddMergeCommand, AddPivotCommand, Aggregator, Alias, Align, AlphanumericIncrementModifier, AnchorOffset, 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, BorderPosition, BorderStyle, Box, BoxTextContent, CHART_TYPES, CSSProperties, CancelledReason, Cell, CellErrorType, CellIsRule, CellPosition, CellValue, CellValueType, ChangeType, ChartAxisFormats, ChartCreationContext, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartRuntimeGenerationArgs, ChartStyle, ChartType, ChartWithAxisDefinition, ChartWithDataSetDefinition, CleanClipBoardHighlightCommand, ClearCellCommand, ClearCellsCommand, ClearFormattingCommand, Client, ClientId, ClientJoinedMessage, ClientLeftMessage, ClientMovedMessage, ClientPosition, ClipboardCell, ClipboardCellData, ClipboardData, ClipboardFigureData, ClipboardMIMEType, ClipboardOperation, ClipboardOptions, ClipboardPasteOptions, ClipboardPasteTarget, Cloneable, CollaborationMessage, CollaborativeEvent, CollaborativeEventReceived, CollaborativeEventTypes, Color, ColorScaleMidPointThreshold, ColorScaleRule, ColorScaleThreshold, ColorSheetCommand, Command, CommandDispatcher, CommandHandler, CommandResult, CommandTypes, CommonPivotCoreDefinition, CompiledFormula, ComposerFocusType, ComputeFunction, ComputedTableStyle, ConditionalFormat, ConditionalFormatInternal, ConditionalFormatRule, ConditionalFormatRuleInternal, ConditionalFormattingOperatorValues, ConsecutiveIndexes, ContainsTextRule, CopyCommand, CopyModifier, CopyPasteCellsAboveCommand, CopyPasteCellsOnLeftCommand, CoreCommand, CoreCommandDispatcher, CoreCommandTypes, CoreGetters, CorePlugin, CoreTable, CoreTableType, CoreViewCommand, CoreViewCommandTypes, CoreViewPlugin, CreateChartCommand, CreateFigureCommand, CreateImageOverCommand, CreateRevisionOptions, CreateSheetCommand, CreateTableCommand, CreateTableStyleCommand, Currency, CustomFormulaCriterion, CustomizedDataSet, CutCommand, DEFAULT_LOCALE, DEFAULT_LOCALES, DIRECTION, DOMCoordinates, DOMDimension, DataBarFill, DataBarRule, DataBarRuleInternal, DataSet, DataValidationCriterion, DataValidationCriterionType, DataValidationDateCriterion, DataValidationRule, DataValidationRuleData, DatasetDesign, DatasetValues, DateCriterionValue, DateIncrementModifier, DateIsAfterCriterion, DateIsBeforeCriterion, DateIsBetweenCriterion, DateIsCriterion, DateIsNotBetweenCriterion, DateIsOnOrAfterCriterion, DateIsOnOrBeforeCriterion, DateIsValidCriterion, DebouncedFunction, DeleteCellCommand, DeleteContentCommand, DeleteFigureCommand, DeleteSheetCommand, DeleteUnfilteredContentCommand, Dependencies, Dimension, DimensionTree, DimensionTreeNode, Direction$1 as Direction, DispatchResult, DuplicatePivotCommand, DuplicatePivotInNewSheetCommand, DuplicateSheetCommand, DynamicTable, EdgeScrollInfo, EditTextOptions, EditionMode, EmptyCell, EndsWithRule, EnrichedToken, EnsureRange, ErrorCell, EvalContext, EvaluateCellsCommand, EvaluateChartsCommand, EvaluatedCell, EvaluationError, ExcelChartDataset, ExcelChartDefinition, ExcelChartTrendConfiguration, ExcelChartType, ExcelFigureSize, ExcelFilterData, ExcelHeaderData, ExcelSheetData, ExcelTableData, ExcelTrendlineType, ExcelWorkbookData, ExpressionRule, Figure, FigureData, FigureInfo, FigureSize, FigureUI, Filter, FilterId, FoldAllHeaderGroupsCommand, FoldHeaderGroupCommand, FoldHeaderGroupsInZoneCommand, Format, FormattedValue, FormulaCell, FormulaModifier, FormulaToExecute, FreezeColumnsCommand, FreezeRowsCommand, FunctionDescription, FunctionRegistry, FunctionResultNumber, FunctionResultObject, GeneratorCell, GenericDefinition, GetSymbolValue, Getters, Granularity, GridClickModifiers, GridRenderingContext, GroupHeadersCommand, HSLA, HeaderData, HeaderDimensions, HeaderGroup, HeaderIndex, HeadersDependentCommand, HideColumnsRowsCommand, HideSheetCommand, Highlight$1 as Highlight, HistoryChange, IconSet, IconSetRule, IconThreshold, Image, Immutable, Increment, IncrementModifier, InformationNotification, InitPivotParams, InsertCellCommand, InsertNewPivotCommand, InsertPivotCommand, InsertPivotWithTableCommand, IsBetweenCriterion, IsCheckboxCriterion, IsEqualCriterion, IsGreaterOrEqualToCriterion, IsGreaterThanCriterion, IsLessOrEqualToCriterion, IsLessThanCriterion, IsNotBetweenCriterion, IsNotEqualCriterion, IsValueInListCriterion, IsValueInRangeCriterion, LabelValues, LayerName, Lazy, Link, LiteralCell, LocalCommand, Locale, LocaleCode, LocaleFormat, LookupCaches, Matrix, Maybe, MenuMouseEvent, Merge, Model, MoveColumnsRowsCommand, MoveConditionalFormatCommand, MoveRangeCommand, MoveSheetCommand, MoveViewportDownCommand, MoveViewportToCellCommand, MoveViewportUpCommand, NewLocalStateUpdateEvent, NotContainsTextRule, NotificationType, NumberCell, OSClipboardContent, Offset, OperationSequenceNode, OrderedLayers, PaintFormat, PaneDivision, ParsedOSClipboardContent, ParsedOsClipboardContentWithImageData, PasteCommand, PasteFromOSClipboardCommand, Pivot, PivotColRowDomain, PivotCoreDefinition, PivotCoreDimension, PivotCoreMeasure, PivotDimension$1 as PivotDimension, PivotDomain, PivotEmptyCell, PivotField, PivotFields, PivotHeaderCell, PivotMeasure, PivotMeasureDisplay, PivotMeasureDisplayType, PivotMeasureHeaderCell, PivotNode, PivotRuntimeDefinition, PivotSortedColumn, PivotTableCell, PivotTableColumn, PivotTableData, PivotTableRow, PivotTimeAdapter, PivotTimeAdapterNotNull, PivotValueCell, Pixel, PixelPosition, Position$1 as Position, PositionDependentCommand, PropsOf, RGBA, Range, RangeAdapter$1 as RangeAdapter, RangeCompiledFormula, RangeData, RangePart, RangeProvider, RangeStringOptions, 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, Row, SPREADSHEET_DIMENSIONS, ScrollDirection$1 as ScrollDirection, SelectFigureCommand, Selection, SelectionStep, SetBorderCommand, SetBorderTargetCommand, SetContextualFormatCommand, SetDecimalCommand, SetDecimalStep, SetFormattingCommand, SetGridLinesVisibilityCommand, SetViewportOffsetCommand, SetZoneBordersCommand, Sheet, SheetDOMScrollInfo, SheetData, SheetDependentCommand, SheetEditingCommand, ShowFormulaCommand, ShowSheetCommand, SingleColorRule, SingleColorRules, SnapshotEvent, SortCommand, SortDirection, SortOptions, SplitPivotFormulaCommand, SplitTextIntoColumnsCommand, Spreadsheet, SpreadsheetChildEnv, SpreadsheetPivotCoreDefinition, SpreadsheetPivotTable, StartChangeHighlightCommand, StartCommand, StaticTable, StoreConstructor, StoreParams, Style, SumSelectionCommand, Table, TableBorder, 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, TrendConfiguration, TrendType, 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, chartHelpers, compile, compileTokens, components, constants, containsBlanksRule, containsErrorsRule, convertAstNodes, coreTypes, findCellInNewZone, functionCache, helpers, hooks, invalidateBordersCommands, invalidateCFEvaluationCommands, invalidateChartEvaluationCommands, invalidateDependenciesCommands, invalidateEvaluationCommands, isCoreCommand, isHeadersDependant, isMatrix, isPositionDependent, isRangeDependant, isSheetDependent, isTargetDependent, isZoneDependent, iterateAstNodes, links, load, notContainsBlanksRule, notContainsErrorsRule, parse, parseTokens, readonlyAllowedCommands, registries, setDefaultSheetViewSize, setTranslationMethod, stores, tokenColors, tokenize };
|