@sumaris-net/ngx-components 1.23.57 → 1.23.59
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/bundles/sumaris-net.ngx-components.umd.js +4 -2
- package/bundles/sumaris-net.ngx-components.umd.js.map +1 -1
- package/bundles/sumaris-net.ngx-components.umd.min.js +1 -1
- package/bundles/sumaris-net.ngx-components.umd.min.js.map +1 -1
- package/esm2015/src/app/shared/dates.js +4 -2
- package/esm2015/src/app/shared/material/datetime/material.datetime.js +2 -2
- package/fesm2015/sumaris-net.ngx-components.js +4 -2
- package/fesm2015/sumaris-net.ngx-components.js.map +1 -1
- package/package.json +1 -1
- package/src/app/shared/dates.d.ts +1 -1
- package/sumaris-net.ngx-components.metadata.json +1 -1
package/package.json
CHANGED
|
@@ -8,7 +8,7 @@ export declare class DateUtils {
|
|
|
8
8
|
static fromDateISOString: typeof fromDateISOString;
|
|
9
9
|
static toDuration: typeof toDuration;
|
|
10
10
|
static min(date1: Moment, date2: Moment): Moment;
|
|
11
|
-
static max(date1: Moment, date2: Moment): Moment;
|
|
11
|
+
static max(date1: Moment | string, date2: Moment | string): Moment;
|
|
12
12
|
static equals(date1: Moment | string, date2: Moment | string): boolean;
|
|
13
13
|
static isSame(date1: Moment | string, date2: Moment | string, granularity?: unitOfTime.StartOf): boolean;
|
|
14
14
|
/**
|