@bilig/headless 0.1.101 → 0.2.0

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.
@@ -1,5 +1,6 @@
1
1
  import type { CellValue, LiteralInput, RecalcMetrics } from '@bilig/protocol';
2
2
  import type { EvaluationResult } from '@bilig/formula';
3
+ import type { EngineCounters } from '@bilig/core';
3
4
  export type RawCellContent = LiteralInput | string;
4
5
  export type WorkPaperContextValue = string | number | boolean | null | WorkPaperContextObject | readonly WorkPaperContextValue[];
5
6
  export interface WorkPaperContextObject {
@@ -215,6 +216,7 @@ export interface WorkPaperStats {
215
216
  evaluationSuspended: boolean;
216
217
  lastMetrics: RecalcMetrics;
217
218
  }
219
+ export type WorkPaperEngineCounters = EngineCounters;
218
220
  export interface WorkPaperGraphAdapter {
219
221
  getDependents(reference: WorkPaperAddressLike): WorkPaperDependencyRef[];
220
222
  getPrecedents(reference: WorkPaperAddressLike): WorkPaperDependencyRef[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bilig/headless",
3
- "version": "0.1.101",
3
+ "version": "0.2.0",
4
4
  "description": "WorkPaper spreadsheet workbook facade for bilig with HyperFormula-style workflows.",
5
5
  "keywords": [
6
6
  "bilig",
@@ -41,9 +41,9 @@
41
41
  "build": "rm -rf dist tsconfig.tsbuildinfo && tsc -p tsconfig.json"
42
42
  },
43
43
  "dependencies": {
44
- "@bilig/core": "0.1.101",
45
- "@bilig/formula": "0.1.101",
46
- "@bilig/protocol": "0.1.101"
44
+ "@bilig/core": "0.2.0",
45
+ "@bilig/formula": "0.2.0",
46
+ "@bilig/protocol": "0.2.0"
47
47
  },
48
48
  "engines": {
49
49
  "node": ">=24.0.0"