@odoo/o-spreadsheet 19.3.13 → 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.
- package/dist/o_spreadsheet.cjs +136 -38
- package/dist/o_spreadsheet.css +3 -3
- package/dist/o_spreadsheet.esm.js +136 -38
- package/dist/o_spreadsheet.iife.js +136 -38
- package/dist/o_spreadsheet.min.iife.js +246 -246
- package/dist/o_spreadsheet.xml +6 -8
- package/dist/types/components/figures/chart/chartJs/chartjs_geo_projection_plugin.d.ts +12 -0
- package/dist/types/components/helpers/dom_helpers.d.ts +2 -0
- package/dist/types/components/side_panel/pivot/pivot_layout_configurator/pivot_layout_configurator.d.ts +0 -2
- package/package.json +1 -1
package/dist/o_spreadsheet.xml
CHANGED
|
@@ -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.
|
|
5
|
-
@date 2026-
|
|
6
|
-
@hash
|
|
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">
|
|
@@ -1404,7 +1404,7 @@
|
|
|
1404
1404
|
/>
|
|
1405
1405
|
</t>
|
|
1406
1406
|
<div t-if="measure.computedBy" class="d-flex flex-row small">
|
|
1407
|
-
<div class="d-flex flex-column py-2 px-2 w-100"
|
|
1407
|
+
<div class="d-flex flex-column py-2 px-2 w-100">
|
|
1408
1408
|
<StandaloneComposer
|
|
1409
1409
|
onConfirm.bind="updateMeasureFormula"
|
|
1410
1410
|
composerContent="measure.computedBy.formula"
|
|
@@ -1483,7 +1483,7 @@
|
|
|
1483
1483
|
/>
|
|
1484
1484
|
<span t-else="1" class="o-fw-bold text-truncate" t-out="dimensionDisplayName"/>
|
|
1485
1485
|
</div>
|
|
1486
|
-
<div class="d-flex flex-rows"
|
|
1486
|
+
<div class="d-flex flex-rows">
|
|
1487
1487
|
<t t-slot="upper-right-icons"/>
|
|
1488
1488
|
<i
|
|
1489
1489
|
class="o-button-icon fa fa-trash pe-1 ps-2"
|
|
@@ -1558,9 +1558,7 @@
|
|
|
1558
1558
|
t-as="group"
|
|
1559
1559
|
t-key="group_index"
|
|
1560
1560
|
class="o-pivot-custom-group pb-1">
|
|
1561
|
-
<div
|
|
1562
|
-
class="d-flex align-items-center justify-content-between small"
|
|
1563
|
-
t-on-pointerdown.stop="">
|
|
1561
|
+
<div class="d-flex align-items-center justify-content-between small">
|
|
1564
1562
|
<TextInput
|
|
1565
1563
|
value="group.name"
|
|
1566
1564
|
onChange="(newName) => this.onRenameGroup(group_index, newName)"
|
|
@@ -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;
|
|
@@ -49,3 +49,5 @@ export declare function downloadFile(dataUrl: string, fileName: string): void;
|
|
|
49
49
|
export declare function isBrowserFirefox(): boolean;
|
|
50
50
|
export declare function isIOS(): boolean;
|
|
51
51
|
export declare function isMobileOS(): boolean;
|
|
52
|
+
/** Check if there is an interactive element (input, select, button, ...) between the event.target and event.currentTarget (inclusive)*/
|
|
53
|
+
export declare function hasInteractiveElementInEventTree(event: Event): boolean;
|
|
@@ -50,9 +50,7 @@ export declare class PivotLayoutConfigurator extends Component<Props, Spreadshee
|
|
|
50
50
|
private dimensionsRef;
|
|
51
51
|
private dragAndDrop;
|
|
52
52
|
AGGREGATORS: {};
|
|
53
|
-
private composerFocus;
|
|
54
53
|
isDateOrDatetimeField: typeof isDateOrDatetimeField;
|
|
55
|
-
setup(): void;
|
|
56
54
|
startDragAndDrop(dimension: PivotDimensionType, event: MouseEvent): void;
|
|
57
55
|
getGranularitiesFor(field: PivotField): string[];
|
|
58
56
|
startDragAndDropMeasures(measure: PivotMeasure, event: MouseEvent): void;
|