@bnsights/bbsf-admin-portal 1.0.44 → 1.0.47
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 +13 -0
- package/bnsights-bbsf-admin-portal-1.0.47.tgz +0 -0
- package/bundles/bnsights-bbsf-admin-portal.umd.js +80 -2
- package/bundles/bnsights-bbsf-admin-portal.umd.js.map +1 -1
- package/esm2015/lib/Pages/configurations/configuration/configuration.component.js +38 -3
- package/esm2015/lib/Pages/shared/Services/ConfigurationsService.service.js +4 -1
- package/esm2015/lib/Pages/shared/models/ConfigurationModels/ConfigurationModel.js +1 -1
- package/fesm2015/bnsights-bbsf-admin-portal.js +78 -2
- package/fesm2015/bnsights-bbsf-admin-portal.js.map +1 -1
- package/lib/Pages/configurations/configuration/configuration.component.d.ts +7 -0
- package/lib/Pages/shared/Services/ConfigurationsService.service.d.ts +1 -0
- package/lib/Pages/shared/models/ConfigurationModels/ConfigurationModel.d.ts +1 -0
- package/package.json +3 -3
- package/bnsights-bbsf-admin-portal-1.0.44.tgz +0 -0
|
@@ -57,6 +57,7 @@ export declare class ConfigurationComponent implements OnInit {
|
|
|
57
57
|
FunctionSourcePath: TextBoxOptions;
|
|
58
58
|
SourceFuncValue: DropdownOptions;
|
|
59
59
|
SourceFuncDefaultValue: DropdownOptions;
|
|
60
|
+
loadJsonToggle: ToggleSlideOptions;
|
|
60
61
|
ValueToggel: ToggleSlideOptions;
|
|
61
62
|
DefaultValueToggel: ToggleSlideOptions;
|
|
62
63
|
Scope: DropdownOptions;
|
|
@@ -95,6 +96,10 @@ export declare class ConfigurationComponent implements OnInit {
|
|
|
95
96
|
DeleteConfirmationOptions: ConfirmationModalOptions;
|
|
96
97
|
deleteControlLoaded: boolean;
|
|
97
98
|
ConfirmationModalControl: ConfirmationModalComponent;
|
|
99
|
+
reloadConfirmationOptions: ConfirmationModalOptions;
|
|
100
|
+
reloadControlLoaded: boolean;
|
|
101
|
+
reloadConfirmationModalControl: ConfirmationModalComponent;
|
|
102
|
+
editLoadJsonToggle: ToggleSlideOptions;
|
|
98
103
|
constructor(authService: AuthService, pageInfoService: PageInfoService, utilityService: UtilityService, bbsfTranslateService: BBSFTranslateService, environmentService: EnvironmentService, ConfigurationsService: ConfigurationsService, modalService: NgbModal, requestHandlerService: RequestHandlerService);
|
|
99
104
|
ngOnInit(): Promise<void>;
|
|
100
105
|
initializePage(): void;
|
|
@@ -116,6 +121,8 @@ export declare class ConfigurationComponent implements OnInit {
|
|
|
116
121
|
changeSourceFunction(): void;
|
|
117
122
|
showDeleteConfigurationModal(configurationID: string): void;
|
|
118
123
|
deleteConfiguration: (id: string) => Observable<any>;
|
|
124
|
+
showReloadResourceModal(): void;
|
|
125
|
+
reloadJsonFunction: () => Observable<any>;
|
|
119
126
|
ngOnDestroy(): void;
|
|
120
127
|
static ɵfac: i0.ɵɵFactoryDeclaration<ConfigurationComponent, never>;
|
|
121
128
|
static ɵcmp: i0.ɵɵComponentDeclaration<ConfigurationComponent, "lib-configuration", never, {}, {}, never, never>;
|
|
@@ -12,6 +12,7 @@ export declare class ConfigurationsService {
|
|
|
12
12
|
deleteConfiguration(id: string): import("rxjs").Observable<unknown>;
|
|
13
13
|
loadLookupItems(Id: string): import("rxjs").Observable<unknown>;
|
|
14
14
|
loadSourceFunctionDropDownItems(sourceFunc: string): import("rxjs").Observable<unknown>;
|
|
15
|
+
reloadJsonFile(): import("rxjs").Observable<unknown>;
|
|
15
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<ConfigurationsService, never>;
|
|
16
17
|
static ɵprov: i0.ɵɵInjectableDeclaration<ConfigurationsService>;
|
|
17
18
|
}
|
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.47",
|
|
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.53",
|
|
40
|
+
"@bnsights/bbsf-utilities": "1.0.24",
|
|
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
|