@odoo/o-spreadsheet 19.1.22 → 19.1.26

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.1.22
5
- @date 2026-06-06T06:23:20.125Z
6
- @hash 97a02db
4
+ @version 19.1.26
5
+ @date 2026-07-01T05:03:32.458Z
6
+ @hash 44237c0
7
7
  -->
8
8
  <odoo>
9
9
  <t t-name="o-spreadsheet-ValidationMessages">
@@ -7691,7 +7691,7 @@
7691
7691
  t-if="state.pickerOpened"
7692
7692
  anchorRect="colorPickerAnchorRect"
7693
7693
  onColorPicked.bind="onColorPicked"
7694
- currentColor="props.currentColor"
7694
+ currentColor="this.state.currentPickerColor"
7695
7695
  />
7696
7696
  </t>
7697
7697
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@odoo/o-spreadsheet",
3
- "version": "19.1.22",
3
+ "version": "19.1.26",
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",