@odoo/o-spreadsheet 17.4.2 → 17.4.4
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.js +217 -195
- package/dist/o-spreadsheet.d.ts +3 -1
- package/dist/o-spreadsheet.esm.js +217 -195
- package/dist/o-spreadsheet.iife.js +217 -195
- package/dist/o-spreadsheet.iife.min.js +361 -351
- package/dist/o_spreadsheet.xml +10 -7
- package/package.json +2 -2
package/dist/o-spreadsheet.d.ts
CHANGED
|
@@ -3976,7 +3976,7 @@ declare class UIPlugin<State = any> extends BasePlugin<State, Command> {
|
|
|
3976
3976
|
}
|
|
3977
3977
|
|
|
3978
3978
|
declare class EvaluationPlugin extends UIPlugin {
|
|
3979
|
-
static getters: readonly ["evaluateFormula", "getCorrespondingFormulaCell", "getRangeFormattedValues", "getRangeValues", "getRangeFormats", "getEvaluatedCell", "getEvaluatedCells", "getEvaluatedCellsInZone", "getEvaluatedCellsPositions", "getSpreadZone", "getArrayFormulaSpreadingOn", "isEmpty"];
|
|
3979
|
+
static getters: readonly ["evaluateFormula", "evaluateFormulaResult", "getCorrespondingFormulaCell", "getRangeFormattedValues", "getRangeValues", "getRangeFormats", "getEvaluatedCell", "getEvaluatedCells", "getEvaluatedCellsInZone", "getEvaluatedCellsPositions", "getSpreadZone", "getArrayFormulaSpreadingOn", "isEmpty"];
|
|
3980
3980
|
private shouldRebuildDependenciesGraph;
|
|
3981
3981
|
private evaluator;
|
|
3982
3982
|
private positionsToUpdate;
|
|
@@ -3985,6 +3985,7 @@ declare class EvaluationPlugin extends UIPlugin {
|
|
|
3985
3985
|
handle(cmd: CoreViewCommand): void;
|
|
3986
3986
|
finalize(): void;
|
|
3987
3987
|
evaluateFormula(sheetId: UID, formulaString: string): CellValue | Matrix<CellValue>;
|
|
3988
|
+
evaluateFormulaResult(sheetId: UID, formulaString: string): Matrix<FunctionResultObject> | FunctionResultObject;
|
|
3988
3989
|
/**
|
|
3989
3990
|
* Return the value of each cell in the range as they are displayed in the grid.
|
|
3990
3991
|
*/
|
|
@@ -7790,6 +7791,7 @@ declare class Composer extends Component<ComposerProps, SpreadsheetChildEnv> {
|
|
|
7790
7791
|
autoCompleteState: Store<AutoCompleteStore>;
|
|
7791
7792
|
functionDescriptionState: FunctionDescriptionState;
|
|
7792
7793
|
private compositionActive;
|
|
7794
|
+
private spreadsheetRect;
|
|
7793
7795
|
get assistantStyle(): string;
|
|
7794
7796
|
shouldProcessInputEvents: boolean;
|
|
7795
7797
|
tokens: EnrichedToken[];
|