gamma-app-controller 1.1.17 → 1.1.19

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 (18) hide show
  1. package/esm2020/lib/application-controller/application-content.service.mjs +6 -3
  2. package/esm2020/lib/application-controller/application-controller.module.mjs +1 -4
  3. package/esm2020/lib/application-controller/application-dataset-call.service.mjs +10 -4
  4. package/esm2020/lib/application-controller/application-view-components/create-comp-view/create-comp-view.component.mjs +12 -6
  5. package/esm2020/lib/application-controller/page-controller/page-controller/page-controller.component.mjs +4 -3
  6. package/esm2020/lib/application-controller/page-templates/cdr-config/cdr-config.component.mjs +13 -3
  7. package/esm2020/lib/application-controller/support-components/dash-chart/dash-chart.component.mjs +5 -3
  8. package/esm2020/lib/application-controller/support-components/dash-table/dash-table.component.mjs +5 -4
  9. package/fesm2015/gamma-app-controller.mjs +47 -21
  10. package/fesm2015/gamma-app-controller.mjs.map +1 -1
  11. package/fesm2020/gamma-app-controller.mjs +47 -21
  12. package/fesm2020/gamma-app-controller.mjs.map +1 -1
  13. package/lib/application-controller/application-dataset-call.service.d.ts +3 -1
  14. package/lib/application-controller/application-view-components/create-comp-view/create-comp-view.component.d.ts +2 -2
  15. package/lib/application-controller/page-templates/cdr-config/cdr-config.component.d.ts +2 -1
  16. package/lib/application-controller/support-components/dash-chart/dash-chart.component.d.ts +2 -0
  17. package/lib/application-controller/support-components/dash-table/dash-table.component.d.ts +1 -0
  18. package/package.json +1 -1
@@ -1,12 +1,14 @@
1
1
  import { ApplicationContentService } from './application-content.service';
2
2
  import { kpicommonService } from './kpi-comon-service';
3
+ import { ToastrService } from 'ngx-toastr';
3
4
  import * as i0 from "@angular/core";
4
5
  export declare class ApplicationDatssetsCall {
5
6
  private service;
6
7
  private kpiService;
8
+ private toastr;
7
9
  private environment;
8
10
  uniqueDataSetObject: {};
9
- constructor(service: ApplicationContentService, kpiService: kpicommonService, environment: any);
11
+ constructor(service: ApplicationContentService, kpiService: kpicommonService, toastr: ToastrService, environment: any);
10
12
  getDataFromDataSet(dataset: any, datasetId: any, filters: any): Promise<void>;
11
13
  getDataSetForMongo(dataset: any, datasetId: any): Promise<void>;
12
14
  getDatasetForImpala(dataset: any, datasetId: any, filters: any): Promise<void>;
@@ -34,8 +34,8 @@ export declare class CreateCompViewComponent implements OnInit {
34
34
  item: string;
35
35
  }[];
36
36
  componentName: any;
37
- defaultStartDate: any;
38
- defaultEndDate: any;
37
+ defaultStartDate: string;
38
+ defaultEndDate: string;
39
39
  inputViewId: any;
40
40
  isHeader: boolean;
41
41
  set selectedViewId(value: any);
@@ -1,7 +1,7 @@
1
1
  import { OnInit } from '@angular/core';
2
2
  import { ToastrService } from 'ngx-toastr';
3
- import { ApplicationContentService } from '../../application-content.service';
4
3
  import { CommonService } from '../../common';
4
+ import { ApplicationContentService } from '../../application-content.service';
5
5
  import * as i0 from "@angular/core";
6
6
  export declare class CdrConfigComponent implements OnInit {
7
7
  private service;
@@ -39,6 +39,7 @@ export declare class CdrConfigComponent implements OnInit {
39
39
  createCDRConfig(): void;
40
40
  cancelCdrConfig(): void;
41
41
  deleteColume(i: any): void;
42
+ moveItemForColumns(index: number, direction: 'up' | 'down'): void;
42
43
  static ɵfac: i0.ɵɵFactoryDeclaration<CdrConfigComponent, never>;
43
44
  static ɵcmp: i0.ɵɵComponentDeclaration<CdrConfigComponent, "app-cdr-config", never, {}, {}, never, never, false>;
44
45
  }
@@ -23,6 +23,8 @@ export declare class DashChartComponent implements OnInit {
23
23
  displayType: string;
24
24
  formate: string;
25
25
  componentName: string;
26
+ displayDateFormat: string;
27
+ descendingOrder: boolean;
26
28
  dataConfig: {
27
29
  title: string;
28
30
  argumentField: string;
@@ -32,6 +32,7 @@ export declare class DashTableComponent implements OnInit {
32
32
  numberOfRow: number;
33
33
  tableHeight: string;
34
34
  pageInfo: boolean;
35
+ tableSortBy: any[];
35
36
  allowedPageSizes: number[];
36
37
  columns: any[];
37
38
  commonConfig: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gamma-app-controller",
3
- "version": "1.1.17",
3
+ "version": "1.1.19",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^14.0.0",
6
6
  "@angular/core": "^14.0.0",