@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.
@@ -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.8
5
- @date 2026-08-04T07:11:41.047Z
6
- @hash c1baebe
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;
@@ -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;
@@ -105,6 +105,7 @@ export type GridRenderingContext = {
105
105
  thinLineWidth: number;
106
106
  viewports: ViewportCollection;
107
107
  hideGridLines?: boolean;
108
+ hideFrozenPaneBorder?: boolean;
108
109
  } & SelectionState;
109
110
  declare const LAYERS: {
110
111
  readonly Background: 0;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@odoo/o-spreadsheet",
3
- "version": "19.5.0-alpha.8",
3
+ "version": "19.5.0-alpha.9",
4
4
  "description": "A spreadsheet component",
5
5
  "type": "module",
6
6
  "main": "dist/o_spreadsheet.cjs",