@univerjs/engine-formula 0.15.0 → 0.15.1
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/lib/cjs/index.js +1 -1
- package/lib/es/facade.js +2 -1
- package/lib/es/index.js +4438 -4440
- package/lib/facade.js +2 -1
- package/lib/index.js +4438 -4440
- package/lib/types/engine/reference-object/base-reference-object.d.ts +2 -12
- package/lib/types/engine/reference-object/multi-area-reference-object.d.ts +2 -12
- package/lib/types/facade/f-formula.d.ts +2 -1
- package/lib/types/index.d.ts +1 -0
- package/lib/umd/index.js +1 -1
- package/package.json +5 -5
package/lib/facade.js
CHANGED
|
@@ -123,6 +123,7 @@ let m = class extends C {
|
|
|
123
123
|
});
|
|
124
124
|
}
|
|
125
125
|
/**
|
|
126
|
+
* @deprecated Use `onCalculationEnd` instead.
|
|
126
127
|
* Wait for computing in the Univer instance to complete. Please note that this does not only include formula calculation,
|
|
127
128
|
* but also other computing tasks, e.g. pivot table calculation.
|
|
128
129
|
* @param {number} [timeout] The maximum time to wait for the computing to complete, in milliseconds. The default
|
|
@@ -146,7 +147,7 @@ let m = class extends C {
|
|
|
146
147
|
));
|
|
147
148
|
}
|
|
148
149
|
/**
|
|
149
|
-
*
|
|
150
|
+
* Waits for the formula calculation to complete.
|
|
150
151
|
* @returns {Promise<void>} This method returns a promise that resolves when the calculation is complete.
|
|
151
152
|
*/
|
|
152
153
|
onCalculationEnd() {
|