@bnsights/bbsf-admin-portal 1.1.2 → 1.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -0
- package/{esm2020 → esm2022}/bnsights-bbsf-admin-portal.mjs +4 -4
- package/{esm2020 → esm2022}/lib/Pages/ActiveDirectories/active-directories.component.mjs +14 -14
- package/esm2022/lib/Pages/ActiveDirectories/active-directory/active-directory.component.mjs +421 -0
- package/esm2022/lib/Pages/ActiveDirectories/active-directory-add/active-directory-add.component.mjs +528 -0
- package/{esm2020 → esm2022}/lib/Pages/ActiveDirectories/active-directory-routing.module.mjs +29 -29
- package/esm2022/lib/Pages/ActiveDirectories/active-directory.module.mjs +108 -0
- package/esm2022/lib/Pages/_layout/components/aside/aside-menu/aside-menu.component.mjs +23 -0
- package/{esm2020 → esm2022}/lib/Pages/_layout/components/aside/aside.component.mjs +65 -65
- package/{esm2020 → esm2022}/lib/Pages/_layout/components/content/content.component.mjs +31 -31
- package/{esm2020 → esm2022}/lib/Pages/_layout/components/footer/footer.component.mjs +32 -32
- package/{esm2020 → esm2022}/lib/Pages/_layout/components/header/header.component.mjs +57 -57
- package/{esm2020 → esm2022}/lib/Pages/_layout/components/header/page-title/page-title.component.mjs +36 -36
- package/{esm2020 → esm2022}/lib/Pages/_layout/components/scripts-init/scripts-init.component.mjs +58 -58
- package/{esm2020 → esm2022}/lib/Pages/_layout/components/subheader/subheader.component.mjs +36 -36
- package/{esm2020 → esm2022}/lib/Pages/_layout/components/subheader/subheader.module.mjs +26 -26
- package/{esm2020 → esm2022}/lib/Pages/_layout/components/toolbar/toolbar.component.mjs +41 -41
- package/{esm2020 → esm2022}/lib/Pages/_layout/components/toolbar/toolbar.module.mjs +25 -25
- package/{esm2020 → esm2022}/lib/Pages/_layout/components/topbar/topbar.component.mjs +71 -71
- package/{esm2020 → esm2022}/lib/Pages/anonymouslayout/activation/activation.component.mjs +92 -92
- package/{esm2020 → esm2022}/lib/Pages/anonymouslayout/anonymouslayout-routing.module.mjs +37 -37
- package/{esm2020 → esm2022}/lib/Pages/anonymouslayout/anonymouslayout.component.mjs +54 -54
- package/esm2022/lib/Pages/anonymouslayout/anonymouslayout.module.mjs +100 -0
- package/{esm2020 → esm2022}/lib/Pages/anonymouslayout/error/error.component.mjs +48 -48
- package/{esm2020 → esm2022}/lib/Pages/anonymouslayout/forgot-password/forgot-password.component.mjs +59 -59
- package/{esm2020 → esm2022}/lib/Pages/anonymouslayout/login/login.component.mjs +94 -94
- package/{esm2020 → esm2022}/lib/Pages/anonymouslayout/rest-password/rest-password.component.mjs +90 -90
- package/{esm2020 → esm2022}/lib/Pages/anonymouslayout/upload-license/upload-license.component.mjs +71 -71
- package/{esm2020 → esm2022}/lib/Pages/authentication/auth-callback/auth-callback.component.mjs +43 -43
- package/{esm2020 → esm2022}/lib/Pages/authentication/authentication.component.mjs +15 -15
- package/{esm2020 → esm2022}/lib/Pages/authentication/authentication.module.mjs +41 -41
- package/{esm2020 → esm2022}/lib/Pages/authentication/authentication.routing.mjs +31 -31
- package/esm2022/lib/Pages/configurations/auth-configuration/auth-configuration-edit/auth-configuration-edit.component.mjs +330 -0
- package/esm2022/lib/Pages/configurations/auth-configuration/auth-configuration.component.mjs +157 -0
- package/esm2022/lib/Pages/configurations/configuration/configuration.component.mjs +801 -0
- package/{esm2020 → esm2022}/lib/Pages/configurations/configurations.component.mjs +15 -15
- package/esm2022/lib/Pages/configurations/configurations.module.mjs +104 -0
- package/{esm2020 → esm2022}/lib/Pages/configurations/configurations.routing.mjs +41 -41
- package/{esm2020 → esm2022}/lib/Pages/configurations/index.mjs +6 -6
- package/{esm2020 → esm2022}/lib/Pages/core/auth.module.mjs +30 -30
- package/esm2022/lib/Pages/core/authentication/admin.guard.mjs +17 -0
- package/{esm2020 → esm2022}/lib/Pages/core/authentication/auth.guard.mjs +46 -46
- package/esm2022/lib/Pages/core/authentication/auth.service.mjs +147 -0
- package/esm2022/lib/Pages/departments/department/department.component.mjs +220 -0
- package/esm2022/lib/Pages/departments/department-info/department-info.component.mjs +185 -0
- package/{esm2020 → esm2022}/lib/Pages/departments/departments-routing.module.mjs +27 -27
- package/{esm2020 → esm2022}/lib/Pages/departments/departments.component.mjs +15 -15
- package/esm2022/lib/Pages/departments/departments.module.mjs +94 -0
- package/esm2022/lib/Pages/documents/add-document/add-document.component.mjs +136 -0
- package/esm2022/lib/Pages/documents/document-master-layouts/document-master-layouts.component.mjs +148 -0
- package/{esm2020 → esm2022}/lib/Pages/documents/document-template-info/document-template-info.component.mjs +332 -332
- package/esm2022/lib/Pages/documents/document-templates/document-templates.component.mjs +437 -0
- package/{esm2020 → esm2022}/lib/Pages/documents/documents.component.mjs +15 -15
- package/esm2022/lib/Pages/documents/documents.module.mjs +114 -0
- package/esm2022/lib/Pages/documents/documents.routing.mjs +37 -0
- package/esm2022/lib/Pages/documents/edit-document/edit-document.component.mjs +169 -0
- package/{esm2020 → esm2022}/lib/Pages/documents/edit-document-template/edit-document-template.component.mjs +123 -123
- package/{esm2020 → esm2022}/lib/Pages/empty-data/empty-data.component.mjs +31 -31
- package/{esm2020 → esm2022}/lib/Pages/empty-data/empty-data.module.mjs +28 -28
- package/esm2022/lib/Pages/helpCenter/help-center/help-center.component.mjs +294 -0
- package/esm2022/lib/Pages/helpCenter/help-center-preview/help-center-preview.component.mjs +43 -0
- package/{esm2020 → esm2022}/lib/Pages/helpCenter/help-center-routing.module.mjs +31 -31
- package/esm2022/lib/Pages/helpCenter/help-center-secondlevel/help-center-secondlevel.component.mjs +242 -0
- package/esm2022/lib/Pages/helpCenter/help-center-thirdlevel/help-center-thirdlevel.component.mjs +243 -0
- package/esm2022/lib/Pages/helpCenter/help-center.module.mjs +99 -0
- package/{esm2020 → esm2022}/lib/Pages/helpCenter/help-centers.component.mjs +15 -15
- package/{esm2020 → esm2022}/lib/Pages/home/filter-pipe.mjs +23 -23
- package/esm2022/lib/Pages/home/home.component.mjs +158 -0
- package/esm2022/lib/Pages/home/home.module.mjs +48 -0
- package/esm2022/lib/Pages/impersonation-rules/impersonation-rules/impersonation-rules.component.mjs +443 -0
- package/esm2022/lib/Pages/impersonation-rules/impersonation-rules.module.mjs +95 -0
- package/esm2022/lib/Pages/jobs/jobs/jobs.component.mjs +223 -0
- package/esm2022/lib/Pages/jobs/jobs.module.mjs +87 -0
- package/{esm2020 → esm2022}/lib/Pages/license/license/license.component.mjs +163 -163
- package/esm2022/lib/Pages/license/license.module.mjs +71 -0
- package/{esm2020 → esm2022}/lib/Pages/localizations/localizations-replace-text/localizations-replace-text.component.mjs +215 -215
- package/esm2022/lib/Pages/localizations/localizations.component.mjs +516 -0
- package/esm2022/lib/Pages/localizations/localizations.module.mjs +79 -0
- package/{esm2020 → esm2022}/lib/Pages/logs/log/log.component.mjs +93 -93
- package/{esm2020 → esm2022}/lib/Pages/logs/logs-routing.module.mjs +27 -27
- package/{esm2020 → esm2022}/lib/Pages/logs/logs.component.mjs +15 -15
- package/esm2022/lib/Pages/logs/logs.module.mjs +87 -0
- package/esm2022/lib/Pages/lookups/lookup/lookup.component.mjs +367 -0
- package/esm2022/lib/Pages/lookups/lookup-group/lookup-group.component.mjs +187 -0
- package/esm2022/lib/Pages/lookups/lookup-item/lookup-item.component.mjs +297 -0
- package/{esm2020 → esm2022}/lib/Pages/lookups/lookups-routing.module.mjs +29 -29
- package/{esm2020 → esm2022}/lib/Pages/lookups/lookups.component.mjs +15 -15
- package/esm2022/lib/Pages/lookups/lookups.module.mjs +100 -0
- package/esm2022/lib/Pages/notifications/add-notification/add-notification.component.mjs +104 -0
- package/{esm2020 → esm2022}/lib/Pages/notifications/edit-email/edit-email.component.mjs +158 -158
- package/esm2022/lib/Pages/notifications/edit-notification/edit-notification.component.mjs +133 -0
- package/{esm2020 → esm2022}/lib/Pages/notifications/edit-sms/edit-sms.component.mjs +115 -115
- package/esm2022/lib/Pages/notifications/master-layouts/master-layouts.component.mjs +148 -0
- package/esm2022/lib/Pages/notifications/notifications-routing.module.mjs +39 -0
- package/{esm2020 → esm2022}/lib/Pages/notifications/notifications.component.mjs +15 -15
- package/esm2022/lib/Pages/notifications/notifications.module.mjs +101 -0
- package/{esm2020 → esm2022}/lib/Pages/notifications/template-info/template-info.component.mjs +391 -391
- package/esm2022/lib/Pages/notifications/templates/templates.component.mjs +495 -0
- package/esm2022/lib/Pages/providers/provider/provider.component.mjs +615 -0
- package/{esm2020 → esm2022}/lib/Pages/providers/providers-routing.module.mjs +27 -27
- package/{esm2020 → esm2022}/lib/Pages/providers/providers.component.mjs +15 -15
- package/esm2022/lib/Pages/providers/providers.module.mjs +91 -0
- package/esm2022/lib/Pages/publicHolidays/public-holiday/public-holiday.component.mjs +334 -0
- package/{esm2020 → esm2022}/lib/Pages/publicHolidays/public-holidays-routing.module.mjs +25 -25
- package/{esm2020 → esm2022}/lib/Pages/publicHolidays/public-holidays.component.mjs +15 -15
- package/esm2022/lib/Pages/publicHolidays/public-holidays.module.mjs +94 -0
- package/esm2022/lib/Pages/roles/permission-set-info/permission-set-info.component.mjs +187 -0
- package/esm2022/lib/Pages/roles/permissions/permissions.component.mjs +226 -0
- package/esm2022/lib/Pages/roles/permissionsets/permissionsets.component.mjs +277 -0
- package/{esm2020 → esm2022}/lib/Pages/roles/roles-routing.module.mjs +29 -29
- package/{esm2020 → esm2022}/lib/Pages/roles/roles.component.mjs +15 -15
- package/esm2022/lib/Pages/roles/roles.module.mjs +105 -0
- package/esm2022/lib/Pages/sectors/sector/sector.component.mjs +193 -0
- package/esm2022/lib/Pages/sectors/sector-info/sector-info.component.mjs +180 -0
- package/esm2022/lib/Pages/sectors/sectors-department-info/sectors-department-info.component.mjs +187 -0
- package/{esm2020 → esm2022}/lib/Pages/sectors/sectors-routing.module.mjs +29 -29
- package/{esm2020 → esm2022}/lib/Pages/sectors/sectors.component.mjs +15 -15
- package/esm2022/lib/Pages/sectors/sectors.module.mjs +96 -0
- package/{esm2020 → esm2022}/lib/Pages/shared/Enums/ADType.mjs +5 -5
- package/{esm2020 → esm2022}/lib/Pages/shared/Enums/Enums.mjs +54 -54
- package/{esm2020 → esm2022}/lib/Pages/shared/Enums/ProviderType.mjs +6 -6
- package/{esm2020 → esm2022}/lib/Pages/shared/Enums/WFActivityType.mjs +11 -11
- package/{esm2020 → esm2022}/lib/Pages/shared/Enums/configuration/ConditionRHSType.mjs +5 -5
- package/{esm2020 → esm2022}/lib/Pages/shared/Enums/configuration/authentecation-configuration.mjs +18 -18
- package/{esm2020 → esm2022}/lib/Pages/shared/Pipes/survey-date.pipe.mjs +22 -22
- package/{esm2020 → esm2022}/lib/Pages/shared/Services/AccountService.service.mjs +55 -55
- package/{esm2020 → esm2022}/lib/Pages/shared/Services/ActiveDirectoryService.service.mjs +51 -51
- package/{esm2020 → esm2022}/lib/Pages/shared/Services/AnonymousLayoutService.service.mjs +29 -29
- package/{esm2020 → esm2022}/lib/Pages/shared/Services/ConfigurationsService.service.mjs +61 -61
- package/{esm2020 → esm2022}/lib/Pages/shared/Services/DepartmentService.service.mjs +46 -46
- package/{esm2020 → esm2022}/lib/Pages/shared/Services/DocumentHeaderAndFooterTemplate.service.mjs +36 -36
- package/{esm2020 → esm2022}/lib/Pages/shared/Services/DocumentTemplateService.service.mjs +81 -81
- package/{esm2020 → esm2022}/lib/Pages/shared/Services/EmailHeaderAndFooterTemplateService.Service.mjs +37 -37
- package/{esm2020 → esm2022}/lib/Pages/shared/Services/ErrorService.service.mjs +15 -15
- package/{esm2020 → esm2022}/lib/Pages/shared/Services/GlobalErrorHandler.service.mjs +36 -36
- package/{esm2020 → esm2022}/lib/Pages/shared/Services/HelpCenterService.service.mjs +47 -47
- package/{esm2020 → esm2022}/lib/Pages/shared/Services/HttpErrorInterceptor.service.mjs +47 -47
- package/{esm2020 → esm2022}/lib/Pages/shared/Services/ImpersonationRuleService.service.mjs +36 -36
- package/{esm2020 → esm2022}/lib/Pages/shared/Services/JobsService.service.mjs +21 -21
- package/{esm2020 → esm2022}/lib/Pages/shared/Services/LicenseService.service.mjs +24 -24
- package/{esm2020 → esm2022}/lib/Pages/shared/Services/LogsService.mjs +24 -24
- package/{esm2020 → esm2022}/lib/Pages/shared/Services/LookupGroupsService.service.mjs +33 -33
- package/{esm2020 → esm2022}/lib/Pages/shared/Services/LookupService.service.mjs +67 -67
- package/{esm2020 → esm2022}/lib/Pages/shared/Services/PermissionSetService.service.mjs +50 -50
- package/{esm2020 → esm2022}/lib/Pages/shared/Services/PermissionsService.service.mjs +36 -36
- package/{esm2020 → esm2022}/lib/Pages/shared/Services/PublicHolidayService.service.mjs +39 -39
- package/{esm2020 → esm2022}/lib/Pages/shared/Services/SectorService.service.mjs +46 -46
- package/{esm2020 → esm2022}/lib/Pages/shared/Services/TemplateService.service.mjs +90 -90
- package/{esm2020 → esm2022}/lib/Pages/shared/Services/WorkFlowVersionService.service.mjs +24 -24
- package/{esm2020 → esm2022}/lib/Pages/shared/Services/WorkflowActivityService.service.mjs +54 -54
- package/{esm2020 → esm2022}/lib/Pages/shared/Services/WorkflowInstanceService.service.mjs +24 -24
- package/{esm2020 → esm2022}/lib/Pages/shared/Services/WorkflowLogVariablesService.service.mjs +24 -24
- package/{esm2020 → esm2022}/lib/Pages/shared/Services/WorkflowService.service.mjs +38 -38
- package/{esm2020 → esm2022}/lib/Pages/shared/Services/WorkflowVariablesService.service.mjs +36 -36
- package/{esm2020 → esm2022}/lib/Pages/shared/Services/data.service.mjs +27 -27
- package/esm2022/lib/Pages/shared/Services/injectionModuleService.service.mjs +163 -0
- package/{esm2020 → esm2022}/lib/Pages/shared/Services/localizationsService.service .mjs +77 -77
- package/{esm2020 → esm2022}/lib/Pages/shared/Services/provider.service.mjs +62 -62
- package/{esm2020 → esm2022}/lib/Pages/shared/Services/survey-question.service.mjs +57 -57
- package/{esm2020 → esm2022}/lib/Pages/shared/Services/survey.service.mjs +140 -140
- package/{esm2020 → esm2022}/lib/Pages/shared/Services/userService.service.mjs +80 -80
- package/{esm2020 → esm2022}/lib/Pages/shared/base.service.mjs +19 -19
- package/{esm2020 → esm2022}/lib/Pages/shared/components/AdDirective.mjs +16 -16
- package/{esm2020 → esm2022}/lib/Pages/shared/components/external-url/external-url.component.mjs +168 -168
- package/{esm2020 → esm2022}/lib/Pages/shared/components/no-results/no-results.component.mjs +19 -19
- package/esm2022/lib/Pages/shared/components/survey/add-survey/add-survey.component.mjs +192 -0
- package/{esm2020 → esm2022}/lib/Pages/shared/components/survey/delete-survey/delete-survey.component.mjs +48 -48
- package/{esm2020 → esm2022}/lib/Pages/shared/components/survey/duplicate-survey/duplicate-survey.component.mjs +50 -50
- package/{esm2020 → esm2022}/lib/Pages/shared/components/survey/edit-survey/edit-survey.component.mjs +217 -217
- package/{esm2020 → esm2022}/lib/Pages/shared/components/survey/submissions/delete-submission/delete-submission.component.mjs +47 -47
- package/{esm2020 → esm2022}/lib/Pages/shared/components/survey/submissions/eliminate-submission/eliminate-submission.component.mjs +49 -49
- package/{esm2020 → esm2022}/lib/Pages/shared/components/survey/submissions/uneliminate-submission/uneliminate-submission.component.mjs +50 -50
- package/{esm2020 → esm2022}/lib/Pages/shared/components/survey/survey-info/add-question/add-question.component.mjs +624 -624
- package/{esm2020 → esm2022}/lib/Pages/shared/components/survey/survey-info/delete-question/delete-question.component.mjs +47 -47
- package/{esm2020 → esm2022}/lib/Pages/shared/components/survey/survey-info/edit-question/edit-question.component.mjs +683 -683
- package/{esm2020 → esm2022}/lib/Pages/shared/components/survey/survey-info/preview/preview.component.mjs +138 -138
- package/{esm2020 → esm2022}/lib/Pages/shared/components/survey/survey-info/publish-survey/publish-survey.component.mjs +102 -102
- package/{esm2020 → esm2022}/lib/Pages/shared/components/survey/survey-info/result-question/result.component.mjs +56 -56
- package/{esm2020 → esm2022}/lib/Pages/shared/components/survey/survey-info/survey-info.component.mjs +532 -532
- package/{esm2020 → esm2022}/lib/Pages/shared/components/survey/survey-info/take-survey/take-survey.component.mjs +113 -113
- package/{esm2020 → esm2022}/lib/Pages/shared/components/survey/survey-info/unpublish-survey/unpublish-survey.component.mjs +114 -114
- package/{esm2020 → esm2022}/lib/Pages/shared/components/survey/survey.component.mjs +292 -292
- package/esm2022/lib/Pages/shared/components/survey-form/survey-form.component.mjs +696 -0
- package/esm2022/lib/Pages/shared/components/survey-form-item/survey-form-item.component.mjs +84 -0
- package/{esm2020 → esm2022}/lib/Pages/shared/components/survey-layout/survey-layout.component.mjs +15 -15
- package/{esm2020 → esm2022}/lib/Pages/shared/config/environment.mjs +11 -11
- package/esm2022/lib/Pages/shared/constants.mjs +130 -0
- package/{esm2020 → esm2022}/lib/Pages/shared/filter/filter.component.mjs +14 -14
- package/{esm2020 → esm2022}/lib/Pages/shared/models/ADModels/ADMappingModel.mjs +3 -3
- package/{esm2020 → esm2022}/lib/Pages/shared/models/ADModels/ActiveDirectoryAddEditModel.mjs +6 -6
- package/{esm2020 → esm2022}/lib/Pages/shared/models/AccountModels/forgotPasswordModel.mjs +5 -5
- package/{esm2020 → esm2022}/lib/Pages/shared/models/ConfigurationModels/ConfigurationModel.mjs +50 -50
- package/{esm2020 → esm2022}/lib/Pages/shared/models/DepartmentModels/DepartmentModel.mjs +2 -2
- package/{esm2020 → esm2022}/lib/Pages/shared/models/DepartmentModels/DepartmentUsersIDRequestModel.mjs +5 -5
- package/{esm2020 → esm2022}/lib/Pages/shared/models/DocumentsModels/DocumentExportDTO.mjs +7 -7
- package/{esm2020 → esm2022}/lib/Pages/shared/models/DocumentsModels/DocumentHeaderAndFooterTemplate.mjs +9 -9
- package/{esm2020 → esm2022}/lib/Pages/shared/models/DocumentsModels/DocumentTemplateDTO.mjs +9 -9
- package/{esm2020 → esm2022}/lib/Pages/shared/models/DocumentsModels/DocumentTemplateInfoDTO.mjs +7 -7
- package/{esm2020 → esm2022}/lib/Pages/shared/models/HelpCenterModels/HelpCenterItemModel.mjs +11 -11
- package/{esm2020 → esm2022}/lib/Pages/shared/models/ImpersonationRuleModels/ImpersonationRuleModel.mjs +7 -7
- package/{esm2020 → esm2022}/lib/Pages/shared/models/ImpersonationRuleModels/ParticipantModel.mjs +8 -8
- package/{esm2020 → esm2022}/lib/Pages/shared/models/InjectedModuleModel/InjectedModule.mjs +6 -6
- package/{esm2020 → esm2022}/lib/Pages/shared/models/JobModels/JobCountsModel.mjs +2 -2
- package/{esm2020 → esm2022}/lib/Pages/shared/models/LicenseModel/LicenseModel.mjs +5 -5
- package/{esm2020 → esm2022}/lib/Pages/shared/models/LocalizationModels/EditResourceModel.mjs +7 -7
- package/{esm2020 → esm2022}/lib/Pages/shared/models/LocalizationModels/LocalizationReplaceTextModel.mjs +5 -5
- package/{esm2020 → esm2022}/lib/Pages/shared/models/LocalizationModels/UploadJsonVM.mjs +2 -2
- package/{esm2020 → esm2022}/lib/Pages/shared/models/Lookups/LookupGroupModel.mjs +6 -6
- package/{esm2020 → esm2022}/lib/Pages/shared/models/Lookups/LookupItem.mjs +7 -7
- package/{esm2020 → esm2022}/lib/Pages/shared/models/Lookups/LookupModel.mjs +8 -8
- package/{esm2020 → esm2022}/lib/Pages/shared/models/NotificationsModels/EmailHeaderAndFooterTemplate.mjs +10 -10
- package/{esm2020 → esm2022}/lib/Pages/shared/models/NotificationsModels/EmailTemplateInfoDTO.mjs +11 -11
- package/{esm2020 → esm2022}/lib/Pages/shared/models/NotificationsModels/EmailTemplateTesterModel.mjs +2 -2
- package/{esm2020 → esm2022}/lib/Pages/shared/models/NotificationsModels/SMSTemplateInfoDTO.mjs +6 -6
- package/{esm2020 → esm2022}/lib/Pages/shared/models/NotificationsModels/SMSTemplateTesterModel.mjs +2 -2
- package/{esm2020 → esm2022}/lib/Pages/shared/models/NotificationsModels/SendEmailTemplateModel.mjs +2 -2
- package/{esm2020 → esm2022}/lib/Pages/shared/models/NotificationsModels/TemplateDTO.mjs +9 -9
- package/{esm2020 → esm2022}/lib/Pages/shared/models/NotificationsModels/TemplateEditViewModel.mjs +8 -8
- package/{esm2020 → esm2022}/lib/Pages/shared/models/PermissionsModels/PermissionModel.mjs +7 -7
- package/{esm2020 → esm2022}/lib/Pages/shared/models/PermissionsModels/PermissionSetModel.mjs +7 -7
- package/{esm2020 → esm2022}/lib/Pages/shared/models/PermissionsModels/PermissionSetUsersIDRequestModel.mjs +5 -5
- package/{esm2020 → esm2022}/lib/Pages/shared/models/ProviderModels/DefaultProviderModel.mjs +5 -5
- package/{esm2020 → esm2022}/lib/Pages/shared/models/ProviderModels/EmailProviderTesterModel.mjs +2 -2
- package/{esm2020 → esm2022}/lib/Pages/shared/models/ProviderModels/ProviderAttributeModel.mjs +2 -2
- package/{esm2020 → esm2022}/lib/Pages/shared/models/ProviderModels/ProviderModel.mjs +5 -5
- package/{esm2020 → esm2022}/lib/Pages/shared/models/ProviderModels/SMSProviderTesterModel.mjs +2 -2
- package/{esm2020 → esm2022}/lib/Pages/shared/models/PublicHolidayModels/PublicHolidayModel.mjs +7 -7
- package/{esm2020 → esm2022}/lib/Pages/shared/models/SectorModels/SectorDepartmentModel.mjs +5 -5
- package/{esm2020 → esm2022}/lib/Pages/shared/models/SectorModels/SectorModel.mjs +6 -6
- package/{esm2020 → esm2022}/lib/Pages/shared/models/SurveyModels/DeleteSurveyDTO.mjs +2 -2
- package/{esm2020 → esm2022}/lib/Pages/shared/models/SurveyModels/add-survey-submissio.mjs +13 -13
- package/{esm2020 → esm2022}/lib/Pages/shared/models/SurveyModels/add-survey.mjs +10 -10
- package/{esm2020 → esm2022}/lib/Pages/shared/models/SurveyModels/model.mjs +2 -2
- package/{esm2020 → esm2022}/lib/Pages/shared/models/SurveyModels/survey-field-options.mjs +6 -6
- package/{esm2020 → esm2022}/lib/Pages/shared/models/SurveyModels/survey-filed-value.mjs +7 -7
- package/{esm2020 → esm2022}/lib/Pages/shared/models/SurveyModels/survey-form-options.mjs +7 -7
- package/{esm2020 → esm2022}/lib/Pages/shared/models/SurveyModels/survey-publish.mjs +4 -4
- package/{esm2020 → esm2022}/lib/Pages/shared/models/SurveyModels/survey-question-option.mjs +17 -17
- package/{esm2020 → esm2022}/lib/Pages/shared/models/SurveyModels/survey-question.mjs +10 -10
- package/esm2022/lib/Pages/shared/models/SurveyModels/survey-utils.mjs +8 -0
- package/{esm2020 → esm2022}/lib/Pages/shared/models/UserModels/ActivationModel.mjs +2 -2
- package/{esm2020 → esm2022}/lib/Pages/shared/models/UserModels/AddUserModel.mjs +36 -36
- package/{esm2020 → esm2022}/lib/Pages/shared/models/UserModels/DropdownsResponseModel.mjs +11 -11
- package/{esm2020 → esm2022}/lib/Pages/shared/models/UserModels/EditUserModel.mjs +8 -8
- package/{esm2020 → esm2022}/lib/Pages/shared/models/UserModels/IdentityModel.mjs +2 -2
- package/{esm2020 → esm2022}/lib/Pages/shared/models/UserModels/UserSearchParamDTO.mjs +2 -2
- package/{esm2020 → esm2022}/lib/Pages/shared/models/UserModels/UsersIDRequestModel.mjs +5 -5
- package/{esm2020 → esm2022}/lib/Pages/shared/models/WorkflowModels/VariableLookupModel.mjs +2 -2
- package/{esm2020 → esm2022}/lib/Pages/shared/models/WorkflowModels/WFActivityModel.mjs +16 -16
- package/{esm2020 → esm2022}/lib/Pages/shared/models/WorkflowModels/WFActivityOutcomeModel.mjs +2 -2
- package/{esm2020 → esm2022}/lib/Pages/shared/models/WorkflowModels/WFActivityVariablesModel.mjs +7 -7
- package/{esm2020 → esm2022}/lib/Pages/shared/models/WorkflowModels/WFCreationModel.mjs +7 -7
- package/{esm2020 → esm2022}/lib/Pages/shared/models/WorkflowModels/WFVariableModel.mjs +8 -8
- package/{esm2020 → esm2022}/lib/Pages/shared/models/user.registration.mjs +7 -7
- package/esm2022/lib/Pages/shared/modules/public-survey.module.mjs +68 -0
- package/{esm2020 → esm2022}/lib/Pages/shared/modules/survey-routing.module.mjs +39 -39
- package/esm2022/lib/Pages/shared/modules/survey.module.mjs +129 -0
- package/esm2022/lib/Pages/shared/shared.module.mjs +31 -0
- package/{esm2020 → esm2022}/lib/Pages/shared/stylesbundle.service.mjs +44 -44
- package/{esm2020 → esm2022}/lib/Pages/start/index/index.component.mjs +25 -25
- package/{esm2020 → esm2022}/lib/Pages/start/start-routing.module.mjs +22 -22
- package/{esm2020 → esm2022}/lib/Pages/start/start.module.mjs +31 -31
- package/esm2022/lib/Pages/users/users.component.mjs +806 -0
- package/esm2022/lib/Pages/users/users.module.mjs +86 -0
- package/{esm2020 → esm2022}/lib/Pages/workflows/activity/workflow-activity-add/workflow-activity-add.component.mjs +535 -535
- package/{esm2020 → esm2022}/lib/Pages/workflows/activity/workflow-activity-edit/workflow-activity-edit.component.mjs +840 -840
- package/{esm2020 → esm2022}/lib/Pages/workflows/instance-info/instance-info.component.mjs +302 -302
- package/esm2022/lib/Pages/workflows/tabs/tabs.component.mjs +793 -0
- package/{esm2020 → esm2022}/lib/Pages/workflows/version-info/version-info.component.mjs +137 -137
- package/esm2022/lib/Pages/workflows/workflow/workflow.component.mjs +209 -0
- package/{esm2020 → esm2022}/lib/Pages/workflows/workflows-routing.module.mjs +35 -35
- package/{esm2020 → esm2022}/lib/Pages/workflows/workflows.component.mjs +15 -15
- package/esm2022/lib/Pages/workflows/workflows.module.mjs +103 -0
- package/{esm2020 → esm2022}/lib/_metronic/configs/default-layout.config.mjs +95 -95
- package/{esm2020 → esm2022}/lib/_metronic/core/_utils/DomHelpers.mjs +270 -270
- package/{esm2020 → esm2022}/lib/_metronic/core/_utils/ElementAnimateUtil.mjs +166 -166
- package/esm2022/lib/_metronic/core/_utils/EventHandlerUtil.mjs +90 -0
- package/esm2022/lib/_metronic/core/_utils/_DOMEventHandlerUtil.mjs +49 -0
- package/esm2022/lib/_metronic/core/_utils/_DataUtil.mjs +48 -0
- package/{esm2020 → esm2022}/lib/_metronic/core/_utils/_ElementStyleUtil.mjs +16 -16
- package/{esm2020 → esm2022}/lib/_metronic/core/_utils/_TypesHelpers.mjs +48 -48
- package/{esm2020 → esm2022}/lib/_metronic/core/_utils/models/OffsetModel.mjs +1 -1
- package/{esm2020 → esm2022}/lib/_metronic/core/_utils/models/ViewPortModel.mjs +1 -1
- package/{esm2020 → esm2022}/lib/_metronic/core/components/MenuComponent.mjs +827 -827
- package/{esm2020 → esm2022}/lib/_metronic/core/components/_CookieComponent.mjs +52 -52
- package/esm2022/lib/_metronic/core/components/_DrawerComponent.mjs +288 -0
- package/{esm2020 → esm2022}/lib/_metronic/core/components/_ScrollComponent.mjs +252 -252
- package/esm2022/lib/_metronic/core/components/_ScrollTopComponent.mjs +113 -0
- package/esm2022/lib/_metronic/core/components/_ToggleComponent.mjs +157 -0
- package/{esm2020 → esm2022}/lib/_metronic/core/services/layout-init.service.mjs +155 -155
- package/{esm2020 → esm2022}/lib/_metronic/core/services/layout.service.mjs +150 -150
- package/esm2022/lib/_metronic/core/services/page-info.service.mjs +119 -0
- package/esm2022/lib/masterlayout-routing.module.mjs +41 -0
- package/{esm2020 → esm2022}/lib/masterlayout.component.mjs +118 -118
- package/esm2022/lib/masterlayout.module.mjs +188 -0
- package/{esm2020 → esm2022}/public-api.mjs +48 -48
- package/{fesm2020 → fesm2022}/bnsights-bbsf-admin-portal.mjs +26884 -26881
- package/fesm2022/bnsights-bbsf-admin-portal.mjs.map +1 -0
- package/index.d.ts +5 -5
- package/lib/Pages/ActiveDirectories/active-directories.component.d.ts +8 -8
- package/lib/Pages/ActiveDirectories/active-directory/active-directory.component.d.ts +85 -87
- package/lib/Pages/ActiveDirectories/active-directory-add/active-directory-add.component.d.ts +97 -99
- package/lib/Pages/ActiveDirectories/active-directory-routing.module.d.ts +7 -7
- package/lib/Pages/ActiveDirectories/active-directory.module.d.ts +26 -26
- package/lib/Pages/_layout/components/aside/aside-menu/aside-menu.component.d.ts +13 -13
- package/lib/Pages/_layout/components/aside/aside.component.d.ts +24 -24
- package/lib/Pages/_layout/components/content/content.component.d.ts +13 -13
- package/lib/Pages/_layout/components/footer/footer.component.d.ts +14 -14
- package/lib/Pages/_layout/components/header/header.component.d.ts +24 -24
- package/lib/Pages/_layout/components/header/page-title/page-title.component.d.ts +22 -22
- package/lib/Pages/_layout/components/scripts-init/scripts-init.component.d.ts +18 -18
- package/lib/Pages/_layout/components/subheader/subheader.component.d.ts +17 -17
- package/lib/Pages/_layout/components/subheader/subheader.module.d.ts +9 -9
- package/lib/Pages/_layout/components/toolbar/toolbar.component.d.ts +18 -18
- package/lib/Pages/_layout/components/toolbar/toolbar.module.d.ts +10 -10
- package/lib/Pages/_layout/components/topbar/topbar.component.d.ts +44 -44
- package/lib/Pages/anonymouslayout/activation/activation.component.d.ts +32 -32
- package/lib/Pages/anonymouslayout/anonymouslayout-routing.module.d.ts +7 -7
- package/lib/Pages/anonymouslayout/anonymouslayout.component.d.ts +24 -24
- package/lib/Pages/anonymouslayout/anonymouslayout.module.d.ts +21 -21
- package/lib/Pages/anonymouslayout/error/error.component.d.ts +25 -25
- package/lib/Pages/anonymouslayout/forgot-password/forgot-password.component.d.ts +24 -24
- package/lib/Pages/anonymouslayout/login/login.component.d.ts +36 -36
- package/lib/Pages/anonymouslayout/rest-password/rest-password.component.d.ts +32 -32
- package/lib/Pages/anonymouslayout/upload-license/upload-license.component.d.ts +25 -25
- package/lib/Pages/authentication/auth-callback/auth-callback.component.d.ts +21 -21
- package/lib/Pages/authentication/authentication.component.d.ts +8 -8
- package/lib/Pages/authentication/authentication.module.d.ts +12 -12
- package/lib/Pages/authentication/authentication.routing.d.ts +7 -7
- package/lib/Pages/configurations/auth-configuration/auth-configuration-edit/auth-configuration-edit.component.d.ts +75 -75
- package/lib/Pages/configurations/auth-configuration/auth-configuration.component.d.ts +57 -58
- package/lib/Pages/configurations/configuration/configuration.component.d.ts +127 -129
- package/lib/Pages/configurations/configurations.component.d.ts +8 -8
- package/lib/Pages/configurations/configurations.module.d.ts +24 -24
- package/lib/Pages/configurations/configurations.routing.d.ts +7 -7
- package/lib/Pages/configurations/index.d.ts +6 -6
- package/lib/Pages/core/auth.module.d.ts +8 -8
- package/lib/Pages/core/authentication/admin.guard.d.ts +9 -9
- package/lib/Pages/core/authentication/auth.guard.d.ts +14 -14
- package/lib/Pages/core/authentication/auth.service.d.ts +35 -35
- package/lib/Pages/departments/department/department.component.d.ts +66 -68
- package/lib/Pages/departments/department-info/department-info.component.d.ts +58 -60
- package/lib/Pages/departments/departments-routing.module.d.ts +7 -7
- package/lib/Pages/departments/departments.component.d.ts +8 -8
- package/lib/Pages/departments/departments.module.d.ts +21 -21
- package/lib/Pages/documents/{add/add.component.d.ts → add-document/add-document.component.d.ts} +40 -40
- package/lib/Pages/documents/document-master-layouts/document-master-layouts.component.d.ts +51 -53
- package/lib/Pages/documents/document-template-info/document-template-info.component.d.ts +67 -67
- package/lib/Pages/documents/document-templates/document-templates.component.d.ts +87 -89
- package/lib/Pages/documents/documents.component.d.ts +8 -8
- package/lib/Pages/documents/documents.module.d.ts +27 -27
- package/lib/Pages/documents/documents.routing.d.ts +7 -7
- package/lib/Pages/documents/{edit/edit.component.d.ts → edit-document/edit-document.component.d.ts} +42 -42
- package/lib/Pages/documents/edit-document-template/edit-document-template.component.d.ts +39 -39
- package/lib/Pages/empty-data/empty-data.component.d.ts +14 -14
- package/lib/Pages/empty-data/empty-data.module.d.ts +8 -8
- package/lib/Pages/helpCenter/help-center/help-center.component.d.ts +69 -71
- package/lib/Pages/helpCenter/help-center-preview/help-center-preview.component.d.ts +23 -23
- package/lib/Pages/helpCenter/help-center-routing.module.d.ts +7 -7
- package/lib/Pages/helpCenter/help-center-secondlevel/help-center-secondlevel.component.d.ts +65 -67
- package/lib/Pages/helpCenter/help-center-thirdlevel/help-center-thirdlevel.component.d.ts +64 -66
- package/lib/Pages/helpCenter/help-center.module.d.ts +25 -25
- package/lib/Pages/helpCenter/help-centers.component.d.ts +8 -8
- package/lib/Pages/home/filter-pipe.d.ts +7 -7
- package/lib/Pages/home/home.component.d.ts +19 -19
- package/lib/Pages/home/home.module.d.ts +14 -14
- package/lib/Pages/impersonation-rules/impersonation-rules/impersonation-rules.component.d.ts +86 -88
- package/lib/Pages/impersonation-rules/impersonation-rules.module.d.ts +19 -19
- package/lib/Pages/jobs/jobs/jobs.component.d.ts +76 -77
- package/lib/Pages/jobs/jobs.module.d.ts +17 -17
- package/lib/Pages/license/license/license.component.d.ts +59 -59
- package/lib/Pages/license/license.module.d.ts +15 -15
- package/lib/Pages/localizations/localizations-replace-text/localizations-replace-text.component.d.ts +53 -53
- package/lib/Pages/localizations/localizations.component.d.ts +108 -110
- package/lib/Pages/localizations/localizations.module.d.ts +18 -18
- package/lib/Pages/logs/log/log.component.d.ts +34 -34
- package/lib/Pages/logs/logs-routing.module.d.ts +7 -7
- package/lib/Pages/logs/logs.component.d.ts +8 -8
- package/lib/Pages/logs/logs.module.d.ts +20 -20
- package/lib/Pages/lookups/lookup/lookup.component.d.ts +83 -85
- package/lib/Pages/lookups/lookup-group/lookup-group.component.d.ts +58 -60
- package/lib/Pages/lookups/lookup-item/lookup-item.component.d.ts +84 -86
- package/lib/Pages/lookups/lookups-routing.module.d.ts +7 -7
- package/lib/Pages/lookups/lookups.component.d.ts +8 -8
- package/lib/Pages/lookups/lookups.module.d.ts +24 -24
- package/lib/Pages/notifications/{add/add.component.d.ts → add-notification/add-notification.component.d.ts} +33 -33
- package/lib/Pages/notifications/edit-email/edit-email.component.d.ts +43 -43
- package/lib/Pages/notifications/{edit/edit.component.d.ts → edit-notification/edit-notification.component.d.ts} +35 -35
- package/lib/Pages/notifications/edit-sms/edit-sms.component.d.ts +37 -37
- package/lib/Pages/notifications/master-layouts/master-layouts.component.d.ts +51 -53
- package/lib/Pages/notifications/notifications-routing.module.d.ts +7 -7
- package/lib/Pages/notifications/notifications.component.d.ts +8 -8
- package/lib/Pages/notifications/notifications.module.d.ts +28 -28
- package/lib/Pages/notifications/template-info/template-info.component.d.ts +86 -86
- package/lib/Pages/notifications/templates/templates.component.d.ts +100 -102
- package/lib/Pages/providers/provider/provider.component.d.ts +118 -120
- package/lib/Pages/providers/providers-routing.module.d.ts +7 -7
- package/lib/Pages/providers/providers.component.d.ts +8 -8
- package/lib/Pages/providers/providers.module.d.ts +21 -21
- package/lib/Pages/publicHolidays/public-holiday/public-holiday.component.d.ts +73 -75
- package/lib/Pages/publicHolidays/public-holidays-routing.module.d.ts +7 -7
- package/lib/Pages/publicHolidays/public-holidays.component.d.ts +8 -8
- package/lib/Pages/publicHolidays/public-holidays.module.d.ts +21 -21
- package/lib/Pages/roles/permission-set-info/permission-set-info.component.d.ts +56 -58
- package/lib/Pages/roles/permissions/permissions.component.d.ts +63 -65
- package/lib/Pages/roles/permissionsets/permissionsets.component.d.ts +67 -69
- package/lib/Pages/roles/roles-routing.module.d.ts +7 -7
- package/lib/Pages/roles/roles.component.d.ts +8 -8
- package/lib/Pages/roles/roles.module.d.ts +24 -24
- package/lib/Pages/sectors/sector/sector.component.d.ts +62 -64
- package/lib/Pages/sectors/sector-info/sector-info.component.d.ts +60 -62
- package/lib/Pages/sectors/{department-info/department-info.component.d.ts → sectors-department-info/sectors-department-info.component.d.ts} +61 -63
- package/lib/Pages/sectors/sectors-routing.module.d.ts +7 -7
- package/lib/Pages/sectors/sectors.component.d.ts +8 -8
- package/lib/Pages/sectors/sectors.module.d.ts +23 -23
- package/lib/Pages/shared/Enums/ADType.d.ts +4 -4
- package/lib/Pages/shared/Enums/Enums.d.ts +47 -47
- package/lib/Pages/shared/Enums/ProviderType.d.ts +5 -5
- package/lib/Pages/shared/Enums/WFActivityType.d.ts +10 -10
- package/lib/Pages/shared/Enums/configuration/ConditionRHSType.d.ts +4 -4
- package/lib/Pages/shared/Enums/configuration/authentecation-configuration.d.ts +15 -15
- package/lib/Pages/shared/Pipes/survey-date.pipe.d.ts +12 -12
- package/lib/Pages/shared/Services/AccountService.service.d.ts +21 -21
- package/lib/Pages/shared/Services/ActiveDirectoryService.service.d.ts +18 -18
- package/lib/Pages/shared/Services/AnonymousLayoutService.service.d.ts +17 -17
- package/lib/Pages/shared/Services/ConfigurationsService.service.d.ts +20 -20
- package/lib/Pages/shared/Services/DepartmentService.service.d.ts +18 -18
- package/lib/Pages/shared/Services/DocumentHeaderAndFooterTemplate.service.d.ts +15 -15
- package/lib/Pages/shared/Services/DocumentTemplateService.service.d.ts +26 -26
- package/lib/Pages/shared/Services/EmailHeaderAndFooterTemplateService.Service.d.ts +15 -15
- package/lib/Pages/shared/Services/ErrorService.service.d.ts +8 -8
- package/lib/Pages/shared/Services/GlobalErrorHandler.service.d.ts +10 -10
- package/lib/Pages/shared/Services/HelpCenterService.service.d.ts +18 -18
- package/lib/Pages/shared/Services/HttpErrorInterceptor.service.d.ts +12 -12
- package/lib/Pages/shared/Services/ImpersonationRuleService.service.d.ts +15 -15
- package/lib/Pages/shared/Services/JobsService.service.d.ts +10 -10
- package/lib/Pages/shared/Services/LicenseService.service.d.ts +12 -12
- package/lib/Pages/shared/Services/LogsService.d.ts +10 -10
- package/lib/Pages/shared/Services/LookupGroupsService.service.d.ts +14 -14
- package/lib/Pages/shared/Services/LookupService.service.d.ts +25 -25
- package/lib/Pages/shared/Services/PermissionSetService.service.d.ts +19 -19
- package/lib/Pages/shared/Services/PermissionsService.service.d.ts +15 -15
- package/lib/Pages/shared/Services/PublicHolidayService.service.d.ts +16 -16
- package/lib/Pages/shared/Services/SectorService.service.d.ts +18 -18
- package/lib/Pages/shared/Services/TemplateService.service.d.ts +34 -34
- package/lib/Pages/shared/Services/WorkFlowVersionService.service.d.ts +10 -10
- package/lib/Pages/shared/Services/WorkflowActivityService.service.d.ts +19 -19
- package/lib/Pages/shared/Services/WorkflowInstanceService.service.d.ts +10 -10
- package/lib/Pages/shared/Services/WorkflowLogVariablesService.service.d.ts +10 -10
- package/lib/Pages/shared/Services/WorkflowService.service.d.ts +15 -15
- package/lib/Pages/shared/Services/WorkflowVariablesService.service.d.ts +15 -15
- package/lib/Pages/shared/Services/data.service.d.ts +9 -9
- package/lib/Pages/shared/Services/injectionModuleService.service.d.ts +50 -50
- package/lib/Pages/shared/Services/localizationsService.service .d.ts +28 -28
- package/lib/Pages/shared/Services/provider.service.d.ts +25 -25
- package/lib/Pages/shared/Services/survey-question.service.d.ts +19 -19
- package/lib/Pages/shared/Services/survey.service.d.ts +38 -38
- package/lib/Pages/shared/Services/userService.service.d.ts +29 -29
- package/lib/Pages/shared/base.service.d.ts +4 -4
- package/lib/Pages/shared/components/AdDirective.d.ts +8 -8
- package/lib/Pages/shared/components/external-url/external-url.component.d.ts +61 -61
- package/lib/Pages/shared/components/no-results/no-results.component.d.ts +10 -10
- package/lib/Pages/shared/components/survey/add-survey/add-survey.component.d.ts +40 -40
- package/lib/Pages/shared/components/survey/delete-survey/delete-survey.component.d.ts +19 -19
- package/lib/Pages/shared/components/survey/duplicate-survey/duplicate-survey.component.d.ts +19 -19
- package/lib/Pages/shared/components/survey/edit-survey/edit-survey.component.d.ts +43 -43
- package/lib/Pages/shared/components/survey/submissions/delete-submission/delete-submission.component.d.ts +19 -19
- package/lib/Pages/shared/components/survey/submissions/eliminate-submission/eliminate-submission.component.d.ts +19 -19
- package/lib/Pages/shared/components/survey/submissions/uneliminate-submission/uneliminate-submission.component.d.ts +19 -19
- package/lib/Pages/shared/components/survey/survey-info/add-question/add-question.component.d.ts +83 -83
- package/lib/Pages/shared/components/survey/survey-info/delete-question/delete-question.component.d.ts +19 -19
- package/lib/Pages/shared/components/survey/survey-info/edit-question/edit-question.component.d.ts +84 -84
- package/lib/Pages/shared/components/survey/survey-info/preview/preview.component.d.ts +40 -40
- package/lib/Pages/shared/components/survey/survey-info/publish-survey/publish-survey.component.d.ts +31 -31
- package/lib/Pages/shared/components/survey/survey-info/result-question/result.component.d.ts +27 -27
- package/lib/Pages/shared/components/survey/survey-info/survey-info.component.d.ts +119 -119
- package/lib/Pages/shared/components/survey/survey-info/take-survey/take-survey.component.d.ts +39 -39
- package/lib/Pages/shared/components/survey/survey-info/unpublish-survey/unpublish-survey.component.d.ts +32 -32
- package/lib/Pages/shared/components/survey/survey.component.d.ts +65 -65
- package/lib/Pages/shared/components/survey-form/survey-form.component.d.ts +41 -41
- package/lib/Pages/shared/components/survey-form-item/survey-form-item.component.d.ts +23 -23
- package/lib/Pages/shared/components/survey-layout/survey-layout.component.d.ts +8 -8
- package/lib/Pages/shared/config/environment.d.ts +1 -1
- package/lib/Pages/shared/constants.d.ts +129 -129
- package/lib/Pages/shared/filter/filter.component.d.ts +8 -8
- package/lib/Pages/shared/models/ADModels/ADMappingModel.d.ts +6 -6
- package/lib/Pages/shared/models/ADModels/ActiveDirectoryAddEditModel.d.ts +28 -28
- package/lib/Pages/shared/models/AccountModels/forgotPasswordModel.d.ts +3 -3
- package/lib/Pages/shared/models/ConfigurationModels/ConfigurationModel.d.ts +64 -64
- package/lib/Pages/shared/models/DepartmentModels/DepartmentModel.d.ts +9 -9
- package/lib/Pages/shared/models/DepartmentModels/DepartmentUsersIDRequestModel.d.ts +4 -4
- package/lib/Pages/shared/models/DocumentsModels/DocumentExportDTO.d.ts +8 -8
- package/lib/Pages/shared/models/DocumentsModels/DocumentHeaderAndFooterTemplate.d.ts +16 -16
- package/lib/Pages/shared/models/DocumentsModels/DocumentTemplateDTO.d.ts +13 -13
- package/lib/Pages/shared/models/DocumentsModels/DocumentTemplateInfoDTO.d.ts +7 -7
- package/lib/Pages/shared/models/HelpCenterModels/HelpCenterItemModel.d.ts +17 -17
- package/lib/Pages/shared/models/ImpersonationRuleModels/ImpersonationRuleModel.d.ts +9 -9
- package/lib/Pages/shared/models/ImpersonationRuleModels/ParticipantModel.d.ts +15 -15
- package/lib/Pages/shared/models/InjectedModuleModel/InjectedModule.d.ts +5 -5
- package/lib/Pages/shared/models/JobModels/JobCountsModel.d.ts +8 -8
- package/lib/Pages/shared/models/LicenseModel/LicenseModel.d.ts +5 -5
- package/lib/Pages/shared/models/LocalizationModels/EditResourceModel.d.ts +7 -7
- package/lib/Pages/shared/models/LocalizationModels/LocalizationReplaceTextModel.d.ts +9 -9
- package/lib/Pages/shared/models/LocalizationModels/UploadJsonVM.d.ts +5 -5
- package/lib/Pages/shared/models/Lookups/LookupGroupModel.d.ts +5 -5
- package/lib/Pages/shared/models/Lookups/LookupItem.d.ts +13 -13
- package/lib/Pages/shared/models/Lookups/LookupModel.d.ts +13 -13
- package/lib/Pages/shared/models/NotificationsModels/EmailHeaderAndFooterTemplate.d.ts +9 -9
- package/lib/Pages/shared/models/NotificationsModels/EmailTemplateInfoDTO.d.ts +15 -15
- package/lib/Pages/shared/models/NotificationsModels/EmailTemplateTesterModel.d.ts +9 -9
- package/lib/Pages/shared/models/NotificationsModels/SMSTemplateInfoDTO.d.ts +9 -9
- package/lib/Pages/shared/models/NotificationsModels/SMSTemplateTesterModel.d.ts +9 -9
- package/lib/Pages/shared/models/NotificationsModels/SendEmailTemplateModel.d.ts +8 -8
- package/lib/Pages/shared/models/NotificationsModels/TemplateDTO.d.ts +22 -22
- package/lib/Pages/shared/models/NotificationsModels/TemplateEditViewModel.d.ts +11 -11
- package/lib/Pages/shared/models/PermissionsModels/PermissionModel.d.ts +8 -8
- package/lib/Pages/shared/models/PermissionsModels/PermissionSetModel.d.ts +10 -10
- package/lib/Pages/shared/models/PermissionsModels/PermissionSetUsersIDRequestModel.d.ts +4 -4
- package/lib/Pages/shared/models/ProviderModels/DefaultProviderModel.d.ts +6 -6
- package/lib/Pages/shared/models/ProviderModels/EmailProviderTesterModel.d.ts +7 -7
- package/lib/Pages/shared/models/ProviderModels/ProviderAttributeModel.d.ts +7 -7
- package/lib/Pages/shared/models/ProviderModels/ProviderModel.d.ts +13 -13
- package/lib/Pages/shared/models/ProviderModels/SMSProviderTesterModel.d.ts +6 -6
- package/lib/Pages/shared/models/PublicHolidayModels/PublicHolidayModel.d.ts +15 -15
- package/lib/Pages/shared/models/SectorModels/SectorDepartmentModel.d.ts +4 -4
- package/lib/Pages/shared/models/SectorModels/SectorModel.d.ts +6 -6
- package/lib/Pages/shared/models/SurveyModels/DeleteSurveyDTO.d.ts +3 -3
- package/lib/Pages/shared/models/SurveyModels/add-survey-submissio.d.ts +21 -21
- package/lib/Pages/shared/models/SurveyModels/add-survey.d.ts +18 -18
- package/lib/Pages/shared/models/SurveyModels/model.d.ts +3 -3
- package/lib/Pages/shared/models/SurveyModels/survey-field-options.d.ts +24 -24
- package/lib/Pages/shared/models/SurveyModels/survey-filed-value.d.ts +22 -22
- package/lib/Pages/shared/models/SurveyModels/survey-form-options.d.ts +8 -8
- package/lib/Pages/shared/models/SurveyModels/survey-publish.d.ts +15 -15
- package/lib/Pages/shared/models/SurveyModels/survey-question-option.d.ts +9 -9
- package/lib/Pages/shared/models/SurveyModels/survey-question.d.ts +21 -21
- package/lib/Pages/shared/models/SurveyModels/survey-utils.d.ts +5 -5
- package/lib/Pages/shared/models/UserModels/ActivationModel.d.ts +10 -10
- package/lib/Pages/shared/models/UserModels/AddUserModel.d.ts +33 -33
- package/lib/Pages/shared/models/UserModels/DropdownsResponseModel.d.ts +9 -9
- package/lib/Pages/shared/models/UserModels/EditUserModel.d.ts +25 -25
- package/lib/Pages/shared/models/UserModels/IdentityModel.d.ts +9 -9
- package/lib/Pages/shared/models/UserModels/UserSearchParamDTO.d.ts +8 -8
- package/lib/Pages/shared/models/UserModels/UsersIDRequestModel.d.ts +3 -3
- package/lib/Pages/shared/models/WorkflowModels/VariableLookupModel.d.ts +9 -9
- package/lib/Pages/shared/models/WorkflowModels/WFActivityModel.d.ts +40 -40
- package/lib/Pages/shared/models/WorkflowModels/WFActivityOutcomeModel.d.ts +13 -13
- package/lib/Pages/shared/models/WorkflowModels/WFActivityVariablesModel.d.ts +13 -13
- package/lib/Pages/shared/models/WorkflowModels/WFCreationModel.d.ts +10 -10
- package/lib/Pages/shared/models/WorkflowModels/WFVariableModel.d.ts +23 -23
- package/lib/Pages/shared/models/user.registration.d.ts +6 -6
- package/lib/Pages/shared/modules/public-survey.module.d.ts +15 -15
- package/lib/Pages/shared/modules/survey-routing.module.d.ts +7 -7
- package/lib/Pages/shared/modules/survey.module.d.ts +35 -35
- package/lib/Pages/shared/shared.module.d.ts +8 -8
- package/lib/Pages/shared/stylesbundle.service.d.ts +9 -9
- package/lib/Pages/start/index/index.component.d.ts +15 -15
- package/lib/Pages/start/start-routing.module.d.ts +7 -7
- package/lib/Pages/start/start.module.d.ts +11 -11
- package/lib/Pages/users/users.component.d.ts +138 -139
- package/lib/Pages/users/users.module.d.ts +18 -18
- package/lib/Pages/workflows/activity/workflow-activity-add/workflow-activity-add.component.d.ts +77 -77
- package/lib/Pages/workflows/activity/workflow-activity-edit/workflow-activity-edit.component.d.ts +82 -82
- package/lib/Pages/workflows/instance-info/instance-info.component.d.ts +81 -81
- package/lib/Pages/workflows/tabs/tabs.component.d.ts +126 -128
- package/lib/Pages/workflows/version-info/version-info.component.d.ts +41 -41
- package/lib/Pages/workflows/workflow/workflow.component.d.ts +54 -55
- package/lib/Pages/workflows/workflows-routing.module.d.ts +7 -7
- package/lib/Pages/workflows/workflows.component.d.ts +8 -8
- package/lib/Pages/workflows/workflows.module.d.ts +27 -27
- package/lib/_metronic/configs/default-layout.config.d.ts +139 -139
- package/lib/_metronic/core/_utils/DomHelpers.d.ts +26 -26
- package/lib/_metronic/core/_utils/ElementAnimateUtil.d.ts +13 -13
- package/lib/_metronic/core/_utils/EventHandlerUtil.d.ts +20 -20
- package/lib/_metronic/core/_utils/_DOMEventHandlerUtil.d.ts +6 -6
- package/lib/_metronic/core/_utils/_DataUtil.d.ts +8 -8
- package/lib/_metronic/core/_utils/_ElementStyleUtil.d.ts +5 -5
- package/lib/_metronic/core/_utils/_TypesHelpers.d.ts +10 -10
- package/lib/_metronic/core/_utils/models/OffsetModel.d.ts +4 -4
- package/lib/_metronic/core/_utils/models/ViewPortModel.d.ts +4 -4
- package/lib/_metronic/core/components/MenuComponent.d.ts +88 -88
- package/lib/_metronic/core/components/_CookieComponent.d.ts +25 -25
- package/lib/_metronic/core/components/_DrawerComponent.d.ts +49 -49
- package/lib/_metronic/core/components/_ScrollComponent.d.ts +31 -31
- package/lib/_metronic/core/components/_ScrollTopComponent.d.ts +24 -24
- package/lib/_metronic/core/components/_ToggleComponent.d.ts +36 -36
- package/lib/_metronic/core/services/layout-init.service.d.ts +18 -18
- package/lib/_metronic/core/services/layout.service.d.ts +38 -38
- package/lib/_metronic/core/services/page-info.service.d.ts +32 -32
- package/lib/masterlayout-routing.module.d.ts +11 -13
- package/lib/masterlayout.component.d.ts +63 -63
- package/lib/masterlayout.module.d.ts +34 -34
- package/package.json +25 -30
- package/public-api.d.ts +41 -41
- package/src/lib/assets/images/menu/Tools.svg +10 -4
- package/src/lib/assets/images/menu/authentication.svg +9 -0
- package/src/lib/assets/sass/style-rtl.scss +3 -3
- package/src/lib/assets/sass/style.scss +3 -3
- package/bnsights-bbsf-admin-portal-1.1.2.tgz +0 -0
- package/esm2020/lib/Pages/ActiveDirectories/active-directory/active-directory.component.mjs +0 -421
- package/esm2020/lib/Pages/ActiveDirectories/active-directory-add/active-directory-add.component.mjs +0 -528
- package/esm2020/lib/Pages/ActiveDirectories/active-directory.module.mjs +0 -108
- package/esm2020/lib/Pages/_layout/components/aside/aside-menu/aside-menu.component.mjs +0 -23
- package/esm2020/lib/Pages/anonymouslayout/anonymouslayout.module.mjs +0 -100
- package/esm2020/lib/Pages/configurations/auth-configuration/auth-configuration-edit/auth-configuration-edit.component.mjs +0 -330
- package/esm2020/lib/Pages/configurations/auth-configuration/auth-configuration.component.mjs +0 -157
- package/esm2020/lib/Pages/configurations/configuration/configuration.component.mjs +0 -801
- package/esm2020/lib/Pages/configurations/configurations.module.mjs +0 -104
- package/esm2020/lib/Pages/core/authentication/admin.guard.mjs +0 -17
- package/esm2020/lib/Pages/core/authentication/auth.service.mjs +0 -147
- package/esm2020/lib/Pages/departments/department/department.component.mjs +0 -220
- package/esm2020/lib/Pages/departments/department-info/department-info.component.mjs +0 -185
- package/esm2020/lib/Pages/departments/departments.module.mjs +0 -94
- package/esm2020/lib/Pages/documents/add/add.component.mjs +0 -136
- package/esm2020/lib/Pages/documents/document-master-layouts/document-master-layouts.component.mjs +0 -148
- package/esm2020/lib/Pages/documents/document-templates/document-templates.component.mjs +0 -437
- package/esm2020/lib/Pages/documents/documents.module.mjs +0 -114
- package/esm2020/lib/Pages/documents/documents.routing.mjs +0 -37
- package/esm2020/lib/Pages/documents/edit/edit.component.mjs +0 -169
- package/esm2020/lib/Pages/helpCenter/help-center/help-center.component.mjs +0 -294
- package/esm2020/lib/Pages/helpCenter/help-center-preview/help-center-preview.component.mjs +0 -43
- package/esm2020/lib/Pages/helpCenter/help-center-secondlevel/help-center-secondlevel.component.mjs +0 -242
- package/esm2020/lib/Pages/helpCenter/help-center-thirdlevel/help-center-thirdlevel.component.mjs +0 -243
- package/esm2020/lib/Pages/helpCenter/help-center.module.mjs +0 -98
- package/esm2020/lib/Pages/home/home.component.mjs +0 -153
- package/esm2020/lib/Pages/home/home.module.mjs +0 -48
- package/esm2020/lib/Pages/impersonation-rules/impersonation-rules/impersonation-rules.component.mjs +0 -443
- package/esm2020/lib/Pages/impersonation-rules/impersonation-rules.module.mjs +0 -95
- package/esm2020/lib/Pages/jobs/jobs/jobs.component.mjs +0 -223
- package/esm2020/lib/Pages/jobs/jobs.module.mjs +0 -87
- package/esm2020/lib/Pages/license/license.module.mjs +0 -71
- package/esm2020/lib/Pages/localizations/localizations.component.mjs +0 -516
- package/esm2020/lib/Pages/localizations/localizations.module.mjs +0 -79
- package/esm2020/lib/Pages/logs/logs.module.mjs +0 -87
- package/esm2020/lib/Pages/lookups/lookup/lookup.component.mjs +0 -367
- package/esm2020/lib/Pages/lookups/lookup-group/lookup-group.component.mjs +0 -187
- package/esm2020/lib/Pages/lookups/lookup-item/lookup-item.component.mjs +0 -297
- package/esm2020/lib/Pages/lookups/lookups.module.mjs +0 -100
- package/esm2020/lib/Pages/notifications/add/add.component.mjs +0 -104
- package/esm2020/lib/Pages/notifications/edit/edit.component.mjs +0 -133
- package/esm2020/lib/Pages/notifications/master-layouts/master-layouts.component.mjs +0 -148
- package/esm2020/lib/Pages/notifications/notifications-routing.module.mjs +0 -39
- package/esm2020/lib/Pages/notifications/notifications.module.mjs +0 -101
- package/esm2020/lib/Pages/notifications/templates/templates.component.mjs +0 -495
- package/esm2020/lib/Pages/providers/provider/provider.component.mjs +0 -615
- package/esm2020/lib/Pages/providers/providers.module.mjs +0 -91
- package/esm2020/lib/Pages/publicHolidays/public-holiday/public-holiday.component.mjs +0 -334
- package/esm2020/lib/Pages/publicHolidays/public-holidays.module.mjs +0 -94
- package/esm2020/lib/Pages/roles/permission-set-info/permission-set-info.component.mjs +0 -187
- package/esm2020/lib/Pages/roles/permissions/permissions.component.mjs +0 -226
- package/esm2020/lib/Pages/roles/permissionsets/permissionsets.component.mjs +0 -277
- package/esm2020/lib/Pages/roles/roles.module.mjs +0 -105
- package/esm2020/lib/Pages/sectors/department-info/department-info.component.mjs +0 -187
- package/esm2020/lib/Pages/sectors/sector/sector.component.mjs +0 -193
- package/esm2020/lib/Pages/sectors/sector-info/sector-info.component.mjs +0 -180
- package/esm2020/lib/Pages/sectors/sectors.module.mjs +0 -96
- package/esm2020/lib/Pages/shared/Enums/WFVariableDataType.mjs +0 -14
- package/esm2020/lib/Pages/shared/Services/injectionModuleService.service.mjs +0 -163
- package/esm2020/lib/Pages/shared/components/survey/add-survey/add-survey.component.mjs +0 -192
- package/esm2020/lib/Pages/shared/components/survey-form/survey-form.component.mjs +0 -696
- package/esm2020/lib/Pages/shared/components/survey-form-item/survey-form-item.component.mjs +0 -84
- package/esm2020/lib/Pages/shared/constants.mjs +0 -130
- package/esm2020/lib/Pages/shared/models/SurveyModels/survey-utils.mjs +0 -8
- package/esm2020/lib/Pages/shared/modules/public-survey.module.mjs +0 -68
- package/esm2020/lib/Pages/shared/modules/survey.module.mjs +0 -126
- package/esm2020/lib/Pages/shared/shared.module.mjs +0 -31
- package/esm2020/lib/Pages/users/users.component.mjs +0 -806
- package/esm2020/lib/Pages/users/users.module.mjs +0 -86
- package/esm2020/lib/Pages/workflows/tabs/tabs.component.mjs +0 -793
- package/esm2020/lib/Pages/workflows/workflow/workflow.component.mjs +0 -209
- package/esm2020/lib/Pages/workflows/workflows.module.mjs +0 -103
- package/esm2020/lib/_metronic/core/_utils/EventHandlerUtil.mjs +0 -90
- package/esm2020/lib/_metronic/core/_utils/_DOMEventHandlerUtil.mjs +0 -49
- package/esm2020/lib/_metronic/core/_utils/_DataUtil.mjs +0 -48
- package/esm2020/lib/_metronic/core/components/_DrawerComponent.mjs +0 -290
- package/esm2020/lib/_metronic/core/components/_ScrollTopComponent.mjs +0 -113
- package/esm2020/lib/_metronic/core/components/_ToggleComponent.mjs +0 -157
- package/esm2020/lib/_metronic/core/services/page-info.service.mjs +0 -119
- package/esm2020/lib/masterlayout-routing.module.mjs +0 -45
- package/esm2020/lib/masterlayout.module.mjs +0 -188
- package/fesm2015/bnsights-bbsf-admin-portal.mjs +0 -27293
- package/fesm2015/bnsights-bbsf-admin-portal.mjs.map +0 -1
- package/fesm2020/bnsights-bbsf-admin-portal.mjs.map +0 -1
- package/lib/Pages/shared/Enums/WFVariableDataType.d.ts +0 -12
|
@@ -1,43 +1,43 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { FormGroup } from '@angular/forms';
|
|
3
|
-
import { ActivatedRoute, Router } from '@angular/router';
|
|
4
|
-
import { FormOptions, HtmlEditorOptions, TextBoxOptions } from '@bnsights/bbsf-controls';
|
|
5
|
-
import { PageInfoService } from '../../../_metronic/core/services/page-info.service';
|
|
6
|
-
import { TemplateService } from '../../shared/Services/TemplateService.service';
|
|
7
|
-
import { UtilityService, BBSFTranslateService, RequestHandlerService } from '@bnsights/bbsf-utilities';
|
|
8
|
-
import { Observable } from 'rxjs';
|
|
9
|
-
import * as i0 from "@angular/core";
|
|
10
|
-
export declare class EditEmailComponent implements OnInit {
|
|
11
|
-
private pageInfoService;
|
|
12
|
-
utilityService: UtilityService;
|
|
13
|
-
private bbsfTranslateService;
|
|
14
|
-
private templateService;
|
|
15
|
-
private activatedRoute;
|
|
16
|
-
private router;
|
|
17
|
-
private requestHandlerService;
|
|
18
|
-
TemplateId: string;
|
|
19
|
-
Lang: string;
|
|
20
|
-
TemplateInfo: any;
|
|
21
|
-
IsFormLoaded: boolean;
|
|
22
|
-
EditEmailForm: FormGroup<{}>;
|
|
23
|
-
EditEmailFormOptions: FormOptions;
|
|
24
|
-
EmailSubjectInEnglish: TextBoxOptions;
|
|
25
|
-
EmailSubjectInArabic: TextBoxOptions;
|
|
26
|
-
EmailBodyInEnglish: HtmlEditorOptions;
|
|
27
|
-
EmailBodyInArabic: HtmlEditorOptions;
|
|
28
|
-
HtmlBodyTagAttributesEnglish: TextBoxOptions;
|
|
29
|
-
HtmlBodyTagAttributesArabic: TextBoxOptions;
|
|
30
|
-
HTMLHeadSectionInEnglish: TextBoxOptions;
|
|
31
|
-
HTMLHeadSectionInArabic: TextBoxOptions;
|
|
32
|
-
constructor(pageInfoService: PageInfoService, utilityService: UtilityService, bbsfTranslateService: BBSFTranslateService, templateService: TemplateService, activatedRoute: ActivatedRoute, router: Router, requestHandlerService: RequestHandlerService);
|
|
33
|
-
ngOnInit(): Promise<void>;
|
|
34
|
-
initializePage(): void;
|
|
35
|
-
getEditEmailModel: () => any[];
|
|
36
|
-
getEditEmailFunction: (EditModel: any) => Observable<any>;
|
|
37
|
-
onEditEmailSuccess: (result: any) => void;
|
|
38
|
-
cancelEdit(): void;
|
|
39
|
-
changeCurrentLanguage(lang: string): void;
|
|
40
|
-
ngOnDestroy(): void;
|
|
41
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<EditEmailComponent, never>;
|
|
42
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EditEmailComponent, "lib-edit-email", never, {}, {}, never, never, false, never>;
|
|
43
|
-
}
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { FormGroup } from '@angular/forms';
|
|
3
|
+
import { ActivatedRoute, Router } from '@angular/router';
|
|
4
|
+
import { FormOptions, HtmlEditorOptions, TextBoxOptions } from '@bnsights/bbsf-controls';
|
|
5
|
+
import { PageInfoService } from '../../../_metronic/core/services/page-info.service';
|
|
6
|
+
import { TemplateService } from '../../shared/Services/TemplateService.service';
|
|
7
|
+
import { UtilityService, BBSFTranslateService, RequestHandlerService } from '@bnsights/bbsf-utilities';
|
|
8
|
+
import { Observable } from 'rxjs';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
export declare class EditEmailComponent implements OnInit {
|
|
11
|
+
private pageInfoService;
|
|
12
|
+
utilityService: UtilityService;
|
|
13
|
+
private bbsfTranslateService;
|
|
14
|
+
private templateService;
|
|
15
|
+
private activatedRoute;
|
|
16
|
+
private router;
|
|
17
|
+
private requestHandlerService;
|
|
18
|
+
TemplateId: string;
|
|
19
|
+
Lang: string;
|
|
20
|
+
TemplateInfo: any;
|
|
21
|
+
IsFormLoaded: boolean;
|
|
22
|
+
EditEmailForm: FormGroup<{}>;
|
|
23
|
+
EditEmailFormOptions: FormOptions;
|
|
24
|
+
EmailSubjectInEnglish: TextBoxOptions;
|
|
25
|
+
EmailSubjectInArabic: TextBoxOptions;
|
|
26
|
+
EmailBodyInEnglish: HtmlEditorOptions;
|
|
27
|
+
EmailBodyInArabic: HtmlEditorOptions;
|
|
28
|
+
HtmlBodyTagAttributesEnglish: TextBoxOptions;
|
|
29
|
+
HtmlBodyTagAttributesArabic: TextBoxOptions;
|
|
30
|
+
HTMLHeadSectionInEnglish: TextBoxOptions;
|
|
31
|
+
HTMLHeadSectionInArabic: TextBoxOptions;
|
|
32
|
+
constructor(pageInfoService: PageInfoService, utilityService: UtilityService, bbsfTranslateService: BBSFTranslateService, templateService: TemplateService, activatedRoute: ActivatedRoute, router: Router, requestHandlerService: RequestHandlerService);
|
|
33
|
+
ngOnInit(): Promise<void>;
|
|
34
|
+
initializePage(): void;
|
|
35
|
+
getEditEmailModel: () => any[];
|
|
36
|
+
getEditEmailFunction: (EditModel: any) => Observable<any>;
|
|
37
|
+
onEditEmailSuccess: (result: any) => void;
|
|
38
|
+
cancelEdit(): void;
|
|
39
|
+
changeCurrentLanguage(lang: string): void;
|
|
40
|
+
ngOnDestroy(): void;
|
|
41
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EditEmailComponent, never>;
|
|
42
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EditEmailComponent, "lib-edit-email", never, {}, {}, never, never, false, never>;
|
|
43
|
+
}
|
|
@@ -1,35 +1,35 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { FormGroup } from '@angular/forms';
|
|
3
|
-
import { ActivatedRoute, Router } from '@angular/router';
|
|
4
|
-
import { FormOptions, MultiLingualHtmlEditorOptions, MultiLingualTextBoxOptions } from '@bnsights/bbsf-controls';
|
|
5
|
-
import { EmailHeaderAndFooterTemplateService } from '../../shared/Services/EmailHeaderAndFooterTemplateService.Service';
|
|
6
|
-
import { UtilityService, BBSFTranslateService, RequestHandlerService } from '@bnsights/bbsf-utilities';
|
|
7
|
-
import { Observable } from 'rxjs';
|
|
8
|
-
import * as i0 from "@angular/core";
|
|
9
|
-
export declare class
|
|
10
|
-
utilityService: UtilityService;
|
|
11
|
-
private bbsfTranslateService;
|
|
12
|
-
private emailHeaderAndFooterTemplateService;
|
|
13
|
-
private activatedRoute;
|
|
14
|
-
private router;
|
|
15
|
-
private requestHandlerService;
|
|
16
|
-
ShowPageContent: boolean;
|
|
17
|
-
EditForm: FormGroup<{}>;
|
|
18
|
-
EditFormOptions: FormOptions;
|
|
19
|
-
TemplateId: string;
|
|
20
|
-
MultiLingualName: MultiLingualTextBoxOptions;
|
|
21
|
-
MultiLingualHtmlHeadTagAttributes: MultiLingualTextBoxOptions;
|
|
22
|
-
MultiLingualHeader: MultiLingualHtmlEditorOptions;
|
|
23
|
-
MultiLingualFooter: MultiLingualHtmlEditorOptions;
|
|
24
|
-
MultiLingualHtmlHeadSection: MultiLingualHtmlEditorOptions;
|
|
25
|
-
constructor(utilityService: UtilityService, bbsfTranslateService: BBSFTranslateService, emailHeaderAndFooterTemplateService: EmailHeaderAndFooterTemplateService, activatedRoute: ActivatedRoute, router: Router, requestHandlerService: RequestHandlerService);
|
|
26
|
-
ngOnInit(): Promise<void>;
|
|
27
|
-
initializePage(): void;
|
|
28
|
-
getEditModel: () => any[];
|
|
29
|
-
getEditFunction: (AddModel: any) => Observable<any>;
|
|
30
|
-
onEditSuccess: (result: any) => void;
|
|
31
|
-
cancelEdit(): void;
|
|
32
|
-
ngOnDestroy(): void;
|
|
33
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
34
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
35
|
-
}
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { FormGroup } from '@angular/forms';
|
|
3
|
+
import { ActivatedRoute, Router } from '@angular/router';
|
|
4
|
+
import { FormOptions, MultiLingualHtmlEditorOptions, MultiLingualTextBoxOptions } from '@bnsights/bbsf-controls';
|
|
5
|
+
import { EmailHeaderAndFooterTemplateService } from '../../shared/Services/EmailHeaderAndFooterTemplateService.Service';
|
|
6
|
+
import { UtilityService, BBSFTranslateService, RequestHandlerService } from '@bnsights/bbsf-utilities';
|
|
7
|
+
import { Observable } from 'rxjs';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class EditNotificationComponent implements OnInit {
|
|
10
|
+
utilityService: UtilityService;
|
|
11
|
+
private bbsfTranslateService;
|
|
12
|
+
private emailHeaderAndFooterTemplateService;
|
|
13
|
+
private activatedRoute;
|
|
14
|
+
private router;
|
|
15
|
+
private requestHandlerService;
|
|
16
|
+
ShowPageContent: boolean;
|
|
17
|
+
EditForm: FormGroup<{}>;
|
|
18
|
+
EditFormOptions: FormOptions;
|
|
19
|
+
TemplateId: string;
|
|
20
|
+
MultiLingualName: MultiLingualTextBoxOptions;
|
|
21
|
+
MultiLingualHtmlHeadTagAttributes: MultiLingualTextBoxOptions;
|
|
22
|
+
MultiLingualHeader: MultiLingualHtmlEditorOptions;
|
|
23
|
+
MultiLingualFooter: MultiLingualHtmlEditorOptions;
|
|
24
|
+
MultiLingualHtmlHeadSection: MultiLingualHtmlEditorOptions;
|
|
25
|
+
constructor(utilityService: UtilityService, bbsfTranslateService: BBSFTranslateService, emailHeaderAndFooterTemplateService: EmailHeaderAndFooterTemplateService, activatedRoute: ActivatedRoute, router: Router, requestHandlerService: RequestHandlerService);
|
|
26
|
+
ngOnInit(): Promise<void>;
|
|
27
|
+
initializePage(): void;
|
|
28
|
+
getEditModel: () => any[];
|
|
29
|
+
getEditFunction: (AddModel: any) => Observable<any>;
|
|
30
|
+
onEditSuccess: (result: any) => void;
|
|
31
|
+
cancelEdit(): void;
|
|
32
|
+
ngOnDestroy(): void;
|
|
33
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EditNotificationComponent, never>;
|
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EditNotificationComponent, "lib-edit-notification", never, {}, {}, never, never, false, never>;
|
|
35
|
+
}
|
|
@@ -1,37 +1,37 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { FormGroup } from '@angular/forms';
|
|
3
|
-
import { ActivatedRoute, Router } from '@angular/router';
|
|
4
|
-
import { FormOptions, TextAreaOptions } from '@bnsights/bbsf-controls';
|
|
5
|
-
import { PageInfoService } from '../../../_metronic/core/services/page-info.service';
|
|
6
|
-
import { TemplateService } from '../../shared/Services/TemplateService.service';
|
|
7
|
-
import { UtilityService, BBSFTranslateService, RequestHandlerService } from '@bnsights/bbsf-utilities';
|
|
8
|
-
import { Observable } from 'rxjs';
|
|
9
|
-
import * as i0 from "@angular/core";
|
|
10
|
-
export declare class EditSMSComponent implements OnInit {
|
|
11
|
-
utilityService: UtilityService;
|
|
12
|
-
private bbsfTranslateService;
|
|
13
|
-
private templateService;
|
|
14
|
-
private activatedRoute;
|
|
15
|
-
private router;
|
|
16
|
-
private pageInfoService;
|
|
17
|
-
private requestHandlerService;
|
|
18
|
-
TemplateId: string;
|
|
19
|
-
Lang: string;
|
|
20
|
-
TemplateInfo: any;
|
|
21
|
-
IsFormLoaded: boolean;
|
|
22
|
-
EditSMSForm: FormGroup<{}>;
|
|
23
|
-
EditSMSFormOptions: FormOptions;
|
|
24
|
-
SMSInEnglish: TextAreaOptions;
|
|
25
|
-
SMSInArabic: TextAreaOptions;
|
|
26
|
-
constructor(utilityService: UtilityService, bbsfTranslateService: BBSFTranslateService, templateService: TemplateService, activatedRoute: ActivatedRoute, router: Router, pageInfoService: PageInfoService, requestHandlerService: RequestHandlerService);
|
|
27
|
-
ngOnInit(): Promise<void>;
|
|
28
|
-
initializePage(): void;
|
|
29
|
-
getEditSMSModel: () => any[];
|
|
30
|
-
getEditSMSFunction: (EditModel: any) => Observable<any>;
|
|
31
|
-
onEditSMSSuccess: (result: any) => void;
|
|
32
|
-
cancelEdit(): void;
|
|
33
|
-
changeCurrentLanguage(lang: string): void;
|
|
34
|
-
ngOnDestroy(): void;
|
|
35
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<EditSMSComponent, never>;
|
|
36
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EditSMSComponent, "lib-edit-sms", never, {}, {}, never, never, false, never>;
|
|
37
|
-
}
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { FormGroup } from '@angular/forms';
|
|
3
|
+
import { ActivatedRoute, Router } from '@angular/router';
|
|
4
|
+
import { FormOptions, TextAreaOptions } from '@bnsights/bbsf-controls';
|
|
5
|
+
import { PageInfoService } from '../../../_metronic/core/services/page-info.service';
|
|
6
|
+
import { TemplateService } from '../../shared/Services/TemplateService.service';
|
|
7
|
+
import { UtilityService, BBSFTranslateService, RequestHandlerService } from '@bnsights/bbsf-utilities';
|
|
8
|
+
import { Observable } from 'rxjs';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
export declare class EditSMSComponent implements OnInit {
|
|
11
|
+
utilityService: UtilityService;
|
|
12
|
+
private bbsfTranslateService;
|
|
13
|
+
private templateService;
|
|
14
|
+
private activatedRoute;
|
|
15
|
+
private router;
|
|
16
|
+
private pageInfoService;
|
|
17
|
+
private requestHandlerService;
|
|
18
|
+
TemplateId: string;
|
|
19
|
+
Lang: string;
|
|
20
|
+
TemplateInfo: any;
|
|
21
|
+
IsFormLoaded: boolean;
|
|
22
|
+
EditSMSForm: FormGroup<{}>;
|
|
23
|
+
EditSMSFormOptions: FormOptions;
|
|
24
|
+
SMSInEnglish: TextAreaOptions;
|
|
25
|
+
SMSInArabic: TextAreaOptions;
|
|
26
|
+
constructor(utilityService: UtilityService, bbsfTranslateService: BBSFTranslateService, templateService: TemplateService, activatedRoute: ActivatedRoute, router: Router, pageInfoService: PageInfoService, requestHandlerService: RequestHandlerService);
|
|
27
|
+
ngOnInit(): Promise<void>;
|
|
28
|
+
initializePage(): void;
|
|
29
|
+
getEditSMSModel: () => any[];
|
|
30
|
+
getEditSMSFunction: (EditModel: any) => Observable<any>;
|
|
31
|
+
onEditSMSSuccess: (result: any) => void;
|
|
32
|
+
cancelEdit(): void;
|
|
33
|
+
changeCurrentLanguage(lang: string): void;
|
|
34
|
+
ngOnDestroy(): void;
|
|
35
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EditSMSComponent, never>;
|
|
36
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EditSMSComponent, "lib-edit-sms", never, {}, {}, never, never, false, never>;
|
|
37
|
+
}
|
|
@@ -1,53 +1,51 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { FormGroup } from '@angular/forms';
|
|
3
|
-
import { ConfirmationModalOptions, FilterItem, PagingOptions, TextAreaOptions, TextBoxOptions } from '@bnsights/bbsf-controls';
|
|
4
|
-
import { ClipboardService } from 'ngx-clipboard';
|
|
5
|
-
import { PageInfoService } from '../../../_metronic/core/services/page-info.service';
|
|
6
|
-
import { EmailHeaderAndFooterTemplateService } from '../../shared/Services/EmailHeaderAndFooterTemplateService.Service';
|
|
7
|
-
import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
|
|
8
|
-
import { AuthService, UtilityService, BBSFTranslateService, EnvironmentService, RequestHandlerService } from '@bnsights/bbsf-utilities';
|
|
9
|
-
import {
|
|
10
|
-
import
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
private
|
|
16
|
-
|
|
17
|
-
private
|
|
18
|
-
private
|
|
19
|
-
private
|
|
20
|
-
private
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MasterLayoutsComponent, "lib-master-layouts", never, {}, {}, never, never, false, never>;
|
|
53
|
-
}
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { FormGroup } from '@angular/forms';
|
|
3
|
+
import { ConfirmationModalComponent, ConfirmationModalOptions, FilterItem, PagingComponent, PagingOptions, TextAreaOptions, TextBoxOptions } from '@bnsights/bbsf-controls';
|
|
4
|
+
import { ClipboardService } from 'ngx-clipboard';
|
|
5
|
+
import { PageInfoService } from '../../../_metronic/core/services/page-info.service';
|
|
6
|
+
import { EmailHeaderAndFooterTemplateService } from '../../shared/Services/EmailHeaderAndFooterTemplateService.Service';
|
|
7
|
+
import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
|
|
8
|
+
import { AuthService, UtilityService, BBSFTranslateService, EnvironmentService, RequestHandlerService } from '@bnsights/bbsf-utilities';
|
|
9
|
+
import { Observable } from 'rxjs';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
11
|
+
export declare class MasterLayoutsComponent implements OnInit {
|
|
12
|
+
private authService;
|
|
13
|
+
private pageInfoService;
|
|
14
|
+
utilityService: UtilityService;
|
|
15
|
+
private bbsfTranslateService;
|
|
16
|
+
private environmentService;
|
|
17
|
+
private emailHeaderAndFooterTemplateService;
|
|
18
|
+
private _clipboardService;
|
|
19
|
+
private modalService;
|
|
20
|
+
private requestHandlerService;
|
|
21
|
+
ShowPageContent: boolean;
|
|
22
|
+
ApiUrl: string;
|
|
23
|
+
ProductionMode: boolean;
|
|
24
|
+
EmailHeaderAndFooterTemplateForm: FormGroup<{}>;
|
|
25
|
+
searchTextBox: TextBoxOptions;
|
|
26
|
+
TextInputFilter: FilterItem;
|
|
27
|
+
EmailHeaderAndFooterTemplatePagingResult: any[];
|
|
28
|
+
clientSidePagingResult: any[];
|
|
29
|
+
EmailHeaderAndFooterTemplatePaging: PagingOptions;
|
|
30
|
+
IsFilterLoaded: boolean;
|
|
31
|
+
pagingElement: PagingComponent<any>;
|
|
32
|
+
deleteEmailHeaderAndFooterTemplateId: string;
|
|
33
|
+
DeleteConfirmationOptions: ConfirmationModalOptions;
|
|
34
|
+
deleteControlLoaded: boolean;
|
|
35
|
+
ConfirmationModalControl: ConfirmationModalComponent;
|
|
36
|
+
GenerateCodeForm: FormGroup<{}>;
|
|
37
|
+
GenerateCodeTextArea: TextAreaOptions;
|
|
38
|
+
ValueToCopy: string;
|
|
39
|
+
constructor(authService: AuthService, pageInfoService: PageInfoService, utilityService: UtilityService, bbsfTranslateService: BBSFTranslateService, environmentService: EnvironmentService, emailHeaderAndFooterTemplateService: EmailHeaderAndFooterTemplateService, _clipboardService: ClipboardService, modalService: NgbModal, requestHandlerService: RequestHandlerService);
|
|
40
|
+
ngOnInit(): Promise<void>;
|
|
41
|
+
initializePage(): void;
|
|
42
|
+
setEmailHeaderAndFooterTemplateResult(result: any): void;
|
|
43
|
+
searchClientSide(searchValue: any): void;
|
|
44
|
+
showDeleteEmailHeaderAndFooterTemplateModal(emailHeaderandFooterIdEnc: any): void;
|
|
45
|
+
deleteEmailHeaderAndFooterTemplate: (id: string) => Observable<any>;
|
|
46
|
+
showGenerateCodeModal(GenerateCodeModal: any): void;
|
|
47
|
+
copyInputMessage(): void;
|
|
48
|
+
ngOnDestroy(): void;
|
|
49
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MasterLayoutsComponent, never>;
|
|
50
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MasterLayoutsComponent, "lib-master-layouts", never, {}, {}, never, never, false, never>;
|
|
51
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "@angular/router";
|
|
3
|
-
export declare class NotificationsRoutingModule {
|
|
4
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationsRoutingModule, never>;
|
|
5
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<NotificationsRoutingModule, never, [typeof i1.RouterModule], [typeof i1.RouterModule]>;
|
|
6
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<NotificationsRoutingModule>;
|
|
7
|
-
}
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/router";
|
|
3
|
+
export declare class NotificationsRoutingModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationsRoutingModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<NotificationsRoutingModule, never, [typeof i1.RouterModule], [typeof i1.RouterModule]>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<NotificationsRoutingModule>;
|
|
7
|
+
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class NotificationsComponent implements OnInit {
|
|
4
|
-
constructor();
|
|
5
|
-
ngOnInit(): void;
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationsComponent, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NotificationsComponent, "lib-notifications", never, {}, {}, never, never, false, never>;
|
|
8
|
-
}
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class NotificationsComponent implements OnInit {
|
|
4
|
+
constructor();
|
|
5
|
+
ngOnInit(): void;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationsComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NotificationsComponent, "lib-notifications", never, {}, {}, never, never, false, never>;
|
|
8
|
+
}
|
|
@@ -1,28 +1,28 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./notifications.component";
|
|
3
|
-
import * as i2 from "./master-layouts/master-layouts.component";
|
|
4
|
-
import * as i3 from "./add/add.component";
|
|
5
|
-
import * as i4 from "./edit/edit.component";
|
|
6
|
-
import * as i5 from "./templates/templates.component";
|
|
7
|
-
import * as i6 from "./template-info/template-info.component";
|
|
8
|
-
import * as i7 from "./edit-email/edit-email.component";
|
|
9
|
-
import * as i8 from "./edit-sms/edit-sms.component";
|
|
10
|
-
import * as i9 from "./notifications-routing.module";
|
|
11
|
-
import * as i10 from "@angular/common";
|
|
12
|
-
import * as i11 from "@angular/forms";
|
|
13
|
-
import * as i12 from "@angular/common/http";
|
|
14
|
-
import * as i13 from "../core/auth.module";
|
|
15
|
-
import * as i14 from "@angular/router";
|
|
16
|
-
import * as i15 from "ngx-clipboard";
|
|
17
|
-
import * as i16 from "ng-block-ui";
|
|
18
|
-
import * as i17 from "../_layout/components/subheader/subheader.module";
|
|
19
|
-
import * as i18 from "@bnsights/bbsf-controls";
|
|
20
|
-
import * as i19 from "@angular/material/menu";
|
|
21
|
-
import * as i20 from "@ng-bootstrap/ng-bootstrap";
|
|
22
|
-
import * as i21 from "ng-inline-svg";
|
|
23
|
-
import * as i22 from "../empty-data/empty-data.module";
|
|
24
|
-
export declare class NotificationsModule {
|
|
25
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationsModule, never>;
|
|
26
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<NotificationsModule, [typeof i1.NotificationsComponent, typeof i2.MasterLayoutsComponent, typeof i3.
|
|
27
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<NotificationsModule>;
|
|
28
|
-
}
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./notifications.component";
|
|
3
|
+
import * as i2 from "./master-layouts/master-layouts.component";
|
|
4
|
+
import * as i3 from "./add-notification/add-notification.component";
|
|
5
|
+
import * as i4 from "./edit-notification/edit-notification.component";
|
|
6
|
+
import * as i5 from "./templates/templates.component";
|
|
7
|
+
import * as i6 from "./template-info/template-info.component";
|
|
8
|
+
import * as i7 from "./edit-email/edit-email.component";
|
|
9
|
+
import * as i8 from "./edit-sms/edit-sms.component";
|
|
10
|
+
import * as i9 from "./notifications-routing.module";
|
|
11
|
+
import * as i10 from "@angular/common";
|
|
12
|
+
import * as i11 from "@angular/forms";
|
|
13
|
+
import * as i12 from "@angular/common/http";
|
|
14
|
+
import * as i13 from "../core/auth.module";
|
|
15
|
+
import * as i14 from "@angular/router";
|
|
16
|
+
import * as i15 from "ngx-clipboard";
|
|
17
|
+
import * as i16 from "ng-block-ui";
|
|
18
|
+
import * as i17 from "../_layout/components/subheader/subheader.module";
|
|
19
|
+
import * as i18 from "@bnsights/bbsf-controls";
|
|
20
|
+
import * as i19 from "@angular/material/menu";
|
|
21
|
+
import * as i20 from "@ng-bootstrap/ng-bootstrap";
|
|
22
|
+
import * as i21 from "ng-inline-svg-2";
|
|
23
|
+
import * as i22 from "../empty-data/empty-data.module";
|
|
24
|
+
export declare class NotificationsModule {
|
|
25
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationsModule, never>;
|
|
26
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<NotificationsModule, [typeof i1.NotificationsComponent, typeof i2.MasterLayoutsComponent, typeof i3.AddNotificationComponent, typeof i4.EditNotificationComponent, typeof i5.TemplatesComponent, typeof i6.TemplateInfoComponent, typeof i7.EditEmailComponent, typeof i8.EditSMSComponent], [typeof i9.NotificationsRoutingModule, typeof i10.CommonModule, typeof i11.ReactiveFormsModule, typeof i12.HttpClientModule, typeof i13.AuthModule, typeof i14.RouterModule, typeof i10.CommonModule, typeof i15.ClipboardModule, typeof i16.BlockUIModule, typeof i11.ReactiveFormsModule, typeof i17.SubheaderModule, typeof i11.FormsModule, typeof i18.BBSFControlsModule, typeof i19.MatMenuModule, typeof i20.NgbModule, typeof i21.InlineSVGModule, typeof i22.EmptyDataModule], never>;
|
|
27
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<NotificationsModule>;
|
|
28
|
+
}
|
|
@@ -1,86 +1,86 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { ActivatedRoute } from '@angular/router';
|
|
3
|
-
import { CheckBoxOptions, DropdownOptions, FormOptions, MultiLingualTextAreaOptions, MultiLingualTextBoxOptions, PhoneOptions, TextAreaOptions, TextBoxOptions } from '@bnsights/bbsf-controls';
|
|
4
|
-
import { TemplateService } from '../../shared/Services/TemplateService.service';
|
|
5
|
-
import { FormGroup } from '@angular/forms';
|
|
6
|
-
import { ClipboardService } from 'ngx-clipboard';
|
|
7
|
-
import { PageInfoService } from '../../../_metronic/core/services/page-info.service';
|
|
8
|
-
import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
|
|
9
|
-
import { UtilityService, BBSFTranslateService, EnvironmentService, RequestHandlerService } from '@bnsights/bbsf-utilities';
|
|
10
|
-
import { Observable } from 'rxjs';
|
|
11
|
-
import * as i0 from "@angular/core";
|
|
12
|
-
export declare class TemplateInfoComponent implements OnInit {
|
|
13
|
-
utilityService: UtilityService;
|
|
14
|
-
private bbsfTranslateService;
|
|
15
|
-
private environmentService;
|
|
16
|
-
private _clipboardService;
|
|
17
|
-
private templateService;
|
|
18
|
-
private activatedRoute;
|
|
19
|
-
private pageInfoService;
|
|
20
|
-
private modalService;
|
|
21
|
-
private requestHandlerService;
|
|
22
|
-
ProductionMode: boolean;
|
|
23
|
-
TemplateId: string;
|
|
24
|
-
TemplateIdEnc: string;
|
|
25
|
-
TemplateInfo: any;
|
|
26
|
-
Template: any;
|
|
27
|
-
isDataLoaded: boolean;
|
|
28
|
-
LanguageList: any[];
|
|
29
|
-
EmailServiceProviderList: any[];
|
|
30
|
-
SMSServiceProviderList: any[];
|
|
31
|
-
CategoryList: any[];
|
|
32
|
-
OrganizationList: any[];
|
|
33
|
-
LanguageModeList: any[];
|
|
34
|
-
MasterLayoutList: any[];
|
|
35
|
-
GenerateCodeForm: FormGroup<{}>;
|
|
36
|
-
IsOpenGenerateCodeModal: boolean;
|
|
37
|
-
GenerateCodeTextArea: TextAreaOptions;
|
|
38
|
-
ValueToCopy: string;
|
|
39
|
-
SendEmailForm: FormGroup<{}>;
|
|
40
|
-
SendEmailFormOptions: FormOptions;
|
|
41
|
-
To: TextAreaOptions;
|
|
42
|
-
EmailServiceProvider: DropdownOptions;
|
|
43
|
-
Language: DropdownOptions;
|
|
44
|
-
TestSendEmailForm: FormGroup<{}>;
|
|
45
|
-
TestSendEmailFormOptions: FormOptions;
|
|
46
|
-
TestSendEmailTo: TextAreaOptions;
|
|
47
|
-
TestEmailServiceProvider: DropdownOptions;
|
|
48
|
-
TestSendSMSForm: FormGroup<{}>;
|
|
49
|
-
TestSendSMSFormOptions: FormOptions;
|
|
50
|
-
TestSendSMSTo: PhoneOptions;
|
|
51
|
-
TestSMSServiceProvider: DropdownOptions;
|
|
52
|
-
EditTemplateForm: FormGroup<{}>;
|
|
53
|
-
EditTemplateFormOptions: FormOptions;
|
|
54
|
-
EditName: MultiLingualTextBoxOptions;
|
|
55
|
-
EditSysName: TextBoxOptions;
|
|
56
|
-
EditSysNameValue: string;
|
|
57
|
-
EditDescription: MultiLingualTextAreaOptions;
|
|
58
|
-
EditOrganization: DropdownOptions;
|
|
59
|
-
EditLanguageMode: DropdownOptions;
|
|
60
|
-
EditCategory: DropdownOptions;
|
|
61
|
-
EditMasterLayout: DropdownOptions;
|
|
62
|
-
EditIsEmail: CheckBoxOptions;
|
|
63
|
-
EditIsSms: CheckBoxOptions;
|
|
64
|
-
EditEnableIntensiveLogging: CheckBoxOptions;
|
|
65
|
-
constructor(utilityService: UtilityService, bbsfTranslateService: BBSFTranslateService, environmentService: EnvironmentService, _clipboardService: ClipboardService, templateService: TemplateService, activatedRoute: ActivatedRoute, pageInfoService: PageInfoService, modalService: NgbModal, requestHandlerService: RequestHandlerService);
|
|
66
|
-
ngOnInit(): Promise<void>;
|
|
67
|
-
initializePage(): void;
|
|
68
|
-
showGenerateCodeByIdModal(GenerateCodeModal: any): void;
|
|
69
|
-
showGenerateUpdateCodeByIdModal(GenerateCodeModal: any): void;
|
|
70
|
-
copyInputMessage(): void;
|
|
71
|
-
showEditTemplateModal(EditTemplateModal: any): void;
|
|
72
|
-
getEditTemplateModel: () => any[];
|
|
73
|
-
getEditTemplateFunction: (EditModel: any) => Observable<any>;
|
|
74
|
-
showSendEmailModal(SendEmailModal: any): void;
|
|
75
|
-
getSendEmailModel: () => any[];
|
|
76
|
-
getSendEmailFunction: (sendEmailTemplateModel: any) => Observable<any>;
|
|
77
|
-
showTestSendEmailModal(TestSendEmailModal: any): void;
|
|
78
|
-
getTestSendEmailModel: () => any[];
|
|
79
|
-
getTestSendEmailFunction: (sendEmailTemplateModel: any) => Observable<any>;
|
|
80
|
-
showTestSendSMSModal(TestSendSMSModal: any): void;
|
|
81
|
-
getTestSendSMSModel: () => any[];
|
|
82
|
-
getTestSendSMSFunction: (sendSMSTemplateModel: any) => Observable<any>;
|
|
83
|
-
ngOnDestroy(): void;
|
|
84
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TemplateInfoComponent, never>;
|
|
85
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TemplateInfoComponent, "lib-template-info", never, {}, {}, never, never, false, never>;
|
|
86
|
-
}
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { ActivatedRoute } from '@angular/router';
|
|
3
|
+
import { CheckBoxOptions, DropdownOptions, FormOptions, MultiLingualTextAreaOptions, MultiLingualTextBoxOptions, PhoneOptions, TextAreaOptions, TextBoxOptions } from '@bnsights/bbsf-controls';
|
|
4
|
+
import { TemplateService } from '../../shared/Services/TemplateService.service';
|
|
5
|
+
import { FormGroup } from '@angular/forms';
|
|
6
|
+
import { ClipboardService } from 'ngx-clipboard';
|
|
7
|
+
import { PageInfoService } from '../../../_metronic/core/services/page-info.service';
|
|
8
|
+
import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
|
|
9
|
+
import { UtilityService, BBSFTranslateService, EnvironmentService, RequestHandlerService } from '@bnsights/bbsf-utilities';
|
|
10
|
+
import { Observable } from 'rxjs';
|
|
11
|
+
import * as i0 from "@angular/core";
|
|
12
|
+
export declare class TemplateInfoComponent implements OnInit {
|
|
13
|
+
utilityService: UtilityService;
|
|
14
|
+
private bbsfTranslateService;
|
|
15
|
+
private environmentService;
|
|
16
|
+
private _clipboardService;
|
|
17
|
+
private templateService;
|
|
18
|
+
private activatedRoute;
|
|
19
|
+
private pageInfoService;
|
|
20
|
+
private modalService;
|
|
21
|
+
private requestHandlerService;
|
|
22
|
+
ProductionMode: boolean;
|
|
23
|
+
TemplateId: string;
|
|
24
|
+
TemplateIdEnc: string;
|
|
25
|
+
TemplateInfo: any;
|
|
26
|
+
Template: any;
|
|
27
|
+
isDataLoaded: boolean;
|
|
28
|
+
LanguageList: any[];
|
|
29
|
+
EmailServiceProviderList: any[];
|
|
30
|
+
SMSServiceProviderList: any[];
|
|
31
|
+
CategoryList: any[];
|
|
32
|
+
OrganizationList: any[];
|
|
33
|
+
LanguageModeList: any[];
|
|
34
|
+
MasterLayoutList: any[];
|
|
35
|
+
GenerateCodeForm: FormGroup<{}>;
|
|
36
|
+
IsOpenGenerateCodeModal: boolean;
|
|
37
|
+
GenerateCodeTextArea: TextAreaOptions;
|
|
38
|
+
ValueToCopy: string;
|
|
39
|
+
SendEmailForm: FormGroup<{}>;
|
|
40
|
+
SendEmailFormOptions: FormOptions;
|
|
41
|
+
To: TextAreaOptions;
|
|
42
|
+
EmailServiceProvider: DropdownOptions;
|
|
43
|
+
Language: DropdownOptions;
|
|
44
|
+
TestSendEmailForm: FormGroup<{}>;
|
|
45
|
+
TestSendEmailFormOptions: FormOptions;
|
|
46
|
+
TestSendEmailTo: TextAreaOptions;
|
|
47
|
+
TestEmailServiceProvider: DropdownOptions;
|
|
48
|
+
TestSendSMSForm: FormGroup<{}>;
|
|
49
|
+
TestSendSMSFormOptions: FormOptions;
|
|
50
|
+
TestSendSMSTo: PhoneOptions;
|
|
51
|
+
TestSMSServiceProvider: DropdownOptions;
|
|
52
|
+
EditTemplateForm: FormGroup<{}>;
|
|
53
|
+
EditTemplateFormOptions: FormOptions;
|
|
54
|
+
EditName: MultiLingualTextBoxOptions;
|
|
55
|
+
EditSysName: TextBoxOptions;
|
|
56
|
+
EditSysNameValue: string;
|
|
57
|
+
EditDescription: MultiLingualTextAreaOptions;
|
|
58
|
+
EditOrganization: DropdownOptions;
|
|
59
|
+
EditLanguageMode: DropdownOptions;
|
|
60
|
+
EditCategory: DropdownOptions;
|
|
61
|
+
EditMasterLayout: DropdownOptions;
|
|
62
|
+
EditIsEmail: CheckBoxOptions;
|
|
63
|
+
EditIsSms: CheckBoxOptions;
|
|
64
|
+
EditEnableIntensiveLogging: CheckBoxOptions;
|
|
65
|
+
constructor(utilityService: UtilityService, bbsfTranslateService: BBSFTranslateService, environmentService: EnvironmentService, _clipboardService: ClipboardService, templateService: TemplateService, activatedRoute: ActivatedRoute, pageInfoService: PageInfoService, modalService: NgbModal, requestHandlerService: RequestHandlerService);
|
|
66
|
+
ngOnInit(): Promise<void>;
|
|
67
|
+
initializePage(): void;
|
|
68
|
+
showGenerateCodeByIdModal(GenerateCodeModal: any): void;
|
|
69
|
+
showGenerateUpdateCodeByIdModal(GenerateCodeModal: any): void;
|
|
70
|
+
copyInputMessage(): void;
|
|
71
|
+
showEditTemplateModal(EditTemplateModal: any): void;
|
|
72
|
+
getEditTemplateModel: () => any[];
|
|
73
|
+
getEditTemplateFunction: (EditModel: any) => Observable<any>;
|
|
74
|
+
showSendEmailModal(SendEmailModal: any): void;
|
|
75
|
+
getSendEmailModel: () => any[];
|
|
76
|
+
getSendEmailFunction: (sendEmailTemplateModel: any) => Observable<any>;
|
|
77
|
+
showTestSendEmailModal(TestSendEmailModal: any): void;
|
|
78
|
+
getTestSendEmailModel: () => any[];
|
|
79
|
+
getTestSendEmailFunction: (sendEmailTemplateModel: any) => Observable<any>;
|
|
80
|
+
showTestSendSMSModal(TestSendSMSModal: any): void;
|
|
81
|
+
getTestSendSMSModel: () => any[];
|
|
82
|
+
getTestSendSMSFunction: (sendSMSTemplateModel: any) => Observable<any>;
|
|
83
|
+
ngOnDestroy(): void;
|
|
84
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TemplateInfoComponent, never>;
|
|
85
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TemplateInfoComponent, "lib-template-info", never, {}, {}, never, never, false, never>;
|
|
86
|
+
}
|