@odoo/o-spreadsheet 19.4.4 → 19.4.5

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.
@@ -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 19.4.4
5
- @date 2026-07-23T07:49:23.288Z
6
- @hash 6b3c312
4
+ @version 19.4.5
5
+ @date 2026-07-30T06:55:40.786Z
6
+ @hash 9308e17
7
7
  -->
8
8
  <odoo>
9
9
  <t t-name="o-spreadsheet-ValidationMessages">
@@ -1473,7 +1473,7 @@
1473
1473
  />
1474
1474
  </t>
1475
1475
  <div t-if="measure.computedBy" class="d-flex flex-row small">
1476
- <div class="d-flex flex-column py-2 px-2 w-100" t-on-pointerdown.stop="">
1476
+ <div class="d-flex flex-column py-2 px-2 w-100">
1477
1477
  <StandaloneComposer
1478
1478
  onConfirm.bind="this.updateMeasureFormula"
1479
1479
  composerContent="measure.computedBy.formula"
@@ -1552,7 +1552,7 @@
1552
1552
  />
1553
1553
  <span t-else="1" class="o-fw-bold text-truncate" t-out="this.dimensionDisplayName"/>
1554
1554
  </div>
1555
- <div class="d-flex flex-rows" t-on-pointerdown.stop="">
1555
+ <div class="d-flex flex-rows">
1556
1556
  <t t-call-slot="upper-right-icons"/>
1557
1557
  <i
1558
1558
  class="o-button-icon fa fa-trash pe-1 ps-2"
@@ -1661,9 +1661,7 @@
1661
1661
  t-as="group"
1662
1662
  t-key="group_index"
1663
1663
  class="o-pivot-custom-group pb-1">
1664
- <div
1665
- class="d-flex align-items-center justify-content-between small"
1666
- t-on-pointerdown.stop="">
1664
+ <div class="d-flex align-items-center justify-content-between small">
1667
1665
  <TextInput
1668
1666
  value="group.name"
1669
1667
  onChange="(newName) => this.onRenameGroup(group_index, newName)"
@@ -44,3 +44,5 @@ export declare function isMiddleClickOrCtrlClick(ev: MouseEvent): boolean;
44
44
  export declare function downloadFile(dataUrl: string, fileName: string): void;
45
45
  export declare function isIOS(): boolean;
46
46
  export declare function isMobileOS(): boolean;
47
+ /** Check if there is an interactive element (input, select, button, ...) between the event.target and event.currentTarget (inclusive)*/
48
+ export declare function hasInteractiveElementInEventTree(event: Event): boolean;
@@ -39,9 +39,7 @@ export declare class PivotLayoutConfigurator extends Component<SpreadsheetChildE
39
39
  private dimensionsRef;
40
40
  private dragAndDrop;
41
41
  AGGREGATORS: {};
42
- private composerFocus;
43
42
  isDateOrDatetimeField: typeof isDateOrDatetimeField;
44
- setup(): void;
45
43
  startDragAndDrop(dimension: PivotDimensionType, event: MouseEvent): void;
46
44
  getGranularitiesFor(field: PivotField): string[];
47
45
  startDragAndDropMeasures(measure: PivotMeasure, event: MouseEvent): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@odoo/o-spreadsheet",
3
- "version": "19.4.4",
3
+ "version": "19.4.5",
4
4
  "description": "A spreadsheet component",
5
5
  "type": "module",
6
6
  "main": "dist/o_spreadsheet.cjs",