@odoo/o-spreadsheet 18.4.9 → 18.4.11

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 18.4.9
5
- @date 2025-09-05T07:39:21.946Z
6
- @hash a261873
4
+ @version 18.4.11
5
+ @date 2025-09-19T07:26:27.418Z
6
+ @hash c7e71ac
7
7
  -->
8
8
  <odoo>
9
9
  <t t-name="o-spreadsheet-ValidationMessages">
@@ -1120,6 +1120,12 @@
1120
1120
  t-att-selected="agg === measure.aggregator"
1121
1121
  t-esc="props.aggregators[measure.type][agg]"
1122
1122
  />
1123
+ <option
1124
+ t-if="measure.computedBy"
1125
+ t-att-value="''"
1126
+ t-att-selected="'' === measure.aggregator">
1127
+ Compute from totals
1128
+ </option>
1123
1129
  </select>
1124
1130
  </div>
1125
1131
  </div>
@@ -4161,10 +4167,7 @@
4161
4167
  t-att-style="getIconColor(menuItem)">
4162
4168
  <t t-if="getIconName(menuItem)" t-call="{{getIconName(menuItem)}}"/>
4163
4169
  </div>
4164
- <div
4165
- class="o-menu-item-name align-middle text-truncate align-items-center d-flex"
4166
- t-esc="getName(menuItem)"
4167
- />
4170
+ <div class="o-menu-item-name align-middle text-truncate" t-esc="getName(menuItem)"/>
4168
4171
  <t t-set="description" t-value="menuItem.description(env)"/>
4169
4172
  <div
4170
4173
  t-if="description"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@odoo/o-spreadsheet",
3
- "version": "18.4.9",
3
+ "version": "18.4.11",
4
4
  "description": "A spreadsheet component",
5
5
  "type": "module",
6
6
  "main": "dist/o-spreadsheet.cjs.js",
@@ -61,7 +61,8 @@
61
61
  "@prettier/plugin-xml": "^2.2.0",
62
62
  "@rollup/plugin-node-resolve": "^15.2.0",
63
63
  "@rollup/plugin-terser": "^0.4.3",
64
- "@swc/jest": "^0.2.36",
64
+ "@swc/jest": "0.2.36",
65
+ "@swc/core": "1.6.7",
65
66
  "@types/jest": "^27.0.1",
66
67
  "@types/node": "^20.17.24",
67
68
  "@types/rbush": "^3.0.3",
@@ -100,6 +101,18 @@
100
101
  "typescript-eslint": "^8.30.1",
101
102
  "xml-formatter": "^2.4.0"
102
103
  },
104
+ "optionalDependencies": {
105
+ "@swc/core-darwin-arm64": "1.6.7",
106
+ "@swc/core-darwin-x64": "1.6.7",
107
+ "@swc/core-linux-arm-gnueabihf": "1.6.7",
108
+ "@swc/core-linux-arm64-gnu": "1.6.7",
109
+ "@swc/core-linux-arm64-musl": "1.6.7",
110
+ "@swc/core-linux-x64-gnu": "1.6.7",
111
+ "@swc/core-linux-x64-musl": "1.6.7",
112
+ "@swc/core-win32-arm64-msvc": "1.6.7",
113
+ "@swc/core-win32-ia32-msvc": "1.6.7",
114
+ "@swc/core-win32-x64-msvc": "1.6.7"
115
+ },
103
116
  "prettier": {
104
117
  "printWidth": 100,
105
118
  "xmlWhitespaceSensitivity": "ignore",
@@ -147,6 +160,6 @@
147
160
  ]
148
161
  },
149
162
  "publishConfig": {
150
- "tag": "latest"
163
+ "tag": "18-4"
151
164
  }
152
165
  }