@odoo/o-spreadsheet 19.1.33 → 19.1.35

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.33
5
- @date 2026-08-29T09:14:50.099Z
6
- @hash 5c5b7a2
4
+ @version 19.1.35
5
+ @date 2026-09-10T05:36:16.688Z
6
+ @hash 619eeac
7
7
  -->
8
8
  <odoo>
9
9
  <t t-name="o-spreadsheet-ValidationMessages">
@@ -3936,7 +3936,7 @@
3936
3936
  t-att-value="getGroupByType('horizontal')"
3937
3937
  class="o-input o-horizontal-group-by"
3938
3938
  t-on-change="ev => this.updateGroupBy('horizontal', ev.target.value)">
3939
- <t t-foreach="getGroupByOptions()" t-as="groupBy" t-key="groupBy.value">
3939
+ <t t-foreach="this.groupByChoices" t-as="groupBy" t-key="groupBy.value">
3940
3940
  <option
3941
3941
  t-att-selected="getGroupByType('horizontal') === groupBy.value"
3942
3942
  t-att-value="groupBy.value">
@@ -3951,7 +3951,7 @@
3951
3951
  t-att-value="getGroupByType('vertical')"
3952
3952
  class="o-input o-vertical-group-by"
3953
3953
  t-on-change="ev => this.updateGroupBy('vertical', ev.target.value)">
3954
- <t t-foreach="getGroupByOptions()" t-as="groupBy" t-key="groupBy.value">
3954
+ <t t-foreach="this.groupByChoices" t-as="groupBy" t-key="groupBy.value">
3955
3955
  <option
3956
3956
  t-att-selected="getGroupByType('vertical') === groupBy.value"
3957
3957
  t-att-value="groupBy.value">
@@ -6480,10 +6480,7 @@
6480
6480
  t-on-click="onClick"
6481
6481
  t-on-dblclick.self="onDoubleClick"
6482
6482
  t-on-contextmenu.stop.prevent="onContextMenu">
6483
- <GridAddRowsFooter
6484
- t-if="!env.model.getters.isReadonly()"
6485
- t-key="env.model.getters.getActiveSheetId()"
6486
- />
6483
+ <GridAddRowsFooter t-if="this.isFooterVisible" t-key="env.model.getters.getActiveSheetId()"/>
6487
6484
  <t t-slot="default"/>
6488
6485
  </div>
6489
6486
  </t>
@@ -7114,7 +7111,11 @@
7114
7111
  </t>
7115
7112
 
7116
7113
  <t t-name="o-spreadsheet-SpreadsheetDashboard">
7117
- <div class="o-grid o-two-columns" t-ref="dashboard" tabindex="-1" t-on-wheel="onMouseWheel">
7114
+ <div
7115
+ class="o-grid o-dashboard-grid o-two-columns"
7116
+ t-ref="dashboard"
7117
+ tabindex="-1"
7118
+ t-on-wheel="onMouseWheel">
7118
7119
  <div class="mx-auto h-100 position-relative" t-ref="grid" t-att-style="gridContainer">
7119
7120
  <GridOverlay
7120
7121
  onGridResized.bind="onGridResized"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@odoo/o-spreadsheet",
3
- "version": "19.1.33",
3
+ "version": "19.1.35",
4
4
  "description": "A spreadsheet component",
5
5
  "type": "module",
6
6
  "main": "dist/o-spreadsheet.cjs.js",