@odoo/o-spreadsheet 17.4.33 → 17.4.34
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 +157 -48
- package/dist/o-spreadsheet.d.ts +29 -17
- package/dist/o-spreadsheet.esm.js +157 -48
- package/dist/o-spreadsheet.iife.js +157 -48
- package/dist/o-spreadsheet.iife.min.js +347 -347
- 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 17.4.
|
|
5
|
-
@date 2025-05-
|
|
6
|
-
@hash
|
|
4
|
+
@version 17.4.34
|
|
5
|
+
@date 2025-05-12T05:24:23.122Z
|
|
6
|
+
@hash e3ac48a
|
|
7
7
|
-->
|
|
8
8
|
<odoo>
|
|
9
9
|
<t t-name="o-spreadsheet-ActionButton">
|
|
@@ -474,6 +474,7 @@
|
|
|
474
474
|
t-on-compositionend="onCompositionEnd"
|
|
475
475
|
t-on-dblclick="onDblClick"
|
|
476
476
|
t-on-contextmenu="onContextMenu"
|
|
477
|
+
t-on-wheel="onWheel"
|
|
477
478
|
/>
|
|
478
479
|
|
|
479
480
|
<Popover
|
|
@@ -4684,7 +4685,7 @@
|
|
|
4684
4685
|
<t t-name="o-spreadsheet-PivotDimensionGranularity">
|
|
4685
4686
|
<div class="d-flex flex-row">
|
|
4686
4687
|
<div class="d-flex flex-row py-1 px-2 w-100 small">
|
|
4687
|
-
<t t-set="
|
|
4688
|
+
<t t-set="granularityProps" t-value="props.dimension.granularity || 'month'"/>
|
|
4688
4689
|
<div class="pivot-dim-operator-label">Granularity</div>
|
|
4689
4690
|
<select
|
|
4690
4691
|
class="o_input flex-grow-1"
|
|
@@ -4693,10 +4694,10 @@
|
|
|
4693
4694
|
t-foreach="props.allGranularities"
|
|
4694
4695
|
t-as="granularity"
|
|
4695
4696
|
t-key="granularity"
|
|
4696
|
-
t-if="props.availableGranularities.has(granularity) || granularity ===
|
|
4697
|
+
t-if="props.availableGranularities.has(granularity) || granularity === granularityProps"
|
|
4697
4698
|
t-att-value="granularity"
|
|
4698
4699
|
t-esc="periods[granularity]"
|
|
4699
|
-
t-att-selected="granularity ===
|
|
4700
|
+
t-att-selected="granularity === granularityProps or (granularity === 'month' and !granularityProps)"
|
|
4700
4701
|
/>
|
|
4701
4702
|
</select>
|
|
4702
4703
|
</div>
|