@odoo/o-spreadsheet 19.2.16 → 19.2.19

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 19.2.16
5
- @date 2026-06-17T08:56:53.984Z
6
- @hash c5c6fd3
4
+ @version 19.2.19
5
+ @date 2026-07-01T05:04:29.449Z
6
+ @hash 3529978
7
7
  -->
8
8
  <odoo>
9
9
  <t t-name="o-spreadsheet-ValidationMessages">
@@ -7660,7 +7660,7 @@
7660
7660
  t-if="state.pickerOpened"
7661
7661
  anchorRect="colorPickerAnchorRect"
7662
7662
  onColorPicked.bind="onColorPicked"
7663
- currentColor="props.currentColor"
7663
+ currentColor="this.state.currentPickerColor"
7664
7664
  />
7665
7665
  </t>
7666
7666
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@odoo/o-spreadsheet",
3
- "version": "19.2.16",
3
+ "version": "19.2.19",
4
4
  "description": "A spreadsheet component",
5
5
  "type": "module",
6
6
  "main": "dist/o-spreadsheet.cjs.js",
@@ -13,9 +13,6 @@
13
13
  "dist/*.xml",
14
14
  "dist/*.css"
15
15
  ],
16
- "engines": {
17
- "node": ">=22.0.0"
18
- },
19
16
  "scripts": {
20
17
  "prepare": "husky install",
21
18
  "prettier": "prettier . --write",
@@ -42,8 +39,10 @@
42
39
  "postdist": " npm run bundle:xml -- --outDir dist && npm run bundle:css -- --out dist",
43
40
  "test": "tsc --noEmit --project tests/tsconfig.json && jest",
44
41
  "monkey": "SPREADSHEET_MONKEY_COUNT=$npm_config_monkey_count jest 'tests/collaborative/collaborative_monkey_party.test.ts'",
42
+ "model-in-node": "npm run dist && node tools/run_in_node.cjs",
45
43
  "zipXlsx": "node tools/bundle_xlsx/zip_xlsx_demo.cjs",
46
- "unzipXlsx": "node tools/bundle_xlsx/unzip_xlsx_demo.cjs"
44
+ "unzipXlsx": "node tools/bundle_xlsx/unzip_xlsx_demo.cjs",
45
+ "runbot": "npm run check-formatting && npm run model-in-node && npm run test --"
47
46
  },
48
47
  "browserslist": [
49
48
  "last 1 Chrome versions"
@@ -133,6 +132,10 @@
133
132
  "@rolldown/binding-win32-arm64-msvc": "1.0.0",
134
133
  "@rolldown/binding-win32-x64-msvc": "1.0.0"
135
134
  },
135
+ "engines": {
136
+ "node": ">=24.17.0",
137
+ "npm": ">=11.13.0"
138
+ },
136
139
  "prettier": {
137
140
  "printWidth": 100,
138
141
  "xmlWhitespaceSensitivity": "ignore",