@odoo/o-spreadsheet 17.1.12 → 17.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.
- package/dist/o-spreadsheet.cjs.js +423 -45
- package/dist/o-spreadsheet.d.ts +4 -1
- package/dist/o-spreadsheet.esm.js +424 -46
- package/dist/o-spreadsheet.iife.js +423 -45
- package/dist/o-spreadsheet.iife.min.js +102 -102
- package/dist/o_spreadsheet.xml +3 -3
- package/package.json +1 -1
package/dist/o-spreadsheet.d.ts
CHANGED
|
@@ -6248,6 +6248,7 @@ declare class ChartJsComponent extends Component<Props$B, SpreadsheetChildEnv> {
|
|
|
6248
6248
|
};
|
|
6249
6249
|
private canvas;
|
|
6250
6250
|
private chart?;
|
|
6251
|
+
private currentRuntime;
|
|
6251
6252
|
get background(): string;
|
|
6252
6253
|
get canvasStyle(): string;
|
|
6253
6254
|
get chartRuntime(): ChartJSRuntime;
|
|
@@ -8536,7 +8537,9 @@ declare function chartFontColor(backgroundColor: Color | undefined): Color;
|
|
|
8536
8537
|
/**
|
|
8537
8538
|
* Get a default chart js configuration
|
|
8538
8539
|
*/
|
|
8539
|
-
declare function getDefaultChartJsRuntime(chart: AbstractChart, labels: string[], fontColor: Color, { format, locale }: LocaleFormat
|
|
8540
|
+
declare function getDefaultChartJsRuntime(chart: AbstractChart, labels: string[], fontColor: Color, { format, locale, truncateLabels }: LocaleFormat & {
|
|
8541
|
+
truncateLabels?: boolean;
|
|
8542
|
+
}): Required<ChartConfiguration>;
|
|
8540
8543
|
/** See https://www.chartjs.org/docs/latest/charts/area.html#filling-modes */
|
|
8541
8544
|
declare function getFillingMode(index: number): "origin" | number;
|
|
8542
8545
|
|