@odoo/o-spreadsheet 18.1.6 → 18.1.8
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 +190 -123
- package/dist/o-spreadsheet.d.ts +24 -3
- package/dist/o-spreadsheet.esm.js +190 -123
- package/dist/o-spreadsheet.iife.js +190 -123
- package/dist/o-spreadsheet.iife.min.js +152 -148
- package/dist/o_spreadsheet.xml +18 -15
- 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-02-
|
|
6
|
-
@hash
|
|
4
|
+
@version 18.1.8
|
|
5
|
+
@date 2025-02-14T08:42:50.074Z
|
|
6
|
+
@hash 02682f4
|
|
7
7
|
-->
|
|
8
8
|
<odoo>
|
|
9
9
|
<t t-name="o-spreadsheet-ActionButton">
|
|
@@ -630,17 +630,19 @@
|
|
|
630
630
|
</t>
|
|
631
631
|
|
|
632
632
|
<t t-name="o-spreadsheet-TopBarComposer">
|
|
633
|
-
<div
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
633
|
+
<div class="o-topbar-composer-container w-100">
|
|
634
|
+
<div
|
|
635
|
+
class="o-topbar-composer position-relative bg-white user-select-text"
|
|
636
|
+
t-on-click.stop=""
|
|
637
|
+
t-att-style="containerStyle">
|
|
638
|
+
<Composer
|
|
639
|
+
focus="focus"
|
|
640
|
+
inputStyle="composerStyle"
|
|
641
|
+
onComposerContentFocused.bind="onFocus"
|
|
642
|
+
composerStore="composerStore"
|
|
643
|
+
placeholder="composerStore.placeholder"
|
|
644
|
+
/>
|
|
645
|
+
</div>
|
|
644
646
|
</div>
|
|
645
647
|
</t>
|
|
646
648
|
|
|
@@ -5411,7 +5413,7 @@
|
|
|
5411
5413
|
class="d-flex flex-column h-100 justify-content-between overflow-hidden"
|
|
5412
5414
|
t-att="isReadonly ? ['inert', 1] : []"
|
|
5413
5415
|
t-att-class="{ 'pe-none': isReadonly, 'opacity-50': isReadonly }">
|
|
5414
|
-
<div class="h-100 position-relative overflow-x-hidden overflow-y-auto">
|
|
5416
|
+
<div class="h-100 position-relative overflow-x-hidden overflow-y-auto" t-ref="pivotSidePanel">
|
|
5415
5417
|
<PivotTitleSection pivotId="props.pivotId" flipAxis.bind="flipAxis"/>
|
|
5416
5418
|
<Section title.translate="Range">
|
|
5417
5419
|
<SelectionInput
|
|
@@ -5438,6 +5440,7 @@
|
|
|
5438
5440
|
datetimeGranularities="store.datetimeGranularities"
|
|
5439
5441
|
definition="definition"
|
|
5440
5442
|
onDimensionsUpdated.bind="onDimensionsUpdated"
|
|
5443
|
+
getScrollableContainerEl.bind="getScrollableContainerEl"
|
|
5441
5444
|
pivotId="props.pivotId"
|
|
5442
5445
|
/>
|
|
5443
5446
|
</div>
|