@praxisui/page-builder 9.0.0-beta.20 → 9.0.0-beta.22
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.
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": "1.0.0",
|
|
3
|
-
"generatedAt": "2026-06-
|
|
3
|
+
"generatedAt": "2026-06-26T01:13:35.730Z",
|
|
4
4
|
"packageName": "@praxisui/page-builder",
|
|
5
|
-
"packageVersion": "9.0.0-beta.
|
|
5
|
+
"packageVersion": "9.0.0-beta.22",
|
|
6
6
|
"sourceRegistry": "praxis-component-registry-ingestion",
|
|
7
7
|
"sourceRegistryVersion": "1.0.0",
|
|
8
8
|
"componentCount": 1,
|
|
@@ -31,7 +31,7 @@ import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
|
|
|
31
31
|
import * as i7 from '@angular/material/tabs';
|
|
32
32
|
import { MatTabsModule } from '@angular/material/tabs';
|
|
33
33
|
import { HttpClient, HttpHeaders } from '@angular/common/http';
|
|
34
|
-
import { AgenticAuthoringTurnClientService, toPraxisAssistantConversationMessages, PraxisAssistantTurnOrchestratorService, PraxisAssistantSessionRegistryService, createPraxisAssistantViewportLayout, PraxisAiAssistantShellComponent } from '@praxisui/ai';
|
|
34
|
+
import { AgenticAuthoringTurnClientService, withAuthoringScopePolicyContextHints, toPraxisAssistantConversationMessages, PraxisAssistantTurnOrchestratorService, PraxisAssistantSessionRegistryService, createPraxisAssistantViewportLayout, PraxisAiAssistantShellComponent } from '@praxisui/ai';
|
|
35
35
|
|
|
36
36
|
const PLACEHOLDER = 1;
|
|
37
37
|
|
|
@@ -18901,12 +18901,17 @@ class PageBuilderAgenticAuthoringTurnFlow {
|
|
|
18901
18901
|
const base = this.toJsonObject(request.action?.contextHints)
|
|
18902
18902
|
?? this.toJsonObject(request.contextHints);
|
|
18903
18903
|
const normalizedBase = this.normalizeAmbientDomainCatalogContextHints(base);
|
|
18904
|
+
const scopedBase = withAuthoringScopePolicyContextHints(normalizedBase, {
|
|
18905
|
+
componentId: this.context.targetComponentId,
|
|
18906
|
+
componentType: 'page-builder',
|
|
18907
|
+
componentLabel: 'page builder',
|
|
18908
|
+
});
|
|
18904
18909
|
const includeLlmDiagnostics = this.context.includeLlmDiagnostics?.() === true;
|
|
18905
18910
|
if (!includeLlmDiagnostics) {
|
|
18906
|
-
return
|
|
18911
|
+
return scopedBase;
|
|
18907
18912
|
}
|
|
18908
18913
|
return {
|
|
18909
|
-
...
|
|
18914
|
+
...scopedBase,
|
|
18910
18915
|
includeLlmDiagnostics: true,
|
|
18911
18916
|
};
|
|
18912
18917
|
}
|
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.22",
|
|
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.22",
|
|
12
|
+
"@praxisui/core": "^9.0.0-beta.22",
|
|
13
|
+
"@praxisui/settings-panel": "^9.0.0-beta.22",
|
|
14
14
|
"rxjs": "~7.8.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|