@odoo/o-spreadsheet 19.0.0 → 19.0.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 +87 -40
- package/dist/o-spreadsheet.d.ts +22 -6
- package/dist/o-spreadsheet.esm.js +86 -41
- package/dist/o-spreadsheet.iife.js +87 -40
- package/dist/o-spreadsheet.iife.min.js +232 -232
- package/dist/o_spreadsheet.xml +9 -6
- package/package.json +1 -1
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
/**
|
|
3
3
|
* This file is generated by o-spreadsheet build tools. Do not edit it.
|
|
4
4
|
* @see https://github.com/odoo/o-spreadsheet
|
|
5
|
-
* @version 19.0.
|
|
6
|
-
* @date 2025-09-
|
|
7
|
-
* @hash
|
|
5
|
+
* @version 19.0.1
|
|
6
|
+
* @date 2025-09-11T08:45:47.109Z
|
|
7
|
+
* @hash bd79eea
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
10
|
'use strict';
|
|
@@ -24539,18 +24539,15 @@ function createScorecardChartRuntime(chart, getters) {
|
|
|
24539
24539
|
return {
|
|
24540
24540
|
title: {
|
|
24541
24541
|
...chart.title,
|
|
24542
|
-
|
|
24543
|
-
text: chart.title.text ? _t(chart.title.text) : "",
|
|
24542
|
+
text: chart.title.text ? getters.dynamicTranslate(chart.title.text) : "",
|
|
24544
24543
|
},
|
|
24545
24544
|
keyValue: formattedKeyValue,
|
|
24546
|
-
keyDescr: chart.keyDescr?.text
|
|
24547
|
-
? _t(chart.keyDescr.text) // descriptions are extracted from .json files and they are translated at runtime here
|
|
24548
|
-
: "",
|
|
24545
|
+
keyDescr: chart.keyDescr?.text ? getters.dynamicTranslate(chart.keyDescr.text) : "",
|
|
24549
24546
|
baselineDisplay,
|
|
24550
24547
|
baselineArrow: getBaselineArrowDirection(baselineCell, keyValueCell, chart.baselineMode),
|
|
24551
24548
|
baselineColor: getBaselineColor(baselineCell, chart.baselineMode, keyValueCell, chart.baselineColorUp, chart.baselineColorDown),
|
|
24552
24549
|
baselineDescr: chart.baselineMode !== "progress" && chart.baselineDescr?.text
|
|
24553
|
-
?
|
|
24550
|
+
? getters.dynamicTranslate(chart.baselineDescr.text)
|
|
24554
24551
|
: "",
|
|
24555
24552
|
fontColor,
|
|
24556
24553
|
background,
|
|
@@ -24850,9 +24847,8 @@ class ScorecardChart extends owl.Component {
|
|
|
24850
24847
|
return this.env.model.getters.getChartRuntime(this.props.chartId);
|
|
24851
24848
|
}
|
|
24852
24849
|
get title() {
|
|
24853
|
-
const title = this.env.model.getters.getChartDefinition(this.props.chartId).title.text
|
|
24854
|
-
|
|
24855
|
-
return _t(title);
|
|
24850
|
+
const title = this.env.model.getters.getChartDefinition(this.props.chartId).title.text;
|
|
24851
|
+
return title ? this.env.model.getters.dynamicTranslate(title) : "";
|
|
24856
24852
|
}
|
|
24857
24853
|
setup() {
|
|
24858
24854
|
owl.useEffect(this.createChart.bind(this), () => {
|
|
@@ -27025,12 +27021,12 @@ function getDatasetAxisId(definition, dataset) {
|
|
|
27025
27021
|
return axisId || "y";
|
|
27026
27022
|
}
|
|
27027
27023
|
|
|
27028
|
-
function getChartTitle(definition) {
|
|
27024
|
+
function getChartTitle(definition, getters) {
|
|
27029
27025
|
const chartTitle = definition.title;
|
|
27030
27026
|
const fontColor = chartMutedFontColor(definition.background);
|
|
27031
27027
|
return {
|
|
27032
27028
|
display: !!chartTitle.text,
|
|
27033
|
-
text:
|
|
27029
|
+
text: chartTitle.text ? getters.dynamicTranslate(chartTitle.text) : "",
|
|
27034
27030
|
color: chartTitle?.color ?? fontColor,
|
|
27035
27031
|
align: chartTitle.align === "center" ? "center" : chartTitle.align === "right" ? "end" : "start",
|
|
27036
27032
|
font: {
|
|
@@ -27598,7 +27594,7 @@ function createBarChartRuntime(chart, getters) {
|
|
|
27598
27594
|
layout: getChartLayout(definition, chartData),
|
|
27599
27595
|
scales: getBarChartScales(definition, chartData),
|
|
27600
27596
|
plugins: {
|
|
27601
|
-
title: getChartTitle(definition),
|
|
27597
|
+
title: getChartTitle(definition, getters),
|
|
27602
27598
|
legend: getBarChartLegend(definition),
|
|
27603
27599
|
tooltip: getBarChartTooltip(definition, chartData),
|
|
27604
27600
|
chartShowValuesPlugin: getChartShowValues(definition, chartData),
|
|
@@ -28829,7 +28825,7 @@ function createComboChartRuntime(chart, getters) {
|
|
|
28829
28825
|
layout: getChartLayout(definition, chartData),
|
|
28830
28826
|
scales: getBarChartScales(definition, chartData),
|
|
28831
28827
|
plugins: {
|
|
28832
|
-
title: getChartTitle(definition),
|
|
28828
|
+
title: getChartTitle(definition, getters),
|
|
28833
28829
|
legend: getComboChartLegend(definition),
|
|
28834
28830
|
tooltip: getBarChartTooltip(definition, chartData),
|
|
28835
28831
|
chartShowValuesPlugin: getChartShowValues(definition, chartData),
|
|
@@ -28975,7 +28971,7 @@ function createFunnelChartRuntime(chart, getters) {
|
|
|
28975
28971
|
layout: getChartLayout(definition, chartData),
|
|
28976
28972
|
scales: getFunnelChartScales(definition, chartData),
|
|
28977
28973
|
plugins: {
|
|
28978
|
-
title: getChartTitle(definition),
|
|
28974
|
+
title: getChartTitle(definition, getters),
|
|
28979
28975
|
legend: { display: false },
|
|
28980
28976
|
tooltip: getFunnelChartTooltip(definition, chartData),
|
|
28981
28977
|
chartShowValuesPlugin: getChartShowValues(definition, chartData),
|
|
@@ -29212,8 +29208,7 @@ function createGaugeChartRuntime(chart, getters) {
|
|
|
29212
29208
|
background: getters.getStyleOfSingleCellChart(chart.background, dataRange).background,
|
|
29213
29209
|
title: {
|
|
29214
29210
|
...chart.title,
|
|
29215
|
-
|
|
29216
|
-
text: _t(chart.title.text ?? ""),
|
|
29211
|
+
text: chart.title.text ? getters.dynamicTranslate(chart.title.text) : "",
|
|
29217
29212
|
},
|
|
29218
29213
|
minValue: {
|
|
29219
29214
|
value: minValue,
|
|
@@ -29397,7 +29392,7 @@ function createGeoChartRuntime(chart, getters) {
|
|
|
29397
29392
|
layout: getChartLayout(definition, chartData),
|
|
29398
29393
|
scales: getGeoChartScales(definition, chartData),
|
|
29399
29394
|
plugins: {
|
|
29400
|
-
title: getChartTitle(definition),
|
|
29395
|
+
title: getChartTitle(definition, getters),
|
|
29401
29396
|
tooltip: getGeoChartTooltip(definition, chartData),
|
|
29402
29397
|
legend: { display: false },
|
|
29403
29398
|
},
|
|
@@ -29562,7 +29557,7 @@ function createLineChartRuntime(chart, getters) {
|
|
|
29562
29557
|
layout: getChartLayout(definition, chartData),
|
|
29563
29558
|
scales: getLineChartScales(definition, chartData),
|
|
29564
29559
|
plugins: {
|
|
29565
|
-
title: getChartTitle(definition),
|
|
29560
|
+
title: getChartTitle(definition, getters),
|
|
29566
29561
|
legend: getLineChartLegend(definition),
|
|
29567
29562
|
tooltip: getLineChartTooltip(definition, chartData),
|
|
29568
29563
|
chartShowValuesPlugin: getChartShowValues(definition, chartData),
|
|
@@ -29699,7 +29694,7 @@ function createPieChartRuntime(chart, getters) {
|
|
|
29699
29694
|
: undefined,
|
|
29700
29695
|
layout: getChartLayout(definition, chartData),
|
|
29701
29696
|
plugins: {
|
|
29702
|
-
title: getChartTitle(definition),
|
|
29697
|
+
title: getChartTitle(definition, getters),
|
|
29703
29698
|
legend: getPieChartLegend(definition, chartData),
|
|
29704
29699
|
tooltip: getPieChartTooltip(definition, chartData),
|
|
29705
29700
|
chartShowValuesPlugin: getChartShowValues(definition, chartData),
|
|
@@ -29853,7 +29848,7 @@ function createPyramidChartRuntime(chart, getters) {
|
|
|
29853
29848
|
layout: getChartLayout(definition, chartData),
|
|
29854
29849
|
scales: getPyramidChartScales(definition, chartData),
|
|
29855
29850
|
plugins: {
|
|
29856
|
-
title: getChartTitle(definition),
|
|
29851
|
+
title: getChartTitle(definition, getters),
|
|
29857
29852
|
legend: getBarChartLegend(definition),
|
|
29858
29853
|
tooltip: getPyramidChartTooltip(definition, chartData),
|
|
29859
29854
|
chartShowValuesPlugin: getPyramidChartShowValues(definition, chartData),
|
|
@@ -30002,7 +29997,7 @@ function createRadarChartRuntime(chart, getters) {
|
|
|
30002
29997
|
layout: getChartLayout(definition, chartData),
|
|
30003
29998
|
scales: getRadarChartScales(definition, chartData),
|
|
30004
29999
|
plugins: {
|
|
30005
|
-
title: getChartTitle(definition),
|
|
30000
|
+
title: getChartTitle(definition, getters),
|
|
30006
30001
|
legend: getRadarChartLegend(definition),
|
|
30007
30002
|
tooltip: getRadarChartTooltip(definition, chartData),
|
|
30008
30003
|
chartShowValuesPlugin: getChartShowValues(definition, chartData),
|
|
@@ -30157,7 +30152,7 @@ function createScatterChartRuntime(chart, getters) {
|
|
|
30157
30152
|
layout: getChartLayout(definition, chartData),
|
|
30158
30153
|
scales: getScatterChartScales(definition, chartData),
|
|
30159
30154
|
plugins: {
|
|
30160
|
-
title: getChartTitle(definition),
|
|
30155
|
+
title: getChartTitle(definition, getters),
|
|
30161
30156
|
legend: getScatterChartLegend(definition),
|
|
30162
30157
|
tooltip: getLineChartTooltip(definition, chartData),
|
|
30163
30158
|
chartShowValuesPlugin: getChartShowValues(definition, chartData),
|
|
@@ -30296,7 +30291,7 @@ function createSunburstChartRuntime(chart, getters) {
|
|
|
30296
30291
|
...CHART_COMMON_OPTIONS,
|
|
30297
30292
|
layout: getChartLayout(definition, chartData),
|
|
30298
30293
|
plugins: {
|
|
30299
|
-
title: getChartTitle(definition),
|
|
30294
|
+
title: getChartTitle(definition, getters),
|
|
30300
30295
|
legend: getSunburstChartLegend(definition),
|
|
30301
30296
|
tooltip: getSunburstChartTooltip(definition, chartData),
|
|
30302
30297
|
sunburstLabelsPlugin: getSunburstShowValues(definition, chartData),
|
|
@@ -30446,7 +30441,7 @@ function createTreeMapChartRuntime(chart, getters) {
|
|
|
30446
30441
|
...CHART_COMMON_OPTIONS,
|
|
30447
30442
|
layout: getChartLayout(definition, chartData),
|
|
30448
30443
|
plugins: {
|
|
30449
|
-
title: getChartTitle(definition),
|
|
30444
|
+
title: getChartTitle(definition, getters),
|
|
30450
30445
|
legend: { display: false },
|
|
30451
30446
|
tooltip: getTreeMapChartTooltip(definition, chartData),
|
|
30452
30447
|
},
|
|
@@ -30609,7 +30604,7 @@ function createWaterfallChartRuntime(chart, getters) {
|
|
|
30609
30604
|
layout: getChartLayout(definition, chartData),
|
|
30610
30605
|
scales: getWaterfallChartScales(definition, chartData),
|
|
30611
30606
|
plugins: {
|
|
30612
|
-
title: getChartTitle(definition),
|
|
30607
|
+
title: getChartTitle(definition, getters),
|
|
30613
30608
|
legend: getWaterfallChartLegend(definition),
|
|
30614
30609
|
tooltip: getWaterfallChartTooltip(definition, chartData),
|
|
30615
30610
|
chartShowValuesPlugin: getWaterfallChartShowValues(definition, chartData),
|
|
@@ -39328,6 +39323,14 @@ function getCaretDownSvg(color) {
|
|
|
39328
39323
|
paths: [{ fillColor: color.textColor || TEXT_BODY_MUTED, path: "M120 195 h270 l-135 130" }],
|
|
39329
39324
|
};
|
|
39330
39325
|
}
|
|
39326
|
+
function getCaretUpSvg(color) {
|
|
39327
|
+
return {
|
|
39328
|
+
name: "CARET_UP",
|
|
39329
|
+
width: 512,
|
|
39330
|
+
height: 512,
|
|
39331
|
+
paths: [{ fillColor: color.textColor || TEXT_BODY_MUTED, path: "M120 325 h270 l-135 -130" }],
|
|
39332
|
+
};
|
|
39333
|
+
}
|
|
39331
39334
|
function getHoveredCaretDownSvg(color) {
|
|
39332
39335
|
return {
|
|
39333
39336
|
name: "CARET_DOWN",
|
|
@@ -55636,7 +55639,7 @@ class ScorecardChartDesignPanel extends owl.Component {
|
|
|
55636
55639
|
return SCORECARD_CHART_TITLE_FONT_SIZE;
|
|
55637
55640
|
}
|
|
55638
55641
|
translate(term) {
|
|
55639
|
-
return
|
|
55642
|
+
return this.env.model.getters.dynamicTranslate(term);
|
|
55640
55643
|
}
|
|
55641
55644
|
setColor(color, colorPickerId) {
|
|
55642
55645
|
switch (colorPickerId) {
|
|
@@ -57188,7 +57191,7 @@ class CustomCurrencyPanel extends owl.Component {
|
|
|
57188
57191
|
});
|
|
57189
57192
|
}
|
|
57190
57193
|
const emptyCurrency = {
|
|
57191
|
-
name:
|
|
57194
|
+
name: CustomCurrencyTerms.Custom,
|
|
57192
57195
|
code: "",
|
|
57193
57196
|
symbol: "",
|
|
57194
57197
|
decimalPlaces: 2,
|
|
@@ -61445,14 +61448,16 @@ class ClickableCellSortIcon extends owl.Component {
|
|
|
61445
61448
|
"background-color": this.getBackgroundColor(cellStyle),
|
|
61446
61449
|
});
|
|
61447
61450
|
}
|
|
61448
|
-
get
|
|
61449
|
-
|
|
61450
|
-
|
|
61451
|
-
|
|
61452
|
-
|
|
61453
|
-
|
|
61451
|
+
get verticalJustifyClass() {
|
|
61452
|
+
const cellStyle = this.env.model.getters.getCellComputedStyle(this.props.position);
|
|
61453
|
+
switch (cellStyle.verticalAlign) {
|
|
61454
|
+
case "top":
|
|
61455
|
+
return "justify-content-start";
|
|
61456
|
+
case "middle":
|
|
61457
|
+
return "justify-content-center";
|
|
61458
|
+
case "bottom":
|
|
61454
61459
|
default:
|
|
61455
|
-
return "
|
|
61460
|
+
return "justify-content-end";
|
|
61456
61461
|
}
|
|
61457
61462
|
}
|
|
61458
61463
|
getBackgroundColor(cellStyle) {
|
|
@@ -70653,6 +70658,30 @@ function togglePivotCollapse(position, env) {
|
|
|
70653
70658
|
pivot: { ...definition, collapsedDomains: newDomains },
|
|
70654
70659
|
});
|
|
70655
70660
|
}
|
|
70661
|
+
iconsOnCellRegistry.add("pivot_dashboard_sorting", (getters, position) => {
|
|
70662
|
+
if (!getters.isDashboard()) {
|
|
70663
|
+
return undefined;
|
|
70664
|
+
}
|
|
70665
|
+
const pivotCell = getters.getPivotCellFromPosition(position);
|
|
70666
|
+
if (pivotCell.type !== "MEASURE_HEADER") {
|
|
70667
|
+
return undefined;
|
|
70668
|
+
}
|
|
70669
|
+
const sortDirection = getters.getPivotCellSortDirection(position);
|
|
70670
|
+
if (sortDirection !== "asc" && sortDirection !== "desc") {
|
|
70671
|
+
return undefined;
|
|
70672
|
+
}
|
|
70673
|
+
const cellStyle = getters.getCellComputedStyle(position);
|
|
70674
|
+
return {
|
|
70675
|
+
type: `pivot_dashboard_sorting_${sortDirection}`,
|
|
70676
|
+
priority: 5,
|
|
70677
|
+
horizontalAlign: "right",
|
|
70678
|
+
size: GRID_ICON_EDGE_LENGTH,
|
|
70679
|
+
margin: GRID_ICON_MARGIN,
|
|
70680
|
+
svg: sortDirection === "asc" ? getCaretUpSvg(cellStyle) : getCaretDownSvg(cellStyle),
|
|
70681
|
+
position,
|
|
70682
|
+
onClick: undefined, // click is managed by ClickableCellSortIcon
|
|
70683
|
+
};
|
|
70684
|
+
});
|
|
70656
70685
|
|
|
70657
70686
|
class CellIconPlugin extends CoreViewPlugin {
|
|
70658
70687
|
static getters = ["doesCellHaveGridIcon", "getCellIcons", "getCellIconRect"];
|
|
@@ -75549,6 +75578,21 @@ class DataValidationInsertionPlugin extends UIPlugin {
|
|
|
75549
75578
|
}
|
|
75550
75579
|
}
|
|
75551
75580
|
|
|
75581
|
+
/**
|
|
75582
|
+
* This plugin provides dynamic translation getter. In o-spreadsheet, it has
|
|
75583
|
+
* no implementation, but this plugin can be replaced by another one to provide
|
|
75584
|
+
* a real implementation.
|
|
75585
|
+
*
|
|
75586
|
+
* For example, in Odoo, the plugin is replaced by a plugin that used the
|
|
75587
|
+
* module namespace to dynamically translate terms.
|
|
75588
|
+
*/
|
|
75589
|
+
class DynamicTranslate extends UIPlugin {
|
|
75590
|
+
static getters = ["dynamicTranslate"];
|
|
75591
|
+
dynamicTranslate(term) {
|
|
75592
|
+
return term;
|
|
75593
|
+
}
|
|
75594
|
+
}
|
|
75595
|
+
|
|
75552
75596
|
const genericRepeatsTransforms = [
|
|
75553
75597
|
repeatSheetDependantCommand,
|
|
75554
75598
|
repeatTargetDependantCommand,
|
|
@@ -79180,6 +79224,7 @@ const featurePluginRegistry = new Registry()
|
|
|
79180
79224
|
.add("table_ui_resize", TableResizeUI)
|
|
79181
79225
|
.add("datavalidation_insert", DataValidationInsertionPlugin)
|
|
79182
79226
|
.add("checkbox_toggle", CheckboxTogglePlugin)
|
|
79227
|
+
.add("dynamic_translate", DynamicTranslate)
|
|
79183
79228
|
.add("geo_features", GeoFeaturePlugin);
|
|
79184
79229
|
// Plugins which have a state, but which should not be shared in collaborative
|
|
79185
79230
|
const statefulUIPluginRegistry = new Registry()
|
|
@@ -88390,6 +88435,8 @@ exports.convertAstNodes = convertAstNodes;
|
|
|
88390
88435
|
exports.coreTypes = coreTypes;
|
|
88391
88436
|
exports.findCellInNewZone = findCellInNewZone;
|
|
88392
88437
|
exports.functionCache = functionCache;
|
|
88438
|
+
exports.getCaretDownSvg = getCaretDownSvg;
|
|
88439
|
+
exports.getCaretUpSvg = getCaretUpSvg;
|
|
88393
88440
|
exports.helpers = helpers;
|
|
88394
88441
|
exports.hooks = hooks;
|
|
88395
88442
|
exports.invalidateCFEvaluationCommands = invalidateCFEvaluationCommands;
|
|
@@ -88410,6 +88457,6 @@ exports.tokenColors = tokenColors;
|
|
|
88410
88457
|
exports.tokenize = tokenize;
|
|
88411
88458
|
|
|
88412
88459
|
|
|
88413
|
-
__info__.version = "19.0.
|
|
88414
|
-
__info__.date = "2025-09-
|
|
88415
|
-
__info__.hash = "
|
|
88460
|
+
__info__.version = "19.0.1";
|
|
88461
|
+
__info__.date = "2025-09-11T08:45:47.109Z";
|
|
88462
|
+
__info__.hash = "bd79eea";
|
package/dist/o-spreadsheet.d.ts
CHANGED
|
@@ -3487,6 +3487,19 @@ declare class CheckboxTogglePlugin extends UIPlugin {
|
|
|
3487
3487
|
private toggleCheckbox;
|
|
3488
3488
|
}
|
|
3489
3489
|
|
|
3490
|
+
/**
|
|
3491
|
+
* This plugin provides dynamic translation getter. In o-spreadsheet, it has
|
|
3492
|
+
* no implementation, but this plugin can be replaced by another one to provide
|
|
3493
|
+
* a real implementation.
|
|
3494
|
+
*
|
|
3495
|
+
* For example, in Odoo, the plugin is replaced by a plugin that used the
|
|
3496
|
+
* module namespace to dynamically translate terms.
|
|
3497
|
+
*/
|
|
3498
|
+
declare class DynamicTranslate extends UIPlugin {
|
|
3499
|
+
static getters: readonly ["dynamicTranslate"];
|
|
3500
|
+
dynamicTranslate(term: string): string;
|
|
3501
|
+
}
|
|
3502
|
+
|
|
3490
3503
|
/**
|
|
3491
3504
|
* Local History
|
|
3492
3505
|
*
|
|
@@ -4059,7 +4072,7 @@ type CoreGetters = PluginGetters<typeof SheetPlugin> & PluginGetters<typeof Head
|
|
|
4059
4072
|
type Getters = {
|
|
4060
4073
|
isReadonly: () => boolean;
|
|
4061
4074
|
isDashboard: () => boolean;
|
|
4062
|
-
} & CoreGetters & PluginGetters<typeof AutofillPlugin> & PluginGetters<typeof AutomaticSumPlugin> & PluginGetters<typeof HistoryPlugin> & PluginGetters<typeof ClipboardPlugin> & PluginGetters<typeof EvaluationPlugin> & PluginGetters<typeof EvaluationChartPlugin> & PluginGetters<typeof EvaluationConditionalFormatPlugin> & PluginGetters<typeof HeaderVisibilityUIPlugin> & PluginGetters<typeof CustomColorsPlugin> & PluginGetters<typeof AutomaticSumPlugin> & PluginGetters<typeof GridSelectionPlugin> & PluginGetters<typeof CollaborativePlugin> & PluginGetters<typeof SortPlugin> & PluginGetters<typeof UIOptionsPlugin> & PluginGetters<typeof SheetUIPlugin> & PluginGetters<typeof SheetViewPlugin> & PluginGetters<typeof FilterEvaluationPlugin> & PluginGetters<typeof SplitToColumnsPlugin> & PluginGetters<typeof SubtotalEvaluationPlugin> & PluginGetters<typeof HeaderSizeUIPlugin> & PluginGetters<typeof EvaluationDataValidationPlugin> & PluginGetters<typeof HeaderPositionsUIPlugin> & PluginGetters<typeof TableStylePlugin> & PluginGetters<typeof CellComputedStylePlugin> & PluginGetters<typeof DynamicTablesPlugin> & PluginGetters<typeof PivotUIPlugin> & PluginGetters<typeof TableComputedStylePlugin> & PluginGetters<typeof GeoFeaturePlugin> & PluginGetters<typeof PivotPresencePlugin> & PluginGetters<typeof TableComputedStylePlugin> & PluginGetters<typeof CheckboxTogglePlugin> & PluginGetters<typeof CellIconPlugin> & PluginGetters<typeof CarouselUIPlugin>;
|
|
4075
|
+
} & CoreGetters & PluginGetters<typeof AutofillPlugin> & PluginGetters<typeof AutomaticSumPlugin> & PluginGetters<typeof HistoryPlugin> & PluginGetters<typeof ClipboardPlugin> & PluginGetters<typeof EvaluationPlugin> & PluginGetters<typeof EvaluationChartPlugin> & PluginGetters<typeof EvaluationConditionalFormatPlugin> & PluginGetters<typeof HeaderVisibilityUIPlugin> & PluginGetters<typeof CustomColorsPlugin> & PluginGetters<typeof AutomaticSumPlugin> & PluginGetters<typeof GridSelectionPlugin> & PluginGetters<typeof CollaborativePlugin> & PluginGetters<typeof SortPlugin> & PluginGetters<typeof UIOptionsPlugin> & PluginGetters<typeof SheetUIPlugin> & PluginGetters<typeof SheetViewPlugin> & PluginGetters<typeof FilterEvaluationPlugin> & PluginGetters<typeof SplitToColumnsPlugin> & PluginGetters<typeof SubtotalEvaluationPlugin> & PluginGetters<typeof HeaderSizeUIPlugin> & PluginGetters<typeof EvaluationDataValidationPlugin> & PluginGetters<typeof HeaderPositionsUIPlugin> & PluginGetters<typeof TableStylePlugin> & PluginGetters<typeof CellComputedStylePlugin> & PluginGetters<typeof DynamicTablesPlugin> & PluginGetters<typeof PivotUIPlugin> & PluginGetters<typeof TableComputedStylePlugin> & PluginGetters<typeof GeoFeaturePlugin> & PluginGetters<typeof PivotPresencePlugin> & PluginGetters<typeof TableComputedStylePlugin> & PluginGetters<typeof CheckboxTogglePlugin> & PluginGetters<typeof CellIconPlugin> & PluginGetters<typeof DynamicTranslate> & PluginGetters<typeof CarouselUIPlugin>;
|
|
4063
4076
|
|
|
4064
4077
|
interface CorePluginConfig {
|
|
4065
4078
|
readonly getters: CoreGetters;
|
|
@@ -9222,7 +9235,7 @@ declare class ScorecardChartDesignPanel extends Component<Props$X, SpreadsheetCh
|
|
|
9222
9235
|
};
|
|
9223
9236
|
get colorsSectionTitle(): string;
|
|
9224
9237
|
get defaultScorecardTitleFontSize(): number;
|
|
9225
|
-
translate(term:
|
|
9238
|
+
translate(term: string): string;
|
|
9226
9239
|
setColor(color: Color, colorPickerId: ColorPickerId): void;
|
|
9227
9240
|
get keyStyle(): TitleDesign;
|
|
9228
9241
|
get baselineStyle(): TitleDesign;
|
|
@@ -11339,8 +11352,8 @@ declare class ClickableCellSortIcon extends Component<Props$m, SpreadsheetChildE
|
|
|
11339
11352
|
private hoveredTableStore;
|
|
11340
11353
|
setup(): void;
|
|
11341
11354
|
get style(): string;
|
|
11342
|
-
get
|
|
11343
|
-
getBackgroundColor
|
|
11355
|
+
get verticalJustifyClass(): "justify-content-start" | "justify-content-center" | "justify-content-end";
|
|
11356
|
+
private getBackgroundColor;
|
|
11344
11357
|
}
|
|
11345
11358
|
|
|
11346
11359
|
declare class ZoomableChartJsComponent extends ChartJsComponent {
|
|
@@ -12823,6 +12836,9 @@ type TranslationFunction = (string: string, ...values: SprintfValues) => string;
|
|
|
12823
12836
|
*/
|
|
12824
12837
|
declare function setTranslationMethod(tfn: TranslationFunction, loaded?: () => boolean): void;
|
|
12825
12838
|
|
|
12839
|
+
declare function getCaretDownSvg(color: Style): ImageSVG;
|
|
12840
|
+
declare function getCaretUpSvg(color: Style): ImageSVG;
|
|
12841
|
+
|
|
12826
12842
|
/**
|
|
12827
12843
|
* We export here all entities that needs to be accessed publicly by Odoo.
|
|
12828
12844
|
*
|
|
@@ -13551,7 +13567,7 @@ declare const chartHelpers: {
|
|
|
13551
13567
|
getSunburstShowValues(definition: SunburstChartDefinition, args: ChartRuntimeGenerationArgs): ChartSunburstLabelsPluginOptions;
|
|
13552
13568
|
getPyramidChartShowValues(definition: ChartWithDataSetDefinition, args: ChartRuntimeGenerationArgs): ChartShowValuesPluginOptions;
|
|
13553
13569
|
getWaterfallChartShowValues(definition: WaterfallChartDefinition, args: ChartRuntimeGenerationArgs): ChartShowValuesPluginOptions;
|
|
13554
|
-
getChartTitle(definition: ChartWithDataSetDefinition): chart_js_dist_types_utils._DeepPartialObject<chart_js.TitleOptions>;
|
|
13570
|
+
getChartTitle(definition: ChartWithDataSetDefinition, getters: Getters): chart_js_dist_types_utils._DeepPartialObject<chart_js.TitleOptions>;
|
|
13555
13571
|
getBarChartTooltip(definition: GenericDefinition<BarChartDefinition>, args: ChartRuntimeGenerationArgs): chart_js_dist_types_utils._DeepPartialObject<chart_js.TooltipOptions<any>>;
|
|
13556
13572
|
getLineChartTooltip(definition: GenericDefinition<LineChartDefinition>, args: ChartRuntimeGenerationArgs): chart_js_dist_types_utils._DeepPartialObject<chart_js.TooltipOptions<any>>;
|
|
13557
13573
|
getPieChartTooltip(definition: PieChartDefinition, args: ChartRuntimeGenerationArgs): chart_js_dist_types_utils._DeepPartialObject<chart_js.TooltipOptions<any>>;
|
|
@@ -13637,4 +13653,4 @@ declare const chartHelpers: {
|
|
|
13637
13653
|
WaterfallChart: typeof WaterfallChart;
|
|
13638
13654
|
};
|
|
13639
13655
|
|
|
13640
|
-
export { AST, ASTFuncall, AboveAverageRule, AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, ActivateNextSheetCommand, ActivatePreviousSheetCommand, ActivateSheetCommand, AdaptSheetName, AddColumnsRowsCommand, AddConditionalFormatCommand, AddDataValidationCommand, AddFigureChartToCarouselCommand, AddFunctionDescription, AddMergeCommand, AddNewChartToCarouselCommand, AddPivotCommand, AdjacentEdge, Aggregator, Alias, Align, AlphanumericIncrementModifier, AnchorOffset, AnchorZone, ApplyRangeChange, ApplyRangeChangeResult, Arg, ArgDefinition, ArgProposal, ArgType, AutoFillCellCommand, AutofillAutoCommand, AutofillCellData, AutofillCommand, AutofillData, AutofillModifier, AutofillModifierImplementation, AutofillResult, AutofillSelectCommand, AutofillTableCommand, AutoresizeColumnsCommand, AutoresizeRowsCommand, AxesDesign, AxisDesign, AxisType, BeginsWithRule, BooleanCell, Border$1 as Border, BorderData, BorderDescr, BorderDescrWithOpacity, BorderPosition, BorderStyle, Box, BoxTextContent, CHART_TYPES, CSSProperties, CancelledReason, Carousel, CarouselItem, Cell, CellErrorType, CellIsRule, CellPosition, CellValue, CellValueType, ChangeType, ChartAxisFormats, ChartCreationContext, ChartDatasetOrientation, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartRuntimeGenerationArgs, ChartStyle, ChartType, ChartWithAxisDefinition, ChartWithDataSetDefinition, CleanClipBoardHighlightCommand, ClearCellCommand, ClearCellsCommand, ClearFormattingCommand, Client, ClientDisconnectedError, ClientId, ClientJoinedMessage, ClientLeftMessage, ClientMovedMessage, ClientPosition, ClientWithColor, ClientWithPosition, ClipboardCell, ClipboardCellData, ClipboardCopyOptions, 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, CreateCarouselCommand, CreateChartCommand, CreateFigureCommand, CreateImageOverCommand, CreateRevisionOptions, CreateSheetCommand, CreateTableCommand, CreateTableStyleCommand, CriterionFilter, Currency, CustomFormulaCriterion, CustomizedDataSet, CutCommand, DEFAULT_LOCALE, DEFAULT_LOCALES, DIRECTION, DOMCoordinates, DOMDimension, DataBarFill, DataBarRule, DataBarRuleInternal, DataFilterValue, DataSet, DataValidationCriterion, DataValidationCriterionType, DataValidationDateCriterion, DataValidationRule, DataValidationRuleData, DatasetDesign, DatasetValues, DateCriterionValue, DateIncrementModifier, DateIsAfterCriterion, DateIsBeforeCriterion, DateIsBetweenCriterion, DateIsCriterion, DateIsNotBetweenCriterion, DateIsOnOrAfterCriterion, DateIsOnOrBeforeCriterion, DateIsValidCriterion, DebouncedFunction, DeleteCellCommand, DeleteChartCommand, 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, EvaluatedCriterion, EvaluatedDateCriterion, EvaluationError, ExcelChartDataset, ExcelChartDefinition, ExcelChartTrendConfiguration, ExcelChartType, ExcelFigureSize, ExcelFilterData, ExcelHeaderData, ExcelSheetData, ExcelTableData, ExcelTrendlineType, ExcelWorkbookData, ExpressionRule, Figure, FigureData, FigureInfo, FigureSize, FigureUI, Filter, FilterCriterionType, FilterId, FoldAllHeaderGroupsCommand, FoldHeaderGroupCommand, FoldHeaderGroupsInZoneCommand, Format, FormattedValue, FormulaCell, FormulaModifier, FormulaToExecute, FreezeColumnsCommand, FreezeRowsCommand, FunctionDescription, FunctionRegistry, FunctionResultNumber, FunctionResultObject, GeneratorCell, GenericCriterion, GenericCriterionType, GenericDateCriterion, 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, LocalTransportService, Locale, LocaleCode, LocaleFormat, LookupCaches, Matrix, Maybe, MenuMouseEvent, Merge, MinimalClipboardData, Model, MoveColumnsRowsCommand, MoveConditionalFormatCommand, MoveRangeCommand, MoveSheetCommand, MoveViewportDownCommand, MoveViewportToCellCommand, MoveViewportUpCommand, NewLocalStateUpdateEvent, NotContainsTextRule, NotificationType, NumberCell, OSClipboardContent, Offset, OperationSequenceNode, OrderedLayers, PaintFormat, PaneDivision, ParsedOSClipboardContent, ParsedOsClipboardContentWithImageData, PasteCommand, PasteFromOSClipboardCommand, Pivot, PivotColRowDomain, PivotCollapsedDomains, PivotCoreDefinition, PivotCoreDimension, PivotCoreMeasure, PivotCustomGroup, PivotCustomGroupedField, PivotDimension$1 as PivotDimension, PivotDomain, PivotEmptyCell, PivotField, PivotFields, PivotHeaderCell, PivotMeasure, PivotMeasureDisplay, PivotMeasureDisplayType, PivotMeasureHeaderCell, PivotNode, PivotRuntimeDefinition, PivotSortedColumn, PivotStartPresenceTracking, PivotStopPresenceTracking, PivotTableCell, PivotTableColumn, PivotTableData, PivotTableRow, PivotTimeAdapter, PivotTimeAdapterNotNull, PivotValueCell, PivotVisibilityOptions, Pixel, PixelPosition, PopOutChartFromCarouselCommand, Position$1 as Position, PositionDependentCommand, PropsOf, RGBA, Range, 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, RenderingBorder, RenderingBox, RenderingGridIcon, RepeatPasteCommand, ReplaceSearchCommand, RequestRedoCommand, RequestUndoCommand, ResizeColumnsRowsCommand, ResizeDirection, ResizeTableCommand, ResizeViewportCommand, Revision, RevisionAcknowledgedEvent, RevisionData, RevisionRedone, RevisionRedoneMessage, RevisionUndone, RevisionUndoneMessage, Row, SPREADSHEET_DIMENSIONS, ScrollDirection$1 as ScrollDirection, SelectFigureCommand, Selection$1 as 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$1 as TableData, TableElementStyle, TableId, TableStyle, TableStyleData, TableStyleTemplateName, TargetDependentCommand, TechnicalName, TextCell, TextContainsCriterion, TextIsCriterion, TextIsEmailCriterion, TextIsLinkCriterion, TextNotContainsCriterion, TextRule, ThresholdType, TimePeriodRule, TitleDesign, ToggleCheckboxCommand, Token, Tooltip, Top10Rule, Transformation, TransformationFactory, TransportService, TrendConfiguration, TrendType, TrimWhitespaceCommand, UID, UIPlugin, UnGroupHeadersCommand, UnboundedZone, UndoCommand, UnexpectedRevisionIdEvent, UnfoldAllHeaderGroupsCommand, UnfoldHeaderGroupCommand, UnfoldHeaderGroupsInZoneCommand, UnfreezeColumnsCommand, UnfreezeColumnsRowsCommand, UnfreezeRowsCommand, UnhideColumnsRowsCommand, UpdateCarouselActiveItemCommand, UpdateCarouselCommand, UpdateCellCommand, UpdateCellData, UpdateCellPositionCommand, UpdateChartCommand, UpdateFigureCommand, UpdateFilterCommand, UpdateLocaleCommand, UpdatePivotCommand, UpdateTableCommand, Validation, ValueAndLabel, ValuesFilter, VerticalAlign, Viewport, WorkbookData, WorkbookHistory, Wrapping, Zone, ZoneDependentCommand, ZoneDimension, ZoomableChartDefinition, __info__, addFunction, addRenderingLayer, astToFormula, availableConditionalFormatOperators, availableDataValidationOperators, availableFiltersOperators, borderStyles, canExecuteInReadonly, chartHelpers, compile, compileTokens, components, constants, containsBlanksRule, containsErrorsRule, convertAstNodes, coreTypes, filterDateCriterionOperators, filterNumberCriterionOperators, filterTextCriterionOperators, findCellInNewZone, functionCache, helpers, hooks, invalidSubtotalFormulasCommands, 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 };
|
|
13656
|
+
export { AST, ASTFuncall, AboveAverageRule, AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, ActivateNextSheetCommand, ActivatePreviousSheetCommand, ActivateSheetCommand, AdaptSheetName, AddColumnsRowsCommand, AddConditionalFormatCommand, AddDataValidationCommand, AddFigureChartToCarouselCommand, AddFunctionDescription, AddMergeCommand, AddNewChartToCarouselCommand, AddPivotCommand, AdjacentEdge, Aggregator, Alias, Align, AlphanumericIncrementModifier, AnchorOffset, AnchorZone, ApplyRangeChange, ApplyRangeChangeResult, Arg, ArgDefinition, ArgProposal, ArgType, AutoFillCellCommand, AutofillAutoCommand, AutofillCellData, AutofillCommand, AutofillData, AutofillModifier, AutofillModifierImplementation, AutofillResult, AutofillSelectCommand, AutofillTableCommand, AutoresizeColumnsCommand, AutoresizeRowsCommand, AxesDesign, AxisDesign, AxisType, BeginsWithRule, BooleanCell, Border$1 as Border, BorderData, BorderDescr, BorderDescrWithOpacity, BorderPosition, BorderStyle, Box, BoxTextContent, CHART_TYPES, CSSProperties, CancelledReason, Carousel, CarouselItem, Cell, CellErrorType, CellIsRule, CellPosition, CellValue, CellValueType, ChangeType, ChartAxisFormats, ChartCreationContext, ChartDatasetOrientation, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartRuntimeGenerationArgs, ChartStyle, ChartType, ChartWithAxisDefinition, ChartWithDataSetDefinition, CleanClipBoardHighlightCommand, ClearCellCommand, ClearCellsCommand, ClearFormattingCommand, Client, ClientDisconnectedError, ClientId, ClientJoinedMessage, ClientLeftMessage, ClientMovedMessage, ClientPosition, ClientWithColor, ClientWithPosition, ClipboardCell, ClipboardCellData, ClipboardCopyOptions, 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, CreateCarouselCommand, CreateChartCommand, CreateFigureCommand, CreateImageOverCommand, CreateRevisionOptions, CreateSheetCommand, CreateTableCommand, CreateTableStyleCommand, CriterionFilter, Currency, CustomFormulaCriterion, CustomizedDataSet, CutCommand, DEFAULT_LOCALE, DEFAULT_LOCALES, DIRECTION, DOMCoordinates, DOMDimension, DataBarFill, DataBarRule, DataBarRuleInternal, DataFilterValue, DataSet, DataValidationCriterion, DataValidationCriterionType, DataValidationDateCriterion, DataValidationRule, DataValidationRuleData, DatasetDesign, DatasetValues, DateCriterionValue, DateIncrementModifier, DateIsAfterCriterion, DateIsBeforeCriterion, DateIsBetweenCriterion, DateIsCriterion, DateIsNotBetweenCriterion, DateIsOnOrAfterCriterion, DateIsOnOrBeforeCriterion, DateIsValidCriterion, DebouncedFunction, DeleteCellCommand, DeleteChartCommand, 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, EvaluatedCriterion, EvaluatedDateCriterion, EvaluationError, ExcelChartDataset, ExcelChartDefinition, ExcelChartTrendConfiguration, ExcelChartType, ExcelFigureSize, ExcelFilterData, ExcelHeaderData, ExcelSheetData, ExcelTableData, ExcelTrendlineType, ExcelWorkbookData, ExpressionRule, Figure, FigureData, FigureInfo, FigureSize, FigureUI, Filter, FilterCriterionType, FilterId, FoldAllHeaderGroupsCommand, FoldHeaderGroupCommand, FoldHeaderGroupsInZoneCommand, Format, FormattedValue, FormulaCell, FormulaModifier, FormulaToExecute, FreezeColumnsCommand, FreezeRowsCommand, FunctionDescription, FunctionRegistry, FunctionResultNumber, FunctionResultObject, GeneratorCell, GenericCriterion, GenericCriterionType, GenericDateCriterion, 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, LocalTransportService, Locale, LocaleCode, LocaleFormat, LookupCaches, Matrix, Maybe, MenuMouseEvent, Merge, MinimalClipboardData, Model, MoveColumnsRowsCommand, MoveConditionalFormatCommand, MoveRangeCommand, MoveSheetCommand, MoveViewportDownCommand, MoveViewportToCellCommand, MoveViewportUpCommand, NewLocalStateUpdateEvent, NotContainsTextRule, NotificationType, NumberCell, OSClipboardContent, Offset, OperationSequenceNode, OrderedLayers, PaintFormat, PaneDivision, ParsedOSClipboardContent, ParsedOsClipboardContentWithImageData, PasteCommand, PasteFromOSClipboardCommand, Pivot, PivotColRowDomain, PivotCollapsedDomains, PivotCoreDefinition, PivotCoreDimension, PivotCoreMeasure, PivotCustomGroup, PivotCustomGroupedField, PivotDimension$1 as PivotDimension, PivotDomain, PivotEmptyCell, PivotField, PivotFields, PivotHeaderCell, PivotMeasure, PivotMeasureDisplay, PivotMeasureDisplayType, PivotMeasureHeaderCell, PivotNode, PivotRuntimeDefinition, PivotSortedColumn, PivotStartPresenceTracking, PivotStopPresenceTracking, PivotTableCell, PivotTableColumn, PivotTableData, PivotTableRow, PivotTimeAdapter, PivotTimeAdapterNotNull, PivotValueCell, PivotVisibilityOptions, Pixel, PixelPosition, PopOutChartFromCarouselCommand, Position$1 as Position, PositionDependentCommand, PropsOf, RGBA, Range, 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, RenderingBorder, RenderingBox, RenderingGridIcon, RepeatPasteCommand, ReplaceSearchCommand, RequestRedoCommand, RequestUndoCommand, ResizeColumnsRowsCommand, ResizeDirection, ResizeTableCommand, ResizeViewportCommand, Revision, RevisionAcknowledgedEvent, RevisionData, RevisionRedone, RevisionRedoneMessage, RevisionUndone, RevisionUndoneMessage, Row, SPREADSHEET_DIMENSIONS, ScrollDirection$1 as ScrollDirection, SelectFigureCommand, Selection$1 as 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$1 as TableData, TableElementStyle, TableId, TableStyle, TableStyleData, TableStyleTemplateName, TargetDependentCommand, TechnicalName, TextCell, TextContainsCriterion, TextIsCriterion, TextIsEmailCriterion, TextIsLinkCriterion, TextNotContainsCriterion, TextRule, ThresholdType, TimePeriodRule, TitleDesign, ToggleCheckboxCommand, Token, Tooltip, Top10Rule, Transformation, TransformationFactory, TransportService, TrendConfiguration, TrendType, TrimWhitespaceCommand, UID, UIPlugin, UnGroupHeadersCommand, UnboundedZone, UndoCommand, UnexpectedRevisionIdEvent, UnfoldAllHeaderGroupsCommand, UnfoldHeaderGroupCommand, UnfoldHeaderGroupsInZoneCommand, UnfreezeColumnsCommand, UnfreezeColumnsRowsCommand, UnfreezeRowsCommand, UnhideColumnsRowsCommand, UpdateCarouselActiveItemCommand, UpdateCarouselCommand, UpdateCellCommand, UpdateCellData, UpdateCellPositionCommand, UpdateChartCommand, UpdateFigureCommand, UpdateFilterCommand, UpdateLocaleCommand, UpdatePivotCommand, UpdateTableCommand, Validation, ValueAndLabel, ValuesFilter, VerticalAlign, Viewport, WorkbookData, WorkbookHistory, Wrapping, Zone, ZoneDependentCommand, ZoneDimension, ZoomableChartDefinition, __info__, addFunction, addRenderingLayer, astToFormula, availableConditionalFormatOperators, availableDataValidationOperators, availableFiltersOperators, borderStyles, canExecuteInReadonly, chartHelpers, compile, compileTokens, components, constants, containsBlanksRule, containsErrorsRule, convertAstNodes, coreTypes, filterDateCriterionOperators, filterNumberCriterionOperators, filterTextCriterionOperators, findCellInNewZone, functionCache, getCaretDownSvg, getCaretUpSvg, helpers, hooks, invalidSubtotalFormulasCommands, 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 };
|