@odoo/o-spreadsheet 17.4.0-alpha.6 → 17.4.0-alpha.7
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 +28 -48
- package/dist/o-spreadsheet.d.ts +2 -16
- package/dist/o-spreadsheet.esm.js +28 -48
- package/dist/o-spreadsheet.iife.js +28 -48
- package/dist/o-spreadsheet.iife.min.js +4 -4
- package/dist/o_spreadsheet.xml +3 -3
- package/package.json +6 -4
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.0-alpha.
|
|
5
|
-
@date 2024-06-
|
|
6
|
-
@hash
|
|
4
|
+
@version 17.4.0-alpha.7
|
|
5
|
+
@date 2024-06-21T08:43:10.344Z
|
|
6
|
+
@hash a99db9a
|
|
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.4.0-alpha.
|
|
3
|
+
"version": "17.4.0-alpha.7",
|
|
4
4
|
"description": "A spreadsheet component",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/o-spreadsheet.cjs.js",
|
|
@@ -14,11 +14,13 @@
|
|
|
14
14
|
],
|
|
15
15
|
"scripts": {
|
|
16
16
|
"serve-static": "live-server --open=demo --watch=build/o_spreadsheet.js,build/o_spreadsheet.xml,demo",
|
|
17
|
-
"dev": "npm-run-all --print-label
|
|
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:
|
|
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",
|
|
@@ -28,7 +30,7 @@
|
|
|
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:
|
|
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",
|