@praxisui/page-builder 9.0.0-beta.85 → 9.0.0-beta.88
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/ai/component-registry.json +560 -26
- package/fesm2022/praxisui-page-builder.mjs +312 -200
- package/package.json +4 -4
- package/types/praxisui-page-builder.d.ts +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/page-builder",
|
|
3
|
-
"version": "9.0.0-beta.
|
|
3
|
+
"version": "9.0.0-beta.88",
|
|
4
4
|
"description": "Page and widget builder utilities for Praxis UI (grid, dynamic widgets, editors).",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/common": "^21.0.0",
|
|
@@ -8,9 +8,9 @@
|
|
|
8
8
|
"@angular/forms": "^21.0.0",
|
|
9
9
|
"@angular/cdk": "^21.0.0",
|
|
10
10
|
"@angular/material": "^21.0.0",
|
|
11
|
-
"@praxisui/ai": "^9.0.0-beta.
|
|
12
|
-
"@praxisui/core": "^9.0.0-beta.
|
|
13
|
-
"@praxisui/settings-panel": "^9.0.0-beta.
|
|
11
|
+
"@praxisui/ai": "^9.0.0-beta.88",
|
|
12
|
+
"@praxisui/core": "^9.0.0-beta.88",
|
|
13
|
+
"@praxisui/settings-panel": "^9.0.0-beta.88",
|
|
14
14
|
"rxjs": "~7.8.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
@@ -1810,6 +1810,7 @@ declare class DynamicPageBuilderComponent implements OnChanges, OnDestroy {
|
|
|
1810
1810
|
readonly agenticAuthoringPanelLayout: _angular_core.WritableSignal<PraxisAssistantShellLayout>;
|
|
1811
1811
|
private previewMode;
|
|
1812
1812
|
private runtimePreviewPageCache?;
|
|
1813
|
+
private runtimeAuthoringPageCache?;
|
|
1813
1814
|
private agenticComponentCapabilities?;
|
|
1814
1815
|
private agenticComponentCapabilitiesPromise?;
|
|
1815
1816
|
private agenticTurnController?;
|
|
@@ -1999,6 +2000,7 @@ declare class DynamicPageBuilderComponent implements OnChanges, OnDestroy {
|
|
|
1999
2000
|
private applyAgenticPreviewLocally;
|
|
2000
2001
|
private enterPreviewMode;
|
|
2001
2002
|
private toPresentationRuntimePage;
|
|
2003
|
+
private toAuthoringRuntimePage;
|
|
2002
2004
|
private toPresentationRuntimeWidget;
|
|
2003
2005
|
private applyAgenticTurnState;
|
|
2004
2006
|
private primeSharedRuleHandoff;
|