@authing/ng-ui-components 3.1.1 → 3.1.7
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/authing-ng-ui-components.metadata.json +1 -1
- package/bundles/authing-ng-ui-components.umd.js +231 -11932
- package/bundles/authing-ng-ui-components.umd.js.map +1 -1
- package/bundles/authing-ng-ui-components.umd.min.js +1 -1
- package/bundles/authing-ng-ui-components.umd.min.js.map +1 -1
- package/esm2015/authing-ng-ui-components.js +1 -1
- package/esm2015/lib/AuthingGuard/authing-guard.component.js +78 -0
- package/esm2015/lib/AuthingGuard/authing-guard.module.js +14 -0
- package/esm2015/lib/{authing-guard.service.js → AuthingGuard/authing-guard.service.js} +2 -2
- package/esm2015/lib/Guard/guard.component.js +79 -0
- package/esm2015/lib/Guard/guard.module.js +14 -0
- package/esm2015/lib/Guard/guard.service.js +13 -0
- package/esm2015/public-api.js +9 -4
- package/fesm2015/authing-ng-ui-components.js +107 -5
- package/fesm2015/authing-ng-ui-components.js.map +1 -1
- package/lib/AuthingGuard/authing-guard.component.d.ts +26 -0
- package/lib/{authing-guard.module.d.ts → AuthingGuard/authing-guard.module.d.ts} +1 -0
- package/lib/{authing-guard.service.d.ts → AuthingGuard/authing-guard.service.d.ts} +0 -0
- package/lib/Guard/guard.component.d.ts +26 -0
- package/lib/Guard/guard.module.d.ts +3 -0
- package/lib/Guard/guard.service.d.ts +3 -0
- package/package.json +3 -6
- package/public-api.d.ts +9 -3
- package/esm2015/lib/authing-guard.component.js +0 -79
- package/esm2015/lib/authing-guard.module.js +0 -12
- package/lib/authing-guard.component.d.ts +0 -28
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { AuthingGuardComponent } from './authing-guard.component';
|
|
3
|
-
export class AuthingGuardModule {
|
|
4
|
-
}
|
|
5
|
-
AuthingGuardModule.decorators = [
|
|
6
|
-
{ type: NgModule, args: [{
|
|
7
|
-
declarations: [AuthingGuardComponent],
|
|
8
|
-
imports: [],
|
|
9
|
-
exports: [AuthingGuardComponent],
|
|
10
|
-
},] }
|
|
11
|
-
];
|
|
12
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXV0aGluZy1ndWFyZC5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiL2hvbWUvcnVubmVyL3dvcmsvYXV0aGluZy11aS1jb21wb25lbnRzL2F1dGhpbmctdWktY29tcG9uZW50cy9wYWNrYWdlcy9hbmd1bGFyLWNvbXBvbmVudHMvcHJvamVjdHMvbmctdWktY29tcG9uZW50cy9zcmMvIiwic291cmNlcyI6WyJsaWIvYXV0aGluZy1ndWFyZC5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQTtBQUN4QyxPQUFPLEVBQUUscUJBQXFCLEVBQUUsTUFBTSwyQkFBMkIsQ0FBQTtBQU9qRSxNQUFNLE9BQU8sa0JBQWtCOzs7WUFMOUIsUUFBUSxTQUFDO2dCQUNSLFlBQVksRUFBRSxDQUFDLHFCQUFxQixDQUFDO2dCQUNyQyxPQUFPLEVBQUUsRUFBRTtnQkFDWCxPQUFPLEVBQUUsQ0FBQyxxQkFBcUIsQ0FBQzthQUNqQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSdcbmltcG9ydCB7IEF1dGhpbmdHdWFyZENvbXBvbmVudCB9IGZyb20gJy4vYXV0aGluZy1ndWFyZC5jb21wb25lbnQnXG5cbkBOZ01vZHVsZSh7XG4gIGRlY2xhcmF0aW9uczogW0F1dGhpbmdHdWFyZENvbXBvbmVudF0sXG4gIGltcG9ydHM6IFtdLFxuICBleHBvcnRzOiBbQXV0aGluZ0d1YXJkQ29tcG9uZW50XSxcbn0pXG5leHBvcnQgY2xhc3MgQXV0aGluZ0d1YXJkTW9kdWxlIHt9XG4iXX0=
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import { OnInit, EventEmitter, OnChanges } from '@angular/core';
|
|
2
|
-
import { User, GuardMode, UserConfig, GuardScenes, AuthingGuard, LoginMethods, getAuthClient, CommonMessage, initAuthClient, RegisterMethods, GuardEventsHandler, AuthenticationClient, GuardEventsHandlerKebab, AuthenticationClientOptions } from '@authing/native-js-ui-components';
|
|
3
|
-
export type { User, UserConfig, CommonMessage, GuardEventsHandler, AuthenticationClient, GuardEventsHandlerKebab, AuthenticationClientOptions, };
|
|
4
|
-
export { GuardMode, GuardScenes, LoginMethods, getAuthClient, initAuthClient, RegisterMethods, };
|
|
5
|
-
export declare class AuthingGuardComponent implements OnInit, OnChanges {
|
|
6
|
-
constructor();
|
|
7
|
-
guard: AuthingGuard;
|
|
8
|
-
ngOnInit(): void;
|
|
9
|
-
ngOnChanges(v: any): void;
|
|
10
|
-
appId: string;
|
|
11
|
-
visible?: boolean;
|
|
12
|
-
tenantId?: string;
|
|
13
|
-
config?: UserConfig;
|
|
14
|
-
onLoad: EventEmitter<[authClient: AuthenticationClient]>;
|
|
15
|
-
onLoadError: EventEmitter<[error: CommonMessage]>;
|
|
16
|
-
onLogin: EventEmitter<[user: User, authClient: AuthenticationClient]>;
|
|
17
|
-
onLoginError: EventEmitter<[user: User, authClient: AuthenticationClient]>;
|
|
18
|
-
onRegister: EventEmitter<[user: User, authClient: AuthenticationClient]>;
|
|
19
|
-
onRegisterError: EventEmitter<[user: User, authClient: AuthenticationClient]>;
|
|
20
|
-
onPwdEmailSend: EventEmitter<[authClient: AuthenticationClient]>;
|
|
21
|
-
onPwdEmailSendError: EventEmitter<[error: CommonMessage, authClient: AuthenticationClient]>;
|
|
22
|
-
onPwdPhoneSend: EventEmitter<[authClient: AuthenticationClient]>;
|
|
23
|
-
onPwdPhoneSendError: EventEmitter<[error: CommonMessage, authClient: AuthenticationClient]>;
|
|
24
|
-
onPwdReset: EventEmitter<[authClient: AuthenticationClient]>;
|
|
25
|
-
onPwdResetError: EventEmitter<[error: CommonMessage, authClient: AuthenticationClient]>;
|
|
26
|
-
onClose: EventEmitter<[]>;
|
|
27
|
-
ngAfterViewInit(): void;
|
|
28
|
-
}
|