@odoo/o-spreadsheet 18.1.0-alpha.8 → 18.1.1

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.1.0-alpha.8
5
- @date 2024-12-19T07:50:38.927Z
6
- @hash 87a1567
4
+ @version 18.1.1
5
+ @date 2025-01-14T11:43:59.136Z
6
+ @hash d0fa5de
7
7
  -->
8
8
  <odoo>
9
9
  <t t-name="o-spreadsheet-ActionButton">
@@ -4708,11 +4708,11 @@
4708
4708
  onChange.bind="toggleAccountingFormat"
4709
4709
  />
4710
4710
  <div class="o-format-examples mt-4" t-if="selectedFormat">
4711
- <table>
4711
+ <table class="w-100">
4712
4712
  <t t-foreach="getFormatExamples()" t-as="example" t-key="example_index">
4713
4713
  <tr>
4714
- <td class="pe-3 o-fw-bold" t-esc="example.label"/>
4715
- <td t-esc="example.value"/>
4714
+ <td class="w-25 pe-3 o-fw-bold" t-esc="example.label"/>
4715
+ <td class="w-75 text-truncate" t-esc="example.value"/>
4716
4716
  </tr>
4717
4717
  </t>
4718
4718
  </table>
@@ -5956,9 +5956,9 @@
5956
5956
  t-att-placeholder="props.placeholder"
5957
5957
  t-att-value="props.value"
5958
5958
  t-on-change="save"
5959
- t-on-focus="focusInputAndSelectContent"
5960
5959
  t-on-blur="save"
5961
- t-on-mouseup.prevent.stop=""
5960
+ t-on-pointerdown="onMouseDown"
5961
+ t-on-pointerup="onMouseUp"
5962
5962
  t-on-keydown="onKeyDown"
5963
5963
  />
5964
5964
  </div>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@odoo/o-spreadsheet",
3
- "version": "18.1.0-alpha.8",
3
+ "version": "18.1.1",
4
4
  "description": "A spreadsheet component",
5
5
  "type": "module",
6
6
  "main": "dist/o-spreadsheet.cjs.js",
@@ -100,7 +100,7 @@
100
100
  "xmlSelfClosingSpace": false
101
101
  },
102
102
  "dependencies": {
103
- "@odoo/owl": "2.3.0",
103
+ "@odoo/owl": "2.5.1",
104
104
  "bootstrap": "^5.3.3",
105
105
  "font-awesome": "^4.7.0",
106
106
  "rbush": "^3.0.1"
@@ -137,6 +137,6 @@
137
137
  "*": "prettier --write"
138
138
  },
139
139
  "publishConfig": {
140
- "tag": "alpha"
140
+ "tag": "latest"
141
141
  }
142
142
  }