@odoo/o-spreadsheet 18.5.0-alpha.4 → 18.5.0-alpha.5

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.5.0-alpha.4
5
- @date 2025-07-30T11:24:09.087Z
6
- @hash 34a4ab3
4
+ @version 18.5.0-alpha.5
5
+ @date 2025-08-04T06:54:17.389Z
6
+ @hash 71c9a36
7
7
  -->
8
8
  <odoo>
9
9
  <t t-name="o-spreadsheet-ValidationMessages">
@@ -1913,7 +1913,7 @@
1913
1913
  <div class="o-cf-data-bar-editor">
1914
1914
  <div class="o-section-subtitle">Color</div>
1915
1915
  <RoundColorPicker
1916
- currentColor="colorNumberString(rule.color)"
1916
+ currentColor="colorNumberToHex(rule.color)"
1917
1917
  onColorPicked.bind="updateDataBarColor"
1918
1918
  disableNoColor="true"
1919
1919
  />
@@ -6283,11 +6283,14 @@
6283
6283
  </t>
6284
6284
  )
6285
6285
  </div>
6286
- <i
6287
- class="fa fa-caret-up px-2 align-self-start"
6286
+ <div
6287
+ class="collapsor px-2 d-flex align-items-center rounded"
6288
6288
  t-att-class="state.isCollapsed ? 'collapsed' : ''"
6289
- t-on-click="() => this.toggle()"
6290
- />
6289
+ t-on-click="() => this.toggle()">
6290
+ <span class="collapsor-arrow d-inline-block">
6291
+ <t t-call="o-spreadsheet-Icon.ANGLE_DOWN"/>
6292
+ </span>
6293
+ </div>
6291
6294
  </div>
6292
6295
 
6293
6296
  <Collapse isCollapsed="state.isCollapsed">
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@odoo/o-spreadsheet",
3
- "version": "18.5.0-alpha.4",
3
+ "version": "18.5.0-alpha.5",
4
4
  "description": "A spreadsheet component",
5
5
  "type": "module",
6
6
  "main": "dist/o-spreadsheet.cjs.js",