@odoo/o-spreadsheet 18.0.39 → 18.0.40
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 18.0.
|
|
6
|
-
* @date 2025-
|
|
7
|
-
* @hash
|
|
5
|
+
* @version 18.0.40
|
|
6
|
+
* @date 2025-08-18T08:15:29.422Z
|
|
7
|
+
* @hash ec79db4
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
10
|
'use strict';
|
|
@@ -25591,7 +25591,7 @@ const OFFSET = {
|
|
|
25591
25591
|
right: startingCol + offsetWidth - 1,
|
|
25592
25592
|
bottom: startingRow + offsetHeight - 1,
|
|
25593
25593
|
};
|
|
25594
|
-
const range = this.getters.getRangeFromZone(
|
|
25594
|
+
const range = this.getters.getRangeFromZone(sheetId, dependencyZone);
|
|
25595
25595
|
if (range.invalidXc || range.invalidSheetName) {
|
|
25596
25596
|
return new InvalidReferenceError();
|
|
25597
25597
|
}
|
|
@@ -43597,7 +43597,7 @@ class PivotLayoutConfigurator extends owl.Component {
|
|
|
43597
43597
|
});
|
|
43598
43598
|
}
|
|
43599
43599
|
getMeasureId(fieldName, aggregator) {
|
|
43600
|
-
const baseId = fieldName + (aggregator ? `:${aggregator}` : "");
|
|
43600
|
+
const baseId = fieldName.replaceAll("'", "") + (aggregator ? `:${aggregator}` : "");
|
|
43601
43601
|
let id = baseId;
|
|
43602
43602
|
let i = 2;
|
|
43603
43603
|
while (this.props.definition.measures.some((m) => m.id === id)) {
|
|
@@ -74649,6 +74649,6 @@ exports.tokenColors = tokenColors;
|
|
|
74649
74649
|
exports.tokenize = tokenize;
|
|
74650
74650
|
|
|
74651
74651
|
|
|
74652
|
-
__info__.version = "18.0.
|
|
74653
|
-
__info__.date = "2025-
|
|
74654
|
-
__info__.hash = "
|
|
74652
|
+
__info__.version = "18.0.40";
|
|
74653
|
+
__info__.date = "2025-08-18T08:15:29.422Z";
|
|
74654
|
+
__info__.hash = "ec79db4";
|
|
@@ -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 18.0.
|
|
6
|
-
* @date 2025-
|
|
7
|
-
* @hash
|
|
5
|
+
* @version 18.0.40
|
|
6
|
+
* @date 2025-08-18T08:15:29.422Z
|
|
7
|
+
* @hash ec79db4
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
10
|
import { useEnv, useSubEnv, onWillUnmount, useComponent, status, Component, useRef, onMounted, useEffect, useState, onPatched, onWillPatch, onWillUpdateProps, useExternalListener, onWillStart, xml, useChildSubEnv, markRaw, toRaw } from '@odoo/owl';
|
|
@@ -25589,7 +25589,7 @@ const OFFSET = {
|
|
|
25589
25589
|
right: startingCol + offsetWidth - 1,
|
|
25590
25590
|
bottom: startingRow + offsetHeight - 1,
|
|
25591
25591
|
};
|
|
25592
|
-
const range = this.getters.getRangeFromZone(
|
|
25592
|
+
const range = this.getters.getRangeFromZone(sheetId, dependencyZone);
|
|
25593
25593
|
if (range.invalidXc || range.invalidSheetName) {
|
|
25594
25594
|
return new InvalidReferenceError();
|
|
25595
25595
|
}
|
|
@@ -43595,7 +43595,7 @@ class PivotLayoutConfigurator extends Component {
|
|
|
43595
43595
|
});
|
|
43596
43596
|
}
|
|
43597
43597
|
getMeasureId(fieldName, aggregator) {
|
|
43598
|
-
const baseId = fieldName + (aggregator ? `:${aggregator}` : "");
|
|
43598
|
+
const baseId = fieldName.replaceAll("'", "") + (aggregator ? `:${aggregator}` : "");
|
|
43599
43599
|
let id = baseId;
|
|
43600
43600
|
let i = 2;
|
|
43601
43601
|
while (this.props.definition.measures.some((m) => m.id === id)) {
|
|
@@ -74604,6 +74604,6 @@ const constants = {
|
|
|
74604
74604
|
export { AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, CellErrorType, CommandResult, CorePlugin, DispatchResult, EvaluationError, Model, PivotRuntimeDefinition, Registry, Revision, SPREADSHEET_DIMENSIONS, Spreadsheet, SpreadsheetPivotTable, UIPlugin, __info__, addFunction, addRenderingLayer, astToFormula, compile, compileTokens, components, constants, convertAstNodes, coreTypes, findCellInNewZone, functionCache, helpers, hooks, invalidateCFEvaluationCommands, invalidateDependenciesCommands, invalidateEvaluationCommands, iterateAstNodes, links, load, parse, parseTokens, readonlyAllowedCommands, registries, setDefaultSheetViewSize, setTranslationMethod, stores, tokenColors, tokenize };
|
|
74605
74605
|
|
|
74606
74606
|
|
|
74607
|
-
__info__.version = "18.0.
|
|
74608
|
-
__info__.date = "2025-
|
|
74609
|
-
__info__.hash = "
|
|
74607
|
+
__info__.version = "18.0.40";
|
|
74608
|
+
__info__.date = "2025-08-18T08:15:29.422Z";
|
|
74609
|
+
__info__.hash = "ec79db4";
|
|
@@ -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 18.0.
|
|
6
|
-
* @date 2025-
|
|
7
|
-
* @hash
|
|
5
|
+
* @version 18.0.40
|
|
6
|
+
* @date 2025-08-18T08:15:29.422Z
|
|
7
|
+
* @hash ec79db4
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
10
|
(function (exports, owl) {
|
|
@@ -25590,7 +25590,7 @@ stores.inject(MyMetaStore, storeInstance);
|
|
|
25590
25590
|
right: startingCol + offsetWidth - 1,
|
|
25591
25591
|
bottom: startingRow + offsetHeight - 1,
|
|
25592
25592
|
};
|
|
25593
|
-
const range = this.getters.getRangeFromZone(
|
|
25593
|
+
const range = this.getters.getRangeFromZone(sheetId, dependencyZone);
|
|
25594
25594
|
if (range.invalidXc || range.invalidSheetName) {
|
|
25595
25595
|
return new InvalidReferenceError();
|
|
25596
25596
|
}
|
|
@@ -43596,7 +43596,7 @@ stores.inject(MyMetaStore, storeInstance);
|
|
|
43596
43596
|
});
|
|
43597
43597
|
}
|
|
43598
43598
|
getMeasureId(fieldName, aggregator) {
|
|
43599
|
-
const baseId = fieldName + (aggregator ? `:${aggregator}` : "");
|
|
43599
|
+
const baseId = fieldName.replaceAll("'", "") + (aggregator ? `:${aggregator}` : "");
|
|
43600
43600
|
let id = baseId;
|
|
43601
43601
|
let i = 2;
|
|
43602
43602
|
while (this.props.definition.measures.some((m) => m.id === id)) {
|
|
@@ -74648,9 +74648,9 @@ stores.inject(MyMetaStore, storeInstance);
|
|
|
74648
74648
|
exports.tokenize = tokenize;
|
|
74649
74649
|
|
|
74650
74650
|
|
|
74651
|
-
__info__.version = "18.0.
|
|
74652
|
-
__info__.date = "2025-
|
|
74653
|
-
__info__.hash = "
|
|
74651
|
+
__info__.version = "18.0.40";
|
|
74652
|
+
__info__.date = "2025-08-18T08:15:29.422Z";
|
|
74653
|
+
__info__.hash = "ec79db4";
|
|
74654
74654
|
|
|
74655
74655
|
|
|
74656
74656
|
})(this.o_spreadsheet = this.o_spreadsheet || {}, owl);
|