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/fesm2022/cps-ui-kit.mjs +56 -35
- package/fesm2022/cps-ui-kit.mjs.map +1 -1
- package/package.json +1 -1
- package/types/cps-ui-kit.d.ts +8 -0
package/package.json
CHANGED
package/types/cps-ui-kit.d.ts
CHANGED
|
@@ -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;
|