@odoo/o-spreadsheet 19.5.0-alpha.2 → 19.5.0-alpha.3
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 +299 -175
- package/dist/o_spreadsheet.css +3 -3
- package/dist/o_spreadsheet.esm.js +299 -175
- package/dist/o_spreadsheet.iife.js +299 -175
- package/dist/o_spreadsheet.min.iife.js +264 -264
- package/dist/o_spreadsheet.xml +3 -3
- package/dist/types/clipboard_handlers/default_clipboard.d.ts +1 -1
- package/dist/types/helpers/misc.d.ts +1 -0
- package/dist/types/types/chart/radar_chart.d.ts +1 -1
- package/dist/types/types/misc.d.ts +4 -0
- 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.5.0-alpha.
|
|
5
|
-
@date 2026-07-
|
|
6
|
-
@hash
|
|
4
|
+
@version 19.5.0-alpha.3
|
|
5
|
+
@date 2026-07-14T10:17:07.928Z
|
|
6
|
+
@hash c029184
|
|
7
7
|
-->
|
|
8
8
|
<odoo>
|
|
9
9
|
<t t-name="o-spreadsheet-ValidationMessages">
|
|
@@ -15,7 +15,7 @@ type ClipboardContent = {
|
|
|
15
15
|
};
|
|
16
16
|
export declare class DefaultClipboardHandler extends AbstractCellClipboardHandler<ClipboardContent, unknown> {
|
|
17
17
|
copy(data: ClipboardCellData): ClipboardContent | undefined;
|
|
18
|
-
|
|
18
|
+
adaptContentToZone(zone: Zone, content: ClipboardContent): ClipboardContent;
|
|
19
19
|
paste(target: ClipboardPasteTarget, content: ClipboardContent, options: ClipboardOptions): void;
|
|
20
20
|
/**
|
|
21
21
|
* Clear the clipped zones: remove the cells and clear the formatting
|
|
@@ -10,7 +10,7 @@ export interface RadarChartDefinition<T extends string | Range = Range> extends
|
|
|
10
10
|
readonly humanize?: boolean;
|
|
11
11
|
}
|
|
12
12
|
export type RadarChartRuntime = {
|
|
13
|
-
chartJsConfig: ChartConfiguration
|
|
13
|
+
chartJsConfig: ChartConfiguration<"radar">;
|
|
14
14
|
customizableSeries: {
|
|
15
15
|
dataSetId: string;
|
|
16
16
|
label: string;
|