@worksheet-js/formula 1.0.0 → 1.0.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/README.md CHANGED
@@ -31,7 +31,7 @@ The engine builds a directed acyclic graph (DAG) of cell relationships. When a c
31
31
  ## 📦 Installation
32
32
 
33
33
  ```bash
34
- pnpm add @worksheet-js/formula
34
+ npm install @worksheet-js/formula
35
35
  ```
36
36
 
37
37
  ## 🚀 Usage
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
  /**