@odoo/o-spreadsheet 17.2.18 → 17.2.20

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.2.18
5
- @date 2024-07-24T10:28:43.614Z
6
- @hash 6c65743
4
+ @version 17.2.20
5
+ @date 2024-08-09T12:24:52.324Z
6
+ @hash d667a15
7
7
  -->
8
8
  <odoo>
9
9
  <t t-name="o-spreadsheet-ActionButton">
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@odoo/o-spreadsheet",
3
- "version": "17.2.18",
3
+ "version": "17.2.20",
4
4
  "description": "A spreadsheet component",
5
5
  "type": "module",
6
6
  "main": "dist/o-spreadsheet.cjs.js",
@@ -13,22 +13,24 @@
13
13
  "dist/*.xml"
14
14
  ],
15
15
  "scripts": {
16
- "serve-static": "live-server --open=demo --watch=build/o_spreadsheet.js,build/o_spreadsheet.xml,demo",
17
- "dev": "npm-run-all --print-label build --parallel server serve-static watch:*",
16
+ "serve-static": "live-server --open=demo --watch=build/o_spreadsheet.dev.js,build/o_spreadsheet.xml,demo",
17
+ "dev": "npm-run-all --print-label buildDev --parallel server serve-static watch:*",
18
18
  "server": "node tools/server/main.cjs",
19
19
  "build:js": "tsc --module es6 --incremental",
20
- "build:bundleJs": "rollup -c -m --configDev",
20
+ "build:bundleJsDev": "rollup -c -m --configDev",
21
+ "build:bundleJs": "rollup -c -m --configDist",
21
22
  "build:bundleXml": "node tools/bundle_xml/main.cjs",
23
+ "buildDev": "npm-run-all build:js build:bundleJsDev \"build:bundleXml -- --outDir build\"",
22
24
  "build": "npm-run-all build:js build:bundleJs \"build:bundleXml -- --outDir build\"",
23
25
  "doc": "typedoc",
24
26
  "precommit": "npm run prettier && npm run doc",
25
- "test": "jest",
27
+ "test": "tsc --noEmit --project tsconfig.jest.json && jest",
26
28
  "test:watch": "jest --watch",
27
29
  "prettier": "prettier . --write",
28
30
  "check-formatting": "prettier . --check",
29
31
  "dist": "tsc --module es6 --declaration --declarationDir dist/types && rollup -c && npm run build:bundleXml -- --outDir dist",
30
32
  "prepare": "husky install",
31
- "watch:bundle": "npm run build:bundleJs -- --watch",
33
+ "watch:bundle": "npm run build:bundleJsDev -- --watch",
32
34
  "watch:ts": "npm run build:js -- --watch",
33
35
  "watch:xml": "node tools/bundle_xml/watch_xml_templates.cjs",
34
36
  "unzipXlsx": "node tools/bundle_xlsx/unzip_xlsx_demo.cjs",
@@ -57,6 +59,7 @@
57
59
  "@prettier/plugin-xml": "^2.2.0",
58
60
  "@rollup/plugin-node-resolve": "^15.2.0",
59
61
  "@rollup/plugin-terser": "^0.4.3",
62
+ "@swc/jest": "^0.2.36",
60
63
  "@types/jest": "^27.0.1",
61
64
  "@types/node": "^13.13.23",
62
65
  "@types/rbush": "^3.0.3",
@@ -87,10 +90,9 @@
87
90
  "rollup": "^3.28.0",
88
91
  "rollup-plugin-dts": "^5.3.1",
89
92
  "rollup-plugin-typescript2": "^0.35.0",
90
- "ts-jest": "^29.1.0",
91
- "typedoc": "0.24.8",
92
- "typedoc-plugin-markdown": "3.11.1",
93
- "typescript": "^5.1.6",
93
+ "typedoc": "0.25.12",
94
+ "typedoc-plugin-markdown": "3.17.1",
95
+ "typescript": "^5.4.3",
94
96
  "xml-formatter": "^2.4.0"
95
97
  },
96
98
  "prettier": {
@@ -100,7 +102,7 @@
100
102
  "xmlSelfClosingSpace": false
101
103
  },
102
104
  "dependencies": {
103
- "@odoo/owl": "2.2.10",
105
+ "@odoo/owl": "2.3.0",
104
106
  "bootstrap": "^5.1.3",
105
107
  "rbush": "^3.0.1"
106
108
  },
@@ -111,10 +113,7 @@
111
113
  ],
112
114
  "transform": {
113
115
  "^.+\\.ts?$": [
114
- "ts-jest",
115
- {
116
- "tsconfig": "tsconfig.jest.json"
117
- }
116
+ "@swc/jest"
118
117
  ]
119
118
  },
120
119
  "verbose": false,