@bnsights/bbsf-admin-portal 1.2.17 → 1.2.19
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 +12 -0
- package/fesm2022/bnsights-bbsf-admin-portal.mjs +10 -22
- package/fesm2022/bnsights-bbsf-admin-portal.mjs.map +1 -1
- package/lib/Pages/organization/add-organization/add-organization.component.d.ts +2 -6
- package/lib/Pages/organization/edit-organization/edit-organization.component.d.ts +4 -7
- package/package.json +2 -2
|
@@ -6,16 +6,13 @@ import { FormGroup } from '@angular/forms';
|
|
|
6
6
|
import { FormOptions, ImageUploadOptions, MultiLingualTextBoxOptions, PagingComponent, TextBoxOptions } from '@bnsights/bbsf-controls';
|
|
7
7
|
import { OrganizationModel } from '../../shared/models/organization/organization.model';
|
|
8
8
|
import { Observable } from 'rxjs';
|
|
9
|
-
import { UtilityService
|
|
9
|
+
import { UtilityService } from '@bnsights/bbsf-utilities';
|
|
10
10
|
import * as i0 from "@angular/core";
|
|
11
11
|
export declare class AddOrganizationComponent implements OnInit {
|
|
12
12
|
private pageInfoService;
|
|
13
13
|
utilityService: UtilityService;
|
|
14
|
-
private environmentService;
|
|
15
14
|
private modalService;
|
|
16
15
|
private service;
|
|
17
|
-
private requestHandlerService;
|
|
18
|
-
private authService;
|
|
19
16
|
pagingElement: PagingComponent<any>;
|
|
20
17
|
modal: ElementRef;
|
|
21
18
|
form: FormGroup<{}>;
|
|
@@ -25,12 +22,11 @@ export declare class AddOrganizationComponent implements OnInit {
|
|
|
25
22
|
timeZoneOptions: TextBoxOptions;
|
|
26
23
|
logoOptions: ImageUploadOptions;
|
|
27
24
|
identifierOptions: TextBoxOptions;
|
|
28
|
-
constructor(pageInfoService: PageInfoService, utilityService: UtilityService,
|
|
25
|
+
constructor(pageInfoService: PageInfoService, utilityService: UtilityService, modalService: NgbModal, service: OrganizationService);
|
|
29
26
|
ngOnInit(): void;
|
|
30
27
|
showModal(): void;
|
|
31
28
|
addModelFunc: () => OrganizationModel[];
|
|
32
29
|
addOrganizationFunc: (model: OrganizationModel) => Observable<any>;
|
|
33
|
-
onSuccess: () => void;
|
|
34
30
|
static ɵfac: i0.ɵɵFactoryDeclaration<AddOrganizationComponent, never>;
|
|
35
31
|
static ɵcmp: i0.ɵɵComponentDeclaration<AddOrganizationComponent, "lib-add-organization", never, { "pagingElement": { "alias": "pagingElement"; "required": false; }; }, {}, never, never, false, never>;
|
|
36
32
|
}
|
|
@@ -6,16 +6,13 @@ import { FormGroup } from '@angular/forms';
|
|
|
6
6
|
import { FormOptions, ImageUploadOptions, MultiLingualTextBoxOptions, PagingComponent, TextBoxOptions } from '@bnsights/bbsf-controls';
|
|
7
7
|
import { OrganizationModel } from '../../shared/models/organization/organization.model';
|
|
8
8
|
import { Observable } from 'rxjs';
|
|
9
|
-
import { UtilityService
|
|
9
|
+
import { UtilityService } from '@bnsights/bbsf-utilities';
|
|
10
10
|
import * as i0 from "@angular/core";
|
|
11
11
|
export declare class EditOrganizationComponent implements OnInit {
|
|
12
12
|
private pageInfoService;
|
|
13
13
|
utilityService: UtilityService;
|
|
14
|
-
private environmentService;
|
|
15
14
|
private modalService;
|
|
16
15
|
private service;
|
|
17
|
-
private requestHandlerService;
|
|
18
|
-
private authService;
|
|
19
16
|
pagingElement: PagingComponent<any>;
|
|
20
17
|
modal: ElementRef;
|
|
21
18
|
form: FormGroup<{}>;
|
|
@@ -25,12 +22,12 @@ export declare class EditOrganizationComponent implements OnInit {
|
|
|
25
22
|
timeZoneOptions: TextBoxOptions;
|
|
26
23
|
logoOptions: ImageUploadOptions;
|
|
27
24
|
identifierOptions: TextBoxOptions;
|
|
28
|
-
|
|
25
|
+
organizationId: string;
|
|
26
|
+
constructor(pageInfoService: PageInfoService, utilityService: UtilityService, modalService: NgbModal, service: OrganizationService);
|
|
29
27
|
ngOnInit(): void;
|
|
30
|
-
showModal(
|
|
28
|
+
showModal(organizationId: string): void;
|
|
31
29
|
editModelFunc: () => OrganizationModel[];
|
|
32
30
|
editOrganizationFunc: (model: OrganizationModel) => Observable<any>;
|
|
33
|
-
onSuccess: () => void;
|
|
34
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditOrganizationComponent, never>;
|
|
35
32
|
static ɵcmp: i0.ɵɵComponentDeclaration<EditOrganizationComponent, "lib-edit-organization", never, { "pagingElement": { "alias": "pagingElement"; "required": false; }; }, {}, never, never, false, never>;
|
|
36
33
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bnsights/bbsf-admin-portal",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.19",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/animations": "^19.2.15",
|
|
6
6
|
"@angular/cdk": "^19.2.15",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
15
|
"@amcharts/amcharts5": "5.6.2",
|
|
16
|
-
"@bnsights/bbsf-controls": "1.2.
|
|
16
|
+
"@bnsights/bbsf-controls": "1.2.18",
|
|
17
17
|
"@bnsights/bbsf-utilities": "1.2.10",
|
|
18
18
|
"@bnsights/bbsf-utilities-doc": "1.2.1",
|
|
19
19
|
"@fortawesome/fontawesome-free": "5.15.2",
|