@odoo/o-spreadsheet 18.5.0-alpha.11 → 18.5.0-alpha.12
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 -42
- package/dist/o-spreadsheet.d.ts +167 -142
- package/dist/o-spreadsheet.esm.js +145 -42
- package/dist/o-spreadsheet.iife.js +145 -42
- package/dist/o-spreadsheet.iife.min.js +286 -286
- package/dist/o_spreadsheet.xml +18 -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.5.0-alpha.
|
|
5
|
-
@date 2025-08-
|
|
6
|
-
@hash
|
|
4
|
+
@version 18.5.0-alpha.12
|
|
5
|
+
@date 2025-08-29T08:06:00.157Z
|
|
6
|
+
@hash 8ee7677
|
|
7
7
|
-->
|
|
8
8
|
<odoo>
|
|
9
9
|
<t t-name="o-spreadsheet-ValidationMessages">
|
|
@@ -6535,8 +6535,13 @@
|
|
|
6535
6535
|
t-on-click="(ev) => this.selectClickableCell(ev, clickableCell)"
|
|
6536
6536
|
t-on-auxclick="(ev) => this.selectClickableCell(ev, clickableCell)"
|
|
6537
6537
|
t-on-contextmenu.prevent=""
|
|
6538
|
-
t-att-style="getCellClickableStyle(clickableCell.coordinates)"
|
|
6539
|
-
|
|
6538
|
+
t-att-style="getCellClickableStyle(clickableCell.coordinates)">
|
|
6539
|
+
<t
|
|
6540
|
+
t-if="clickableCell.component"
|
|
6541
|
+
t-component="clickableCell.component"
|
|
6542
|
+
t-props="clickableCell.componentProps"
|
|
6543
|
+
/>
|
|
6544
|
+
</div>
|
|
6540
6545
|
</GridOverlay>
|
|
6541
6546
|
<canvas t-ref="canvas"/>
|
|
6542
6547
|
<GridPopover
|
|
@@ -6551,6 +6556,14 @@
|
|
|
6551
6556
|
</div>
|
|
6552
6557
|
</t>
|
|
6553
6558
|
|
|
6559
|
+
<t t-name="o-spreadsheet-ClickableCellSortIcon">
|
|
6560
|
+
<div class="w-100 h-100 d-flex flex-column align-items-end justify-content-end">
|
|
6561
|
+
<span class="o-icon h-100 sorting-icon pb-1" t-att-style="style">
|
|
6562
|
+
<i class="fa fa-small" t-att-class="icon"/>
|
|
6563
|
+
</span>
|
|
6564
|
+
</div>
|
|
6565
|
+
</t>
|
|
6566
|
+
|
|
6554
6567
|
<t t-name="o-spreadsheet-TopBarComposer">
|
|
6555
6568
|
<div class="o-topbar-composer-container w-100">
|
|
6556
6569
|
<div
|