@tetacom/ng-components 1.0.35 → 1.0.36
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/esm2020/component/table/default/default-head-cell/default-head-cell.component.mjs +2 -2
- package/esm2020/util/date-util.mjs +41 -1
- package/fesm2015/tetacom-ng-components.mjs +42 -2
- package/fesm2015/tetacom-ng-components.mjs.map +1 -1
- package/fesm2020/tetacom-ng-components.mjs +42 -2
- package/fesm2020/tetacom-ng-components.mjs.map +1 -1
- package/package.json +1 -1
- package/style/table.scss +0 -1
- package/util/date-util.d.ts +1 -0
package/package.json
CHANGED
package/style/table.scss
CHANGED
package/util/date-util.d.ts
CHANGED
|
@@ -32,6 +32,7 @@ export declare class DateUtil {
|
|
|
32
32
|
static truncateToHour(date: Date): Date;
|
|
33
33
|
static toISOString(date: number): string;
|
|
34
34
|
static isValidDate(date: any): boolean;
|
|
35
|
+
static millisecondToHumanFormat(milliSeconds: number, maxValue?: number, showDays?: boolean): string;
|
|
35
36
|
private static fillConvertDates;
|
|
36
37
|
private static fillConvertDateStringsToDates;
|
|
37
38
|
private static convertStringToLocalDate;
|