@odoo/o-spreadsheet 18.2.5 → 18.2.6
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 +657 -638
- package/dist/o-spreadsheet.d.ts +2 -1
- package/dist/o-spreadsheet.esm.js +657 -638
- package/dist/o-spreadsheet.iife.js +657 -638
- package/dist/o-spreadsheet.iife.min.js +380 -379
- package/dist/o_spreadsheet.xml +3 -3
- package/package.json +1 -1
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 Figure {
|
|
11
12
|
id: UID;
|
|
@@ -12668,6 +12669,7 @@ declare const registries: {
|
|
|
12668
12669
|
supportedPivotPositionalFormulaRegistry: Registry<boolean>;
|
|
12669
12670
|
pivotToFunctionValueRegistry: Registry<(value: CellValue, granularity?: string | undefined) => string>;
|
|
12670
12671
|
migrationStepRegistry: Registry<MigrationStep>;
|
|
12672
|
+
chartJsExtensionRegistry: Registry<chart_js.Plugin<keyof chart_js.ChartTypeRegistry, chart_js_dist_types_basic.AnyObject>>;
|
|
12671
12673
|
};
|
|
12672
12674
|
declare const helpers: {
|
|
12673
12675
|
arg: typeof arg;
|
|
@@ -13330,7 +13332,6 @@ declare const chartHelpers: {
|
|
|
13330
13332
|
transformDefinition(definition: ChartDefinition, executed: AddColumnsRowsCommand | RemoveColumnsRowsCommand): ChartDefinition;
|
|
13331
13333
|
getSmartChartDefinition(zone: Zone, getters: Getters): ChartDefinition;
|
|
13332
13334
|
chartToImage(runtime: ChartRuntime, figure: Figure, type: string): string | undefined;
|
|
13333
|
-
getChartJSConstructor(): typeof chart_js.Chart;
|
|
13334
13335
|
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>>;
|
|
13335
13336
|
createGaugeChartRuntime(chart: GaugeChart, getters: Getters): GaugeChartRuntime;
|
|
13336
13337
|
GaugeChart: typeof GaugeChart;
|