@odoo/o-spreadsheet 18.0.9 → 18.0.11
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 +694 -317
- package/dist/o-spreadsheet.d.ts +30 -16
- package/dist/o-spreadsheet.esm.js +694 -317
- package/dist/o-spreadsheet.iife.js +694 -317
- package/dist/o-spreadsheet.iife.min.js +372 -345
- package/dist/o_spreadsheet.xml +11 -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 18.0.
|
|
5
|
-
@date 2025-01-
|
|
6
|
-
@hash
|
|
4
|
+
@version 18.0.11
|
|
5
|
+
@date 2025-01-27T10:09:05.689Z
|
|
6
|
+
@hash e8c6bd1
|
|
7
7
|
-->
|
|
8
8
|
<odoo>
|
|
9
9
|
<t t-name="o-spreadsheet-ActionButton">
|
|
@@ -440,7 +440,7 @@
|
|
|
440
440
|
t-ref="autoCompleteList"
|
|
441
441
|
t-att-class="{
|
|
442
442
|
'o-autocomplete-dropdown': props.proposals.length}">
|
|
443
|
-
<t t-foreach="props.proposals" t-as="proposal" t-key="proposal.text">
|
|
443
|
+
<t t-foreach="props.proposals" t-as="proposal" t-key="proposal.text + proposal_index">
|
|
444
444
|
<div
|
|
445
445
|
class="d-flex flex-column text-start"
|
|
446
446
|
t-att-class="{'o-autocomplete-value-focus': props.selectedIndex === proposal_index}"
|
|
@@ -2099,7 +2099,13 @@
|
|
|
2099
2099
|
</svg>
|
|
2100
2100
|
</t>
|
|
2101
2101
|
<t t-name="o-spreadsheet-Icon.SMALL_DOT_RIGHT_ALIGN">
|
|
2102
|
-
<svg
|
|
2102
|
+
<svg
|
|
2103
|
+
class="o-icon"
|
|
2104
|
+
style="color: currentcolor;"
|
|
2105
|
+
width="10"
|
|
2106
|
+
height="10"
|
|
2107
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2108
|
+
viewBox="0 0 18 18">
|
|
2103
2109
|
<circle fill="currentColor" cx="14" cy="9" r="4"/>
|
|
2104
2110
|
</svg>
|
|
2105
2111
|
</t>
|