@odoo/o-spreadsheet 17.4.2 → 17.4.4
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 +217 -195
- package/dist/o-spreadsheet.d.ts +3 -1
- package/dist/o-spreadsheet.esm.js +217 -195
- package/dist/o-spreadsheet.iife.js +217 -195
- package/dist/o-spreadsheet.iife.min.js +361 -351
- package/dist/o_spreadsheet.xml +10 -7
- 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 2024-
|
|
6
|
-
@hash
|
|
4
|
+
@version 17.4.4
|
|
5
|
+
@date 2024-08-09T12:24:57.189Z
|
|
6
|
+
@hash a43e855
|
|
7
7
|
-->
|
|
8
8
|
<odoo>
|
|
9
9
|
<t t-name="o-spreadsheet-ActionButton">
|
|
@@ -4645,11 +4645,14 @@
|
|
|
4645
4645
|
<t t-name="o-spreadsheet-PivotDimension">
|
|
4646
4646
|
<div
|
|
4647
4647
|
class="border py-1 px-2 d-flex flex-column shadow-sm pivot-dimension"
|
|
4648
|
-
t-att-class="{'
|
|
4649
|
-
<div class="d-flex flex-row
|
|
4648
|
+
t-att-class="{'pivot-dimension-invalid': !props.dimension.isValid}">
|
|
4649
|
+
<div class="d-flex flex-row align-items-center">
|
|
4650
|
+
<span class="text-danger me-1" t-if="!props.dimension.isValid">
|
|
4651
|
+
<t t-call="o-spreadsheet-Icon.TRIANGLE_EXCLAMATION"/>
|
|
4652
|
+
</span>
|
|
4650
4653
|
<span class="fw-bold" t-esc="props.dimension.displayName"/>
|
|
4651
4654
|
<i
|
|
4652
|
-
class="btn fa fa-times pe-0"
|
|
4655
|
+
class="btn fa fa-times pe-0 ms-auto"
|
|
4653
4656
|
t-if="props.onRemoved"
|
|
4654
4657
|
t-on-click="() => props.onRemoved(props.dimension)"
|
|
4655
4658
|
/>
|
|
@@ -4956,7 +4959,7 @@
|
|
|
4956
4959
|
<div class="o-sidePanelClose" t-on-click="close">✕</div>
|
|
4957
4960
|
</div>
|
|
4958
4961
|
<div class="o-sidePanelBody-container d-flex flex-grow-1 ">
|
|
4959
|
-
<div class="o-sidePanel-handle-container
|
|
4962
|
+
<div class="o-sidePanel-handle-container">
|
|
4960
4963
|
<div
|
|
4961
4964
|
class="o-sidePanel-handle"
|
|
4962
4965
|
t-on-pointerdown="startHandleDrag"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@odoo/o-spreadsheet",
|
|
3
|
-
"version": "17.4.
|
|
3
|
+
"version": "17.4.4",
|
|
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.3.0",
|
|
106
106
|
"bootstrap": "^5.3.3",
|
|
107
107
|
"font-awesome": "^4.7.0",
|
|
108
108
|
"rbush": "^3.0.1"
|