@odoo/o-spreadsheet 18.5.0-alpha.3 → 18.5.0-alpha.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 +102 -61
- package/dist/o-spreadsheet.d.ts +313 -159
- package/dist/o-spreadsheet.esm.js +102 -61
- package/dist/o-spreadsheet.iife.js +102 -61
- package/dist/o-spreadsheet.iife.min.js +253 -253
- package/dist/o_spreadsheet.xml +10 -9
- package/package.json +1 -1
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.5.0-alpha.
|
|
5
|
-
@date 2025-07-
|
|
6
|
-
@hash
|
|
4
|
+
@version 18.5.0-alpha.4
|
|
5
|
+
@date 2025-07-30T11:24:09.087Z
|
|
6
|
+
@hash 34a4ab3
|
|
7
7
|
-->
|
|
8
8
|
<odoo>
|
|
9
9
|
<t t-name="o-spreadsheet-ValidationMessages">
|
|
@@ -1543,11 +1543,11 @@
|
|
|
1543
1543
|
<div class="o-dv-list-values p-1 d-flex align-items-center">
|
|
1544
1544
|
<div class="me-2">
|
|
1545
1545
|
<RoundColorPicker
|
|
1546
|
-
currentColor="props.criterion.colors?.[value] || '#E7E9ED'"
|
|
1547
|
-
onColorPicked="(c) => this.onColorChanged(c, value)"
|
|
1546
|
+
currentColor="props.criterion.colors?.[value.value] || '#E7E9ED'"
|
|
1547
|
+
onColorPicked="(c) => this.onColorChanged(c, value.value)"
|
|
1548
1548
|
/>
|
|
1549
1549
|
</div>
|
|
1550
|
-
<input type="text" class="o-input" t-att-value="value" disabled="1"/>
|
|
1550
|
+
<input type="text" class="o-input" t-att-value="value.label" disabled="1"/>
|
|
1551
1551
|
</div>
|
|
1552
1552
|
</t>
|
|
1553
1553
|
|
|
@@ -1688,8 +1688,9 @@
|
|
|
1688
1688
|
<t t-if="state.mode === 'edit'">
|
|
1689
1689
|
<ConditionalFormattingEditor
|
|
1690
1690
|
editedCf="editedCF"
|
|
1691
|
-
|
|
1691
|
+
onExit.bind="switchToList"
|
|
1692
1692
|
onCancel.bind="cancelEdition"
|
|
1693
|
+
isNewCf="originalEditedCf === undefined"
|
|
1693
1694
|
/>
|
|
1694
1695
|
</t>
|
|
1695
1696
|
</div>
|
|
@@ -2053,7 +2054,7 @@
|
|
|
2053
2054
|
</Section>
|
|
2054
2055
|
<Section class="'pt-1'">
|
|
2055
2056
|
<div class="o-sidePanelButtons">
|
|
2056
|
-
<button t-on-click="
|
|
2057
|
+
<button t-on-click="onCancel" class="o-button o-cf-cancel">Cancel</button>
|
|
2057
2058
|
<button
|
|
2058
2059
|
t-on-click="onSave"
|
|
2059
2060
|
class="o-button primary o-cf-save"
|
|
@@ -6114,7 +6115,7 @@
|
|
|
6114
6115
|
<canvas class="o-figure-canvas o-gauge-chart w-100 h-100 d-block" t-ref="chartContainer"/>
|
|
6115
6116
|
</t>
|
|
6116
6117
|
|
|
6117
|
-
<t t-name="spreadsheet
|
|
6118
|
+
<t t-name="o-spreadsheet-ChartDashboardMenu">
|
|
6118
6119
|
<div class="o-dashboard-chart-select position-absolute top-0 end-0" t-on-click.stop="">
|
|
6119
6120
|
<div class="d-flex flex-row px-1" t-att-style="backgroundColor">
|
|
6120
6121
|
<t t-foreach="getMenuItems()" t-as="item" t-key="item.id">
|