@praxisui/page-builder 9.0.0-beta.13 → 9.0.0-beta.15
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 +14 -0
- package/ai/component-registry.json +2 -2
- package/fesm2022/praxisui-page-builder.mjs +648 -36
- package/package.json +4 -4
- package/types/praxisui-page-builder.d.ts +28 -0
package/README.md
CHANGED
|
@@ -115,6 +115,20 @@ const page: WidgetPageDefinition = {
|
|
|
115
115
|
|
|
116
116
|
Use the same canonical `composition.links` contract for widget-to-widget links, nested component ports through `nestedPath`, and global actions through `to.kind = "global-action"`.
|
|
117
117
|
|
|
118
|
+
## Connection Editor
|
|
119
|
+
|
|
120
|
+
The visual connection editor is an authoring surface over the saved `composition.links` document. It does not create a parallel graph DSL.
|
|
121
|
+
|
|
122
|
+
Current capabilities include:
|
|
123
|
+
|
|
124
|
+
- inspecting persisted links, endpoints, intent, condition, transform and policy;
|
|
125
|
+
- highlighting widget, state and global-action flows in the same graph;
|
|
126
|
+
- creating assisted links only between known endpoints;
|
|
127
|
+
- suggesting canonical table row selection to form detail wiring with a `payload.row.id` projection when the existing ports support that flow;
|
|
128
|
+
- explaining nested component ports by showing the `nestedPath` while preserving the top-level widget as the canonical endpoint owner.
|
|
129
|
+
|
|
130
|
+
For nested components, keep `ref.widget` pointed at the top-level host widget and describe the internal target with `ref.nestedPath`. The editor should make that ownership visible instead of flattening child widgets into a second page-level widget namespace.
|
|
131
|
+
|
|
118
132
|
## Settings Panel Bridge
|
|
119
133
|
|
|
120
134
|
Register the Settings Panel bridge when the host must open page, shell, and component config editors in a side panel.
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": "1.0.0",
|
|
3
|
-
"generatedAt": "2026-06-
|
|
3
|
+
"generatedAt": "2026-06-24T11:17:27.420Z",
|
|
4
4
|
"packageName": "@praxisui/page-builder",
|
|
5
|
-
"packageVersion": "9.0.0-beta.
|
|
5
|
+
"packageVersion": "9.0.0-beta.15",
|
|
6
6
|
"sourceRegistry": "praxis-component-registry-ingestion",
|
|
7
7
|
"sourceRegistryVersion": "1.0.0",
|
|
8
8
|
"componentCount": 1,
|