@authing/ng-ui-components 4.1.1-rc.6 → 4.2.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.
@@ -1,8 +1,8 @@
1
1
  (function (global, factory) {
2
- typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@angular/core'), require('@authing/native-js-ui-components')) :
3
- typeof define === 'function' && define.amd ? define('@authing/ng-ui-components', ['exports', '@angular/core', '@authing/native-js-ui-components'], factory) :
4
- (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory((global.authing = global.authing || {}, global.authing['ng-ui-components'] = {}), global.ng.core, global.nativeJsUiComponents));
5
- }(this, (function (exports, i0, nativeJsUiComponents) { 'use strict';
2
+ typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@authing/native-js-ui-components'), require('@angular/core')) :
3
+ typeof define === 'function' && define.amd ? define('@authing/ng-ui-components', ['exports', '@authing/native-js-ui-components', '@angular/core'], factory) :
4
+ (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory((global.authing = global.authing || {}, global.authing['ng-ui-components'] = {}), global.nativeJsUiComponents, global.ng.core));
5
+ }(this, (function (exports, nativeJsUiComponents, i0) { 'use strict';
6
6
 
7
7
  var GuardService = /** @class */ (function () {
8
8
  function GuardService() {
@@ -171,6 +171,30 @@
171
171
  * Generated bundle index. Do not edit.
172
172
  */
173
173
 
174
+ Object.defineProperty(exports, 'GuardMode', {
175
+ enumerable: true,
176
+ get: function () {
177
+ return nativeJsUiComponents.GuardMode;
178
+ }
179
+ });
180
+ Object.defineProperty(exports, 'GuardModuleType', {
181
+ enumerable: true,
182
+ get: function () {
183
+ return nativeJsUiComponents.GuardModuleType;
184
+ }
185
+ });
186
+ Object.defineProperty(exports, 'LoginMethods', {
187
+ enumerable: true,
188
+ get: function () {
189
+ return nativeJsUiComponents.LoginMethods;
190
+ }
191
+ });
192
+ Object.defineProperty(exports, 'RegisterMethods', {
193
+ enumerable: true,
194
+ get: function () {
195
+ return nativeJsUiComponents.RegisterMethods;
196
+ }
197
+ });
174
198
  exports.GuardComponent = GuardComponent;
175
199
  exports.GuardModule = GuardModule;
176
200
  exports.GuardService = GuardService;
@@ -1 +1 @@
1
- {"version":3,"file":"authing-ng-ui-components.umd.js","sources":["../../../projects/ng-ui-components/src/lib/Guard/guard.service.ts","../../../projects/ng-ui-components/src/lib/Guard/guard.component.ts","../../../projects/ng-ui-components/src/lib/Guard/guard.module.ts","../../../projects/ng-ui-components/src/public-api.ts","../../../projects/ng-ui-components/src/authing-ng-ui-components.ts"],"sourcesContent":["import { Injectable } from '@angular/core';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class GuardService {\n constructor() {}\n}\n","import {\n OnInit,\n Output,\n Component,\n EventEmitter,\n ViewEncapsulation,\n Input,\n OnChanges,\n} from '@angular/core';\n\nimport {\n AuthenticationClient,\n Guard as NativeGuard,\n GuardEvents,\n GuardLocalConfig,\n} from '@authing/native-js-ui-components';\n\n@Component({\n selector: 'guard',\n template: `<div id=\"guard_container\"></div>`,\n styles: [],\n styleUrls: ['./guard.component.scss'],\n encapsulation: ViewEncapsulation.None,\n})\nexport class GuardComponent implements OnInit, OnChanges {\n constructor() {}\n\n @Input() guard!: NativeGuard;\n @Input() appId?: string;\n @Input() visible?: boolean;\n @Input() tenantId?: string;\n @Input() authClient?: AuthenticationClient;\n @Input() config?: Partial<GuardLocalConfig>;\n\n @Output() onLoad = new EventEmitter<\n Parameters<Required<GuardEvents>['onLoad']>\n >();\n @Output() onLoadError = new EventEmitter<\n Parameters<Required<GuardEvents>['onLoadError']>\n >();\n @Output() onLogin = new EventEmitter<\n Parameters<Required<GuardEvents>['onLogin']>\n >();\n @Output() onLoginError = new EventEmitter<\n Parameters<Required<GuardEvents>['onLoginError']>\n >();\n @Output() onRegister = new EventEmitter<\n Parameters<Required<GuardEvents>['onRegister']>\n >();\n @Output() onRegisterError = new EventEmitter<\n Parameters<Required<GuardEvents>['onRegisterError']>\n >();\n @Output() onEmailSend = new EventEmitter<\n Parameters<Required<GuardEvents>['onEmailSend']>\n >();\n @Output() onEmailSendError = new EventEmitter<\n Parameters<Required<GuardEvents>['onEmailSendError']>\n >();\n @Output() onPhoneSend = new EventEmitter<\n Parameters<Required<GuardEvents>['onPhoneSend']>\n >();\n @Output() onPhoneSendError = new EventEmitter<\n Parameters<Required<GuardEvents>['onPhoneSendError']>\n >();\n @Output() onPwdReset = new EventEmitter<\n Parameters<Required<GuardEvents>['onPwdReset']>\n >();\n @Output() onPwdResetError = new EventEmitter<\n Parameters<Required<GuardEvents>['onPwdResetError']>\n >();\n @Output() onClose = new EventEmitter<\n Parameters<Required<GuardEvents>['onClose']>\n >();\n\n @Output() onLangChange = new EventEmitter<\n Parameters<Required<GuardEvents>['onLangChange']>\n >();\n ngAfterViewInit() {\n // @ts-ignore\n\n this.guard = new NativeGuard({\n appId: this.appId,\n config: this.config,\n tenantId: this.tenantId,\n authClient: this.authClient,\n });\n\n this.guard.on('load', (...rest) => this.onLoad.emit(rest));\n this.guard.on('load-error', (...rest) => this.onLoadError.emit(rest));\n this.guard.on('login', (...rest) => this.onLogin.emit(rest));\n this.guard.on('login-error', (...rest) => this.onLoginError.emit(rest));\n this.guard.on('register', (...rest) => this.onRegister.emit(rest));\n this.guard.on('register-error', (...rest) =>\n this.onRegisterError.emit(rest)\n );\n this.guard.on('close', (...rest) => this.onClose.emit(rest));\n this.guard.on('lang-change', (...rest) => this.onLangChange.emit(rest));\n\n if (this.visible === true) {\n this.guard.show();\n }\n }\n\n ngOnInit(): void {}\n\n ngOnChanges() {\n if (this.visible !== undefined && this.guard) {\n if (this.visible) {\n this.guard?.show();\n } else {\n this.guard?.hide();\n }\n }\n }\n}\n","import { NgModule } from '@angular/core';\nimport { GuardComponent } from './guard.component';\n\n@NgModule({\n declarations: [GuardComponent],\n imports: [],\n exports: [GuardComponent],\n})\nexport class GuardModule {\n constructor() {}\n}\n","/*\n * Public API Surface of authing-guard\n */\n\nimport {\n User,\n GuardMode,\n GuardModuleType,\n LoginMethods,\n CommonMessage,\n RegisterMethods,\n AuthenticationClient,\n} from '@authing/native-js-ui-components';\n\nexport * from './lib/Guard/guard.service';\nexport * from './lib/Guard/guard.component';\nexport * from './lib/Guard/guard.module';\n\nexport type { CommonMessage, AuthenticationClient, User };\n\nexport { GuardMode, GuardModuleType, LoginMethods, RegisterMethods };\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":["Injectable","EventEmitter","NativeGuard","Component","ViewEncapsulation","Input","Output","NgModule"],"mappings":";;;;;;;QAME;SAAgB;;;;;gBAJjBA,aAAU,SAAC;oBACV,UAAU,EAAE,MAAM;iBACnB;;;;;QCqBC;YASU,WAAM,GAAG,IAAIC,eAAY,EAEhC,CAAC;YACM,gBAAW,GAAG,IAAIA,eAAY,EAErC,CAAC;YACM,YAAO,GAAG,IAAIA,eAAY,EAEjC,CAAC;YACM,iBAAY,GAAG,IAAIA,eAAY,EAEtC,CAAC;YACM,eAAU,GAAG,IAAIA,eAAY,EAEpC,CAAC;YACM,oBAAe,GAAG,IAAIA,eAAY,EAEzC,CAAC;YACM,gBAAW,GAAG,IAAIA,eAAY,EAErC,CAAC;YACM,qBAAgB,GAAG,IAAIA,eAAY,EAE1C,CAAC;YACM,gBAAW,GAAG,IAAIA,eAAY,EAErC,CAAC;YACM,qBAAgB,GAAG,IAAIA,eAAY,EAE1C,CAAC;YACM,eAAU,GAAG,IAAIA,eAAY,EAEpC,CAAC;YACM,oBAAe,GAAG,IAAIA,eAAY,EAEzC,CAAC;YACM,YAAO,GAAG,IAAIA,eAAY,EAEjC,CAAC;YAEM,iBAAY,GAAG,IAAIA,eAAY,EAEtC,CAAC;SAnDY;QAoDhB,wCAAe,GAAf;YAAA,iBAwBC;;YArBC,IAAI,CAAC,KAAK,GAAG,IAAIC,0BAAW,CAAC;gBAC3B,KAAK,EAAE,IAAI,CAAC,KAAK;gBACjB,MAAM,EAAE,IAAI,CAAC,MAAM;gBACnB,QAAQ,EAAE,IAAI,CAAC,QAAQ;gBACvB,UAAU,EAAE,IAAI,CAAC,UAAU;aAC5B,CAAC,CAAC;YAEH,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC,MAAM,EAAE;gBAAC,cAAO;qBAAP,UAAO,EAAP,qBAAO,EAAP,IAAO;oBAAP,yBAAO;;gBAAK,OAAA,KAAI,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC;aAAA,CAAC,CAAC;YAC3D,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC,YAAY,EAAE;gBAAC,cAAO;qBAAP,UAAO,EAAP,qBAAO,EAAP,IAAO;oBAAP,yBAAO;;gBAAK,OAAA,KAAI,CAAC,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC;aAAA,CAAC,CAAC;YACtE,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC,OAAO,EAAE;gBAAC,cAAO;qBAAP,UAAO,EAAP,qBAAO,EAAP,IAAO;oBAAP,yBAAO;;gBAAK,OAAA,KAAI,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC;aAAA,CAAC,CAAC;YAC7D,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC,aAAa,EAAE;gBAAC,cAAO;qBAAP,UAAO,EAAP,qBAAO,EAAP,IAAO;oBAAP,yBAAO;;gBAAK,OAAA,KAAI,CAAC,YAAY,CAAC,IAAI,CAAC,IAAI,CAAC;aAAA,CAAC,CAAC;YACxE,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC,UAAU,EAAE;gBAAC,cAAO;qBAAP,UAAO,EAAP,qBAAO,EAAP,IAAO;oBAAP,yBAAO;;gBAAK,OAAA,KAAI,CAAC,UAAU,CAAC,IAAI,CAAC,IAAI,CAAC;aAAA,CAAC,CAAC;YACnE,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC,gBAAgB,EAAE;gBAAC,cAAO;qBAAP,UAAO,EAAP,qBAAO,EAAP,IAAO;oBAAP,yBAAO;;gBACtC,OAAA,KAAI,CAAC,eAAe,CAAC,IAAI,CAAC,IAAI,CAAC;aAAA,CAChC,CAAC;YACF,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC,OAAO,EAAE;gBAAC,cAAO;qBAAP,UAAO,EAAP,qBAAO,EAAP,IAAO;oBAAP,yBAAO;;gBAAK,OAAA,KAAI,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC;aAAA,CAAC,CAAC;YAC7D,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC,aAAa,EAAE;gBAAC,cAAO;qBAAP,UAAO,EAAP,qBAAO,EAAP,IAAO;oBAAP,yBAAO;;gBAAK,OAAA,KAAI,CAAC,YAAY,CAAC,IAAI,CAAC,IAAI,CAAC;aAAA,CAAC,CAAC;YAExE,IAAI,IAAI,CAAC,OAAO,KAAK,IAAI,EAAE;gBACzB,IAAI,CAAC,KAAK,CAAC,IAAI,EAAE,CAAC;aACnB;SACF;QAED,iCAAQ,GAAR,eAAmB;QAEnB,oCAAW,GAAX;;YACE,IAAI,IAAI,CAAC,OAAO,KAAK,SAAS,IAAI,IAAI,CAAC,KAAK,EAAE;gBAC5C,IAAI,IAAI,CAAC,OAAO,EAAE;oBAChB,MAAA,IAAI,CAAC,KAAK,0CAAE,IAAI,GAAG;iBACpB;qBAAM;oBACL,MAAA,IAAI,CAAC,KAAK,0CAAE,IAAI,GAAG;iBACpB;aACF;SACF;;;;gBAhGFC,YAAS,SAAC;oBACT,QAAQ,EAAE,OAAO;oBACjB,QAAQ,EAAE,oCAAkC;oBAG5C,aAAa,EAAEC,oBAAiB,CAAC,IAAI;;iBACtC;;;;wBAIEC,QAAK;wBACLA,QAAK;0BACLA,QAAK;2BACLA,QAAK;6BACLA,QAAK;yBACLA,QAAK;yBAELC,SAAM;8BAGNA,SAAM;0BAGNA,SAAM;+BAGNA,SAAM;6BAGNA,SAAM;kCAGNA,SAAM;8BAGNA,SAAM;mCAGNA,SAAM;8BAGNA,SAAM;mCAGNA,SAAM;6BAGNA,SAAM;kCAGNA,SAAM;0BAGNA,SAAM;+BAINA,SAAM;;;;QCjEP;SAAgB;;;;gBANjBC,WAAQ,SAAC;oBACR,YAAY,EAAE,CAAC,cAAc,CAAC;oBAC9B,OAAO,EAAE,EAAE;oBACX,OAAO,EAAE,CAAC,cAAc,CAAC;iBAC1B;;;;ICPD;;;;ICAA;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"authing-ng-ui-components.umd.js","sources":["../../../projects/ng-ui-components/src/lib/Guard/guard.service.ts","../../../projects/ng-ui-components/src/lib/Guard/guard.component.ts","../../../projects/ng-ui-components/src/lib/Guard/guard.module.ts","../../../projects/ng-ui-components/src/public-api.ts","../../../projects/ng-ui-components/src/authing-ng-ui-components.ts"],"sourcesContent":["import { Injectable } from '@angular/core';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class GuardService {\n constructor() {}\n}\n","import {\n OnInit,\n Output,\n Component,\n EventEmitter,\n ViewEncapsulation,\n Input,\n OnChanges,\n} from '@angular/core';\n\nimport {\n AuthenticationClient,\n Guard as NativeGuard,\n GuardEvents,\n GuardLocalConfig,\n} from '@authing/native-js-ui-components';\n\n@Component({\n selector: 'guard',\n template: `<div id=\"guard_container\"></div>`,\n styles: [],\n styleUrls: ['./guard.component.scss'],\n encapsulation: ViewEncapsulation.None,\n})\nexport class GuardComponent implements OnInit, OnChanges {\n constructor() {}\n\n @Input() guard!: NativeGuard;\n @Input() appId?: string;\n @Input() visible?: boolean;\n @Input() tenantId?: string;\n @Input() authClient?: AuthenticationClient;\n @Input() config?: Partial<GuardLocalConfig>;\n\n @Output() onLoad = new EventEmitter<\n Parameters<Required<GuardEvents>['onLoad']>\n >();\n @Output() onLoadError = new EventEmitter<\n Parameters<Required<GuardEvents>['onLoadError']>\n >();\n @Output() onLogin = new EventEmitter<\n Parameters<Required<GuardEvents>['onLogin']>\n >();\n @Output() onLoginError = new EventEmitter<\n Parameters<Required<GuardEvents>['onLoginError']>\n >();\n @Output() onRegister = new EventEmitter<\n Parameters<Required<GuardEvents>['onRegister']>\n >();\n @Output() onRegisterError = new EventEmitter<\n Parameters<Required<GuardEvents>['onRegisterError']>\n >();\n @Output() onEmailSend = new EventEmitter<\n Parameters<Required<GuardEvents>['onEmailSend']>\n >();\n @Output() onEmailSendError = new EventEmitter<\n Parameters<Required<GuardEvents>['onEmailSendError']>\n >();\n @Output() onPhoneSend = new EventEmitter<\n Parameters<Required<GuardEvents>['onPhoneSend']>\n >();\n @Output() onPhoneSendError = new EventEmitter<\n Parameters<Required<GuardEvents>['onPhoneSendError']>\n >();\n @Output() onPwdReset = new EventEmitter<\n Parameters<Required<GuardEvents>['onPwdReset']>\n >();\n @Output() onPwdResetError = new EventEmitter<\n Parameters<Required<GuardEvents>['onPwdResetError']>\n >();\n @Output() onClose = new EventEmitter<\n Parameters<Required<GuardEvents>['onClose']>\n >();\n\n @Output() onLangChange = new EventEmitter<\n Parameters<Required<GuardEvents>['onLangChange']>\n >();\n ngAfterViewInit() {\n // @ts-ignore\n\n this.guard = new NativeGuard({\n appId: this.appId,\n config: this.config,\n tenantId: this.tenantId,\n authClient: this.authClient,\n });\n\n this.guard.on('load', (...rest) => this.onLoad.emit(rest));\n this.guard.on('load-error', (...rest) => this.onLoadError.emit(rest));\n this.guard.on('login', (...rest) => this.onLogin.emit(rest));\n this.guard.on('login-error', (...rest) => this.onLoginError.emit(rest));\n this.guard.on('register', (...rest) => this.onRegister.emit(rest));\n this.guard.on('register-error', (...rest) =>\n this.onRegisterError.emit(rest)\n );\n this.guard.on('close', (...rest) => this.onClose.emit(rest));\n this.guard.on('lang-change', (...rest) => this.onLangChange.emit(rest));\n\n if (this.visible === true) {\n this.guard.show();\n }\n }\n\n ngOnInit(): void {}\n\n ngOnChanges() {\n if (this.visible !== undefined && this.guard) {\n if (this.visible) {\n this.guard?.show();\n } else {\n this.guard?.hide();\n }\n }\n }\n}\n","import { NgModule } from '@angular/core';\nimport { GuardComponent } from './guard.component';\n\n@NgModule({\n declarations: [GuardComponent],\n imports: [],\n exports: [GuardComponent],\n})\nexport class GuardModule {\n constructor() {}\n}\n","/*\n * Public API Surface of authing-guard\n */\n\nimport {\n User,\n GuardMode,\n GuardModuleType,\n LoginMethods,\n CommonMessage,\n RegisterMethods,\n AuthenticationClient,\n} from '@authing/native-js-ui-components';\n\nexport * from './lib/Guard/guard.service';\nexport * from './lib/Guard/guard.component';\nexport * from './lib/Guard/guard.module';\n\nexport type { CommonMessage, AuthenticationClient, User };\n\nexport { GuardMode, GuardModuleType, LoginMethods, RegisterMethods };\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":["Injectable","EventEmitter","NativeGuard","Component","ViewEncapsulation","Input","Output","NgModule"],"mappings":"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"}