@particle-academy/fancy-flow 0.66.0 → 0.66.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/dist/chunk-27RZJAE2.js +2586 -0
- package/dist/chunk-27RZJAE2.js.map +1 -0
- package/dist/{chunk-FNYLKSFJ.js → chunk-2QTEELJE.js} +4 -3
- package/dist/chunk-2QTEELJE.js.map +1 -0
- package/dist/{chunk-MTONBM53.js → chunk-6AYC3BWI.js} +4 -4
- package/dist/{chunk-MTONBM53.js.map → chunk-6AYC3BWI.js.map} +1 -1
- package/dist/{chunk-IEYCNFXZ.js → chunk-6TH646CS.js} +127 -5
- package/dist/chunk-6TH646CS.js.map +1 -0
- package/dist/{chunk-UCCTXJXL.js → chunk-BUNFPBTF.js} +5 -4
- package/dist/chunk-BUNFPBTF.js.map +1 -0
- package/dist/{chunk-B7HKJJVV.js → chunk-FV3D366L.js} +3 -3
- package/dist/{chunk-B7HKJJVV.js.map → chunk-FV3D366L.js.map} +1 -1
- package/dist/{chunk-HQGOFGAL.js → chunk-OWENS2H5.js} +64 -2754
- package/dist/chunk-OWENS2H5.js.map +1 -0
- package/dist/{chunk-PNHZHEWE.js → chunk-RE3XNVSB.js} +3 -3
- package/dist/{chunk-PNHZHEWE.js.map → chunk-RE3XNVSB.js.map} +1 -1
- package/dist/durable.cjs +153 -9213
- package/dist/durable.cjs.map +1 -1
- package/dist/durable.js +1 -2
- package/dist/durable.js.map +1 -1
- package/dist/engine.cjs +103 -9165
- package/dist/engine.cjs.map +1 -1
- package/dist/engine.js +4 -5
- package/dist/engine.js.map +1 -1
- package/dist/index.cjs +11135 -11121
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +15 -13
- package/dist/index.js.map +1 -1
- package/dist/registry/index.d.cts +15 -3
- package/dist/registry/index.d.ts +15 -3
- package/dist/registry.cjs +11166 -11153
- package/dist/registry.cjs.map +1 -1
- package/dist/registry.js +4 -3
- package/dist/runtime.cjs +10772 -10924
- package/dist/runtime.cjs.map +1 -1
- package/dist/runtime.js +4 -4
- package/dist/schema.cjs +85 -9147
- package/dist/schema.cjs.map +1 -1
- package/dist/schema.js +3 -4
- package/dist/screens.cjs +7 -52
- package/dist/screens.cjs.map +1 -1
- package/dist/screens.js +6 -5
- package/dist/screens.js.map +1 -1
- package/dist/ux.cjs +89 -9147
- package/dist/ux.cjs.map +1 -1
- package/dist/ux.js +1 -2
- package/dist/ux.js.map +1 -1
- package/package.json +1 -1
- package/dist/chunk-FNYLKSFJ.js.map +0 -1
- package/dist/chunk-HQGOFGAL.js.map +0 -1
- package/dist/chunk-IEYCNFXZ.js.map +0 -1
- package/dist/chunk-UCCTXJXL.js.map +0 -1
package/dist/screens.js
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
import { FlowViewer } from './chunk-
|
|
2
|
-
export { FlowViewer } from './chunk-
|
|
3
|
-
import './chunk-
|
|
4
|
-
import './chunk-UEOE6B52.js';
|
|
5
|
-
import './chunk-HQGOFGAL.js';
|
|
1
|
+
import { FlowViewer } from './chunk-BUNFPBTF.js';
|
|
2
|
+
export { FlowViewer } from './chunk-BUNFPBTF.js';
|
|
3
|
+
import './chunk-6TH646CS.js';
|
|
6
4
|
import './chunk-F5RPRB7A.js';
|
|
5
|
+
import './chunk-OWENS2H5.js';
|
|
6
|
+
import './chunk-UEOE6B52.js';
|
|
7
|
+
import './chunk-27RZJAE2.js';
|
|
7
8
|
import './chunk-2QXKDLGT.js';
|
|
8
9
|
import { registerSchemaComponents } from '@particle-academy/fancy-screens';
|
|
9
10
|
|
package/dist/screens.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/screens.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../src/screens.ts"],"names":[],"mappings":";;;;;;;;;;AAwBO,SAAS,kBAAA,GAA2B;AACzC,EAAA,wBAAA,CAAyB;AAAA,IACvB;AAAA,GACD,CAAA;AACH","file":"screens.js","sourcesContent":["// /screens subpath — the ONLY module that imports fancy-screens (optional\n// peer). Keeps the base `.` import graph free of it, so an app that never\n// touches fancy-screens never pays for it.\nimport { registerSchemaComponents } from \"@particle-academy/fancy-screens\";\nimport type { ComponentType } from \"react\";\nimport { FlowViewer } from \"./components/FlowViewer\";\n\n/**\n * Register fancy-flow's components with fancy-screens, so an agent-emitted\n * `ScreenSchema` can place a workflow in a page:\n *\n * ```json\n * { \"type\": \"FlowViewer\", \"props\": { \"graph\": { \"nodes\": [], \"edges\": [] } } }\n * ```\n *\n * Call once at host startup.\n *\n * **Only the VIEWER is registered, deliberately.** A schema is JSON an agent\n * emits, and `FlowEditor` needs executors, run handlers and controlled state\n * that cannot be expressed as JSON props — registering it would let an agent\n * emit an editor that renders but does nothing, which is worse than not\n * offering it. The viewer is complete from props alone, which is exactly what\n * makes it schema-safe.\n */\nexport function registerFlowSchema(): void {\n registerSchemaComponents({\n FlowViewer: FlowViewer as unknown as ComponentType<Record<string, unknown>>,\n });\n}\n\nexport { FlowViewer } from \"./components/FlowViewer\";\nexport type { FlowViewerProps, FlowViewerClassNames, FlowNodeStatus } from \"./components/FlowViewer\";\n"]}
|