@praxisui/page-builder 9.0.0-beta.69 → 9.0.0-beta.70
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-07-
|
|
3
|
+
"generatedAt": "2026-07-10T23:38:40.443Z",
|
|
4
4
|
"packageName": "@praxisui/page-builder",
|
|
5
|
-
"packageVersion": "9.0.0-beta.
|
|
5
|
+
"packageVersion": "9.0.0-beta.70",
|
|
6
6
|
"sourceRegistry": "praxis-component-registry-ingestion",
|
|
7
7
|
"sourceRegistryVersion": "1.0.0",
|
|
8
8
|
"componentCount": 1,
|
|
@@ -15150,7 +15150,9 @@ class PageBuilderAgenticAuthoringTurnFlow {
|
|
|
15150
15150
|
state: 'review',
|
|
15151
15151
|
phase: 'review',
|
|
15152
15152
|
assistantMessage: status,
|
|
15153
|
-
quickReplies:
|
|
15153
|
+
quickReplies: reviewCanApply
|
|
15154
|
+
? this.reviewQuickReplies([], intentResolution, preview)
|
|
15155
|
+
: this.governedBlockedReviewQuickReplies([], intentResolution, preview),
|
|
15154
15156
|
canApply: reviewCanApply,
|
|
15155
15157
|
statusText: this.reviewStatusText(status, reviewCanApply),
|
|
15156
15158
|
errorText: '',
|
|
@@ -16454,7 +16456,9 @@ class PageBuilderAgenticAuthoringTurnFlow {
|
|
|
16454
16456
|
state: 'review',
|
|
16455
16457
|
phase: 'review',
|
|
16456
16458
|
assistantMessage: status,
|
|
16457
|
-
quickReplies:
|
|
16459
|
+
quickReplies: reviewCanApply
|
|
16460
|
+
? this.reviewQuickReplies(quickReplies, intentResolution, preview)
|
|
16461
|
+
: this.governedBlockedReviewQuickReplies(quickReplies, intentResolution, preview),
|
|
16458
16462
|
canApply: reviewCanApply,
|
|
16459
16463
|
statusText: this.reviewStatusText(status, reviewCanApply),
|
|
16460
16464
|
errorText: '',
|
|
@@ -16530,7 +16534,9 @@ class PageBuilderAgenticAuthoringTurnFlow {
|
|
|
16530
16534
|
state: 'review',
|
|
16531
16535
|
phase: 'review',
|
|
16532
16536
|
assistantMessage: status,
|
|
16533
|
-
quickReplies:
|
|
16537
|
+
quickReplies: reviewCanApply
|
|
16538
|
+
? this.reviewQuickReplies([], intentResolution, preview)
|
|
16539
|
+
: this.governedBlockedReviewQuickReplies([], intentResolution, preview),
|
|
16534
16540
|
canApply: reviewCanApply,
|
|
16535
16541
|
statusText: this.reviewStatusText(status, reviewCanApply),
|
|
16536
16542
|
errorText: '',
|
|
@@ -17479,7 +17485,7 @@ class PageBuilderAgenticAuthoringTurnFlow {
|
|
|
17479
17485
|
const dashboardQuality = this.toDashboardQualityRepairContext(diagnostics);
|
|
17480
17486
|
return this.dashboardQualityQuickReply({
|
|
17481
17487
|
id: 'dashboard-quality-refine',
|
|
17482
|
-
label: this.context.tx('agentic.dashboardQuality.quickReply.refine', '
|
|
17488
|
+
label: this.context.tx('agentic.dashboardQuality.quickReply.refine', 'Pré-visualizar ajuste'),
|
|
17483
17489
|
prompt: this.context.tx('agentic.dashboardQuality.prompt.refine', 'Ajuste o painel para resolver os pontos pendentes e manter apenas decisões compatíveis com os dados confirmados.'),
|
|
17484
17490
|
icon: 'auto_fix_high',
|
|
17485
17491
|
changeKind: 'refine_dashboard_quality',
|
|
@@ -21991,9 +21997,10 @@ class DynamicPageBuilderComponent {
|
|
|
21991
21997
|
return { ...contextHints };
|
|
21992
21998
|
}
|
|
21993
21999
|
resolveGovernedDomainContextSummary(llmDiagnostics) {
|
|
21994
|
-
const
|
|
22000
|
+
const effectiveDiagnostics = this.toRecord(llmDiagnostics?.['llmDiagnostics']) ?? llmDiagnostics;
|
|
22001
|
+
const request = this.toRecord(effectiveDiagnostics?.['request']);
|
|
21995
22002
|
const requestContextBundle = this.toRecord(request?.['contextBundle']);
|
|
21996
|
-
const rootContextBundle = this.toRecord(
|
|
22003
|
+
const rootContextBundle = this.toRecord(effectiveDiagnostics?.['contextBundle']);
|
|
21997
22004
|
const governedDomainContext = this.toRecord(requestContextBundle?.['governedDomainContext'] ?? rootContextBundle?.['governedDomainContext']);
|
|
21998
22005
|
if (!governedDomainContext) {
|
|
21999
22006
|
return null;
|
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.70",
|
|
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.70",
|
|
12
|
+
"@praxisui/core": "^9.0.0-beta.70",
|
|
13
|
+
"@praxisui/settings-panel": "^9.0.0-beta.70",
|
|
14
14
|
"rxjs": "~7.8.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|