@annalib/anna-core 31.7.0 → 31.8.0
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-core-shared-lib/services/anna-sort.service.mjs +2 -2
- package/esm2022/lib/anna-dropdown-lib/components/anna-calendar-filter/anna-calendar-filter.component.mjs +2 -2
- package/esm2022/lib/anna-generic-table-lib/components/anna-column-filters/anna-column-checkbox-filter/anna-column-checkbox-filter.component.mjs +2 -2
- package/esm2022/lib/anna-generic-table-lib/components/anna-column-filters/anna-column-date-range-filter/anna-column-date-range-filter.component.mjs +2 -2
- package/esm2022/lib/anna-generic-table-lib/components/anna-column-filters/anna-column-slider-filter/anna-column-slider-filter.component.mjs +2 -2
- package/esm2022/lib/anna-generic-table-lib/components/anna-column-filters/anna-column-time-filter/anna-column-time-filter.component.mjs +2 -2
- package/esm2022/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.mjs +3 -3
- package/esm2022/lib/anna-generic-table-lib/services/gt-table-related-common-functions.service.mjs +4 -2
- package/fesm2022/annalib-anna-core.mjs +16 -14
- 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/package.json +1 -1
- package/src/lib/anna-common-scss/_filters.scss +1 -1
- package/src/lib/anna-common-scss/_generic-tooltip-html.scss +7 -12
- package/src/lib/anna-common-scss/_gt-table.scss +2 -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;
|
package/package.json
CHANGED
|
@@ -36,17 +36,9 @@
|
|
|
36
36
|
@include fonts(Roboto, $fs-11, normal, 700, normal, normal, 0.3px);
|
|
37
37
|
color: $charcoal;
|
|
38
38
|
margin-bottom: 0;
|
|
39
|
-
box-shadow:
|
|
40
|
-
|
|
41
|
-
inset
|
|
42
|
-
inset -1px 0px 0px 0px $lightGray-4;
|
|
43
|
-
|
|
44
|
-
&:first-of-type {
|
|
45
|
-
box-shadow:
|
|
46
|
-
inset 0 1px $lightGray-4,
|
|
47
|
-
inset 0 -1px $lightGray-4,
|
|
48
|
-
inset -1px 0 $lightGray-4 !important;
|
|
49
|
-
border-left: 1px solid $lightGray-4;
|
|
39
|
+
box-shadow: inset 1px -1px #d4d4d4, inset 0px 1px #d4d4d4;
|
|
40
|
+
&:last-of-type {
|
|
41
|
+
box-shadow: inset 1px -1px #d4d4d4, inset -1px 1px #d4d4d4 !important;
|
|
50
42
|
}
|
|
51
43
|
}
|
|
52
44
|
}
|
|
@@ -54,11 +46,14 @@
|
|
|
54
46
|
tbody {
|
|
55
47
|
tr {
|
|
56
48
|
td {
|
|
57
|
-
border: 1px solid $lightGray-4;
|
|
58
49
|
padding: 3px 8px;
|
|
59
50
|
width: 100%;
|
|
60
51
|
color: #000;
|
|
61
52
|
@include fonts(Roboto, $fs-12, normal, normal, normal, normal, 0px);
|
|
53
|
+
box-shadow: inset 1px -1px #d4d4d4;
|
|
54
|
+
&:last-of-type {
|
|
55
|
+
box-shadow: inset 1px -1px #d4d4d4, inset -1px 0px #d4d4d4;
|
|
56
|
+
}
|
|
62
57
|
}
|
|
63
58
|
&:first-of-type td {
|
|
64
59
|
border-top: none;
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
line-height: normal;
|
|
39
39
|
position: sticky;
|
|
40
40
|
position: -webkit-sticky;
|
|
41
|
-
top: 0
|
|
41
|
+
top: 0;
|
|
42
42
|
|
|
43
43
|
.upper-label {
|
|
44
44
|
@include fonts(Roboto, var(--table-header-fs), normal, 700, normal, normal, 0.3px);
|
|
@@ -129,6 +129,7 @@
|
|
|
129
129
|
|
|
130
130
|
.header-row {
|
|
131
131
|
background: $bg-color;
|
|
132
|
+
|
|
132
133
|
th {
|
|
133
134
|
box-shadow: none !important;
|
|
134
135
|
cursor: default;
|