@worksheet-js/formula 1.0.0 → 1.0.2
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/README.md +1 -1
- package/dist/index.d.mts +5 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/index.d.mts
CHANGED
|
@@ -216,6 +216,11 @@ declare class FormulaEngine {
|
|
|
216
216
|
* Re-evaluates all affected cells and notifies the host provider.
|
|
217
217
|
*/
|
|
218
218
|
private _invalidateCascade;
|
|
219
|
+
/**
|
|
220
|
+
* Backgrounded re-computation loop.
|
|
221
|
+
* Yields to the main thread periodically to prevent blocking during massive cascades.
|
|
222
|
+
*/
|
|
223
|
+
private _runProactiveCompute;
|
|
219
224
|
}
|
|
220
225
|
|
|
221
226
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -216,6 +216,11 @@ declare class FormulaEngine {
|
|
|
216
216
|
* Re-evaluates all affected cells and notifies the host provider.
|
|
217
217
|
*/
|
|
218
218
|
private _invalidateCascade;
|
|
219
|
+
/**
|
|
220
|
+
* Backgrounded re-computation loop.
|
|
221
|
+
* Yields to the main thread periodically to prevent blocking during massive cascades.
|
|
222
|
+
*/
|
|
223
|
+
private _runProactiveCompute;
|
|
219
224
|
}
|
|
220
225
|
|
|
221
226
|
/**
|