@odoo/o-spreadsheet 18.1.2 → 18.1.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 +145 -66
- package/dist/o-spreadsheet.d.ts +25 -8
- package/dist/o-spreadsheet.esm.js +145 -66
- package/dist/o-spreadsheet.iife.js +145 -66
- package/dist/o-spreadsheet.iife.min.js +6 -6
- 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.1.
|
|
5
|
-
@date 2025-01-
|
|
6
|
-
@hash
|
|
4
|
+
@version 18.1.4
|
|
5
|
+
@date 2025-01-29T06:28:13.321Z
|
|
6
|
+
@hash a11ef27
|
|
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}"
|
|
@@ -2109,7 +2109,13 @@
|
|
|
2109
2109
|
</svg>
|
|
2110
2110
|
</t>
|
|
2111
2111
|
<t t-name="o-spreadsheet-Icon.SMALL_DOT_RIGHT_ALIGN">
|
|
2112
|
-
<svg
|
|
2112
|
+
<svg
|
|
2113
|
+
class="o-icon"
|
|
2114
|
+
style="color: currentcolor;"
|
|
2115
|
+
width="10"
|
|
2116
|
+
height="10"
|
|
2117
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2118
|
+
viewBox="0 0 18 18">
|
|
2113
2119
|
<circle fill="currentColor" cx="14" cy="9" r="4"/>
|
|
2114
2120
|
</svg>
|
|
2115
2121
|
</t>
|