gamma-app-controller 3.0.1 → 3.0.3

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 (29) hide show
  1. package/esm2020/lib/application-controller/application-dataset-component/create-dataset/create-dataset.component.mjs +2 -2
  2. package/esm2020/lib/application-controller/application-view-components/create-comp-view/create-comp-view.component.mjs +8 -3
  3. package/esm2020/lib/application-controller/page-controller/page-config/page-config.component.mjs +3 -28
  4. package/esm2020/lib/application-controller/support-components/dash-chart/dash-chart.component.mjs +23 -3
  5. package/esm2020/lib/application-controller/support-components/dash-table/dash-table.component.mjs +17 -4
  6. package/esm2020/lib/application-controller/support-components/dash-today-previous/dash-today-previous.component.mjs +3 -3
  7. package/esm2020/lib/application-controller/support-components/geo-map/geo-map.component.mjs +4 -3
  8. package/esm2020/lib/application-controller/support-components/heat-map/heat-map.component.mjs +23 -3
  9. package/esm2020/lib/application-controller/support-components/table-with-bar/table-with-bar.component.mjs +24 -3
  10. package/esm2020/lib/shared/advanced-component/gamma-advance-chart/gamma-advance-chart.component.mjs +14 -1
  11. package/esm2020/lib/shared/advanced-component/gamma-advance-operator-table/gamma-advance-operator-table.component.mjs +15 -3
  12. package/esm2020/lib/shared/advanced-component/gamma-geo-chart/gamma-geo-chart.component.mjs +3 -3
  13. package/esm2020/lib/shared/advanced-component/gamma-table-with-percentage/gamma-table-with-percentage.component.mjs +2 -1
  14. package/esm2020/lib/shared/template-dataset-call-service.mjs +10 -3
  15. package/esm2020/lib/template-module/KpiCreationModule/create-kpi-tree.component.mjs +2 -1
  16. package/esm2020/lib/template-module/kpiWithMultiLayout/kpi-with-multilayout.component.mjs +2 -2
  17. package/esm2020/lib/template-module/kpiWithSingleLayout/kpi-with-dataset.component.mjs +72 -9
  18. package/fesm2015/gamma-app-controller.mjs +6082 -5928
  19. package/fesm2015/gamma-app-controller.mjs.map +1 -1
  20. package/fesm2020/gamma-app-controller.mjs +6195 -6044
  21. package/fesm2020/gamma-app-controller.mjs.map +1 -1
  22. package/lib/application-controller/support-components/dash-chart/dash-chart.component.d.ts +2 -0
  23. package/lib/application-controller/support-components/dash-table/dash-table.component.d.ts +1 -0
  24. package/lib/application-controller/support-components/heat-map/heat-map.component.d.ts +2 -0
  25. package/lib/application-controller/support-components/table-with-bar/table-with-bar.component.d.ts +2 -0
  26. package/lib/shared/advanced-component/gamma-advance-chart/gamma-advance-chart.component.d.ts +1 -0
  27. package/lib/shared/advanced-component/gamma-advance-operator-table/gamma-advance-operator-table.component.d.ts +1 -0
  28. package/lib/template-module/kpiWithSingleLayout/kpi-with-dataset.component.d.ts +3 -1
  29. package/package.json +1 -1
@@ -126,6 +126,8 @@ export declare class DashChartComponent implements OnInit {
126
126
  saveAggregationColume(): void;
127
127
  getGroupDataForChart(data: any, aggregationConfig: any, groupByColumns: any): unknown[];
128
128
  viewMapForTest(): void;
129
+ getReportNameWithKeyToPass(event: any): void;
130
+ buildExpectedString(keytopass: any, configColume: any): string;
129
131
  static ɵfac: i0.ɵɵFactoryDeclaration<DashChartComponent, never>;
130
132
  static ɵcmp: i0.ɵɵComponentDeclaration<DashChartComponent, "app-dash-chart", never, { "chartconfigData": "datasetmodal"; }, { "getChartConfigOutPut": "getChartConfigOutPut"; }, never, never, false>;
131
133
  }
@@ -66,6 +66,7 @@ export declare class DashTableComponent implements OnInit {
66
66
  addAssociatedParams(): void;
67
67
  getSelectedEventType(e: any): void;
68
68
  getReportNameWithKeyToPass(event: any): void;
69
+ buildExpectedString(keytopass: any, configColume: any): string;
69
70
  formatFieldName(name: any): any;
70
71
  resetViewProprstise(): void;
71
72
  static ɵfac: i0.ɵɵFactoryDeclaration<DashTableComponent, never>;
@@ -99,6 +99,8 @@ export declare class HeatMapSupportComponent implements OnInit {
99
99
  getColorBoxVisible(e: any): void;
100
100
  saveColors(): void;
101
101
  getSaveChartConfig(): void;
102
+ getReportNameWithKeyToPass(event: any): void;
103
+ buildExpectedString(keytopass: any, configColume: any): string;
102
104
  static ɵfac: i0.ɵɵFactoryDeclaration<HeatMapSupportComponent, never>;
103
105
  static ɵcmp: i0.ɵɵComponentDeclaration<HeatMapSupportComponent, "app-heat-map", never, { "chartconfigData": "datasetmodal"; }, { "getHeatMapConfigOutPut": "getHeatMapConfigOutPut"; }, never, never, false>;
104
106
  }
@@ -67,6 +67,8 @@ export declare class TableWithBarComponent implements OnInit {
67
67
  getSelectedEventType(e: any): void;
68
68
  resetViewProprstise(): void;
69
69
  viewMapForTest(): void;
70
+ getReportNameWithKeyToPass(event: any): void;
71
+ buildExpectedString(keytopass: any, configColume: any): string;
70
72
  static ɵfac: i0.ɵɵFactoryDeclaration<TableWithBarComponent, never>;
71
73
  static ɵcmp: i0.ɵɵComponentDeclaration<TableWithBarComponent, "app-table-with-bar", never, { "chartconfigData": "datasetmodal"; }, { "createOtherComponentView": "createOtherComponentView"; }, never, never, false>;
72
74
  }
@@ -66,6 +66,7 @@ export declare class GammaAdvanceChartComponent implements OnInit {
66
66
  dataSourceForChart: any[];
67
67
  listOfGroupByData: string[];
68
68
  };
69
+ getParamsTitle(data: any): any;
69
70
  static ɵfac: i0.ɵɵFactoryDeclaration<GammaAdvanceChartComponent, never>;
70
71
  static ɵcmp: i0.ɵɵComponentDeclaration<GammaAdvanceChartComponent, "app-gamma-advance-chart", never, { "componentId": "componentId"; "kpi_name": "kpi_name"; "chartDataSource": "chartDataSource"; }, { "onChartPointClick": "onChartPointClick"; }, never, never, false>;
71
72
  }
@@ -31,6 +31,7 @@ export declare class GammaAdvanceOperatorTableComponent implements OnInit {
31
31
  setTableHeight(value: any): any;
32
32
  callServiceFunction(functionName: string, value: any): any;
33
33
  shouldShowColumn(field: string): boolean;
34
+ getParamsTitle(data: any): any;
34
35
  static ɵfac: i0.ɵɵFactoryDeclaration<GammaAdvanceOperatorTableComponent, never>;
35
36
  static ɵcmp: i0.ɵɵComponentDeclaration<GammaAdvanceOperatorTableComponent, "app-gamma-advance-operator-table", never, { "chartDataSource": "chartDataSource"; }, { "getTableConfigOutPut": "getTableConfigOutPut"; "oRowClick": "oRowClick"; "onrightClickContextSelection": "onrightClickContextSelection"; }, never, never, false>;
36
37
  }
@@ -103,6 +103,7 @@ export declare class KpiWithDataSetTestComponent implements OnInit {
103
103
  };
104
104
  isDefaultFilterParams: boolean;
105
105
  viewParams: any;
106
+ private activeFullscreenWidgetId;
106
107
  constructor(commonService: CommonService, activatedRoute: ActivatedRoute, viewContainerRef: ViewContainerRef, componentFactoryResolver: ComponentFactoryResolver, service: KpiWithSingleLayoutService, toastr: ToastrService, router: Router, datasetService: SingleLayoutApplicationDatssetsCall, chatApiService: ApplicationChatApiCallService, storage: AppSingleLayoutLocalStorage, cdr: ChangeDetectorRef, permissionHelper: PermissionHelper);
107
108
  ngOnInit(): void;
108
109
  getFiltersForTemplate(filter: any): Promise<void>;
@@ -113,7 +114,7 @@ export declare class KpiWithDataSetTestComponent implements OnInit {
113
114
  createDivElements(datasetById: any, context: any): Promise<void>;
114
115
  loadWidgetNodes(div: any, mainItemDiv: any, datasetById: any): void;
115
116
  loadSingleWidgetNode(item: any, containerElement: HTMLElement, datasetById: any): void;
116
- getWidgetTitleDiv(item: any): HTMLDivElement;
117
+ getWidgetTitleDiv(item: any, datasetById: any): HTMLDivElement;
117
118
  loadDynamicComponent(data: any, indexObj: any, containerElement: any): any;
118
119
  loadFilterComponent(indexObj: any, containerElement: any, filterItems: any, context_filter: any): void;
119
120
  loadWidgetFilterComponent(indexObj: any, containerElement: any, filterItems: any, viewIds: any): void;
@@ -139,6 +140,7 @@ export declare class KpiWithDataSetTestComponent implements OnInit {
139
140
  getFiltersForQueryParams(operators: any, filters: any, viewParams: any): void;
140
141
  getDrildownFilter(drildownFilter: any, defaultFilter: any): any;
141
142
  getTitleParams(items: any): string;
143
+ renderWidgetIntoContainer(item: any, container: HTMLElement, datasetById: any): void;
142
144
  static ɵfac: i0.ɵɵFactoryDeclaration<KpiWithDataSetTestComponent, never>;
143
145
  static ɵcmp: i0.ɵɵComponentDeclaration<KpiWithDataSetTestComponent, "app-kpi-with-dataset", never, {}, {}, never, never, false>;
144
146
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gamma-app-controller",
3
- "version": "3.0.1",
3
+ "version": "3.0.3",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^14.0.0",
6
6
  "@angular/core": "^14.0.0",