@odoo/o-spreadsheet 18.1.9 → 18.1.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 +722 -581
- package/dist/o-spreadsheet.d.ts +12 -3
- package/dist/o-spreadsheet.esm.js +722 -581
- package/dist/o-spreadsheet.iife.js +722 -581
- package/dist/o-spreadsheet.iife.min.js +397 -376
- 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.1.
|
|
5
|
-
@date 2025-
|
|
6
|
-
@hash
|
|
4
|
+
@version 18.1.10
|
|
5
|
+
@date 2025-03-07T10:35:21.396Z
|
|
6
|
+
@hash 31e4526
|
|
7
7
|
-->
|
|
8
8
|
<odoo>
|
|
9
9
|
<t t-name="o-spreadsheet-ActionButton">
|
|
@@ -510,13 +510,9 @@
|
|
|
510
510
|
/>
|
|
511
511
|
</div>
|
|
512
512
|
<div
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
t-
|
|
516
|
-
t-on-wheel.stop=""
|
|
517
|
-
t-on-pointerdown.prevent.stop=""
|
|
518
|
-
t-on-click.prevent.stop=""
|
|
519
|
-
t-on-pointerup.prevent.stop="">
|
|
513
|
+
class="o-composer-assistant-container shadow position-absolute"
|
|
514
|
+
t-att-style="assistantContainerStyle"
|
|
515
|
+
t-if="props.focus !== 'inactive' and !assistant.forcedClosed and assistantIsAvailable">
|
|
520
516
|
<span
|
|
521
517
|
role="button"
|
|
522
518
|
t-on-click="closeAssistant"
|
|
@@ -524,23 +520,31 @@
|
|
|
524
520
|
<i class="fa fa-circle fa-stack-1x fa-inverse"/>
|
|
525
521
|
<i class="fa fa-times-circle fa-stack-1x text-muted"/>
|
|
526
522
|
</span>
|
|
527
|
-
<FunctionDescriptionProvider
|
|
528
|
-
t-if="functionDescriptionState.showDescription"
|
|
529
|
-
functionName="functionDescriptionState.functionName"
|
|
530
|
-
functionDescription="functionDescriptionState.functionDescription"
|
|
531
|
-
argToFocus="functionDescriptionState.argToFocus"
|
|
532
|
-
/>
|
|
533
523
|
<div
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
t-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
524
|
+
class="o-composer-assistant overflow-auto"
|
|
525
|
+
t-att-style="assistantStyle"
|
|
526
|
+
t-on-wheel.stop=""
|
|
527
|
+
t-on-pointerdown.prevent.stop=""
|
|
528
|
+
t-on-click.prevent.stop=""
|
|
529
|
+
t-on-pointerup.prevent.stop="">
|
|
530
|
+
<FunctionDescriptionProvider
|
|
531
|
+
t-if="functionDescriptionState.showDescription"
|
|
532
|
+
functionName="functionDescriptionState.functionName"
|
|
533
|
+
functionDescription="functionDescriptionState.functionDescription"
|
|
534
|
+
argToFocus="functionDescriptionState.argToFocus"
|
|
535
|
+
/>
|
|
536
|
+
<div
|
|
537
|
+
t-if="functionDescriptionState.showDescription and autoCompleteState.provider"
|
|
538
|
+
class="border-top"
|
|
539
|
+
/>
|
|
540
|
+
<TextValueProvider
|
|
541
|
+
t-if="autoCompleteState.provider"
|
|
542
|
+
proposals="autoCompleteState.provider.proposals"
|
|
543
|
+
selectedIndex="autoCompleteState.selectedIndex"
|
|
544
|
+
onValueSelected.bind="this.autoComplete"
|
|
545
|
+
onValueHovered.bind="this.updateAutoCompleteIndex"
|
|
546
|
+
/>
|
|
547
|
+
</div>
|
|
544
548
|
</div>
|
|
545
549
|
</div>
|
|
546
550
|
</t>
|
|
@@ -2562,6 +2566,7 @@
|
|
|
2562
2566
|
</div>
|
|
2563
2567
|
<Menu
|
|
2564
2568
|
t-if="subMenu.isOpen"
|
|
2569
|
+
t-key="subMenu.parentMenu.id"
|
|
2565
2570
|
position="subMenuPosition"
|
|
2566
2571
|
menuItems="subMenu.menuItems"
|
|
2567
2572
|
depth="props.depth + 1"
|