@annalib/anna-cognito-lib 0.5.0 → 0.5.1
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/esm2020/lib/services/config.service.mjs +20 -0
- package/esm2020/public-api.mjs +3 -1
- package/fesm2015/annalib-anna-cognito-lib.mjs +20 -1
- package/fesm2015/annalib-anna-cognito-lib.mjs.map +1 -1
- package/fesm2020/annalib-anna-cognito-lib.mjs +18 -1
- package/fesm2020/annalib-anna-cognito-lib.mjs.map +1 -1
- package/lib/services/config.service.d.ts +8 -0
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
|
@@ -834,6 +834,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImpor
|
|
|
834
834
|
}]
|
|
835
835
|
}] });
|
|
836
836
|
|
|
837
|
+
class AnnaConfigService {
|
|
838
|
+
constructor(consumingProjectConfigService) {
|
|
839
|
+
this.consumingProjectConfigService = consumingProjectConfigService;
|
|
840
|
+
}
|
|
841
|
+
}
|
|
842
|
+
AnnaConfigService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: AnnaConfigService, deps: [{ token: CONFIG_SERVICE_TOKEN }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
843
|
+
AnnaConfigService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: AnnaConfigService, providedIn: "root" });
|
|
844
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: AnnaConfigService, decorators: [{
|
|
845
|
+
type: Injectable,
|
|
846
|
+
args: [{
|
|
847
|
+
providedIn: "root",
|
|
848
|
+
}]
|
|
849
|
+
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
|
850
|
+
type: Inject,
|
|
851
|
+
args: [CONFIG_SERVICE_TOKEN]
|
|
852
|
+
}] }]; } });
|
|
853
|
+
|
|
837
854
|
/*
|
|
838
855
|
* Public API Surface of anna-cognito-lib
|
|
839
856
|
*/
|
|
@@ -842,5 +859,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImpor
|
|
|
842
859
|
* Generated bundle index. Do not edit.
|
|
843
860
|
*/
|
|
844
861
|
|
|
845
|
-
export { ACL_SERVICE_TOKEN, AUTH_SERVICE_TOKEN, AnnaCognitoLibModule, AnnaLibAclService, AnnaLibAuthService, ForgotPasswordComponent, LibraryConfig, LoginComponent, LoginConstant, PasswordMatchingComponent, PoweredByLogoTemplateComponent, SetNewPasswordComponent, SpinnerButtonDirective, SurewavesYearLogoComponent, VerifyAndSetNewPasswordComponent, VersionAndTermPolicyComponent };
|
|
862
|
+
export { ACL_SERVICE_TOKEN, AUTH_SERVICE_TOKEN, AnnaCognitoLibModule, AnnaConfigService, AnnaLibAclService, AnnaLibAuthService, CONFIG_SERVICE_TOKEN, ForgotPasswordComponent, LibraryConfig, LoginComponent, LoginConstant, PasswordMatchingComponent, PoweredByLogoTemplateComponent, SetNewPasswordComponent, SpinnerButtonDirective, SurewavesYearLogoComponent, VerifyAndSetNewPasswordComponent, VersionAndTermPolicyComponent };
|
|
846
863
|
//# sourceMappingURL=annalib-anna-cognito-lib.mjs.map
|