@ascentgl/ads-ui 21.96.0 → 21.97.0

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": "@ascentgl/ads-ui",
3
- "version": "21.96.0",
3
+ "version": "21.97.0",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": ">=21.0.0",
6
6
  "date-fns": ">=4.1.0",
@@ -3013,6 +3013,8 @@ declare class AdsTableComponent implements AfterViewInit, AfterViewChecked, OnCh
3013
3013
  private _agGridIconsDirty;
3014
3014
  /** @ignore - Number of list items to render synchronously on the first frame when toggling to list view */
3015
3015
  private readonly INITIAL_LIST_RENDER_COUNT;
3016
+ /** @ignore - Number of list items to add per animation frame during progressive rendering */
3017
+ private readonly LIST_RENDER_CHUNK_SIZE;
3016
3018
  /** @ignore - Handle for the pending rAF that fills the first batch, so it can be cancelled on destroy or re-toggle */
3017
3019
  private _listRenderRafId;
3018
3020
  /** @ignore */
@@ -3104,6 +3106,8 @@ declare class AdsTableComponent implements AfterViewInit, AfterViewChecked, OnCh
3104
3106
  toggleView(): void;
3105
3107
  /** @ignore - Cancel pending rAF for progressive list rendering */
3106
3108
  private cancelListRenderRaf;
3109
+ /** @ignore - Progressively render list items in small chunks across animation frames */
3110
+ private scheduleNextListRenderChunk;
3107
3111
  /** @ignore - Refresh the list view data cache and reset rendered count */
3108
3112
  private refreshListView;
3109
3113
  /** @ignore - Get filtered and sorted row data for list view */