@odoo/o-spreadsheet 19.3.13 → 19.3.14

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.3.13
5
- @date 2026-07-23T07:41:07.163Z
6
- @hash 2059bd0
4
+ @version 19.3.14
5
+ @date 2026-07-30T06:55:44.729Z
6
+ @hash 3dd5632
7
7
  -->
8
8
  <odoo>
9
9
  <t t-name="o-spreadsheet-ValidationMessages">
@@ -1404,7 +1404,7 @@
1404
1404
  />
1405
1405
  </t>
1406
1406
  <div t-if="measure.computedBy" class="d-flex flex-row small">
1407
- <div class="d-flex flex-column py-2 px-2 w-100" t-on-pointerdown.stop="">
1407
+ <div class="d-flex flex-column py-2 px-2 w-100">
1408
1408
  <StandaloneComposer
1409
1409
  onConfirm.bind="updateMeasureFormula"
1410
1410
  composerContent="measure.computedBy.formula"
@@ -1483,7 +1483,7 @@
1483
1483
  />
1484
1484
  <span t-else="1" class="o-fw-bold text-truncate" t-out="dimensionDisplayName"/>
1485
1485
  </div>
1486
- <div class="d-flex flex-rows" t-on-pointerdown.stop="">
1486
+ <div class="d-flex flex-rows">
1487
1487
  <t t-slot="upper-right-icons"/>
1488
1488
  <i
1489
1489
  class="o-button-icon fa fa-trash pe-1 ps-2"
@@ -1558,9 +1558,7 @@
1558
1558
  t-as="group"
1559
1559
  t-key="group_index"
1560
1560
  class="o-pivot-custom-group pb-1">
1561
- <div
1562
- class="d-flex align-items-center justify-content-between small"
1563
- t-on-pointerdown.stop="">
1561
+ <div class="d-flex align-items-center justify-content-between small">
1564
1562
  <TextInput
1565
1563
  value="group.name"
1566
1564
  onChange="(newName) => this.onRenameGroup(group_index, newName)"
@@ -49,3 +49,5 @@ export declare function downloadFile(dataUrl: string, fileName: string): void;
49
49
  export declare function isBrowserFirefox(): boolean;
50
50
  export declare function isIOS(): boolean;
51
51
  export declare function isMobileOS(): boolean;
52
+ /** Check if there is an interactive element (input, select, button, ...) between the event.target and event.currentTarget (inclusive)*/
53
+ export declare function hasInteractiveElementInEventTree(event: Event): boolean;
@@ -50,9 +50,7 @@ export declare class PivotLayoutConfigurator extends Component<Props, Spreadshee
50
50
  private dimensionsRef;
51
51
  private dragAndDrop;
52
52
  AGGREGATORS: {};
53
- private composerFocus;
54
53
  isDateOrDatetimeField: typeof isDateOrDatetimeField;
55
- setup(): void;
56
54
  startDragAndDrop(dimension: PivotDimensionType, event: MouseEvent): void;
57
55
  getGranularitiesFor(field: PivotField): string[];
58
56
  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.3.13",
3
+ "version": "19.3.14",
4
4
  "description": "A spreadsheet component",
5
5
  "type": "module",
6
6
  "main": "dist/o_spreadsheet.cjs",