@odoo/o-spreadsheet 18.1.13 → 18.1.14

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.
@@ -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;
@@ -12514,6 +12515,7 @@ declare const registries: {
12514
12515
  supportedPivotPositionalFormulaRegistry: Registry<boolean>;
12515
12516
  pivotToFunctionValueRegistry: Registry<(value: CellValue, granularity?: string | undefined) => string>;
12516
12517
  migrationStepRegistry: Registry<MigrationStep>;
12518
+ chartJsExtensionRegistry: Registry<chart_js.Plugin<keyof chart_js.ChartTypeRegistry, chart_js_dist_types_basic.AnyObject>>;
12517
12519
  };
12518
12520
  declare const helpers: {
12519
12521
  arg: typeof arg;
@@ -13174,7 +13176,6 @@ declare const chartHelpers: {
13174
13176
  getSmartChartDefinition(zone: Zone, getters: Getters): ChartDefinition;
13175
13177
  truncateLabel(label: string | undefined): string;
13176
13178
  chartToImage(runtime: ChartRuntime, figure: Figure, type: string): string | undefined;
13177
- getChartJSConstructor(): typeof chart_js.Chart;
13178
13179
  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>>;
13179
13180
  createGaugeChartRuntime(chart: GaugeChart, getters: Getters): GaugeChartRuntime;
13180
13181
  GaugeChart: typeof GaugeChart;