@bnsights/bbsf-admin-portal 1.0.35 → 1.0.36
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/bnsights-bbsf-admin-portal-1.0.36.tgz +0 -0
- package/bundles/bnsights-bbsf-admin-portal.umd.js +214 -103
- package/bundles/bnsights-bbsf-admin-portal.umd.js.map +1 -1
- package/esm2015/lib/Pages/ActiveDirectories/active-directory-add/active-directory-add.component.js +1 -7
- package/esm2015/lib/Pages/_layout/components/toolbar/toolbar.component.js +3 -1
- package/esm2015/lib/Pages/_layout/components/topbar/topbar.component.js +10 -2
- package/esm2015/lib/Pages/impersonation-rules/impersonation-rules/impersonation-rules.component.js +2 -2
- package/esm2015/lib/Pages/license/license/license.component.js +40 -31
- package/esm2015/lib/Pages/localizations/localizations-replace-text/localizations-replace-text.component.js +20 -3
- package/esm2015/lib/Pages/localizations/localizations.component.js +4 -4
- package/esm2015/lib/Pages/lookups/lookup-group/lookup-group.component.js +2 -1
- package/esm2015/lib/Pages/lookups/lookup-item/lookup-item.component.js +8 -2
- package/esm2015/lib/Pages/providers/provider/provider.component.js +23 -7
- package/esm2015/lib/Pages/publicHolidays/public-holiday/public-holiday.component.js +2 -2
- package/esm2015/lib/Pages/shared/Services/ConfigurationsService.service.js +5 -2
- package/esm2015/lib/Pages/shared/Services/userService.service.js +4 -1
- package/esm2015/lib/Pages/shared/models/UserModels/IdentityModel.js +3 -0
- package/fesm2015/bnsights-bbsf-admin-portal.js +212 -104
- package/fesm2015/bnsights-bbsf-admin-portal.js.map +1 -1
- package/lib/Pages/_layout/components/toolbar/toolbar.component.d.ts +1 -0
- package/lib/Pages/_layout/components/topbar/topbar.component.d.ts +4 -1
- package/lib/Pages/license/license/license.component.d.ts +3 -0
- package/lib/Pages/localizations/localizations-replace-text/localizations-replace-text.component.d.ts +3 -1
- package/lib/Pages/providers/provider/provider.component.d.ts +3 -1
- package/lib/Pages/shared/Services/userService.service.d.ts +1 -0
- package/lib/Pages/shared/models/UserModels/IdentityModel.d.ts +9 -0
- package/package.json +3 -3
- package/bnsights-bbsf-admin-portal-1.0.35.tgz +0 -0
|
@@ -11,6 +11,7 @@ export declare class ToolbarComponent implements OnInit, AfterViewInit {
|
|
|
11
11
|
pageTitleCssClasses: string;
|
|
12
12
|
constructor(layout: LayoutService);
|
|
13
13
|
ngOnInit(): void;
|
|
14
|
+
getCurrentUser(): void;
|
|
14
15
|
ngAfterViewInit(): void;
|
|
15
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToolbarComponent, never>;
|
|
16
17
|
static ɵcmp: i0.ɵɵComponentDeclaration<ToolbarComponent, "app-toolbar", never, {}, {}, never, [".subheadertoolbar", ".filter-container"]>;
|
|
@@ -5,6 +5,7 @@ import { userService } from '../../../../Pages/shared/Services/userService.servi
|
|
|
5
5
|
import { Router } from '@angular/router';
|
|
6
6
|
import { NgBlockUI } from 'ng-block-ui';
|
|
7
7
|
import { AuthService, StylesBundleService, UtilityService, MasterLayoutService } from '@bnsights/bbsf-utilities';
|
|
8
|
+
import { IdentityModel } from '../../../shared/models/UserModels/IdentityModel';
|
|
8
9
|
import * as i0 from "@angular/core";
|
|
9
10
|
export declare class TopbarComponent implements OnInit {
|
|
10
11
|
private layout;
|
|
@@ -13,7 +14,7 @@ export declare class TopbarComponent implements OnInit {
|
|
|
13
14
|
private userService;
|
|
14
15
|
private router;
|
|
15
16
|
private stylesBundleService;
|
|
16
|
-
|
|
17
|
+
UtilityService: UtilityService;
|
|
17
18
|
private masterLayoutService;
|
|
18
19
|
private document;
|
|
19
20
|
toolbarButtonMarginClass: string;
|
|
@@ -30,8 +31,10 @@ export declare class TopbarComponent implements OnInit {
|
|
|
30
31
|
token: string;
|
|
31
32
|
name: string;
|
|
32
33
|
clicked: boolean;
|
|
34
|
+
identity: IdentityModel;
|
|
33
35
|
constructor(layout: LayoutService, translate: TranslateService, authService: AuthService, userService: userService, router: Router, stylesBundleService: StylesBundleService, UtilityService: UtilityService, masterLayoutService: MasterLayoutService, document: Document);
|
|
34
36
|
ngOnInit(): Promise<void>;
|
|
37
|
+
getCurrentUser(): void;
|
|
35
38
|
switchLang(lang: any): void;
|
|
36
39
|
refreshPage(): void;
|
|
37
40
|
getResourceValue(Key: any): string;
|
|
@@ -34,6 +34,7 @@ export declare class LicenseComponent implements OnInit {
|
|
|
34
34
|
date_future: any;
|
|
35
35
|
date_now: any;
|
|
36
36
|
showTimer: boolean;
|
|
37
|
+
intervalConst: any;
|
|
37
38
|
uploadFileForm: FormGroup;
|
|
38
39
|
uploadFileFormOptions: FormOptions;
|
|
39
40
|
licenseFileInput: FileUploadOptions;
|
|
@@ -44,6 +45,8 @@ export declare class LicenseComponent implements OnInit {
|
|
|
44
45
|
constructor(pageInfoService: PageInfoService, utilityService: UtilityService, environmentService: EnvironmentService, licenseService: LicenseService, modalService: NgbModal, requestHandlerService: RequestHandlerService);
|
|
45
46
|
ngOnInit(): Promise<void>;
|
|
46
47
|
initializePage(): void;
|
|
48
|
+
setPageLicenseData(license: any): void;
|
|
49
|
+
setCounter(endDate: Date): void;
|
|
47
50
|
getDifferenceInMinutes(date1: any, date2: any): number;
|
|
48
51
|
showUploadModal(uploadFileModal: any): void;
|
|
49
52
|
getAddLicenseModel: () => any[];
|
package/lib/Pages/localizations/localizations-replace-text/localizations-replace-text.component.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { FormGroup } from '@angular/forms';
|
|
3
|
-
import { CheckBoxOptions, DropdownOptions, FilterItem, FormComponent, FormOptions, PagingOptions, TextBoxOptions } from '@bnsights/bbsf-controls';
|
|
3
|
+
import { CheckBoxOptions, DropdownOptions, FilterItem, FormComponent, FormOptions, PagingComponent, PagingOptions, TextBoxOptions } from '@bnsights/bbsf-controls';
|
|
4
4
|
import { AuthService, BBSFTranslateService, RequestHandlerService, UtilityService } from '@bnsights/bbsf-utilities';
|
|
5
5
|
import { Observable } from 'rxjs';
|
|
6
6
|
import { PageInfoService } from '../../../_metronic/core/services/page-info.service';
|
|
@@ -37,11 +37,13 @@ export declare class LocalizationsReplaceTextComponent implements OnInit, OnDest
|
|
|
37
37
|
arabic: CheckBoxOptions;
|
|
38
38
|
localizationPagingResult: any[];
|
|
39
39
|
localizationPaging: PagingOptions;
|
|
40
|
+
pagingElement: PagingComponent<any>;
|
|
40
41
|
constructor(localizationsService: localizationsService, pageInfoService: PageInfoService, utilityService: UtilityService, bbsfTranslateService: BBSFTranslateService, requestHandlerService: RequestHandlerService, authService: AuthService);
|
|
41
42
|
ngOnInit(): Promise<void>;
|
|
42
43
|
initializePage(): void;
|
|
43
44
|
initializeForm(isFind: boolean): void;
|
|
44
45
|
initializePaging(): void;
|
|
46
|
+
findResource(): void;
|
|
45
47
|
setResourcesListResult(result: any): void;
|
|
46
48
|
getReplaceResourceModel: () => any[];
|
|
47
49
|
getReplaceResourceFunction: (replaceModel: any) => Observable<any>;
|
|
@@ -2,6 +2,7 @@ import { ElementRef, OnInit } from '@angular/core';
|
|
|
2
2
|
import { FormGroup } from '@angular/forms';
|
|
3
3
|
import { DropdownOptions, FilterItem, PagingOptions, RadioButtonOptions, TextAreaOptions, TextBoxOptions, FormOptions, ConfirmationModalOptions, PhoneOptions } from '@bnsights/bbsf-controls';
|
|
4
4
|
import { ProviderService } from '../../shared/Services/provider.service';
|
|
5
|
+
import { ProviderModel } from '../../shared/models/ProviderModels/ProviderModel';
|
|
5
6
|
import { PageInfoService } from '../../../_metronic/core/services/page-info.service';
|
|
6
7
|
import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
|
|
7
8
|
import { AuthService, UtilityService, BBSFTranslateService, RequestHandlerService } from '@bnsights/bbsf-utilities';
|
|
@@ -43,6 +44,7 @@ export declare class ProviderComponent implements OnInit {
|
|
|
43
44
|
ProviderAttributesOptions: any[];
|
|
44
45
|
ProviderAttributesCount: number;
|
|
45
46
|
IsAttributesLoaded: boolean;
|
|
47
|
+
showNoAttributesError: boolean;
|
|
46
48
|
AddProviderForm: FormGroup;
|
|
47
49
|
AddProviderFormOptions: FormOptions;
|
|
48
50
|
AddName: TextBoxOptions;
|
|
@@ -97,7 +99,7 @@ export declare class ProviderComponent implements OnInit {
|
|
|
97
99
|
encryptedChange(isChecked: any, option: any, isAdd: any): void;
|
|
98
100
|
showAddProviderModal(addProviderModal: any): void;
|
|
99
101
|
getAddProviderModel: () => any[];
|
|
100
|
-
getAddProviderFunction: (AddModel:
|
|
102
|
+
getAddProviderFunction: (AddModel: ProviderModel) => Observable<any>;
|
|
101
103
|
showEditProviderModal(providerID: string, editProviderModal: any): void;
|
|
102
104
|
getEditProviderModel: () => any[];
|
|
103
105
|
getEditProviderFunction: (EditModel: any) => Observable<any>;
|
|
@@ -22,6 +22,7 @@ export declare class userService {
|
|
|
22
22
|
Export(params: HttpParams): import("rxjs").Observable<unknown>;
|
|
23
23
|
ChangeLanguage(key: string): import("rxjs").Observable<unknown>;
|
|
24
24
|
UpdateUserInfo(): import("rxjs").Observable<unknown>;
|
|
25
|
+
getCurrentUser(): import("rxjs").Observable<unknown>;
|
|
25
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<userService, never>;
|
|
26
27
|
static ɵprov: i0.ɵɵInjectableDeclaration<userService>;
|
|
27
28
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bnsights/bbsf-admin-portal",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.36",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@agm/core": "^3.0.0-beta.0",
|
|
6
6
|
"@angular-devkit/build-angular": "~12.2.12",
|
|
@@ -36,8 +36,8 @@
|
|
|
36
36
|
"@angular/platform-browser": "~12.2.12",
|
|
37
37
|
"@angular/platform-browser-dynamic": "~12.2.12",
|
|
38
38
|
"@angular/router": "~12.2.12",
|
|
39
|
-
"@bnsights/bbsf-controls": "1.0.
|
|
40
|
-
"@bnsights/bbsf-utilities": "1.0.
|
|
39
|
+
"@bnsights/bbsf-controls": "1.0.42",
|
|
40
|
+
"@bnsights/bbsf-utilities": "1.0.20",
|
|
41
41
|
"@fortawesome/fontawesome-free": "^5.15.1",
|
|
42
42
|
"@ng-bootstrap/ng-bootstrap": "^9.0.2",
|
|
43
43
|
"@ngx-translate/core": "^13.0.0",
|
|
Binary file
|