@frontegg/angular 5.37.0 → 5.38.0-alpha.5809523595
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 +92 -98
- package/bundles/frontegg-angular.umd.js.map +1 -1
- package/esm2015/frontegg-angular.js +1 -3
- package/esm2015/lib/directives/authorized-content.directive.js +14 -16
- package/esm2015/lib/frontegg-app.module.js +13 -8
- package/esm2015/lib/frontegg-app.service.js +17 -15
- package/esm2015/lib/frontegg-auth.service.js +9 -13
- package/esm2015/lib/frontegg-entitlements.service.js +9 -11
- package/esm2015/lib/frontegg-subscription.services.js +9 -11
- package/esm2015/lib/frontegg.component.js +12 -8
- package/esm2015/lib/guards/frontegg-auth.guard.js +10 -13
- package/esm2015/lib/guards/frontegg-load.guard.js +8 -8
- package/fesm2015/frontegg-angular.js +83 -85
- package/fesm2015/frontegg-angular.js.map +1 -1
- package/frontegg-angular.d.ts +1 -2
- package/frontegg-angular.d.ts.map +1 -1
- package/lib/directives/authorized-content.directive.d.ts +3 -0
- package/lib/directives/authorized-content.directive.d.ts.map +1 -1
- package/lib/frontegg-app.module.d.ts +8 -0
- package/lib/frontegg-app.module.d.ts.map +1 -1
- package/lib/frontegg-app.service.d.ts +3 -0
- package/lib/frontegg-app.service.d.ts.map +1 -1
- package/lib/frontegg-auth.service.d.ts +3 -0
- package/lib/frontegg-auth.service.d.ts.map +1 -1
- package/lib/frontegg-entitlements.service.d.ts +3 -0
- package/lib/frontegg-entitlements.service.d.ts.map +1 -1
- package/lib/frontegg-subscription.services.d.ts +3 -0
- package/lib/frontegg-subscription.services.d.ts.map +1 -1
- package/lib/frontegg.component.d.ts +3 -0
- package/lib/frontegg.component.d.ts.map +1 -1
- package/lib/guards/frontegg-auth.guard.d.ts +3 -0
- package/lib/guards/frontegg-auth.guard.d.ts.map +1 -1
- package/lib/guards/frontegg-load.guard.d.ts +3 -0
- package/lib/guards/frontegg-load.guard.d.ts.map +1 -1
- package/package.json +1 -2
- package/CHANGELOG.md +0 -372
- package/bundles/frontegg-angular.umd.min.js +0 -2
- package/bundles/frontegg-angular.umd.min.js.map +0 -1
- package/frontegg-angular.metadata.json +0 -1
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
(function (global, factory) {
|
|
2
|
-
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@angular/core'), require('@angular/common'), require('@angular/router'), require('@frontegg/js'), require('@frontegg/redux-store'), require('rxjs'), require('@frontegg/rest-api'), require('rxjs/operators'), require('fast-deep-equal')) :
|
|
3
|
-
typeof define === 'function' && define.amd ? define('@frontegg/angular', ['exports', '@angular/core', '@angular/common', '@angular/router', '@frontegg/js', '@frontegg/redux-store', 'rxjs', '@frontegg/rest-api', 'rxjs/operators', 'fast-deep-equal'], factory) :
|
|
4
|
-
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory((global.frontegg = global.frontegg || {}, global.frontegg.angular = {}), global.ng.core, global.ng.common, global.ng.router, global.FronteggJS, global.FronteggReduxStore, global.rxjs, global.FronteggRestApi, global.rxjs.operators, global.FastDeepEqual));
|
|
5
|
-
}(this, (function (exports, i0, common, i1, js, reduxStore, rxjs, restApi, operators, FastDeepEqual) { 'use strict';
|
|
2
|
+
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@angular/core'), require('@angular/common'), require('@angular/router'), require('@frontegg/js'), require('@frontegg/redux-store'), require('rxjs'), require('@frontegg/rest-api'), require('@angular/core/package.json'), require('rxjs/operators'), require('fast-deep-equal')) :
|
|
3
|
+
typeof define === 'function' && define.amd ? define('@frontegg/angular', ['exports', '@angular/core', '@angular/common', '@angular/router', '@frontegg/js', '@frontegg/redux-store', 'rxjs', '@frontegg/rest-api', '@angular/core/package.json', 'rxjs/operators', 'fast-deep-equal'], factory) :
|
|
4
|
+
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory((global.frontegg = global.frontegg || {}, global.frontegg.angular = {}), global.ng.core, global.ng.common, global.ng.router, global.FronteggJS, global.FronteggReduxStore, global.rxjs, global.FronteggRestApi, global.ng.core.packageJson, global.rxjs.operators, global.FastDeepEqual));
|
|
5
|
+
})(this, (function (exports, i0, common, i1, js, reduxStore, rxjs, restApi, angularCoreVersion, operators, FastDeepEqual) { 'use strict';
|
|
6
6
|
|
|
7
7
|
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
8
8
|
|
|
@@ -15,19 +15,18 @@
|
|
|
15
15
|
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
16
16
|
Object.defineProperty(n, k, d.get ? d : {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () {
|
|
19
|
-
return e[k];
|
|
20
|
-
}
|
|
18
|
+
get: function () { return e[k]; }
|
|
21
19
|
});
|
|
22
20
|
}
|
|
23
21
|
});
|
|
24
22
|
}
|
|
25
|
-
n[
|
|
23
|
+
n["default"] = e;
|
|
26
24
|
return Object.freeze(n);
|
|
27
25
|
}
|
|
28
26
|
|
|
29
27
|
var i0__namespace = /*#__PURE__*/_interopNamespace(i0);
|
|
30
28
|
var i1__namespace = /*#__PURE__*/_interopNamespace(i1);
|
|
29
|
+
var angularCoreVersion__default = /*#__PURE__*/_interopDefaultLegacy(angularCoreVersion);
|
|
31
30
|
var FastDeepEqual__default = /*#__PURE__*/_interopDefaultLegacy(FastDeepEqual);
|
|
32
31
|
|
|
33
32
|
/*! *****************************************************************************
|
|
@@ -358,25 +357,27 @@
|
|
|
358
357
|
};
|
|
359
358
|
return FronteggLoadGuard;
|
|
360
359
|
}());
|
|
361
|
-
FronteggLoadGuard
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
]; };
|
|
360
|
+
FronteggLoadGuard.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: FronteggLoadGuard, deps: [{ token: FronteggAppService }], target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
|
361
|
+
FronteggLoadGuard.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: FronteggLoadGuard });
|
|
362
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: FronteggLoadGuard, decorators: [{
|
|
363
|
+
type: i0.Injectable
|
|
364
|
+
}], ctorParameters: function () { return [{ type: FronteggAppService }]; } });
|
|
367
365
|
|
|
368
366
|
var FronteggComponent = /** @class */ (function () {
|
|
369
367
|
function FronteggComponent() {
|
|
370
368
|
}
|
|
371
369
|
return FronteggComponent;
|
|
372
370
|
}());
|
|
373
|
-
FronteggComponent
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
371
|
+
FronteggComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: FronteggComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
372
|
+
FronteggComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: FronteggComponent, selector: "frontegg", ngImport: i0__namespace, template: "", isInline: true });
|
|
373
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: FronteggComponent, decorators: [{
|
|
374
|
+
type: i0.Component,
|
|
375
|
+
args: [{
|
|
376
|
+
// tslint:disable-next-line:component-selector
|
|
377
|
+
selector: 'frontegg',
|
|
378
|
+
template: "",
|
|
379
|
+
}]
|
|
380
|
+
}] });
|
|
380
381
|
|
|
381
382
|
var sdkVersion = { version: '5.37.0' };
|
|
382
383
|
|
|
@@ -439,7 +440,9 @@
|
|
|
439
440
|
var contextOptions = ((_a = this.config) !== null && _a !== void 0 ? _a : {}).contextOptions;
|
|
440
441
|
contextOptions.metadataHeaders = {
|
|
441
442
|
fronteggSdkVersion: "@frontegg/angular@" + sdkVersion.version,
|
|
442
|
-
|
|
443
|
+
//TODO: remove this ts-ignore after updating rest-api context options type to accept string.
|
|
444
|
+
//@ts-ignore
|
|
445
|
+
framework: restApi.FronteggFrameworks.Angular + "@" + angularCoreVersion__default["default"].version,
|
|
443
446
|
};
|
|
444
447
|
restApi.ContextHolder.setOnRedirectTo(onRedirectTo);
|
|
445
448
|
this.fronteggApp = js.initialize(Object.assign({ onRedirectTo: onRedirectTo }, this.config));
|
|
@@ -573,17 +576,19 @@
|
|
|
573
576
|
};
|
|
574
577
|
return FronteggAppService;
|
|
575
578
|
}());
|
|
576
|
-
FronteggAppService.ɵ
|
|
577
|
-
FronteggAppService
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
579
|
+
FronteggAppService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: FronteggAppService, deps: [{ token: FronteggAppOptionsClass }, { token: i1__namespace.Router }, { token: i0__namespace.NgZone }], target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
|
580
|
+
FronteggAppService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: FronteggAppService, providedIn: 'root' });
|
|
581
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: FronteggAppService, decorators: [{
|
|
582
|
+
type: i0.Injectable,
|
|
583
|
+
args: [{
|
|
584
|
+
providedIn: 'root',
|
|
585
|
+
}]
|
|
586
|
+
}], ctorParameters: function () {
|
|
587
|
+
return [{ type: undefined, decorators: [{
|
|
588
|
+
type: i0.Inject,
|
|
589
|
+
args: [FronteggAppOptionsClass]
|
|
590
|
+
}] }, { type: i1__namespace.Router }, { type: i0__namespace.NgZone }];
|
|
591
|
+
} });
|
|
587
592
|
|
|
588
593
|
var FronteggBaseGuard = /** @class */ (function () {
|
|
589
594
|
function FronteggBaseGuard() {
|
|
@@ -985,7 +990,7 @@
|
|
|
985
990
|
try {
|
|
986
991
|
for (var authSubStates_1 = __values(authSubStates), authSubStates_1_1 = authSubStates_1.next(); !authSubStates_1_1.done; authSubStates_1_1 = authSubStates_1.next()) {
|
|
987
992
|
var authSubState = authSubStates_1_1.value;
|
|
988
|
-
if (!FastDeepEqual__default[
|
|
993
|
+
if (!FastDeepEqual__default["default"](authSubState.subject.value, authState[authSubState.field])) {
|
|
989
994
|
authSubState.subject.next(authState[authSubState.field]);
|
|
990
995
|
}
|
|
991
996
|
}
|
|
@@ -1016,16 +1021,14 @@
|
|
|
1016
1021
|
};
|
|
1017
1022
|
return FronteggAuthService;
|
|
1018
1023
|
}());
|
|
1019
|
-
FronteggAuthService.ɵ
|
|
1020
|
-
FronteggAuthService
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
{ type: i1.Router }
|
|
1028
|
-
]; };
|
|
1024
|
+
FronteggAuthService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: FronteggAuthService, deps: [{ token: FronteggAppService }, { token: i1__namespace.Router }], target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
|
1025
|
+
FronteggAuthService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: FronteggAuthService, providedIn: 'root' });
|
|
1026
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: FronteggAuthService, decorators: [{
|
|
1027
|
+
type: i0.Injectable,
|
|
1028
|
+
args: [{
|
|
1029
|
+
providedIn: 'root',
|
|
1030
|
+
}]
|
|
1031
|
+
}], ctorParameters: function () { return [{ type: FronteggAppService }, { type: i1__namespace.Router }]; } });
|
|
1029
1032
|
|
|
1030
1033
|
var FronteggAuthGuard = /** @class */ (function (_super) {
|
|
1031
1034
|
__extends(FronteggAuthGuard, _super);
|
|
@@ -1076,15 +1079,11 @@
|
|
|
1076
1079
|
};
|
|
1077
1080
|
return FronteggAuthGuard;
|
|
1078
1081
|
}(FronteggBaseGuard));
|
|
1079
|
-
FronteggAuthGuard
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
{ type: FronteggAuthService },
|
|
1085
|
-
{ type: i1.Router },
|
|
1086
|
-
{ type: i0.NgZone }
|
|
1087
|
-
]; };
|
|
1082
|
+
FronteggAuthGuard.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: FronteggAuthGuard, deps: [{ token: FronteggAppService }, { token: FronteggAuthService }, { token: i1__namespace.Router }, { token: i0__namespace.NgZone }], target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
|
1083
|
+
FronteggAuthGuard.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: FronteggAuthGuard });
|
|
1084
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: FronteggAuthGuard, decorators: [{
|
|
1085
|
+
type: i0.Injectable
|
|
1086
|
+
}], ctorParameters: function () { return [{ type: FronteggAppService }, { type: FronteggAuthService }, { type: i1__namespace.Router }, { type: i0__namespace.NgZone }]; } });
|
|
1088
1087
|
|
|
1089
1088
|
var AuthorizedContentDirective = /** @class */ (function () {
|
|
1090
1089
|
function AuthorizedContentDirective(templateRef, viewContainer, fronteggAuthService) {
|
|
@@ -1114,19 +1113,16 @@
|
|
|
1114
1113
|
};
|
|
1115
1114
|
return AuthorizedContentDirective;
|
|
1116
1115
|
}());
|
|
1117
|
-
AuthorizedContentDirective
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
AuthorizedContentDirective.propDecorators = {
|
|
1128
|
-
authorizedContent: [{ type: i0.Input }]
|
|
1129
|
-
};
|
|
1116
|
+
AuthorizedContentDirective.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: AuthorizedContentDirective, deps: [{ token: i0__namespace.TemplateRef }, { token: i0__namespace.ViewContainerRef }, { token: FronteggAuthService }], target: i0__namespace.ɵɵFactoryTarget.Directive });
|
|
1117
|
+
AuthorizedContentDirective.ɵdir = i0__namespace.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.17", type: AuthorizedContentDirective, selector: "[authorizedContent]", inputs: { authorizedContent: "authorizedContent" }, ngImport: i0__namespace });
|
|
1118
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: AuthorizedContentDirective, decorators: [{
|
|
1119
|
+
type: i0.Directive,
|
|
1120
|
+
args: [{
|
|
1121
|
+
selector: '[authorizedContent]',
|
|
1122
|
+
}]
|
|
1123
|
+
}], ctorParameters: function () { return [{ type: i0__namespace.TemplateRef }, { type: i0__namespace.ViewContainerRef }, { type: FronteggAuthService }]; }, propDecorators: { authorizedContent: [{
|
|
1124
|
+
type: i0.Input
|
|
1125
|
+
}] } });
|
|
1130
1126
|
|
|
1131
1127
|
var FronteggSubscriptionService = /** @class */ (function () {
|
|
1132
1128
|
function FronteggSubscriptionService(fronteggAppService) {
|
|
@@ -1174,7 +1170,7 @@
|
|
|
1174
1170
|
this.fronteggAppService.subscriptionsState$.subscribe(function (subscriptionState) {
|
|
1175
1171
|
if (subscriptionState != null) {
|
|
1176
1172
|
var subscription = subscriptionState.billing.subscription, checkoutState = subscriptionState.checkout;
|
|
1177
|
-
if (!FastDeepEqual__default[
|
|
1173
|
+
if (!FastDeepEqual__default["default"](_this.subscriptionStateSubject.getValue(), subscription)) {
|
|
1178
1174
|
_this.subscriptionStateSubject.next(subscription);
|
|
1179
1175
|
}
|
|
1180
1176
|
var checkoutSubjectState = _this.checkoutStateSubject.getValue();
|
|
@@ -1205,15 +1201,14 @@
|
|
|
1205
1201
|
};
|
|
1206
1202
|
return FronteggSubscriptionService;
|
|
1207
1203
|
}());
|
|
1208
|
-
FronteggSubscriptionService.ɵ
|
|
1209
|
-
FronteggSubscriptionService
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
]; };
|
|
1204
|
+
FronteggSubscriptionService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: FronteggSubscriptionService, deps: [{ token: FronteggAppService }], target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
|
1205
|
+
FronteggSubscriptionService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: FronteggSubscriptionService, providedIn: 'root' });
|
|
1206
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: FronteggSubscriptionService, decorators: [{
|
|
1207
|
+
type: i0.Injectable,
|
|
1208
|
+
args: [{
|
|
1209
|
+
providedIn: 'root',
|
|
1210
|
+
}]
|
|
1211
|
+
}], ctorParameters: function () { return [{ type: FronteggAppService }]; } });
|
|
1217
1212
|
|
|
1218
1213
|
/**
|
|
1219
1214
|
* An entitlements service for:
|
|
@@ -1307,15 +1302,14 @@
|
|
|
1307
1302
|
};
|
|
1308
1303
|
return FronteggEntitlementsService;
|
|
1309
1304
|
}());
|
|
1310
|
-
FronteggEntitlementsService.ɵ
|
|
1311
|
-
FronteggEntitlementsService
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
]; };
|
|
1305
|
+
FronteggEntitlementsService.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: FronteggEntitlementsService, deps: [{ token: FronteggAppService }], target: i0__namespace.ɵɵFactoryTarget.Injectable });
|
|
1306
|
+
FronteggEntitlementsService.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: FronteggEntitlementsService, providedIn: 'root' });
|
|
1307
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: FronteggEntitlementsService, decorators: [{
|
|
1308
|
+
type: i0.Injectable,
|
|
1309
|
+
args: [{
|
|
1310
|
+
providedIn: 'root',
|
|
1311
|
+
}]
|
|
1312
|
+
}], ctorParameters: function () { return [{ type: FronteggAppService }]; } });
|
|
1319
1313
|
|
|
1320
1314
|
var FronteggAppModule = /** @class */ (function () {
|
|
1321
1315
|
function FronteggAppModule() {
|
|
@@ -1339,13 +1333,17 @@
|
|
|
1339
1333
|
};
|
|
1340
1334
|
return FronteggAppModule;
|
|
1341
1335
|
}());
|
|
1342
|
-
FronteggAppModule
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1336
|
+
FronteggAppModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: FronteggAppModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
|
|
1337
|
+
FronteggAppModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: FronteggAppModule, declarations: [FronteggComponent, AuthorizedContentDirective], imports: [common.CommonModule, i1.RouterModule], exports: [FronteggComponent, AuthorizedContentDirective] });
|
|
1338
|
+
FronteggAppModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: FronteggAppModule, imports: [[common.CommonModule, i1.RouterModule]] });
|
|
1339
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: FronteggAppModule, decorators: [{
|
|
1340
|
+
type: i0.NgModule,
|
|
1341
|
+
args: [{
|
|
1342
|
+
imports: [common.CommonModule, i1.RouterModule],
|
|
1343
|
+
declarations: [FronteggComponent, AuthorizedContentDirective],
|
|
1344
|
+
exports: [FronteggComponent, AuthorizedContentDirective],
|
|
1345
|
+
}]
|
|
1346
|
+
}] });
|
|
1349
1347
|
|
|
1350
1348
|
/*
|
|
1351
1349
|
* Public API Surface of frontegg-app
|
|
@@ -1357,9 +1355,7 @@
|
|
|
1357
1355
|
|
|
1358
1356
|
Object.defineProperty(exports, 'ContextHolder', {
|
|
1359
1357
|
enumerable: true,
|
|
1360
|
-
get: function () {
|
|
1361
|
-
return restApi.ContextHolder;
|
|
1362
|
-
}
|
|
1358
|
+
get: function () { return restApi.ContextHolder; }
|
|
1363
1359
|
});
|
|
1364
1360
|
exports.AuthorizedContentDirective = AuthorizedContentDirective;
|
|
1365
1361
|
exports.FronteggAppModule = FronteggAppModule;
|
|
@@ -1370,10 +1366,8 @@
|
|
|
1370
1366
|
exports.FronteggEntitlementsService = FronteggEntitlementsService;
|
|
1371
1367
|
exports.FronteggLoadGuard = FronteggLoadGuard;
|
|
1372
1368
|
exports.FronteggSubscriptionService = FronteggSubscriptionService;
|
|
1373
|
-
exports.ɵa = FronteggAppOptionsClass;
|
|
1374
|
-
exports.ɵb = FronteggBaseGuard;
|
|
1375
1369
|
|
|
1376
1370
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
1377
1371
|
|
|
1378
|
-
}))
|
|
1372
|
+
}));
|
|
1379
1373
|
//# sourceMappingURL=frontegg-angular.umd.js.map
|