@odoo/o-spreadsheet 19.2.15 → 19.2.16
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.2.
|
|
6
|
-
* @date 2026-06-
|
|
7
|
-
* @hash
|
|
5
|
+
* @version 19.2.16
|
|
6
|
+
* @date 2026-06-17T08:56:53.057Z
|
|
7
|
+
* @hash c5c6fd3
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
10
|
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
@@ -61969,7 +61969,7 @@ iconsOnCellRegistry.add("pivot_collapse", (getters, position) => {
|
|
|
61969
61969
|
const definition = getters.getPivotCoreDefinition(pivotId);
|
|
61970
61970
|
const isDashboard = getters.isDashboard();
|
|
61971
61971
|
const fields = pivotCell.dimension === "COL" ? definition.columns : definition.rows;
|
|
61972
|
-
const hasIcon = !isDashboard && pivotCell.domain.length !== fields.length;
|
|
61972
|
+
const hasIcon = !isDashboard && !getters.shouldShowFormulas() && pivotCell.domain.length !== fields.length;
|
|
61973
61973
|
const isCollapsed = (definition.collapsedDomains?.[pivotCell.dimension] ?? []).some((domain) => deepEquals(domain, pivotCell.domain));
|
|
61974
61974
|
const indent = pivotCell.dimension === "ROW" ? (pivotCell.domain.length - 1) * 15 : 0;
|
|
61975
61975
|
return {
|
|
@@ -81871,6 +81871,6 @@ exports.stores = stores;
|
|
|
81871
81871
|
exports.tokenColors = tokenColors;
|
|
81872
81872
|
exports.tokenize = tokenize;
|
|
81873
81873
|
|
|
81874
|
-
__info__.version = "19.2.
|
|
81875
|
-
__info__.date = "2026-06-
|
|
81876
|
-
__info__.hash = "
|
|
81874
|
+
__info__.version = "19.2.16";
|
|
81875
|
+
__info__.date = "2026-06-17T08:56:53.057Z";
|
|
81876
|
+
__info__.hash = "c5c6fd3";
|
package/dist/o_spreadsheet.css
CHANGED
|
@@ -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.2.
|
|
6
|
-
* @date 2026-06-
|
|
7
|
-
* @hash
|
|
5
|
+
* @version 19.2.16
|
|
6
|
+
* @date 2026-06-17T08:56:54.770Z
|
|
7
|
+
* @hash c5c6fd3
|
|
8
8
|
*/
|
|
9
9
|
:root {
|
|
10
10
|
--os-gray-100: light-dark(#f9fafb, #1b1d26);
|
|
@@ -2066,6 +2066,7 @@
|
|
|
2066
2066
|
right: var(--os-scrollbar-width);
|
|
2067
2067
|
height: var(--os-header-height);
|
|
2068
2068
|
width: calc(100% - var(--os-header-width) + var(--os-scrollbar-width));
|
|
2069
|
+
color-scheme: light;
|
|
2069
2070
|
&.o-dragging {
|
|
2070
2071
|
cursor: grabbing;
|
|
2071
2072
|
}
|
|
@@ -2101,9 +2102,12 @@
|
|
|
2101
2102
|
height: 10000px;
|
|
2102
2103
|
background-color: var(--os-selection-border-color);
|
|
2103
2104
|
}
|
|
2104
|
-
.o-unhide
|
|
2105
|
-
|
|
2106
|
-
|
|
2105
|
+
.o-unhide {
|
|
2106
|
+
color: var(--os-text-body);
|
|
2107
|
+
&:hover {
|
|
2108
|
+
z-index: calc(var(--os-components-importance-grid) + 1);
|
|
2109
|
+
background-color: var(--os-gray-400);
|
|
2110
|
+
}
|
|
2107
2111
|
}
|
|
2108
2112
|
}
|
|
2109
2113
|
|
|
@@ -2113,6 +2117,7 @@
|
|
|
2113
2117
|
left: 0;
|
|
2114
2118
|
bottom: var(--os-scrollbar-width);
|
|
2115
2119
|
width: var(--os-header-width);
|
|
2120
|
+
color-scheme: light;
|
|
2116
2121
|
&.o-dragging {
|
|
2117
2122
|
cursor: grabbing;
|
|
2118
2123
|
}
|
|
@@ -2148,9 +2153,12 @@
|
|
|
2148
2153
|
height: 1px;
|
|
2149
2154
|
background-color: var(--os-selection-border-color);
|
|
2150
2155
|
}
|
|
2151
|
-
.o-unhide
|
|
2152
|
-
|
|
2153
|
-
|
|
2156
|
+
.o-unhide {
|
|
2157
|
+
color: var(--os-text-body);
|
|
2158
|
+
&:hover {
|
|
2159
|
+
z-index: calc(var(--os-components-importance-grid) + 1);
|
|
2160
|
+
background-color: var(--os-gray-400);
|
|
2161
|
+
}
|
|
2154
2162
|
}
|
|
2155
2163
|
}
|
|
2156
2164
|
|
|
@@ -3314,8 +3322,8 @@
|
|
|
3314
3322
|
|
|
3315
3323
|
.o-autofill-nextvalue {
|
|
3316
3324
|
position: absolute;
|
|
3317
|
-
background-color:
|
|
3318
|
-
border: 1px solid black;
|
|
3325
|
+
background-color: var(--os-white);
|
|
3326
|
+
border: 1px solid var(--os-black);
|
|
3319
3327
|
padding: 5px;
|
|
3320
3328
|
font-size: 12px;
|
|
3321
3329
|
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.2.
|
|
6
|
-
* @date 2026-06-
|
|
7
|
-
* @hash
|
|
5
|
+
* @version 19.2.16
|
|
6
|
+
* @date 2026-06-17T08:56:53.057Z
|
|
7
|
+
* @hash c5c6fd3
|
|
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";
|
|
@@ -61784,7 +61784,7 @@ iconsOnCellRegistry.add("pivot_collapse", (getters, position) => {
|
|
|
61784
61784
|
const definition = getters.getPivotCoreDefinition(pivotId);
|
|
61785
61785
|
const isDashboard = getters.isDashboard();
|
|
61786
61786
|
const fields = pivotCell.dimension === "COL" ? definition.columns : definition.rows;
|
|
61787
|
-
const hasIcon = !isDashboard && pivotCell.domain.length !== fields.length;
|
|
61787
|
+
const hasIcon = !isDashboard && !getters.shouldShowFormulas() && pivotCell.domain.length !== fields.length;
|
|
61788
61788
|
const isCollapsed = (definition.collapsedDomains?.[pivotCell.dimension] ?? []).some((domain) => deepEquals(domain, pivotCell.domain));
|
|
61789
61789
|
const indent = pivotCell.dimension === "ROW" ? (pivotCell.domain.length - 1) * 15 : 0;
|
|
61790
61790
|
return {
|
|
@@ -81628,6 +81628,6 @@ const chartHelpers = {
|
|
|
81628
81628
|
//#endregion
|
|
81629
81629
|
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 };
|
|
81630
81630
|
|
|
81631
|
-
__info__.version = "19.2.
|
|
81632
|
-
__info__.date = "2026-06-
|
|
81633
|
-
__info__.hash = "
|
|
81631
|
+
__info__.version = "19.2.16";
|
|
81632
|
+
__info__.date = "2026-06-17T08:56:53.057Z";
|
|
81633
|
+
__info__.hash = "c5c6fd3";
|
|
@@ -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.2.
|
|
6
|
-
* @date 2026-06-
|
|
7
|
-
* @hash
|
|
5
|
+
* @version 19.2.16
|
|
6
|
+
* @date 2026-06-17T08:56:53.057Z
|
|
7
|
+
* @hash c5c6fd3
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
10
|
(function(exports, _odoo_owl) {
|
|
@@ -61786,7 +61786,7 @@ stores.inject(MyMetaStore, storeInstance);
|
|
|
61786
61786
|
const definition = getters.getPivotCoreDefinition(pivotId);
|
|
61787
61787
|
const isDashboard = getters.isDashboard();
|
|
61788
61788
|
const fields = pivotCell.dimension === "COL" ? definition.columns : definition.rows;
|
|
61789
|
-
const hasIcon = !isDashboard && pivotCell.domain.length !== fields.length;
|
|
61789
|
+
const hasIcon = !isDashboard && !getters.shouldShowFormulas() && pivotCell.domain.length !== fields.length;
|
|
61790
61790
|
const isCollapsed = (definition.collapsedDomains?.[pivotCell.dimension] ?? []).some((domain) => deepEquals(domain, pivotCell.domain));
|
|
61791
61791
|
const indent = pivotCell.dimension === "ROW" ? (pivotCell.domain.length - 1) * 15 : 0;
|
|
61792
61792
|
return {
|
|
@@ -81688,8 +81688,8 @@ exports.stores = stores;
|
|
|
81688
81688
|
exports.tokenColors = tokenColors;
|
|
81689
81689
|
exports.tokenize = tokenize;
|
|
81690
81690
|
|
|
81691
|
-
__info__.version = "19.2.
|
|
81692
|
-
__info__.date = "2026-06-
|
|
81693
|
-
__info__.hash = "
|
|
81691
|
+
__info__.version = "19.2.16";
|
|
81692
|
+
__info__.date = "2026-06-17T08:56:53.057Z";
|
|
81693
|
+
__info__.hash = "c5c6fd3";
|
|
81694
81694
|
|
|
81695
81695
|
})(this.o_spreadsheet = this.o_spreadsheet || {}, owl);
|