@odoo/o-spreadsheet 18.3.0-alpha.0 → 18.3.0-alpha.2
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 +374 -292
- package/dist/o-spreadsheet.d.ts +33 -19
- package/dist/o-spreadsheet.esm.js +374 -292
- package/dist/o-spreadsheet.iife.js +374 -292
- package/dist/o-spreadsheet.iife.min.js +380 -380
- package/dist/o_spreadsheet.xml +7 -4
- package/package.json +2 -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.3.0-alpha.
|
|
5
|
-
@date 2025-02-
|
|
6
|
-
@hash
|
|
4
|
+
@version 18.3.0-alpha.2
|
|
5
|
+
@date 2025-02-27T06:31:45.929Z
|
|
6
|
+
@hash 17e5bfa
|
|
7
7
|
-->
|
|
8
8
|
<odoo>
|
|
9
9
|
<t t-name="o-spreadsheet-ValidationMessages">
|
|
@@ -3641,6 +3641,7 @@
|
|
|
3641
3641
|
t-att-title="getName(menuItem)"
|
|
3642
3642
|
t-att-data-name="menuItem.id"
|
|
3643
3643
|
t-on-click="(ev) => this.onClickMenu(menuItem, ev)"
|
|
3644
|
+
t-on-auxclick="(ev) => this.onClickMenu(menuItem, ev)"
|
|
3644
3645
|
t-on-mouseenter="(ev) => this.onMouseEnter(menuItem, ev)"
|
|
3645
3646
|
t-on-mouseover="(ev) => this.onMouseOver(menuItem, ev)"
|
|
3646
3647
|
t-on-mouseleave="(ev) => this.onMouseLeave(menuItem)"
|
|
@@ -3777,6 +3778,7 @@
|
|
|
3777
3778
|
t-else=""
|
|
3778
3779
|
class="o-link"
|
|
3779
3780
|
t-on-click.prevent="openLink"
|
|
3781
|
+
t-on-auxclick.prevent="openLink"
|
|
3780
3782
|
t-att-title="getUrlRepresentation(link)">
|
|
3781
3783
|
<t t-esc="getUrlRepresentation(link)"/>
|
|
3782
3784
|
</a>
|
|
@@ -5560,7 +5562,8 @@
|
|
|
5560
5562
|
t-key="clickableCell_index"
|
|
5561
5563
|
class="o-dashboard-clickable-cell"
|
|
5562
5564
|
t-att-title="clickableCell.title"
|
|
5563
|
-
t-on-click="() => this.selectClickableCell(clickableCell)"
|
|
5565
|
+
t-on-click="(ev) => this.selectClickableCell(ev, clickableCell)"
|
|
5566
|
+
t-on-auxclick="(ev) => this.selectClickableCell(ev, clickableCell)"
|
|
5564
5567
|
t-on-contextmenu.prevent=""
|
|
5565
5568
|
t-att-style="getCellClickableStyle(clickableCell.coordinates)"
|
|
5566
5569
|
/>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@odoo/o-spreadsheet",
|
|
3
|
-
"version": "18.3.0-alpha.
|
|
3
|
+
"version": "18.3.0-alpha.2",
|
|
4
4
|
"description": "A spreadsheet component",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/o-spreadsheet.cjs.js",
|
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
"bundle:xml": "node tools/bundle_xml/main.cjs",
|
|
23
23
|
"bundle:dev": "npm-run-all build:js bundle:iife \"bundle:xml -- --outDir build\" && node tools/bundle_scss/main.cjs --out build",
|
|
24
24
|
"dist": "tsc --module es6 --declaration --declarationDir dist/types && rollup -c && npm run bundle:xml -- --outDir dist && node tools/bundle_scss/main.cjs --out dist",
|
|
25
|
+
"monkey": "SPREADSHEET_MONKEY_COUNT=$npm_config_monkey_count jest 'tests/collaborative/collaborative_monkey_party.test.ts'",
|
|
25
26
|
"test": "tsc --noEmit --project tsconfig.jest.json && jest",
|
|
26
27
|
"test:watch": "jest --watch",
|
|
27
28
|
"prettier": "prettier . --write",
|