@annalib/anna-core 25.6.1 → 25.6.2
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/esm2022/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.mjs +12 -3
- package/fesm2022/annalib-anna-core.mjs +11 -2
- package/fesm2022/annalib-anna-core.mjs.map +1 -1
- package/lib/anna-core-shared-lib/services/anna-date-time-format.service.d.ts +2 -2
- package/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.d.ts +1 -0
- package/package.json +1 -1
- package/src/lib/anna-common-scss/_bootstrap-tooltip.scss +1 -1
- package/src/lib/anna-common-scss/_popup-filter-toggle-button.scss +1 -1
|
@@ -16,14 +16,14 @@ export declare class AnnaDateTimeFormatService {
|
|
|
16
16
|
addZero(time: any): any;
|
|
17
17
|
sortByTimeAscending(a: any, b: any): number;
|
|
18
18
|
sortByTimeDescending(a: any, b: any): number;
|
|
19
|
-
compareTime(a: dayjs.Dayjs, b: dayjs.Dayjs, unit: UnitType, isAsc: boolean):
|
|
19
|
+
compareTime(a: dayjs.Dayjs, b: dayjs.Dayjs, unit: UnitType, isAsc: boolean): 0 | 1 | -1;
|
|
20
20
|
convertNgbDateToMoment(ngbDate: NgbDate | NgbDateType): string;
|
|
21
21
|
compareDate(a: string, b: string, isAsc: boolean): number;
|
|
22
22
|
static formatTwentyFourHourTimeToHHMMAFormat(value: any, date?: string): string;
|
|
23
23
|
static formatTwelveHourTimeToHHMMAFormat(timeValue: any, date?: string): string;
|
|
24
24
|
formatDateAndHHMMATimeToStandardFormat(dateAndTime: any): string;
|
|
25
25
|
compare(a: number | string, b: number | string, isAsc: boolean): number;
|
|
26
|
-
sortDataByBroadcastTimeAsc(firstParamTime: string, secondParamTime: string, broadcastTime: string):
|
|
26
|
+
sortDataByBroadcastTimeAsc(firstParamTime: string, secondParamTime: string, broadcastTime: string): 0 | 1 | -1;
|
|
27
27
|
convertNgbDateToMomentInSpecificFormat(ngbDate: NgbDateType, format: string): string;
|
|
28
28
|
getBroadcastWeek(startDate: any, format?: string): {
|
|
29
29
|
start: dayjs.Dayjs;
|
|
@@ -131,6 +131,7 @@ export declare class AnnaNonEditableGenericTableComponent implements OnInit, OnC
|
|
|
131
131
|
statusNoteTooltip: any;
|
|
132
132
|
statusNoteForTooltip: string;
|
|
133
133
|
statusNoteForPopup: string;
|
|
134
|
+
noOfRowsToCheck: number;
|
|
134
135
|
constructor(cdRef: ChangeDetectorRef, annaSortService: AnnaSortService, annaDateTimeFormatService: AnnaDateTimeFormatService, annaFilterService: AnnaFilterService);
|
|
135
136
|
ngAfterViewChecked(): void;
|
|
136
137
|
ngOnInit(): void;
|
package/package.json
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
box-shadow:
|
|
10
10
|
0 6px 10px 0 rgba(0, 0, 0, 0.3),
|
|
11
11
|
0 2px 2px 0 rgba(0, 0, 0, 0.2);
|
|
12
|
-
@include fonts(Roboto,
|
|
12
|
+
@include fonts(Roboto, var(--page-message-content-fs), normal, normal, normal, normal, normal);
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
&.bs-tooltip-top .arrow::before {
|
|
@@ -17,7 +17,7 @@ label {
|
|
|
17
17
|
::ng-deep .toggle-info {
|
|
18
18
|
color: #4a4a4a;
|
|
19
19
|
margin-bottom: 0;
|
|
20
|
-
@include fonts(Roboto,
|
|
20
|
+
@include fonts(Roboto, var(--page-message-content-fs), normal, normal, normal, normal, 0.26px);
|
|
21
21
|
text-align: left;
|
|
22
22
|
}
|
|
23
23
|
|