@odoo/o-spreadsheet 18.1.1 → 18.2.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 +504 -355
- package/dist/o-spreadsheet.d.ts +66 -29
- package/dist/o-spreadsheet.esm.js +505 -357
- package/dist/o-spreadsheet.iife.js +504 -355
- package/dist/o-spreadsheet.iife.min.js +359 -348
- package/dist/o_spreadsheet.xml +3 -3
- package/package.json +2 -2
package/dist/o-spreadsheet.d.ts
CHANGED
|
@@ -1389,6 +1389,11 @@ declare function lazy<T>(fn: (() => T) | T): Lazy<T>;
|
|
|
1389
1389
|
* Compares two objects.
|
|
1390
1390
|
*/
|
|
1391
1391
|
declare function deepEquals(o1: any, o2: any): boolean;
|
|
1392
|
+
declare function getUniqueText(text: string, texts: string[], options?: {
|
|
1393
|
+
compute?: (text: string, increment: number) => string;
|
|
1394
|
+
start?: number;
|
|
1395
|
+
computeFirstOne?: boolean;
|
|
1396
|
+
}): string;
|
|
1392
1397
|
|
|
1393
1398
|
/**
|
|
1394
1399
|
* Return true if the argument is a "number string".
|
|
@@ -1665,6 +1670,7 @@ declare class Model extends EventBus<any> implements CommandDispatcher {
|
|
|
1665
1670
|
*/
|
|
1666
1671
|
readonly config: ModelConfig;
|
|
1667
1672
|
private corePluginConfig;
|
|
1673
|
+
private coreViewPluginConfig;
|
|
1668
1674
|
private uiPluginConfig;
|
|
1669
1675
|
private state;
|
|
1670
1676
|
readonly selection: SelectionStreamProcessor;
|
|
@@ -1687,6 +1693,7 @@ declare class Model extends EventBus<any> implements CommandDispatcher {
|
|
|
1687
1693
|
joinSession(): void;
|
|
1688
1694
|
leaveSession(): Promise<void>;
|
|
1689
1695
|
private setupUiPlugin;
|
|
1696
|
+
private setupCoreViewPlugin;
|
|
1690
1697
|
/**
|
|
1691
1698
|
* Initialize and properly configure a plugin.
|
|
1692
1699
|
*
|
|
@@ -1700,6 +1707,7 @@ declare class Model extends EventBus<any> implements CommandDispatcher {
|
|
|
1700
1707
|
private setupConfig;
|
|
1701
1708
|
private setupExternalConfig;
|
|
1702
1709
|
private setupCorePluginConfig;
|
|
1710
|
+
private setupCoreViewPluginConfig;
|
|
1703
1711
|
private setupUiPluginConfig;
|
|
1704
1712
|
/**
|
|
1705
1713
|
* Check if the given command is allowed by all the plugins and the history.
|
|
@@ -1813,9 +1821,7 @@ interface Validator {
|
|
|
1813
1821
|
declare class BasePlugin<State = any, C = any> implements CommandHandler<C>, Validator {
|
|
1814
1822
|
static getters: readonly string[];
|
|
1815
1823
|
protected history: WorkbookHistory<State>;
|
|
1816
|
-
|
|
1817
|
-
protected canDispatch: CommandDispatcher["dispatch"];
|
|
1818
|
-
constructor(stateObserver: StateObserver, dispatch: CommandDispatcher["dispatch"], canDispatch: CommandDispatcher["dispatch"]);
|
|
1824
|
+
constructor(stateObserver: StateObserver);
|
|
1819
1825
|
/**
|
|
1820
1826
|
* Export for excel should be available for all plugins, even for the UI.
|
|
1821
1827
|
* In some case, we need to export evaluated value, which is available from
|
|
@@ -1890,6 +1896,8 @@ declare class UIPlugin<State = any> extends BasePlugin<State, Command> {
|
|
|
1890
1896
|
protected getters: Getters;
|
|
1891
1897
|
protected ui: UIActions;
|
|
1892
1898
|
protected selection: SelectionStreamProcessor;
|
|
1899
|
+
protected dispatch: CommandDispatcher["dispatch"];
|
|
1900
|
+
protected canDispatch: CommandDispatcher["dispatch"];
|
|
1893
1901
|
constructor({ getters, stateObserver, dispatch, canDispatch, uiActions, selection, }: UIPluginConfig);
|
|
1894
1902
|
drawLayer(ctx: GridRenderingContext, layer: LayerName): void;
|
|
1895
1903
|
}
|
|
@@ -4054,6 +4062,8 @@ interface CorePluginConstructor {
|
|
|
4054
4062
|
*/
|
|
4055
4063
|
declare class CorePlugin<State = any> extends BasePlugin<State, CoreCommand> implements RangeProvider {
|
|
4056
4064
|
protected getters: CoreGetters;
|
|
4065
|
+
protected dispatch: CoreCommandDispatcher["dispatch"];
|
|
4066
|
+
protected canDispatch: CoreCommandDispatcher["dispatch"];
|
|
4057
4067
|
constructor({ getters, stateObserver, range, dispatch, canDispatch }: CorePluginConfig);
|
|
4058
4068
|
import(data: WorkbookData): void;
|
|
4059
4069
|
export(data: WorkbookData): void;
|
|
@@ -4337,10 +4347,10 @@ declare abstract class AbstractChart {
|
|
|
4337
4347
|
*/
|
|
4338
4348
|
abstract updateRanges(applyChange: ApplyRangeChange): AbstractChart;
|
|
4339
4349
|
/**
|
|
4340
|
-
*
|
|
4341
|
-
* The ranges that are in the same sheet as the chart
|
|
4350
|
+
* Duplicate the chart when a sheet is duplicated.
|
|
4351
|
+
* The ranges that are in the same sheet as the chart are adapted to the new sheetId.
|
|
4342
4352
|
*/
|
|
4343
|
-
abstract
|
|
4353
|
+
abstract duplicateInDuplicatedSheet(newSheetId: UID): AbstractChart;
|
|
4344
4354
|
/**
|
|
4345
4355
|
* Get a copy a the chart in the given sheetId.
|
|
4346
4356
|
* The ranges of the chart will stay the same as the copied chart.
|
|
@@ -5015,12 +5025,37 @@ declare class TablePlugin extends CorePlugin<TableState> implements TableState {
|
|
|
5015
5025
|
exportForExcel(data: ExcelWorkbookData): void;
|
|
5016
5026
|
}
|
|
5017
5027
|
|
|
5018
|
-
|
|
5028
|
+
interface CoreViewPluginConfig {
|
|
5029
|
+
readonly getters: Getters;
|
|
5030
|
+
readonly stateObserver: StateObserver;
|
|
5031
|
+
readonly selection: SelectionStreamProcessor;
|
|
5032
|
+
readonly moveClient: (position: ClientPosition) => void;
|
|
5033
|
+
readonly uiActions: UIActions;
|
|
5034
|
+
readonly custom: ModelConfig["custom"];
|
|
5035
|
+
readonly session: Session;
|
|
5036
|
+
readonly defaultCurrency?: Partial<Currency>;
|
|
5037
|
+
readonly customColors: Color[];
|
|
5038
|
+
readonly external: ModelConfig["external"];
|
|
5039
|
+
}
|
|
5040
|
+
interface CoreViewPluginConstructor {
|
|
5041
|
+
new (config: CoreViewPluginConfig): CoreViewPlugin;
|
|
5042
|
+
getters: readonly string[];
|
|
5043
|
+
}
|
|
5044
|
+
/**
|
|
5045
|
+
* Core view plugins handle any data derived from core date (i.e. evaluation).
|
|
5046
|
+
* They cannot impact the model data (i.e. cannot dispatch commands).
|
|
5047
|
+
*/
|
|
5048
|
+
declare class CoreViewPlugin<State = any> extends BasePlugin<State, Command> {
|
|
5049
|
+
protected getters: Getters;
|
|
5050
|
+
constructor({ getters, stateObserver }: CoreViewPluginConfig);
|
|
5051
|
+
}
|
|
5052
|
+
|
|
5053
|
+
declare class EvaluationPlugin extends CoreViewPlugin {
|
|
5019
5054
|
static getters: readonly ["evaluateFormula", "evaluateFormulaResult", "evaluateCompiledFormula", "getCorrespondingFormulaCell", "getRangeFormattedValues", "getRangeValues", "getRangeFormats", "getEvaluatedCell", "getEvaluatedCells", "getEvaluatedCellsInZone", "getEvaluatedCellsPositions", "getSpreadZone", "getArrayFormulaSpreadingOn", "isEmpty"];
|
|
5020
5055
|
private shouldRebuildDependenciesGraph;
|
|
5021
5056
|
private evaluator;
|
|
5022
5057
|
private positionsToUpdate;
|
|
5023
|
-
constructor(config:
|
|
5058
|
+
constructor(config: CoreViewPluginConfig);
|
|
5024
5059
|
beforeHandle(cmd: Command): void;
|
|
5025
5060
|
handle(cmd: CoreViewCommand): void;
|
|
5026
5061
|
finalize(): void;
|
|
@@ -5079,11 +5114,11 @@ interface CustomColorState {
|
|
|
5079
5114
|
* This plugins aims to compute and keep to custom colors used in the
|
|
5080
5115
|
* current spreadsheet
|
|
5081
5116
|
*/
|
|
5082
|
-
declare class CustomColorsPlugin extends
|
|
5117
|
+
declare class CustomColorsPlugin extends CoreViewPlugin<CustomColorState> {
|
|
5083
5118
|
private readonly customColors;
|
|
5084
5119
|
private readonly shouldUpdateColors;
|
|
5085
5120
|
static getters: readonly ["getCustomColors"];
|
|
5086
|
-
constructor(config:
|
|
5121
|
+
constructor(config: CoreViewPluginConfig);
|
|
5087
5122
|
handle(cmd: Command): void;
|
|
5088
5123
|
finalize(): void;
|
|
5089
5124
|
getCustomColors(): Color[];
|
|
@@ -5103,7 +5138,7 @@ interface EvaluationChartStyle {
|
|
|
5103
5138
|
interface EvaluationChartState {
|
|
5104
5139
|
charts: Record<UID, ChartRuntime | undefined>;
|
|
5105
5140
|
}
|
|
5106
|
-
declare class EvaluationChartPlugin extends
|
|
5141
|
+
declare class EvaluationChartPlugin extends CoreViewPlugin<EvaluationChartState> {
|
|
5107
5142
|
static getters: readonly ["getChartRuntime", "getStyleOfSingleCellChart"];
|
|
5108
5143
|
charts: Record<UID, ChartRuntime | undefined>;
|
|
5109
5144
|
private createRuntimeChart;
|
|
@@ -5116,7 +5151,7 @@ declare class EvaluationChartPlugin extends UIPlugin<EvaluationChartState> {
|
|
|
5116
5151
|
exportForExcel(data: ExcelWorkbookData): void;
|
|
5117
5152
|
}
|
|
5118
5153
|
|
|
5119
|
-
declare class EvaluationConditionalFormatPlugin extends
|
|
5154
|
+
declare class EvaluationConditionalFormatPlugin extends CoreViewPlugin {
|
|
5120
5155
|
static getters: readonly ["getConditionalIcon", "getCellConditionalFormatStyle", "getConditionalDataBar"];
|
|
5121
5156
|
private isStale;
|
|
5122
5157
|
private computedStyles;
|
|
@@ -5165,7 +5200,7 @@ type ValidationResult = ValidValidationResult | InvalidValidationResult;
|
|
|
5165
5200
|
type SheetValidationResult = {
|
|
5166
5201
|
[col: HeaderIndex]: Array<Lazy<ValidationResult>>;
|
|
5167
5202
|
};
|
|
5168
|
-
declare class EvaluationDataValidationPlugin extends
|
|
5203
|
+
declare class EvaluationDataValidationPlugin extends CoreViewPlugin {
|
|
5169
5204
|
static getters: readonly ["getDataValidationInvalidCriterionValueMessage", "getInvalidDataValidationMessage", "getValidationResultForCellValue", "isCellValidCheckbox", "isDataValidationInvalid"];
|
|
5170
5205
|
validationResults: Record<UID, SheetValidationResult>;
|
|
5171
5206
|
handle(cmd: CoreViewCommand): void;
|
|
@@ -5189,7 +5224,7 @@ declare class EvaluationDataValidationPlugin extends UIPlugin {
|
|
|
5189
5224
|
private getEvaluatedCriterionValues;
|
|
5190
5225
|
}
|
|
5191
5226
|
|
|
5192
|
-
declare class DynamicTablesPlugin extends
|
|
5227
|
+
declare class DynamicTablesPlugin extends CoreViewPlugin {
|
|
5193
5228
|
static getters: readonly ["canCreateDynamicTableOnZones", "doesZonesContainFilter", "getFilter", "getFilters", "getTable", "getTables", "getTablesOverlappingZones", "getFilterId", "getFilterHeaders", "isFilterHeader"];
|
|
5194
5229
|
tables: Record<UID, Table[]>;
|
|
5195
5230
|
handle(cmd: Command): void;
|
|
@@ -5225,7 +5260,7 @@ interface CellWithSize {
|
|
|
5225
5260
|
cell: CellPosition;
|
|
5226
5261
|
size: Pixel;
|
|
5227
5262
|
}
|
|
5228
|
-
declare class HeaderSizeUIPlugin extends
|
|
5263
|
+
declare class HeaderSizeUIPlugin extends CoreViewPlugin<HeaderSizeState> implements HeaderSizeState {
|
|
5229
5264
|
static getters: readonly ["getRowSize", "getHeaderSize"];
|
|
5230
5265
|
readonly tallestCellInRow: Immutable<Record<UID, Array<CellWithSize | undefined>>>;
|
|
5231
5266
|
private ctx;
|
|
@@ -5368,12 +5403,12 @@ interface Pivot<T = PivotRuntimeDefinition> {
|
|
|
5368
5403
|
needsReevaluation: boolean;
|
|
5369
5404
|
}
|
|
5370
5405
|
|
|
5371
|
-
declare class PivotUIPlugin extends
|
|
5406
|
+
declare class PivotUIPlugin extends CoreViewPlugin {
|
|
5372
5407
|
static getters: readonly ["getPivot", "getFirstPivotFunction", "getPivotIdFromPosition", "getPivotCellFromPosition", "generateNewCalculatedMeasureName", "isPivotUnused", "isSpillPivotFormula"];
|
|
5373
5408
|
private pivots;
|
|
5374
5409
|
private unusedPivots?;
|
|
5375
5410
|
private custom;
|
|
5376
|
-
constructor(config:
|
|
5411
|
+
constructor(config: CoreViewPluginConfig);
|
|
5377
5412
|
beforeHandle(cmd: Command): void;
|
|
5378
5413
|
handle(cmd: Command): void;
|
|
5379
5414
|
/**
|
|
@@ -7148,7 +7183,8 @@ declare enum ComponentsImportance {
|
|
|
7148
7183
|
TopBarComposer = 30,
|
|
7149
7184
|
Popover = 35,
|
|
7150
7185
|
FigureAnchor = 1000,
|
|
7151
|
-
FigureSnapLine = 1001
|
|
7186
|
+
FigureSnapLine = 1001,
|
|
7187
|
+
FigureTooltip = 1002
|
|
7152
7188
|
}
|
|
7153
7189
|
declare function setDefaultSheetViewSize(size: number): void;
|
|
7154
7190
|
|
|
@@ -10375,7 +10411,7 @@ declare class BarChart extends AbstractChart {
|
|
|
10375
10411
|
static validateChartDefinition(validator: Validator, definition: BarChartDefinition): CommandResult | CommandResult[];
|
|
10376
10412
|
static getDefinitionFromContextCreation(context: ChartCreationContext): BarChartDefinition;
|
|
10377
10413
|
getContextCreation(): ChartCreationContext;
|
|
10378
|
-
|
|
10414
|
+
duplicateInDuplicatedSheet(newSheetId: UID): BarChart;
|
|
10379
10415
|
copyInSheetId(sheetId: UID): BarChart;
|
|
10380
10416
|
getDefinition(): BarChartDefinition;
|
|
10381
10417
|
private getDefinitionWithSpecificDataSets;
|
|
@@ -10392,7 +10428,7 @@ declare class GaugeChart extends AbstractChart {
|
|
|
10392
10428
|
static validateChartDefinition(validator: Validator, definition: GaugeChartDefinition): CommandResult | CommandResult[];
|
|
10393
10429
|
static transformDefinition(definition: GaugeChartDefinition, executed: AddColumnsRowsCommand | RemoveColumnsRowsCommand): GaugeChartDefinition;
|
|
10394
10430
|
static getDefinitionFromContextCreation(context: ChartCreationContext): GaugeChartDefinition;
|
|
10395
|
-
|
|
10431
|
+
duplicateInDuplicatedSheet(newSheetId: UID): GaugeChart;
|
|
10396
10432
|
copyInSheetId(sheetId: UID): GaugeChart;
|
|
10397
10433
|
getDefinition(): GaugeChartDefinition;
|
|
10398
10434
|
private getDefinitionWithSpecificRanges;
|
|
@@ -10425,7 +10461,7 @@ declare class LineChart extends AbstractChart {
|
|
|
10425
10461
|
getContextCreation(): ChartCreationContext;
|
|
10426
10462
|
updateRanges(applyChange: ApplyRangeChange): LineChart;
|
|
10427
10463
|
getDefinitionForExcel(): ExcelChartDefinition | undefined;
|
|
10428
|
-
|
|
10464
|
+
duplicateInDuplicatedSheet(newSheetId: UID): LineChart;
|
|
10429
10465
|
copyInSheetId(sheetId: UID): LineChart;
|
|
10430
10466
|
}
|
|
10431
10467
|
|
|
@@ -10446,7 +10482,7 @@ declare class PieChart extends AbstractChart {
|
|
|
10446
10482
|
getDefinition(): PieChartDefinition;
|
|
10447
10483
|
getContextCreation(): ChartCreationContext;
|
|
10448
10484
|
private getDefinitionWithSpecificDataSets;
|
|
10449
|
-
|
|
10485
|
+
duplicateInDuplicatedSheet(newSheetId: UID): PieChart;
|
|
10450
10486
|
copyInSheetId(sheetId: UID): PieChart;
|
|
10451
10487
|
getDefinitionForExcel(): ExcelChartDefinition | undefined;
|
|
10452
10488
|
updateRanges(applyChange: ApplyRangeChange): PieChart;
|
|
@@ -10468,7 +10504,7 @@ declare class ScorecardChart extends AbstractChart {
|
|
|
10468
10504
|
static validateChartDefinition(validator: Validator, definition: ScorecardChartDefinition): CommandResult | CommandResult[];
|
|
10469
10505
|
static getDefinitionFromContextCreation(context: ChartCreationContext): ScorecardChartDefinition;
|
|
10470
10506
|
static transformDefinition(definition: ScorecardChartDefinition, executed: AddColumnsRowsCommand | RemoveColumnsRowsCommand): ScorecardChartDefinition;
|
|
10471
|
-
|
|
10507
|
+
duplicateInDuplicatedSheet(newSheetId: UID): ScorecardChart;
|
|
10472
10508
|
copyInSheetId(sheetId: UID): ScorecardChart;
|
|
10473
10509
|
getDefinition(): ScorecardChartDefinition;
|
|
10474
10510
|
getContextCreation(): ChartCreationContext;
|
|
@@ -10500,7 +10536,7 @@ declare class WaterfallChart extends AbstractChart {
|
|
|
10500
10536
|
static validateChartDefinition(validator: Validator, definition: WaterfallChartDefinition): CommandResult | CommandResult[];
|
|
10501
10537
|
static getDefinitionFromContextCreation(context: ChartCreationContext): WaterfallChartDefinition;
|
|
10502
10538
|
getContextCreation(): ChartCreationContext;
|
|
10503
|
-
|
|
10539
|
+
duplicateInDuplicatedSheet(newSheetId: UID): WaterfallChart;
|
|
10504
10540
|
copyInSheetId(sheetId: UID): WaterfallChart;
|
|
10505
10541
|
getDefinition(): WaterfallChartDefinition;
|
|
10506
10542
|
private getDefinitionWithSpecificDataSets;
|
|
@@ -11510,7 +11546,7 @@ declare const registries: {
|
|
|
11510
11546
|
featurePluginRegistry: Registry<UIPluginConstructor>;
|
|
11511
11547
|
iconsOnCellRegistry: Registry<(getters: Getters, position: CellPosition) => string | undefined>;
|
|
11512
11548
|
statefulUIPluginRegistry: Registry<UIPluginConstructor>;
|
|
11513
|
-
coreViewsPluginRegistry: Registry<
|
|
11549
|
+
coreViewsPluginRegistry: Registry<CoreViewPluginConstructor>;
|
|
11514
11550
|
corePluginRegistry: Registry<CorePluginConstructor>;
|
|
11515
11551
|
rowMenuRegistry: MenuItemRegistry;
|
|
11516
11552
|
sidePanelRegistry: Registry<SidePanelContent>;
|
|
@@ -12535,6 +12571,7 @@ declare const helpers: {
|
|
|
12535
12571
|
areDomainArgsFieldsValid: typeof areDomainArgsFieldsValid;
|
|
12536
12572
|
splitReference: typeof splitReference;
|
|
12537
12573
|
sanitizeSheetName: typeof sanitizeSheetName;
|
|
12574
|
+
getUniqueText: typeof getUniqueText;
|
|
12538
12575
|
isNumber: typeof isNumber;
|
|
12539
12576
|
isDateTime: typeof isDateTime;
|
|
12540
12577
|
};
|
|
@@ -13103,8 +13140,8 @@ declare const chartHelpers: {
|
|
|
13103
13140
|
dataSets: DataSet[];
|
|
13104
13141
|
labelRange: Range | undefined;
|
|
13105
13142
|
};
|
|
13106
|
-
|
|
13107
|
-
|
|
13143
|
+
duplicateDataSetsInDuplicatedSheet(sheetIdFrom: UID, sheetIdTo: UID, dataSets: DataSet[]): DataSet[];
|
|
13144
|
+
duplicateLabelRangeInDuplicatedSheet(sheetIdFrom: UID, sheetIdTo: UID, range?: Range | undefined): Range | undefined;
|
|
13108
13145
|
adaptChartRange(range: Range | undefined, applyChange: ApplyRangeChange): Range | undefined;
|
|
13109
13146
|
createDataSets(getters: CoreGetters, customizedDataSets: CustomizedDataSet[], sheetId: UID, dataSetsHaveTitle: boolean): DataSet[];
|
|
13110
13147
|
toExcelDataset(getters: CoreGetters, ds: DataSet): ExcelChartDataset;
|
|
@@ -13123,6 +13160,7 @@ declare const chartHelpers: {
|
|
|
13123
13160
|
formatChartDatasetValue(axisFormats: ChartAxisFormats, locale: Locale): (value: any, axisId: string | undefined) => any;
|
|
13124
13161
|
formatTickValue(localeFormat: LocaleFormat): (value: any) => any;
|
|
13125
13162
|
getPieColors(colors: ColorGenerator, dataSetsValues: DatasetValues[]): Color[];
|
|
13163
|
+
truncateLabel(label: string | undefined): string;
|
|
13126
13164
|
TREND_LINE_XAXIS_ID: "x1";
|
|
13127
13165
|
CHART_AXIS_CHOICES: {
|
|
13128
13166
|
value: string;
|
|
@@ -13133,7 +13171,6 @@ declare const chartHelpers: {
|
|
|
13133
13171
|
validateChartDefinition(validator: Validator, definition: ChartDefinition): CommandResult | CommandResult[];
|
|
13134
13172
|
transformDefinition(definition: ChartDefinition, executed: AddColumnsRowsCommand | RemoveColumnsRowsCommand): ChartDefinition;
|
|
13135
13173
|
getSmartChartDefinition(zone: Zone, getters: Getters): ChartDefinition;
|
|
13136
|
-
truncateLabel(label: string | undefined): string;
|
|
13137
13174
|
chartToImage(runtime: ChartRuntime, figure: Figure, type: string): string | undefined;
|
|
13138
13175
|
CHART_COMMON_OPTIONS: chart_js_dist_types_utils._DeepPartialObject<chart_js.CoreChartOptions<keyof chart_js.ChartTypeRegistry> & chart_js.ElementChartOptions<keyof chart_js.ChartTypeRegistry> & chart_js.PluginChartOptions<keyof chart_js.ChartTypeRegistry> & chart_js.DatasetChartOptions<keyof chart_js.ChartTypeRegistry> & chart_js.ScaleChartOptions<keyof chart_js.ChartTypeRegistry>>;
|
|
13139
13176
|
createGaugeChartRuntime(chart: GaugeChart, getters: Getters): GaugeChartRuntime;
|
|
@@ -13149,4 +13186,4 @@ declare const chartHelpers: {
|
|
|
13149
13186
|
WaterfallChart: typeof WaterfallChart;
|
|
13150
13187
|
};
|
|
13151
13188
|
|
|
13152
|
-
export { AST, ASTFuncall, AboveAverageRule, AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, ActivateNextSheetCommand, 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, CancelledReason, Cell, CellErrorType, CellIsRule, CellPosition, CellValue, CellValueType, ChangeType, ChartAxisFormats, ChartCreationContext, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartRuntimeGenerationArgs, ChartType, 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, 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, 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, FigureSize, 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, Matrix, Maybe, MenuMouseEvent, Merge, Model, MoveColumnsRowsCommand, MoveConditionalFormatCommand, MoveRangeCommand, MoveSheetCommand, MoveViewportDownCommand, MoveViewportToCellCommand, MoveViewportUpCommand, NewLocalStateUpdateEvent, NotContainsTextRule, NotificationType, NumberCell, OSClipboardContent, Offset, OperationSequenceNode, OrderedLayers, PaintFormat, PaneDivision, ParsedOSClipboardContent, 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, 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, SetContextualFormatCommand, SetDecimalCommand, SetDecimalStep, SetFormattingCommand, SetGridLinesVisibilityCommand, SetViewportOffsetCommand, SetZoneBordersCommand, Sheet, SheetDOMScrollInfo, SheetData, SheetDependentCommand, SheetScrollInfo, 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 };
|
|
13189
|
+
export { AST, ASTFuncall, AboveAverageRule, AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, ActivateNextSheetCommand, 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, CancelledReason, Cell, CellErrorType, CellIsRule, CellPosition, CellValue, CellValueType, ChangeType, ChartAxisFormats, ChartCreationContext, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartRuntimeGenerationArgs, ChartType, 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, 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, FigureSize, 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, Matrix, Maybe, MenuMouseEvent, Merge, Model, MoveColumnsRowsCommand, MoveConditionalFormatCommand, MoveRangeCommand, MoveSheetCommand, MoveViewportDownCommand, MoveViewportToCellCommand, MoveViewportUpCommand, NewLocalStateUpdateEvent, NotContainsTextRule, NotificationType, NumberCell, OSClipboardContent, Offset, OperationSequenceNode, OrderedLayers, PaintFormat, PaneDivision, ParsedOSClipboardContent, 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, 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, SetContextualFormatCommand, SetDecimalCommand, SetDecimalStep, SetFormattingCommand, SetGridLinesVisibilityCommand, SetViewportOffsetCommand, SetZoneBordersCommand, Sheet, SheetDOMScrollInfo, SheetData, SheetDependentCommand, SheetScrollInfo, 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 };
|