@frontegg/angular 6.23.0 → 6.24.0-alpha.8719213916
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/bundles/frontegg-angular.umd.js +7 -0
- package/bundles/frontegg-angular.umd.js.map +1 -1
- package/esm2015/lib/frontegg-app.service.js +8 -1
- package/fesm2015/frontegg-angular.js +7 -0
- package/fesm2015/frontegg-angular.js.map +1 -1
- package/lib/frontegg-app.service.d.ts +5 -0
- package/lib/frontegg-app.service.d.ts.map +1 -1
- package/package.json +2 -2
- package/CHANGELOG.md +0 -617
|
@@ -539,6 +539,13 @@
|
|
|
539
539
|
FronteggAppService.prototype.showAdminPortal = function () {
|
|
540
540
|
this.fronteggApp.showAdminPortal();
|
|
541
541
|
};
|
|
542
|
+
/**
|
|
543
|
+
* Open admin portal hosted mode
|
|
544
|
+
* @param newTab - open in new tab
|
|
545
|
+
* */
|
|
546
|
+
FronteggAppService.prototype.openHostedAdminPortal = function (newTab) {
|
|
547
|
+
this.fronteggApp.openHostedAdminPortal(newTab);
|
|
548
|
+
};
|
|
542
549
|
// Open admin portal
|
|
543
550
|
FronteggAppService.prototype.hideAdminPortal = function () {
|
|
544
551
|
var _a;
|