@odoo/o-spreadsheet 19.3.12 → 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.
- package/dist/o_spreadsheet.cjs +47 -23
- package/dist/o_spreadsheet.css +3 -3
- package/dist/o_spreadsheet.esm.js +47 -23
- package/dist/o_spreadsheet.iife.js +47 -23
- package/dist/o_spreadsheet.min.iife.js +239 -239
- package/dist/o_spreadsheet.xml +7 -12
- package/dist/types/components/grid/grid.d.ts +1 -0
- package/dist/types/components/helpers/dom_helpers.d.ts +2 -0
- package/dist/types/components/side_panel/pivot/pivot_layout_configurator/pivot_layout_configurator.d.ts +0 -2
- package/dist/types/plugins/ui_feature/collaborative.d.ts +2 -1
- 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 19.3.
|
|
5
|
-
@date 2026-07-
|
|
6
|
-
@hash
|
|
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"
|
|
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"
|
|
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)"
|
|
@@ -6950,10 +6948,7 @@
|
|
|
6950
6948
|
/>
|
|
6951
6949
|
<canvas t-ref="canvas"/>
|
|
6952
6950
|
<t t-set="focused" t-value="focusedClients"/>
|
|
6953
|
-
<t
|
|
6954
|
-
t-foreach="env.model.getters.getClientsToDisplay()"
|
|
6955
|
-
t-as="client"
|
|
6956
|
-
t-key="getClientPositionKey(client)">
|
|
6951
|
+
<t t-foreach="this.clientsToDisplay" t-as="client" t-key="getClientPositionKey(client)">
|
|
6957
6952
|
<ClientTag
|
|
6958
6953
|
name="client.name"
|
|
6959
6954
|
color="client.color"
|
|
@@ -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;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { UID } from "../..";
|
|
1
2
|
import { Client, ClientId, ClientWithColor } from "../../types/collaborative/session";
|
|
2
3
|
import { GridRenderingContext } from "../../types/rendering";
|
|
3
4
|
import { UIPlugin, UIPluginConfig } from "../ui_plugin";
|
|
@@ -18,7 +19,7 @@ export declare class CollaborativePlugin extends UIPlugin {
|
|
|
18
19
|
* Get the list of others connected clients which are present in the same sheet
|
|
19
20
|
* and with a valid position
|
|
20
21
|
*/
|
|
21
|
-
getClientsToDisplay(): ClientToDisplay[];
|
|
22
|
+
getClientsToDisplay(sheetId: UID): ClientToDisplay[];
|
|
22
23
|
drawLayer(renderingContext: GridRenderingContext): void;
|
|
23
24
|
}
|
|
24
25
|
export {};
|