@bnsights/bbsf-admin-portal 1.0.7 → 1.0.11
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.
- package/bnsights-bbsf-admin-portal-1.0.11.tgz +0 -0
- package/bundles/bnsights-bbsf-admin-portal.umd.js +9643 -4461
- package/bundles/bnsights-bbsf-admin-portal.umd.js.map +1 -1
- package/esm2015/lib/Pages/ActiveDirectories/active-directory/active-directory.component.js +316 -258
- package/esm2015/lib/Pages/ActiveDirectories/active-directory-add/active-directory-add.component.js +367 -222
- package/esm2015/lib/Pages/ActiveDirectories/active-directory.module.js +16 -4
- package/esm2015/lib/Pages/_layout/components/aside/aside-menu/aside-menu.component.js +2 -2
- package/esm2015/lib/Pages/_layout/components/aside/aside.component.js +12 -8
- package/esm2015/lib/Pages/_layout/components/topbar/topbar.component.js +5 -7
- package/esm2015/lib/Pages/anonymouslayout/activation/activation.component.js +92 -0
- package/esm2015/lib/Pages/anonymouslayout/anonymouslayout-routing.module.js +35 -0
- package/esm2015/lib/Pages/anonymouslayout/anonymouslayout.component.js +50 -0
- package/esm2015/lib/Pages/anonymouslayout/anonymouslayout.module.js +75 -0
- package/esm2015/lib/Pages/anonymouslayout/forgot-password/forgot-password.component.js +55 -0
- package/esm2015/lib/Pages/anonymouslayout/login/login.component.js +26 -0
- package/esm2015/lib/Pages/anonymouslayout/rest-password/rest-password.component.js +90 -0
- package/esm2015/lib/Pages/anonymouslayout/upload-license/upload-license.component.js +71 -0
- package/esm2015/lib/Pages/configurations/configuration/configuration.component.js +32 -15
- package/esm2015/lib/Pages/core/authentication/admin.guard.js +17 -0
- package/esm2015/lib/Pages/core/authentication/auth.guard.js +10 -5
- package/esm2015/lib/Pages/core/authentication/auth.service.js +1 -2
- package/esm2015/lib/Pages/departments/department/department.component.js +9 -8
- package/esm2015/lib/Pages/helpCenter/help-center/help-center.component.js +3 -3
- package/esm2015/lib/Pages/helpCenter/help-center-secondlevel/help-center-secondlevel.component.js +3 -3
- package/esm2015/lib/Pages/home/home.component.js +3 -3
- package/esm2015/lib/Pages/localizations/localizations.component.js +22 -6
- package/esm2015/lib/Pages/lookups/lookup/lookup.component.js +3 -3
- package/esm2015/lib/Pages/notifications/add/add.component.js +1 -3
- package/esm2015/lib/Pages/notifications/edit/edit.component.js +1 -3
- package/esm2015/lib/Pages/notifications/template-info/template-info.component.js +2 -2
- package/esm2015/lib/Pages/notifications/templates/templates.component.js +3 -3
- package/esm2015/lib/Pages/publicHolidays/public-holiday/public-holiday.component.js +76 -82
- package/esm2015/lib/Pages/shared/Enums/ADType.js +6 -0
- package/esm2015/lib/Pages/shared/Enums/ADWindowsType.js +6 -0
- package/esm2015/lib/Pages/shared/Enums/ConditionRHSType.js +6 -0
- package/esm2015/lib/Pages/shared/Enums/WFActivityType.js +12 -0
- package/esm2015/lib/Pages/shared/Enums/WFVariableDataType.js +14 -0
- package/esm2015/lib/Pages/shared/Services/AccountService.service.js +26 -1
- package/esm2015/lib/Pages/shared/Services/ActiveDirectoryService.service.js +18 -18
- package/esm2015/lib/Pages/shared/Services/AnonymousLayoutService.service.js +29 -0
- package/esm2015/lib/Pages/shared/Services/ConfigurationsService.service.js +2 -2
- package/esm2015/lib/Pages/shared/Services/DepartmentService.service.js +3 -3
- package/esm2015/lib/Pages/shared/Services/GlobalErrorHandler.service.js +1 -14
- package/esm2015/lib/Pages/shared/Services/HelpCenterService.service.js +2 -2
- package/esm2015/lib/Pages/shared/Services/HttpErrorInterceptor.service.js +1 -1
- package/esm2015/lib/Pages/shared/Services/LookupService.service.js +2 -2
- package/esm2015/lib/Pages/shared/Services/PermissionSetService.service.js +2 -2
- package/esm2015/lib/Pages/shared/Services/SectorService.service.js +3 -3
- package/esm2015/lib/Pages/shared/Services/WorkFlowVersionService.service.js +24 -0
- package/esm2015/lib/Pages/shared/Services/WorkflowActivityService.service.js +32 -5
- package/esm2015/lib/Pages/shared/Services/WorkflowInstanceService.service.js +24 -0
- package/esm2015/lib/Pages/shared/Services/WorkflowLogVariablesService.service.js +24 -0
- package/esm2015/lib/Pages/shared/Services/WorkflowService.service.js +12 -4
- package/esm2015/lib/Pages/shared/Services/WorkflowVariablesService.service.js +12 -6
- package/esm2015/lib/Pages/shared/Services/localizationsService.service .js +6 -3
- package/esm2015/lib/Pages/shared/Services/provider.service.js +3 -3
- package/esm2015/lib/Pages/shared/Services/userService.service.js +3 -3
- package/esm2015/lib/Pages/shared/models/ADModels/ActiveDirectoryAddEditModel.js +1 -1
- package/esm2015/lib/Pages/shared/models/ConfigurationModels/ConfigurationModel.js +1 -1
- package/esm2015/lib/Pages/shared/models/DepartmentModels/DepartmentModel.js +28 -4
- package/esm2015/lib/Pages/shared/models/UserModels/ActivationModel.js +3 -0
- package/esm2015/lib/Pages/shared/models/WorkflowModels/WFActivityVariablesModel.js +8 -0
- package/esm2015/lib/Pages/shared/models/user.registration.js +1 -1
- package/esm2015/lib/Pages/shared/stylesbundle.service.js +3 -3
- package/esm2015/lib/Pages/users/users.component.js +2 -2
- package/esm2015/lib/Pages/workflows/activity/workflow-activity-add/workflow-activity-add.component.js +535 -0
- package/esm2015/lib/Pages/workflows/activity/workflow-activity-edit/workflow-activity-edit.component.js +852 -0
- package/esm2015/lib/Pages/workflows/instance-info/instance-info.component.js +309 -0
- package/esm2015/lib/Pages/workflows/tabs/tabs.component.js +611 -430
- package/esm2015/lib/Pages/workflows/version-info/version-info.component.js +143 -0
- package/esm2015/lib/Pages/workflows/workflow/workflow.component.js +136 -148
- package/esm2015/lib/Pages/workflows/workflows-routing.module.js +9 -1
- package/esm2015/lib/Pages/workflows/workflows.module.js +7 -3
- package/esm2015/lib/masterlayout-routing.module.js +4 -4
- package/esm2015/lib/masterlayout.component.js +2 -2
- package/esm2015/lib/masterlayout.module.js +26 -7
- package/esm2015/public-api.js +4 -5
- package/fesm2015/bnsights-bbsf-admin-portal.js +15248 -10155
- package/fesm2015/bnsights-bbsf-admin-portal.js.map +1 -1
- package/lib/Pages/ActiveDirectories/active-directory/active-directory.component.d.ts +65 -56
- package/lib/Pages/ActiveDirectories/active-directory-add/active-directory-add.component.d.ts +70 -43
- package/lib/Pages/ActiveDirectories/active-directory.module.d.ts +4 -1
- package/lib/Pages/_layout/components/aside/aside.component.d.ts +4 -1
- package/lib/Pages/_layout/components/topbar/topbar.component.d.ts +2 -1
- package/lib/Pages/anonymouslayout/activation/activation.component.d.ts +32 -0
- package/lib/Pages/anonymouslayout/anonymouslayout-routing.module.d.ts +7 -0
- package/lib/Pages/anonymouslayout/anonymouslayout.component.d.ts +21 -0
- package/lib/Pages/anonymouslayout/anonymouslayout.module.d.ts +19 -0
- package/lib/Pages/{account → anonymouslayout}/forgot-password/forgot-password.component.d.ts +4 -1
- package/lib/Pages/{account → anonymouslayout}/login/login.component.d.ts +3 -2
- package/lib/Pages/anonymouslayout/rest-password/rest-password.component.d.ts +32 -0
- package/lib/Pages/anonymouslayout/upload-license/upload-license.component.d.ts +25 -0
- package/lib/Pages/configurations/configuration/configuration.component.d.ts +2 -0
- package/lib/Pages/core/authentication/admin.guard.d.ts +9 -0
- package/lib/Pages/localizations/localizations.component.d.ts +1 -0
- package/lib/Pages/publicHolidays/public-holiday/public-holiday.component.d.ts +11 -14
- package/lib/Pages/shared/Enums/ADType.d.ts +4 -0
- package/lib/Pages/shared/Enums/ADWindowsType.d.ts +4 -0
- package/lib/Pages/shared/Enums/ConditionRHSType.d.ts +4 -0
- package/lib/Pages/shared/Enums/WFActivityType.d.ts +10 -0
- package/lib/Pages/shared/Enums/WFVariableDataType.d.ts +12 -0
- package/lib/Pages/shared/Services/AccountService.service.d.ts +8 -0
- package/lib/Pages/shared/Services/ActiveDirectoryService.service.d.ts +9 -9
- package/lib/Pages/shared/Services/AnonymousLayoutService.service.d.ts +17 -0
- package/lib/Pages/shared/Services/WorkFlowVersionService.service.d.ts +10 -0
- package/lib/Pages/shared/Services/WorkflowActivityService.service.d.ts +9 -3
- package/lib/Pages/shared/Services/WorkflowInstanceService.service.d.ts +10 -0
- package/lib/Pages/shared/Services/WorkflowLogVariablesService.service.d.ts +10 -0
- package/lib/Pages/shared/Services/WorkflowService.service.d.ts +5 -3
- package/lib/Pages/shared/Services/WorkflowVariablesService.service.d.ts +5 -4
- package/lib/Pages/shared/Services/localizationsService.service .d.ts +1 -0
- package/lib/Pages/shared/models/ADModels/ActiveDirectoryAddEditModel.d.ts +11 -6
- package/lib/Pages/shared/models/ConfigurationModels/ConfigurationModel.d.ts +1 -0
- package/lib/Pages/shared/models/DepartmentModels/DepartmentModel.d.ts +8 -9
- package/lib/Pages/shared/models/UserModels/ActivationModel.d.ts +10 -0
- package/lib/Pages/shared/models/WorkflowModels/WFActivityVariablesModel.d.ts +13 -0
- package/lib/Pages/workflows/activity/workflow-activity-add/workflow-activity-add.component.d.ts +77 -0
- package/lib/Pages/workflows/activity/workflow-activity-edit/workflow-activity-edit.component.d.ts +83 -0
- package/lib/Pages/workflows/instance-info/instance-info.component.d.ts +81 -0
- package/lib/Pages/workflows/tabs/tabs.component.d.ts +73 -80
- package/lib/Pages/workflows/version-info/version-info.component.d.ts +41 -0
- package/lib/Pages/workflows/workflow/workflow.component.d.ts +26 -29
- package/lib/Pages/workflows/workflows.module.d.ts +19 -15
- package/lib/masterlayout.module.d.ts +2 -2
- package/package.json +5 -3
- package/public-api.d.ts +3 -4
- package/src/lib/assets/css/anonymousBundle-Dark-RTL.css +4 -0
- package/src/lib/assets/css/anonymousBundle-Dark.css +4 -0
- package/src/lib/assets/css/anonymousBundle-light-RTL.css +4 -0
- package/src/lib/assets/css/anonymousBundle-light.css +18 -0
- package/src/lib/assets/css/login.css +74671 -0
- package/src/lib/assets/sass/custom-styles-rtl.scss +13 -3
- package/src/lib/assets/sass/custom-styles.scss +38 -11
- package/bnsights-bbsf-admin-portal-1.0.7.tgz +0 -0
- package/esm2015/lib/Pages/account/account-routing.module.js +0 -28
- package/esm2015/lib/Pages/account/account.component.js +0 -27
- package/esm2015/lib/Pages/account/account.module.js +0 -56
- package/esm2015/lib/Pages/account/forgot-password/forgot-password.component.js +0 -48
- package/esm2015/lib/Pages/account/login/login.component.js +0 -25
- package/esm2015/lib/Pages/account/register/register.component.js +0 -48
- package/lib/Pages/account/account-routing.module.d.ts +0 -7
- package/lib/Pages/account/account.component.d.ts +0 -12
- package/lib/Pages/account/account.module.d.ts +0 -16
- package/lib/Pages/account/register/register.component.d.ts +0 -21
|
@@ -1,78 +1,87 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
2
|
import { FormGroup } from '@angular/forms';
|
|
3
|
-
import { DropdownOptions, FilterItem, PagingOptions, TextBoxOptions, ToggleSlideOptions } from '@bnsights/bbsf-controls';
|
|
3
|
+
import { ConfirmationModalOptions, DropdownOptions, FilterItem, FormOptions, PagingOptions, TextBoxOptions, ToggleSlideOptions } from '@bnsights/bbsf-controls';
|
|
4
4
|
import { ActiveDirectoryService } from '../../shared/Services/ActiveDirectoryService.service';
|
|
5
5
|
import { PageInfoService } from '../../../_metronic/core/services/page-info.service';
|
|
6
|
-
import { AuthService, UtilityService, BBSFTranslateService,
|
|
6
|
+
import { AuthService, UtilityService, BBSFTranslateService, RequestHandlerService } from '@bnsights/bbsf-utilities';
|
|
7
|
+
import { ConfirmationModalComponent } from '@bnsights/bbsf-controls/lib/controls/ConfirmationModal/ConfirmationModal.component';
|
|
8
|
+
import { PagingComponent } from '@bnsights/bbsf-controls/lib/controls/Paging/Paging.component';
|
|
9
|
+
import { Observable } from 'rxjs';
|
|
10
|
+
import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
|
|
7
11
|
import * as i0 from "@angular/core";
|
|
8
12
|
export declare class ActiveDirectoryComponent implements OnInit {
|
|
9
13
|
private authService;
|
|
10
14
|
private pageInfoService;
|
|
11
15
|
utilityService: UtilityService;
|
|
12
16
|
private bbsfTranslateService;
|
|
13
|
-
private
|
|
14
|
-
private
|
|
15
|
-
|
|
17
|
+
private activeDirectoryService;
|
|
18
|
+
private modalService;
|
|
19
|
+
private requestHandlerService;
|
|
20
|
+
apiUrl: string;
|
|
21
|
+
showPageContent: boolean;
|
|
22
|
+
activeDirectoryForm: FormGroup;
|
|
16
23
|
searchTextBox: TextBoxOptions;
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
24
|
+
textInputFilter: FilterItem;
|
|
25
|
+
activeDirectoryPagingResult: any[];
|
|
26
|
+
clientSidePagingResult: any[];
|
|
27
|
+
activeDirectoryPaging: PagingOptions;
|
|
28
|
+
isFilterLoaded: boolean;
|
|
29
|
+
pagingElement: PagingComponent<any>;
|
|
30
|
+
permissionSetList: any[];
|
|
31
|
+
languagesList: any[];
|
|
32
|
+
welcomeMsgTempList: any[];
|
|
21
33
|
mappingTypesList: any[];
|
|
22
34
|
mappingPropertiesList: any[];
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
ActiveDirectoryId: number;
|
|
47
|
-
CloseEditActiveDirectoryModal: ElementRef;
|
|
35
|
+
editActiveDirectoryForm: FormGroup;
|
|
36
|
+
editActiveDirectoryFormOptions: FormOptions;
|
|
37
|
+
editName: TextBoxOptions;
|
|
38
|
+
editADTypeName: string;
|
|
39
|
+
editADTypeID: number;
|
|
40
|
+
editInactive: ToggleSlideOptions;
|
|
41
|
+
editDailyJob: ToggleSlideOptions;
|
|
42
|
+
editPermissionSetOptions: DropdownOptions;
|
|
43
|
+
editLanguageOptions: DropdownOptions;
|
|
44
|
+
editWelcomeMsgTemplateOptions: DropdownOptions;
|
|
45
|
+
editMappingsOptions: any[];
|
|
46
|
+
editMappingsCount: number;
|
|
47
|
+
activeDirectoryId: number;
|
|
48
|
+
editDomain: TextBoxOptions;
|
|
49
|
+
editSamAccount: TextBoxOptions;
|
|
50
|
+
editIdentifier: string;
|
|
51
|
+
editWindowsTypeName: string;
|
|
52
|
+
editPassword: TextBoxOptions;
|
|
53
|
+
showWindowsControl: boolean;
|
|
54
|
+
editTenantID: TextBoxOptions;
|
|
55
|
+
editClientID: TextBoxOptions;
|
|
56
|
+
editClientSecret: TextBoxOptions;
|
|
57
|
+
showAzureControl: boolean;
|
|
48
58
|
deleteActiveDirectoryId: string;
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
IslastRunLogsModalLoaded: boolean;
|
|
55
|
-
CloseLAstRunLogsActiveDirectoryModal: ElementRef;
|
|
59
|
+
deleteConfirmationOptions: ConfirmationModalOptions;
|
|
60
|
+
deleteControlLoaded: boolean;
|
|
61
|
+
deleteConfirmationModalControl: ConfirmationModalComponent;
|
|
62
|
+
adConnectionName: string;
|
|
63
|
+
lastRunLogs: string;
|
|
56
64
|
syncActiveDirectoryId: string;
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
constructor(authService: AuthService, pageInfoService: PageInfoService, utilityService: UtilityService, bbsfTranslateService: BBSFTranslateService,
|
|
65
|
+
syncConfirmationOptions: ConfirmationModalOptions;
|
|
66
|
+
syncControlLoaded: boolean;
|
|
67
|
+
syncConfirmationModalControl: ConfirmationModalComponent;
|
|
68
|
+
constructor(authService: AuthService, pageInfoService: PageInfoService, utilityService: UtilityService, bbsfTranslateService: BBSFTranslateService, activeDirectoryService: ActiveDirectoryService, modalService: NgbModal, requestHandlerService: RequestHandlerService);
|
|
61
69
|
ngOnInit(): Promise<void>;
|
|
62
|
-
resetFilters(): void;
|
|
63
70
|
initializePage(): void;
|
|
64
|
-
ReinitializeActiveDirectoryPaging(): void;
|
|
65
|
-
UpdateActiveDirectoryPaging(): void;
|
|
66
71
|
setActiveDirectoryListResult(result: any): void;
|
|
67
|
-
|
|
68
|
-
|
|
72
|
+
showEditActiveDirectoryModal(activeDirectoryID: number, activeDirectoryIDEnc: string, editADModal: any): void;
|
|
73
|
+
getEditADModel: () => any[];
|
|
74
|
+
getEditADFunction: (EditModel: any) => Observable<any>;
|
|
69
75
|
getADMappingOptions(ADMappings: any[]): (number | any[])[];
|
|
70
|
-
showDeleteActiveDirectoryModal(activeDirectory: any): void;
|
|
71
|
-
deleteActiveDirectory(): void;
|
|
72
|
-
showADSynchronizationModal(ActiveDirectoryID: string): void;
|
|
73
|
-
runSyncronization(): void;
|
|
74
|
-
showADLastRunLogsModal(ActiveDirectoryID: string): void;
|
|
75
76
|
deleteADMapping(deletedADMApping: any): void;
|
|
77
|
+
addADMapping(): void;
|
|
78
|
+
showDeleteActiveDirectoryModal(activeDirectoryID: string): void;
|
|
79
|
+
deleteActiveDirectory: (id: string) => Observable<any>;
|
|
80
|
+
showADSynchronizationModal(activeDirectoryID: string): void;
|
|
81
|
+
runSyncronization: (id: string) => Observable<any>;
|
|
82
|
+
runSyncOnSuccess: (result: any) => void;
|
|
83
|
+
showADLastRunLogsModal(activeDirectoryID: string, lastRunLogsModal: any): void;
|
|
84
|
+
ngOnDestroy(): void;
|
|
76
85
|
static ɵfac: i0.ɵɵFactoryDeclaration<ActiveDirectoryComponent, never>;
|
|
77
86
|
static ɵcmp: i0.ɵɵComponentDeclaration<ActiveDirectoryComponent, "lib-active-directory", never, {}, {}, never, never>;
|
|
78
87
|
}
|
package/lib/Pages/ActiveDirectories/active-directory-add/active-directory-add.component.d.ts
CHANGED
|
@@ -1,71 +1,98 @@
|
|
|
1
|
-
import { OnInit,
|
|
1
|
+
import { OnInit, OnDestroy } from '@angular/core';
|
|
2
2
|
import { FormGroup } from '@angular/forms';
|
|
3
|
-
import { ToggleSlideOptions, DropdownOptions, TextBoxOptions } from '@bnsights/bbsf-controls';
|
|
4
|
-
import { DataSecretService } from '../../shared/Services/data.service';
|
|
3
|
+
import { ToggleSlideOptions, DropdownOptions, TextBoxOptions, FormOptions } from '@bnsights/bbsf-controls';
|
|
5
4
|
import { ActiveDirectoryService } from '../../shared/Services/ActiveDirectoryService.service';
|
|
6
5
|
import { Router } from '@angular/router';
|
|
7
|
-
import { BehaviorSubject } from 'rxjs';
|
|
8
|
-
import {
|
|
6
|
+
import { BehaviorSubject, Observable } from 'rxjs';
|
|
7
|
+
import { UtilityService, BBSFTranslateService, RequestHandlerService } from '@bnsights/bbsf-utilities';
|
|
9
8
|
import { PageInfoService } from '../../../_metronic/core/services/page-info.service';
|
|
9
|
+
import { MatCheckboxChange } from '@angular/material/checkbox';
|
|
10
|
+
import { DropdownListComponent } from '@bnsights/bbsf-controls/lib/controls/DropdownList/DropdownList.component';
|
|
11
|
+
import { TextboxComponent } from '@bnsights/bbsf-controls/lib/controls/TextBox/TextBox.component';
|
|
10
12
|
import * as i0 from "@angular/core";
|
|
11
|
-
|
|
13
|
+
interface ADNode {
|
|
14
|
+
text: string;
|
|
15
|
+
children?: ADNode[];
|
|
16
|
+
data: string;
|
|
17
|
+
selectable: boolean;
|
|
18
|
+
icon: string;
|
|
19
|
+
state: any;
|
|
20
|
+
Index: number;
|
|
21
|
+
}
|
|
22
|
+
export declare class ActiveDirectoryAddComponent implements OnInit, OnDestroy {
|
|
12
23
|
private pageInfoService;
|
|
13
24
|
utilityService: UtilityService;
|
|
14
25
|
private bbsfTranslateService;
|
|
15
|
-
private environmentService;
|
|
16
|
-
private dataServices;
|
|
17
|
-
private authService;
|
|
18
26
|
private ActiveDirectoryService;
|
|
19
27
|
private router;
|
|
20
|
-
|
|
21
|
-
language: string;
|
|
22
|
-
ProductionMode: boolean;
|
|
28
|
+
private requestHandlerService;
|
|
23
29
|
formsCount: number;
|
|
24
30
|
currentStep$: BehaviorSubject<number>;
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
connectionTypeGroupId: number;
|
|
31
|
+
permissionSetList: any[];
|
|
32
|
+
languagesList: any[];
|
|
33
|
+
welcomeMsgTempList: any[];
|
|
34
|
+
adTypesList: any[];
|
|
35
|
+
fileProviders: any[];
|
|
31
36
|
mappingPropertiesList: any[];
|
|
32
37
|
mappingTypesList: any[];
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
38
|
+
adWindowsTypes: any[];
|
|
39
|
+
addActiveDirectoryForm: FormGroup;
|
|
40
|
+
addActiveDirectoryFormOptions: FormOptions;
|
|
41
|
+
addTypeOptions: DropdownOptions;
|
|
42
|
+
addName: TextBoxOptions;
|
|
43
|
+
addPermissionSet: DropdownOptions;
|
|
44
|
+
addLanguage: DropdownOptions;
|
|
45
|
+
addWelcomeMsgTemp: DropdownOptions;
|
|
46
|
+
addFileProvider: DropdownOptions;
|
|
47
|
+
addMarkInactive: ToggleSlideOptions;
|
|
48
|
+
addDailyJob: ToggleSlideOptions;
|
|
49
|
+
addMappingsOptions: any[];
|
|
50
|
+
addMappingsCount: number;
|
|
51
|
+
selectedType: number;
|
|
52
|
+
isAddFormLoaded: boolean;
|
|
53
|
+
adTypeControl: DropdownListComponent;
|
|
54
|
+
addDomain: TextBoxOptions;
|
|
55
|
+
addSamAccount: TextBoxOptions;
|
|
56
|
+
addPassword: TextBoxOptions;
|
|
57
|
+
addWindowsTypeOptions: DropdownOptions;
|
|
58
|
+
addShowBuiltInGroups: ToggleSlideOptions;
|
|
59
|
+
addShowBuiltInGroupsVisible: boolean;
|
|
60
|
+
showWindowsControls: boolean;
|
|
61
|
+
adDomainControl: TextboxComponent;
|
|
62
|
+
adWindowsTypeControl: DropdownListComponent;
|
|
54
63
|
validationError: string;
|
|
55
64
|
errorIsFound: boolean;
|
|
56
65
|
treeNodeData: any;
|
|
57
|
-
|
|
66
|
+
treeControl: any;
|
|
67
|
+
treeFlattener: any;
|
|
68
|
+
dataSource: any;
|
|
69
|
+
hasChild: any;
|
|
70
|
+
treeDataLoaded: boolean;
|
|
71
|
+
selected: number;
|
|
72
|
+
identifier: string;
|
|
73
|
+
identifierName: string;
|
|
74
|
+
addTenantID: TextBoxOptions;
|
|
75
|
+
addClientID: TextBoxOptions;
|
|
76
|
+
addClientSecret: TextBoxOptions;
|
|
77
|
+
tenantIDControl: TextboxComponent;
|
|
78
|
+
clientIDControl: TextboxComponent;
|
|
79
|
+
clientSecretControl: TextboxComponent;
|
|
80
|
+
showAzureControls: boolean;
|
|
81
|
+
constructor(pageInfoService: PageInfoService, utilityService: UtilityService, bbsfTranslateService: BBSFTranslateService, ActiveDirectoryService: ActiveDirectoryService, router: Router, requestHandlerService: RequestHandlerService);
|
|
58
82
|
ngOnInit(): Promise<void>;
|
|
59
83
|
initializePage(): void;
|
|
84
|
+
getAddADModel: () => any[];
|
|
85
|
+
getAddADFunction: (addModel: any) => Observable<any>;
|
|
86
|
+
addADOnSuccess: (result: any) => void;
|
|
60
87
|
getADMappingOptions(ADMappings: any[]): (number | any[])[];
|
|
61
88
|
deleteADMapping(deletedADMApping: any): void;
|
|
89
|
+
windowsTypeChange(typeValue: any): void;
|
|
62
90
|
typeChange(typeValue: any): void;
|
|
63
91
|
nextStep(): void;
|
|
64
92
|
prevStep(): void;
|
|
65
|
-
|
|
66
|
-
addActiveDirectory(): void;
|
|
67
|
-
onSubmit(): void;
|
|
93
|
+
setIdentifier(obj: MatCheckboxChange, selectedNode: ADNode): void;
|
|
68
94
|
ngOnDestroy(): void;
|
|
69
95
|
static ɵfac: i0.ɵɵFactoryDeclaration<ActiveDirectoryAddComponent, never>;
|
|
70
96
|
static ɵcmp: i0.ɵɵComponentDeclaration<ActiveDirectoryAddComponent, "lib-active-directory-add", never, {}, {}, never, never>;
|
|
71
97
|
}
|
|
98
|
+
export {};
|
|
@@ -16,8 +16,11 @@ import * as i14 from "@angular/material/menu";
|
|
|
16
16
|
import * as i15 from "ng-inline-svg";
|
|
17
17
|
import * as i16 from "@ng-bootstrap/ng-bootstrap";
|
|
18
18
|
import * as i17 from "../empty-data/empty-data.module";
|
|
19
|
+
import * as i18 from "@angular/material/tree";
|
|
20
|
+
import * as i19 from "@angular/material/icon";
|
|
21
|
+
import * as i20 from "@angular/material/checkbox";
|
|
19
22
|
export declare class ActiveDirectoryModule {
|
|
20
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<ActiveDirectoryModule, never>;
|
|
21
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ActiveDirectoryModule, [typeof i1.ActiveDirectoryComponent, typeof i2.ActiveDirectoriesComponent, typeof i3.ActiveDirectoryAddComponent], [typeof i4.ActiveDirectoryRoutingModule, typeof i5.CommonModule, typeof i6.ReactiveFormsModule, typeof i7.HttpClientModule, typeof i8.AuthModule, typeof i9.RouterModule, typeof i5.CommonModule, typeof i10.ClipboardModule, typeof i11.BlockUIModule, typeof i6.ReactiveFormsModule, typeof i6.FormsModule, typeof i12.BBSFControlsModule, typeof i13.SubheaderModule, typeof i14.MatMenuModule, typeof i15.InlineSVGModule, typeof i16.NgbModule, typeof i17.EmptyDataModule], never>;
|
|
24
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ActiveDirectoryModule, [typeof i1.ActiveDirectoryComponent, typeof i2.ActiveDirectoriesComponent, typeof i3.ActiveDirectoryAddComponent], [typeof i4.ActiveDirectoryRoutingModule, typeof i5.CommonModule, typeof i6.ReactiveFormsModule, typeof i7.HttpClientModule, typeof i8.AuthModule, typeof i9.RouterModule, typeof i5.CommonModule, typeof i10.ClipboardModule, typeof i11.BlockUIModule, typeof i6.ReactiveFormsModule, typeof i6.FormsModule, typeof i12.BBSFControlsModule, typeof i13.SubheaderModule, typeof i14.MatMenuModule, typeof i15.InlineSVGModule, typeof i16.NgbModule, typeof i17.EmptyDataModule, typeof i18.MatTreeModule, typeof i19.MatIconModule, typeof i20.MatCheckboxModule], never>;
|
|
22
25
|
static ɵinj: i0.ɵɵInjectorDeclaration<ActiveDirectoryModule>;
|
|
23
26
|
}
|
|
@@ -1,17 +1,20 @@
|
|
|
1
1
|
import { ElementRef, OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { Router } from '@angular/router';
|
|
3
|
+
import { AppearanceConfigurationService } from '@bnsights/bbsf-utilities';
|
|
3
4
|
import { LayoutService } from '../../../../_metronic/core/services/layout.service';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class AsideComponent implements OnInit, OnDestroy {
|
|
6
7
|
private layout;
|
|
7
8
|
private router;
|
|
9
|
+
private appearanceConfigurationService;
|
|
8
10
|
asideTheme: string;
|
|
11
|
+
logo: string;
|
|
9
12
|
asideMinimize: boolean;
|
|
10
13
|
asideMenuCSSClasses: string;
|
|
11
14
|
appPreviewDocsUrl: string;
|
|
12
15
|
ktAsideScroll: ElementRef;
|
|
13
16
|
private unsubscribe;
|
|
14
|
-
constructor(layout: LayoutService, router: Router);
|
|
17
|
+
constructor(layout: LayoutService, router: Router, appearanceConfigurationService: AppearanceConfigurationService);
|
|
15
18
|
ngOnInit(): void;
|
|
16
19
|
routingChanges(): void;
|
|
17
20
|
menuReinitialization(): void;
|
|
@@ -29,12 +29,13 @@ export declare class TopbarComponent implements OnInit {
|
|
|
29
29
|
language: string;
|
|
30
30
|
token: string;
|
|
31
31
|
name: string;
|
|
32
|
+
clicked: boolean;
|
|
32
33
|
constructor(layout: LayoutService, translate: TranslateService, authService: AuthService, userService: userService, router: Router, stylesBundleService: StylesBundleService, UtilityService: UtilityService, masterLayoutService: MasterLayoutService, document: Document);
|
|
33
34
|
ngOnInit(): Promise<void>;
|
|
34
35
|
switchLang(lang: any): void;
|
|
35
36
|
refreshPage(): void;
|
|
36
37
|
getResourceValue(Key: any): string;
|
|
37
|
-
logout(
|
|
38
|
+
logout(): Promise<void>;
|
|
38
39
|
static ɵfac: i0.ɵɵFactoryDeclaration<TopbarComponent, never>;
|
|
39
40
|
static ɵcmp: i0.ɵɵComponentDeclaration<TopbarComponent, "app-topbar", never, {}, {}, never, never>;
|
|
40
41
|
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { FormGroup } from '@angular/forms';
|
|
3
|
+
import { ActivatedRoute, Router } from '@angular/router';
|
|
4
|
+
import { CustomValidation, FormOptions, TextBoxOptions } from '@bnsights/bbsf-controls';
|
|
5
|
+
import { UtilityService } from '@bnsights/bbsf-utilities';
|
|
6
|
+
import { Observable } from 'rxjs';
|
|
7
|
+
import { ActivationModel } from '../../shared/models/UserModels/ActivationModel';
|
|
8
|
+
import { AccountService } from '../../shared/Services/AccountService.service';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
export declare class ActivationComponent implements OnInit {
|
|
11
|
+
private activatedRoute;
|
|
12
|
+
private accountService;
|
|
13
|
+
utilityService: UtilityService;
|
|
14
|
+
private router;
|
|
15
|
+
Token: string;
|
|
16
|
+
ActivationModel: ActivationModel;
|
|
17
|
+
ErrorMessage: string;
|
|
18
|
+
UserName: string;
|
|
19
|
+
activateForm: FormGroup;
|
|
20
|
+
activateFormOptions: FormOptions;
|
|
21
|
+
password: TextBoxOptions;
|
|
22
|
+
confirmPassword: TextBoxOptions;
|
|
23
|
+
customValidation: CustomValidation;
|
|
24
|
+
isModelLoaded: boolean;
|
|
25
|
+
constructor(activatedRoute: ActivatedRoute, accountService: AccountService, utilityService: UtilityService, router: Router);
|
|
26
|
+
ngOnInit(): void;
|
|
27
|
+
getActivateModel: () => any[];
|
|
28
|
+
getActivateFunction: (model: any) => Observable<any>;
|
|
29
|
+
onSuccessHandler: (result: any) => void;
|
|
30
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ActivationComponent, never>;
|
|
31
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ActivationComponent, "lib-activation", never, {}, {}, never, never>;
|
|
32
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/router";
|
|
3
|
+
export declare class AnonymouslayoutRoutingModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AnonymouslayoutRoutingModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AnonymouslayoutRoutingModule, never, [typeof i1.RouterModule], [typeof i1.RouterModule]>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AnonymouslayoutRoutingModule>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { AppearanceConfigurationService, BBSFTranslateService, MasterLayoutService, StylesBundleService, UtilityService } from '@bnsights/bbsf-utilities';
|
|
3
|
+
import { AnonymousLayoutService } from '../shared/Services/AnonymousLayoutService.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class anonymouslayoutComponent implements OnInit {
|
|
6
|
+
private utilityService;
|
|
7
|
+
private stylesBundleService;
|
|
8
|
+
private anonymousLayoutService;
|
|
9
|
+
private translateService;
|
|
10
|
+
private masterLayoutService;
|
|
11
|
+
private appearanceConfigurationService;
|
|
12
|
+
lang: string;
|
|
13
|
+
logo: string;
|
|
14
|
+
footer: string;
|
|
15
|
+
constructor(utilityService: UtilityService, stylesBundleService: StylesBundleService, anonymousLayoutService: AnonymousLayoutService, translateService: BBSFTranslateService, masterLayoutService: MasterLayoutService, appearanceConfigurationService: AppearanceConfigurationService);
|
|
16
|
+
ngOnInit(): void;
|
|
17
|
+
loadUI(): void;
|
|
18
|
+
changeLanguage(langKey: string): void;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<anonymouslayoutComponent, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<anonymouslayoutComponent, "app-account", never, {}, {}, never, never>;
|
|
21
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./login/login.component";
|
|
3
|
+
import * as i2 from "./anonymouslayout.component";
|
|
4
|
+
import * as i3 from "./forgot-password/forgot-password.component";
|
|
5
|
+
import * as i4 from "./rest-password/rest-password.component";
|
|
6
|
+
import * as i5 from "./activation/activation.component";
|
|
7
|
+
import * as i6 from "./upload-license/upload-license.component";
|
|
8
|
+
import * as i7 from "@angular/common";
|
|
9
|
+
import * as i8 from "@angular/router";
|
|
10
|
+
import * as i9 from "./anonymouslayout-routing.module";
|
|
11
|
+
import * as i10 from "../shared/shared.module";
|
|
12
|
+
import * as i11 from "@angular/forms";
|
|
13
|
+
import * as i12 from "@bnsights/bbsf-controls";
|
|
14
|
+
import * as i13 from "ng-block-ui";
|
|
15
|
+
export declare class AnonymouslayoutModule {
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AnonymouslayoutModule, never>;
|
|
17
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AnonymouslayoutModule, [typeof i1.LoginComponent, typeof i2.anonymouslayoutComponent, typeof i3.ForgotPasswordComponent, typeof i4.RestPasswordComponent, typeof i5.ActivationComponent, typeof i6.UploadLicenseComponent], [typeof i7.CommonModule, typeof i8.RouterModule, typeof i9.AnonymouslayoutRoutingModule, typeof i10.SharedModule, typeof i11.FormsModule, typeof i11.ReactiveFormsModule, typeof i12.BBSFControlsModule, typeof i13.BlockUIModule], never>;
|
|
18
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AnonymouslayoutModule>;
|
|
19
|
+
}
|
package/lib/Pages/{account → anonymouslayout}/forgot-password/forgot-password.component.d.ts
RENAMED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { FormGroup } from '@angular/forms';
|
|
3
|
+
import { Router } from '@angular/router';
|
|
3
4
|
import { FormOptions, TextBoxOptions } from '@bnsights/bbsf-controls';
|
|
4
5
|
import { UtilityService } from '@bnsights/bbsf-utilities';
|
|
5
6
|
import { Observable } from 'rxjs';
|
|
@@ -8,13 +9,15 @@ import * as i0 from "@angular/core";
|
|
|
8
9
|
export declare class ForgotPasswordComponent implements OnInit {
|
|
9
10
|
utilityService: UtilityService;
|
|
10
11
|
private accountService;
|
|
12
|
+
private router;
|
|
11
13
|
forgotForm: FormGroup;
|
|
12
14
|
forgotFormOptions: FormOptions;
|
|
13
15
|
email: TextBoxOptions;
|
|
14
|
-
constructor(utilityService: UtilityService, accountService: AccountService);
|
|
16
|
+
constructor(utilityService: UtilityService, accountService: AccountService, router: Router);
|
|
15
17
|
ngOnInit(): void;
|
|
16
18
|
getForgotModel: () => any[];
|
|
17
19
|
getForgotFunction: (email: any) => Observable<any>;
|
|
20
|
+
onSuccessHandler: (result: any) => void;
|
|
18
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<ForgotPasswordComponent, never>;
|
|
19
22
|
static ɵcmp: i0.ɵɵComponentDeclaration<ForgotPasswordComponent, "lib-forgot-password", never, {}, {}, never, never>;
|
|
20
23
|
}
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
-
import { AuthService } from '@bnsights/bbsf-utilities';
|
|
2
|
+
import { AuthService, UtilityService } from '@bnsights/bbsf-utilities';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class LoginComponent implements OnInit {
|
|
5
5
|
private authService;
|
|
6
|
+
utilityService: UtilityService;
|
|
6
7
|
title: string;
|
|
7
|
-
constructor(authService: AuthService);
|
|
8
|
+
constructor(authService: AuthService, utilityService: UtilityService);
|
|
8
9
|
login(): void;
|
|
9
10
|
ngOnInit(): void;
|
|
10
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<LoginComponent, never>;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { FormGroup } from '@angular/forms';
|
|
3
|
+
import { Router } from '@angular/router';
|
|
4
|
+
import { ActivatedRoute } from '@angular/router';
|
|
5
|
+
import { CustomValidation, FormOptions, TextBoxOptions } from '@bnsights/bbsf-controls';
|
|
6
|
+
import { UtilityService } from '@bnsights/bbsf-utilities';
|
|
7
|
+
import { Observable } from 'rxjs';
|
|
8
|
+
import { ActivationModel } from '../../shared/models/UserModels/ActivationModel';
|
|
9
|
+
import { AccountService } from '../../shared/Services/AccountService.service';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
11
|
+
export declare class RestPasswordComponent implements OnInit {
|
|
12
|
+
private activatedRoute;
|
|
13
|
+
private accountService;
|
|
14
|
+
utilityService: UtilityService;
|
|
15
|
+
private router;
|
|
16
|
+
Token: string;
|
|
17
|
+
ActivationModel: ActivationModel;
|
|
18
|
+
ErrorMessage: string;
|
|
19
|
+
restForm: FormGroup;
|
|
20
|
+
restFormOptions: FormOptions;
|
|
21
|
+
password: TextBoxOptions;
|
|
22
|
+
confirmPassword: TextBoxOptions;
|
|
23
|
+
customValidation: CustomValidation;
|
|
24
|
+
isModelLoaded: boolean;
|
|
25
|
+
constructor(activatedRoute: ActivatedRoute, accountService: AccountService, utilityService: UtilityService, router: Router);
|
|
26
|
+
ngOnInit(): void;
|
|
27
|
+
getRestModel: () => any[];
|
|
28
|
+
getRestFunction: (model: any) => Observable<any>;
|
|
29
|
+
onSuccessHandler: (result: any) => void;
|
|
30
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RestPasswordComponent, never>;
|
|
31
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RestPasswordComponent, "lib-rest-password", never, {}, {}, never, never>;
|
|
32
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { FormGroup } from '@angular/forms';
|
|
3
|
+
import { Router } from '@angular/router';
|
|
4
|
+
import { FileUploadOptions, FormOptions } from '@bnsights/bbsf-controls';
|
|
5
|
+
import { UtilityService } from '@bnsights/bbsf-utilities';
|
|
6
|
+
import { Observable } from 'rxjs';
|
|
7
|
+
import { AccountService } from '../../shared/Services/AccountService.service';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class UploadLicenseComponent implements OnInit {
|
|
10
|
+
private accountService;
|
|
11
|
+
utilityService: UtilityService;
|
|
12
|
+
private router;
|
|
13
|
+
ErrorMessage: string;
|
|
14
|
+
uploadFileForm: FormGroup;
|
|
15
|
+
uploadFileFormOptions: FormOptions;
|
|
16
|
+
licenseFileInput: FileUploadOptions;
|
|
17
|
+
constructor(accountService: AccountService, utilityService: UtilityService, router: Router);
|
|
18
|
+
ngOnInit(): void;
|
|
19
|
+
getAddLicenseModel: () => any[];
|
|
20
|
+
getAddLicenseFunction: (Model: any) => Observable<any>;
|
|
21
|
+
onSuccessHandler: (result: any) => void;
|
|
22
|
+
onErrorHandler: (err: any) => void;
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UploadLicenseComponent, never>;
|
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UploadLicenseComponent, "lib-upload-license", never, {}, {}, never, never>;
|
|
25
|
+
}
|
|
@@ -36,6 +36,7 @@ export declare class ConfigurationComponent implements OnInit {
|
|
|
36
36
|
LookupItemsList: any[];
|
|
37
37
|
ValueTypeList: any[];
|
|
38
38
|
ValueSourceList: any[];
|
|
39
|
+
CategoryList: any[];
|
|
39
40
|
ShowPermissionList: boolean;
|
|
40
41
|
ShowUsersList: boolean;
|
|
41
42
|
ShowLookupList: boolean;
|
|
@@ -59,6 +60,7 @@ export declare class ConfigurationComponent implements OnInit {
|
|
|
59
60
|
DefaultValueToggel: ToggleSlideOptions;
|
|
60
61
|
Scope: DropdownOptions;
|
|
61
62
|
Type: DropdownOptions;
|
|
63
|
+
Category: DropdownOptions;
|
|
62
64
|
PermissionSet: DropdownOptions;
|
|
63
65
|
User: DropdownOptions;
|
|
64
66
|
Source: DropdownOptions;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Router } from '@angular/router';
|
|
2
|
+
import { AuthService } from '@bnsights/bbsf-utilities';
|
|
3
|
+
import { AuthGuard } from './auth.guard';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class AdminGuard extends AuthGuard {
|
|
6
|
+
constructor(router: Router, authService: AuthService);
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AdminGuard, never>;
|
|
8
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AdminGuard>;
|
|
9
|
+
}
|
|
@@ -94,6 +94,7 @@ export declare class LocalizationsComponent implements OnInit, OnDestroy {
|
|
|
94
94
|
showRestToFactoryDefault(): void;
|
|
95
95
|
restToFactoryDefaultFunction: () => Observable<any>;
|
|
96
96
|
generateStronglyTypedClass(generateStronglyTypedModal: any): void;
|
|
97
|
+
generateBBSFResourceClass(generateModal: any): void;
|
|
97
98
|
copyInputMessage(): void;
|
|
98
99
|
showUploadModal(uploadResourceModal: any): void;
|
|
99
100
|
getUploadModal: () => any[];
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { FormGroup } from '@angular/forms';
|
|
3
|
-
import { CheckBoxOptions, ConfirmationModalOptions, DropdownOptions, FilterItem, FormOptions, MultiLingualTextBoxOptions, PagingOptions,
|
|
3
|
+
import { CheckBoxOptions, ConfirmationModalOptions, DropdownOptions, FilterItem, FormOptions, MultiLingualTextAreaOptions, MultiLingualTextBoxOptions, PagingOptions, TextBoxOptions } from '@bnsights/bbsf-controls';
|
|
4
4
|
import { PublicHolidayService } from '../../shared/Services/PublicHolidayService.service';
|
|
5
5
|
import { PageInfoService } from '../../../_metronic/core/services/page-info.service';
|
|
6
6
|
import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
|
|
@@ -34,24 +34,21 @@ export declare class PublicHolidayComponent implements OnInit {
|
|
|
34
34
|
AddPublicHolidayForm: FormGroup;
|
|
35
35
|
AddPublicHolidayFormOptions: FormOptions;
|
|
36
36
|
AddName: MultiLingualTextBoxOptions;
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
IsActive: CheckBoxOptions;
|
|
37
|
+
AddDescription: MultiLingualTextAreaOptions;
|
|
38
|
+
AddCountryOptions: DropdownOptions;
|
|
39
|
+
AddMonthOptions: DropdownOptions;
|
|
40
|
+
AddDayOptions: DropdownOptions;
|
|
41
|
+
AddSysName: TextBoxOptions;
|
|
42
|
+
AddIsActive: CheckBoxOptions;
|
|
44
43
|
EditPublicHolidayForm: FormGroup;
|
|
45
44
|
EditPublicHolidayFormOptions: FormOptions;
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
EditDescriptionInArabic: TextAreaOptions;
|
|
45
|
+
EditName: MultiLingualTextBoxOptions;
|
|
46
|
+
EditDescription: MultiLingualTextAreaOptions;
|
|
49
47
|
EditCountryOptions: DropdownOptions;
|
|
50
48
|
EditMonthOptions: DropdownOptions;
|
|
51
49
|
EditDayOptions: DropdownOptions;
|
|
52
50
|
EditSysName: TextBoxOptions;
|
|
53
51
|
EditIsActive: CheckBoxOptions;
|
|
54
|
-
IsEditPublicHolidayModelLoaded: boolean;
|
|
55
52
|
PublicHolidayId: number;
|
|
56
53
|
deletePublicHolidayId: string;
|
|
57
54
|
DeleteConfirmationOptions: ConfirmationModalOptions;
|
|
@@ -62,10 +59,10 @@ export declare class PublicHolidayComponent implements OnInit {
|
|
|
62
59
|
initializePage(): void;
|
|
63
60
|
setPublicHolidayListResult(result: any): void;
|
|
64
61
|
searchClientSide(searchValue: any): void;
|
|
65
|
-
showAddPublicHolidayModal(
|
|
62
|
+
showAddPublicHolidayModal(addPublicHolidayModal: any): void;
|
|
66
63
|
getAddPublicHolidayModel: () => any[];
|
|
67
64
|
getAddPublicHolidayFunction: (AddModel: any) => Observable<any>;
|
|
68
|
-
showEditPublicHolidayModal(publicHolidayID: number,
|
|
65
|
+
showEditPublicHolidayModal(publicHolidayID: number, publicHolidayIDEnc: any, editPublicHolidayModal: any): void;
|
|
69
66
|
getEditPublicHolidayModel: () => any[];
|
|
70
67
|
getEditPublicHolidayFunction: (EditModel: any) => Observable<any>;
|
|
71
68
|
showDeletePublicHolidayModal(publicHolidayIdEnc: any): void;
|