@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.
@@ -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.10
5
- @date 2024-04-05T14:00:40.320Z
6
- @hash edc821c
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="clickableCell.tKey"
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@odoo/o-spreadsheet",
3
- "version": "17.1.10",
3
+ "version": "17.1.12",
4
4
  "description": "A spreadsheet component",
5
5
  "type": "module",
6
6
  "main": "dist/o-spreadsheet.cjs.js",