@frontegg/angular 5.20.0-alpha.4531008312 → 5.21.0-alpha.4598102213

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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -70,13 +70,13 @@ import { Subscription } from 'rxjs';
70
70
  selector: 'app-root',
71
71
  templateUrl: './app.component.html',
72
72
  })
73
- export class AppComponent implements OnDestory {
73
+ export class AppComponent implements OnDestroy {
74
74
  isLoading = true;
75
75
  loadingSubscription: Subscription;
76
76
  constructor(private fronteggAppService: FronteggAppService) {
77
77
  this.loadingSubscription = fronteggAppService.isLoading$.subscribe((isLoading) => this.isLoading = isLoading)
78
78
  }
79
- ngOnDestory(): void {
79
+ ngOnDestroy(): void {
80
80
  this.loadingSubscription.unsubscribe()
81
81
  }
82
82
  }
@@ -127,7 +127,7 @@ export class AppComponent implements OnInit, OnDestroy {
127
127
  })
128
128
  }
129
129
 
130
- ngOnDestory(): void {
130
+ ngOnDestroy(): void {
131
131
  this.loadingSubscription.unsubscribe()
132
132
  }
133
133
  }
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@frontegg/angular",
3
- "version": "5.20.0-alpha.4531008312",
3
+ "version": "5.21.0-alpha.4598102213",
4
4
  "license": "MIT",
5
5
  "peerDependencies": {
6
6
  "@angular/common": ">=12.0.0",
7
7
  "@angular/core": ">=12.0.0"
8
8
  },
9
9
  "dependencies": {
10
- "@frontegg/js": "6.83.0",
10
+ "@frontegg/js": "6.84.0",
11
11
  "csstype": "^3.0.8",
12
12
  "fast-deep-equal": "^3.1.3",
13
13
  "stream": "^0.0.2",