@praxisui/list 9.0.0-beta.20 → 9.0.0-beta.21

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-24T23:12:14.260Z",
3
+ "generatedAt": "2026-06-25T18:12:49.520Z",
4
4
  "packageName": "@praxisui/list",
5
- "packageVersion": "9.0.0-beta.20",
5
+ "packageVersion": "9.0.0-beta.21",
6
6
  "sourceRegistry": "praxis-component-registry-ingestion",
7
7
  "sourceRegistryVersion": "1.0.0",
8
8
  "componentCount": 1,
@@ -47,7 +47,7 @@ import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
47
47
  import { produce, setAutoFreeze } from 'immer';
48
48
  import * as i3$2 from '@angular/material/card';
49
49
  import { MatCardModule } from '@angular/material/card';
50
- import { BaseAiAdapter, shouldRoutePromptToGovernedDecision, createPraxisAssistantViewportLayout, AiBackendApiService, PraxisAssistantSessionRegistryService, PraxisAssistantTurnOrchestratorService, PraxisAiAssistantShellComponent } from '@praxisui/ai';
50
+ import { BaseAiAdapter, withAuthoringScopePolicy, shouldRoutePromptToGovernedDecision, createPraxisAssistantViewportLayout, AiBackendApiService, PraxisAssistantSessionRegistryService, PraxisAssistantTurnOrchestratorService, PraxisAiAssistantShellComponent } from '@praxisui/ai';
51
51
 
52
52
  /**
53
53
  * Very small template evaluator that supports `${item.foo}` expressions.
@@ -10826,7 +10826,7 @@ class ListAgenticAuthoringTurnFlow {
10826
10826
  if (this.shouldRouteToGovernedDecision(prompt, contextHints)) {
10827
10827
  return this.toGovernedDecisionHandoff(prompt, request);
10828
10828
  }
10829
- const patchRequest = {
10829
+ const patchRequest = withAuthoringScopePolicy({
10830
10830
  componentId,
10831
10831
  componentType,
10832
10832
  userPrompt: prompt,
@@ -10843,7 +10843,11 @@ class ListAgenticAuthoringTurnFlow {
10843
10843
  ...(runtimeState ? { runtimeState } : {}),
10844
10844
  ...(schemaFields?.length ? { schemaFields } : {}),
10845
10845
  ...(contextHints ? { contextHints } : {}),
10846
- };
10846
+ }, {
10847
+ componentId,
10848
+ componentType,
10849
+ componentLabel: this.adapter.componentName || 'lista',
10850
+ });
10847
10851
  const response = await firstValueFrom(this.aiApi.getPatch(patchRequest));
10848
10852
  let compiledResponse = this.compileAdapterResponse(response);
10849
10853
  const completenessFailure = this.localExampleCompletenessFailure(compiledResponse, prompt, currentState, dataProfile);
package/package.json CHANGED
@@ -1,19 +1,19 @@
1
1
  {
2
2
  "name": "@praxisui/list",
3
- "version": "9.0.0-beta.20",
3
+ "version": "9.0.0-beta.21",
4
4
  "description": "List components and helpers for Praxis UI.",
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^21.0.0",
7
7
  "@angular/core": "^21.0.0",
8
8
  "@angular/material": "^21.0.0",
9
- "@praxisui/dynamic-fields": "^9.0.0-beta.20",
9
+ "@praxisui/dynamic-fields": "^9.0.0-beta.21",
10
10
  "rxjs": ">=7 <9",
11
11
  "@angular/forms": "^21.0.0",
12
12
  "@angular/router": "^21.0.0",
13
- "@praxisui/ai": "^9.0.0-beta.20",
14
- "@praxisui/core": "^9.0.0-beta.20",
15
- "@praxisui/rich-content": "^9.0.0-beta.20",
16
- "@praxisui/settings-panel": "^9.0.0-beta.20"
13
+ "@praxisui/ai": "^9.0.0-beta.21",
14
+ "@praxisui/core": "^9.0.0-beta.21",
15
+ "@praxisui/rich-content": "^9.0.0-beta.21",
16
+ "@praxisui/settings-panel": "^9.0.0-beta.21"
17
17
  },
18
18
  "dependencies": {
19
19
  "tslib": "^2.3.0",