@annalib/anna-core 8.0.24 → 8.0.26
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/directives/digits-only/digits-only.directive.mjs +1 -2
- package/esm2020/lib/anna-core-shared-lib/services/anna-date-time-format.service.mjs +1 -2
- package/esm2020/lib/anna-core-shared-lib/services/anna-filter.service.mjs +1 -2
- package/esm2020/lib/anna-core-shared-lib/services/anna-global-config.service.mjs +1 -2
- package/esm2020/lib/anna-core-shared-lib/services/anna-sort.service.mjs +1 -2
- package/esm2020/lib/anna-generic-table-lib/components/anna-sort/anna-sort.component.mjs +1 -6
- package/fesm2015/annalib-anna-core.mjs +0 -10
- package/fesm2015/annalib-anna-core.mjs.map +1 -1
- package/fesm2020/annalib-anna-core.mjs +0 -10
- package/fesm2020/annalib-anna-core.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -240,7 +240,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImpor
|
|
|
240
240
|
// Angular import statements
|
|
241
241
|
class AnnaDateTimeFormatService {
|
|
242
242
|
constructor() {
|
|
243
|
-
console.log("AnnaDateTimeFormatService service created.");
|
|
244
243
|
}
|
|
245
244
|
convertToNgbDateStandardFormat(date) {
|
|
246
245
|
return {
|
|
@@ -437,7 +436,6 @@ class AnnaGlobalConfigService {
|
|
|
437
436
|
Initializing all default settings
|
|
438
437
|
*/
|
|
439
438
|
constructor() {
|
|
440
|
-
console.log("AnnaGlobalConfigService service created.");
|
|
441
439
|
this.defaultAngular2MultiSelectSettings = {
|
|
442
440
|
text: "Select option",
|
|
443
441
|
selectAllText: "Select All",
|
|
@@ -1058,7 +1056,6 @@ class AnnaSortService {
|
|
|
1058
1056
|
'flightStartDate',
|
|
1059
1057
|
'flightEndDate',
|
|
1060
1058
|
]);
|
|
1061
|
-
console.log('AnnaTableColumnSortService sevice created.');
|
|
1062
1059
|
}
|
|
1063
1060
|
sortDataForComponentOtherThanLurAndCsrPage(isAsc, data, key) {
|
|
1064
1061
|
let param1;
|
|
@@ -1247,7 +1244,6 @@ class AnnaFilterService {
|
|
|
1247
1244
|
};
|
|
1248
1245
|
dayjs.extend(minMax);
|
|
1249
1246
|
dayjs.extend(isBetween);
|
|
1250
|
-
console.log("AnnaFilterService service created.");
|
|
1251
1247
|
const sliderArr = [
|
|
1252
1248
|
"rcvPreempt",
|
|
1253
1249
|
"osPreempt",
|
|
@@ -1674,10 +1670,7 @@ class AnnaSortComponent {
|
|
|
1674
1670
|
];
|
|
1675
1671
|
}
|
|
1676
1672
|
ngOnChanges(changes) {
|
|
1677
|
-
console.log("sort component ngOnChanges");
|
|
1678
|
-
console.log(this.sortObjectKey);
|
|
1679
1673
|
if (changes["sortObjectKey"] && changes["sortObjectKey"].currentValue) {
|
|
1680
|
-
console.log("inside sort active func");
|
|
1681
1674
|
let sortType = this.annaSortService.columnSortState.get(this.sortObjectKey);
|
|
1682
1675
|
this.setSortType(sortType);
|
|
1683
1676
|
}
|
|
@@ -1688,8 +1681,6 @@ class AnnaSortComponent {
|
|
|
1688
1681
|
this.sortOptionClicked.emit(sortType);
|
|
1689
1682
|
}
|
|
1690
1683
|
ngOnInit() {
|
|
1691
|
-
console.log("sort component ngOnInit");
|
|
1692
|
-
console.log(this.annaSortService.columnSortState);
|
|
1693
1684
|
this.annaSortService.updateSortTypeSubject.subscribe((item) => {
|
|
1694
1685
|
this.setSortType(item);
|
|
1695
1686
|
});
|
|
@@ -4411,7 +4402,6 @@ class DigitOnlyDirective {
|
|
|
4411
4402
|
}
|
|
4412
4403
|
}
|
|
4413
4404
|
onKeyDown(e) {
|
|
4414
|
-
console.log("called");
|
|
4415
4405
|
if (this.navigationKeys.indexOf(e.key) > -1 || // Allow: navigation keys: backspace, delete, arrows etc.
|
|
4416
4406
|
((e.key === 'a' || e.code === 'KeyA') && e.ctrlKey === true) || // Allow: Ctrl+A
|
|
4417
4407
|
((e.key === 'c' || e.code === 'KeyC') && e.ctrlKey === true) || // Allow: Ctrl+C
|