@praxisui/list 9.0.19 → 9.0.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.
package/package.json CHANGED
@@ -1,19 +1,19 @@
1
1
  {
2
2
  "name": "@praxisui/list",
3
- "version": "9.0.19",
3
+ "version": "9.0.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.19",
9
+ "@praxisui/dynamic-fields": "^9.0.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.19",
14
- "@praxisui/core": "^9.0.19",
15
- "@praxisui/rich-content": "^9.0.19",
16
- "@praxisui/settings-panel": "^9.0.19"
13
+ "@praxisui/ai": "^9.0.21",
14
+ "@praxisui/core": "^9.0.21",
15
+ "@praxisui/rich-content": "^9.0.21",
16
+ "@praxisui/settings-panel": "^9.0.21"
17
17
  },
18
18
  "dependencies": {
19
19
  "tslib": "^2.3.0",
@@ -128,9 +128,7 @@ Nenhum path legado suportado foi identificado nesta revisão baseada em evidênc
128
128
 
129
129
  ### Experimental paths
130
130
 
131
- | Path | Enablement (flag/guard) | Stability | Rollout notes | Notes |
132
- | ----------------------- | -------------------------------------- | --------- | ----------------------------------------------- | ---------------------------------------------------------------------------- |
133
- | `templating.features[]` | contrato de feature blocks em evolução | Partial | Cobrir testes de regressão quando ampliar tipos | Estrutura ativa, mas sem cobertura uniforme para todos os tipos de template. |
131
+ Nenhum path experimental permanece ativo nesta revisão. `templating.features[]` materializa o mesmo conjunto de `TemplateDef` dos slots principais, preservando também o formato legado `{ icon, expr, class, style }`.
134
132
 
135
133
  ## Overview
136
134
 
@@ -669,6 +667,12 @@ Tipo declarado sem renderer dedicado:
669
667
  | `expansion.sections[].document` | Active | `RichContentDocument` canonico para secoes `rich-content` |
670
668
  | `expansion.sections[].documentExpr` | Active | expr que resolve um `RichContentDocument` por item |
671
669
  | `expansion.sections[].emptyLabel` | Active | mensagem vazia por secao |
670
+ | `expansion.rendering.shell` | Active | variante visual `attached/detached/modal` |
671
+ | `expansion.rendering.columns` | Active | uma, duas ou tres colunas materializadas no grid |
672
+ | `expansion.rendering.gap` | Active | espacamento governado entre secoes |
673
+ | `expansion.rendering.padding` | Active | espacamento interno governado |
674
+ | `expansion.rendering.class` | Active | classe adicional no shell |
675
+ | `expansion.rendering.style` | Active | declaracoes CSS adicionais sanitizadas pelo binding Angular |
672
676
 
673
677
  Notas de UX/WCAG:
674
678
 
@@ -853,6 +857,7 @@ AI:
853
857
  | `templating.chipLabelMap` | Active | map label |
854
858
  | `templating.iconColorMap` | Active | map cor icon |
855
859
  | `templating.features` | Active | features row |
860
+ | `templating.features[].type` | Active | renderer tipado de `TemplateDef` |
856
861
  | `templating.features[].icon` | Active | feature icon |
857
862
  | `templating.features[].expr` | Active | feature expr |
858
863
  | `templating.features[].class` | Active | feature class |
@@ -870,6 +875,12 @@ AI:
870
875
  | `expansion.sections[].document` | Active | `RichContentDocument` para `rich-content` |
871
876
  | `expansion.sections[].documentExpr` | Active | expr que resolve `RichContentDocument` |
872
877
  | `expansion.sections[].emptyLabel` | Active | empty state da secao |
878
+ | `expansion.rendering.shell` | Active | attached/detached/modal |
879
+ | `expansion.rendering.columns` | Active | 1/2/3 colunas |
880
+ | `expansion.rendering.gap` | Active | gap entre secoes |
881
+ | `expansion.rendering.padding` | Active | padding do shell |
882
+ | `expansion.rendering.class` | Active | classe do shell |
883
+ | `expansion.rendering.style` | Active | estilo adicional |
873
884
  | `actions` | Partial | bloco de acoes |
874
885
  | `actions[].id` | Active | id |
875
886
  | `actions[].icon` | Active | icon |
@@ -620,6 +620,7 @@ declare class PraxisList implements OnInit, OnChanges, AfterViewInit, OnDestroy
620
620
  private cssVar;
621
621
  private sanitizeCssToken;
622
622
  featureLabel(item: any, expr?: string): string;
623
+ featureTemplateNode(item: any, feature: TemplatingFeatureDef | null | undefined): Record<string, any> | null;
623
624
  plainText(value: string | null | undefined): string | null;
624
625
  itemAriaLabel(item: any): string | null;
625
626
  private accessibleItemLabel;
@@ -800,6 +801,8 @@ declare class PraxisList implements OnInit, OnChanges, AfterViewInit, OnDestroy
800
801
  isExpanded(item: any, index: number): boolean;
801
802
  expandRegionId(item: any, index: number): string;
802
803
  expansionSections(item: any): ListExpansionSectionDef[];
804
+ expansionRenderingClasses(): string[];
805
+ expansionRenderingStyle(): string | null;
803
806
  expansionSectionItems(item: any, section: ListExpansionSectionDef, index?: number): any[];
804
807
  expansionSectionHasContent(item: any, section: ListExpansionSectionDef, index?: number): boolean;
805
808
  expansionRichContentDocument(item: any, section: ListExpansionSectionDef, index?: number): RichContentDocument | null;