@odoo/o-spreadsheet 17.2.25 → 17.2.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 17.2.25
5
- @date 2024-11-08T12:14:00.219Z
6
- @hash 40d42f8
4
+ @version 17.2.26
5
+ @date 2024-11-13T15:04:44.525Z
6
+ @hash 19b7478
7
7
  -->
8
8
  <odoo>
9
9
  <t t-name="o-spreadsheet-ActionButton">
@@ -389,10 +389,12 @@
389
389
  </button>
390
390
  </div>
391
391
  </div>
392
- <div class="o-separator"/>
393
- <div class="o-buttons">
394
- <button t-on-click="resetColor" class="o-cancel">No Color</button>
395
- </div>
392
+ <t t-if="!props.disableNoColor">
393
+ <div class="o-separator"/>
394
+ <div class="o-buttons">
395
+ <button t-on-click="resetColor" class="o-cancel">No Color</button>
396
+ </div>
397
+ </t>
396
398
  </div>
397
399
  </Popover>
398
400
  </t>
@@ -416,6 +418,7 @@
416
418
  onColorPicked="props.onColorPicked"
417
419
  currentColor="props.currentColor"
418
420
  maxHeight="props.dropdownMaxHeight"
421
+ disableNoColor="props.disableNoColor"
419
422
  />
420
423
  </div>
421
424
  </t>
@@ -3413,6 +3416,7 @@ https://fontawesome.com/license -->
3413
3416
  title="fill_color"
3414
3417
  icon="'o-spreadsheet-Icon.FILL_COLOR'"
3415
3418
  disabled="threshold === undefined"
3419
+ disableNoColor="true"
3416
3420
  />
3417
3421
  </div>
3418
3422
  </t>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@odoo/o-spreadsheet",
3
- "version": "17.2.25",
3
+ "version": "17.2.26",
4
4
  "description": "A spreadsheet component",
5
5
  "type": "module",
6
6
  "main": "dist/o-spreadsheet.cjs.js",