@odoo/o-spreadsheet 17.4.15 → 17.4.17
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 +135 -58
- package/dist/o-spreadsheet.d.ts +15 -0
- package/dist/o-spreadsheet.esm.js +135 -58
- package/dist/o-spreadsheet.iife.js +135 -58
- package/dist/o-spreadsheet.iife.min.js +353 -354
- package/dist/o_spreadsheet.xml +8 -4
- package/package.json +2 -2
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 17.4.
|
|
5
|
-
@date
|
|
6
|
-
@hash
|
|
4
|
+
@version 17.4.17
|
|
5
|
+
@date 2025-01-14T11:35:31.475Z
|
|
6
|
+
@hash fd2a7ab
|
|
7
7
|
-->
|
|
8
8
|
<odoo>
|
|
9
9
|
<t t-name="o-spreadsheet-ActionButton">
|
|
@@ -5151,7 +5151,11 @@
|
|
|
5151
5151
|
<t t-set-slot="title">Style color</t>
|
|
5152
5152
|
<div class="d-flex align-items-center">
|
|
5153
5153
|
<span class="pe-2">Primary table style color</span>
|
|
5154
|
-
<RoundColorPicker
|
|
5154
|
+
<RoundColorPicker
|
|
5155
|
+
currentColor="state.primaryColor"
|
|
5156
|
+
onColorPicked.bind="onColorPicked"
|
|
5157
|
+
disableNoColor="true"
|
|
5158
|
+
/>
|
|
5155
5159
|
</div>
|
|
5156
5160
|
</Section>
|
|
5157
5161
|
<Section class="'pt-1'">
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@odoo/o-spreadsheet",
|
|
3
|
-
"version": "17.4.
|
|
3
|
+
"version": "17.4.17",
|
|
4
4
|
"description": "A spreadsheet component",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/o-spreadsheet.cjs.js",
|
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
"xmlSelfClosingSpace": false
|
|
103
103
|
},
|
|
104
104
|
"dependencies": {
|
|
105
|
-
"@odoo/owl": "2.
|
|
105
|
+
"@odoo/owl": "2.5.1",
|
|
106
106
|
"bootstrap": "^5.3.3",
|
|
107
107
|
"font-awesome": "^4.7.0",
|
|
108
108
|
"rbush": "^3.0.1"
|