@odoo/o-spreadsheet 18.2.1 → 18.2.2
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 +885 -729
- package/dist/o-spreadsheet.d.ts +13 -4
- package/dist/o-spreadsheet.esm.js +885 -729
- package/dist/o-spreadsheet.iife.js +885 -729
- package/dist/o-spreadsheet.iife.min.js +398 -377
- package/dist/o_spreadsheet.xml +31 -26
- 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.2.
|
|
5
|
-
@date 2025-
|
|
6
|
-
@hash
|
|
4
|
+
@version 18.2.2
|
|
5
|
+
@date 2025-03-07T10:41:45.663Z
|
|
6
|
+
@hash f567932
|
|
7
7
|
-->
|
|
8
8
|
<odoo>
|
|
9
9
|
<t t-name="o-spreadsheet-ValidationMessages">
|
|
@@ -3679,6 +3679,7 @@
|
|
|
3679
3679
|
</div>
|
|
3680
3680
|
<Menu
|
|
3681
3681
|
t-if="subMenu.isOpen"
|
|
3682
|
+
t-key="subMenu.parentMenu.id"
|
|
3682
3683
|
position="subMenuPosition"
|
|
3683
3684
|
menuItems="subMenu.menuItems"
|
|
3684
3685
|
depth="props.depth + 1"
|
|
@@ -5719,13 +5720,9 @@
|
|
|
5719
5720
|
/>
|
|
5720
5721
|
</div>
|
|
5721
5722
|
<div
|
|
5722
|
-
|
|
5723
|
-
|
|
5724
|
-
t-
|
|
5725
|
-
t-on-wheel.stop=""
|
|
5726
|
-
t-on-pointerdown.prevent.stop=""
|
|
5727
|
-
t-on-click.prevent.stop=""
|
|
5728
|
-
t-on-pointerup.prevent.stop="">
|
|
5723
|
+
class="o-composer-assistant-container shadow position-absolute"
|
|
5724
|
+
t-att-style="assistantContainerStyle"
|
|
5725
|
+
t-if="props.focus !== 'inactive' and !assistant.forcedClosed and assistantIsAvailable">
|
|
5729
5726
|
<span
|
|
5730
5727
|
role="button"
|
|
5731
5728
|
t-on-click="closeAssistant"
|
|
@@ -5733,23 +5730,31 @@
|
|
|
5733
5730
|
<i class="fa fa-circle fa-stack-1x fa-inverse"/>
|
|
5734
5731
|
<i class="fa fa-times-circle fa-stack-1x text-muted"/>
|
|
5735
5732
|
</span>
|
|
5736
|
-
<FunctionDescriptionProvider
|
|
5737
|
-
t-if="functionDescriptionState.showDescription"
|
|
5738
|
-
functionName="functionDescriptionState.functionName"
|
|
5739
|
-
functionDescription="functionDescriptionState.functionDescription"
|
|
5740
|
-
argToFocus="functionDescriptionState.argToFocus"
|
|
5741
|
-
/>
|
|
5742
5733
|
<div
|
|
5743
|
-
|
|
5744
|
-
|
|
5745
|
-
|
|
5746
|
-
|
|
5747
|
-
t-
|
|
5748
|
-
|
|
5749
|
-
|
|
5750
|
-
|
|
5751
|
-
|
|
5752
|
-
|
|
5734
|
+
class="o-composer-assistant overflow-auto"
|
|
5735
|
+
t-att-style="assistantStyle"
|
|
5736
|
+
t-on-wheel.stop=""
|
|
5737
|
+
t-on-pointerdown.prevent.stop=""
|
|
5738
|
+
t-on-click.prevent.stop=""
|
|
5739
|
+
t-on-pointerup.prevent.stop="">
|
|
5740
|
+
<FunctionDescriptionProvider
|
|
5741
|
+
t-if="functionDescriptionState.showDescription"
|
|
5742
|
+
functionName="functionDescriptionState.functionName"
|
|
5743
|
+
functionDescription="functionDescriptionState.functionDescription"
|
|
5744
|
+
argToFocus="functionDescriptionState.argToFocus"
|
|
5745
|
+
/>
|
|
5746
|
+
<div
|
|
5747
|
+
t-if="functionDescriptionState.showDescription and autoCompleteState.provider"
|
|
5748
|
+
class="border-top"
|
|
5749
|
+
/>
|
|
5750
|
+
<TextValueProvider
|
|
5751
|
+
t-if="autoCompleteState.provider"
|
|
5752
|
+
proposals="autoCompleteState.provider.proposals"
|
|
5753
|
+
selectedIndex="autoCompleteState.selectedIndex"
|
|
5754
|
+
onValueSelected.bind="this.autoComplete"
|
|
5755
|
+
onValueHovered.bind="this.updateAutoCompleteIndex"
|
|
5756
|
+
/>
|
|
5757
|
+
</div>
|
|
5753
5758
|
</div>
|
|
5754
5759
|
</div>
|
|
5755
5760
|
</t>
|