@ascentgl/ads-ui 21.79.0 → 21.80.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.79.0",
3
+ "version": "21.80.0",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": ">=21.0.0",
6
6
  "date-fns": ">=4.1.0",
@@ -2616,12 +2616,6 @@ declare class AdsColumnSortFilterMenuComponent implements OnInit, OnChanges, OnD
2616
2616
  private initializeFilterOptions;
2617
2617
  /** @ignore - Serialize any value into a stable string key for selection */
2618
2618
  private serializeOptionValue;
2619
- /**
2620
- * @ignore - Trim a date-time string to date-only.
2621
- * Handles common formatted patterns like "01/09/26, 02:00 AM" or "01/09/2026 14:30".
2622
- * Strips everything after the date portion (comma+time, space+time).
2623
- */
2624
- private trimToDateOnly;
2625
2619
  /** @ignore */
2626
2620
  private setupSearchSubscription;
2627
2621
  /** @ignore */
@@ -2872,19 +2866,18 @@ declare class AdsTableComponent implements AfterViewInit, OnChanges, OnDestroy {
2872
2866
  clearAllFilters(): void;
2873
2867
  /** @ignore */
2874
2868
  clearAllSorting(): void;
2875
- /** @ignore - Get the effective filter formatter for a given column field.
2876
- * When showDateOnly is true, wraps the formatter (or uses a default date formatter)
2877
- * that trims the output to date-only for dedup and comparison purposes.
2878
- */
2879
- private getFilterValueFormatterForField;
2880
2869
  /**
2881
- * @ignore - Default date formatter for showDateOnly when no filterValueFormatter is provided.
2882
- * Formats an ISO date-time string to the locale date string.
2870
+ * @ignore - Get the effective filter formatter for a given column field.
2871
+ * When showDateOnly is true, wraps the base formatter to trim date-time output
2872
+ * to date-only. This ensures the dedup key, stored filter values, and
2873
+ * doesExternalFilterPass comparison all use date-only strings — so selecting
2874
+ * a date in the filter menu matches ALL rows for that date regardless of time.
2883
2875
  */
2884
- private formatDateDefault;
2876
+ private getFilterValueFormatterForField;
2885
2877
  /**
2886
- * @ignore - Trim a date-time string to date-only.
2887
- * Strips time portion from common formatted date-time patterns.
2878
+ * @ignore - Trim a formatted date-time string to date-only.
2879
+ * Handles: "01/15/2026, 21:00" "01/15/2026"
2880
+ * "01/15/2026 21:00" → "01/15/2026"
2888
2881
  */
2889
2882
  private trimToDateOnly;
2890
2883
  /**