@praxisui/page-builder 9.0.48 → 9.0.49

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-08-30T23:30:05.791Z",
3
+ "generatedAt": "2026-08-31T13:56:05.891Z",
4
4
  "packageName": "@praxisui/page-builder",
5
- "packageVersion": "9.0.48",
5
+ "packageVersion": "9.0.49",
6
6
  "sourceRegistry": "praxis-component-registry-ingestion",
7
7
  "sourceRegistryVersion": "1.0.0",
8
8
  "componentCount": 1,
@@ -23247,9 +23247,12 @@ class DynamicPageBuilderComponent {
23247
23247
  try {
23248
23248
  const controller = this.ensureAgenticTurnController();
23249
23249
  const editingMessageId = this.agenticAuthoringEditingMessageId();
23250
+ const activeSemanticDecision = this.agenticAuthoringSemanticDecision();
23250
23251
  await this.consumeAgenticTurn(editingMessageId
23251
23252
  ? controller.submitEditedMessage(editingMessageId, prompt)
23252
- : controller.submitPrompt(prompt), turnRunId);
23253
+ : activeSemanticDecision
23254
+ ? controller.submitPrompt(prompt, { kind: 'submit', activeSemanticDecision })
23255
+ : controller.submitPrompt(prompt), turnRunId);
23253
23256
  this.agenticAuthoringEditingMessageId.set(null);
23254
23257
  this.agenticAuthoringPrompt.set('');
23255
23258
  }
@@ -23718,7 +23721,8 @@ class DynamicPageBuilderComponent {
23718
23721
  this.agenticAuthoringPreviewResult.set(null);
23719
23722
  this.agenticAuthoringMaterializationPending.set(false);
23720
23723
  this.clearAgenticLocalPreviewHistory();
23721
- this.agenticAuthoringSemanticDecision.set(null);
23724
+ // The applied decision remains the active semantic lineage for the next authoring turn.
23725
+ // A later terminal preview replaces it; explicit cancellation/reset clears it.
23722
23726
  this.agenticAuthoringTurnResultRef.set(null);
23723
23727
  this.agenticAuthoringApplyTarget.set(null);
23724
23728
  this.agenticAuthoringCanApply.set(false);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@praxisui/page-builder",
3
- "version": "9.0.48",
3
+ "version": "9.0.49",
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.48",
12
- "@praxisui/core": "^9.0.48",
13
- "@praxisui/settings-panel": "^9.0.48",
11
+ "@praxisui/ai": "^9.0.49",
12
+ "@praxisui/core": "^9.0.49",
13
+ "@praxisui/settings-panel": "^9.0.49",
14
14
  "rxjs": "~7.8.0"
15
15
  },
16
16
  "dependencies": {