@sunbird-cb/cbp-ai 0.0.1

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 (128) hide show
  1. package/README.md +24 -0
  2. package/esm2022/lib/ai-cbp-routing.module.mjs +56 -0
  3. package/esm2022/lib/ai-cbp.component.mjs +14 -0
  4. package/esm2022/lib/ai-cbp.module.mjs +263 -0
  5. package/esm2022/lib/ai-cbp.service.mjs +14 -0
  6. package/esm2022/lib/components/add-course/add-course.component.mjs +444 -0
  7. package/esm2022/lib/components/add-designation/add-designation.component.mjs +460 -0
  8. package/esm2022/lib/components/add-personalisation/add-personalisation.component.mjs +33 -0
  9. package/esm2022/lib/components/approval-request-form/approval-request-form.component.mjs +392 -0
  10. package/esm2022/lib/components/approval-requests/approval-requests.component.mjs +398 -0
  11. package/esm2022/lib/components/dashboard/dashboard.component.mjs +265 -0
  12. package/esm2022/lib/components/delete-role-mapping/delete-role-mapping.component.mjs +53 -0
  13. package/esm2022/lib/components/delete-role-mapping-popup/delete-role-mapping-popup.component.mjs +39 -0
  14. package/esm2022/lib/components/edit-cbp-plan/edit-cbp-plan.component.mjs +699 -0
  15. package/esm2022/lib/components/gap-analysis-recommended-course/gap-analysis-recommended-course.component.mjs +188 -0
  16. package/esm2022/lib/components/generate-course-recommendation/generate-course-recommendation.component.mjs +1949 -0
  17. package/esm2022/lib/components/list-popup/list-popup.component.mjs +32 -0
  18. package/esm2022/lib/components/review-request/review-request.component.mjs +138 -0
  19. package/esm2022/lib/components/role-mapping-generation/role-mapping-generation.component.mjs +1082 -0
  20. package/esm2022/lib/components/role-mapping-list/role-mapping-list.component.mjs +714 -0
  21. package/esm2022/lib/components/suggest-more-courses/suggest-more-courses.component.mjs +370 -0
  22. package/esm2022/lib/components/update-designation-hierarchy/update-designation-hierarchy.component.mjs +235 -0
  23. package/esm2022/lib/components/view-cbp-plan/view-cbp-plan.component.mjs +125 -0
  24. package/esm2022/lib/components/view-course-recommendation/view-course-recommendation.component.mjs +397 -0
  25. package/esm2022/lib/components/view-final-cbp-plan/view-final-cbp-plan.component.mjs +883 -0
  26. package/esm2022/lib/modules/initial-screen/initial-screen.component.mjs +127 -0
  27. package/esm2022/lib/modules/shared/constant/app.constant.mjs +2036 -0
  28. package/esm2022/lib/modules/shared/directives/clickoutside.directive.mjs +38 -0
  29. package/esm2022/lib/modules/shared/directives/directive.module.mjs +21 -0
  30. package/esm2022/lib/modules/shared/pipes/order-by-name.pipe.mjs +23 -0
  31. package/esm2022/lib/modules/shared/services/event.service.mjs +24 -0
  32. package/esm2022/lib/modules/shared/services/events.mjs +125 -0
  33. package/esm2022/lib/modules/shared/services/init.service.mjs +41 -0
  34. package/esm2022/lib/modules/shared/services/role-mapping.service.mjs +261 -0
  35. package/esm2022/lib/modules/shared/services/shared.service.mjs +869 -0
  36. package/esm2022/lib/modules/upload-document-page/progress-dialog/progress-dialog.component.mjs +53 -0
  37. package/esm2022/lib/modules/upload-document-page/upload-dialog/upload-dialog.component.mjs +186 -0
  38. package/esm2022/lib/modules/upload-document-page/upload-document-page.component.mjs +367 -0
  39. package/esm2022/lib/pipe-public-URL/pipe-public-URL.module.mjs +20 -0
  40. package/esm2022/lib/pipe-public-URL/pipe-public-URL.pipe.mjs +23 -0
  41. package/esm2022/public-api.mjs +14 -0
  42. package/esm2022/sunbird-cb-cbp-ai.mjs +5 -0
  43. package/fesm2022/sunbird-cb-cbp-ai.mjs +12952 -0
  44. package/fesm2022/sunbird-cb-cbp-ai.mjs.map +1 -0
  45. package/index.d.ts +6 -0
  46. package/lib/ai-cbp-routing.module.d.ts +8 -0
  47. package/lib/ai-cbp-routing.module.d.ts.map +1 -0
  48. package/lib/ai-cbp.component.d.ts +7 -0
  49. package/lib/ai-cbp.component.d.ts.map +1 -0
  50. package/lib/ai-cbp.module.d.ts +68 -0
  51. package/lib/ai-cbp.module.d.ts.map +1 -0
  52. package/lib/ai-cbp.service.d.ts +7 -0
  53. package/lib/ai-cbp.service.d.ts.map +1 -0
  54. package/lib/components/add-course/add-course.component.d.ts +67 -0
  55. package/lib/components/add-course/add-course.component.d.ts.map +1 -0
  56. package/lib/components/add-designation/add-designation.component.d.ts +52 -0
  57. package/lib/components/add-designation/add-designation.component.d.ts.map +1 -0
  58. package/lib/components/add-personalisation/add-personalisation.component.d.ts +16 -0
  59. package/lib/components/add-personalisation/add-personalisation.component.d.ts.map +1 -0
  60. package/lib/components/approval-request-form/approval-request-form.component.d.ts +48 -0
  61. package/lib/components/approval-request-form/approval-request-form.component.d.ts.map +1 -0
  62. package/lib/components/approval-requests/approval-requests.component.d.ts +80 -0
  63. package/lib/components/approval-requests/approval-requests.component.d.ts.map +1 -0
  64. package/lib/components/dashboard/dashboard.component.d.ts +55 -0
  65. package/lib/components/dashboard/dashboard.component.d.ts.map +1 -0
  66. package/lib/components/delete-role-mapping/delete-role-mapping.component.d.ts +18 -0
  67. package/lib/components/delete-role-mapping/delete-role-mapping.component.d.ts.map +1 -0
  68. package/lib/components/delete-role-mapping-popup/delete-role-mapping-popup.component.d.ts +18 -0
  69. package/lib/components/delete-role-mapping-popup/delete-role-mapping-popup.component.d.ts.map +1 -0
  70. package/lib/components/edit-cbp-plan/edit-cbp-plan.component.d.ts +94 -0
  71. package/lib/components/edit-cbp-plan/edit-cbp-plan.component.d.ts.map +1 -0
  72. package/lib/components/gap-analysis-recommended-course/gap-analysis-recommended-course.component.d.ts +35 -0
  73. package/lib/components/gap-analysis-recommended-course/gap-analysis-recommended-course.component.d.ts.map +1 -0
  74. package/lib/components/generate-course-recommendation/generate-course-recommendation.component.d.ts +198 -0
  75. package/lib/components/generate-course-recommendation/generate-course-recommendation.component.d.ts.map +1 -0
  76. package/lib/components/list-popup/list-popup.component.d.ts +13 -0
  77. package/lib/components/list-popup/list-popup.component.d.ts.map +1 -0
  78. package/lib/components/review-request/review-request.component.d.ts +39 -0
  79. package/lib/components/review-request/review-request.component.d.ts.map +1 -0
  80. package/lib/components/role-mapping-generation/role-mapping-generation.component.d.ts +99 -0
  81. package/lib/components/role-mapping-generation/role-mapping-generation.component.d.ts.map +1 -0
  82. package/lib/components/role-mapping-list/role-mapping-list.component.d.ts +83 -0
  83. package/lib/components/role-mapping-list/role-mapping-list.component.d.ts.map +1 -0
  84. package/lib/components/suggest-more-courses/suggest-more-courses.component.d.ts +48 -0
  85. package/lib/components/suggest-more-courses/suggest-more-courses.component.d.ts.map +1 -0
  86. package/lib/components/update-designation-hierarchy/update-designation-hierarchy.component.d.ts +41 -0
  87. package/lib/components/update-designation-hierarchy/update-designation-hierarchy.component.d.ts.map +1 -0
  88. package/lib/components/view-cbp-plan/view-cbp-plan.component.d.ts +29 -0
  89. package/lib/components/view-cbp-plan/view-cbp-plan.component.d.ts.map +1 -0
  90. package/lib/components/view-course-recommendation/view-course-recommendation.component.d.ts +49 -0
  91. package/lib/components/view-course-recommendation/view-course-recommendation.component.d.ts.map +1 -0
  92. package/lib/components/view-final-cbp-plan/view-final-cbp-plan.component.d.ts +73 -0
  93. package/lib/components/view-final-cbp-plan/view-final-cbp-plan.component.d.ts.map +1 -0
  94. package/lib/modules/initial-screen/initial-screen.component.d.ts +85 -0
  95. package/lib/modules/initial-screen/initial-screen.component.d.ts.map +1 -0
  96. package/lib/modules/shared/constant/app.constant.d.ts +457 -0
  97. package/lib/modules/shared/constant/app.constant.d.ts.map +1 -0
  98. package/lib/modules/shared/directives/clickoutside.directive.d.ts +13 -0
  99. package/lib/modules/shared/directives/clickoutside.directive.d.ts.map +1 -0
  100. package/lib/modules/shared/directives/directive.module.d.ts +8 -0
  101. package/lib/modules/shared/directives/directive.module.d.ts.map +1 -0
  102. package/lib/modules/shared/pipes/order-by-name.pipe.d.ts +8 -0
  103. package/lib/modules/shared/pipes/order-by-name.pipe.d.ts.map +1 -0
  104. package/lib/modules/shared/services/event.service.d.ts +12 -0
  105. package/lib/modules/shared/services/event.service.d.ts.map +1 -0
  106. package/lib/modules/shared/services/events.d.ts +200 -0
  107. package/lib/modules/shared/services/events.d.ts.map +1 -0
  108. package/lib/modules/shared/services/init.service.d.ts +13 -0
  109. package/lib/modules/shared/services/init.service.d.ts.map +1 -0
  110. package/lib/modules/shared/services/role-mapping.service.d.ts +21 -0
  111. package/lib/modules/shared/services/role-mapping.service.d.ts.map +1 -0
  112. package/lib/modules/shared/services/shared.service.d.ts +108 -0
  113. package/lib/modules/shared/services/shared.service.d.ts.map +1 -0
  114. package/lib/modules/upload-document-page/progress-dialog/progress-dialog.component.d.ts +14 -0
  115. package/lib/modules/upload-document-page/progress-dialog/progress-dialog.component.d.ts.map +1 -0
  116. package/lib/modules/upload-document-page/upload-dialog/upload-dialog.component.d.ts +29 -0
  117. package/lib/modules/upload-document-page/upload-dialog/upload-dialog.component.d.ts.map +1 -0
  118. package/lib/modules/upload-document-page/upload-document-page.component.d.ts +64 -0
  119. package/lib/modules/upload-document-page/upload-document-page.component.d.ts.map +1 -0
  120. package/lib/pipe-public-URL/pipe-public-URL.module.d.ts +9 -0
  121. package/lib/pipe-public-URL/pipe-public-URL.module.d.ts.map +1 -0
  122. package/lib/pipe-public-URL/pipe-public-URL.pipe.d.ts +11 -0
  123. package/lib/pipe-public-URL/pipe-public-URL.pipe.d.ts.map +1 -0
  124. package/package.json +28 -0
  125. package/public-api.d.ts +11 -0
  126. package/public-api.d.ts.map +1 -0
  127. package/sunbird-cb-cbp-ai-0.0.1.tgz +0 -0
  128. package/sunbird-cb-cbp-ai.d.ts.map +1 -0
@@ -0,0 +1,49 @@
1
+ import { MatDialog, MatDialogRef } from '@angular/material/dialog';
2
+ import { ElementRef } from '@angular/core';
3
+ import { MatSnackBar } from '@angular/material/snack-bar';
4
+ import { SharedService } from '../../modules/shared/services/shared.service';
5
+ import * as i0 from "@angular/core";
6
+ export declare class ViewCourseRecommendationComponent {
7
+ dialogRef: MatDialogRef<ViewCourseRecommendationComponent>;
8
+ data: any;
9
+ private sharedService;
10
+ private dialog;
11
+ private snackBar;
12
+ pdfContent: ElementRef;
13
+ planData: any;
14
+ loading: boolean;
15
+ recommended_course_id: string;
16
+ cbpPlanData: any;
17
+ suggestedCourses: any;
18
+ constructor(dialogRef: MatDialogRef<ViewCourseRecommendationComponent>, data: any, sharedService: SharedService, dialog: MatDialog, snackBar: MatSnackBar);
19
+ searchText: string;
20
+ filterdCourses: any;
21
+ selectFilterCourses: any;
22
+ competenciesCount: {
23
+ total: number;
24
+ public_courses: number;
25
+ igot: number;
26
+ };
27
+ expandedCompetencies: any;
28
+ isPDFDownload: boolean;
29
+ ngOnInit(): void;
30
+ updateCompetencyCounts(): void;
31
+ closeDialog(): void;
32
+ addMoreCourses(): void;
33
+ addPersonilisation(): void;
34
+ getSuggestedCourse(): void;
35
+ getUserCourse(): void;
36
+ getCompetenciesByType(type: string, index: any): any[];
37
+ getDisplayedCompetencies(type: string, index: number): any[];
38
+ toggleCompetencies(type: string, index: number): void;
39
+ isExpanded(type: string, index: number): boolean;
40
+ hasMoreThanTwo(type: string, index: number): boolean;
41
+ getRemainingCount(type: string, index: number): number;
42
+ downloadPDF(): void;
43
+ downloadPdfFromBE(): void;
44
+ confirmDeleteCourse(item: any, index: number): void;
45
+ deleteCard(item: any, index: number): void;
46
+ static ɵfac: i0.ɵɵFactoryDeclaration<ViewCourseRecommendationComponent, never>;
47
+ static ɵcmp: i0.ɵɵComponentDeclaration<ViewCourseRecommendationComponent, "app-view-course-recommendation", never, {}, {}, never, never, false, never>;
48
+ }
49
+ //# sourceMappingURL=view-course-recommendation.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"view-course-recommendation.component.d.ts","sourceRoot":"","sources":["../../../../../../library/sunbird-cb/cbp-ai/src/lib/components/view-course-recommendation/view-course-recommendation.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAmB,SAAS,EAAE,YAAY,EAAE,MAAM,0BAA0B,CAAC;AACpF,OAAO,EAAgC,UAAU,EAA6B,MAAM,eAAe,CAAC;AAEpG,OAAO,EAAE,WAAW,EAAE,MAAM,6BAA6B,CAAC;AAK1D,OAAO,EAAE,aAAa,EAAE,MAAM,8CAA8C,CAAC;;AAE7E,qBAKa,iCAAiC;IAOxB,SAAS,EAAE,YAAY,CAAC,iCAAiC,CAAC;IAC5C,IAAI,EAAE,GAAG;IAAE,OAAO,CAAC,aAAa;IAAiB,OAAO,CAAC,MAAM;IAAa,OAAO,CAAC,QAAQ;IAPlF,UAAU,EAAG,UAAU,CAAC;IACpE,QAAQ,EAAC,GAAG,CAAA;IACZ,OAAO,UAAM;IACb,qBAAqB,SAAG;IACxB,WAAW,EAAC,GAAG,CAAA;IACf,gBAAgB,EAAE,GAAG,CAAK;gBACN,SAAS,EAAE,YAAY,CAAC,iCAAiC,CAAC,EAC5C,IAAI,EAAE,GAAG,EAAU,aAAa,EAAE,aAAa,EAAU,MAAM,EAAE,SAAS,EAAU,QAAQ,EAAE,WAAW;IAG3I,UAAU,SAAK;IACf,cAAc,EAAE,GAAG,CAAA;IACnB,mBAAmB,EAAC,GAAG,CAAK;IAC5B,iBAAiB;;;;MAAsC;IACvD,oBAAoB,EAAE,GAAG,CAAM;IAC/B,aAAa,UAAQ;IACrB,QAAQ;IAsER,sBAAsB;IAUtB,WAAW;IAIX,cAAc;IA0Bd,kBAAkB;IA0BlB,kBAAkB;IAkClB,aAAa;IAmCb,qBAAqB,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,KAAA,GAAG,GAAG,EAAE;IAyDjD,wBAAwB,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,GAAG,EAAE;IAW5D,kBAAkB,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,IAAI;IAKrD,UAAU,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,OAAO;IAKhD,cAAc,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,OAAO;IAIpD,iBAAiB,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM;IAKtD,WAAW;IAwCb,iBAAiB;IAYjB,mBAAmB,CAAC,IAAI,EAAE,GAAG,EAAE,KAAK,EAAE,MAAM;IAgD5C,UAAU,CAAC,IAAI,EAAE,GAAG,EAAE,KAAK,EAAE,MAAM;yCAzZtB,iCAAiC;2CAAjC,iCAAiC;CA8a7C"}
@@ -0,0 +1,73 @@
1
+ import { ChangeDetectorRef, ElementRef } from '@angular/core';
2
+ import { MatDialog, MatDialogRef } from '@angular/material/dialog';
3
+ import { MatSnackBar } from '@angular/material/snack-bar';
4
+ import { FormBuilder, FormGroup } from '@angular/forms';
5
+ import { SharedService } from '../../modules/shared/services/shared.service';
6
+ import * as i0 from "@angular/core";
7
+ export declare class ViewFinalCbpPlanComponent {
8
+ dialogRef: MatDialogRef<ViewFinalCbpPlanComponent>;
9
+ data: any;
10
+ private dialog;
11
+ private cdr;
12
+ sharedService: SharedService;
13
+ private snackBar;
14
+ private fb;
15
+ constructor(dialogRef: MatDialogRef<ViewFinalCbpPlanComponent>, data: any, dialog: MatDialog, cdr: ChangeDetectorRef, sharedService: SharedService, snackBar: MatSnackBar, fb: FormBuilder);
16
+ filterForm: FormGroup;
17
+ languages: {
18
+ code: string;
19
+ label: string;
20
+ }[];
21
+ filteredLanguages: {
22
+ code: string;
23
+ label: string;
24
+ }[];
25
+ pdfContent: ElementRef;
26
+ loading: boolean;
27
+ designationData: any;
28
+ totalCompetencieObj: {
29
+ total: number;
30
+ behavioral: number;
31
+ functional: number;
32
+ domain: number;
33
+ };
34
+ pdfTrigger: boolean;
35
+ jsonData: any[];
36
+ filterdCourses: any[];
37
+ planData: any;
38
+ recommended_course_id: string;
39
+ expandedCompetencies: any;
40
+ competenciesCount: {
41
+ total: number;
42
+ public_courses: number;
43
+ igot: number;
44
+ };
45
+ openedFrom: string;
46
+ dialogContent: ElementRef;
47
+ closeDialog(): void;
48
+ cancelForm(): void;
49
+ saveRoleMapping(): void;
50
+ ngAfterViewInit(): void;
51
+ getMappingData(): void;
52
+ getCompetenciesByType(type: string, course: any): any[];
53
+ getDisplayedCompetencies(type: string, index: number): any[];
54
+ toggleCompetencies(type: string, index: number): void;
55
+ isExpanded(type: string, index: number): boolean;
56
+ hasMoreThanTwo(type: string, index: number): boolean;
57
+ getRemainingCount(type: string, index: number): number;
58
+ updateCompetencyCounts(): void;
59
+ confirmDeleteCourse(item: any, index: number): void;
60
+ deleteCard(item: any, index: number): void;
61
+ scrollToTop(): void;
62
+ downloadPDF(): void;
63
+ downloadPDFNew(): void;
64
+ generateExcel(jsonArray: any[], filename?: string): void;
65
+ downloadCSV(): void;
66
+ downloadPdfFromBE(context: string): void;
67
+ getSelectedCourses(department: any): any[];
68
+ applyFilters(): void;
69
+ filterList(value: string, type: string): void;
70
+ static ɵfac: i0.ɵɵFactoryDeclaration<ViewFinalCbpPlanComponent, never>;
71
+ static ɵcmp: i0.ɵɵComponentDeclaration<ViewFinalCbpPlanComponent, "app-view-final-cbp-plan", never, {}, {}, never, never, false, never>;
72
+ }
73
+ //# sourceMappingURL=view-final-cbp-plan.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"view-final-cbp-plan.component.d.ts","sourceRoot":"","sources":["../../../../../../library/sunbird-cb/cbp-ai/src/lib/components/view-final-cbp-plan/view-final-cbp-plan.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,iBAAiB,EAAE,UAAU,EAAqB,MAAM,eAAe,CAAC;AAC5F,OAAO,EAAmB,SAAS,EAAE,YAAY,EAAE,MAAM,0BAA0B,CAAC;AAIpF,OAAO,EAAE,WAAW,EAAE,MAAM,6BAA6B,CAAC;AAG1D,OAAO,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AACxD,OAAO,EAAE,aAAa,EAAE,MAAM,8CAA8C,CAAC;;AAC7E,qBAKa,yBAAyB;IAE3B,SAAS,EAAE,YAAY,CAAC,yBAAyB,CAAC;IACzB,IAAI,EAAE,GAAG;IACzC,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,GAAG;IACJ,aAAa,EAAE,aAAa;IACnC,OAAO,CAAC,QAAQ;IAChB,OAAO,CAAC,EAAE;gBANH,SAAS,EAAE,YAAY,CAAC,yBAAyB,CAAC,EACzB,IAAI,EAAE,GAAG,EACjC,MAAM,EAAE,SAAS,EACjB,GAAG,EAAE,iBAAiB,EACvB,aAAa,EAAE,aAAa,EAC3B,QAAQ,EAAE,WAAW,EACrB,EAAE,EAAE,WAAW;IAQzB,UAAU,EAAG,SAAS,CAAC;IACvB,SAAS;;;QAQ4B;IACrC,iBAAiB;;;QAAuB;IACI,UAAU,EAAG,UAAU,CAAC;IACpE,OAAO,UAAQ;IACf,eAAe,EAAE,GAAG,CAAK;IACzB,mBAAmB;;;;;MAAwD;IAC3E,UAAU,UAAQ;IAClB,QAAQ,QAAK;IACb,cAAc,QAAM;IACpB,QAAQ,EAAE,GAAG,CAAA;IACb,qBAAqB,SAAK;IAC1B,oBAAoB,EAAE,GAAG,CAAM;IAC/B,iBAAiB;;;;MAA4C;IAC7D,UAAU,EAAG,MAAM,CAAC;IACQ,aAAa,EAAG,UAAU,CAAC;IA6EvD,WAAW;IAIX,UAAU;IAIV,eAAe;IAIf,eAAe;IAoBf,cAAc;IA8Yd,qBAAqB,CAAC,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,GAAG,GAAG,EAAE;IAsCvD,wBAAwB,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,GAAG,EAAE;IAW5D,kBAAkB,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,IAAI;IAKrD,UAAU,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,OAAO;IAKhD,cAAc,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,OAAO;IAGpD,iBAAiB,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM;IAItD,sBAAsB;IAUtB,mBAAmB,CAAC,IAAI,EAAE,GAAG,EAAE,KAAK,EAAE,MAAM;IA+C5C,UAAU,CAAC,IAAI,EAAE,GAAG,EAAE,KAAK,EAAE,MAAM;IAsBnC,WAAW,IAAI,IAAI;IAanB,WAAW;IAyGX,cAAc;IAoCd,aAAa,CAAC,SAAS,EAAE,GAAG,EAAE,EAAE,QAAQ,GAAE,MAAqB;IAoI/D,WAAW;IAUX,iBAAiB,CAAC,OAAO,EAAE,MAAM;IAcjC,kBAAkB,CAAC,UAAU,EAAE,GAAG,GAAG,GAAG,EAAE;IAW1C,YAAY;IAIZ,UAAU,CAAC,KAAK,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM;yCAx/B3B,yBAAyB;2CAAzB,yBAAyB;CAmgCrC"}
@@ -0,0 +1,85 @@
1
+ import { MatSnackBar } from '@angular/material/snack-bar';
2
+ import { Router } from '@angular/router';
3
+ import { EventService } from '../shared/services/event.service';
4
+ import { SharedService } from '../shared/services/shared.service';
5
+ import * as i0 from "@angular/core";
6
+ export declare class InitialScreenComponent {
7
+ private eventSvc;
8
+ sharedService: SharedService;
9
+ snackBar: MatSnackBar;
10
+ private router;
11
+ headerData: {
12
+ welcome: {
13
+ welcomeText: string;
14
+ imageUrl: string;
15
+ };
16
+ karmayogiBtn: {
17
+ text: string;
18
+ link: string;
19
+ display: boolean;
20
+ };
21
+ donloadBtn: {
22
+ text: string;
23
+ link: string;
24
+ display: boolean;
25
+ };
26
+ btns: {
27
+ text: string;
28
+ link: string;
29
+ type: string;
30
+ language: string;
31
+ }[];
32
+ navHeader: {
33
+ karmayogiBharath: {
34
+ imgSrc: string;
35
+ link: string;
36
+ };
37
+ navButtons: {
38
+ text: string;
39
+ link: string;
40
+ fragment: string;
41
+ }[];
42
+ loginBtn: {
43
+ text: string;
44
+ link: string;
45
+ };
46
+ registerBtn: {
47
+ text: string;
48
+ link: string;
49
+ };
50
+ contactLink: {
51
+ text: string;
52
+ link: string;
53
+ fragment: string;
54
+ };
55
+ };
56
+ };
57
+ title: string;
58
+ isMaintenancePage: any;
59
+ selectedValue: string;
60
+ searchText: string;
61
+ dataSource: any;
62
+ displayedColumns: string[];
63
+ selectedMinistryType: string;
64
+ ministryData: any;
65
+ ministryFullData: any;
66
+ sectorData: {
67
+ value: string;
68
+ }[];
69
+ formData: {};
70
+ nextStep: string;
71
+ loginSuccess: boolean;
72
+ cbpFinalObj: any;
73
+ userEmail: string;
74
+ constructor(eventSvc: EventService, sharedService: SharedService, snackBar: MatSnackBar, router: Router);
75
+ ngOnInit(): void;
76
+ successRoleMapping(event: any): void;
77
+ alreadyAvailableRoleMapping(event: any): void;
78
+ moveToInitialScreen(event: any): void;
79
+ loginSuccessStatus(event: any): void;
80
+ logout(): void;
81
+ goToUploadDocument(): void;
82
+ static ɵfac: i0.ɵɵFactoryDeclaration<InitialScreenComponent, never>;
83
+ static ɵcmp: i0.ɵɵComponentDeclaration<InitialScreenComponent, "initial-screen", never, {}, {}, never, never, false, never>;
84
+ }
85
+ //# sourceMappingURL=initial-screen.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"initial-screen.component.d.ts","sourceRoot":"","sources":["../../../../../../library/sunbird-cb/cbp-ai/src/lib/modules/initial-screen/initial-screen.component.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,MAAM,6BAA6B,CAAC;AAC1D,OAAO,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AAEzC,OAAO,EAAE,YAAY,EAAE,MAAM,kCAAkC,CAAC;AAChE,OAAO,EAAE,aAAa,EAAE,MAAM,mCAAmC,CAAC;;AAClE,qBAKa,sBAAsB;IAuC/B,OAAO,CAAC,QAAQ;IACT,aAAa,EAAE,aAAa;IAC9B,QAAQ,EAAE,WAAW;IAC5B,OAAO,CAAC,MAAM;IAzCd,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAAe;IACzB,KAAK,SAA0B;IAC/B,iBAAiB,EAAE,GAAG,CAAA;IACtB,aAAa,SAAK;IAClB,UAAU,SAAK;IACf,UAAU,EAAE,GAAG,CAAA;IACf,gBAAgB,EAAE,MAAM,EAAE,CAC0C;IAClE,oBAAoB,EAAE,MAAM,CAAY;IACxC,YAAY,EAAC,GAAG,CAAK;IACvB,gBAAgB,EAAC,GAAG,CAAK;IACzB,UAAU;;QAoBT;IACD,QAAQ,EAAE,EAAE,CAAA;IACZ,QAAQ,SAAY;IACpB,YAAY,UAAQ;IACpB,WAAW,EAAC,GAAG,CAAK;IACpB,SAAS,SAAK;gBAEJ,QAAQ,EAAE,YAAY,EACvB,aAAa,EAAE,aAAa,EAC9B,QAAQ,EAAE,WAAW,EACpB,MAAM,EAAE,MAAM;IAKtB,QAAQ;IA0BR,kBAAkB,CAAC,KAAK,KAAA;IAMxB,2BAA2B,CAAC,KAAK,KAAA;IAQjC,mBAAmB,CAAC,KAAK,KAAA;IASzB,kBAAkB,CAAC,KAAK,KAAA;IAKxB,MAAM;IAoBN,kBAAkB;yCAzHP,sBAAsB;2CAAtB,sBAAsB;CA8HlC"}
@@ -0,0 +1,457 @@
1
+ export declare const HEADER_DATA: {
2
+ welcome: {
3
+ welcomeText: string;
4
+ imageUrl: string;
5
+ };
6
+ karmayogiBtn: {
7
+ text: string;
8
+ link: string;
9
+ display: boolean;
10
+ };
11
+ donloadBtn: {
12
+ text: string;
13
+ link: string;
14
+ display: boolean;
15
+ };
16
+ btns: {
17
+ text: string;
18
+ link: string;
19
+ type: string;
20
+ language: string;
21
+ }[];
22
+ navHeader: {
23
+ karmayogiBharath: {
24
+ imgSrc: string;
25
+ link: string;
26
+ };
27
+ navButtons: {
28
+ text: string;
29
+ link: string;
30
+ fragment: string;
31
+ }[];
32
+ loginBtn: {
33
+ text: string;
34
+ link: string;
35
+ };
36
+ registerBtn: {
37
+ text: string;
38
+ link: string;
39
+ };
40
+ contactLink: {
41
+ text: string;
42
+ link: string;
43
+ fragment: string;
44
+ };
45
+ };
46
+ };
47
+ export declare const DASHBOARD_ANALYTICS_LIST: {
48
+ dashboaredHeader: string;
49
+ analyticsList: {
50
+ imgSrc: string;
51
+ count: string;
52
+ description: string;
53
+ alt: string;
54
+ id: string;
55
+ }[];
56
+ }[];
57
+ export declare const FEATURES_COURSES: {
58
+ header: {
59
+ headerText: string;
60
+ type: string;
61
+ showAll: string;
62
+ };
63
+ dataList: any[];
64
+ };
65
+ export declare const TESTIMONIALS: {
66
+ header: {
67
+ headerText: string;
68
+ type: string;
69
+ };
70
+ dataList: {
71
+ posterImage: string;
72
+ name: string;
73
+ description: string;
74
+ desig: string;
75
+ }[];
76
+ };
77
+ export declare const NEWSROOM_COURSES: {
78
+ header: {
79
+ headerText: string;
80
+ type: string;
81
+ };
82
+ dataList: any[];
83
+ localDataList: {
84
+ posterImage: string;
85
+ name: string;
86
+ downloadLink: string;
87
+ button: string;
88
+ }[];
89
+ };
90
+ export declare const TOP_PROVIDERS: {
91
+ header: {
92
+ headerText: string;
93
+ type: string;
94
+ };
95
+ topProvidersList: {
96
+ posterImage: string;
97
+ name: string;
98
+ clientUrl: string;
99
+ }[];
100
+ };
101
+ export declare const ABOUT_US: {
102
+ header: {
103
+ headerText: string;
104
+ p1: string;
105
+ p2: string;
106
+ p3: string;
107
+ type: string;
108
+ };
109
+ dataList: {
110
+ image: string;
111
+ }[];
112
+ };
113
+ export declare const VIDEO_CONF: {
114
+ title: string;
115
+ thumbnail: string;
116
+ text: string;
117
+ date: string;
118
+ time: string;
119
+ button: string;
120
+ joinLink: string;
121
+ technicalSupport: string;
122
+ plsContact: string;
123
+ };
124
+ export declare const PHOTO_GALLARY: {
125
+ header: {
126
+ headerText: string;
127
+ type: string;
128
+ };
129
+ galleryList: ({
130
+ name: string;
131
+ src: string;
132
+ cloudStorageKey?: undefined;
133
+ } | {
134
+ name: string;
135
+ cloudStorageKey: string;
136
+ src?: undefined;
137
+ })[];
138
+ };
139
+ export declare const IGON_VISION_DETAILS: {
140
+ vision: {
141
+ imgUrl: string;
142
+ alt: string;
143
+ };
144
+ videos: {
145
+ poster: string;
146
+ videoLink: string;
147
+ line1: string;
148
+ line2: string;
149
+ line3: string;
150
+ }[];
151
+ };
152
+ export declare const CONFERENCE_DATA: {
153
+ title: string;
154
+ description: string;
155
+ workdays: string;
156
+ timings: string;
157
+ joinNow: string;
158
+ };
159
+ export declare const REGISTER_DETAILS: {
160
+ lineOne: string;
161
+ lineTwo: string;
162
+ lineThree: string;
163
+ registerBtn: {
164
+ text: string;
165
+ link: string;
166
+ };
167
+ };
168
+ export declare const SOLUTIONS_SPACE: {
169
+ solutionSpaceHeader: {
170
+ lineOne: string;
171
+ lineTwo: string;
172
+ };
173
+ solutionSpacesList: {
174
+ name: string;
175
+ description: string;
176
+ imgSrc: string;
177
+ }[];
178
+ };
179
+ export declare const QUICK_WALKTHROUGH_DETAILS: {
180
+ videoLink: string;
181
+ lineOne: string;
182
+ lineTwo: string;
183
+ lineThree: string;
184
+ lineFour: string;
185
+ lineFive: string;
186
+ };
187
+ export declare const MOBILE_APP_DOWNLOADS_DETAILS: {
188
+ download: string;
189
+ iGOT: string;
190
+ karmayogi: string;
191
+ mobile: string;
192
+ app: string;
193
+ description: string;
194
+ scanners: {
195
+ link: string;
196
+ imgSrc: string;
197
+ scannerSrc: string;
198
+ text: string;
199
+ }[];
200
+ mockupImgSrc: string;
201
+ };
202
+ export declare const MOBILE_VIEW_APP_DOWNLOADS_DETAILS: {
203
+ googleStore: {
204
+ imgSrc: string;
205
+ link: string;
206
+ };
207
+ appleStore: {
208
+ imgSrc: string;
209
+ link: string;
210
+ };
211
+ lineOne: string;
212
+ lineTwo: string;
213
+ };
214
+ export declare const NAV_FOOTER_DETAILS: {
215
+ navLinks: (({
216
+ href: string;
217
+ target: string;
218
+ router: string;
219
+ name: string;
220
+ application?: undefined;
221
+ } | {
222
+ href: string;
223
+ target: string;
224
+ name: string;
225
+ application: string;
226
+ router?: undefined;
227
+ })[] | {
228
+ href: string;
229
+ target: string;
230
+ name: string;
231
+ }[])[];
232
+ followUs: string;
233
+ copyRights: string;
234
+ copyRightMobile: string;
235
+ };
236
+ export declare const NAV_FOOTER_DETAILS_MOBILE: {
237
+ support: ({
238
+ href: string;
239
+ target: string;
240
+ name: string;
241
+ application: string;
242
+ router?: undefined;
243
+ } | {
244
+ href: string;
245
+ target: string;
246
+ router: string;
247
+ name: string;
248
+ application?: undefined;
249
+ })[];
250
+ releated: ({
251
+ href: string;
252
+ target: string;
253
+ router: string;
254
+ name: string;
255
+ application?: undefined;
256
+ } | {
257
+ href: string;
258
+ target: string;
259
+ name: string;
260
+ application: string;
261
+ router?: undefined;
262
+ } | {
263
+ href: string;
264
+ target: string;
265
+ name: string;
266
+ router?: undefined;
267
+ application?: undefined;
268
+ })[];
269
+ followUs: string;
270
+ copyRights: string;
271
+ copyRightMobile: string;
272
+ };
273
+ export declare const FOOTER_DETAILS: {
274
+ copyRights: string;
275
+ };
276
+ export declare const HOW_TO_CARD_LIST: {
277
+ header: {
278
+ headerText: string;
279
+ type: string;
280
+ };
281
+ dataList: {
282
+ title: string;
283
+ link: string;
284
+ icon: string;
285
+ }[];
286
+ };
287
+ export declare const INFOCUS_CARD: {
288
+ videoCategory: string;
289
+ header: {
290
+ headerText: string;
291
+ type: string;
292
+ };
293
+ dataList: {}[];
294
+ }[];
295
+ export declare const WHAT_IS_CARD: {
296
+ header: {
297
+ headerText: string;
298
+ type: string;
299
+ };
300
+ dataList: {
301
+ id: string;
302
+ imgSrc: string;
303
+ name: string;
304
+ link: string;
305
+ }[];
306
+ };
307
+ export declare const FOOTER_PROVIDER: {
308
+ href: string;
309
+ src: string;
310
+ }[];
311
+ export declare const STAT_ARR: {
312
+ icon: string;
313
+ count: string;
314
+ name: string;
315
+ }[];
316
+ export declare const SOCIAL_LINKS: {
317
+ active: boolean;
318
+ href_url: string;
319
+ name: string;
320
+ src: string;
321
+ }[];
322
+ export declare const LANGUAGES: {
323
+ value: string;
324
+ key: string;
325
+ }[];
326
+ export declare const ORGANISATION_PARTNERS: {
327
+ header: {
328
+ headerText: string;
329
+ type: string;
330
+ };
331
+ dataList: {
332
+ id: string;
333
+ text: string;
334
+ }[];
335
+ };
336
+ export declare const FAQ_CHATBOT: {
337
+ FaqTitle: string;
338
+ };
339
+ export declare const KARMAYOGI_CORNER: {
340
+ title: string;
341
+ };
342
+ export declare const ABOUT_KARMAYOGI: {
343
+ header: {
344
+ headerText: string;
345
+ };
346
+ about: {
347
+ image: {
348
+ imageLink: string;
349
+ imageHeader: string;
350
+ };
351
+ aboutUs: string[];
352
+ karmayogiVisions: {
353
+ iconLink: string;
354
+ iconClass: string;
355
+ header: string;
356
+ description: string;
357
+ }[];
358
+ };
359
+ };
360
+ export declare const KARMAYOGI_FUNCTIONS: {
361
+ header: string;
362
+ functions: {
363
+ iconLink: string;
364
+ description: string;
365
+ }[];
366
+ };
367
+ export declare const KARMAYOGI_TEAM: {
368
+ header: string;
369
+ categories: {
370
+ tabName: string;
371
+ tabId: string;
372
+ teamMembers: {
373
+ memberName: string;
374
+ imageLink: string;
375
+ roles: string;
376
+ socialMedia: {
377
+ iconLink: string;
378
+ navigationLink: string;
379
+ }[];
380
+ }[];
381
+ }[];
382
+ };
383
+ export declare const TENDERS: {
384
+ header: {
385
+ headerText: string;
386
+ downloadPdf: string;
387
+ };
388
+ };
389
+ export declare const NOTIFICATIONS: {
390
+ header: {
391
+ headerText: string;
392
+ downloadPdf: string;
393
+ };
394
+ };
395
+ export declare const CAREER: {
396
+ header: {
397
+ headerText: string;
398
+ p1: string;
399
+ p2: string;
400
+ headerPosition: string;
401
+ };
402
+ fieldText: {
403
+ f1: string;
404
+ f2: string;
405
+ f3: string;
406
+ btn1: string;
407
+ btn2: string;
408
+ downloadPdf: string;
409
+ };
410
+ placeholderText: {
411
+ p1: string;
412
+ p2: string;
413
+ p3: string;
414
+ };
415
+ dataList: {
416
+ image: string;
417
+ }[];
418
+ };
419
+ export declare const CONTACTUS: {
420
+ header: {
421
+ headertext1: string;
422
+ headerText2: string;
423
+ };
424
+ fieldText: {
425
+ f1: string;
426
+ f2: string;
427
+ f3: string;
428
+ f4: string;
429
+ f5: string;
430
+ f6: string;
431
+ btn: string;
432
+ };
433
+ contact: {
434
+ h1: string;
435
+ address: string;
436
+ mail: string;
437
+ number: string;
438
+ mailtext: string;
439
+ numbertext: string;
440
+ duration: string;
441
+ slot: string;
442
+ action: string;
443
+ };
444
+ placeholder: {
445
+ placeholderText1: string;
446
+ placeholderText2: string;
447
+ placeholderText3: string;
448
+ placeholderText4: string;
449
+ placeholderText5: string;
450
+ };
451
+ };
452
+ export declare const TENDERS_KARMAYOGI: {
453
+ header: {
454
+ headerText: string;
455
+ };
456
+ };
457
+ //# sourceMappingURL=app.constant.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"app.constant.d.ts","sourceRoot":"","sources":["../../../../../../../library/sunbird-cb/cbp-ai/src/lib/modules/shared/constant/app.constant.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgFvB,CAAA;AAED,eAAO,MAAM,wBAAwB;;;;;;;;;GAqCpC,CAAA;AAED,eAAO,MAAM,gBAAgB;;;;;;;CAQ5B,CAAA;AAED,eAAO,MAAM,YAAY;;;;;;;;;;;CAqCxB,CAAA;AAED,eAAO,MAAM,gBAAgB;;;;;;;;;;;;CA4I5B,CAAA;AAED,eAAO,MAAM,aAAa;;;;;;;;;;CA+CzB,CAAA;AAED,eAAO,MAAM,QAAQ;;;;;;;;;;;CAYpB,CAAA;AAED,eAAO,MAAM,UAAU;;;;;;;;;;CAUtB,CAAA;AAED,eAAO,MAAM,aAAa;;;;;;;;;;;;;;CA8BzB,CAAA;AAED,eAAO,MAAM,mBAAmB;;;;;;;;;;;;CAsB/B,CAAA;AACD,eAAO,MAAM,eAAe;;;;;;CAM3B,CAAA;AAED,eAAO,MAAM,gBAAgB;;;;;;;;CAQ5B,CAAA;AAED,eAAO,MAAM,eAAe;;;;;;;;;;CAgC3B,CAAA;AAED,eAAO,MAAM,yBAAyB;;;;;;;CAOrC,CAAA;AAED,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;CAsBxC,CAAA;AAED,eAAO,MAAM,iCAAiC;;;;;;;;;;;CAW7C,CAAA;AAED,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;CAuE9B,CAAA;AACD,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAiErC,CAAA;AAED,eAAO,MAAM,cAAc;;CAE1B,CAAA;AAED,eAAO,MAAM,gBAAgB;;;;;;;;;;CAgB5B,CAAA;AAED,eAAO,MAAM,YAAY;;;;;;;GAWvB,CAAA;AAEF,eAAO,MAAM,YAAY;;;;;;;;;;;CAwBxB,CAAA;AAED,eAAO,MAAM,eAAe;;;GAU3B,CAAC;AAEF,eAAO,MAAM,QAAQ;;;;GAMpB,CAAA;AAED,eAAO,MAAM,YAAY;;;;;GAMxB,CAAC;AAEF,eAAO,MAAM,SAAS;;;GAmDrB,CAAA;AAED,eAAO,MAAM,qBAAqB;;;;;;;;;CA2BjC,CAAA;AAED,eAAO,MAAM,WAAW;;CAEvB,CAAA;AACD,eAAO,MAAM,gBAAgB;;CAE5B,CAAA;AAED,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;CA8B3B,CAAA;AAED,eAAO,MAAM,mBAAmB;;;;;;CAwC/B,CAAA;AAED,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;CAojC1B,CAAA;AAED,eAAO,MAAM,OAAO;;;;;CAKnB,CAAA;AAED,eAAO,MAAM,aAAa;;;;;CAKzB,CAAA;AAGD,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;CA0BlB,CAAA;AAGD,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgCrB,CAAA;AACD,eAAO,MAAM,iBAAiB;;;;CAI7B,CAAA"}
@@ -0,0 +1,13 @@
1
+ import { ElementRef, EventEmitter, OnInit } from "@angular/core";
2
+ import * as i0 from "@angular/core";
3
+ export declare class ClickOutsideDirective implements OnInit {
4
+ private elRef;
5
+ clickOutside: EventEmitter<any>;
6
+ captured: boolean;
7
+ constructor(elRef: ElementRef);
8
+ onClick(target: any): void;
9
+ ngOnInit(): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<ClickOutsideDirective, never>;
11
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ClickOutsideDirective, "[clickOutside]", never, {}, { "clickOutside": "clickOutside"; }, never, never, false, never>;
12
+ }
13
+ //# sourceMappingURL=clickoutside.directive.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"clickoutside.directive.d.ts","sourceRoot":"","sources":["../../../../../../../library/sunbird-cb/cbp-ai/src/lib/modules/shared/directives/clickoutside.directive.ts"],"names":[],"mappings":"AAAA,OAAO,EAEH,UAAU,EAEV,YAAY,EAEZ,MAAM,EACP,MAAM,eAAe,CAAC;;AAIvB,qBAGa,qBAAsB,YAAW,MAAM;IAKtC,OAAO,CAAC,KAAK;IAJf,YAAY,oBAAsB;IAE5C,QAAQ,UAAS;gBAEG,KAAK,EAAE,UAAU;IAGrC,OAAO,CAAC,MAAM,EAAE,GAAG;IAUnB,QAAQ;yCAlBG,qBAAqB;2CAArB,qBAAqB;CAuBjC"}