@annalib/anna-core 3.5.1 → 4.0.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/esm2020/lib/anna-core-shared-lib/pipes/annaFilterSearchedText.pipe.mjs +20 -5
- package/esm2020/lib/anna-core-shared-lib/services/anna-date-time-format.service.mjs +7 -1
- package/esm2020/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.mjs +34 -11
- package/fesm2015/annalib-anna-core.mjs +58 -15
- package/fesm2015/annalib-anna-core.mjs.map +1 -1
- package/fesm2020/annalib-anna-core.mjs +58 -15
- package/fesm2020/annalib-anna-core.mjs.map +1 -1
- package/lib/anna-core-shared-lib/services/anna-date-time-format.service.d.ts +1 -0
- package/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.d.ts +3 -1
- package/package.json +1 -1
- package/src/lib/anna-common-scss/_application-spacing.scss +0 -6
- package/src/lib/anna-common-scss/_mixins.scss +0 -187
|
@@ -17,6 +17,7 @@ export declare class AnnaDateTimeFormatService {
|
|
|
17
17
|
sortByTimeDescending(a: any, b: any): number;
|
|
18
18
|
convertNgbDateToMoment(ngbDate: NgbDate | NgbDateType): string;
|
|
19
19
|
compareDate(a: string, b: string, isAsc: boolean): number;
|
|
20
|
+
static formatTwentyFourHourTimeToHHMMAFormat(value: any): string;
|
|
20
21
|
formatDateAndHHMMATimeToStandardFormat(dateAndTime: any): string;
|
|
21
22
|
compare(a: number | string, b: number | string, isAsc: boolean): number;
|
|
22
23
|
sortDataByBroadcastTimeAsc(firstParamTime: string, secondParamTime: string, broadcastTime: string): number;
|
|
@@ -10,6 +10,7 @@ import { radioButtonModel, TooltipModel } from '../../../anna-core-shared-lib/mo
|
|
|
10
10
|
import { AnnaSortService } from '../../../anna-core-shared-lib/services/anna-sort.service';
|
|
11
11
|
import { AnnaFilterService } from '../../../anna-core-shared-lib/services/anna-filter.service';
|
|
12
12
|
import { AnnaGenericTableService } from '../../../anna-core-shared-lib/services/anna-generic-table.service';
|
|
13
|
+
import { BehaviorSubject } from 'rxjs';
|
|
13
14
|
import * as i0 from "@angular/core";
|
|
14
15
|
export declare class AnnaNonEditableGenericTableComponent implements OnInit, OnChanges, AfterViewChecked {
|
|
15
16
|
private cdRef;
|
|
@@ -129,7 +130,6 @@ export declare class AnnaNonEditableGenericTableComponent implements OnInit, OnC
|
|
|
129
130
|
endTimeHourErr: boolean;
|
|
130
131
|
endTimeMinErr: boolean;
|
|
131
132
|
sameTooltipClicked: boolean;
|
|
132
|
-
showNoDataToDisplay: boolean;
|
|
133
133
|
marginTop: string;
|
|
134
134
|
viewChildTableHeaders: QueryList<ElementRef>;
|
|
135
135
|
selectedCheckboxOptionsCount: number;
|
|
@@ -144,6 +144,7 @@ export declare class AnnaNonEditableGenericTableComponent implements OnInit, OnC
|
|
|
144
144
|
selectedDemographicForDownload: any;
|
|
145
145
|
selectedRowTypeForDownload: string;
|
|
146
146
|
heightOfCheckboxTooltipFilter: number;
|
|
147
|
+
isNoDataToDisplaySubject$: BehaviorSubject<boolean>;
|
|
147
148
|
constructor(cdRef: ChangeDetectorRef, annaSortService: AnnaSortService, annaDateTimeFormatService: AnnaDateTimeFormatService, annaFilterService: AnnaFilterService, annaGenericTableService: AnnaGenericTableService);
|
|
148
149
|
ngAfterViewChecked(): void;
|
|
149
150
|
ngOnInit(): void;
|
|
@@ -233,6 +234,7 @@ export declare class AnnaNonEditableGenericTableComponent implements OnInit, OnC
|
|
|
233
234
|
selectAllCheckbox(): void;
|
|
234
235
|
searchForTheItem(str: string): void;
|
|
235
236
|
boldString(str: string, find: string): string;
|
|
237
|
+
getIndicesOf(searchStr: string, str: string, caseSensitive: boolean): number[];
|
|
236
238
|
removeBoldElementFromString(originalString: string): string;
|
|
237
239
|
clearSearchedItem(): void;
|
|
238
240
|
calendarDateChanged(event: any): void;
|
package/package.json
CHANGED
|
@@ -1,187 +0,0 @@
|
|
|
1
|
-
@mixin button-social-size($padding-y, $padding-x, $font-size, $line-height, $border-radius) {
|
|
2
|
-
padding: $padding-y $padding-x;
|
|
3
|
-
font-size: $font-size;
|
|
4
|
-
line-height: $line-height;
|
|
5
|
-
border: 0;
|
|
6
|
-
@include border-radius($border-radius);
|
|
7
|
-
|
|
8
|
-
&::before {
|
|
9
|
-
width: ($padding-y * 2) + ($font-size * $line-height);
|
|
10
|
-
height: ($padding-y * 2) + ($font-size * $line-height);
|
|
11
|
-
padding: $padding-y 0;
|
|
12
|
-
font-size: $font-size;
|
|
13
|
-
line-height: $line-height;
|
|
14
|
-
@include border-radius($border-radius);
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
span {
|
|
18
|
-
margin-left: ($padding-y * 2) + ($font-size * $line-height);
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
&.icon {
|
|
22
|
-
width: ($padding-y * 2) + ($font-size * $line-height);
|
|
23
|
-
height: ($padding-y * 2) + ($font-size * $line-height);
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
@mixin avatar($width, $status-width) {
|
|
28
|
-
position: relative;
|
|
29
|
-
display: inline-block;
|
|
30
|
-
width: $width;
|
|
31
|
-
|
|
32
|
-
.img-avatar {
|
|
33
|
-
width: $width;
|
|
34
|
-
height: $width;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
.avatar-status {
|
|
38
|
-
position: absolute;
|
|
39
|
-
right: 0;
|
|
40
|
-
bottom: 0;
|
|
41
|
-
display: block;
|
|
42
|
-
width: $status-width;
|
|
43
|
-
height: $status-width;
|
|
44
|
-
border: 1px solid #fff;
|
|
45
|
-
border-radius: 50em;
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
@mixin borders($borders) {
|
|
50
|
-
@each $border in $borders {
|
|
51
|
-
$direction: nth($border, 1);
|
|
52
|
-
@if $direction == "all" {
|
|
53
|
-
$size: map-get(map-get($borders, $direction), size);
|
|
54
|
-
$style: map-get(map-get($borders, $direction), style);
|
|
55
|
-
$color: map-get(map-get($borders, $direction), color);
|
|
56
|
-
border: $size $style $color;
|
|
57
|
-
} @else if $direction == "top" {
|
|
58
|
-
$size: map-get(map-get($borders, $direction), size);
|
|
59
|
-
$style: map-get(map-get($borders, $direction), style);
|
|
60
|
-
$color: map-get(map-get($borders, $direction), color);
|
|
61
|
-
border-top: $size $style $color;
|
|
62
|
-
} @else if $direction == "right" {
|
|
63
|
-
$size: map-get(map-get($borders, $direction), size);
|
|
64
|
-
$style: map-get(map-get($borders, $direction), style);
|
|
65
|
-
$color: map-get(map-get($borders, $direction), color);
|
|
66
|
-
border-right: $size $style $color;
|
|
67
|
-
} @else if $direction == "bottom" {
|
|
68
|
-
$size: map-get(map-get($borders, $direction), size);
|
|
69
|
-
$style: map-get(map-get($borders, $direction), style);
|
|
70
|
-
$color: map-get(map-get($borders, $direction), color);
|
|
71
|
-
border-bottom: $size $style $color;
|
|
72
|
-
} @else if $direction == "left" {
|
|
73
|
-
$size: map-get(map-get($borders, $direction), size);
|
|
74
|
-
$style: map-get(map-get($borders, $direction), style);
|
|
75
|
-
$color: map-get(map-get($borders, $direction), color);
|
|
76
|
-
border-left: $size $style $color;
|
|
77
|
-
}
|
|
78
|
-
}
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
@mixin sidebar-width($borders, $width) {
|
|
82
|
-
$sidebar-width: $width;
|
|
83
|
-
|
|
84
|
-
@each $border in $borders {
|
|
85
|
-
$direction: nth($border, 1);
|
|
86
|
-
@if $direction == "all" {
|
|
87
|
-
$size: map-get(map-get($borders, $direction), size);
|
|
88
|
-
$sidebar-width: ($sidebar-width - (2 * $size));
|
|
89
|
-
} @else if $direction == "right" {
|
|
90
|
-
$size: map-get(map-get($borders, $direction), size);
|
|
91
|
-
$sidebar-width: $sidebar-width - $size;
|
|
92
|
-
} @else if $direction == "left" {
|
|
93
|
-
$size: map-get(map-get($borders, $direction), size);
|
|
94
|
-
$sidebar-width: $sidebar-width - $size;
|
|
95
|
-
}
|
|
96
|
-
width: $sidebar-width;
|
|
97
|
-
}
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
@mixin bg-variant($parent, $color) {
|
|
101
|
-
#{"" + $parent} {
|
|
102
|
-
@include border-radius(
|
|
103
|
-
$card-border-radius-inner $card-border-radius-inner $card-border-radius-inner $card-border-radius-inner
|
|
104
|
-
);
|
|
105
|
-
color: #fff !important;
|
|
106
|
-
background-color: $color !important;
|
|
107
|
-
}
|
|
108
|
-
a#{"" + $parent} {
|
|
109
|
-
@include hover-focus {
|
|
110
|
-
background-color: darken($color, 10%);
|
|
111
|
-
}
|
|
112
|
-
}
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
@mixin card-accent-variant($color) {
|
|
116
|
-
border-top-width: 2px;
|
|
117
|
-
border-top-color: $color;
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
@mixin tabs-style($color) {
|
|
121
|
-
display: inline-block;
|
|
122
|
-
margin-right: 20px;
|
|
123
|
-
font-size: 16px;
|
|
124
|
-
color: $color;
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
@mixin fit-content() {
|
|
128
|
-
width: fit-content !important;
|
|
129
|
-
width: -moz-max-content !important;
|
|
130
|
-
}
|
|
131
|
-
|
|
132
|
-
@mixin fit-content-height() {
|
|
133
|
-
height: fit-content !important;
|
|
134
|
-
height: -moz-max-content !important;
|
|
135
|
-
}
|
|
136
|
-
|
|
137
|
-
@mixin label($fontSize, $fontWeight, $fontStyle, $letterSpacing, $color) {
|
|
138
|
-
font-family: Roboto;
|
|
139
|
-
font-size: $fontSize;
|
|
140
|
-
font-weight: normal;
|
|
141
|
-
font-stretch: normal;
|
|
142
|
-
font-style: $fontStyle;
|
|
143
|
-
line-height: normal;
|
|
144
|
-
letter-spacing: $letterSpacing;
|
|
145
|
-
color: $color;
|
|
146
|
-
}
|
|
147
|
-
|
|
148
|
-
@mixin modal-btn($background-color) {
|
|
149
|
-
width: 100%;
|
|
150
|
-
background-color: $background-color;
|
|
151
|
-
color: white;
|
|
152
|
-
border-radius: initial;
|
|
153
|
-
}
|
|
154
|
-
|
|
155
|
-
@mixin OrderListingTableStyling {
|
|
156
|
-
width: 100%;
|
|
157
|
-
tr {
|
|
158
|
-
border: 1px solid #d4d4d4;
|
|
159
|
-
border-top: none;
|
|
160
|
-
th {
|
|
161
|
-
color: #4a4a4a;
|
|
162
|
-
font-size: 11px;
|
|
163
|
-
font-weight: 500;
|
|
164
|
-
letter-spacing: 0.3px;
|
|
165
|
-
vertical-align: middle;
|
|
166
|
-
text-align: left;
|
|
167
|
-
// position: sticky;
|
|
168
|
-
// // z-index: 101 !important;
|
|
169
|
-
// top: 0px;
|
|
170
|
-
padding: unset;
|
|
171
|
-
height: 30px;
|
|
172
|
-
// line-height: 30px;
|
|
173
|
-
border-top: 1px solid #d4d4d4;
|
|
174
|
-
}
|
|
175
|
-
&.header-row th {
|
|
176
|
-
background-color: #ededed;
|
|
177
|
-
}
|
|
178
|
-
td {
|
|
179
|
-
font-size: 12px;
|
|
180
|
-
padding: 2px 0px 3px;
|
|
181
|
-
vertical-align: middle;
|
|
182
|
-
text-align: left;
|
|
183
|
-
color: #000000;
|
|
184
|
-
letter-spacing: 0px;
|
|
185
|
-
}
|
|
186
|
-
}
|
|
187
|
-
}
|