@annalib/anna-core 55.0.0-final-ng-21 → 57.0.0-final-ng-21

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@annalib/anna-core",
3
- "version": "55.0.0-final-ng-21",
3
+ "version": "57.0.0-final-ng-21",
4
4
  "peerDependencies": {
5
5
  "@angular-slider/ngx-slider": "^21.0.0",
6
6
  "@angular/common": "^21.2.19",
@@ -586,14 +586,14 @@ declare class AnnaDateTimeFormatService {
586
586
  addZero(time: any): any;
587
587
  sortByTimeAscending(a: any, b: any): number;
588
588
  sortByTimeDescending(a: any, b: any): number;
589
- compareTime(a: dayjs.Dayjs, b: dayjs.Dayjs, unit: UnitType, isAsc: boolean): 1 | 0 | -1;
589
+ compareTime(a: dayjs.Dayjs, b: dayjs.Dayjs, unit: UnitType, isAsc: boolean): 0 | 1 | -1;
590
590
  convertNgbDateToMoment(ngbDate: NgbDate | NgbDateType): string;
591
591
  compareDate(a: string, b: string, isAsc: boolean): number;
592
592
  static formatTwentyFourHourTimeToHHMMAFormat(value: any, date?: string): string;
593
593
  static formatTwelveHourTimeToHHMMAFormat(timeValue: any, date?: string): string;
594
594
  formatDateAndHHMMATimeToStandardFormat(dateAndTime: any): string;
595
595
  compare(a: number | string, b: number | string, isAsc: boolean): number;
596
- sortDataByBroadcastTimeAsc(firstParamTime: string, secondParamTime: string, broadcastTime: string): 1 | 0 | -1;
596
+ sortDataByBroadcastTimeAsc(firstParamTime: string, secondParamTime: string, broadcastTime: string): 0 | 1 | -1;
597
597
  convertNgbDateToMomentInSpecificFormat(ngbDate: NgbDateType, format: string): string;
598
598
  getBroadcastWeek(startDate: any, format?: string): {
599
599
  start: dayjs.Dayjs;