@bnsights/bbsf-admin-portal 1.0.0 → 1.0.5

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 (155) hide show
  1. package/bnsights-bbsf-admin-portal-1.0.5.tgz +0 -0
  2. package/bundles/bnsights-bbsf-admin-portal.umd.js +19694 -20386
  3. package/bundles/bnsights-bbsf-admin-portal.umd.js.map +1 -1
  4. package/esm2015/lib/Pages/_layout/components/aside/aside-menu/aside-menu.component.js +2 -2
  5. package/esm2015/lib/Pages/account/account-routing.module.js +3 -1
  6. package/esm2015/lib/Pages/account/account.component.js +15 -6
  7. package/esm2015/lib/Pages/account/account.module.js +16 -8
  8. package/esm2015/lib/Pages/account/forgot-password/forgot-password.component.js +48 -0
  9. package/esm2015/lib/Pages/configurations/configuration/configuration.component.js +392 -387
  10. package/esm2015/lib/Pages/core/authentication/auth.service.js +1 -2
  11. package/esm2015/lib/Pages/departments/department/department.component.js +59 -98
  12. package/esm2015/lib/Pages/departments/department-info/department-info.component.js +85 -94
  13. package/esm2015/lib/Pages/departments/departments.module.js +4 -1
  14. package/esm2015/lib/Pages/helpCenter/help-center/help-center.component.js +224 -223
  15. package/esm2015/lib/Pages/helpCenter/help-center-secondlevel/help-center-secondlevel.component.js +137 -146
  16. package/esm2015/lib/Pages/helpCenter/help-center-thirdlevel/help-center-thirdlevel.component.js +136 -153
  17. package/esm2015/lib/Pages/home/home.component.js +32 -26
  18. package/esm2015/lib/Pages/home/home.module.js +5 -10
  19. package/esm2015/lib/Pages/impersonation-rules/impersonation-rules/impersonation-rules.component.js +336 -317
  20. package/esm2015/lib/Pages/jobs/jobs/jobs.component.js +168 -227
  21. package/esm2015/lib/Pages/license/license/license.component.js +68 -99
  22. package/esm2015/lib/Pages/localizations/localizations.component.js +378 -341
  23. package/esm2015/lib/Pages/logs/log/log.component.js +18 -27
  24. package/esm2015/lib/Pages/lookups/lookup/lookup.component.js +297 -288
  25. package/esm2015/lib/Pages/lookups/lookup-group/lookup-group.component.js +143 -165
  26. package/esm2015/lib/Pages/lookups/lookup-item/lookup-item.component.js +234 -233
  27. package/esm2015/lib/Pages/lookups/lookups-routing.module.js +2 -2
  28. package/esm2015/lib/Pages/notifications/add/add.component.js +83 -76
  29. package/esm2015/lib/Pages/notifications/edit/edit.component.js +60 -63
  30. package/esm2015/lib/Pages/notifications/edit-email/edit-email.component.js +128 -126
  31. package/esm2015/lib/Pages/notifications/edit-sms/edit-sms.component.js +87 -85
  32. package/esm2015/lib/Pages/notifications/master-layouts/master-layouts.component.js +57 -58
  33. package/esm2015/lib/Pages/notifications/notifications-routing.module.js +1 -3
  34. package/esm2015/lib/Pages/notifications/notifications.module.js +3 -4
  35. package/esm2015/lib/Pages/notifications/template-info/template-info.component.js +232 -228
  36. package/esm2015/lib/Pages/notifications/templates/templates.component.js +347 -310
  37. package/esm2015/lib/Pages/providers/provider/provider.component.js +54 -52
  38. package/esm2015/lib/Pages/publicHolidays/public-holiday/public-holiday.component.js +268 -270
  39. package/esm2015/lib/Pages/roles/permission-set-info/permission-set-info.component.js +136 -152
  40. package/esm2015/lib/Pages/roles/permissions/permissions.component.js +182 -218
  41. package/esm2015/lib/Pages/roles/permissionsets/permissionsets.component.js +219 -254
  42. package/esm2015/lib/Pages/sectors/department-info/department-info.component.js +134 -142
  43. package/esm2015/lib/Pages/sectors/sector/sector.component.js +127 -144
  44. package/esm2015/lib/Pages/sectors/sector-info/sector-info.component.js +123 -139
  45. package/esm2015/lib/Pages/shared/Enums/ConfigurationScope.js +8 -0
  46. package/esm2015/lib/Pages/shared/Enums/ConfigurationType.js +8 -0
  47. package/esm2015/lib/Pages/shared/Enums/ConfigurationValueSource.js +6 -0
  48. package/esm2015/lib/Pages/shared/Enums/ParticipantType.js +8 -0
  49. package/esm2015/lib/Pages/shared/Services/AccountService.service.js +21 -0
  50. package/esm2015/lib/Pages/shared/Services/ConfigurationsService.service.js +15 -12
  51. package/esm2015/lib/Pages/shared/Services/DepartmentService.service.js +5 -8
  52. package/esm2015/lib/Pages/shared/Services/EmailHeaderAndFooterTemplateService.Service.js +10 -9
  53. package/esm2015/lib/Pages/shared/Services/HelpCenterService.service.js +10 -7
  54. package/esm2015/lib/Pages/shared/Services/ImpersonationRuleService.service.js +14 -8
  55. package/esm2015/lib/Pages/shared/Services/LicenseService.service.js +3 -3
  56. package/esm2015/lib/Pages/shared/Services/LogsService.js +1 -1
  57. package/esm2015/lib/Pages/shared/Services/LookupGroupsService.service.js +11 -5
  58. package/esm2015/lib/Pages/shared/Services/LookupService.service.js +31 -15
  59. package/esm2015/lib/Pages/shared/Services/PermissionSetService.service.js +18 -8
  60. package/esm2015/lib/Pages/shared/Services/PermissionsService.service.js +12 -9
  61. package/esm2015/lib/Pages/shared/Services/PublicHolidayService.service.js +9 -3
  62. package/esm2015/lib/Pages/shared/Services/SectorService.service.js +18 -13
  63. package/esm2015/lib/Pages/shared/Services/TemplateService.service.js +36 -29
  64. package/esm2015/lib/Pages/shared/Services/localizationsService.service .js +23 -13
  65. package/esm2015/lib/Pages/shared/Services/provider.service.js +5 -7
  66. package/esm2015/lib/Pages/shared/Services/userService.service.js +10 -2
  67. package/esm2015/lib/Pages/shared/models/AccountModels/forgotPasswordModel.js +6 -0
  68. package/esm2015/lib/Pages/shared/models/ConfigurationModels/ConfigurationModel.js +1 -1
  69. package/esm2015/lib/Pages/shared/models/DepartmentModels/DepartmentUsersIDRequestModel.js +1 -1
  70. package/esm2015/lib/Pages/shared/models/ImpersonationRuleModels/ImpersonationRuleModel.js +1 -1
  71. package/esm2015/lib/Pages/shared/models/Lookups/LookupItem.js +1 -1
  72. package/esm2015/lib/Pages/shared/models/Lookups/LookupModel.js +1 -2
  73. package/esm2015/lib/Pages/shared/models/PermissionsModels/PermissionSetUsersIDRequestModel.js +1 -1
  74. package/esm2015/lib/Pages/shared/models/SectorModels/SectorDepartmentModel.js +1 -1
  75. package/esm2015/lib/Pages/users/users.component.js +398 -409
  76. package/esm2015/lib/masterlayout-routing.module.js +5 -4
  77. package/esm2015/lib/masterlayout.component.js +22 -32
  78. package/esm2015/lib/masterlayout.module.js +25 -19
  79. package/fesm2015/bnsights-bbsf-admin-portal.js +17295 -17401
  80. package/fesm2015/bnsights-bbsf-admin-portal.js.map +1 -1
  81. package/lib/Pages/account/account.component.d.ts +5 -1
  82. package/lib/Pages/account/account.module.d.ts +8 -6
  83. package/lib/Pages/account/forgot-password/forgot-password.component.d.ts +20 -0
  84. package/lib/Pages/configurations/configuration/configuration.component.d.ts +39 -31
  85. package/lib/Pages/departments/department/department.component.d.ts +19 -15
  86. package/lib/Pages/departments/department-info/department-info.component.d.ts +31 -28
  87. package/lib/Pages/helpCenter/help-center/help-center.component.d.ts +34 -32
  88. package/lib/Pages/helpCenter/help-center-secondlevel/help-center-secondlevel.component.d.ts +31 -34
  89. package/lib/Pages/helpCenter/help-center-thirdlevel/help-center-thirdlevel.component.d.ts +30 -35
  90. package/lib/Pages/home/home.component.d.ts +4 -4
  91. package/lib/Pages/impersonation-rules/impersonation-rules/impersonation-rules.component.d.ts +43 -42
  92. package/lib/Pages/jobs/jobs/jobs.component.d.ts +56 -62
  93. package/lib/Pages/license/license/license.component.d.ts +25 -23
  94. package/lib/Pages/localizations/localizations.component.d.ts +77 -65
  95. package/lib/Pages/logs/log/log.component.d.ts +7 -11
  96. package/lib/Pages/lookups/lookup/lookup.component.d.ts +64 -59
  97. package/lib/Pages/lookups/lookup-group/lookup-group.component.d.ts +44 -45
  98. package/lib/Pages/lookups/lookup-item/lookup-item.component.d.ts +62 -56
  99. package/lib/Pages/notifications/add/add.component.d.ts +13 -11
  100. package/lib/Pages/notifications/edit/edit.component.d.ts +14 -14
  101. package/lib/Pages/notifications/edit-email/edit-email.component.d.ts +18 -20
  102. package/lib/Pages/notifications/edit-sms/edit-sms.component.d.ts +15 -16
  103. package/lib/Pages/notifications/master-layouts/master-layouts.component.d.ts +24 -25
  104. package/lib/Pages/notifications/notifications.module.d.ts +15 -16
  105. package/lib/Pages/notifications/template-info/template-info.component.d.ts +32 -32
  106. package/lib/Pages/notifications/templates/templates.component.d.ts +54 -46
  107. package/lib/Pages/providers/provider/provider.component.d.ts +13 -12
  108. package/lib/Pages/publicHolidays/public-holiday/public-holiday.component.d.ts +29 -27
  109. package/lib/Pages/roles/permission-set-info/permission-set-info.component.d.ts +39 -40
  110. package/lib/Pages/roles/permissions/permissions.component.d.ts +49 -54
  111. package/lib/Pages/roles/permissionsets/permissionsets.component.d.ts +53 -55
  112. package/lib/Pages/sectors/department-info/department-info.component.d.ts +41 -44
  113. package/lib/Pages/sectors/sector/sector.component.d.ts +35 -33
  114. package/lib/Pages/sectors/sector-info/sector-info.component.d.ts +40 -44
  115. package/lib/Pages/shared/Enums/ConfigurationScope.d.ts +5 -0
  116. package/lib/Pages/shared/Enums/ConfigurationType.d.ts +6 -0
  117. package/lib/Pages/shared/Enums/ConfigurationValueSource.d.ts +4 -0
  118. package/lib/Pages/shared/Enums/ParticipantType.d.ts +6 -0
  119. package/lib/Pages/shared/Services/AccountService.service.d.ts +10 -0
  120. package/lib/Pages/shared/Services/ConfigurationsService.service.d.ts +7 -8
  121. package/lib/Pages/shared/Services/DepartmentService.service.d.ts +2 -2
  122. package/lib/Pages/shared/Services/EmailHeaderAndFooterTemplateService.Service.d.ts +5 -5
  123. package/lib/Pages/shared/Services/HelpCenterService.service.d.ts +2 -1
  124. package/lib/Pages/shared/Services/ImpersonationRuleService.service.d.ts +5 -5
  125. package/lib/Pages/shared/Services/LicenseService.service.d.ts +2 -2
  126. package/lib/Pages/shared/Services/LookupGroupsService.service.d.ts +4 -4
  127. package/lib/Pages/shared/Services/LookupService.service.d.ts +14 -11
  128. package/lib/Pages/shared/Services/PermissionSetService.service.d.ts +8 -7
  129. package/lib/Pages/shared/Services/PermissionsService.service.d.ts +5 -6
  130. package/lib/Pages/shared/Services/PublicHolidayService.service.d.ts +2 -2
  131. package/lib/Pages/shared/Services/SectorService.service.d.ts +7 -7
  132. package/lib/Pages/shared/Services/TemplateService.service.d.ts +20 -19
  133. package/lib/Pages/shared/Services/localizationsService.service .d.ts +12 -11
  134. package/lib/Pages/shared/Services/provider.service.d.ts +1 -1
  135. package/lib/Pages/shared/Services/userService.service.d.ts +2 -0
  136. package/lib/Pages/shared/models/AccountModels/forgotPasswordModel.d.ts +3 -0
  137. package/lib/Pages/shared/models/ConfigurationModels/ConfigurationModel.d.ts +0 -1
  138. package/lib/Pages/shared/models/DepartmentModels/DepartmentUsersIDRequestModel.d.ts +1 -1
  139. package/lib/Pages/shared/models/ImpersonationRuleModels/ImpersonationRuleModel.d.ts +0 -2
  140. package/lib/Pages/shared/models/Lookups/LookupModel.d.ts +1 -1
  141. package/lib/Pages/shared/models/PermissionsModels/PermissionSetUsersIDRequestModel.d.ts +1 -1
  142. package/lib/Pages/shared/models/SectorModels/SectorDepartmentModel.d.ts +1 -1
  143. package/lib/Pages/users/users.component.d.ts +54 -68
  144. package/lib/masterlayout.component.d.ts +4 -5
  145. package/lib/masterlayout.module.d.ts +8 -9
  146. package/package.json +5 -3
  147. package/src/lib/assets/sass/core/components/_variables.scss +1 -1
  148. package/src/lib/assets/sass/custom-styles-rtl.scss +5 -0
  149. package/src/lib/assets/sass/custom-styles.scss +153 -0
  150. package/src/lib/assets/sass/style-rtl.scss +2 -0
  151. package/src/lib/assets/sass/style.scss +2 -2
  152. package/bnsights-bbsf-admin-portal-0.0.1.tgz +0 -0
  153. package/bnsights-bbsf-admin-portal-1.0.0.tgz +0 -0
  154. package/esm2015/lib/Pages/notifications/edit-template/edit-template.component.js +0 -35
  155. package/lib/Pages/notifications/edit-template/edit-template.component.d.ts +0 -35
@@ -1,11 +1,13 @@
1
1
  import { ElementRef, OnInit } from '@angular/core';
2
2
  import { FormGroup } from '@angular/forms';
3
- import { CustomValidation, MultiLingualTextBoxOptions, PhoneOptions, TextBoxOptions, ToggleSlideOptions } from '@bnsights/bbsf-controls';
3
+ import { CustomValidation, MultiLingualTextBoxOptions, PhoneOptions, TextBoxOptions, ToggleSlideOptions, FormOptions } from '@bnsights/bbsf-controls';
4
4
  import { DropdownOptions, FilterItem, PagingOptions } from '@bnsights/bbsf-controls';
5
5
  import { userService } from '../shared/Services/userService.service';
6
6
  import { PageInfoService } from '../../_metronic/core/services/page-info.service';
7
7
  import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
8
- import { AuthService, UtilityService, BBSFTranslateService, EnvironmentService } from '@bnsights/bbsf-utilities';
8
+ import { AuthService, UtilityService, BBSFTranslateService, EnvironmentService, RequestHandlerService } from '@bnsights/bbsf-utilities';
9
+ import { Observable } from 'rxjs';
10
+ import { PagingComponent } from '@bnsights/bbsf-controls/lib/controls/Paging/Paging.component';
9
11
  import * as i0 from "@angular/core";
10
12
  export declare class UsersComponent implements OnInit {
11
13
  private authService;
@@ -15,46 +17,48 @@ export declare class UsersComponent implements OnInit {
15
17
  private pageInfoService;
16
18
  private userService;
17
19
  private modalService;
18
- ApiUrl: string;
19
- SubheaderTitle: string;
20
- ShowToolbar: boolean;
21
- ShowbreadCrumb: boolean;
20
+ private requestHandlerService;
22
21
  ShowPageContent: boolean;
22
+ ProductionMode: boolean;
23
+ ApiUrl: string;
24
+ UsersForm: FormGroup;
25
+ searchTextBox: TextBoxOptions;
23
26
  permissionSetsOptions: DropdownOptions;
24
27
  accountStatusOptions: DropdownOptions;
25
28
  lockedStatusOptions: DropdownOptions;
26
29
  departmentsOptions: DropdownOptions;
27
- searchTextBox: TextBoxOptions;
28
- SelectedUserList: any[];
29
- permissionSetList: any[];
30
- accountStatusList: any[];
31
- lockedStatusList: any[];
32
- departmentsList: any[];
33
- activityStatusList: any[];
34
- filterForm: FormGroup;
35
- UsersForm: FormGroup;
36
- showFilter: boolean;
37
- UserPagingResult: any[];
38
- UserPaging: PagingOptions;
30
+ TextInputFilter: FilterItem;
39
31
  permissionSetsFilter: FilterItem;
40
32
  lockedStatusFilter: FilterItem;
41
33
  accountStatusFilter: FilterItem;
42
34
  departmentsFilter: FilterItem;
43
- TextInputFilter: FilterItem;
44
35
  IsFilterLoaded: boolean;
45
36
  IsFilterDataLoaded: boolean;
46
- input: ElementRef;
37
+ UserPagingResult: any[];
38
+ clientSidePagingResult: any[];
39
+ UserPaging: PagingOptions;
40
+ pagingElement: PagingComponent;
41
+ SelectedUserList: any[];
42
+ permissionSetList: any[];
43
+ accountStatusList: any[];
44
+ lockedStatusList: any[];
45
+ departmentsList: any[];
46
+ permissionSetDDL: ElementRef;
47
+ accountStatusDDL: ElementRef;
48
+ lockedStatusDDL: ElementRef;
49
+ departmentsDDL: ElementRef;
47
50
  AddUserForm: FormGroup;
48
- MultiLingualName: MultiLingualTextBoxOptions;
49
- MobileNumber: PhoneOptions;
50
- Username: TextBoxOptions;
51
- SamAccount: TextBoxOptions;
52
- UserDepartment: DropdownOptions;
53
- SendActivationEmail: ToggleSlideOptions;
54
- UserPermissions: DropdownOptions;
55
- CloseUserModal: ElementRef;
51
+ AddUserFormOptions: FormOptions;
52
+ AddName: MultiLingualTextBoxOptions;
53
+ AddMobileNumber: PhoneOptions;
54
+ AddUsername: TextBoxOptions;
55
+ AddSamAccount: TextBoxOptions;
56
+ AddUserDepartment: DropdownOptions;
57
+ AddSendActivationEmail: ToggleSlideOptions;
58
+ AddUserPermissions: DropdownOptions;
56
59
  EditUserForm: FormGroup;
57
- EditMultiLingualName: MultiLingualTextBoxOptions;
60
+ EditUserFormOptions: FormOptions;
61
+ EditName: MultiLingualTextBoxOptions;
58
62
  EditMobileNumber: PhoneOptions;
59
63
  EditUsername: TextBoxOptions;
60
64
  EditEmail: TextBoxOptions;
@@ -63,37 +67,18 @@ export declare class UsersComponent implements OnInit {
63
67
  EditUserPermissions: DropdownOptions;
64
68
  UserId: number;
65
69
  ShowActivateModelData: boolean;
66
- ActivatUserList: any[];
67
- DeActivatUserList: any[];
70
+ ActivatorDeactivateUserList: any[];
68
71
  Name: string;
69
- SaveLabel: string;
70
- Users: string;
71
- CancelLabel: string;
72
- DeleteLabel: string;
73
72
  Email: string;
74
- CloseEditUserModal: ElementRef;
75
- EditUserModal: ElementRef;
76
73
  ResetPasswordUserList: any[];
77
- OpenResetPasswordUserModal: boolean;
78
- CloseResetPasswordUserModal: ElementRef;
79
74
  SetUserPasswordForm: FormGroup;
75
+ SetUserPasswordFormOptions: FormOptions;
80
76
  Password: TextBoxOptions;
81
77
  PasswordConfirmation: TextBoxOptions;
82
- OpensetPasswordUserModal: boolean;
83
78
  customValidation: CustomValidation;
84
79
  setPasswordUserList: any[];
85
- ClosesetPasswordUserModal: ElementRef;
86
- UserList: any[];
87
- OpenSendActivationEmailModal: boolean;
88
- CloseActivationEmailModal: ElementRef;
89
- IsOpenConfirmationModal: boolean;
90
80
  ConfirmationModalType: number;
91
81
  ConfirmationMessage: string;
92
- CloseConfirmationModal: ElementRef;
93
- permissionSetDDL: ElementRef;
94
- accountStatusDDL: ElementRef;
95
- lockedStatusDDL: ElementRef;
96
- departmentsDDL: ElementRef;
97
82
  activatedUsersSelected: number;
98
83
  deActivatedUsersSelected: number;
99
84
  showActivateBtn: boolean;
@@ -103,41 +88,42 @@ export declare class UsersComponent implements OnInit {
103
88
  showSendEmailBtn: boolean;
104
89
  showGeneralBtns: boolean;
105
90
  allSelected: boolean;
106
- language: string;
107
- ProductionMode: boolean;
108
- constructor(authService: AuthService, utilityService: UtilityService, bbsfTranslateService: BBSFTranslateService, environmentService: EnvironmentService, pageInfoService: PageInfoService, userService: userService, modalService: NgbModal);
91
+ constructor(authService: AuthService, utilityService: UtilityService, bbsfTranslateService: BBSFTranslateService, environmentService: EnvironmentService, pageInfoService: PageInfoService, userService: userService, modalService: NgbModal, requestHandlerService: RequestHandlerService);
109
92
  ngOnInit(): Promise<void>;
110
- ReinitializeUserPaging(): void;
111
- UpdateUserPaging(): void;
112
93
  setUsersListResult(result: any): void;
94
+ resetFilters(): void;
95
+ searchClientSide(searchValue: any): void;
96
+ initializePage(): void;
97
+ loadLists(): void;
113
98
  selectAllUserList(event: any, Users: any[]): void;
114
99
  updateUserList(event: any, User: any): void;
100
+ deleteUserFromList(user: any): void;
115
101
  enableButtons(): void;
116
102
  disableButtons(): void;
117
103
  resetUsersCount(): void;
118
- loadFilters(): void;
119
- loadLists(): void;
120
- initializePage(): void;
121
- resetFilters(): void;
122
104
  showAddUserModal(addUserModal: any): void;
123
- addUser(): void;
124
- showEditUserModal(User: any, EditUserModal: any): void;
125
- editUser(): void;
105
+ getAddUserModel: () => any[];
106
+ getAddUserFunction: (AddModel: any) => Observable<any>;
107
+ showEditUserModal(userID: number, userIDEnc: string, EditUserModal: any): void;
108
+ getEditUserModel: () => any[];
109
+ getEditUserFunction: (EditModel: any) => Observable<any>;
126
110
  exportExcel(): void;
127
111
  showActivateUserModal(User: any, isActivateModel: boolean, ActivateUserModal: any): void;
128
- showResetPasswordUserModal(User: any, ResetPasswordUserModal: any): void;
129
- showSendActivationEmailModal(User: any, SendActivationEmailModal: any): void;
130
- deleteUserFromList(user: any): void;
131
- showsetPasswordUserModal(User: any, setPasswordUserModal: any): void;
132
112
  activate(): void;
133
113
  deactivate(): void;
114
+ showResetPasswordUserModal(User: any, ResetPasswordUserModal: any): void;
134
115
  resetPassword(): void;
135
- setPassword(): void;
116
+ showSendActivationEmailModal(User: any, SendActivationEmailModal: any): void;
136
117
  sendActivationEmailForUser(): void;
118
+ showsetPasswordUserModal(User: any, setPasswordUserModal: any): void;
119
+ getSetPAsswordModel: () => any[];
120
+ getSetPasswordFunction: (passwordListModel: any) => Observable<any>;
121
+ onSubmitSuccess: (result: any) => void;
122
+ showConfirmationModal(type: number, ConfirmationModal: any): void;
137
123
  activateUserList(): void;
138
124
  deactivateUserList(): void;
139
125
  resetUserPasswordList(): void;
140
- showConfirmationModal(type: number, ConfirmationModal: any): void;
126
+ ngOnDestroy(): void;
141
127
  static ɵfac: i0.ɵɵFactoryDeclaration<UsersComponent, never>;
142
128
  static ɵcmp: i0.ɵɵComponentDeclaration<UsersComponent, "lib-users", never, {}, {}, never, never>;
143
129
  }
@@ -7,14 +7,13 @@ import { NgBlockUI } from 'ng-block-ui';
7
7
  import { AuthService, BBSFTranslateService, MasterLayoutService, StylesBundleService, UtilityService } from '@bnsights/bbsf-utilities';
8
8
  import * as i0 from "@angular/core";
9
9
  export declare class MasterlayoutComponent implements OnInit, AfterViewInit {
10
- private translate;
11
10
  private authService;
12
11
  private UtilityService;
13
12
  private router;
14
13
  private layout;
15
14
  private initService;
16
15
  private stylesBundleService;
17
- private BBSFTranslateService;
16
+ private translateService;
18
17
  private masterLayoutService;
19
18
  private document;
20
19
  isExpanded: boolean;
@@ -51,11 +50,11 @@ export declare class MasterlayoutComponent implements OnInit, AfterViewInit {
51
50
  ktHeader: ElementRef;
52
51
  currentTheme: string;
53
52
  blockUI: NgBlockUI;
54
- constructor(translate: BBSFTranslateService, authService: AuthService, UtilityService: UtilityService, router: Router, layout: LayoutService, initService: LayoutInitService, stylesBundleService: StylesBundleService, BBSFTranslateService: BBSFTranslateService, masterLayoutService: MasterLayoutService, document: Document);
53
+ constructor(authService: AuthService, UtilityService: UtilityService, router: Router, layout: LayoutService, initService: LayoutInitService, stylesBundleService: StylesBundleService, translateService: BBSFTranslateService, masterLayoutService: MasterLayoutService, document: Document);
55
54
  ToggleAnimation(): void;
56
- ngOnInit(): Promise<void>;
55
+ ngOnInit(): void;
57
56
  ngAfterViewInit(): void;
58
- loadUI(): Promise<void>;
57
+ loadUI(): void;
59
58
  signout(): Promise<void>;
60
59
  collapse(): void;
61
60
  toggle(): void;
@@ -18,18 +18,17 @@ import * as i13 from "@angular/common";
18
18
  import * as i14 from "./masterlayout-routing.module";
19
19
  import * as i15 from "@ng-bootstrap/ng-bootstrap";
20
20
  import * as i16 from "./Pages/_layout/components/toolbar/toolbar.module";
21
- import * as i17 from "@ngx-translate/core";
22
- import * as i18 from "@angular/forms";
23
- import * as i19 from "./Pages/account/account.module";
24
- import * as i20 from "@angular/common/http";
25
- import * as i21 from "./Pages/core/auth.module";
26
- import * as i22 from "@angular/router";
27
- import * as i23 from "ng-inline-svg";
28
- import * as i24 from "@bnsights/bbsf-utilities";
21
+ import * as i17 from "@angular/forms";
22
+ import * as i18 from "./Pages/account/account.module";
23
+ import * as i19 from "@angular/common/http";
24
+ import * as i20 from "./Pages/core/auth.module";
25
+ import * as i21 from "@angular/router";
26
+ import * as i22 from "ng-inline-svg";
27
+ import * as i23 from "@bnsights/bbsf-utilities";
29
28
  export declare function createTranslateLoader(http: HttpClient): TranslateHttpLoader;
30
29
  export declare class MasterlayoutModule {
31
30
  static setDynamicModules(InjectedModules: InjectedModule[]): typeof MasterlayoutModule;
32
31
  static ɵfac: i0.ɵɵFactoryDeclaration<MasterlayoutModule, never>;
33
- static ɵmod: i0.ɵɵNgModuleDeclaration<MasterlayoutModule, [typeof i1.MasterlayoutComponent, typeof i2.FilterComponent, typeof i3.AsideComponent, typeof i4.HeaderComponent, typeof i5.ContentComponent, typeof i6.FooterComponent, typeof i7.ScriptsInitComponent, typeof i8.AsideMenuComponent, typeof i9.TopbarComponent], [typeof i10.BlockUIModule, typeof i11.ClipboardModule, typeof i12.AuthenticationModule, typeof i13.CommonModule, typeof i14.MasterlayoutRoutingModule, typeof i15.NgbModule, typeof i16.ToolbarModule, typeof i17.TranslateModule, typeof i18.ReactiveFormsModule, typeof i19.AccountModule, typeof i20.HttpClientModule, typeof i21.AuthModule, typeof i22.RouterModule, typeof i23.InlineSVGModule, typeof i15.NgbDropdownModule, typeof i15.NgbProgressbarModule, typeof i24.BBSFUtilitiesModule], never>;
32
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MasterlayoutModule, [typeof i1.MasterlayoutComponent, typeof i2.FilterComponent, typeof i3.AsideComponent, typeof i4.HeaderComponent, typeof i5.ContentComponent, typeof i6.FooterComponent, typeof i7.ScriptsInitComponent, typeof i8.AsideMenuComponent, typeof i9.TopbarComponent], [typeof i10.BlockUIModule, typeof i11.ClipboardModule, typeof i12.AuthenticationModule, typeof i13.CommonModule, typeof i14.MasterlayoutRoutingModule, typeof i15.NgbModule, typeof i16.ToolbarModule, typeof i17.ReactiveFormsModule, typeof i18.AccountModule, typeof i19.HttpClientModule, typeof i20.AuthModule, typeof i21.RouterModule, typeof i22.InlineSVGModule, typeof i15.NgbDropdownModule, typeof i15.NgbProgressbarModule, typeof i23.BBSFUtilitiesModule], never>;
34
33
  static ɵinj: i0.ɵɵInjectorDeclaration<MasterlayoutModule>;
35
34
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bnsights/bbsf-admin-portal",
3
- "version": "1.0.0",
3
+ "version": "1.0.5",
4
4
  "peerDependencies": {
5
5
  "@agm/core": "^3.0.0-beta.0",
6
6
  "@angular-devkit/build-angular": "~12.2.12",
@@ -36,15 +36,16 @@
36
36
  "@angular/platform-browser": "~12.2.12",
37
37
  "@angular/platform-browser-dynamic": "~12.2.12",
38
38
  "@angular/router": "~12.2.12",
39
+ "@bnsights/bbsf-controls": "1.0.10",
40
+ "@bnsights/bbsf-utilities": "1.0.3",
39
41
  "@fortawesome/fontawesome-free": "^5.15.1",
40
42
  "@ng-bootstrap/ng-bootstrap": "^9.0.2",
41
43
  "@ngx-translate/core": "^13.0.0",
42
44
  "@popperjs/core": "^2.10.2",
45
+ "@sweetalert2/ngx-sweetalert2": "^10.0.0",
43
46
  "@types/file-saver": "^2.0.1",
44
47
  "angular-in-memory-web-api": "^0.11.0",
45
48
  "apexcharts": "^3.20.0",
46
- "@bnsights/bbsf-controls": "^1.0.0",
47
- "@bnsights/bbsf-utilities": "^1.0.0",
48
49
  "bootstrap": "^5.0.2",
49
50
  "clipboard": "^2.0.6",
50
51
  "file-saver": "^2.0.5",
@@ -63,6 +64,7 @@
63
64
  "perfect-scrollbar": "^1.5.0",
64
65
  "rxjs": "6.6.0",
65
66
  "socicon": "^3.0.5",
67
+ "sweetalert2": "^11.3.1",
66
68
  "tslib": "^2.0.0",
67
69
  "zone.js": "~0.11.4"
68
70
  },
@@ -276,7 +276,7 @@ $grid-breakpoints: (
276
276
  xs: 0,
277
277
  sm: 576px,
278
278
  md: 768px,
279
- lg: 992px,
279
+ lg: 990px,
280
280
  xl: 1200px,
281
281
  xxl: 1400px
282
282
  ) !default;
@@ -21,3 +21,8 @@ body, html {
21
21
  .home-search .svg.svg-icon-primary {
22
22
  right: 0px;
23
23
  }
24
+ /*users filters*/
25
+ .dropdown-menu-right {
26
+ right: auto !important;
27
+ left: 0 !important;
28
+ }
@@ -76,6 +76,10 @@ text-align:right
76
76
  bbsf-textarea.text-right textarea {
77
77
  text-align: right;
78
78
  }
79
+ .btn.btn-light-primary, .btn.btn-primary {
80
+ display: inline-flex;
81
+ align-items: center;
82
+ }
79
83
  //help center accordion//
80
84
  .accordion-custom button.accordion-button {
81
85
  display: flex;
@@ -376,3 +380,152 @@ span.ng-value-label {
376
380
  .ng-select-multiple.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-selected, .ng-select-multiple.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-selected.ng-option-marked{
377
381
  border:0px !important;
378
382
  }
383
+
384
+
385
+
386
+ /* datetime picker*/
387
+ .owl-dt-container, .owl-dt-container * {
388
+ color: white !important;
389
+ }
390
+
391
+ .owl-dt-container {
392
+ background-color: #1e1e2d;
393
+ box-shadow: 0 0 30px rgb(0 0 0 / 30%);
394
+ }
395
+
396
+
397
+ .owl-dt-container, .owl-dt-container svg {
398
+ fill: #d7d5d5;
399
+ }
400
+
401
+ .owl-dt-calendar-table .owl-dt-calendar-cell-today:not(.owl-dt-calendar-cell-selected) {
402
+ background-color: #212e48 !important;
403
+ color: white;
404
+ border-color: transparent;
405
+ }
406
+
407
+ button.owl-dt-control.owl-dt-control-button.owl-dt-control-period-button:hover {
408
+ background-color: #212e48 !important;
409
+ color: white;
410
+ }
411
+
412
+ .owl-dt-control-period-button:hover > .owl-dt-control-button-content {
413
+ background-color: transparent !important;
414
+ }
415
+
416
+ .owl-dt-calendar-table .owl-dt-calendar-cell-selected {
417
+ background: #009ef7;
418
+ color: #fff;
419
+ border-color: transparent;
420
+ }
421
+
422
+ .owl-dt-calendar-table .owl-dt-calendar-cell {
423
+ color: rgba(62, 61, 61, 0.85);
424
+ }
425
+
426
+ .owl-dt-calendar-table .owl-dt-calendar-cell-active:focus > .owl-dt-calendar-cell-content:not(.owl-dt-calendar-cell-selected), .owl-dt-calendar-table :not(.owl-dt-calendar-cell-disabled):hover > .owl-dt-calendar-cell-content:not(.owl-dt-calendar-cell-selected) {
427
+ background-color: rgb(245, 248, 250);
428
+ color: #7e8299;
429
+ }
430
+
431
+
432
+ .owl-dt-container-control-button:hover .owl-dt-control-button-content {
433
+ background-color: #212e48 !important;
434
+ }
435
+
436
+ .owl-dt-calendar-table .owl-dt-calendar-cell-active:focus > .owl-dt-calendar-cell-content:not(.owl-dt-calendar-cell-selected), .owl-dt-calendar-table :not(.owl-dt-calendar-cell-disabled):hover > .owl-dt-calendar-cell-content:not(.owl-dt-calendar-cell-selected) {
437
+ background-color: #212e48 !important;
438
+ }
439
+
440
+ .owl-dt-container-control-button:last-child:hover .owl-dt-control-button-content {
441
+ background-color: rgba(0, 158, 247, 0.11);
442
+ }
443
+
444
+ .owl-dt-calendar-table .owl-dt-calendar-cell-in-range {
445
+ background: #f1faff;
446
+ }
447
+
448
+ .owl-dt-container-info-label {
449
+ color: #bbb9b9;
450
+ }
451
+
452
+ .cdk-overlay-container {
453
+ z-index: 1060 !important;
454
+ }
455
+
456
+
457
+
458
+ .b-date-picker .input-group-text {
459
+ border: 0px;
460
+ border-radius: 0.475rem;
461
+ background-color: #1b1b29;
462
+ }
463
+
464
+ /*end datetime picker*/
465
+ /*auto complete control*/
466
+ .autocomplete-container .input-container input {
467
+ background-color: #1b1b29 !important;
468
+ border-color: #1b1b29 !important;
469
+ color: #92929f !important;
470
+ }
471
+
472
+ .autocomplete-container .not-found {
473
+ background: #1e1e2d !important;
474
+ box-shadow: 0 0 30px rgb(0 0 0 / 30%);
475
+ color: white;
476
+ border: 0px !important;
477
+ }
478
+
479
+ .autocomplete-container .not-found div {
480
+ padding: 0.75rem 1.25rem !important;
481
+ border-bottom: 0px !important
482
+ }
483
+ /*end auto complete control*/
484
+
485
+
486
+ angular-editor.bnsights-control.form-control.is-invalid {
487
+ background-image: none;
488
+ padding-right: 1rem;
489
+ }
490
+
491
+ angular-editor.bnsights-control.form-control {
492
+ direction: ltr !important;
493
+ }
494
+
495
+ .card-title .form-group {
496
+ margin-bottom: 0px;
497
+ }
498
+
499
+ .table .form-group {
500
+ margin-bottom: 0px;
501
+ }
502
+
503
+ .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element, .mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element {
504
+ background: #3699ff;
505
+ }
506
+
507
+
508
+ /*sweet alert*/
509
+
510
+ .swal2-popup.swal2-modal {
511
+ background-color: #1E1E2D;
512
+ box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 10%);
513
+ color: white;
514
+ }
515
+
516
+ button.swal2-cancel {
517
+ color: #CDCDDE !important;
518
+ border-color: #1b1b29 !important;
519
+ background-color: #1b1b29 !important;
520
+ }
521
+
522
+ .swal2-close:focus, button.swal2-confirm:focus {
523
+ outline: 0;
524
+ box-shadow: none !important;
525
+ }
526
+
527
+ /*users filters*/
528
+ .dropdown-menu-right {
529
+ right: 0;
530
+ left: auto !important;
531
+ }
@@ -3,6 +3,8 @@
3
3
  @import "layoutbundle-rtl.scss";
4
4
  // font-awesome*/
5
5
  @import "~@fortawesome/fontawesome-free/css/all.min.css";
6
+ //controls//
7
+ @import "~@bnsights/bbsf-controls/src/lib/assets/Style.css";
6
8
  // custom*/
7
9
  @import "custom-styles.scss";
8
10
  @import "custom-styles-rtl.scss";
@@ -11,10 +11,10 @@ $mode: dark;
11
11
  @import "layout/layout";
12
12
  // font-awesome*/
13
13
  @import "~@fortawesome/fontawesome-free/css/all.min.css";
14
- // custom*/
15
- @import "custom-styles.scss";
16
14
  //controls//
17
15
  @import "~@bnsights/bbsf-controls/src/lib/assets/Style.css";
16
+ // custom*/
17
+ @import "custom-styles.scss";
18
18
 
19
19
  .layout-loader-wrapper.layout-loader-main.active
20
20
  {
@@ -1,35 +0,0 @@
1
- import { Component } from '@angular/core';
2
- import { FormGroup } from '@angular/forms';
3
- import * as i0 from "@angular/core";
4
- import * as i1 from "../../shared/Services/data.service";
5
- import * as i2 from "@bnsights/bbsf-utilities";
6
- import * as i3 from "../../shared/Services/TemplateService.service";
7
- import * as i4 from "@angular/router";
8
- export class EditTemplateComponent {
9
- constructor(dataServices, authService, templateService, activatedRoute, router) {
10
- this.dataServices = dataServices;
11
- this.authService = authService;
12
- this.templateService = templateService;
13
- this.activatedRoute = activatedRoute;
14
- this.router = router;
15
- this.TemplateId = "";
16
- // Decorator wires up blockUI instance
17
- //Edit Model Controls
18
- this.EditTemplateForm = new FormGroup({});
19
- this.activatedRoute.params.subscribe(params => {
20
- this.TemplateId = params['id'];
21
- });
22
- }
23
- ngOnInit() {
24
- }
25
- }
26
- EditTemplateComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: EditTemplateComponent, deps: [{ token: i1.DataSecretService }, { token: i2.AuthService }, { token: i3.TemplateService }, { token: i4.ActivatedRoute }, { token: i4.Router }], target: i0.ɵɵFactoryTarget.Component });
27
- EditTemplateComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.13", type: EditTemplateComponent, selector: "lib-edit-template", ngImport: i0, template: "<p>edit-template works!</p>\r\n" });
28
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: EditTemplateComponent, decorators: [{
29
- type: Component,
30
- args: [{
31
- selector: 'lib-edit-template',
32
- templateUrl: './edit-template.component.html'
33
- }]
34
- }], ctorParameters: function () { return [{ type: i1.DataSecretService }, { type: i2.AuthService }, { type: i3.TemplateService }, { type: i4.ActivatedRoute }, { type: i4.Router }]; } });
35
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZWRpdC10ZW1wbGF0ZS5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9iYnNmLWFkbWluLXBvcnRhbC9zcmMvbGliL1BhZ2VzL25vdGlmaWNhdGlvbnMvZWRpdC10ZW1wbGF0ZS9lZGl0LXRlbXBsYXRlLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2Jic2YtYWRtaW4tcG9ydGFsL3NyYy9saWIvUGFnZXMvbm90aWZpY2F0aW9ucy9lZGl0LXRlbXBsYXRlL2VkaXQtdGVtcGxhdGUuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBVSxNQUFNLGVBQWUsQ0FBQztBQUtsRCxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7Ozs7OztBQU8zQyxNQUFNLE9BQU8scUJBQXFCO0lBcUJsQyxZQUFxQixZQUErQixFQUFVLFdBQXdCLEVBQVUsZUFBZ0MsRUFBVSxjQUE4QixFQUFVLE1BQWM7UUFBM0ssaUJBQVksR0FBWixZQUFZLENBQW1CO1FBQVUsZ0JBQVcsR0FBWCxXQUFXLENBQWE7UUFBVSxvQkFBZSxHQUFmLGVBQWUsQ0FBaUI7UUFBVSxtQkFBYyxHQUFkLGNBQWMsQ0FBZ0I7UUFBVSxXQUFNLEdBQU4sTUFBTSxDQUFRO1FBcEI5TCxlQUFVLEdBQVcsRUFBRSxDQUFBO1FBR3pCLHNDQUFzQztRQUV0QyxxQkFBcUI7UUFDckIscUJBQWdCLEdBQUcsSUFBSSxTQUFTLENBQUMsRUFBRSxDQUFDLENBQUM7UUFlbkMsSUFBSSxDQUFDLGNBQWMsQ0FBQyxNQUFNLENBQUMsU0FBUyxDQUFDLE1BQU0sQ0FBQyxFQUFFO1lBQzVDLElBQUksQ0FBQyxVQUFVLEdBQUcsTUFBTSxDQUFDLElBQUksQ0FBQyxDQUFDO1FBQ2pDLENBQUMsQ0FBQyxDQUFDO0lBQUEsQ0FBQztJQUVKLFFBQVE7SUFDUixDQUFDOzttSEEzQlUscUJBQXFCO3VHQUFyQixxQkFBcUIseURDWmxDLGlDQUNBOzRGRFdhLHFCQUFxQjtrQkFKakMsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUUsbUJBQW1CO29CQUM3QixXQUFXLEVBQUUsZ0NBQWdDO2lCQUM5QyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgT25Jbml0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IEFjdGl2YXRlZFJvdXRlLCBSb3V0ZXIgfSBmcm9tICdAYW5ndWxhci9yb3V0ZXInO1xyXG5pbXBvcnQgeyBEYXRhU2VjcmV0U2VydmljZSB9IGZyb20gJy4uLy4uL3NoYXJlZC9TZXJ2aWNlcy9kYXRhLnNlcnZpY2UnO1xyXG5pbXBvcnQgeyBUZW1wbGF0ZVNlcnZpY2UgfSBmcm9tICcuLi8uLi9zaGFyZWQvU2VydmljZXMvVGVtcGxhdGVTZXJ2aWNlLnNlcnZpY2UnO1xyXG5pbXBvcnQgeyBDaGVja0JveE9wdGlvbnMsIERyb3Bkb3duT3B0aW9ucywgTXVsdGlMaW5ndWFsVGV4dEJveE9wdGlvbnMsIFRleHRBcmVhT3B0aW9ucywgVGV4dEJveE9wdGlvbnMgfSBmcm9tICdAYm5zaWdodHMvYmJzZi1jb250cm9scyc7XHJcbmltcG9ydCB7IEZvcm1Hcm91cCB9IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJztcclxuaW1wb3J0IHsgQXV0aFNlcnZpY2UsIFV0aWxpdHlTZXJ2aWNlLCBCQlNGVHJhbnNsYXRlU2VydmljZSwgRW52aXJvbm1lbnRTZXJ2aWNlIH0gZnJvbSAnQGJuc2lnaHRzL2Jic2YtdXRpbGl0aWVzJztcclxuXHJcbkBDb21wb25lbnQoe1xyXG4gIHNlbGVjdG9yOiAnbGliLWVkaXQtdGVtcGxhdGUnLFxyXG4gIHRlbXBsYXRlVXJsOiAnLi9lZGl0LXRlbXBsYXRlLmNvbXBvbmVudC5odG1sJ1xyXG59KVxyXG5leHBvcnQgY2xhc3MgRWRpdFRlbXBsYXRlQ29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0IHtcclxuICBUZW1wbGF0ZUlkOiBzdHJpbmcgPSBcIlwiXHJcbiAgVGVtcGxhdGVJbmZvOiBhbnlcclxuICBJc0FFZGl0Rm9ybUxvYWRlZDpib29sZWFuXHJcbi8vIERlY29yYXRvciB3aXJlcyB1cCBibG9ja1VJIGluc3RhbmNlXHJcblxyXG4vL0VkaXQgTW9kZWwgQ29udHJvbHNcclxuRWRpdFRlbXBsYXRlRm9ybSA9IG5ldyBGb3JtR3JvdXAoe30pO1xyXG5FZGl0TXVsdGlMaW5ndWFsTmFtZTpNdWx0aUxpbmd1YWxUZXh0Qm94T3B0aW9uc1xyXG5FZGl0U3lzTmFtZTogVGV4dEJveE9wdGlvbnM7XHJcbkVkaXREZXNjcmlwdGlvbkluRW5nbGlzaDogVGV4dEFyZWFPcHRpb25zO1xyXG5FZGl0RGVzY3JpcHRpb25JbkFyYWJpYzogVGV4dEFyZWFPcHRpb25zO1xyXG5FZGl0T3JnYW5pemF0aW9uOiBEcm9wZG93bk9wdGlvbnM7XHJcbkVkaXRMYW5ndWFnZU1vZGU6IERyb3Bkb3duT3B0aW9ucztcclxuRWRpdENhdGVnb3J5OiBEcm9wZG93bk9wdGlvbnM7XHJcbkVkaXRNYXN0ZXJMYXlvdXQ6IERyb3Bkb3duT3B0aW9ucztcclxuSXNFZGl0VGVtcGxhdGVGb3JtTG9hZGVkOiBib29sZWFuO1xyXG5FZGl0SXNFbWFpbDogQ2hlY2tCb3hPcHRpb25zO1xyXG5FZGl0SXNTbXM6IENoZWNrQm94T3B0aW9ucztcclxuRWRpdEVuYWJsZUludGVuc2l2ZUxvZ2dpbmc6IENoZWNrQm94T3B0aW9ucztcclxuXHJcbmNvbnN0cnVjdG9yKCBwcml2YXRlIGRhdGFTZXJ2aWNlczogRGF0YVNlY3JldFNlcnZpY2UsIHByaXZhdGUgYXV0aFNlcnZpY2U6IEF1dGhTZXJ2aWNlLCBwcml2YXRlIHRlbXBsYXRlU2VydmljZTogVGVtcGxhdGVTZXJ2aWNlLCBwcml2YXRlIGFjdGl2YXRlZFJvdXRlOiBBY3RpdmF0ZWRSb3V0ZSwgcHJpdmF0ZSByb3V0ZXI6IFJvdXRlcikge1xyXG4gIHRoaXMuYWN0aXZhdGVkUm91dGUucGFyYW1zLnN1YnNjcmliZShwYXJhbXMgPT4ge1xyXG4gICAgdGhpcy5UZW1wbGF0ZUlkID0gcGFyYW1zWydpZCddO1xyXG4gIH0pO31cclxuXHJcbiAgbmdPbkluaXQoKTogdm9pZCB7XHJcbiAgfVxyXG5cclxuXHJcbiBcclxuICBcclxufVxyXG4iLCI8cD5lZGl0LXRlbXBsYXRlIHdvcmtzITwvcD5cclxuIl19
@@ -1,35 +0,0 @@
1
- import { OnInit } from '@angular/core';
2
- import { ActivatedRoute, Router } from '@angular/router';
3
- import { DataSecretService } from '../../shared/Services/data.service';
4
- import { TemplateService } from '../../shared/Services/TemplateService.service';
5
- import { CheckBoxOptions, DropdownOptions, MultiLingualTextBoxOptions, TextAreaOptions, TextBoxOptions } from '@bnsights/bbsf-controls';
6
- import { FormGroup } from '@angular/forms';
7
- import { AuthService } from '@bnsights/bbsf-utilities';
8
- import * as i0 from "@angular/core";
9
- export declare class EditTemplateComponent implements OnInit {
10
- private dataServices;
11
- private authService;
12
- private templateService;
13
- private activatedRoute;
14
- private router;
15
- TemplateId: string;
16
- TemplateInfo: any;
17
- IsAEditFormLoaded: boolean;
18
- EditTemplateForm: FormGroup;
19
- EditMultiLingualName: MultiLingualTextBoxOptions;
20
- EditSysName: TextBoxOptions;
21
- EditDescriptionInEnglish: TextAreaOptions;
22
- EditDescriptionInArabic: TextAreaOptions;
23
- EditOrganization: DropdownOptions;
24
- EditLanguageMode: DropdownOptions;
25
- EditCategory: DropdownOptions;
26
- EditMasterLayout: DropdownOptions;
27
- IsEditTemplateFormLoaded: boolean;
28
- EditIsEmail: CheckBoxOptions;
29
- EditIsSms: CheckBoxOptions;
30
- EditEnableIntensiveLogging: CheckBoxOptions;
31
- constructor(dataServices: DataSecretService, authService: AuthService, templateService: TemplateService, activatedRoute: ActivatedRoute, router: Router);
32
- ngOnInit(): void;
33
- static ɵfac: i0.ɵɵFactoryDeclaration<EditTemplateComponent, never>;
34
- static ɵcmp: i0.ɵɵComponentDeclaration<EditTemplateComponent, "lib-edit-template", never, {}, {}, never, never>;
35
- }