@odoo/o-spreadsheet 18.3.1 → 18.3.2
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 +195 -66
- package/dist/o-spreadsheet.d.ts +9 -4
- package/dist/o-spreadsheet.esm.js +195 -66
- package/dist/o-spreadsheet.iife.js +195 -66
- package/dist/o-spreadsheet.iife.min.js +383 -383
- package/dist/o_spreadsheet.xml +7 -6
- 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 18.3.
|
|
5
|
-
@date 2025-05-
|
|
6
|
-
@hash
|
|
4
|
+
@version 18.3.2
|
|
5
|
+
@date 2025-05-12T05:26:27.967Z
|
|
6
|
+
@hash 57d5a67
|
|
7
7
|
-->
|
|
8
8
|
<odoo>
|
|
9
9
|
<t t-name="o-spreadsheet-ValidationMessages">
|
|
@@ -1017,7 +1017,7 @@
|
|
|
1017
1017
|
<t t-name="o-spreadsheet-PivotDimensionGranularity">
|
|
1018
1018
|
<div class="d-flex flex-row">
|
|
1019
1019
|
<div class="d-flex flex-row py-1 px-2 w-100 small">
|
|
1020
|
-
<t t-set="
|
|
1020
|
+
<t t-set="granularityProps" t-value="props.dimension.granularity || 'month'"/>
|
|
1021
1021
|
<div class="pivot-dim-operator-label">Granularity</div>
|
|
1022
1022
|
<select
|
|
1023
1023
|
class="o-input flex-grow-1"
|
|
@@ -1026,10 +1026,10 @@
|
|
|
1026
1026
|
t-foreach="props.allGranularities"
|
|
1027
1027
|
t-as="granularity"
|
|
1028
1028
|
t-key="granularity"
|
|
1029
|
-
t-if="props.availableGranularities.has(granularity) || granularity ===
|
|
1029
|
+
t-if="props.availableGranularities.has(granularity) || granularity === granularityProps"
|
|
1030
1030
|
t-att-value="granularity"
|
|
1031
1031
|
t-esc="periods[granularity]"
|
|
1032
|
-
t-att-selected="granularity ===
|
|
1032
|
+
t-att-selected="granularity === granularityProps or (granularity === 'month' and !granularityProps)"
|
|
1033
1033
|
/>
|
|
1034
1034
|
</select>
|
|
1035
1035
|
</div>
|
|
@@ -6062,6 +6062,7 @@
|
|
|
6062
6062
|
t-on-dblclick="onDblClick"
|
|
6063
6063
|
t-on-contextmenu="onContextMenu"
|
|
6064
6064
|
t-on-blur="onBlur"
|
|
6065
|
+
t-on-wheel="onWheel"
|
|
6065
6066
|
/>
|
|
6066
6067
|
</div>
|
|
6067
6068
|
<div
|