@odoo/o-spreadsheet 19.3.14 → 19.3.15

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.
@@ -1,9 +1,9 @@
1
1
  <!--
2
2
  This file is generated by o-spreadsheet build tools. Do not edit it.
3
3
  @see https://github.com/odoo/o-spreadsheet
4
- @version 19.3.14
5
- @date 2026-07-30T06:55:44.729Z
6
- @hash 3dd5632
4
+ @version 19.3.15
5
+ @date 2026-08-10T12:32:41.215Z
6
+ @hash 25f760e
7
7
  -->
8
8
  <odoo>
9
9
  <t t-name="o-spreadsheet-ValidationMessages">
@@ -0,0 +1,12 @@
1
+ import { Plugin } from "chart.js";
2
+ /**
3
+ * ChartJS plugin to apply custom changes to a d3 projection.
4
+ *
5
+ * We pass the projection as a string instead of a customized d3 object so
6
+ * Chart.js creates a fresh projection instance. Custom changes (e.g. rotation)
7
+ * are then applied in `beforeUpdate`.
8
+ *
9
+ * This is important because Chart.js mutates the projection instance at runtime,
10
+ * and a customize d3 projection object would not be copied during deepCopy.
11
+ */
12
+ export declare const geoProjectionPlugin: Plugin;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@odoo/o-spreadsheet",
3
- "version": "19.3.14",
3
+ "version": "19.3.15",
4
4
  "description": "A spreadsheet component",
5
5
  "type": "module",
6
6
  "main": "dist/o_spreadsheet.cjs",