@odoo/o-spreadsheet 18.0.8 → 18.0.10
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.
- package/dist/o-spreadsheet.cjs.js +188 -71
- package/dist/o-spreadsheet.d.ts +22 -2
- package/dist/o-spreadsheet.esm.js +188 -71
- package/dist/o-spreadsheet.iife.js +188 -71
- package/dist/o-spreadsheet.iife.min.js +348 -344
- package/dist/o_spreadsheet.xml +8 -8
- package/package.json +3 -3
package/dist/o_spreadsheet.xml
CHANGED
|
@@ -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.0.
|
|
5
|
-
@date
|
|
6
|
-
@hash
|
|
4
|
+
@version 18.0.10
|
|
5
|
+
@date 2025-01-15T08:06:40.748Z
|
|
6
|
+
@hash 94c45c7
|
|
7
7
|
-->
|
|
8
8
|
<odoo>
|
|
9
9
|
<t t-name="o-spreadsheet-ActionButton">
|
|
@@ -4568,11 +4568,11 @@
|
|
|
4568
4568
|
onChange.bind="toggleAccountingFormat"
|
|
4569
4569
|
/>
|
|
4570
4570
|
<div class="o-format-examples mt-4" t-if="selectedFormat">
|
|
4571
|
-
<table>
|
|
4571
|
+
<table class="w-100">
|
|
4572
4572
|
<t t-foreach="getFormatExamples()" t-as="example" t-key="example_index">
|
|
4573
4573
|
<tr>
|
|
4574
|
-
<td class="pe-3 o-fw-bold" t-esc="example.label"/>
|
|
4575
|
-
<td t-esc="example.value"/>
|
|
4574
|
+
<td class="w-25 pe-3 o-fw-bold" t-esc="example.label"/>
|
|
4575
|
+
<td class="w-75 text-truncate" t-esc="example.value"/>
|
|
4576
4576
|
</tr>
|
|
4577
4577
|
</t>
|
|
4578
4578
|
</table>
|
|
@@ -5825,9 +5825,9 @@
|
|
|
5825
5825
|
t-att-placeholder="props.placeholder"
|
|
5826
5826
|
t-att-value="props.value"
|
|
5827
5827
|
t-on-change="save"
|
|
5828
|
-
t-on-focus="focusInputAndSelectContent"
|
|
5829
5828
|
t-on-blur="save"
|
|
5830
|
-
t-on-
|
|
5829
|
+
t-on-pointerdown="onMouseDown"
|
|
5830
|
+
t-on-pointerup="onMouseUp"
|
|
5831
5831
|
t-on-keydown="onKeyDown"
|
|
5832
5832
|
/>
|
|
5833
5833
|
</div>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@odoo/o-spreadsheet",
|
|
3
|
-
"version": "18.0.
|
|
3
|
+
"version": "18.0.10",
|
|
4
4
|
"description": "A spreadsheet component",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/o-spreadsheet.cjs.js",
|
|
@@ -99,7 +99,7 @@
|
|
|
99
99
|
"xmlSelfClosingSpace": false
|
|
100
100
|
},
|
|
101
101
|
"dependencies": {
|
|
102
|
-
"@odoo/owl": "2.
|
|
102
|
+
"@odoo/owl": "2.5.1",
|
|
103
103
|
"bootstrap": "^5.3.3",
|
|
104
104
|
"font-awesome": "^4.7.0",
|
|
105
105
|
"rbush": "^3.0.1"
|
|
@@ -136,6 +136,6 @@
|
|
|
136
136
|
"*": "prettier --write"
|
|
137
137
|
},
|
|
138
138
|
"publishConfig": {
|
|
139
|
-
"tag": "
|
|
139
|
+
"tag": "18-0"
|
|
140
140
|
}
|
|
141
141
|
}
|