@odoo/o-spreadsheet 19.2.27 → 19.2.29
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.css +7 -4
- package/dist/o_spreadsheet.esm.js +56 -59
- package/dist/o_spreadsheet.iife.js +56 -59
- package/dist/o_spreadsheet.iife.min.js +10 -10
- package/dist/o_spreadsheet.xml +7 -10
- 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.2.
|
|
5
|
-
@date 2026-
|
|
6
|
-
@hash
|
|
4
|
+
@version 19.2.29
|
|
5
|
+
@date 2026-09-10T05:38:16.575Z
|
|
6
|
+
@hash a3d2956
|
|
7
7
|
-->
|
|
8
8
|
<odoo>
|
|
9
9
|
<t t-name="o-spreadsheet-ValidationMessages">
|
|
@@ -3880,7 +3880,7 @@
|
|
|
3880
3880
|
<span class="w-100">Horizontal axis</span>
|
|
3881
3881
|
<Select
|
|
3882
3882
|
selectedValue="getGroupByType('horizontal') || ''"
|
|
3883
|
-
values="
|
|
3883
|
+
values="this.groupByChoices"
|
|
3884
3884
|
class="'o-horizontal-group-by'"
|
|
3885
3885
|
onChange="(value) => this.updateGroupBy('horizontal', value)"
|
|
3886
3886
|
/>
|
|
@@ -3889,7 +3889,7 @@
|
|
|
3889
3889
|
<span class="w-100">Vertical axis</span>
|
|
3890
3890
|
<Select
|
|
3891
3891
|
selectedValue="getGroupByType('vertical') || ''"
|
|
3892
|
-
values="
|
|
3892
|
+
values="this.groupByChoices"
|
|
3893
3893
|
class="'o-vertical-group-by'"
|
|
3894
3894
|
onChange="(value) => this.updateGroupBy('vertical', value)"
|
|
3895
3895
|
/>
|
|
@@ -6437,10 +6437,7 @@
|
|
|
6437
6437
|
t-on-click="onClick"
|
|
6438
6438
|
t-on-dblclick.self="onDoubleClick"
|
|
6439
6439
|
t-on-contextmenu.stop.prevent="onContextMenu">
|
|
6440
|
-
<GridAddRowsFooter
|
|
6441
|
-
t-if="!env.model.getters.isReadonly()"
|
|
6442
|
-
t-key="env.model.getters.getActiveSheetId()"
|
|
6443
|
-
/>
|
|
6440
|
+
<GridAddRowsFooter t-if="this.isFooterVisible" t-key="env.model.getters.getActiveSheetId()"/>
|
|
6444
6441
|
<t t-slot="default"/>
|
|
6445
6442
|
</div>
|
|
6446
6443
|
</t>
|
|
@@ -7073,7 +7070,7 @@
|
|
|
7073
7070
|
|
|
7074
7071
|
<t t-name="o-spreadsheet-SpreadsheetDashboard">
|
|
7075
7072
|
<div
|
|
7076
|
-
class="o-grid o-two-columns o-zoomable"
|
|
7073
|
+
class="o-grid o-dashboard-grid o-two-columns o-zoomable"
|
|
7077
7074
|
t-ref="dashboard"
|
|
7078
7075
|
tabindex="-1"
|
|
7079
7076
|
t-on-wheel="onMouseWheel"
|