@odoo/o-spreadsheet 19.5.0-alpha.8 → 19.5.0-alpha.9
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 +12 -9
- package/dist/o_spreadsheet.css +3 -3
- package/dist/o_spreadsheet.esm.js +12 -9
- package/dist/o_spreadsheet.iife.js +12 -9
- package/dist/o_spreadsheet.min.iife.js +4 -4
- package/dist/o_spreadsheet.xml +3 -3
- package/dist/types/components/standalone_grid_canvas/standalone_grid_canvas.d.ts +1 -0
- package/dist/types/index.d.ts +2 -0
- package/dist/types/types/rendering.d.ts +1 -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-08-
|
|
6
|
-
@hash
|
|
4
|
+
@version 19.5.0-alpha.9
|
|
5
|
+
@date 2026-08-06T13:08:58.700Z
|
|
6
|
+
@hash 64623a8
|
|
7
7
|
-->
|
|
8
8
|
<odoo>
|
|
9
9
|
<t t-name="o-spreadsheet-ValidationMessages">
|
|
@@ -14,6 +14,7 @@ export declare class StandaloneGridCanvas extends Component<SpreadsheetChildEnv>
|
|
|
14
14
|
viewports: import("../../helpers/viewport_collection").ViewportCollection;
|
|
15
15
|
selectedZones: import("../..").Zone[];
|
|
16
16
|
dpr: number;
|
|
17
|
+
hideFrozenPaneBorder?: boolean | undefined;
|
|
17
18
|
activeCols: Set<number>;
|
|
18
19
|
activeRows: Set<number>;
|
|
19
20
|
activePosition: import("../..").CellPosition | undefined;
|
package/dist/types/index.d.ts
CHANGED
|
@@ -245,6 +245,7 @@ import { parseFormat } from "./helpers/format/format_parser";
|
|
|
245
245
|
import { replaceSymbolInFormula } from "./helpers/formulas";
|
|
246
246
|
import { getFirstPivotFunction, getNumberOfPivotFunctions } from "./helpers/pivot/pivot_composer_helpers";
|
|
247
247
|
import { domainToColRowDomain } from "./helpers/pivot/pivot_domain_helpers";
|
|
248
|
+
import { drawHighlight } from "./helpers/rendering";
|
|
248
249
|
import { fuzzyLookup } from "./helpers/search";
|
|
249
250
|
import { ViewportsStore } from "./stores/viewports_store";
|
|
250
251
|
export declare const helpers: {
|
|
@@ -327,6 +328,7 @@ export declare const helpers: {
|
|
|
327
328
|
computeCachedTextDimension: typeof computeCachedTextDimension;
|
|
328
329
|
createComputeFunction: typeof createComputeFunction;
|
|
329
330
|
isMobileOS: typeof isMobileOS;
|
|
331
|
+
drawHighlight: typeof drawHighlight;
|
|
330
332
|
};
|
|
331
333
|
export declare const links: {
|
|
332
334
|
isMarkdownLink: typeof isMarkdownLink;
|