@odoo/o-spreadsheet 17.3.2 → 17.3.4
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 +96 -99
- package/dist/o-spreadsheet.d.ts +14 -6
- package/dist/o-spreadsheet.esm.js +96 -99
- package/dist/o-spreadsheet.iife.js +96 -99
- package/dist/o-spreadsheet.iife.min.js +339 -339
- package/dist/o_spreadsheet.xml +6 -5
- 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.3.
|
|
5
|
-
@date 2024-06-
|
|
6
|
-
@hash
|
|
4
|
+
@version 17.3.4
|
|
5
|
+
@date 2024-06-21T20:00:53.918Z
|
|
6
|
+
@hash 6efbf3b
|
|
7
7
|
-->
|
|
8
8
|
<odoo>
|
|
9
9
|
<t t-name="o-spreadsheet-ActionButton">
|
|
@@ -4168,7 +4168,7 @@
|
|
|
4168
4168
|
</select>
|
|
4169
4169
|
<div t-if="searchOptions.searchScope === 'specificRange'">
|
|
4170
4170
|
<SelectionInput
|
|
4171
|
-
ranges="[this.dataRange]"
|
|
4171
|
+
ranges="[this.state.dataRange]"
|
|
4172
4172
|
onSelectionChanged="(ranges) => this.onSearchRangeChanged(ranges)"
|
|
4173
4173
|
onSelectionConfirmed.bind="updateDataRange"
|
|
4174
4174
|
hasSingleRange="true"
|
|
@@ -4197,7 +4197,7 @@
|
|
|
4197
4197
|
/>
|
|
4198
4198
|
</div>
|
|
4199
4199
|
<div class="o-matches-count mt-4" t-if="store.toSearch !== ''">
|
|
4200
|
-
<div t-if="searchOptions.searchScope === 'specificRange' and dataRange != ''">
|
|
4200
|
+
<div t-if="searchOptions.searchScope === 'specificRange' and state.dataRange != ''">
|
|
4201
4201
|
<t t-esc="specificRangeMatchesCount"/>
|
|
4202
4202
|
</div>
|
|
4203
4203
|
<div>
|
|
@@ -4607,6 +4607,7 @@
|
|
|
4607
4607
|
menuItems="props.menuItems"
|
|
4608
4608
|
position="menuPosition"
|
|
4609
4609
|
onClose.bind="onMenuClosed"
|
|
4610
|
+
menuId="menuId"
|
|
4610
4611
|
/>
|
|
4611
4612
|
</t>
|
|
4612
4613
|
|