@ascentgl/ads-ui 21.76.1 → 21.78.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.76.1",
3
+ "version": "21.78.0",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": ">=21.0.0",
6
6
  "date-fns": ">=4.1.0",
@@ -2859,6 +2859,14 @@ declare class AdsTableComponent implements AfterViewInit, OnChanges, OnDestroy {
2859
2859
  clearAllFilters(): void;
2860
2860
  /** @ignore */
2861
2861
  clearAllSorting(): void;
2862
+ /** @ignore - Get the filterValueFormatter for a given column field */
2863
+ private getFilterValueFormatterForField;
2864
+ /**
2865
+ * @ignore - Serialize a cell value for filter key purposes.
2866
+ * When a filterValueFormatter exists, uses the formatted value as the key
2867
+ * so that values with the same display (e.g. same date, different time) are deduplicated.
2868
+ */
2869
+ private serializeCellValueForFilter;
2862
2870
  /** @ignore - Extract unique RAW values from a column in rowData (with caching) */
2863
2871
  private getUniqueColumnValues;
2864
2872
  /**