@odoo/o-spreadsheet 18.3.2 → 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 +40838 -40780
- package/dist/o-spreadsheet.d.ts +91 -85
- package/dist/o-spreadsheet.esm.js +40839 -40781
- package/dist/o-spreadsheet.iife.js +40844 -40786
- package/dist/o-spreadsheet.iife.min.js +1696 -1674
- package/dist/o_spreadsheet.xml +13 -13
- package/package.json +11 -6
package/dist/o-spreadsheet.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ import * as _odoo_owl from '@odoo/owl';
|
|
|
6
6
|
import { ComponentConstructor, Component } from '@odoo/owl';
|
|
7
7
|
import * as chart_js_dist_types_utils from 'chart.js/dist/types/utils';
|
|
8
8
|
import * as chart_js_dist_types_geometric from 'chart.js/dist/types/geometric';
|
|
9
|
+
import * as chart_js_dist_types_basic from 'chart.js/dist/types/basic';
|
|
9
10
|
|
|
10
11
|
interface FigureInfo {
|
|
11
12
|
id: UID;
|
|
@@ -561,6 +562,7 @@ interface DataSet {
|
|
|
561
562
|
readonly rightYAxis?: boolean;
|
|
562
563
|
readonly backgroundColor?: Color;
|
|
563
564
|
readonly customLabel?: string;
|
|
565
|
+
readonly trend?: TrendConfiguration;
|
|
564
566
|
}
|
|
565
567
|
interface ExcelChartDataset {
|
|
566
568
|
readonly label?: {
|
|
@@ -571,7 +573,15 @@ interface ExcelChartDataset {
|
|
|
571
573
|
readonly range: string;
|
|
572
574
|
readonly backgroundColor?: Color;
|
|
573
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;
|
|
574
583
|
}
|
|
584
|
+
type ExcelTrendlineType = "poly" | "exp" | "log" | "movingAvg" | "linear";
|
|
575
585
|
type ExcelChartType = "line" | "bar" | "pie" | "combo" | "scatter" | "radar";
|
|
576
586
|
interface ExcelChartDefinition {
|
|
577
587
|
readonly title?: TitleDesign;
|
|
@@ -1397,6 +1407,11 @@ declare class Session extends EventBus<CollaborativeEvent> {
|
|
|
1397
1407
|
*/
|
|
1398
1408
|
private debouncedMove;
|
|
1399
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;
|
|
1400
1415
|
private waitingAck;
|
|
1401
1416
|
/**
|
|
1402
1417
|
* Flag used to block all commands when an undo or redo is triggered, until
|
|
@@ -1730,7 +1745,6 @@ type StatefulStream<Event, State> = {
|
|
|
1730
1745
|
resetDefaultAnchor: (owner: unknown, state: State) => void;
|
|
1731
1746
|
resetAnchor: (owner: unknown, state: State) => void;
|
|
1732
1747
|
observe: (owner: unknown, callbacks: StreamCallbacks<Event>) => void;
|
|
1733
|
-
detachObserver: (owner: unknown) => void;
|
|
1734
1748
|
release: (owner: unknown) => void;
|
|
1735
1749
|
getBackToDefault(): void;
|
|
1736
1750
|
};
|
|
@@ -2741,7 +2755,6 @@ interface DeleteSheetCommand extends SheetDependentCommand, SheetEditingCommand
|
|
|
2741
2755
|
interface DuplicateSheetCommand extends SheetDependentCommand {
|
|
2742
2756
|
type: "DUPLICATE_SHEET";
|
|
2743
2757
|
sheetIdTo: UID;
|
|
2744
|
-
sheetNameTo: string;
|
|
2745
2758
|
}
|
|
2746
2759
|
interface MoveSheetCommand extends SheetDependentCommand {
|
|
2747
2760
|
type: "MOVE_SHEET";
|
|
@@ -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[];
|
|
@@ -4660,7 +4673,6 @@ declare class ChartPlugin extends CorePlugin<ChartState> implements ChartState {
|
|
|
4660
4673
|
private addChart;
|
|
4661
4674
|
private checkChartDuplicate;
|
|
4662
4675
|
private checkChartExists;
|
|
4663
|
-
private checkChartChanged;
|
|
4664
4676
|
}
|
|
4665
4677
|
|
|
4666
4678
|
interface ConditionalFormatState {
|
|
@@ -5085,7 +5097,7 @@ interface SheetState {
|
|
|
5085
5097
|
readonly cellPosition: Record<UID, CellPosition | undefined>;
|
|
5086
5098
|
}
|
|
5087
5099
|
declare class SheetPlugin extends CorePlugin<SheetState> implements SheetState {
|
|
5088
|
-
static getters: readonly ["getSheetName", "tryGetSheetName", "getSheet", "tryGetSheet", "getSheetIdByName", "getSheetIds", "getVisibleSheetIds", "isSheetVisible", "doesHeaderExist", "doesHeadersExist", "getCell", "getCellPosition", "getColsZone", "getRowCells", "getRowsZone", "getNumberCols", "getNumberRows", "getNumberHeaders", "getGridLinesVisibility", "getNextSheetName", "getSheetSize", "getSheetZone", "getPaneDivisions", "checkZonesExistInSheet", "getCommandZones", "getUnboundedZone", "checkElementsIncludeAllNonFrozenHeaders"
|
|
5100
|
+
static getters: readonly ["getSheetName", "tryGetSheetName", "getSheet", "tryGetSheet", "getSheetIdByName", "getSheetIds", "getVisibleSheetIds", "isSheetVisible", "doesHeaderExist", "doesHeadersExist", "getCell", "getCellPosition", "getColsZone", "getRowCells", "getRowsZone", "getNumberCols", "getNumberRows", "getNumberHeaders", "getGridLinesVisibility", "getNextSheetName", "getSheetSize", "getSheetZone", "getPaneDivisions", "checkZonesExistInSheet", "getCommandZones", "getUnboundedZone", "checkElementsIncludeAllNonFrozenHeaders"];
|
|
5089
5101
|
readonly sheetIdsMapName: Record<string, UID | undefined>;
|
|
5090
5102
|
readonly orderedSheetIds: UID[];
|
|
5091
5103
|
readonly sheets: Record<UID, Sheet | undefined>;
|
|
@@ -5162,7 +5174,7 @@ declare class SheetPlugin extends CorePlugin<SheetState> implements SheetState {
|
|
|
5162
5174
|
private hideSheet;
|
|
5163
5175
|
private showSheet;
|
|
5164
5176
|
private duplicateSheet;
|
|
5165
|
-
getDuplicateSheetName
|
|
5177
|
+
private getDuplicateSheetName;
|
|
5166
5178
|
private deleteSheet;
|
|
5167
5179
|
/**
|
|
5168
5180
|
* Delete column. This requires a lot of handling:
|
|
@@ -8132,17 +8144,6 @@ declare class TextValueProvider extends Component<Props$U> {
|
|
|
8132
8144
|
setup(): void;
|
|
8133
8145
|
}
|
|
8134
8146
|
|
|
8135
|
-
declare class AutoCompleteStore extends SpreadsheetStore {
|
|
8136
|
-
mutators: readonly ["useProvider", "moveSelection", "hide", "selectIndex"];
|
|
8137
|
-
selectedIndex: number | undefined;
|
|
8138
|
-
provider: AutoCompleteProvider | undefined;
|
|
8139
|
-
get selectedProposal(): AutoCompleteProposal | undefined;
|
|
8140
|
-
useProvider(provider: AutoCompleteProvider): void;
|
|
8141
|
-
hide(): void;
|
|
8142
|
-
selectIndex(index: number): void;
|
|
8143
|
-
moveSelection(direction: "previous" | "next"): void;
|
|
8144
|
-
}
|
|
8145
|
-
|
|
8146
8147
|
declare class ContentEditableHelper {
|
|
8147
8148
|
el: HTMLElement;
|
|
8148
8149
|
constructor(el: HTMLElement);
|
|
@@ -8237,7 +8238,7 @@ interface ComposerSelection {
|
|
|
8237
8238
|
end: number;
|
|
8238
8239
|
}
|
|
8239
8240
|
declare abstract class AbstractComposerStore extends SpreadsheetStore {
|
|
8240
|
-
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"];
|
|
8241
8242
|
protected col: HeaderIndex;
|
|
8242
8243
|
protected row: HeaderIndex;
|
|
8243
8244
|
editionMode: EditionMode;
|
|
@@ -8248,12 +8249,14 @@ declare abstract class AbstractComposerStore extends SpreadsheetStore {
|
|
|
8248
8249
|
protected selectionEnd: number;
|
|
8249
8250
|
protected initialContent: string | undefined;
|
|
8250
8251
|
private colorIndexByRange;
|
|
8252
|
+
private autoComplete;
|
|
8251
8253
|
hoveredTokens: EnrichedToken[];
|
|
8252
8254
|
hoveredContentEvaluation: string;
|
|
8255
|
+
private autoCompleteKeepLast;
|
|
8253
8256
|
protected notificationStore: {
|
|
8254
8257
|
readonly notifyUser: (notification: InformationNotification) => void;
|
|
8255
|
-
readonly raiseError: (text: string, callback?: (() => void) | undefined) => void;
|
|
8256
8258
|
readonly askConfirmation: (content: string, confirm: () => void, cancel?: (() => void) | undefined) => void;
|
|
8259
|
+
readonly raiseError: (text: string, callback?: (() => void) | undefined) => void;
|
|
8257
8260
|
readonly updateNotificationCallbacks: (methods: Partial<NotificationStoreMethods>) => void;
|
|
8258
8261
|
readonly mutators: readonly ["notifyUser", "raiseError", "askConfirmation", "updateNotificationCallbacks"];
|
|
8259
8262
|
};
|
|
@@ -8278,6 +8281,9 @@ declare abstract class AbstractComposerStore extends SpreadsheetStore {
|
|
|
8278
8281
|
* Return the (enriched) token just before the cursor.
|
|
8279
8282
|
*/
|
|
8280
8283
|
get tokenAtCursor(): EnrichedToken | undefined;
|
|
8284
|
+
get autoCompleteProposals(): AutoCompleteProposal[];
|
|
8285
|
+
get autoCompleteSelectedIndex(): number | undefined;
|
|
8286
|
+
get isAutoCompleteDisplayed(): boolean;
|
|
8281
8287
|
cycleReferences(): void;
|
|
8282
8288
|
toggleEditionMode(): void;
|
|
8283
8289
|
hoverToken(tokenIndex: number | undefined): void;
|
|
@@ -8351,7 +8357,13 @@ declare abstract class AbstractComposerStore extends SpreadsheetStore {
|
|
|
8351
8357
|
* Return ranges currently referenced in the composer
|
|
8352
8358
|
*/
|
|
8353
8359
|
private getReferencedRanges;
|
|
8354
|
-
|
|
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;
|
|
8355
8367
|
/**
|
|
8356
8368
|
* Function used to determine when composer selection can start.
|
|
8357
8369
|
* Three conditions are necessary:
|
|
@@ -8461,7 +8473,6 @@ declare class Composer extends Component<CellComposerProps, SpreadsheetChildEnv>
|
|
|
8461
8473
|
};
|
|
8462
8474
|
contentHelper: ContentEditableHelper;
|
|
8463
8475
|
composerState: ComposerState;
|
|
8464
|
-
autoCompleteState: Store<AutoCompleteStore>;
|
|
8465
8476
|
functionDescriptionState: FunctionDescriptionState;
|
|
8466
8477
|
assistant: {
|
|
8467
8478
|
forcedClosed: boolean;
|
|
@@ -8498,7 +8509,6 @@ declare class Composer extends Component<CellComposerProps, SpreadsheetChildEnv>
|
|
|
8498
8509
|
onInput(ev: InputEvent): void;
|
|
8499
8510
|
onKeyup(ev: KeyboardEvent): void;
|
|
8500
8511
|
onBlur(ev: FocusEvent): void;
|
|
8501
|
-
updateAutoCompleteIndex(index: number): void;
|
|
8502
8512
|
/**
|
|
8503
8513
|
* This is required to ensure the content helper selection is
|
|
8504
8514
|
* properly updated on "onclick" events. Depending on the browser,
|
|
@@ -8514,7 +8524,6 @@ declare class Composer extends Component<CellComposerProps, SpreadsheetChildEnv>
|
|
|
8514
8524
|
onContextMenu(ev: MouseEvent): void;
|
|
8515
8525
|
closeAssistant(): void;
|
|
8516
8526
|
openAssistant(): void;
|
|
8517
|
-
onWheel(event: WheelEvent): void;
|
|
8518
8527
|
private processContent;
|
|
8519
8528
|
/**
|
|
8520
8529
|
* Get the HTML content corresponding to the current composer token, divided by lines.
|
|
@@ -8543,7 +8552,7 @@ declare class Composer extends Component<CellComposerProps, SpreadsheetChildEnv>
|
|
|
8543
8552
|
* This function computes all the possible arguments to focus for different numbers of arguments supplied.
|
|
8544
8553
|
*/
|
|
8545
8554
|
private getArgsToFocus;
|
|
8546
|
-
|
|
8555
|
+
autoComplete(value: string): void;
|
|
8547
8556
|
get displaySpeechBubble(): boolean;
|
|
8548
8557
|
}
|
|
8549
8558
|
|
|
@@ -8591,60 +8600,12 @@ interface AutoCompleteProviderDefinition {
|
|
|
8591
8600
|
getProposals(this: {
|
|
8592
8601
|
composer: ComposerStoreInterface;
|
|
8593
8602
|
getters: Getters;
|
|
8594
|
-
}, tokenAtCursor: EnrichedToken, content: string): AutoCompleteProposal[] | undefined;
|
|
8603
|
+
}, tokenAtCursor: EnrichedToken, content: string): AutoCompleteProposal[] | Promise<AutoCompleteProposal[]> | undefined;
|
|
8595
8604
|
selectProposal(this: {
|
|
8596
8605
|
composer: ComposerStoreInterface;
|
|
8597
8606
|
}, tokenAtCursor: EnrichedToken, text: string): void;
|
|
8598
8607
|
}
|
|
8599
8608
|
|
|
8600
|
-
/**
|
|
8601
|
-
* An AutofillRule is used to generate what to do when we need to autofill
|
|
8602
|
-
* a cell. (In a AutofillGenerator, see plugins/autofill.ts)
|
|
8603
|
-
*
|
|
8604
|
-
* When we generate the rules to autofill, we take the first matching rule
|
|
8605
|
-
* (ordered by sequence), and we generate the AutofillModifier with generateRule
|
|
8606
|
-
*/
|
|
8607
|
-
interface AutofillRule {
|
|
8608
|
-
condition: (cell: Cell, cells: (Cell | undefined)[]) => boolean;
|
|
8609
|
-
generateRule: (cell: Cell, cells: (Cell | undefined)[], direction: DIRECTION) => AutofillModifier;
|
|
8610
|
-
sequence: number;
|
|
8611
|
-
}
|
|
8612
|
-
|
|
8613
|
-
/**
|
|
8614
|
-
* This registry is intended to map a type of figure (tag) to a class of
|
|
8615
|
-
* component, that will be used in the UI to represent the figure.
|
|
8616
|
-
*
|
|
8617
|
-
* The most important type of figure will be the Chart
|
|
8618
|
-
*/
|
|
8619
|
-
interface FigureContent {
|
|
8620
|
-
Component: any;
|
|
8621
|
-
menuBuilder: (figureId: UID, onFigureDeleted: () => void, env: SpreadsheetChildEnv) => Action[];
|
|
8622
|
-
SidePanelComponent?: string;
|
|
8623
|
-
keepRatio?: boolean;
|
|
8624
|
-
minFigSize?: number;
|
|
8625
|
-
borderWidth?: number;
|
|
8626
|
-
}
|
|
8627
|
-
|
|
8628
|
-
/**
|
|
8629
|
-
* The class Registry is extended in order to add the function addChild
|
|
8630
|
-
*
|
|
8631
|
-
*/
|
|
8632
|
-
declare class MenuItemRegistry extends Registry<ActionSpec> {
|
|
8633
|
-
/**
|
|
8634
|
-
* @override
|
|
8635
|
-
*/
|
|
8636
|
-
add(key: string, value: ActionSpec): MenuItemRegistry;
|
|
8637
|
-
/**
|
|
8638
|
-
* Add a subitem to an existing item
|
|
8639
|
-
* @param path Path of items to add this subitem
|
|
8640
|
-
* @param value Subitem to add
|
|
8641
|
-
*/
|
|
8642
|
-
addChild(key: string, path: string[], value: ActionSpec | ActionBuilder, options?: {
|
|
8643
|
-
force: boolean;
|
|
8644
|
-
}): MenuItemRegistry;
|
|
8645
|
-
getMenuItems(): Action[];
|
|
8646
|
-
}
|
|
8647
|
-
|
|
8648
8609
|
interface Props$R {
|
|
8649
8610
|
onConfirm: (content: string) => void;
|
|
8650
8611
|
composerContent: string;
|
|
@@ -8849,6 +8810,21 @@ interface ChartSidePanel {
|
|
|
8849
8810
|
design: new (...args: any) => Component;
|
|
8850
8811
|
}
|
|
8851
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
|
+
|
|
8852
8828
|
interface SidePanelProps {
|
|
8853
8829
|
onCloseSidePanel?: () => void;
|
|
8854
8830
|
[key: string]: any;
|
|
@@ -8889,6 +8865,39 @@ interface SidePanelContent {
|
|
|
8889
8865
|
computeState?: (getters: Getters, initialProps: object) => SidePanelState;
|
|
8890
8866
|
}
|
|
8891
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
|
+
|
|
8892
8901
|
declare function transformRangeData(range: RangeData, executed: CoreCommand): RangeData | undefined;
|
|
8893
8902
|
|
|
8894
8903
|
interface ComposerInterface {
|
|
@@ -10675,17 +10684,11 @@ declare function toJsDate(data: FunctionResultObject | CellValue | undefined, lo
|
|
|
10675
10684
|
|
|
10676
10685
|
declare function arg(definition: string, description?: string): ArgDefinition;
|
|
10677
10686
|
|
|
10678
|
-
interface FunctionRegistry extends Registry<FunctionDescription> {
|
|
10679
|
-
add(functionName: string, addDescr: AddFunctionDescription): FunctionRegistry;
|
|
10680
|
-
get(functionName: string): FunctionDescription;
|
|
10681
|
-
mapping: {
|
|
10682
|
-
[functionName: string]: ComputeFunction<Matrix<FunctionResultObject> | FunctionResultObject>;
|
|
10683
|
-
};
|
|
10684
|
-
}
|
|
10685
10687
|
declare class FunctionRegistry extends Registry<FunctionDescription> {
|
|
10686
10688
|
mapping: {
|
|
10687
10689
|
[key: string]: ComputeFunction<Matrix<FunctionResultObject> | FunctionResultObject>;
|
|
10688
10690
|
};
|
|
10691
|
+
add(name: string, addDescr: AddFunctionDescription): this;
|
|
10689
10692
|
}
|
|
10690
10693
|
|
|
10691
10694
|
/**
|
|
@@ -11780,10 +11783,7 @@ declare const registries: {
|
|
|
11780
11783
|
supportedPivotPositionalFormulaRegistry: Registry<boolean>;
|
|
11781
11784
|
pivotToFunctionValueRegistry: Registry<(value: CellValue, granularity?: string) => string>;
|
|
11782
11785
|
migrationStepRegistry: Registry<MigrationStep>;
|
|
11783
|
-
chartJsExtensionRegistry: Registry<
|
|
11784
|
-
register: (chart: typeof window.Chart) => void;
|
|
11785
|
-
unregister: (chart: typeof window.Chart) => void;
|
|
11786
|
-
}>;
|
|
11786
|
+
chartJsExtensionRegistry: Registry<chart_js.Plugin<keyof chart_js.ChartTypeRegistry, chart_js_dist_types_basic.AnyObject> | ((chart: typeof window.Chart) => void)>;
|
|
11787
11787
|
};
|
|
11788
11788
|
declare const helpers: {
|
|
11789
11789
|
arg: typeof arg;
|
|
@@ -12457,6 +12457,12 @@ declare const chartHelpers: {
|
|
|
12457
12457
|
isTrendLineAxis(axisID: string): axisID is "x1" | "xMovingAverage";
|
|
12458
12458
|
TREND_LINE_XAXIS_ID: "x1";
|
|
12459
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
|
+
};
|
|
12460
12466
|
CHART_AXIS_CHOICES: {
|
|
12461
12467
|
value: string;
|
|
12462
12468
|
label: string;
|
|
@@ -12482,4 +12488,4 @@ declare const chartHelpers: {
|
|
|
12482
12488
|
WaterfallChart: typeof WaterfallChart;
|
|
12483
12489
|
};
|
|
12484
12490
|
|
|
12485
|
-
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 };
|