@praxisui/list 9.0.10 → 9.0.12

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/package.json CHANGED
@@ -1,19 +1,19 @@
1
1
  {
2
2
  "name": "@praxisui/list",
3
- "version": "9.0.10",
3
+ "version": "9.0.12",
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.10",
9
+ "@praxisui/dynamic-fields": "^9.0.12",
10
10
  "rxjs": ">=7 <9",
11
11
  "@angular/forms": "^21.0.0",
12
12
  "@angular/router": "^21.0.0",
13
- "@praxisui/ai": "^9.0.10",
14
- "@praxisui/core": "^9.0.10",
15
- "@praxisui/rich-content": "^9.0.10",
16
- "@praxisui/settings-panel": "^9.0.10"
13
+ "@praxisui/ai": "^9.0.12",
14
+ "@praxisui/core": "^9.0.12",
15
+ "@praxisui/rich-content": "^9.0.12",
16
+ "@praxisui/settings-panel": "^9.0.12"
17
17
  },
18
18
  "dependencies": {
19
19
  "tslib": "^2.3.0",
@@ -192,19 +192,21 @@ Este arquivo foi adaptado para o padrao canonico atual sem remover conteudo tecn
192
192
  | `ASYNC_CONFIG_STORAGE` | bidirectional | `loadConfig/saveConfig` | fail-open | Persistência de configuração por `listId`/instância. |
193
193
  | `SettingsPanelService` | bidirectional | `open(...).applied$/saved$` | fail-open | Canal de edição runtime para `PraxisListConfigEditor`. |
194
194
  | `GlobalActionService` | outbound action | `executeRef(globalAction, context)` | fail-soft | Opcional; ausência gera warning e segue fluxo local. |
195
+ | `ResourceRecordOpenService` | outbound query | `resolve(reference, record)` | fail-closed | Resolvido sob demanda apenas para `actions[].recordOpen`. |
195
196
  | `GLOBAL_DIALOG_SERVICE` | bidirectional | confirmação de ação | fail-open | Opcional; sem serviço, ação segue sem modal central. |
196
197
  | `PRAXIS_COLLECTION_EXPORT_PROVIDER` | outbound export | `exportCollection(request)` | fail-fast | Necessário para escopos remotos `filtered/all` e formatos avançados. |
197
198
 
198
199
  ### Host/runtime dependencies
199
200
 
200
- | Dependency | Required | Environment | Purpose | Notes |
201
- | ---------------------- | -------- | -------------------- | -------------------- | ----------------------------------------------------------------- |
202
- | `ListDataService` | Yes | browser/dev/prod/ssr | fluxo de dados | Stream de itens, seção, loading e paginação. |
203
- | `ListSkinService` | Yes | browser/dev/prod | skin runtime | Gera classes/estilos sanitizados por instância. |
204
- | `ASYNC_CONFIG_STORAGE` | Yes | browser/dev/prod | persistência | Salva e restaura config de lista. |
205
- | `SettingsPanelService` | Yes | browser/dev/prod | editor runtime | Abre editor de configuração com preview/apply/save. |
206
- | `GenericCrudService` | Optional | browser/dev/prod | inferência de schema | Usado para inferência de templating quando `resourcePath` existe. |
207
- | `ComponentKeyService` | Yes | browser/dev/prod/ssr | chave de escopo | Determina namespace de persistência e isolamento. |
201
+ | Dependency | Required | Environment | Purpose | Notes |
202
+ | ---------------------- | ----------- | -------------------- | -------------------- | ------------------------------------------------------------------------------------- |
203
+ | `ListDataService` | Yes | browser/dev/prod/ssr | fluxo de dados | Stream de itens, seção, loading e paginação. |
204
+ | `ListSkinService` | Yes | browser/dev/prod | skin runtime | Gera classes/estilos sanitizados por instância. |
205
+ | `ASYNC_CONFIG_STORAGE` | Yes | browser/dev/prod | persistência | Salva e restaura config de lista. |
206
+ | `SettingsPanelService` | Yes | browser/dev/prod | editor runtime | Abre editor de configuração com preview/apply/save. |
207
+ | `GenericCrudService` | Optional | browser/dev/prod | inferência de schema | Usado para inferência de templating quando `resourcePath` existe. |
208
+ | `API_URL` | Conditional | browser/dev/prod | discovery governado | Exigido somente ao executar `actions[].recordOpen`; listas locais renderizam sem ele. |
209
+ | `ComponentKeyService` | Yes | browser/dev/prod/ssr | chave de escopo | Determina namespace de persistência e isolamento. |
208
210
 
209
211
  ## Coverage matrix
210
212
 
@@ -534,7 +534,6 @@ declare class PraxisList implements OnInit, OnChanges, AfterViewInit, OnDestroy
534
534
  private readonly jsonLogic;
535
535
  private readonly i18n;
536
536
  private readonly collectionExport;
537
- private readonly recordOpenResolver;
538
537
  private readonly paginatorIntl;
539
538
  private readonly snackBar;
540
539
  private readonly aiApi;
@@ -691,6 +690,7 @@ declare class PraxisList implements OnInit, OnChanges, AfterViewInit, OnDestroy
691
690
  isResourceConnectionMissing(): boolean;
692
691
  onActionClick(ev: MouseEvent, actionId: string, item: any, index: number): Promise<void>;
693
692
  private executeRecordOpenAction;
693
+ private resolveRecordOpenService;
694
694
  private reportRecordOpenFailure;
695
695
  private resolveActionPayload;
696
696
  private resolveTemplate;