mirror of
https://github.com/docmost/docmost.git
synced 2026-07-24 19:12:52 +10:00
feat(base): add formula editor popover with live parse and palette
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
// Client-side public surface: parse, typecheck, cycle-detect, pretty-print.
|
||||
// Does NOT export eval or the function registry.
|
||||
// Does NOT export eval. Registry is exposed (metadata + function shape) so the
|
||||
// client can drive typechecking and the function palette in the formula editor.
|
||||
import "./functions/index";
|
||||
export * from "./ast";
|
||||
export * from "./types";
|
||||
export * from "./error";
|
||||
@@ -8,5 +10,6 @@ export * from "./parser";
|
||||
export * from "./resolver";
|
||||
export * from "./typecheck";
|
||||
export * from "./format";
|
||||
export { registry, register } from "./functions/registry";
|
||||
export type { FormulaFn } from "./functions/registry";
|
||||
export * from "./graph";
|
||||
|
||||
Reference in New Issue
Block a user