@odoo/o-spreadsheet 18.0.26 → 18.0.27
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 +130 -48
- package/dist/o-spreadsheet.d.ts +4 -2
- package/dist/o-spreadsheet.esm.js +130 -48
- package/dist/o-spreadsheet.iife.js +130 -48
- package/dist/o-spreadsheet.iife.min.js +363 -363
- 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.0.
|
|
5
|
-
@date 2025-05-
|
|
6
|
-
@hash
|
|
4
|
+
@version 18.0.27
|
|
5
|
+
@date 2025-05-12T05:26:38.907Z
|
|
6
|
+
@hash 9b36340
|
|
7
7
|
-->
|
|
8
8
|
<odoo>
|
|
9
9
|
<t t-name="o-spreadsheet-ActionButton">
|
|
@@ -512,6 +512,7 @@
|
|
|
512
512
|
t-on-dblclick="onDblClick"
|
|
513
513
|
t-on-contextmenu="onContextMenu"
|
|
514
514
|
t-on-blur="onBlur"
|
|
515
|
+
t-on-wheel="onWheel"
|
|
515
516
|
/>
|
|
516
517
|
</div>
|
|
517
518
|
<div
|
|
@@ -5056,7 +5057,7 @@
|
|
|
5056
5057
|
<t t-name="o-spreadsheet-PivotDimensionGranularity">
|
|
5057
5058
|
<div class="d-flex flex-row">
|
|
5058
5059
|
<div class="d-flex flex-row py-1 px-2 w-100 small">
|
|
5059
|
-
<t t-set="
|
|
5060
|
+
<t t-set="granularityProps" t-value="props.dimension.granularity || 'month'"/>
|
|
5060
5061
|
<div class="pivot-dim-operator-label">Granularity</div>
|
|
5061
5062
|
<select
|
|
5062
5063
|
class="o-input flex-grow-1"
|
|
@@ -5065,10 +5066,10 @@
|
|
|
5065
5066
|
t-foreach="props.allGranularities"
|
|
5066
5067
|
t-as="granularity"
|
|
5067
5068
|
t-key="granularity"
|
|
5068
|
-
t-if="props.availableGranularities.has(granularity) || granularity ===
|
|
5069
|
+
t-if="props.availableGranularities.has(granularity) || granularity === granularityProps"
|
|
5069
5070
|
t-att-value="granularity"
|
|
5070
5071
|
t-esc="periods[granularity]"
|
|
5071
|
-
t-att-selected="granularity ===
|
|
5072
|
+
t-att-selected="granularity === granularityProps or (granularity === 'month' and !granularityProps)"
|
|
5072
5073
|
/>
|
|
5073
5074
|
</select>
|
|
5074
5075
|
</div>
|