@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
|
@@ -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 -
|
|
2882
|
-
*
|
|
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
|
|
2876
|
+
private getFilterValueFormatterForField;
|
|
2885
2877
|
/**
|
|
2886
|
-
* @ignore - Trim a date-time string to date-only.
|
|
2887
|
-
*
|
|
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
|
/**
|