@frontegg/angular 6.24.0 → 6.24.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/CHANGELOG.md +6 -1
- package/bundles/frontegg-angular.umd.js +10 -3
- package/bundles/frontegg-angular.umd.js.map +1 -1
- package/esm2015/lib/frontegg-app.service.js +10 -3
- package/esm2015/sdkVersion.js +2 -2
- package/fesm2015/frontegg-angular.js +10 -3
- package/fesm2015/frontegg-angular.js.map +1 -1
- package/lib/frontegg-app.service.d.ts +7 -2
- package/lib/frontegg-app.service.d.ts.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,13 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
## [6.24.
|
|
3
|
+
## [6.24.1](https://github.com/frontegg/frontegg-angular/compare/v6.24.0...v6.24.1) (2024-4-18)
|
|
4
4
|
|
|
5
5
|
- FR-16088 - Support hosted admin portal
|
|
6
|
+
|
|
7
|
+
# Change Log
|
|
8
|
+
|
|
9
|
+
## [6.24.0](https://github.com/frontegg/frontegg-angular/compare/v6.23.0...v6.24.0) (2024-4-18)
|
|
10
|
+
|
|
6
11
|
- FR-FR-15124 - Support multi-apps
|
|
7
12
|
|
|
8
13
|
## [6.23.0](https://github.com/frontegg/frontegg-angular/compare/v6.22.0...v6.23.0) (2024-4-15)
|
|
@@ -357,7 +357,7 @@
|
|
|
357
357
|
}]
|
|
358
358
|
}] });
|
|
359
359
|
|
|
360
|
-
var sdkVersion = { version: '6.24.
|
|
360
|
+
var sdkVersion = { version: '6.24.1' };
|
|
361
361
|
|
|
362
362
|
var FronteggAppOptionsClass = /** @class */ (function () {
|
|
363
363
|
function FronteggAppOptionsClass() {
|
|
@@ -536,8 +536,15 @@
|
|
|
536
536
|
configurable: true
|
|
537
537
|
});
|
|
538
538
|
// Open admin portal
|
|
539
|
-
FronteggAppService.prototype.showAdminPortal = function () {
|
|
540
|
-
this.fronteggApp.showAdminPortal();
|
|
539
|
+
FronteggAppService.prototype.showAdminPortal = function (options) {
|
|
540
|
+
this.fronteggApp.showAdminPortal(options);
|
|
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);
|
|
541
548
|
};
|
|
542
549
|
// Open admin portal
|
|
543
550
|
FronteggAppService.prototype.hideAdminPortal = function () {
|