@frontegg/angular 5.20.0 → 5.21.0

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 CHANGED
@@ -1,5 +1,15 @@
1
1
  # Change Log
2
2
 
3
+ ## [5.21.0](https://github.com/frontegg/frontegg-angular/compare/v5.20.0...v5.21.0) (2023-4-3)
4
+
5
+ - Added support for SCIM groups
6
+ - Updated texts across login box - grammar and terminology
7
+ - Added impersonation indicator to show impersonator that they're in an impersonation session
8
+ - Added passkeys feature
9
+
10
+ ### Angular Wrapper 5.21.0:
11
+ - Typo fix
12
+
3
13
  ## [5.20.0](https://github.com/frontegg/frontegg-angular/compare/v5.19.0...v5.20.0) (2023-3-27)
4
14
 
5
15
  - FR-11247 - fix version branch 6.82
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",
3
+ "version": "5.21.0",
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",