cps-ui-kit 21.28.0 → 21.29.1

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,6 +1,6 @@
1
1
  {
2
2
  "name": "cps-ui-kit",
3
- "version": "21.28.0",
3
+ "version": "21.29.1",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^21.2.6",
6
6
  "@angular/core": "^21.2.6",
@@ -5398,6 +5398,14 @@ declare class CpsTreeTableComponent implements OnInit, AfterViewInit, OnDestroy,
5398
5398
  constructor(cdRef: ChangeDetectorRef, document: Document, _elementRef: ElementRef, renderer: Renderer2, ngZone: NgZone);
5399
5399
  ngOnInit(): void;
5400
5400
  ngAfterViewInit(): void;
5401
+ /**
5402
+ * PrimeNG's non-scrollable p-treeTable view always renders a
5403
+ * `<tfoot role="rowgroup">`, even with no footer template provided,
5404
+ * leaving an empty rowgroup that violates aria-required-children.
5405
+ * The scrollable view correctly omits it in that case, so this only
5406
+ * needs to run here.
5407
+ */
5408
+ private _removeEmptyFooter;
5401
5409
  ngAfterViewChecked(): void;
5402
5410
  ngOnChanges(changes: SimpleChanges): void;
5403
5411
  ngOnDestroy(): void;