@ascentgl/ads-ui 21.94.0 → 21.96.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
|
@@ -230,7 +230,7 @@ declare class AdsButtonModule {
|
|
|
230
230
|
|
|
231
231
|
declare class AdsButtonContainerComponent {
|
|
232
232
|
/** How buttons in the container should be placed */
|
|
233
|
-
justify: i0.InputSignal<"
|
|
233
|
+
justify: i0.InputSignal<"center" | "flex-start" | "flex-end">;
|
|
234
234
|
/** The gap between elements */
|
|
235
235
|
gap: i0.InputSignal<number>;
|
|
236
236
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsButtonContainerComponent, never>;
|
|
@@ -2573,7 +2573,7 @@ declare class AdsExpansionPanelComponent implements AfterContentInit {
|
|
|
2573
2573
|
/** Component width. Must include units of measure: px, %, em, rem, etc. */
|
|
2574
2574
|
width: i0.InputSignal<string>;
|
|
2575
2575
|
/** The Chevron Icon size () */
|
|
2576
|
-
chevronSize: i0.InputSignal<"
|
|
2576
|
+
chevronSize: i0.InputSignal<"xs" | "base">;
|
|
2577
2577
|
/** Header padding size () */
|
|
2578
2578
|
headerPadding: i0.InputSignal<string>;
|
|
2579
2579
|
/** Content padding size () */
|
|
@@ -2767,7 +2767,7 @@ declare class AdsSortMenuComponent implements OnChanges, OnDestroy {
|
|
|
2767
2767
|
/** All column sort/filter configs (all possible columns) */
|
|
2768
2768
|
columnSortFilterConfigs: ColumnSortFilterConfig[];
|
|
2769
2769
|
/** Current column sort states from the table */
|
|
2770
|
-
columnSortStates: Map<string, "
|
|
2770
|
+
columnSortStates: Map<string, "asc" | "desc" | null>;
|
|
2771
2771
|
/** Emits when sort configuration changes (order or direction) */
|
|
2772
2772
|
sortChanged: EventEmitter<SortMenuChangeEvent>;
|
|
2773
2773
|
/** Emits when sorts are removed for columns */
|
|
@@ -2939,7 +2939,7 @@ declare class AdsTableComponent implements AfterViewInit, AfterViewChecked, OnCh
|
|
|
2939
2939
|
values: string[];
|
|
2940
2940
|
}>;
|
|
2941
2941
|
/** Event emitted when view mode changes between grid and list */
|
|
2942
|
-
viewChanged: EventEmitter<"
|
|
2942
|
+
viewChanged: EventEmitter<"grid" | "list">;
|
|
2943
2943
|
/** @ignore - Current view mode: grid or list */
|
|
2944
2944
|
isListView: i0.WritableSignal<boolean>;
|
|
2945
2945
|
/** @ignore - Number of list rows currently rendered (grows in batches) */
|
|
@@ -2983,7 +2983,7 @@ declare class AdsTableComponent implements AfterViewInit, AfterViewChecked, OnCh
|
|
|
2983
2983
|
/** @ignore */
|
|
2984
2984
|
activeColumnMenu: i0.WritableSignal<string | null>;
|
|
2985
2985
|
/** @ignore */
|
|
2986
|
-
columnSortStates: i0.WritableSignal<Map<string, "
|
|
2986
|
+
columnSortStates: i0.WritableSignal<Map<string, "asc" | "desc" | null>>;
|
|
2987
2987
|
/** @ignore */
|
|
2988
2988
|
columnFilterStates: i0.WritableSignal<Map<string, string[]>>;
|
|
2989
2989
|
/** @ignore */
|
|
@@ -3004,6 +3004,17 @@ declare class AdsTableComponent implements AfterViewInit, AfterViewChecked, OnCh
|
|
|
3004
3004
|
private uniqueColumnValuesCache;
|
|
3005
3005
|
/** @ignore - Data version to invalidate unique values cache when rowData changes */
|
|
3006
3006
|
private dataVersion;
|
|
3007
|
+
/** @ignore - Cache for getProcessedColumnDefs() to avoid producing new array references on every CD cycle */
|
|
3008
|
+
private _processedColDefsCache;
|
|
3009
|
+
private _processedColDefsSrc;
|
|
3010
|
+
private _processedColDefsConfigRef;
|
|
3011
|
+
/** @ignore - Cache for getAgGridIcons() to avoid producing new object references on every CD cycle */
|
|
3012
|
+
private _agGridIconsCache;
|
|
3013
|
+
private _agGridIconsDirty;
|
|
3014
|
+
/** @ignore - Number of list items to render synchronously on the first frame when toggling to list view */
|
|
3015
|
+
private readonly INITIAL_LIST_RENDER_COUNT;
|
|
3016
|
+
/** @ignore - Handle for the pending rAF that fills the first batch, so it can be cancelled on destroy or re-toggle */
|
|
3017
|
+
private _listRenderRafId;
|
|
3007
3018
|
/** @ignore */
|
|
3008
3019
|
private getBreakpoint;
|
|
3009
3020
|
/** @ignore */
|
|
@@ -3091,6 +3102,8 @@ declare class AdsTableComponent implements AfterViewInit, AfterViewChecked, OnCh
|
|
|
3091
3102
|
filterChanged($event: FilterChangedEvent): void;
|
|
3092
3103
|
/** @ignore - Toggle between grid view and list view */
|
|
3093
3104
|
toggleView(): void;
|
|
3105
|
+
/** @ignore - Cancel pending rAF for progressive list rendering */
|
|
3106
|
+
private cancelListRenderRaf;
|
|
3094
3107
|
/** @ignore - Refresh the list view data cache and reset rendered count */
|
|
3095
3108
|
private refreshListView;
|
|
3096
3109
|
/** @ignore - Get filtered and sorted row data for list view */
|