@odoo/o-spreadsheet 18.2.4 → 18.2.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.2.4
5
- @date 2025-03-19T08:21:38.488Z
6
- @hash 958936a
4
+ @version 18.2.5
5
+ @date 2025-03-26T12:48:26.657Z
6
+ @hash 4675edd
7
7
  -->
8
8
  <odoo>
9
9
  <t t-name="o-spreadsheet-ValidationMessages">
@@ -3332,7 +3332,7 @@
3332
3332
  <select
3333
3333
  class="o-input data-series-selector"
3334
3334
  t-model="state.label"
3335
- t-on-change="(ev) => this.updateSerieEditor(ev)">
3335
+ t-on-change="(ev) => this.updateEditedSeries(ev)">
3336
3336
  <t t-foreach="getDataSeries()" t-as="serie" t-key="serie_index">
3337
3337
  <option
3338
3338
  t-att-value="serie"
@@ -3345,7 +3345,7 @@
3345
3345
  <div class="d-flex align-items-center">
3346
3346
  <span class="o-section-title mb-0 pe-2">Series color</span>
3347
3347
  <RoundColorPicker
3348
- currentColor="getDataSerieColor()"
3348
+ currentColor="getDataSeriesColor()"
3349
3349
  onColorPicked.bind="updateDataSeriesColor"
3350
3350
  />
3351
3351
  </div>
@@ -3354,7 +3354,7 @@
3354
3354
  <input
3355
3355
  class="o-input o-serie-label-editor"
3356
3356
  type="text"
3357
- t-att-value="getDataSerieLabel()"
3357
+ t-att-value="getDataSeriesLabel()"
3358
3358
  t-on-change="(ev) => this.updateDataSeriesLabel(ev)"
3359
3359
  />
3360
3360
  </Section>
@@ -5619,6 +5619,9 @@
5619
5619
  <div class="o-topbar-composer-container w-100">
5620
5620
  <div
5621
5621
  class="o-topbar-composer position-relative bg-white user-select-text"
5622
+ t-att-class="{
5623
+ 'o-topbar-composer-readonly': env.model.getters.isReadonly(),
5624
+ }"
5622
5625
  t-on-click.stop=""
5623
5626
  t-att-style="containerStyle">
5624
5627
  <Composer
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@odoo/o-spreadsheet",
3
- "version": "18.2.4",
3
+ "version": "18.2.5",
4
4
  "description": "A spreadsheet component",
5
5
  "type": "module",
6
6
  "main": "dist/o-spreadsheet.cjs.js",