@odoo/o-spreadsheet 19.4.6 → 19.4.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.
- package/dist/o_spreadsheet.cjs +18 -9
- package/dist/o_spreadsheet.css +3 -3
- package/dist/o_spreadsheet.esm.js +18 -9
- package/dist/o_spreadsheet.iife.js +18 -9
- package/dist/o_spreadsheet.min.iife.js +261 -261
- package/dist/o_spreadsheet.xml +3 -3
- package/dist/types/functions/function_registry.d.ts +3 -0
- package/dist/types/index.d.ts +2 -1
- package/dist/types/plugins/core/squisher.d.ts +2 -1
- package/package.json +1 -1
package/dist/o_spreadsheet.xml
CHANGED
|
@@ -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.4.
|
|
5
|
-
@date 2026-08-
|
|
6
|
-
@hash
|
|
4
|
+
@version 19.4.7
|
|
5
|
+
@date 2026-08-12T09:16:41.925Z
|
|
6
|
+
@hash 65642fe
|
|
7
7
|
-->
|
|
8
8
|
<odoo>
|
|
9
9
|
<t t-name="o-spreadsheet-ValidationMessages">
|
|
@@ -9,3 +9,6 @@ export declare class FunctionRegistry extends Registry<FunctionDescription> {
|
|
|
9
9
|
replace(name: string, addDescr: AddFunctionDescription): this;
|
|
10
10
|
}
|
|
11
11
|
export declare const functionRegistry: FunctionRegistry;
|
|
12
|
+
/** Formulas using one of these functions are never squished: they are always exported
|
|
13
|
+
* as a full formula string, and they don't become the base formula of the next cells. */
|
|
14
|
+
export declare const NonSquishableFunctionRegistry: Registry<string>;
|
package/dist/types/index.d.ts
CHANGED
|
@@ -219,6 +219,7 @@ export declare const registries: {
|
|
|
219
219
|
getKeys(): string[];
|
|
220
220
|
remove(key: string): void;
|
|
221
221
|
};
|
|
222
|
+
NonSquishableFunctionRegistry: import(".").Registry<string>;
|
|
222
223
|
};
|
|
223
224
|
/** Registries Population */
|
|
224
225
|
import "./clipboard_handlers/clipboard_handler_registrations";
|
|
@@ -424,7 +425,7 @@ export declare const stores: {
|
|
|
424
425
|
};
|
|
425
426
|
export { getCaretDownSvg, getCaretUpSvg } from "./components/icons/icons";
|
|
426
427
|
export { createAutocompleteArgumentsProvider } from "./functions/autocomplete_arguments_provider";
|
|
427
|
-
export type { FunctionRegistry } from "./functions/function_registry";
|
|
428
|
+
export type { FunctionRegistry, NonSquishableFunctionRegistry, } from "./functions/function_registry";
|
|
428
429
|
export { categories } from "./functions/function_registry_population";
|
|
429
430
|
export type { StoreConstructor, StoreParams } from "./types/store_engine";
|
|
430
431
|
export declare function addFunction(functionName: string, functionDescription: AddFunctionDescription): {
|
|
@@ -47,7 +47,8 @@ export declare class Squisher {
|
|
|
47
47
|
* The result of this method is:
|
|
48
48
|
* - if the cell is not a formula, returns the content as is and resets the base formula
|
|
49
49
|
* - if the cell is a formula:
|
|
50
|
-
* - if there is no previous formula, or the normalized formula is different from the previous one
|
|
50
|
+
* - if there is no previous formula, or the normalized formula is different from the previous one or it contains blacklisted functions (see NonSquishableFunctionRegistry),
|
|
51
|
+
* resets the base formula to this one and returns the full formula string
|
|
51
52
|
* - else, compares the literal values and range dependencies to the previous formula, and for each parameter:
|
|
52
53
|
* - for numbers: returns a relative change (+N or -N) if possible, else the full number or "=" if unchanged
|
|
53
54
|
* - for strings: returns the full string if changed, else "="
|