@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.
- package/dist/change-order.js +11 -0
- package/dist/change-order.js.map +1 -1
- package/dist/initial-sheet-load.js +3 -6
- package/dist/initial-sheet-load.js.map +1 -1
- package/dist/tracked-cell-index-changes.d.ts +12 -0
- package/dist/tracked-cell-index-changes.js +211 -0
- package/dist/tracked-cell-index-changes.js.map +1 -0
- package/dist/tracked-engine-event-refs.d.ts +40 -1
- package/dist/tracked-engine-event-refs.js +10 -3
- package/dist/tracked-engine-event-refs.js.map +1 -1
- package/dist/work-paper-runtime.d.ts +6 -2
- package/dist/work-paper-runtime.js +248 -77
- package/dist/work-paper-runtime.js.map +1 -1
- package/dist/work-paper-types.d.ts +2 -0
- package/package.json +4 -4
|
@@ -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.
|
|
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.
|
|
45
|
-
"@bilig/formula": "0.
|
|
46
|
-
"@bilig/protocol": "0.
|
|
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"
|