@energycap/components 0.42.4-esbuild.20250131-1441 → 0.42.4-esbuild.20250131-1510

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.
@@ -65,11 +65,11 @@ export declare class DateTimeHelper {
65
65
  /**
66
66
  * Return true if @see date is equal to the @see endOfTime
67
67
  */
68
- static isEndOfTime(date: Date | moment.Moment | string, timeZoneOffset?: boolean): boolean;
68
+ static isEndOfTime(date: Date | moment.Moment | string | null | undefined, timeZoneOffset?: boolean): boolean;
69
69
  /**
70
70
  * Compare two dates and return true if they represent the same year, month, and day (time is ignored).
71
71
  */
72
- static isSameDay(date1: Date | moment.Moment | string, date2: Date | moment.Moment | string): boolean;
72
+ static isSameDay(date1: Date | moment.Moment | string | null | undefined, date2: Date | moment.Moment | string | null | undefined): boolean;
73
73
  /**
74
74
  * Get the parse formats based on the given date format. If no date format is
75
75
  * given, or we don't recognize the format, return the month first parse formats.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@energycap/components",
3
- "version": "0.42.4-esbuild.20250131-1441",
3
+ "version": "0.42.4-esbuild.20250131-1510",
4
4
  "schematics": "./schematics/collection.json",
5
5
  "dependencies": {
6
6
  "tslib": "^2.0.0"
@@ -13,7 +13,7 @@
13
13
  "@angular/cdk": ">=17.0.0",
14
14
  "@ngx-translate/core": "^15.0.0",
15
15
  "popper.js": "~1.11.1",
16
- "lodash-es": "^4.17.21",
16
+ "lodash": "^4.17.21",
17
17
  "moment": "^2.29.0",
18
18
  "ngx-clipboard": "^16.0.0"
19
19
  },