@odoo/o-spreadsheet 18.4.7 → 18.4.9

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.7
5
- @date 2025-08-21T06:42:59.841Z
6
- @hash d5eb3a6
4
+ @version 18.4.9
5
+ @date 2025-09-05T07:39:21.946Z
6
+ @hash a261873
7
7
  -->
8
8
  <odoo>
9
9
  <t t-name="o-spreadsheet-ValidationMessages">
@@ -53,8 +53,13 @@
53
53
  </div>
54
54
  </div>
55
55
  <!-- Toolbar and Cell Content -->
56
- <div class="d-flex o-topbar-responsive" t-ref="toolBarContainer">
57
- <div class="o-topbar-toolbar d-flex">
56
+ <div
57
+ class="d-flex o-topbar-responsive"
58
+ t-att-class="{'o-topbar-responsive': !env.model.getters.isReadonly()}"
59
+ t-ref="toolBarContainer">
60
+ <div
61
+ class="o-topbar-toolbar d-flex"
62
+ t-att-class="{'flex-shrink-0': env.model.getters.isReadonly()}">
58
63
  <!-- Toolbar -->
59
64
  <div
60
65
  t-if="env.model.getters.isReadonly()"
@@ -4156,7 +4161,10 @@
4156
4161
  t-att-style="getIconColor(menuItem)">
4157
4162
  <t t-if="getIconName(menuItem)" t-call="{{getIconName(menuItem)}}"/>
4158
4163
  </div>
4159
- <div class="o-menu-item-name align-middle text-truncate" t-esc="getName(menuItem)"/>
4164
+ <div
4165
+ class="o-menu-item-name align-middle text-truncate align-items-center d-flex"
4166
+ t-esc="getName(menuItem)"
4167
+ />
4160
4168
  <t t-set="description" t-value="menuItem.description(env)"/>
4161
4169
  <div
4162
4170
  t-if="description"
@@ -4166,12 +4174,12 @@
4166
4174
  <t t-set="secondaryIcon" t-value="menuItem.secondaryIcon(env)"/>
4167
4175
  <div
4168
4176
  t-if="isMenuRoot"
4169
- class="o-menu-item-root align-middle ms-auto"
4177
+ class="o-menu-item-root ms-auto align-items-center d-flex"
4170
4178
  t-call="o-spreadsheet-Icon.CARET_RIGHT"
4171
4179
  />
4172
4180
  <div
4173
4181
  t-elif="secondaryIcon"
4174
- class="o-menu-item-root align-middle ms-auto"
4182
+ class="o-menu-item-root ms-auto align-items-center d-flex"
4175
4183
  t-call="{{secondaryIcon}}"
4176
4184
  />
4177
4185
  </div>
@@ -5758,10 +5766,12 @@
5758
5766
  </t>
5759
5767
 
5760
5768
  <t t-name="o-spreadsheet-FullScreenChart">
5761
- <div
5762
- class="position-absolute o-fullscreen-chart-overlay w-100 h-100 d-flex"
5763
- t-if="figureUI"
5764
- t-on-click="exitFullScreen">
5769
+ <div class="position-absolute o-fullscreen-chart-overlay w-100 h-100 d-flex" t-if="figureUI">
5770
+ <div
5771
+ class="position-absolute top-0 start-0 end-0 bottom-0"
5772
+ t-on-click="exitFullScreen"
5773
+ aria-hidden="true"
5774
+ />
5765
5775
  <button
5766
5776
  class="o-exit top-0 end-0 position-absolute o-button primary m-1"
5767
5777
  t-on-click="exitFullScreen">
@@ -6040,7 +6050,7 @@
6040
6050
  />
6041
6051
  <div class="o-figure-menu position-absolute m-2" t-if="!env.isDashboard()">
6042
6052
  <div
6043
- class="o-figure-menu-item"
6053
+ class="o-figure-menu-item d-flex-align-items-center"
6044
6054
  t-if="!env.model.getters.isReadonly()"
6045
6055
  t-on-click="showMenu"
6046
6056
  t-ref="menuButton"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@odoo/o-spreadsheet",
3
- "version": "18.4.7",
3
+ "version": "18.4.9",
4
4
  "description": "A spreadsheet component",
5
5
  "type": "module",
6
6
  "main": "dist/o-spreadsheet.cjs.js",