@odoo/o-spreadsheet 17.1.10 → 17.1.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 +455 -456
- package/dist/o-spreadsheet.d.ts +14 -9
- package/dist/o-spreadsheet.esm.js +455 -456
- package/dist/o-spreadsheet.iife.js +455 -456
- package/dist/o-spreadsheet.iife.min.js +255 -251
- 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.1.
|
|
5
|
-
@date 2024-04-
|
|
6
|
-
@hash
|
|
4
|
+
@version 17.1.12
|
|
5
|
+
@date 2024-04-18T16:46:06.038Z
|
|
6
|
+
@hash 3e90776
|
|
7
7
|
-->
|
|
8
8
|
<odoo>
|
|
9
9
|
<t t-name="o-spreadsheet-ActionButton">
|
|
@@ -471,6 +471,7 @@
|
|
|
471
471
|
t-on-compositionstart="onCompositionStart"
|
|
472
472
|
t-on-compositionend="onCompositionEnd"
|
|
473
473
|
t-on-dblclick="onDblClick"
|
|
474
|
+
t-on-contextmenu="onContextMenu"
|
|
474
475
|
/>
|
|
475
476
|
|
|
476
477
|
<div
|
|
@@ -606,7 +607,7 @@
|
|
|
606
607
|
<div
|
|
607
608
|
t-foreach="getClickableCells()"
|
|
608
609
|
t-as="clickableCell"
|
|
609
|
-
t-key="
|
|
610
|
+
t-key="clickableCell_index"
|
|
610
611
|
class="o-dashboard-clickable-cell"
|
|
611
612
|
t-on-click="() => this.selectClickableCell(clickableCell)"
|
|
612
613
|
t-on-contextmenu.prevent=""
|
|
@@ -950,7 +951,6 @@
|
|
|
950
951
|
t-on-click="focusDefaultElement"
|
|
951
952
|
t-on-keydown="onKeydown"
|
|
952
953
|
t-on-wheel="onMouseWheel"
|
|
953
|
-
t-on-contextmenu="onInputContextMenu"
|
|
954
954
|
t-ref="grid">
|
|
955
955
|
<GridOverlay
|
|
956
956
|
onCellClicked.bind="onCellClicked"
|
|
@@ -968,6 +968,7 @@
|
|
|
968
968
|
onComposerContentFocused="props.onComposerContentFocused"
|
|
969
969
|
onComposerCellFocused="props.onGridComposerCellFocused"
|
|
970
970
|
gridDims="env.model.getters.getSheetViewDimensionWithHeaders()"
|
|
971
|
+
onInputContextMenu.bind="onInputContextMenu"
|
|
971
972
|
/>
|
|
972
973
|
<canvas t-ref="canvas"/>
|
|
973
974
|
<t
|