ngx-techlify-core 18.70.0 → 18.71.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.
@@ -36,6 +36,14 @@ export declare class RequestHelperService {
36
36
  * @param value Value to be Checked
37
37
  */
38
38
  isNumeric(str: string): boolean;
39
+ /**
40
+ * Determine whether the given value is a date string.
41
+ * Matches a YYYY-MM-DD or YYYY/MM/DD pattern (e.g. 2026-06-18 or 2026/06/18)
42
+ * optional time for instances where we also filter by time
43
+ *
44
+ * @param value Value to be checked
45
+ */
46
+ isDateString(value: any): boolean;
39
47
  static ɵfac: i0.ɵɵFactoryDeclaration<RequestHelperService, never>;
40
48
  static ɵprov: i0.ɵɵInjectableDeclaration<RequestHelperService>;
41
49
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ngx-techlify-core",
3
- "version": "18.70.0",
3
+ "version": "18.71.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=18",
6
6
  "@angular/core": ">=18",