@odoo/o-spreadsheet 19.0.41 → 19.0.42
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.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.0.
|
|
6
|
-
* @date 2026-07-
|
|
7
|
-
* @hash
|
|
5
|
+
* @version 19.0.42
|
|
6
|
+
* @date 2026-07-13T06:28:59.983Z
|
|
7
|
+
* @hash 74cadf3
|
|
8
8
|
*/
|
|
9
9
|
/* Originates from src/components/top_bar/top_bar.scss */
|
|
10
10
|
@media (max-width: 1200px) {
|
|
@@ -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.0.
|
|
6
|
-
* @date 2026-07-
|
|
7
|
-
* @hash
|
|
5
|
+
* @version 19.0.42
|
|
6
|
+
* @date 2026-07-13T06:28:58.351Z
|
|
7
|
+
* @hash 74cadf3
|
|
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, xml } from "@odoo/owl";
|
|
@@ -43214,7 +43214,8 @@ var Autofill = class extends Component {
|
|
|
43214
43214
|
const { left, top } = this.state.handler ? this.state.position : this.props.position;
|
|
43215
43215
|
return cssPropertiesToCss({
|
|
43216
43216
|
top: `${top}px`,
|
|
43217
|
-
left: `${left}px
|
|
43217
|
+
left: `${left}px`,
|
|
43218
|
+
visibility: this.props.isVisible ? "visible" : "hidden"
|
|
43218
43219
|
});
|
|
43219
43220
|
}
|
|
43220
43221
|
get styleNextValue() {
|
|
@@ -62601,13 +62602,13 @@ var EvaluationConditionalFormatPlugin = class extends CoreViewPlugin {
|
|
|
62601
62602
|
const minValue = this.parsePoint(sheetId, range, rule.minimum, "min");
|
|
62602
62603
|
const midValue = rule.midpoint ? this.parsePoint(sheetId, range, rule.midpoint) : null;
|
|
62603
62604
|
const maxValue = this.parsePoint(sheetId, range, rule.maximum, "max");
|
|
62604
|
-
if (minValue === null || maxValue === null || minValue >= maxValue || midValue && (minValue >= midValue || midValue >= maxValue)) return;
|
|
62605
|
+
if (minValue === null || maxValue === null || minValue >= maxValue || midValue !== null && (minValue >= midValue || midValue >= maxValue)) return;
|
|
62605
62606
|
const zone = this.getters.getRangeFromSheetXC(sheetId, range).zone;
|
|
62606
62607
|
const colorThresholds = [{
|
|
62607
62608
|
value: minValue,
|
|
62608
62609
|
color: rule.minimum.color
|
|
62609
62610
|
}];
|
|
62610
|
-
if (rule.midpoint && midValue) colorThresholds.push({
|
|
62611
|
+
if (rule.midpoint && midValue !== null) colorThresholds.push({
|
|
62611
62612
|
value: midValue,
|
|
62612
62613
|
color: rule.midpoint.color
|
|
62613
62614
|
});
|
|
@@ -79356,6 +79357,6 @@ const chartHelpers = {
|
|
|
79356
79357
|
//#endregion
|
|
79357
79358
|
export { AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, CellErrorType, ClientDisconnectedError, CommandResult, CorePlugin, CoreViewPlugin, DispatchResult, EvaluationError, LocalTransportService, Model, PivotRuntimeDefinition, Registry, Revision, SPREADSHEET_DIMENSIONS, Spreadsheet, SpreadsheetPivotTable, UIPlugin, __info__, addFunction, addRenderingLayer, astToFormula, chartHelpers, compile, compileTokens, components, constants, convertAstNodes, coreTypes, findCellInNewZone, functionCache, getCaretDownSvg, getCaretUpSvg, helpers, hooks, invalidateCFEvaluationCommands, invalidateChartEvaluationCommands, invalidateDependenciesCommands, invalidateEvaluationCommands, iterateAstNodes, links, load, parse, parseTokens, readonlyAllowedCommands, registries, setDefaultSheetViewSize, setTranslationMethod, stores, tokenColors, tokenize };
|
|
79358
79359
|
|
|
79359
|
-
__info__.version = "19.0.
|
|
79360
|
-
__info__.date = "2026-07-
|
|
79361
|
-
__info__.hash = "
|
|
79360
|
+
__info__.version = "19.0.42";
|
|
79361
|
+
__info__.date = "2026-07-13T06:28:58.351Z";
|
|
79362
|
+
__info__.hash = "74cadf3";
|
|
@@ -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.0.
|
|
6
|
-
* @date 2026-07-
|
|
7
|
-
* @hash
|
|
5
|
+
* @version 19.0.42
|
|
6
|
+
* @date 2026-07-13T06:28:58.351Z
|
|
7
|
+
* @hash 74cadf3
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
10
|
(function(exports, _odoo_owl) {
|
|
@@ -43216,7 +43216,8 @@ stores.inject(MyMetaStore, storeInstance);
|
|
|
43216
43216
|
const { left, top } = this.state.handler ? this.state.position : this.props.position;
|
|
43217
43217
|
return cssPropertiesToCss({
|
|
43218
43218
|
top: `${top}px`,
|
|
43219
|
-
left: `${left}px
|
|
43219
|
+
left: `${left}px`,
|
|
43220
|
+
visibility: this.props.isVisible ? "visible" : "hidden"
|
|
43220
43221
|
});
|
|
43221
43222
|
}
|
|
43222
43223
|
get styleNextValue() {
|
|
@@ -62603,13 +62604,13 @@ stores.inject(MyMetaStore, storeInstance);
|
|
|
62603
62604
|
const minValue = this.parsePoint(sheetId, range, rule.minimum, "min");
|
|
62604
62605
|
const midValue = rule.midpoint ? this.parsePoint(sheetId, range, rule.midpoint) : null;
|
|
62605
62606
|
const maxValue = this.parsePoint(sheetId, range, rule.maximum, "max");
|
|
62606
|
-
if (minValue === null || maxValue === null || minValue >= maxValue || midValue && (minValue >= midValue || midValue >= maxValue)) return;
|
|
62607
|
+
if (minValue === null || maxValue === null || minValue >= maxValue || midValue !== null && (minValue >= midValue || midValue >= maxValue)) return;
|
|
62607
62608
|
const zone = this.getters.getRangeFromSheetXC(sheetId, range).zone;
|
|
62608
62609
|
const colorThresholds = [{
|
|
62609
62610
|
value: minValue,
|
|
62610
62611
|
color: rule.minimum.color
|
|
62611
62612
|
}];
|
|
62612
|
-
if (rule.midpoint && midValue) colorThresholds.push({
|
|
62613
|
+
if (rule.midpoint && midValue !== null) colorThresholds.push({
|
|
62613
62614
|
value: midValue,
|
|
62614
62615
|
color: rule.midpoint.color
|
|
62615
62616
|
});
|
|
@@ -79409,8 +79410,8 @@ exports.stores = stores;
|
|
|
79409
79410
|
exports.tokenColors = tokenColors;
|
|
79410
79411
|
exports.tokenize = tokenize;
|
|
79411
79412
|
|
|
79412
|
-
__info__.version = "19.0.
|
|
79413
|
-
__info__.date = "2026-07-
|
|
79414
|
-
__info__.hash = "
|
|
79413
|
+
__info__.version = "19.0.42";
|
|
79414
|
+
__info__.date = "2026-07-13T06:28:58.351Z";
|
|
79415
|
+
__info__.hash = "74cadf3";
|
|
79415
79416
|
|
|
79416
79417
|
})(this.o_spreadsheet = this.o_spreadsheet || {}, owl);
|