@odoo/o-spreadsheet 17.4.0 → 17.4.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.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.4.
|
|
5
|
-
@date 2024-07-
|
|
6
|
-
@hash
|
|
4
|
+
@version 17.4.2
|
|
5
|
+
@date 2024-07-24T10:26:49.691Z
|
|
6
|
+
@hash f5ede5b
|
|
7
7
|
-->
|
|
8
8
|
<odoo>
|
|
9
9
|
<t t-name="o-spreadsheet-ActionButton">
|
|
@@ -4754,7 +4754,7 @@
|
|
|
4754
4754
|
</div>
|
|
4755
4755
|
</t>
|
|
4756
4756
|
<div
|
|
4757
|
-
class="fw-bold pt-4 pb-1 d-flex flex-row justify-content-between align-items-center o-section-title">
|
|
4757
|
+
class="fw-bold pt-4 pb-1 d-flex flex-row justify-content-between align-items-center o-section-title o-pivot-measure">
|
|
4758
4758
|
Measures
|
|
4759
4759
|
<AddDimensionButton
|
|
4760
4760
|
onFieldPicked.bind="addMeasureDimension"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@odoo/o-spreadsheet",
|
|
3
|
-
"version": "17.4.
|
|
3
|
+
"version": "17.4.2",
|
|
4
4
|
"description": "A spreadsheet component",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/o-spreadsheet.cjs.js",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"build": "npm-run-all build:js build:bundleJs \"build:bundleXml -- --outDir build\"",
|
|
25
25
|
"doc": "typedoc",
|
|
26
26
|
"precommit": "npm run prettier && npm run doc",
|
|
27
|
-
"test": "jest",
|
|
27
|
+
"test": "tsc --noEmit --project tsconfig.jest.json && jest",
|
|
28
28
|
"test:watch": "jest --watch",
|
|
29
29
|
"prettier": "prettier . --write",
|
|
30
30
|
"check-formatting": "prettier . --check",
|
|
@@ -59,6 +59,7 @@
|
|
|
59
59
|
"@prettier/plugin-xml": "^2.2.0",
|
|
60
60
|
"@rollup/plugin-node-resolve": "^15.2.0",
|
|
61
61
|
"@rollup/plugin-terser": "^0.4.3",
|
|
62
|
+
"@swc/jest": "^0.2.36",
|
|
62
63
|
"@types/jest": "^27.0.1",
|
|
63
64
|
"@types/node": "^13.13.23",
|
|
64
65
|
"@types/rbush": "^3.0.3",
|
|
@@ -89,7 +90,6 @@
|
|
|
89
90
|
"rollup": "^3.28.0",
|
|
90
91
|
"rollup-plugin-dts": "^5.3.1",
|
|
91
92
|
"rollup-plugin-typescript2": "^0.35.0",
|
|
92
|
-
"ts-jest": "^29.1.0",
|
|
93
93
|
"typedoc": "0.25.12",
|
|
94
94
|
"typedoc-plugin-markdown": "3.17.1",
|
|
95
95
|
"typescript": "^5.4.3",
|
|
@@ -114,10 +114,7 @@
|
|
|
114
114
|
],
|
|
115
115
|
"transform": {
|
|
116
116
|
"^.+\\.ts?$": [
|
|
117
|
-
"
|
|
118
|
-
{
|
|
119
|
-
"tsconfig": "tsconfig.jest.json"
|
|
120
|
-
}
|
|
117
|
+
"@swc/jest"
|
|
121
118
|
]
|
|
122
119
|
},
|
|
123
120
|
"verbose": false,
|