@odoo/o-spreadsheet 19.3.6 → 19.3.7

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.
@@ -2,9 +2,9 @@
2
2
  /**
3
3
  * This file is generated by o-spreadsheet build tools. Do not edit it.
4
4
  * @see https://github.com/odoo/o-spreadsheet
5
- * @version 19.3.6
6
- * @date 2026-06-06T06:24:22.727Z
7
- * @hash 0fe939b
5
+ * @version 19.3.7
6
+ * @date 2026-06-17T08:57:42.174Z
7
+ * @hash e061163
8
8
  */
9
9
 
10
10
  Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
@@ -56220,7 +56220,7 @@ iconsOnCellRegistry.add("pivot_collapse", (getters, position) => {
56220
56220
  if (!(definition.style?.tabularForm ?? DEFAULT_PIVOT_STYLE.tabularForm) && pivotCell.type === "HEADER" && pivotId && pivotCell.domain.length) {
56221
56221
  const isDashboard = getters.isDashboard();
56222
56222
  const fields = pivotCell.dimension === "COL" ? definition.columns : definition.rows;
56223
- const hasIcon = !isDashboard && pivotCell.domain.length !== fields.length;
56223
+ const hasIcon = !isDashboard && !getters.shouldShowFormulas() && pivotCell.domain.length !== fields.length;
56224
56224
  const isCollapsed = (definition.collapsedDomains?.[pivotCell.dimension] ?? []).some((domain) => deepEquals(domain, pivotCell.domain));
56225
56225
  const indent = pivotCell.dimension === "ROW" ? (pivotCell.domain.length - 1) * 15 : 0;
56226
56226
  return {
@@ -84713,6 +84713,6 @@ exports.stores = stores;
84713
84713
  exports.tokenColors = tokenColors;
84714
84714
  exports.tokenize = tokenize;
84715
84715
 
84716
- __info__.version = "19.3.6";
84717
- __info__.date = "2026-06-06T06:24:22.727Z";
84718
- __info__.hash = "0fe939b";
84716
+ __info__.version = "19.3.7";
84717
+ __info__.date = "2026-06-17T08:57:42.174Z";
84718
+ __info__.hash = "e061163";
@@ -2,9 +2,9 @@
2
2
  /*
3
3
  * This file is generated by o-spreadsheet build tools. Do not edit it.
4
4
  * @see https://github.com/odoo/o-spreadsheet
5
- * @version 19.3.6
6
- * @date 2026-06-06T06:24:24.503Z
7
- * @hash 0fe939b
5
+ * @version 19.3.7
6
+ * @date 2026-06-17T08:57:43.989Z
7
+ * @hash e061163
8
8
  */
9
9
  :root {
10
10
  --os-gray-100: light-dark(#f9fafb, #1b1d26);
@@ -2227,6 +2227,7 @@
2227
2227
  right: var(--os-scrollbar-width);
2228
2228
  height: var(--os-header-height);
2229
2229
  width: calc(100% - var(--os-header-width) + var(--os-scrollbar-width));
2230
+ color-scheme: light;
2230
2231
  &.o-dragging {
2231
2232
  cursor: grabbing;
2232
2233
  }
@@ -2262,9 +2263,12 @@
2262
2263
  height: 10000px;
2263
2264
  background-color: var(--os-selection-border-color);
2264
2265
  }
2265
- .o-unhide:hover {
2266
- z-index: calc(var(--os-components-importance-grid) + 1);
2267
- background-color: var(--os-gray-400);
2266
+ .o-unhide {
2267
+ color: var(--os-text-body);
2268
+ &:hover {
2269
+ z-index: calc(var(--os-components-importance-grid) + 1);
2270
+ background-color: var(--os-gray-400);
2271
+ }
2268
2272
  }
2269
2273
  }
2270
2274
 
@@ -2274,6 +2278,7 @@
2274
2278
  left: 0;
2275
2279
  bottom: var(--os-scrollbar-width);
2276
2280
  width: var(--os-header-width);
2281
+ color-scheme: light;
2277
2282
  &.o-dragging {
2278
2283
  cursor: grabbing;
2279
2284
  }
@@ -2309,9 +2314,12 @@
2309
2314
  height: 1px;
2310
2315
  background-color: var(--os-selection-border-color);
2311
2316
  }
2312
- .o-unhide:hover {
2313
- z-index: calc(var(--os-components-importance-grid) + 1);
2314
- background-color: var(--os-gray-400);
2317
+ .o-unhide {
2318
+ color: var(--os-text-body);
2319
+ &:hover {
2320
+ z-index: calc(var(--os-components-importance-grid) + 1);
2321
+ background-color: var(--os-gray-400);
2322
+ }
2315
2323
  }
2316
2324
  }
2317
2325
 
@@ -3485,8 +3493,8 @@
3485
3493
 
3486
3494
  .o-autofill-nextvalue {
3487
3495
  position: absolute;
3488
- background-color: #ffffff;
3489
- border: 1px solid black;
3496
+ background-color: var(--os-white);
3497
+ border: 1px solid var(--os-black);
3490
3498
  padding: 5px;
3491
3499
  font-size: 12px;
3492
3500
  pointer-events: none;
@@ -2,9 +2,9 @@
2
2
  /**
3
3
  * This file is generated by o-spreadsheet build tools. Do not edit it.
4
4
  * @see https://github.com/odoo/o-spreadsheet
5
- * @version 19.3.6
6
- * @date 2026-06-06T06:24:22.727Z
7
- * @hash 0fe939b
5
+ * @version 19.3.7
6
+ * @date 2026-06-17T08:57:42.174Z
7
+ * @hash e061163
8
8
  */
9
9
 
10
10
  import { App, Component, blockDom, markRaw, onMounted, onPatched, onWillPatch, onWillStart, onWillUnmount, onWillUpdateProps, status, toRaw, useChildSubEnv, useComponent, useEffect, useEnv, useExternalListener, useRef, useState, useSubEnv, whenReady, xml } from "@odoo/owl";
@@ -56035,7 +56035,7 @@ iconsOnCellRegistry.add("pivot_collapse", (getters, position) => {
56035
56035
  if (!(definition.style?.tabularForm ?? DEFAULT_PIVOT_STYLE.tabularForm) && pivotCell.type === "HEADER" && pivotId && pivotCell.domain.length) {
56036
56036
  const isDashboard = getters.isDashboard();
56037
56037
  const fields = pivotCell.dimension === "COL" ? definition.columns : definition.rows;
56038
- const hasIcon = !isDashboard && pivotCell.domain.length !== fields.length;
56038
+ const hasIcon = !isDashboard && !getters.shouldShowFormulas() && pivotCell.domain.length !== fields.length;
56039
56039
  const isCollapsed = (definition.collapsedDomains?.[pivotCell.dimension] ?? []).some((domain) => deepEquals(domain, pivotCell.domain));
56040
56040
  const indent = pivotCell.dimension === "ROW" ? (pivotCell.domain.length - 1) * 15 : 0;
56041
56041
  return {
@@ -84470,6 +84470,6 @@ const chartHelpers = {
84470
84470
  //#endregion
84471
84471
  export { AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, CellErrorType, ClientDisconnectedError, CommandResult, CompiledFormula, CorePlugin, CoreViewPlugin, DEFAULT_LOCALE, DEFAULT_LOCALES, DispatchResult, EvaluationError, LocalTransportService, Model, PivotRuntimeDefinition, Registry, Revision, SPREADSHEET_DIMENSIONS, Spreadsheet, SpreadsheetPivotTable, UIPlugin, __info__, addFunction, addRenderingLayer, astToFormula, canExecuteInReadonly, categories, chartHelpers, components, constants, convertAstNodes, coreTypes, createAutocompleteArgumentsProvider, findCellInNewZone, functionCache, getCaretDownSvg, getCaretUpSvg, helpers, hooks, invalidateCFEvaluationCommands, invalidateChartEvaluationCommands, invalidateDependenciesCommands, invalidateEvaluationCommands, isCoreCommand, isSheetDependent, iterateAstNodes, links, load, lockedSheetAllowedCommands, parse, parseTokens, readonlyAllowedCommands, registries, setDefaultSheetViewSize, setTranslationMethod, stores, tokenColors, tokenize };
84472
84472
 
84473
- __info__.version = "19.3.6";
84474
- __info__.date = "2026-06-06T06:24:22.727Z";
84475
- __info__.hash = "0fe939b";
84473
+ __info__.version = "19.3.7";
84474
+ __info__.date = "2026-06-17T08:57:42.174Z";
84475
+ __info__.hash = "e061163";
@@ -2,9 +2,9 @@
2
2
  /**
3
3
  * This file is generated by o-spreadsheet build tools. Do not edit it.
4
4
  * @see https://github.com/odoo/o-spreadsheet
5
- * @version 19.3.6
6
- * @date 2026-06-06T06:24:22.727Z
7
- * @hash 0fe939b
5
+ * @version 19.3.7
6
+ * @date 2026-06-17T08:57:42.174Z
7
+ * @hash e061163
8
8
  */
9
9
 
10
10
  (function(exports, _odoo_owl) {
@@ -56037,7 +56037,7 @@ stores.inject(MyMetaStore, storeInstance);
56037
56037
  if (!(definition.style?.tabularForm ?? DEFAULT_PIVOT_STYLE.tabularForm) && pivotCell.type === "HEADER" && pivotId && pivotCell.domain.length) {
56038
56038
  const isDashboard = getters.isDashboard();
56039
56039
  const fields = pivotCell.dimension === "COL" ? definition.columns : definition.rows;
56040
- const hasIcon = !isDashboard && pivotCell.domain.length !== fields.length;
56040
+ const hasIcon = !isDashboard && !getters.shouldShowFormulas() && pivotCell.domain.length !== fields.length;
56041
56041
  const isCollapsed = (definition.collapsedDomains?.[pivotCell.dimension] ?? []).some((domain) => deepEquals(domain, pivotCell.domain));
56042
56042
  const indent = pivotCell.dimension === "ROW" ? (pivotCell.domain.length - 1) * 15 : 0;
56043
56043
  return {
@@ -84530,8 +84530,8 @@ exports.stores = stores;
84530
84530
  exports.tokenColors = tokenColors;
84531
84531
  exports.tokenize = tokenize;
84532
84532
 
84533
- __info__.version = "19.3.6";
84534
- __info__.date = "2026-06-06T06:24:22.727Z";
84535
- __info__.hash = "0fe939b";
84533
+ __info__.version = "19.3.7";
84534
+ __info__.date = "2026-06-17T08:57:42.174Z";
84535
+ __info__.hash = "e061163";
84536
84536
 
84537
84537
  })(this.o_spreadsheet = this.o_spreadsheet || {}, owl);