@annalib/anna-core 4.2.18 → 4.2.20

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.
@@ -6,6 +6,10 @@ export interface SellerGroupHierarchy {
6
6
  inventoryCode: string;
7
7
  program: string;
8
8
  }
9
+ export interface RatingSellerGroupHierarchy {
10
+ InventoryCode: string;
11
+ Program: string;
12
+ }
9
13
  export interface GtColumnIconEmittedData {
10
14
  data: any;
11
15
  key: string;
@@ -18,6 +18,7 @@ export declare class AnnaDateTimeFormatService {
18
18
  convertNgbDateToMoment(ngbDate: NgbDate | NgbDateType): string;
19
19
  compareDate(a: string, b: string, isAsc: boolean): number;
20
20
  static formatTwentyFourHourTimeToHHMMAFormat(value: any): string;
21
+ static formatTwelveHourTimeToHHMMAFormat(value: any): string;
21
22
  formatDateAndHHMMATimeToStandardFormat(dateAndTime: any): string;
22
23
  compare(a: number | string, b: number | string, isAsc: boolean): number;
23
24
  sortDataByBroadcastTimeAsc(firstParamTime: string, secondParamTime: string, broadcastTime: string): number;
@@ -4,7 +4,7 @@ import { Options } from '@angular-slider/ngx-slider';
4
4
  import { IGtGeneralConfig, IGtTableHeader, IHeaderInfo, ITotalRowInfo } from '../../../anna-core-shared-lib/models/anna-non-editable-gt-models';
5
5
  import { AnnaDateTimeFormatService, NgbDateType } from '../../../anna-core-shared-lib/services/anna-date-time-format.service';
6
6
  import { IWeekCalendar } from '../../../anna-core-shared-lib/models/anna-global-dropdown-config.model';
7
- import { GtColumnIconEmittedData, SellerGroupHierarchy } from '../../../anna-core-shared-lib/models/anna-generic-data-type.model';
7
+ import { GtColumnIconEmittedData, RatingSellerGroupHierarchy } from '../../../anna-core-shared-lib/models/anna-generic-data-type.model';
8
8
  import { SortType } from '../../../anna-core-shared-lib/models/anna-sort.model';
9
9
  import { radioButtonModel, TooltipModel } from '../../../anna-core-shared-lib/models/anna-tooltip.model';
10
10
  import { AnnaSortService } from '../../../anna-core-shared-lib/services/anna-sort.service';
@@ -37,6 +37,7 @@ export declare class AnnaNonEditableGenericTableComponent implements OnInit, OnC
37
37
  includeBorderInTableHeight: boolean;
38
38
  downloadInProgress: boolean;
39
39
  percentDone: number;
40
+ starredInProgress: boolean;
40
41
  toggleCheckbox: EventEmitter<any>;
41
42
  toggleRowCheckbox: EventEmitter<any>;
42
43
  toggleHeaderCheckbox: EventEmitter<any>;
@@ -106,7 +107,7 @@ export declare class AnnaNonEditableGenericTableComponent implements OnInit, OnC
106
107
  open: () => void;
107
108
  close: () => void;
108
109
  };
109
- sellerGroupHierarchy: SellerGroupHierarchy[];
110
+ sellerGroupHierarchy: RatingSellerGroupHierarchy[];
110
111
  showFilterTooltipTabs: boolean;
111
112
  isScrolledLeft: boolean;
112
113
  rowBorderWidth: number;
@@ -145,6 +146,7 @@ export declare class AnnaNonEditableGenericTableComponent implements OnInit, OnC
145
146
  selectedRowTypeForDownload: string;
146
147
  heightOfCheckboxTooltipFilter: number;
147
148
  isNoDataToDisplaySubject$: BehaviorSubject<boolean>;
149
+ selectedStarredOrderId: string;
148
150
  constructor(cdRef: ChangeDetectorRef, annaSortService: AnnaSortService, annaDateTimeFormatService: AnnaDateTimeFormatService, annaFilterService: AnnaFilterService, annaGenericTableService: AnnaGenericTableService);
149
151
  ngAfterViewChecked(): void;
150
152
  ngOnInit(): void;
@@ -223,7 +225,7 @@ export declare class AnnaNonEditableGenericTableComponent implements OnInit, OnC
223
225
  setMarginLeftForFilterIcon(): void;
224
226
  dataRowClicked(rowData: any): void;
225
227
  radioButtonClicked(data: any, action: string, isDisabled: boolean): void;
226
- bindTheValueToSellerGroupTooltip(sellerGroupHierarchy: SellerGroupHierarchy[], tooltip: any): void;
228
+ bindTheValueToSellerGroupTooltip(sellerGroupHierarchy: RatingSellerGroupHierarchy[], tooltip: any): void;
227
229
  iconClicked(rowData: any, iconClass: string): void;
228
230
  svgIconClicked(data: GtColumnIconEmittedData): void;
229
231
  textActionClicked(rowData: any, id: number): void;
@@ -265,5 +267,5 @@ export declare class AnnaNonEditableGenericTableComponent implements OnInit, OnC
265
267
  spotDetailsDownloadClicked(parentChildOrTotalRow: "DATAROW" | "TOTALROW", rowdata?: any): void;
266
268
  tableContainerScrolled(event: any): void;
267
269
  static ɵfac: i0.ɵɵFactoryDeclaration<AnnaNonEditableGenericTableComponent, never>;
268
- static ɵcmp: i0.ɵɵComponentDeclaration<AnnaNonEditableGenericTableComponent, "anna-core-non-editable-generic-table-lib", never, { "showSkeletonLoading": "showSkeletonLoading"; "tableHeaders": "tableHeaders"; "tableData": "tableData"; "clonedTableData": "clonedTableData"; "numberOfSkeletonRows": "numberOfSkeletonRows"; "numberOfSkeletonColumns": "numberOfSkeletonColumns"; "gtGeneralConfig": "gtGeneralConfig"; "totalRowInfo": "totalRowInfo"; "gtDimension": "gtDimension"; "tableClass": "tableClass"; "maximumRowsWhichCanBeRenderedWithoutScroll": "maximumRowsWhichCanBeRenderedWithoutScroll"; "limit": "limit"; "includeBorderInTableHeight": "includeBorderInTableHeight"; "downloadInProgress": "downloadInProgress"; "percentDone": "percentDone"; }, { "toggleCheckbox": "toggleCheckbox"; "toggleRowCheckbox": "toggleRowCheckbox"; "toggleHeaderCheckbox": "toggleHeaderCheckbox"; "undoIconClicked": "undoIconClicked"; "filterAppliedToTable": "filterAppliedToTable"; "sortingAppliedToTable": "sortingAppliedToTable"; "rowClicked": "rowClicked"; "radioButtonSelected": "radioButtonSelected"; "columnFilterOpened": "columnFilterOpened"; "columnFilterClosed": "columnFilterClosed"; "gtIconClicked": "gtIconClicked"; "gtSVGIconClicked": "gtSVGIconClicked"; "gtTextActionClicked": "gtTextActionClicked"; "gtViewDetailClicked": "gtViewDetailClicked"; "downloadSpotDetails": "downloadSpotDetails"; }, never, never>;
270
+ static ɵcmp: i0.ɵɵComponentDeclaration<AnnaNonEditableGenericTableComponent, "anna-core-non-editable-generic-table-lib", never, { "showSkeletonLoading": "showSkeletonLoading"; "tableHeaders": "tableHeaders"; "tableData": "tableData"; "clonedTableData": "clonedTableData"; "numberOfSkeletonRows": "numberOfSkeletonRows"; "numberOfSkeletonColumns": "numberOfSkeletonColumns"; "gtGeneralConfig": "gtGeneralConfig"; "totalRowInfo": "totalRowInfo"; "gtDimension": "gtDimension"; "tableClass": "tableClass"; "maximumRowsWhichCanBeRenderedWithoutScroll": "maximumRowsWhichCanBeRenderedWithoutScroll"; "limit": "limit"; "includeBorderInTableHeight": "includeBorderInTableHeight"; "downloadInProgress": "downloadInProgress"; "percentDone": "percentDone"; "starredInProgress": "starredInProgress"; }, { "toggleCheckbox": "toggleCheckbox"; "toggleRowCheckbox": "toggleRowCheckbox"; "toggleHeaderCheckbox": "toggleHeaderCheckbox"; "undoIconClicked": "undoIconClicked"; "filterAppliedToTable": "filterAppliedToTable"; "sortingAppliedToTable": "sortingAppliedToTable"; "rowClicked": "rowClicked"; "radioButtonSelected": "radioButtonSelected"; "columnFilterOpened": "columnFilterOpened"; "columnFilterClosed": "columnFilterClosed"; "gtIconClicked": "gtIconClicked"; "gtSVGIconClicked": "gtSVGIconClicked"; "gtTextActionClicked": "gtTextActionClicked"; "gtViewDetailClicked": "gtViewDetailClicked"; "downloadSpotDetails": "downloadSpotDetails"; }, never, never>;
269
271
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@annalib/anna-core",
3
- "version": "4.2.18",
3
+ "version": "4.2.20",
4
4
  "peerDependencies": {
5
5
  "@angular-slider/ngx-slider": "2.0.3",
6
6
  "@angular/common": "^13.2.0",
@@ -413,7 +413,7 @@ section.min-maxContainer {
413
413
  padding-left: 1px;
414
414
  margin-right: $fs-19;
415
415
  i {
416
- color: #cbcbcb;
416
+ color: black;
417
417
  cursor: pointer;
418
418
  font-size: $fs-9;
419
419
  }