@annalib/anna-core 2.4.2 → 2.5.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.
Files changed (37) hide show
  1. package/esm2020/lib/anna-core-shared-lib/components/anna-buyer-approval-icon-template/anna-buyer-approval-icon-template.component.mjs +4 -4
  2. package/esm2020/lib/anna-core-shared-lib/components/anna-icon-column/anna-icon-column.component.mjs +4 -4
  3. package/esm2020/lib/anna-core-shared-lib/components/anna-live-icon-template/anna-live-icon-template.component.mjs +4 -4
  4. package/esm2020/lib/anna-core-shared-lib/components/anna-notify-icon-template/anna-notify-icon-template.component.mjs +4 -4
  5. package/esm2020/lib/anna-core-shared-lib/components/anna-rejected-icon-template/anna-rejected-icon-template.component.mjs +4 -4
  6. package/esm2020/lib/anna-core-shared-lib/models/anna-non-editable-gt-models.mjs +1 -1
  7. package/esm2020/lib/anna-core-shared-lib/services/anna-date-time-format.service.mjs +1 -5
  8. package/esm2020/lib/anna-generic-table-lib/anna-generic-table-lib.module.mjs +22 -8
  9. package/esm2020/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.mjs +54 -66
  10. package/esm2020/src/lib/anna-core-shared-lib/components/anna-buyer-approval-icon-template/anna-buyer-approval-icon-template.component.mjs +4 -4
  11. package/esm2020/src/lib/anna-core-shared-lib/components/anna-icon-column/anna-icon-column.component.mjs +4 -4
  12. package/esm2020/src/lib/anna-core-shared-lib/components/anna-live-icon-template/anna-live-icon-template.component.mjs +4 -4
  13. package/esm2020/src/lib/anna-core-shared-lib/components/anna-notify-icon-template/anna-notify-icon-template.component.mjs +4 -4
  14. package/esm2020/src/lib/anna-core-shared-lib/components/anna-rejected-icon-template/anna-rejected-icon-template.component.mjs +4 -4
  15. package/esm2020/src/lib/anna-core-shared-lib/models/anna-non-editable-gt-models.mjs +1 -1
  16. package/esm2020/src/lib/anna-core-shared-lib/services/anna-date-time-format.service.mjs +1 -5
  17. package/esm2020/src/lib/anna-generic-table-lib/anna-generic-table-lib.module.mjs +22 -8
  18. package/esm2020/src/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.mjs +54 -66
  19. package/fesm2015/annalib-anna-core-src-lib-anna-core-shared-lib.mjs +10 -14
  20. package/fesm2015/annalib-anna-core-src-lib-anna-core-shared-lib.mjs.map +1 -1
  21. package/fesm2015/annalib-anna-core-src-lib-anna-generic-table-lib.mjs +73 -72
  22. package/fesm2015/annalib-anna-core-src-lib-anna-generic-table-lib.mjs.map +1 -1
  23. package/fesm2015/annalib-anna-core.mjs +83 -86
  24. package/fesm2015/annalib-anna-core.mjs.map +1 -1
  25. package/fesm2020/annalib-anna-core-src-lib-anna-core-shared-lib.mjs +10 -14
  26. package/fesm2020/annalib-anna-core-src-lib-anna-core-shared-lib.mjs.map +1 -1
  27. package/fesm2020/annalib-anna-core-src-lib-anna-generic-table-lib.mjs +73 -72
  28. package/fesm2020/annalib-anna-core-src-lib-anna-generic-table-lib.mjs.map +1 -1
  29. package/fesm2020/annalib-anna-core.mjs +83 -86
  30. package/fesm2020/annalib-anna-core.mjs.map +1 -1
  31. package/lib/anna-core-shared-lib/models/anna-non-editable-gt-models.d.ts +1 -1
  32. package/lib/anna-generic-table-lib/anna-generic-table-lib.module.d.ts +3 -3
  33. package/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.d.ts +11 -11
  34. package/package.json +3 -2
  35. package/src/lib/anna-core-shared-lib/models/anna-non-editable-gt-models.d.ts +1 -1
  36. package/src/lib/anna-generic-table-lib/anna-generic-table-lib.module.d.ts +3 -3
  37. package/src/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.d.ts +11 -11
@@ -20,7 +20,7 @@ export interface IHeaderInfo {
20
20
  tooltip?: ITooltip;
21
21
  joinedFilterSortObjectKeys?: string;
22
22
  }
23
- declare type DATATYPE = "CHECKBOX" | "ICON" | "STRING" | "RADIO" | "" | "SVG_ICON" | "TEXT_ACTIONS";
23
+ declare type DATATYPE = "CHECKBOX" | "ICON" | "STRING" | "RADIO" | "" | "SVG_ICON" | "TEXT_ACTIONS" | "CLICKABLE_DATA";
24
24
  declare type FILTERTYPE = "CHECKBOX" | "SLIDER" | "DATE" | "TIME" | "WEEK";
25
25
  export interface ITotalRowInfo {
26
26
  colspan: number;
@@ -13,10 +13,10 @@ import * as i11 from "@angular-slider/ngx-slider";
13
13
  import * as i12 from "ngx-skeleton-loader";
14
14
  import * as i13 from "@angular/material/table";
15
15
  import * as i14 from "@angular/material/radio";
16
- import * as i15 from "@angular/cdk/scrolling";
17
- import * as i16 from "@annalib/anna-core/src/lib/anna-core-shared-lib";
16
+ import * as i15 from "@annalib/anna-core/src/lib/anna-core-shared-lib";
17
+ import * as i16 from "ng-circle-progress";
18
18
  export declare class AnnaGenericTableLibModule {
19
19
  static ɵfac: i0.ɵɵFactoryDeclaration<AnnaGenericTableLibModule, never>;
20
- static ɵmod: i0.ɵɵNgModuleDeclaration<AnnaGenericTableLibModule, [typeof i1.AnnaNonEditableGenericTableComponent, typeof i2.AnnaSortComponent, typeof i3.AnnaTableVirtualScrollViewportComponent, typeof i4.AnnaFixedRowSizeTableVirtualScrollStrategyDirective, typeof i5.AnnaVirtualTableDirective], [typeof i6.CommonModule, typeof i7.NgbModule, typeof i8.AnnaDropdownLibModule, typeof i9.MatButtonToggleModule, typeof i10.FormsModule, typeof i11.NgxSliderModule, typeof i12.NgxSkeletonLoaderModule, typeof i13.MatTableModule, typeof i14.MatRadioModule, typeof i15.ScrollingModule, typeof i16.AnnaCoreSharedLibModule], [typeof i1.AnnaNonEditableGenericTableComponent, typeof i2.AnnaSortComponent, typeof i3.AnnaTableVirtualScrollViewportComponent, typeof i4.AnnaFixedRowSizeTableVirtualScrollStrategyDirective, typeof i5.AnnaVirtualTableDirective]>;
20
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AnnaGenericTableLibModule, [typeof i1.AnnaNonEditableGenericTableComponent, typeof i2.AnnaSortComponent, typeof i3.AnnaTableVirtualScrollViewportComponent, typeof i4.AnnaFixedRowSizeTableVirtualScrollStrategyDirective, typeof i5.AnnaVirtualTableDirective], [typeof i6.CommonModule, typeof i7.NgbModule, typeof i8.AnnaDropdownLibModule, typeof i9.MatButtonToggleModule, typeof i10.FormsModule, typeof i11.NgxSliderModule, typeof i12.NgxSkeletonLoaderModule, typeof i13.MatTableModule, typeof i14.MatRadioModule, typeof i15.AnnaCoreSharedLibModule, typeof i16.NgCircleProgressModule], [typeof i1.AnnaNonEditableGenericTableComponent, typeof i2.AnnaSortComponent, typeof i3.AnnaTableVirtualScrollViewportComponent, typeof i4.AnnaFixedRowSizeTableVirtualScrollStrategyDirective, typeof i5.AnnaVirtualTableDirective]>;
21
21
  static ɵinj: i0.ɵɵInjectorDeclaration<AnnaGenericTableLibModule>;
22
22
  }
@@ -1,6 +1,7 @@
1
1
  import { OnInit, QueryList, EventEmitter, SimpleChanges, OnChanges, ChangeDetectorRef, ElementRef, AfterViewChecked } from '@angular/core';
2
2
  import moment from "moment";
3
3
  import { Options } from '@angular-slider/ngx-slider';
4
+ import { AnnaSortComponent } from '../anna-sort/anna-sort.component';
4
5
  import { SellerGroupHierarchy, IWeekCalendar, TooltipModel, AnnaSortService, AnnaDateTimeFormatService, NgbDateType, AnnaFilterService, IGtGeneralConfig, IGtTableHeader, ITotalRowInfo, AnnaGenericTableService, SortType, IHeaderInfo, radioButtonModel, GtColumnIconEmittedData } from "@annalib/anna-core/src/lib/anna-core-shared-lib";
5
6
  import * as i0 from "@angular/core";
6
7
  export declare class AnnaNonEditableGenericTableComponent implements OnInit, OnChanges, AfterViewChecked {
@@ -25,6 +26,8 @@ export declare class AnnaNonEditableGenericTableComponent implements OnInit, OnC
25
26
  tableClass: string;
26
27
  maximumRowsWhichCanBeRenderedWithoutScroll: number;
27
28
  includeBorderInTableHeight: boolean;
29
+ downloadInProgress: boolean;
30
+ percentDone: number;
28
31
  toggleCheckbox: EventEmitter<any>;
29
32
  toggleRowCheckbox: EventEmitter<any>;
30
33
  toggleHeaderCheckbox: EventEmitter<any>;
@@ -39,6 +42,7 @@ export declare class AnnaNonEditableGenericTableComponent implements OnInit, OnC
39
42
  gtSVGIconClicked: EventEmitter<any>;
40
43
  gtTextActionClicked: EventEmitter<any>;
41
44
  gtViewDetailClicked: EventEmitter<any>;
45
+ downloadSpotDetails: EventEmitter<any>;
42
46
  tableDataWrapper: any[];
43
47
  rowChecked: boolean;
44
48
  isAllRowsChecked: boolean;
@@ -95,6 +99,7 @@ export declare class AnnaNonEditableGenericTableComponent implements OnInit, OnC
95
99
  };
96
100
  sellerGroupHierarchy: SellerGroupHierarchy[];
97
101
  showFilterTooltipTabs: boolean;
102
+ sortComponent: QueryList<AnnaSortComponent>;
98
103
  isScrolledLeft: boolean;
99
104
  rowBorderWidth: number;
100
105
  showSortComponent: boolean;
@@ -125,11 +130,9 @@ export declare class AnnaNonEditableGenericTableComponent implements OnInit, OnC
125
130
  isSortChanged: boolean;
126
131
  isDifferenceLessThan25Percent: boolean;
127
132
  incorrectSliderInput: boolean;
128
- start: number;
129
- limit: number;
130
- end: number;
131
- renderedData: any[];
132
- heightOfCheckboxTooltipFilter: number;
133
+ selectedInventoryIdForDownload: number;
134
+ selectedDemographicForDownload: any;
135
+ selectedRowTypeForDownload: string;
133
136
  constructor(cdRef: ChangeDetectorRef, annaSortService: AnnaSortService, annaDateTimeFormatService: AnnaDateTimeFormatService, annaFilterService: AnnaFilterService, annaGenericTableService: AnnaGenericTableService);
134
137
  ngAfterViewChecked(): void;
135
138
  ngOnInit(): void;
@@ -205,6 +208,7 @@ export declare class AnnaNonEditableGenericTableComponent implements OnInit, OnC
205
208
  sortedData(event: any): void;
206
209
  checkIfSortingIsApplied(): void;
207
210
  disableEnableEachColumnTooltipIcon(): void;
211
+ ngAfterViewInit(): void;
208
212
  setMarginLeftForFilterIcon(): void;
209
213
  dataRowClicked(rowData: any): void;
210
214
  radioButtonClicked(data: any, action: string, isDisabled: boolean): void;
@@ -241,12 +245,8 @@ export declare class AnnaNonEditableGenericTableComponent implements OnInit, OnC
241
245
  trackByTooltipModelId(index: number, item: TooltipModel): number;
242
246
  setActiveStateObject(): void;
243
247
  setIsDifference(value: boolean): void;
244
- resetIndex(): void;
245
- onTableContainerScroll(e: any): void;
246
- getTableData(start: number, end: number): any[];
247
- updateIndex(): void;
248
- setInitialRowsForTable(): void;
248
+ spotDetailsDownloadClicked(parentChildOrTotalRow: "DATAROW" | "TOTALROW", rowdata?: any): void;
249
249
  tableContainerScrolled(event: any): void;
250
250
  static ɵfac: i0.ɵɵFactoryDeclaration<AnnaNonEditableGenericTableComponent, never>;
251
- 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"; "includeBorderInTableHeight": "includeBorderInTableHeight"; }, { "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"; }, never, never>;
251
+ 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"; "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>;
252
252
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@annalib/anna-core",
3
- "version": "2.4.2",
3
+ "version": "2.5.0",
4
4
  "peerDependencies": {
5
5
  "@angular-slider/ngx-slider": "2.0.3",
6
6
  "@angular/common": "^13.2.0",
@@ -9,7 +9,8 @@
9
9
  "@ng-bootstrap/ng-bootstrap": "^9.0.1",
10
10
  "lodash-es": "^4.17.21",
11
11
  "moment": "^2.24.0",
12
- "ngx-skeleton-loader": "^2.10.1"
12
+ "ngx-skeleton-loader": "^2.10.1",
13
+ "ng-circle-progress": "^1.6.0"
13
14
  },
14
15
  "dependencies": {
15
16
  "tslib": "^2.3.0"
@@ -20,7 +20,7 @@ export interface IHeaderInfo {
20
20
  tooltip?: ITooltip;
21
21
  joinedFilterSortObjectKeys?: string;
22
22
  }
23
- declare type DATATYPE = "CHECKBOX" | "ICON" | "STRING" | "RADIO" | "" | "SVG_ICON" | "TEXT_ACTIONS";
23
+ declare type DATATYPE = "CHECKBOX" | "ICON" | "STRING" | "RADIO" | "" | "SVG_ICON" | "TEXT_ACTIONS" | "CLICKABLE_DATA";
24
24
  declare type FILTERTYPE = "CHECKBOX" | "SLIDER" | "DATE" | "TIME" | "WEEK";
25
25
  export interface ITotalRowInfo {
26
26
  colspan: number;
@@ -13,10 +13,10 @@ import * as i11 from "@angular-slider/ngx-slider";
13
13
  import * as i12 from "ngx-skeleton-loader";
14
14
  import * as i13 from "@angular/material/table";
15
15
  import * as i14 from "@angular/material/radio";
16
- import * as i15 from "@angular/cdk/scrolling";
17
- import * as i16 from "@annalib/anna-core/src/lib/anna-core-shared-lib";
16
+ import * as i15 from "@annalib/anna-core/src/lib/anna-core-shared-lib";
17
+ import * as i16 from "ng-circle-progress";
18
18
  export declare class AnnaGenericTableLibModule {
19
19
  static ɵfac: i0.ɵɵFactoryDeclaration<AnnaGenericTableLibModule, never>;
20
- static ɵmod: i0.ɵɵNgModuleDeclaration<AnnaGenericTableLibModule, [typeof i1.AnnaNonEditableGenericTableComponent, typeof i2.AnnaSortComponent, typeof i3.AnnaTableVirtualScrollViewportComponent, typeof i4.AnnaFixedRowSizeTableVirtualScrollStrategyDirective, typeof i5.AnnaVirtualTableDirective], [typeof i6.CommonModule, typeof i7.NgbModule, typeof i8.AnnaDropdownLibModule, typeof i9.MatButtonToggleModule, typeof i10.FormsModule, typeof i11.NgxSliderModule, typeof i12.NgxSkeletonLoaderModule, typeof i13.MatTableModule, typeof i14.MatRadioModule, typeof i15.ScrollingModule, typeof i16.AnnaCoreSharedLibModule], [typeof i1.AnnaNonEditableGenericTableComponent, typeof i2.AnnaSortComponent, typeof i3.AnnaTableVirtualScrollViewportComponent, typeof i4.AnnaFixedRowSizeTableVirtualScrollStrategyDirective, typeof i5.AnnaVirtualTableDirective]>;
20
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AnnaGenericTableLibModule, [typeof i1.AnnaNonEditableGenericTableComponent, typeof i2.AnnaSortComponent, typeof i3.AnnaTableVirtualScrollViewportComponent, typeof i4.AnnaFixedRowSizeTableVirtualScrollStrategyDirective, typeof i5.AnnaVirtualTableDirective], [typeof i6.CommonModule, typeof i7.NgbModule, typeof i8.AnnaDropdownLibModule, typeof i9.MatButtonToggleModule, typeof i10.FormsModule, typeof i11.NgxSliderModule, typeof i12.NgxSkeletonLoaderModule, typeof i13.MatTableModule, typeof i14.MatRadioModule, typeof i15.AnnaCoreSharedLibModule, typeof i16.NgCircleProgressModule], [typeof i1.AnnaNonEditableGenericTableComponent, typeof i2.AnnaSortComponent, typeof i3.AnnaTableVirtualScrollViewportComponent, typeof i4.AnnaFixedRowSizeTableVirtualScrollStrategyDirective, typeof i5.AnnaVirtualTableDirective]>;
21
21
  static ɵinj: i0.ɵɵInjectorDeclaration<AnnaGenericTableLibModule>;
22
22
  }
@@ -1,6 +1,7 @@
1
1
  import { OnInit, QueryList, EventEmitter, SimpleChanges, OnChanges, ChangeDetectorRef, ElementRef, AfterViewChecked } from '@angular/core';
2
2
  import moment from "moment";
3
3
  import { Options } from '@angular-slider/ngx-slider';
4
+ import { AnnaSortComponent } from '../anna-sort/anna-sort.component';
4
5
  import { SellerGroupHierarchy, IWeekCalendar, TooltipModel, AnnaSortService, AnnaDateTimeFormatService, NgbDateType, AnnaFilterService, IGtGeneralConfig, IGtTableHeader, ITotalRowInfo, AnnaGenericTableService, SortType, IHeaderInfo, radioButtonModel, GtColumnIconEmittedData } from "@annalib/anna-core/src/lib/anna-core-shared-lib";
5
6
  import * as i0 from "@angular/core";
6
7
  export declare class AnnaNonEditableGenericTableComponent implements OnInit, OnChanges, AfterViewChecked {
@@ -25,6 +26,8 @@ export declare class AnnaNonEditableGenericTableComponent implements OnInit, OnC
25
26
  tableClass: string;
26
27
  maximumRowsWhichCanBeRenderedWithoutScroll: number;
27
28
  includeBorderInTableHeight: boolean;
29
+ downloadInProgress: boolean;
30
+ percentDone: number;
28
31
  toggleCheckbox: EventEmitter<any>;
29
32
  toggleRowCheckbox: EventEmitter<any>;
30
33
  toggleHeaderCheckbox: EventEmitter<any>;
@@ -39,6 +42,7 @@ export declare class AnnaNonEditableGenericTableComponent implements OnInit, OnC
39
42
  gtSVGIconClicked: EventEmitter<any>;
40
43
  gtTextActionClicked: EventEmitter<any>;
41
44
  gtViewDetailClicked: EventEmitter<any>;
45
+ downloadSpotDetails: EventEmitter<any>;
42
46
  tableDataWrapper: any[];
43
47
  rowChecked: boolean;
44
48
  isAllRowsChecked: boolean;
@@ -95,6 +99,7 @@ export declare class AnnaNonEditableGenericTableComponent implements OnInit, OnC
95
99
  };
96
100
  sellerGroupHierarchy: SellerGroupHierarchy[];
97
101
  showFilterTooltipTabs: boolean;
102
+ sortComponent: QueryList<AnnaSortComponent>;
98
103
  isScrolledLeft: boolean;
99
104
  rowBorderWidth: number;
100
105
  showSortComponent: boolean;
@@ -125,11 +130,9 @@ export declare class AnnaNonEditableGenericTableComponent implements OnInit, OnC
125
130
  isSortChanged: boolean;
126
131
  isDifferenceLessThan25Percent: boolean;
127
132
  incorrectSliderInput: boolean;
128
- start: number;
129
- limit: number;
130
- end: number;
131
- renderedData: any[];
132
- heightOfCheckboxTooltipFilter: number;
133
+ selectedInventoryIdForDownload: number;
134
+ selectedDemographicForDownload: any;
135
+ selectedRowTypeForDownload: string;
133
136
  constructor(cdRef: ChangeDetectorRef, annaSortService: AnnaSortService, annaDateTimeFormatService: AnnaDateTimeFormatService, annaFilterService: AnnaFilterService, annaGenericTableService: AnnaGenericTableService);
134
137
  ngAfterViewChecked(): void;
135
138
  ngOnInit(): void;
@@ -205,6 +208,7 @@ export declare class AnnaNonEditableGenericTableComponent implements OnInit, OnC
205
208
  sortedData(event: any): void;
206
209
  checkIfSortingIsApplied(): void;
207
210
  disableEnableEachColumnTooltipIcon(): void;
211
+ ngAfterViewInit(): void;
208
212
  setMarginLeftForFilterIcon(): void;
209
213
  dataRowClicked(rowData: any): void;
210
214
  radioButtonClicked(data: any, action: string, isDisabled: boolean): void;
@@ -241,12 +245,8 @@ export declare class AnnaNonEditableGenericTableComponent implements OnInit, OnC
241
245
  trackByTooltipModelId(index: number, item: TooltipModel): number;
242
246
  setActiveStateObject(): void;
243
247
  setIsDifference(value: boolean): void;
244
- resetIndex(): void;
245
- onTableContainerScroll(e: any): void;
246
- getTableData(start: number, end: number): any[];
247
- updateIndex(): void;
248
- setInitialRowsForTable(): void;
248
+ spotDetailsDownloadClicked(parentChildOrTotalRow: "DATAROW" | "TOTALROW", rowdata?: any): void;
249
249
  tableContainerScrolled(event: any): void;
250
250
  static ɵfac: i0.ɵɵFactoryDeclaration<AnnaNonEditableGenericTableComponent, never>;
251
- 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"; "includeBorderInTableHeight": "includeBorderInTableHeight"; }, { "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"; }, never, never>;
251
+ 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"; "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>;
252
252
  }