@aws-amplify/ui-angular 2.0.1-next.2 → 2.0.1-next.6
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/aws-amplify-ui-angular.d.ts +21 -15
- package/aws-amplify-ui-angular.metadata.json +1 -1
- package/bundles/aws-amplify-ui-angular.umd.js +1233 -932
- package/bundles/aws-amplify-ui-angular.umd.js.map +1 -1
- package/bundles/aws-amplify-ui-angular.umd.min.js +1 -1
- package/bundles/aws-amplify-ui-angular.umd.min.js.map +1 -1
- package/esm2015/aws-amplify-ui-angular.js +22 -16
- package/esm2015/index.js +3 -3
- package/esm2015/lib/components/amplify-authenticator/amplify-authenticator.component.js +33 -14
- package/esm2015/lib/components/amplify-confirm-sign-in/amplify-confirm-sign-in.component.js +8 -6
- package/esm2015/lib/components/amplify-confirm-sign-up/amplify-confirm-sign-up.component.js +11 -25
- package/esm2015/lib/components/amplify-federated-sign-in/amplify-federated-sign-in.component.js +9 -4
- package/esm2015/lib/components/amplify-federated-sign-in-button/amplify-federated-sign-in-button.component.js +2 -2
- package/esm2015/lib/components/amplify-force-new-password/amplify-force-new-password.component.js +12 -4
- package/esm2015/lib/components/amplify-reset-password/amplify-reset-password.component.js +7 -3
- package/esm2015/lib/components/amplify-setup-totp/amplify-setup-totp.component.js +14 -5
- package/esm2015/lib/components/amplify-sign-in/amplify-sign-in.component.js +8 -6
- package/esm2015/lib/components/amplify-sign-up/amplify-sign-up.component.js +16 -6
- package/esm2015/lib/components/amplify-verify-user/amplify-verify-user.component.js +16 -4
- package/esm2015/lib/components/confirm-reset-password/amplify-confirm-reset-password.component.js +9 -3
- package/esm2015/lib/components/confirm-verify-user/amplify-confirm-verify-user.component.js +7 -4
- package/esm2015/lib/components/index.js +14 -6
- package/esm2015/lib/directives/amplify-slot.directive.js +21 -0
- package/esm2015/lib/primitives/amplify-button/amplify-button.component.js +38 -0
- package/esm2015/lib/primitives/amplify-error/amplify-error.component.js +2 -2
- package/esm2015/lib/primitives/amplify-form-field/amplify-form-field.component.js +91 -0
- package/esm2015/lib/primitives/amplify-password-field/amplify-password-field.component.js +39 -0
- package/esm2015/lib/primitives/amplify-select/amplify-select.component.js +17 -0
- package/esm2015/lib/primitives/amplify-text-field/amplify-text-field.component.js +29 -0
- package/esm2015/lib/primitives/amplify-user-name-alias/amplify-user-name-alias.component.js +6 -4
- package/esm2015/lib/primitives/index.js +2 -2
- package/esm2015/lib/primitives/phone-number-field/phone-number-field.component.js +33 -0
- package/esm2015/lib/primitives/tab-item/tab-item.component.js +20 -0
- package/esm2015/lib/primitives/tabs/tabs.component.js +45 -0
- package/esm2015/lib/services/state-machine.service.js +12 -7
- package/esm2015/lib/ui-angular.module.js +30 -20
- package/fesm2015/aws-amplify-ui-angular.js +722 -441
- package/fesm2015/aws-amplify-ui-angular.js.map +1 -1
- package/index.d.ts +2 -2
- package/lib/components/amplify-authenticator/amplify-authenticator.component.d.ts +11 -7
- package/lib/components/amplify-confirm-sign-in/amplify-confirm-sign-in.component.d.ts +4 -2
- package/lib/components/amplify-confirm-sign-up/amplify-confirm-sign-up.component.d.ts +4 -2
- package/lib/components/amplify-federated-sign-in/amplify-federated-sign-in.component.d.ts +4 -1
- package/lib/components/amplify-force-new-password/amplify-force-new-password.component.d.ts +2 -0
- package/lib/components/amplify-reset-password/amplify-reset-password.component.d.ts +2 -0
- package/lib/components/amplify-setup-totp/amplify-setup-totp.component.d.ts +3 -0
- package/lib/components/amplify-sign-in/amplify-sign-in.component.d.ts +3 -1
- package/lib/components/amplify-sign-up/amplify-sign-up.component.d.ts +1 -1
- package/lib/components/amplify-verify-user/amplify-verify-user.component.d.ts +5 -1
- package/lib/components/confirm-reset-password/amplify-confirm-reset-password.component.d.ts +4 -0
- package/lib/components/confirm-verify-user/amplify-confirm-verify-user.component.d.ts +2 -0
- package/lib/components/index.d.ts +13 -5
- package/lib/directives/{amplify-override.directive.d.ts → amplify-slot.directive.d.ts} +2 -2
- package/lib/primitives/amplify-button/amplify-button.component.d.ts +15 -0
- package/lib/primitives/amplify-form-field/amplify-form-field.component.d.ts +34 -0
- package/lib/primitives/amplify-password-field/amplify-password-field.component.d.ts +14 -0
- package/lib/primitives/amplify-select/amplify-select.component.d.ts +7 -0
- package/lib/primitives/amplify-text-field/amplify-text-field.component.d.ts +11 -0
- package/lib/primitives/amplify-user-name-alias/amplify-user-name-alias.component.d.ts +1 -0
- package/lib/primitives/index.d.ts +1 -1
- package/lib/primitives/phone-number-field/phone-number-field.component.d.ts +14 -0
- package/lib/primitives/tab-item/tab-item.component.d.ts +7 -0
- package/lib/primitives/tabs/tabs.component.d.ts +9 -0
- package/lib/services/state-machine.service.d.ts +2 -2
- package/package.json +4 -3
- package/styles/component.css +169 -0
- package/theme.css +2 -99
- package/esm2015/lib/components/amplify-sign-out/amplify-sign-out.component.js +0 -28
- package/esm2015/lib/directives/amplify-override.directive.js +0 -21
- package/esm2015/lib/primitives/amplify-input/amplify-input.component.js +0 -61
- package/lib/components/amplify-sign-out/amplify-sign-out.component.d.ts +0 -6
- package/lib/primitives/amplify-input/amplify-input.component.d.ts +0 -23
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports,require("@angular/core"),require("@angular/common"),require("@angular/forms"),require("@aws-amplify/ui"),require("xstate"),require("aws-amplify"),require("qrcode"),require("rxjs"),require("@aws-amplify/ui-components/dist/components")):"function"==typeof define&&define.amd?define("@aws-amplify/ui-angular",["exports","@angular/core","@angular/common","@angular/forms","@aws-amplify/ui","xstate","aws-amplify","qrcode","rxjs","@aws-amplify/ui-components/dist/components"],e):e(((t="undefined"!=typeof globalThis?globalThis:t||self)["aws-amplify"]=t["aws-amplify"]||{},t["aws-amplify"]["ui-angular"]={}),t.ng.core,t.ng.common,t.ng.forms,t.ui,t.xstate,t["aws-amplify"],t.QRCode,t.rxjs,t.components)}(this,(function(t,e,n,o,a,r,i,s,c,p){"use strict";function u(t){return t&&"object"==typeof t&&"default"in t?t:{default:t}}function l(t){if(t&&t.__esModule)return t;var e=Object.create(null);return t&&Object.keys(t).forEach((function(n){if("default"!==n){var o=Object.getOwnPropertyDescriptor(t,n);Object.defineProperty(e,n,o.get?o:{enumerable:!0,get:function(){return t[n]}})}})),e.default=t,Object.freeze(e)}var m=l(e),f=u(s),h=function(){function t(t){this.template=t}return Object.defineProperty(t.prototype,"amplifyOverride",{set:function(t){this.name=t},enumerable:!1,configurable:!0}),t}();h.decorators=[{type:e.Directive,args:[{selector:"[amplifyOverride]"}]}],h.ctorParameters=function(){return[{type:e.TemplateRef}]},h.propDecorators={amplifyOverride:[{type:e.Input}]};var d=function(){function t(){var t=this,e=r.interpret(a.authMachine,{devTools:!0}).onTransition((function(e){t._user=e.context.user,t._authState=e})).start();this._services=a.getSendEventAliases(e.send),this._authService=e}return Object.defineProperty(t.prototype,"services",{get:function(){return this._services},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"authState",{get:function(){return this._authState},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"authService",{get:function(){return this._authService},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"user",{get:function(){return this._user},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"context",{get:function(){return this._authState.context},enumerable:!1,configurable:!0}),t.prototype.send=function(t){this.authService.send(t)},t}();d.ɵprov=m.ɵɵdefineInjectable({factory:function(){return new d},token:d,providedIn:"root"}),d.decorators=[{type:e.Injectable,args:[{providedIn:"root"}]}],d.ctorParameters=function(){return[]};var g=function(){function t(){this._customComponents={},this._props={}}return Object.defineProperty(t.prototype,"customComponents",{get:function(){return this._customComponents},set:function(t){this._customComponents=Object.assign(Object.assign({},this._customComponents),t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"props",{get:function(){return this._props},set:function(t){this._props=Object.assign(Object.assign({},this._props),t)},enumerable:!1,configurable:!0}),t}();g.ɵprov=m.ɵɵdefineInjectable({factory:function(){return new g},token:g,providedIn:"root"}),g.decorators=[{type:e.Injectable,args:[{providedIn:"root"}]}],g.ctorParameters=function(){return[]};var y=function(){function t(t,e){this.stateMachine=t,this.contextService=e,this.initialAuthState="signIn",this.dataAttr="",this.customComponentQuery=null,this.customComponents={}}return t.prototype.ngAfterContentInit=function(){this.contextService.customComponents=this.mapCustomComponents(this.customComponentQuery),this.customComponents=this.contextService.customComponents},Object.defineProperty(t.prototype,"context",{get:function(){return{signOut:this.stateMachine.services.signOut,user:this.stateMachine.user}},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actorState",{get:function(){return a.getActorState(this.stateMachine.authState)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"authenticatorState",{get:function(){return this.stateMachine.authState},enumerable:!1,configurable:!0}),t.prototype.mapCustomComponents=function(t){if(!t)return{};var e={};return t.forEach((function(t){e[t.name]=t.template})),e},t}();y.decorators=[{type:e.Component,args:[{selector:"amplify-authenticator",template:'\x3c!-- \n Define default contents here.\n--\x3e\n<ng-template #signIn>\n <amplify-sign-in></amplify-sign-in>\n</ng-template>\n<ng-template #signUp>\n <amplify-sign-up></amplify-sign-up>\n</ng-template>\n<ng-template #confirmSignUp>\n <amplify-confirm-sign-up></amplify-confirm-sign-up>\n</ng-template>\n<ng-template #confirmSignIn>\n <amplify-confirm-sign-in></amplify-confirm-sign-in>\n</ng-template>\n<ng-template #authenticated>\n <p>You\'ve signed In.</p>\n <amplify-sign-out></amplify-sign-out>\n</ng-template>\n<ng-template #setupTOTP>\n <amplify-setup-totp></amplify-setup-totp>\n</ng-template>\n<ng-template #forceNewPassword>\n <amplify-force-new-password></amplify-force-new-password>\n</ng-template>\n<ng-template #resetPassword>\n <amplify-reset-password></amplify-reset-password>\n</ng-template>\n<ng-template #confirmResetPassword>\n <amplify-confirm-reset-password></amplify-confirm-reset-password>\n</ng-template>\n<ng-template #verifyUser>\n <amplify-verify-user></amplify-verify-user>\n</ng-template>\n<ng-template #confirmVerifyUser>\n <amplify-confirm-verify-user></amplify-confirm-verify-user>\n</ng-template>\n\n\x3c!-- \n Next, we render respective auth subcomponent respective to the current authState.\n If customer is overriding that component, we render customer\'s template instead.\n--\x3e\n\n\x3c!-- signIn component --\x3e\n<ng-container\n [ngTemplateOutlet]="customComponents.signIn || signIn"\n [ngTemplateOutletContext]="context"\n *ngIf="actorState?.matches(\'signIn\')"\n>\n</ng-container>\n\n\x3c!-- signUp component --\x3e\n<ng-container\n [ngTemplateOutlet]="customComponents.signUp || signUp"\n [ngTemplateOutletContext]="context"\n *ngIf="actorState?.matches(\'signUp\')"\n>\n</ng-container>\n\n\x3c!-- confirmSignUp content --\x3e\n<ng-container\n [ngTemplateOutlet]="customComponents.confirmSignUp || confirmSignUp"\n [ngTemplateOutletContext]="context"\n *ngIf="actorState?.matches(\'confirmSignUp\')"\n>\n</ng-container>\n\n\x3c!-- confirmSignIn content --\x3e\n<ng-container\n [ngTemplateOutlet]="customComponents.confirmSignIn || confirmSignIn"\n [ngTemplateOutletContext]="context"\n *ngIf="actorState?.matches(\'confirmSignIn\')"\n>\n</ng-container>\n\n\x3c!-- setupTotp content --\x3e\n<ng-container\n [ngTemplateOutlet]="customComponents.setupTOTP || setupTOTP"\n [ngTemplateOutletContext]="context"\n *ngIf="actorState?.matches(\'setupTOTP\')"\n>\n</ng-container>\n\n\x3c!-- forceNewPassword content --\x3e\n<ng-container\n [ngTemplateOutlet]="customComponents.forceNewPassword || forceNewPassword"\n [ngTemplateOutletContext]="context"\n *ngIf="actorState?.matches(\'forceNewPassword\')"\n>\n</ng-container>\n\n\x3c!-- resetPassword content --\x3e\n<ng-container\n [ngTemplateOutlet]="customComponents.resetPassword || resetPassword"\n [ngTemplateOutletContext]="context"\n *ngIf="actorState?.matches(\'resetPassword\')"\n>\n</ng-container>\n\n\x3c!-- confirmResetPassword content --\x3e\n<ng-container\n [ngTemplateOutlet]="\n customComponents.confirmResetPassword || confirmResetPassword\n "\n [ngTemplateOutletContext]="context"\n *ngIf="actorState?.matches(\'confirmResetPassword\')"\n>\n</ng-container>\n\n\x3c!-- verifyUser content --\x3e\n<ng-container\n [ngTemplateOutlet]="customComponents.verifyUser || verifyUser"\n [ngTemplateOutletContext]="context"\n *ngIf="actorState?.matches(\'verifyUser\')"\n>\n</ng-container>\n\n\x3c!-- confirmVerifyUser content --\x3e\n<ng-container\n [ngTemplateOutlet]="customComponents.confirmVerifyUser || confirmVerifyUser"\n [ngTemplateOutletContext]="context"\n *ngIf="actorState?.matches(\'confirmVerifyUser\')"\n>\n</ng-container>\n\n\x3c!-- signedIn content --\x3e\n<ng-container\n [ngTemplateOutlet]="customComponents.authenticated || authenticated"\n [ngTemplateOutletContext]="context"\n *ngIf="authenticatorState.matches(\'authenticated\')"\n>\n</ng-container>\n',providers:[g],encapsulation:e.ViewEncapsulation.None}]}],y.ctorParameters=function(){return[{type:d},{type:g}]},y.propDecorators={initialAuthState:[{type:e.Input}],dataAttr:[{type:e.HostBinding,args:["attr.data-amplify-authenticator"]}],customComponentQuery:[{type:e.ContentChildren,args:[h]}]};function v(t,e,n,o){var a,r=arguments.length,i=r<3?e:null===o?o=Object.getOwnPropertyDescriptor(e,n):o;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)i=Reflect.decorate(t,e,n,o);else for(var s=t.length-1;s>=0;s--)(a=t[s])&&(i=(r<3?a(i):r>3?a(e,n,i):a(e,n))||i);return r>3&&i&&Object.defineProperty(e,n,i),i}function b(t,e,n,o){return new(n||(n=Promise))((function(a,r){function i(t){try{c(o.next(t))}catch(t){r(t)}}function s(t){try{c(o.throw(t))}catch(t){r(t)}}function c(t){var e;t.done?a(t.value):(e=t.value,e instanceof n?e:new n((function(t){t(e)}))).then(i,s)}c((o=o.apply(t,e||[])).next())}))}function C(t,e){var n,o,a,r,i={label:0,sent:function(){if(1&a[0])throw a[1];return a[1]},trys:[],ops:[]};return r={next:s(0),throw:s(1),return:s(2)},"function"==typeof Symbol&&(r[Symbol.iterator]=function(){return this}),r;function s(r){return function(s){return function(r){if(n)throw new TypeError("Generator is already executing.");for(;i;)try{if(n=1,o&&(a=2&r[0]?o.return:r[0]?o.throw||((a=o.return)&&a.call(o),0):o.next)&&!(a=a.call(o,r[1])).done)return a;switch(o=0,a&&(r=[2&r[0],a.value]),r[0]){case 0:case 1:a=r;break;case 4:return i.label++,{value:r[1],done:!1};case 5:i.label++,o=r[1],r=[0];continue;case 7:r=i.ops.pop(),i.trys.pop();continue;default:if(!(a=i.trys,(a=a.length>0&&a[a.length-1])||6!==r[0]&&2!==r[0])){i=0;continue}if(3===r[0]&&(!a||r[1]>a[0]&&r[1]<a[3])){i.label=r[1];break}if(6===r[0]&&i.label<a[1]){i.label=a[1],a=r;break}if(a&&i.label<a[2]){i.label=a[2],i.ops.push(r);break}a[2]&&i.ops.pop(),i.trys.pop();continue}r=e.call(t,i)}catch(t){r=[6,t],o=0}finally{n=a=0}if(5&r[0])throw r[1];return{value:r[0]?r[1]:void 0,done:!0}}([r,s])}}}Object.create;Object.create;var S=new i.Logger("SignIn"),x=function(){function t(t,e){this.stateMachine=t,this.contextService=e,this.dataAttr="",this.headerText="Sign in to your account",this.customComponents={},this.remoteError="",this.isPending=!1}return t.prototype.ngOnInit=function(){var t=this;this.authSubscription=this.stateMachine.authService.subscribe((function(e){return t.onStateUpdate(e)}))},t.prototype.ngAfterContentInit=function(){this.customComponents=this.contextService.customComponents},t.prototype.ngOnDestroy=function(){S.log("sign in destroyed, unsubscribing from state machine..."),this.authSubscription.unsubscribe()},t.prototype.onStateUpdate=function(t){var e=a.getActorState(t);this.remoteError=e.context.remoteError,this.isPending=!e.matches("signIn.edit")},Object.defineProperty(t.prototype,"context",{get:function(){var t=this.stateMachine.services,e=t.change,n=t.resetPassword,o=t.signUp,a=t.submit;return{change:e,remoteError:this.remoteError,resetPassword:n,signUp:o,submit:a}},enumerable:!1,configurable:!0}),t.prototype.toSignUp=function(){this.stateMachine.send("SIGN_UP")},t.prototype.toResetPassword=function(){this.stateMachine.send("RESET_PASSWORD")},t.prototype.onInput=function(t){t.preventDefault();var e=t.target,n=e.name,o=e.value;this.stateMachine.send({type:"CHANGE",data:{name:n,value:o}})},t.prototype.onSubmit=function(t){return b(this,void 0,void 0,(function(){return C(this,(function(e){return t.preventDefault(),this.stateMachine.send({type:"SUBMIT"}),[2]}))}))},t}();x.decorators=[{type:e.Component,args:[{selector:"amplify-sign-in",template:'\x3c!-- \n Define default contents here\n--\x3e\n<ng-template #signInButton>\n <button data-amplify-button type="submit">Sign In</button>\n</ng-template>\n\n<ng-template #signInForm>\n <amplify-federated-sign-in></amplify-federated-sign-in>\n <form data-amplify-form (submit)="onSubmit($event)" (input)="onInput($event)">\n <fieldset data-amplify-fieldset [disabled]="isPending">\n <amplify-user-name-alias></amplify-user-name-alias>\n <amplify-form-input\n data-amplify-password\n name="password"\n type="password"\n autocomplete="current-password"\n ></amplify-form-input>\n <button type="button" (click)="toResetPassword()">\n Forgot your password?\n </button>\n <div data-amplify-footer>\n <div>\n No account?{{ \' \' }}\n <a data-amplify-link (click)="toSignUp()">Create account</a>\n </div>\n <ng-container\n [ngTemplateOutlet]="customComponents.signInButton || signInButton"\n [ngTemplateOutletContext]="context"\n >\n </ng-container>\n </div>\n </fieldset>\n\n <amplify-error *ngIf="remoteError">\n {{ remoteError }}\n </amplify-error>\n </form>\n</ng-template>\n\n\x3c!-- \n Render sign in component\n--\x3e\n\n<div data-amplify-container>\n <h2 data-amplify-header>{{ this.headerText }}</h2>\n <ng-container\n [ngTemplateOutlet]="customComponents.signInForm || signInForm"\n [ngTemplateOutletContext]="context"\n >\n </ng-container>\n</div>\n',encapsulation:e.ViewEncapsulation.None}]}],x.ctorParameters=function(){return[{type:d},{type:g}]},x.propDecorators={dataAttr:[{type:e.HostBinding,args:["attr.data-amplify-authenticator-signin"]}],headerText:[{type:e.Input}]};var P=function(){function t(t){this.stateMachine=t}return t.prototype.signOut=function(){return b(this,void 0,void 0,(function(){return C(this,(function(t){try{this.stateMachine.authService.send("SIGN_OUT")}catch(t){console.error(t)}return[2]}))}))},t}();P.decorators=[{type:e.Component,args:[{selector:"amplify-sign-out",template:'<div [ngStyle]="{ height: \'24rem\' }">\n <button (click)="signOut()">Sign Out</button>\n</div>\n'}]}],P.ctorParameters=function(){return[{type:d}]};var I=function(){function t(t,e){this.stateMachine=t,this.contextService=e,this.dataAttr="",this.headerText="Create a new account",this.remoteError="",this.isPending=!1,this.primaryAlias="",this.secondaryAliases=[],this.validationError={}}return Object.defineProperty(t.prototype,"context",{get:function(){var t=this.stateMachine.services,e=t.change,n=t.signIn,o=t.submit;return{change:e,remoteError:this.remoteError,signIn:n,submit:o,validationError:this.validationError}},enumerable:!1,configurable:!0}),t.prototype.ngOnInit=function(){var t=this;this.authSubscription=this.stateMachine.authService.subscribe((function(e){return t.onStateUpdate(e)}));var e=this.stateMachine.context,n=a.getConfiguredAliases(e),o=n.primaryAlias,r=n.secondaryAliases;this.primaryAlias=o,this.secondaryAliases=r},t.prototype.ngAfterContentInit=function(){this.customComponents=this.contextService.customComponents},t.prototype.ngOnDestroy=function(){this.authSubscription.unsubscribe()},t.prototype.onStateUpdate=function(t){var e=a.getActorState(t),n=a.getActorContext(t);this.remoteError=n.remoteError,this.validationError=n.validationError,this.isPending=!e.matches({signUp:{submission:"idle"}})},t.prototype.onSubmit=function(t){return b(this,void 0,void 0,(function(){return C(this,(function(e){return t.preventDefault(),this.stateMachine.send("SUBMIT"),[2]}))}))},t.prototype.onInput=function(t){t.preventDefault();var e=t.target,n=e.name,o=e.value;this.stateMachine.send({type:"CHANGE",data:{name:n,value:o}})},t.prototype.toSignIn=function(){this.stateMachine.send("SIGN_IN")},t}();I.decorators=[{type:e.Component,args:[{selector:"amplify-sign-up",template:'<ng-template #signUpButton>\n <button data-amplify-button type="submit">Create Account</button>\n</ng-template>\n\n<ng-template #signUpUsername>\n <amplify-user-name-alias [name]="primaryAlias"></amplify-user-name-alias>\n</ng-template>\n\n<ng-template #signUpPassword>\n <amplify-form-input\n name="password"\n [required]="true"\n autocomplete="new-password"\n ></amplify-form-input>\n</ng-template>\n\n<ng-template #signUpConfirmPassword>\n <amplify-form-input\n name="confirm_password"\n label="Confirm Password"\n [required]="true"\n type="password"\n autocomplete="new-password"\n ></amplify-form-input>\n</ng-template>\n\n<ng-template #signUpFieldset>\n <fieldset data-amplify-fieldset [disabled]="isPending">\n <ng-container\n [ngTemplateOutlet]="customComponents.signUpUsername || signUpUsername"\n [ngTemplateOutletContext]="context"\n ></ng-container>\n\n <ng-container\n [ngTemplateOutlet]="customComponents.signUpPassword || signUpPassword"\n [ngTemplateOutletContext]="context"\n ></ng-container>\n\n <ng-container\n [ngTemplateOutlet]="\n customComponents.signUpConfirmPassword || signUpConfirmPassword\n "\n [ngTemplateOutletContext]="context"\n ></ng-container>\n\n <ng-container *ngFor="let secondaryAlias of secondaryAliases">\n <amplify-form-input [name]="secondaryAlias"></amplify-form-input>\n </ng-container>\n </fieldset>\n\n <amplify-error *ngIf="remoteError">\n {{ remoteError }}\n </amplify-error>\n</ng-template>\n\n<div data-amplify-container>\n <h2 data-amplify-header>{{ this.headerText }}</h2>\n <form\n data-amplify-form\n (submit)="onSubmit($event)"\n (input)="onInput($event)"\n ngNativeValidate\n >\n <ng-container\n [ngTemplateOutlet]="customComponents.signUpFieldset || signUpFieldset"\n [ngTemplateOutletContext]="context"\n ></ng-container>\n\n <div data-amplify-footer>\n <div>\n Have an account?{{ \' \' }}\n <span data-amplify-link (click)="toSignIn()">Sign In</span>\n </div>\n <ng-container\n [ngTemplateOutlet]="customComponents.signUpButton || signUpButton"\n [ngTemplateOutletContext]="context"\n >\n </ng-container>\n </div>\n </form>\n</div>\n'}]}],I.ctorParameters=function(){return[{type:d},{type:g}]},I.propDecorators={dataAttr:[{type:e.HostBinding,args:["attr.data-amplify-authenticator-signup"]}],headerText:[{type:e.Input}]};var A=function(){function t(t){this.stateMachine=t,this.required=!1,this.placeholder="",this.label="",this.initialValue="",this.disabled=!1,this.autocomplete=""}return Object.defineProperty(t.prototype,"attributeMap",{get:function(){return a.authInputAttributes},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"error",{get:function(){return a.getActorContext(this.stateMachine.authState).validationError[this.name]},enumerable:!1,configurable:!0}),t.prototype.inferLabel=function(){var t;return this.label||(null===(t=this.attributeMap[this.name])||void 0===t?void 0:t.label)},t.prototype.inferPlaceholder=function(){var t;return this.placeholder||(null===(t=this.attributeMap[this.name])||void 0===t?void 0:t.placeholder)||this.inferLabel()},t.prototype.inferType=function(){var t,e,n;return null!==(n=null!==(t=this.type)&&void 0!==t?t:null===(e=this.attributeMap[this.name])||void 0===e?void 0:e.type)&&void 0!==n?n:"text"},t}();A.decorators=[{type:e.Component,args:[{selector:"amplify-form-input",template:'<label>\n <div data-amplify-label>{{ inferLabel() }}</div>\n <input\n data-amplify-form-input\n [type]="inferType()"\n [name]="name"\n [placeholder]="inferPlaceholder()"\n [required]="required ? true : false"\n [value]="this.initialValue"\n [attr.disabled]="disabled ? \'\' : null"\n [autocomplete]="autocomplete"\n />\n <amplify-error *ngIf="error">\n {{ error }}\n </amplify-error>\n</label>\n'}]}],A.ctorParameters=function(){return[{type:d}]},A.propDecorators={name:[{type:e.Input}],type:[{type:e.Input}],required:[{type:e.Input}],placeholder:[{type:e.Input}],label:[{type:e.Input}],initialValue:[{type:e.Input}],disabled:[{type:e.Input}],autocomplete:[{type:e.Input}]};var T=function(){};T.decorators=[{type:e.Component,args:[{selector:"amplify-error",template:"<span data-amplify-error>\n <ng-content></ng-content>\n</span>\n"}]}];var E=new i.Logger("ConfirmSignUp"),D=function(){function t(t,e){this.stateMachine=t,this.contextService=e,this.dataAttr="",this.customComponents={},this.remoteError="",this.isPending=!1}return t.prototype.ngOnInit=function(){var t=this;this.authSubscription=this.stateMachine.authService.subscribe((function(e){return t.onStateUpdate(e)})),this.setUsername()},t.prototype.setUsername=function(){var t,e=this.stateMachine.authState,n=a.getActorContext(e),o=n.user,r=n.authAttributes,i=null!==(t=null==o?void 0:o.username)&&void 0!==t?t:null==r?void 0:r.username;i&&(this.username=i,this.stateMachine.send({type:"CHANGE",data:{name:"username",value:this.username}}))},t.prototype.ngAfterContentInit=function(){this.customComponents=this.contextService.customComponents},t.prototype.ngOnDestroy=function(){E.log("confirm sign up destroyed, unsubscribing from state machine..."),this.authSubscription.unsubscribe()},t.prototype.onStateUpdate=function(t){var e=a.getActorState(t);this.remoteError=e.context.remoteError,this.isPending=!e.matches("confirmSignUp.edit")},Object.defineProperty(t.prototype,"context",{get:function(){var t=this.stateMachine.services,e=t.change,n=t.resend,o=t.signIn,a=t.submit;return{change:e,remoteError:this.remoteError,resend:n,signIn:o,submit:a,username:this.username}},enumerable:!1,configurable:!0}),t.prototype.toSignIn=function(){this.stateMachine.send("SIGN_IN")},t.prototype.resend=function(){this.stateMachine.send({type:"RESEND",data:{username:this.username}})},t.prototype.onInput=function(t){t.preventDefault();var e=t.target,n=e.name,o=e.value;this.stateMachine.send({type:"CHANGE",data:{name:n,value:o}})},t.prototype.onSubmit=function(t){t.preventDefault();var e=this.stateMachine.authState,n=a.getActorContext(e).formValues,o=n.username,r=n.confirmation_code;this.stateMachine.send({type:"SUBMIT",data:{username:o,confirmation_code:r}})},t}();D.decorators=[{type:e.Component,args:[{selector:"amplify-confirm-sign-up",template:'\x3c!-- \n Define default contents here\n--\x3e\n<ng-template #confirmSignUpButton>\n <button data-amplify-button type="submit">Confirm</button>\n</ng-template>\n\n<ng-template #confirmSignUpForm>\n <form data-amplify-form (submit)="onSubmit($event)" (input)="onInput($event)">\n <fieldset data-amplify-fieldset [disabled]="isPending">\n <amplify-user-name-alias\n [initialValue]="username ? username : null"\n [disabled]="!!username"\n ></amplify-user-name-alias>\n <amplify-form-input\n name="confirmation_code"\n type="number"\n autocomplete="one-time-code"\n ></amplify-form-input>\n\n <div data-amplify-resend>\n Lost your code? {{ \' \' }}\n <a data-amplify-link (click)="resend()">Resend Code</a>\n </div>\n\n <div data-amplify-footer>\n <div>\n Back to{{ \' \' }}\n <a data-amplify-link (click)="toSignIn()">Sign In</a>\n </div>\n <ng-container\n [ngTemplateOutlet]="\n customComponents.confirmSignUpButton || confirmSignUpButton\n "\n [ngTemplateOutletContext]="context"\n >\n </ng-container>\n </div>\n </fieldset>\n\n <amplify-error *ngIf="remoteError">\n {{ remoteError }}\n </amplify-error>\n </form>\n</ng-template>\n\n\x3c!-- \n Render confirm sign up component\n--\x3e\n\n<div data-amplify-container>\n <h2 data-amplify-header>Confirm Your Account</h2>\n <ng-container\n [ngTemplateOutlet]="customComponents.confirmSignUpForm || confirmSignUpForm"\n [ngTemplateOutletContext]="context"\n >\n </ng-container>\n</div>\n'}]}],D.ctorParameters=function(){return[{type:d},{type:g}]},D.propDecorators={dataAttr:[{type:e.HostBinding,args:["attr.data-amplify-authenticator-confirmsignup"]}]};var O=function(){function t(t){this.stateMachine=t,this.name="username",this.disabled=!1,this.initialValue=""}return t.prototype.ngOnInit=function(){var t=this.stateMachine.context,e=a.getAliasInfoFromContext(t),n=e.label,o=e.type;this.label=n,this.type=o,this.placeholder="Enter your "+n.toLowerCase()},t}();O.decorators=[{type:e.Component,args:[{selector:"amplify-user-name-alias",template:'<amplify-form-input\n data-amplify-usernamealias\n [name]="name"\n [label]="label"\n [type]="type"\n [placeholder]="placeholder"\n [initialValue]="initialValue"\n [disabled]="disabled"\n autocomplete="username"\n>\n</amplify-form-input>\n'}]}],O.ctorParameters=function(){return[{type:d}]},O.propDecorators={name:[{type:e.Input}],disabled:[{type:e.Input}],initialValue:[{type:e.Input}]};var w=new i.Logger("ConfirmSignIn"),R=function(){function t(t,e){this.stateMachine=t,this.contextService=e,this.dataAttr="",this.customComponents={},this.remoteError="",this.isPending=!1,this.headerText=""}return t.prototype.ngOnInit=function(){var t=this;this.authSubscription=this.stateMachine.authService.subscribe((function(e){t.onStateUpdate(e)})),this.setHeaderText()},t.prototype.ngAfterContentInit=function(){this.customComponents=this.contextService.customComponents},t.prototype.ngOnDestroy=function(){this.authSubscription.unsubscribe()},Object.defineProperty(t.prototype,"context",{get:function(){var t=this.stateMachine.services,e=t.change,n=t.signIn,o=t.submit;return{change:e,remoteError:this.remoteError,signIn:n,submit:o}},enumerable:!1,configurable:!0}),t.prototype.setHeaderText=function(){var t=this.stateMachine.authState,e=a.getActorContext(t).challengeName;switch(e){case a.AuthChallengeNames.SOFTWARE_TOKEN_MFA:this.headerText="Confirm TOTP Code";break;case a.AuthChallengeNames.SMS_MFA:this.headerText="Confirm SMS Code";break;default:w.error("Unexpected challengeName",e)}},t.prototype.onStateUpdate=function(t){var e=a.getActorState(t);this.remoteError=e.context.remoteError,this.isPending=!e.matches("confirmSignIn.edit")},t.prototype.onInput=function(t){t.preventDefault();var e=t.target,n=e.name,o=e.value;this.stateMachine.send({type:"CHANGE",data:{name:n,value:o}})},t.prototype.onSubmit=function(t){t.preventDefault();var e=new FormData(t.target);this.stateMachine.send({type:"SUBMIT",data:Object.fromEntries(e)})},t.prototype.toSignIn=function(){this.stateMachine.send("SIGN_IN")},t}();R.decorators=[{type:e.Component,args:[{selector:"amplify-confirm-sign-in",template:'\x3c!-- \n Define default contents here\n--\x3e\n<ng-template #confirmSignInButton>\n <button data-amplify-button type="submit">Confirm</button>\n</ng-template>\n\n<ng-template #confirmSignInForm>\n <form data-amplify-form (submit)="onSubmit($event)" (input)="onInput($event)">\n <fieldset data-amplify-fieldset [disabled]="isPending">\n <amplify-form-input\n name="confirmation_code"\n type="number"\n autocomplete="one-time-code"\n ></amplify-form-input>\n\n <div data-amplify-footer>\n <a data-amplify-link (click)="toSignIn()">Back to Sign In</a>\n <ng-container\n [ngTemplateOutlet]="\n customComponents.confirmSignInButton || confirmSignInButton\n "\n [ngTemplateOutletContext]="context"\n >\n </ng-container>\n </div>\n </fieldset>\n\n <amplify-error *ngIf="remoteError">\n {{ remoteError }}\n </amplify-error>\n </form>\n</ng-template>\n\n\x3c!-- \n Render sign in component\n--\x3e\n\n<div data-amplify-container>\n <h2 data-amplify-header>{{ this.headerText }}</h2>\n <ng-container\n [ngTemplateOutlet]="customComponents.signInForm || confirmSignInForm"\n [ngTemplateOutletContext]="context"\n >\n </ng-container>\n</div>\n'}]}],R.ctorParameters=function(){return[{type:d},{type:g}]},R.propDecorators={dataAttr:[{type:e.HostBinding,args:["attr.data-amplify-authenticator-confirmsignin"]}]};var k=new i.Logger("SetupTotp"),M=function(){function t(t,e){this.stateMachine=t,this.contextService=e,this.customComponents={},this.remoteError="",this.isPending=!1,this.headerText="Setup TOTP",this.qrCodeSource=""}return t.prototype.ngOnInit=function(){var t=this;this.authSubscription=this.stateMachine.authService.subscribe((function(e){t.onStateUpdate(e)})),this.generateQRCode()},t.prototype.ngAfterContentInit=function(){this.customComponents=this.contextService.customComponents},t.prototype.ngOnDestroy=function(){this.authSubscription.unsubscribe()},t.prototype.onStateUpdate=function(t){var e=a.getActorState(t);this.remoteError=e.context.remoteError,this.isPending=!e.matches("setupTOTP.edit")},Object.defineProperty(t.prototype,"context",{get:function(){var t=this.stateMachine.services,e=t.change,n=t.submit;return{change:e,remoteError:this.remoteError,submit:n,user:this.stateMachine.user}},enumerable:!1,configurable:!0}),t.prototype.generateQRCode=function(){var t;return b(this,void 0,void 0,(function(){var e,n,o,a,r,s;return C(this,(function(c){switch(c.label){case 0:e=this.stateMachine.context.user,c.label=1;case 1:return c.trys.push([1,4,,5]),[4,i.Auth.setupTOTP(e)];case 2:return n=c.sent(),o="AWSCognito",a="otpauth://totp/AWSCognito:"+e.username+"?secret="+n+"&issuer="+o,k.info("totp code was generated:",a),r=this,[4,f.default.toDataURL(a)];case 3:return r.qrCodeSource=c.sent(),[3,5];case 4:return s=c.sent(),this.remoteError=null!==(t=s.message)&&void 0!==t?t:s,k.error(s),[3,5];case 5:return[2]}}))}))},t.prototype.onInput=function(t){t.preventDefault();var e=t.target,n=e.name,o=e.value;this.stateMachine.send({type:"CHANGE",data:{name:n,value:o}})},t.prototype.onSubmit=function(t){t.preventDefault();var e=new FormData(t.target);this.stateMachine.send({type:"SUBMIT",data:Object.fromEntries(e)})},t}();M.decorators=[{type:e.Component,args:[{selector:"amplify-setup-totp",template:'\x3c!-- \n Define default contents here\n--\x3e\n<ng-template #setupTotpButton>\n <button data-amplify-button type="submit">Confirm</button>\n</ng-template>\n\n<ng-template #setupTotpForm>\n <form data-amplify-form (submit)="onSubmit($event)" (input)="onInput($event)">\n <fieldset data-amplify-fieldset [disabled]="isPending">\n <p *ngIf="!qrCodeSource">Loading...</p>\n <img *ngIf="qrCodeSource" [src]="qrCodeSource" alt="qr code" />\n <amplify-form-input\n name="confirmation_code"\n type="number"\n autocomplete="one-time-code"\n ></amplify-form-input>\n\n <div data-amplify-footer>\n <a data-amplify-link (click)="toSignIn()">Back to Sign In</a>\n <ng-container\n [ngTemplateOutlet]="\n customComponents.setupTotpButton || setupTotpButton\n "\n [ngTemplateOutletContext]="context"\n >\n </ng-container>\n </div>\n </fieldset>\n\n <amplify-error *ngIf="remoteError">\n {{ remoteError }}\n </amplify-error>\n </form>\n</ng-template>\n\n\x3c!-- \n Render sign in component\n--\x3e\n<div data-amplify-container>\n <h2 data-amplify-header>{{ this.headerText }}</h2>\n <ng-container\n [ngTemplateOutlet]="customComponents.setupTotpForm || setupTotpForm"\n [ngTemplateOutletContext]="context"\n >\n </ng-container>\n</div>\n'}]}],M.ctorParameters=function(){return[{type:d},{type:g}]},M.propDecorators={customComponents:[{type:e.HostBinding,args:["attr.data-amplify-authenticator-setup-totp"]}]};var N=new i.Logger("ForceNewPassword"),U=function(){function t(t,e){this.stateMachine=t,this.contextService=e,this.dataAttr="",this.headerText="Change Password",this.customComponents={},this.remoteError="",this.isPending=!1}return t.prototype.ngOnInit=function(){var t=this;this.authSubscription=this.stateMachine.authService.subscribe((function(e){return t.onStateUpdate(e)}))},t.prototype.ngAfterContentInit=function(){this.customComponents=this.contextService.customComponents},t.prototype.ngOnDestroy=function(){N.log("sign in destroyed, unsubscribing from state machine..."),this.authSubscription.unsubscribe()},t.prototype.onStateUpdate=function(t){var e=a.getActorState(t);this.remoteError=e.context.remoteError,this.isPending=!e.matches("forceNewPassword.edit")},Object.defineProperty(t.prototype,"context",{get:function(){var t=this.stateMachine.services,e=t.change,n=t.signIn,o=t.submit,a=this.stateMachine.user;return{change:e,remoteError:this.remoteError,signIn:n,submit:o,user:a}},enumerable:!1,configurable:!0}),t.prototype.toSignIn=function(){this.stateMachine.send("SIGN_IN")},t.prototype.onInput=function(t){t.preventDefault();var e=t.target,n=e.name,o=e.value;this.stateMachine.send({type:"CHANGE",data:{name:n,value:o}})},t.prototype.onSubmit=function(t){t.preventDefault();var e=this.stateMachine.authState,n=a.getActorContext(e).formValues;this.stateMachine.send({type:"SUBMIT",data:n})},t}();U.decorators=[{type:e.Component,args:[{selector:"amplify-force-new-password",template:'\x3c!-- \n Define default contents here\n--\x3e\n<ng-template #forceNewPasswordSubmitButton>\n <button data-amplify-button type="submit">Change Password</button>\n</ng-template>\n\n<ng-template #signInForm>\n <form data-amplify-form (submit)="onSubmit($event)" (input)="onInput($event)">\n <fieldset data-amplify-fieldset [disabled]="isPending">\n <amplify-form-input\n name="password"\n type="password"\n label="Change password"\n autocomplete="password"\n [required]="true"\n ></amplify-form-input>\n\n <div data-amplify-footer>\n <div>\n Back to{{ \' \' }}\n <a data-amplify-link (click)="toSignIn()">Sign In</a>\n </div>\n <ng-container\n [ngTemplateOutlet]="\n customComponents.forceNewPasswordSubmitButton ||\n forceNewPasswordSubmitButton\n "\n [ngTemplateOutletContext]="context"\n >\n </ng-container>\n </div>\n </fieldset>\n\n <amplify-error *ngIf="remoteError">\n {{ remoteError }}\n </amplify-error>\n </form>\n</ng-template>\n\n\x3c!-- \n Render sign in component\n--\x3e\n<div data-amplify-container>\n <h2 data-amplify-header>{{ this.headerText }}</h2>\n <ng-container\n [ngTemplateOutlet]="customComponents.signInForm || signInForm"\n [ngTemplateOutletContext]="context"\n >\n </ng-container>\n</div>\n'}]}],U.ctorParameters=function(){return[{type:d},{type:g}]},U.propDecorators={dataAttr:[{type:e.HostBinding,args:["attr.data-amplify-authenticator-forcenewpassword"]}],headerText:[{type:e.Input}]};var F=function(){function t(t){this.stateMachine=t,this.FederatedProviders=a.FederatedIdentityProviders,this.includeFacebook=!1,this.includeGoogle=!1,this.includeAmazon=!1,this.shouldShowFederatedSignIn=!1}return t.prototype.ngOnInit=function(){var t,e,n=null===(e=null===(t=this.stateMachine.context)||void 0===t?void 0:t.config)||void 0===e?void 0:e.login_mechanisms;this.includeFacebook=null==n?void 0:n.includes("facebook"),this.includeGoogle=null==n?void 0:n.includes("google"),this.includeAmazon=null==n?void 0:n.includes("amazon"),this.shouldShowFederatedSignIn=this.includeFacebook||this.includeGoogle||this.includeAmazon},t}();F.decorators=[{type:e.Component,args:[{selector:"amplify-federated-sign-in",template:'<div data-amplify-federated>\n <amplify-federated-sign-in-button\n *ngIf="includeFacebook"\n text="Sign in with Facebook"\n [provider]="FederatedProviders.Facebook"\n ></amplify-federated-sign-in-button>\n\n <amplify-federated-sign-in-button\n *ngIf="includeGoogle"\n text="Sign in with Google"\n [provider]="FederatedProviders.Google"\n ></amplify-federated-sign-in-button>\n\n <amplify-federated-sign-in-button\n *ngIf="includeAmazon"\n text="Sign in with Amazon"\n [provider]="FederatedProviders.Amazon"\n ></amplify-federated-sign-in-button>\n</div>\n'}]}],F.ctorParameters=function(){return[{type:d}]};var B=function(t){var e=this;this.stateMachine=t,this.onClick=function(){e.stateMachine.send({type:"FEDERATED_SIGN_IN",data:{provider:e.provider}})}};B.decorators=[{type:e.Component,args:[{selector:"amplify-federated-sign-in-button",template:'<button data-amplify-button (click)="onClick()">{{ text }}</button>\n'}]}],B.ctorParameters=function(){return[{type:d}]},B.propDecorators={provider:[{type:e.Input}],text:[{type:e.Input}]};var z=function(){function t(t,e){this.stateMachine=t,this.contextService=e,this.dataAttr="",this.headerText="Reset your password",this.customComponents={},this.remoteError="",this.isPending=!1}return t.prototype.ngOnInit=function(){var t=this;this.authSubscription=this.stateMachine.authService.subscribe((function(e){return t.onStateUpdate(e)}))},t.prototype.ngAfterContentInit=function(){this.customComponents=this.contextService.customComponents},t.prototype.ngOnDestroy=function(){this.authSubscription.unsubscribe()},t.prototype.onStateUpdate=function(t){var e=a.getActorState(t);this.remoteError=e.context.remoteError,this.isPending=!e.matches("resetPassword.edit")},Object.defineProperty(t.prototype,"context",{get:function(){var t=this.stateMachine.services,e=t.change,n=t.signIn,o=t.submit;return{change:e,remoteError:this.remoteError,signIn:n,submit:o}},enumerable:!1,configurable:!0}),t.prototype.toSignIn=function(){this.stateMachine.send("SIGN_IN")},t.prototype.onInput=function(t){t.preventDefault();var e=t.target,n=e.name,o=e.value;this.stateMachine.send({type:"CHANGE",data:{name:n,value:o}})},t.prototype.onSubmit=function(t){t.preventDefault(),this.stateMachine.send("SUBMIT")},t}();z.decorators=[{type:e.Component,args:[{selector:"amplify-reset-password",template:'\x3c!-- \n Define default contents here\n--\x3e\n<ng-template #resetPasswordSubmitButton>\n <button data-amplify-button type="submit">Send Code</button>\n</ng-template>\n\n<ng-template #resetPasswordFooter>\n <div data-amplify-footer>\n <div>\n Back to{{ \' \' }}\n <a data-amplify-link (click)="toSignIn()">Sign In</a>\n </div>\n <ng-container\n [ngTemplateOutlet]="\n customComponents.resetPasswordSubmitButton || resetPasswordSubmitButton\n "\n [ngTemplateOutletContext]="context"\n >\n </ng-container>\n </div>\n</ng-template>\n\n<ng-template #resetPasswordForm>\n <form\n data-amplify-form\n ngNativeValidate\n (submit)="onSubmit($event)"\n (input)="onInput($event)"\n >\n <fieldset data-amplify-fieldset [disabled]="isPending">\n <amplify-form-input\n name="username"\n type="username"\n autocomplete="username"\n [required]="true"\n ></amplify-form-input>\n <ng-container\n [ngTemplateOutlet]="\n customComponents.resetPasswordFooter || resetPasswordFooter\n "\n [ngTemplateOutletContext]="context"\n ></ng-container>\n </fieldset>\n\n <amplify-error *ngIf="remoteError">\n {{ remoteError }}\n </amplify-error>\n </form>\n</ng-template>\n\n\x3c!-- \n Render reset passsword component\n--\x3e\n<div data-amplify-container>\n <h2 data-amplify-header>{{ this.headerText }}</h2>\n <ng-container\n [ngTemplateOutlet]="customComponents.resetPasswordForm || resetPasswordForm"\n [ngTemplateOutletContext]="context"\n >\n </ng-container>\n</div>\n'}]}],z.ctorParameters=function(){return[{type:d},{type:g}]},z.propDecorators={dataAttr:[{type:e.HostBinding,args:["attr.data-amplify-authenticator-resetPassword"]}],headerText:[{type:e.Input}]};var Z=function(){function t(t,e){this.stateMachine=t,this.contextService=e,this.dataAttr="",this.headerText="Account recovery requires verified contact information",this.customComponents={},this.unverifiedAttributes={},this.remoteError="",this.isPending=!1}return t.prototype.ngOnInit=function(){var t=this;this.authSubscription=this.stateMachine.authService.subscribe((function(e){return t.onStateUpdate(e)}))},t.prototype.ngAfterContentInit=function(){this.customComponents=this.contextService.customComponents},t.prototype.ngOnDestroy=function(){this.authSubscription.unsubscribe()},t.prototype.onStateUpdate=function(t){var e=a.getActorState(t);this.unverifiedAttributes=e.context.unverifiedAttributes,this.remoteError=e.context.remoteError,this.isPending=!e.matches("verifyUser.edit")},Object.defineProperty(t.prototype,"context",{get:function(){var t=this.stateMachine.services,e=t.change,n=t.skip,o=t.submit;return{change:e,remoteError:this.remoteError,skip:n,submit:o}},enumerable:!1,configurable:!0}),t.prototype.skipVerify=function(){this.stateMachine.send("SKIP")},t.prototype.onSubmit=function(t){return b(this,void 0,void 0,(function(){var e;return C(this,(function(n){return t.preventDefault(),e=new FormData(t.target),this.stateMachine.send({type:"SUBMIT",data:Object.fromEntries(e)}),[2]}))}))},t}();Z.decorators=[{type:e.Component,args:[{selector:"amplify-verify-user",template:'\x3c!-- \n Define default contents here\n--\x3e\n<ng-template #verifyUserFooter>\n <div data-amplify-footer>\n <button data-amplify-button (click)="skipVerify()">Skip</button>\n <button data-amplify-button type="submit">Verify</button>\n </div>\n</ng-template>\n\n<ng-template #verifyUserForm>\n <form data-amplify-form (submit)="onSubmit($event)">\n <fieldset data-amplify-fieldset [disabled]="isPending">\n <ng-container\n *ngFor="let unverifiedAttribute of unverifiedAttributes | keyvalue"\n >\n <input\n name="unverifiedAttr"\n type="radio"\n [value]="unverifiedAttribute.key"\n />\n <amplify-label>{{ unverifiedAttribute.key }}</amplify-label>\n </ng-container>\n <ng-container\n [ngTemplateOutlet]="\n customComponents.verifyUserFooter || verifyUserFooter\n "\n [ngTemplateOutletContext]="context"\n >\n </ng-container>\n </fieldset>\n\n <amplify-error *ngIf="remoteError">\n {{ remoteError }}\n </amplify-error>\n </form>\n</ng-template>\n\n\x3c!-- \n Render verify user component\n--\x3e\n<div data-amplify-container>\n <h2 data-amplify-header>{{ this.headerText }}</h2>\n <ng-container\n [ngTemplateOutlet]="customComponents.verifyUserForm || verifyUserForm"\n [ngTemplateOutletContext]="context"\n >\n </ng-container>\n</div>\n',encapsulation:e.ViewEncapsulation.None}]}],Z.ctorParameters=function(){return[{type:d},{type:g}]},Z.propDecorators={dataAttr:[{type:e.HostBinding,args:["attr.data-amplify-authenticator-verifyuser"]}],headerText:[{type:e.Input}]};var j=function(){function t(t,e){this.stateMachine=t,this.contextService=e,this.dataAttr="",this.headerText="Reset your password",this.customComponents={},this.remoteError="",this.isPending=!1}return t.prototype.ngOnInit=function(){var t=this;this.authSubscription=this.stateMachine.authService.subscribe((function(e){return t.onStateUpdate(e)}))},t.prototype.ngAfterContentInit=function(){this.customComponents=this.contextService.customComponents},t.prototype.ngOnDestroy=function(){this.authSubscription.unsubscribe()},t.prototype.onStateUpdate=function(t){var e=a.getActorState(t);this.remoteError=e.context.remoteError,this.isPending=!e.matches("confirmResetPassword.edit")},Object.defineProperty(t.prototype,"context",{get:function(){var t=this.stateMachine.services,e=t.change,n=t.resend,o=t.signIn,a=t.submit;return{change:e,resend:n,remoteError:this.remoteError,signIn:o,submit:a}},enumerable:!1,configurable:!0}),t.prototype.toSignIn=function(){this.stateMachine.send("SIGN_IN")},t.prototype.resend=function(){this.stateMachine.send("RESEND")},t.prototype.onInput=function(t){t.preventDefault();var e=t.target,n=e.name,o=e.value;this.stateMachine.send({type:"CHANGE",data:{name:n,value:o}})},t.prototype.onSubmit=function(t){return b(this,void 0,void 0,(function(){return C(this,(function(e){return t.preventDefault(),this.stateMachine.send("SUBMIT"),[2]}))}))},t}();j.decorators=[{type:e.Component,args:[{selector:"amplify-confirm-reset-password",template:'\x3c!-- \n Define default contents here\n--\x3e\n<ng-template #confirmResetPasswordSubmitButton>\n <button data-amplify-button type="submit">Send Code</button>\n</ng-template>\n\n<ng-template #confirmResetPasswordFooter>\n <div data-amplify-footer>\n <div>\n Back to{{ \' \' }}\n <a data-amplify-link (click)="toSignIn()">Sign In</a>\n </div>\n <ng-container\n [ngTemplateOutlet]="\n customComponents.confirmResetPasswordSubmitButton ||\n confirmResetPasswordSubmitButton\n "\n [ngTemplateOutletContext]="context"\n >\n </ng-container>\n </div>\n</ng-template>\n\n<ng-template #confirmResetPasswordForm>\n <form\n data-amplify-form\n ngNativeValidate\n (submit)="onSubmit($event)"\n (input)="onInput($event)"\n >\n <fieldset data-amplify-fieldset [disabled]="isPending">\n <amplify-form-input\n name="confirmation_code"\n type="number"\n autocomplete="one-time-code"\n [required]="true"\n ></amplify-form-input>\n <amplify-form-input\n name="password"\n label="New password"\n autocomplete="new-password"\n [required]="true"\n ></amplify-form-input>\n\n <div data-amplify-resend>\n Lost your code? {{ \' \' }}\n <a data-amplify-link (click)="resend()">Resend Code</a>\n </div>\n\n <ng-container\n [ngTemplateOutlet]="\n customComponents.confirmResetPasswordFooter ||\n confirmResetPasswordFooter\n "\n [ngTemplateOutletContext]="context"\n ></ng-container>\n </fieldset>\n\n <amplify-error *ngIf="remoteError">\n {{ remoteError }}\n </amplify-error>\n </form>\n</ng-template>\n\n\x3c!-- \n Render confirm reset password component\n--\x3e\n<div data-amplify-container>\n <h2 data-amplify-header>{{ this.headerText }}</h2>\n <ng-container\n [ngTemplateOutlet]="\n customComponents.confirmResetPasswordForm || confirmResetPasswordForm\n "\n [ngTemplateOutletContext]="context"\n >\n </ng-container>\n</div>\n'}]}],j.ctorParameters=function(){return[{type:d},{type:g}]},j.propDecorators={dataAttr:[{type:e.HostBinding,args:["attr.data-amplify-authenticator-confirmsignin"]}],headerText:[{type:e.Input}]};var q=function(){function t(t,e){this.stateMachine=t,this.contextService=e,this.dataAttr="",this.headerText="Account recovery requires verified contact information",this.customComponents={},this.remoteError="",this.isPending=!1}return t.prototype.ngOnInit=function(){var t=this;this.authSubscription=this.stateMachine.authService.subscribe((function(e){return t.onStateUpdate(e)}))},t.prototype.ngAfterContentInit=function(){this.customComponents=this.contextService.customComponents},t.prototype.ngOnDestroy=function(){this.authSubscription.unsubscribe()},t.prototype.onStateUpdate=function(t){var e=a.getActorState(t);this.remoteError=e.context.remoteError,this.isPending=!e.matches("confirmVerifyUser.edit")},Object.defineProperty(t.prototype,"context",{get:function(){var t=this.stateMachine.services,e=t.skip,n=t.submit;return{remoteError:this.remoteError,skip:e,submit:n}},enumerable:!1,configurable:!0}),t.prototype.skipVerify=function(){this.stateMachine.send("SKIP")},t.prototype.onSubmit=function(t){return b(this,void 0,void 0,(function(){var e;return C(this,(function(n){return t.preventDefault(),e=new FormData(t.target),this.stateMachine.send({type:"SUBMIT",data:Object.fromEntries(e)}),[2]}))}))},t}();q.decorators=[{type:e.Component,args:[{selector:"amplify-confirm-verify-user",template:'\x3c!-- \n Define default contents here\n--\x3e\n<ng-template #verifyUserFooter>\n <div data-amplify-footer>\n <button data-amplify-button (click)="skipVerify()">Skip</button>\n <button data-amplify-button type="submit">Submit</button>\n </div>\n</ng-template>\n\n<ng-template #confirmVerifyUserForm>\n <form data-amplify-form (submit)="onSubmit($event)">\n <fieldset data-amplify-fieldset [disabled]="isPending">\n <amplify-form-input\n name="confirmation_code"\n type="number"\n autocomplete="one-time-code"\n [required]="true"\n ></amplify-form-input>\n <ng-container\n [ngTemplateOutlet]="\n customComponents.verifyUserFooter || verifyUserFooter\n "\n [ngTemplateOutletContext]="context"\n >\n </ng-container>\n </fieldset>\n\n <amplify-error *ngIf="remoteError">\n {{ remoteError }}\n </amplify-error>\n </form>\n</ng-template>\n\n\x3c!-- \n Render confirm reset password component\n--\x3e\n<div data-amplify-container>\n <h2 data-amplify-header>{{ this.headerText }}</h2>\n <ng-container\n [ngTemplateOutlet]="\n customComponents.confirmVerifyUserForm || confirmVerifyUserForm\n "\n [ngTemplateOutletContext]="context"\n >\n </ng-container>\n</div>\n'}]}],q.ctorParameters=function(){return[{type:d},{type:g}]},q.propDecorators={dataAttr:[{type:e.HostBinding,args:["attr.data-amplify-authenticator-confirmverifyuser"]}],headerText:[{type:e.Input}]};function _(t){return function(e){var n,o,a;return t.inputs&&(n=e,o=t.inputs,a=n.prototype,o.forEach((function(t){Object.defineProperty(a,t,{get:function(){return this.el[t]},set:function(e){var n=this;this.z.runOutsideAngular((function(){return n.el[t]=e}))}})}))),t.methods&&function(t,e){var n=t.prototype;e.forEach((function(t){n[t]=function(){var e=this,n=arguments;return this.z.runOutsideAngular((function(){return e.el[t].apply(e.el,n)}))}}))}(e,t.methods),e}}var H=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};H.decorators=[{type:e.Component,args:[{selector:"amplify-amazon-button",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["clientId","handleAuthStateChange"]}]}],H.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},H=v([_({inputs:["clientId","handleAuthStateChange"]})],H);var V=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};V.decorators=[{type:e.Component,args:[{selector:"amplify-auth-container",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>"}]}],V.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]};var G=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};G.decorators=[{type:e.Component,args:[{selector:"amplify-auth-fields",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["formFields"]}]}],G.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},G=v([_({inputs:["formFields"]})],G);var L=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};L.decorators=[{type:e.Component,args:[{selector:"amplify-auth0-button",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["config","handleAuthStateChange"]}]}],L.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},L=v([_({inputs:["config","handleAuthStateChange"]})],L);var $=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};$.decorators=[{type:e.Component,args:[{selector:"amplify-authenticator",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["federated","handleAuthStateChange","hideToast","initialAuthState","usernameAlias"]}]}],$.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},$=v([_({inputs:["federated","handleAuthStateChange","hideToast","initialAuthState","usernameAlias"]})],$),t.AmplifyButton=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement},t.AmplifyButton.decorators=[{type:e.Component,args:[{selector:"amplify-button",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["disabled","handleButtonClick","icon","type","variant"]}]}],t.AmplifyButton.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},t.AmplifyButton=v([_({inputs:["disabled","handleButtonClick","icon","type","variant"]})],t.AmplifyButton),t.AmplifyChatbot=function(t,e,n){var o,a;this.z=n,t.detach(),this.el=e.nativeElement,o=this,a=this.el,["chatCompleted"].forEach((function(t){return o[t]=c.fromEvent(a,t)}))},t.AmplifyChatbot.decorators=[{type:e.Component,args:[{selector:"amplify-chatbot",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["botName","botTitle","clearOnComplete","conversationModeOn","silenceThreshold","silenceTime","textEnabled","voiceEnabled","welcomeMessage"]}]}],t.AmplifyChatbot.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},t.AmplifyChatbot=v([_({inputs:["botName","botTitle","clearOnComplete","conversationModeOn","silenceThreshold","silenceTime","textEnabled","voiceEnabled","welcomeMessage"]})],t.AmplifyChatbot);var K=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};K.decorators=[{type:e.Component,args:[{selector:"amplify-checkbox",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["checked","disabled","fieldId","label","name","value"]}]}],K.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},K=v([_({inputs:["checked","disabled","fieldId","label","name","value"]})],K);var Q=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};Q.decorators=[{type:e.Component,args:[{selector:"amplify-code-field",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["disabled","fieldId","handleInputChange","hint","inputProps","label","placeholder","required","value"]}]}],Q.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},Q=v([_({inputs:["disabled","fieldId","handleInputChange","hint","inputProps","label","placeholder","required","value"]})],Q);var W=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};W.decorators=[{type:e.Component,args:[{selector:"amplify-confirm-sign-in",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["formFields","handleAuthStateChange","handleSubmit","headerText","submitButtonText","user"]}]}],W.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},W=v([_({inputs:["formFields","handleAuthStateChange","handleSubmit","headerText","submitButtonText","user"]})],W);var Y=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};Y.decorators=[{type:e.Component,args:[{selector:"amplify-confirm-sign-up",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["formFields","handleAuthStateChange","handleSubmit","headerText","submitButtonText","user","usernameAlias"]}]}],Y.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},Y=v([_({inputs:["formFields","handleAuthStateChange","handleSubmit","headerText","submitButtonText","user","usernameAlias"]})],Y);var J=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};J.decorators=[{type:e.Component,args:[{selector:"amplify-container",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>"}]}],J.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]};var X=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};X.decorators=[{type:e.Component,args:[{selector:"amplify-country-dial-code",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["dialCode","fieldId","handleInputChange","options"]}]}],X.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},X=v([_({inputs:["dialCode","fieldId","handleInputChange","options"]})],X);var tt=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};tt.decorators=[{type:e.Component,args:[{selector:"amplify-email-field",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["disabled","fieldId","handleInputChange","hint","inputProps","label","placeholder","required","value"]}]}],tt.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},tt=v([_({inputs:["disabled","fieldId","handleInputChange","hint","inputProps","label","placeholder","required","value"]})],tt);var et=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};et.decorators=[{type:e.Component,args:[{selector:"amplify-facebook-button",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["appId","handleAuthStateChange"]}]}],et.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},et=v([_({inputs:["appId","handleAuthStateChange"]})],et);var nt=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};nt.decorators=[{type:e.Component,args:[{selector:"amplify-federated-buttons",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["authState","federated","handleAuthStateChange"]}]}],nt.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},nt=v([_({inputs:["authState","federated","handleAuthStateChange"]})],nt);var ot=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};ot.decorators=[{type:e.Component,args:[{selector:"amplify-federated-sign-in",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["authState","federated"]}]}],ot.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},ot=v([_({inputs:["authState","federated"]})],ot);var at=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};at.decorators=[{type:e.Component,args:[{selector:"amplify-forgot-password",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["formFields","handleAuthStateChange","handleSend","handleSubmit","headerText","sendButtonText","submitButtonText","usernameAlias"]}]}],at.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},at=v([_({inputs:["formFields","handleAuthStateChange","handleSend","handleSubmit","headerText","sendButtonText","submitButtonText","usernameAlias"]})],at);var rt=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};rt.decorators=[{type:e.Component,args:[{selector:"amplify-form-field",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["description","disabled","fieldId","handleInputChange","hint","inputProps","label","name","placeholder","required","type","value"]}]}],rt.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},rt=v([_({inputs:["description","disabled","fieldId","handleInputChange","hint","inputProps","label","name","placeholder","required","type","value"]})],rt);var it=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};it.decorators=[{type:e.Component,args:[{selector:"amplify-form-section",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["handleSubmit","headerText","loading","secondaryFooterContent","submitButtonText","testDataPrefix"]}]}],it.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},it=v([_({inputs:["handleSubmit","headerText","loading","secondaryFooterContent","submitButtonText","testDataPrefix"]})],it);var st=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};st.decorators=[{type:e.Component,args:[{selector:"amplify-google-button",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["clientId","handleAuthStateChange"]}]}],st.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},st=v([_({inputs:["clientId","handleAuthStateChange"]})],st);var ct=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};ct.decorators=[{type:e.Component,args:[{selector:"amplify-greetings",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["handleAuthStateChange","logo","username"]}]}],ct.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},ct=v([_({inputs:["handleAuthStateChange","logo","username"]})],ct);var pt=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};pt.decorators=[{type:e.Component,args:[{selector:"amplify-hint",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>"}]}],pt.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]};var ut=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};ut.decorators=[{type:e.Component,args:[{selector:"amplify-icon",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["name"]}]}],ut.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},ut=v([_({inputs:["name"]})],ut);var lt=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};lt.decorators=[{type:e.Component,args:[{selector:"amplify-icon-button",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["autoShowTooltip","name","tooltip"]}]}],lt.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},lt=v([_({inputs:["autoShowTooltip","name","tooltip"]})],lt),t.AmplifyInput=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement},t.AmplifyInput.decorators=[{type:e.Component,args:[{selector:"amplify-input",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["description","disabled","fieldId","handleInputChange","inputProps","name","placeholder","required","type","value"]}]}],t.AmplifyInput.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},t.AmplifyInput=v([_({inputs:["description","disabled","fieldId","handleInputChange","inputProps","name","placeholder","required","type","value"]})],t.AmplifyInput);var mt=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};mt.decorators=[{type:e.Component,args:[{selector:"amplify-label",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["htmlFor"]}]}],mt.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},mt=v([_({inputs:["htmlFor"]})],mt);var ft=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};ft.decorators=[{type:e.Component,args:[{selector:"amplify-link",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["role"]}]}],ft.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},ft=v([_({inputs:["role"]})],ft);var ht=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};ht.decorators=[{type:e.Component,args:[{selector:"amplify-loading-spinner",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>"}]}],ht.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]};var dt=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};dt.decorators=[{type:e.Component,args:[{selector:"amplify-nav",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>"}]}],dt.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]};var gt=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};gt.decorators=[{type:e.Component,args:[{selector:"amplify-oauth-button",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["config"]}]}],gt.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},gt=v([_({inputs:["config"]})],gt);var yt=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};yt.decorators=[{type:e.Component,args:[{selector:"amplify-password-field",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["disabled","fieldId","handleInputChange","hint","inputProps","label","placeholder","required","value"]}]}],yt.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},yt=v([_({inputs:["disabled","fieldId","handleInputChange","hint","inputProps","label","placeholder","required","value"]})],yt);var vt=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};vt.decorators=[{type:e.Component,args:[{selector:"amplify-phone-field",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["dialCode","disabled","fieldId","handleInputChange","hint","inputProps","label","placeholder","required","value"]}]}],vt.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},vt=v([_({inputs:["dialCode","disabled","fieldId","handleInputChange","hint","inputProps","label","placeholder","required","value"]})],vt),t.AmplifyPhotoPicker=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement},t.AmplifyPhotoPicker.decorators=[{type:e.Component,args:[{selector:"amplify-photo-picker",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["buttonText","handleClick","headerHint","headerTitle","placeholderHint","previewSrc"]}]}],t.AmplifyPhotoPicker.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},t.AmplifyPhotoPicker=v([_({inputs:["buttonText","handleClick","headerHint","headerTitle","placeholderHint","previewSrc"]})],t.AmplifyPhotoPicker),t.AmplifyPicker=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement},t.AmplifyPicker.decorators=[{type:e.Component,args:[{selector:"amplify-picker",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["acceptValue","inputHandler","pickerText"]}]}],t.AmplifyPicker.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},t.AmplifyPicker=v([_({inputs:["acceptValue","inputHandler","pickerText"]})],t.AmplifyPicker);var bt=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};bt.decorators=[{type:e.Component,args:[{selector:"amplify-radio-button",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["checked","disabled","fieldId","handleInputChange","inputProps","label","name","placeholder","value"]}]}],bt.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},bt=v([_({inputs:["checked","disabled","fieldId","handleInputChange","inputProps","label","name","placeholder","value"]})],bt);var Ct=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};Ct.decorators=[{type:e.Component,args:[{selector:"amplify-require-new-password",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["formFields","handleAuthStateChange","handleSubmit","headerText","submitButtonText","user"]}]}],Ct.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},Ct=v([_({inputs:["formFields","handleAuthStateChange","handleSubmit","headerText","submitButtonText","user"]})],Ct),t.AmplifyS3Album=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement},t.AmplifyS3Album.decorators=[{type:e.Component,args:[{selector:"amplify-s3-album",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["contentType","fileToKey","filter","handleOnError","handleOnLoad","identityId","level","path","picker","pickerText","sort","track"]}]}],t.AmplifyS3Album.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},t.AmplifyS3Album=v([_({inputs:["contentType","fileToKey","filter","handleOnError","handleOnLoad","identityId","level","path","picker","pickerText","sort","track"]})],t.AmplifyS3Album),t.AmplifyS3Image=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement},t.AmplifyS3Image.decorators=[{type:e.Component,args:[{selector:"amplify-s3-image",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["alt","body","contentType","handleOnError","handleOnLoad","identityId","imgKey","imgProps","level","path","track"]}]}],t.AmplifyS3Image.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},t.AmplifyS3Image=v([_({inputs:["alt","body","contentType","handleOnError","handleOnLoad","identityId","imgKey","imgProps","level","path","track"]})],t.AmplifyS3Image),t.AmplifyS3ImagePicker=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement},t.AmplifyS3ImagePicker.decorators=[{type:e.Component,args:[{selector:"amplify-s3-image-picker",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["buttonText","contentType","fileToKey","headerHint","headerTitle","identityId","level","path","placeholderHint","track"]}]}],t.AmplifyS3ImagePicker.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},t.AmplifyS3ImagePicker=v([_({inputs:["buttonText","contentType","fileToKey","headerHint","headerTitle","identityId","level","path","placeholderHint","track"]})],t.AmplifyS3ImagePicker),t.AmplifyS3Text=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement},t.AmplifyS3Text.decorators=[{type:e.Component,args:[{selector:"amplify-s3-text",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["body","contentType","fallbackText","identityId","level","path","textKey","track"]}]}],t.AmplifyS3Text.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},t.AmplifyS3Text=v([_({inputs:["body","contentType","fallbackText","identityId","level","path","textKey","track"]})],t.AmplifyS3Text),t.AmplifyS3TextPicker=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement},t.AmplifyS3TextPicker.decorators=[{type:e.Component,args:[{selector:"amplify-s3-text-picker",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["contentType","fallbackText","fileToKey","identityId","level","path","track"]}]}],t.AmplifyS3TextPicker.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},t.AmplifyS3TextPicker=v([_({inputs:["contentType","fallbackText","fileToKey","identityId","level","path","track"]})],t.AmplifyS3TextPicker);var St=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};St.decorators=[{type:e.Component,args:[{selector:"amplify-section",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["role"]}]}],St.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},St=v([_({inputs:["role"]})],St);var xt=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};xt.decorators=[{type:e.Component,args:[{selector:"amplify-select",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["fieldId","handleInputChange","options","selected"]}]}],xt.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},xt=v([_({inputs:["fieldId","handleInputChange","options","selected"]})],xt);var Pt=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};Pt.decorators=[{type:e.Component,args:[{selector:"amplify-select-mfa-type",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["MFATypes","authData","handleSubmit"]}]}],Pt.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},Pt=v([_({inputs:["MFATypes","authData","handleSubmit"]})],Pt);var It=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};It.decorators=[{type:e.Component,args:[{selector:"amplify-sign-in",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["federated","formFields","handleAuthStateChange","handleSubmit","headerText","hideSignUp","submitButtonText","usernameAlias"]}]}],It.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},It=v([_({inputs:["federated","formFields","handleAuthStateChange","handleSubmit","headerText","hideSignUp","submitButtonText","usernameAlias"]})],It);var At=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};At.decorators=[{type:e.Component,args:[{selector:"amplify-sign-in-button",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["provider"]}]}],At.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},At=v([_({inputs:["provider"]})],At);var Tt=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};Tt.decorators=[{type:e.Component,args:[{selector:"amplify-sign-out",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["buttonText","handleAuthStateChange"]}]}],Tt.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},Tt=v([_({inputs:["buttonText","handleAuthStateChange"]})],Tt);var Et=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};Et.decorators=[{type:e.Component,args:[{selector:"amplify-sign-up",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["formFields","handleAuthStateChange","handleSignUp","handleSubmit","haveAccountText","headerText","signInText","submitButtonText","usernameAlias","validationErrors"]}]}],Et.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},Et=v([_({inputs:["formFields","handleAuthStateChange","handleSignUp","handleSubmit","haveAccountText","headerText","signInText","submitButtonText","usernameAlias","validationErrors"]})],Et);var Dt=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};Dt.decorators=[{type:e.Component,args:[{selector:"amplify-strike",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>"}]}],Dt.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},t.AmplifyToast=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement},t.AmplifyToast.decorators=[{type:e.Component,args:[{selector:"amplify-toast",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["handleClose","message"]}]}],t.AmplifyToast.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},t.AmplifyToast=v([_({inputs:["handleClose","message"]})],t.AmplifyToast);var Ot=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};Ot.decorators=[{type:e.Component,args:[{selector:"amplify-tooltip",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["shouldAutoShow","text"]}]}],Ot.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},Ot=v([_({inputs:["shouldAutoShow","text"]})],Ot);var wt=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};wt.decorators=[{type:e.Component,args:[{selector:"amplify-totp-setup",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["handleAuthStateChange","handleComplete","headerText","issuer","standalone","user"]}]}],wt.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},wt=v([_({inputs:["handleAuthStateChange","handleComplete","headerText","issuer","standalone","user"]})],wt);var Rt=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};Rt.decorators=[{type:e.Component,args:[{selector:"amplify-username-field",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["disabled","fieldId","handleInputChange","hint","inputProps","label","placeholder","required","value"]}]}],Rt.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},Rt=v([_({inputs:["disabled","fieldId","handleInputChange","hint","inputProps","label","placeholder","required","value"]})],Rt);var kt=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};kt.decorators=[{type:e.Component,args:[{selector:"amplify-verify-contact",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["handleAuthStateChange","user"]}]}],kt.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},kt=v([_({inputs:["handleAuthStateChange","user"]})],kt),customElements.define("amplify-button",p.AmplifyButton),customElements.define("amplify-input",p.AmplifyInput),customElements.define("amplify-toast",p.AmplifyToast),customElements.define("amplify-chatbot",p.AmplifyChatbot),customElements.define("amplify-s3-album",p.AmplifyS3Album),customElements.define("amplify-s3-image-picker",p.AmplifyS3ImagePicker),customElements.define("amplify-s3-text",p.AmplifyS3Text),customElements.define("amplify-s3-text-picker",p.AmplifyS3TextPicker),customElements.define("amplify-s3-image",p.AmplifyS3Image),customElements.define("amplify-picker",p.AmplifyPicker),customElements.define("amplify-photo-picker",p.AmplifyPhotoPicker);var Mt=function(){};Mt.decorators=[{type:e.NgModule,args:[{declarations:[t.AmplifyChatbot,t.AmplifyToast,t.AmplifyInput,t.AmplifyButton,t.AmplifyS3Album,t.AmplifyS3ImagePicker,t.AmplifyS3Text,t.AmplifyS3TextPicker,t.AmplifyS3Image,t.AmplifyPicker,t.AmplifyPhotoPicker,y,x,P,I,A,T,h,D,O,R,M,U,F,B,z,Z,j,q],imports:[n.CommonModule,o.ReactiveFormsModule],exports:[t.AmplifyChatbot,t.AmplifyToast,t.AmplifyInput,t.AmplifyButton,t.AmplifyS3Album,t.AmplifyS3ImagePicker,t.AmplifyS3Text,t.AmplifyS3TextPicker,t.AmplifyS3Image,t.AmplifyPicker,t.AmplifyPhotoPicker,y,x,P,A,T,h],schemas:[e.CUSTOM_ELEMENTS_SCHEMA]}]}],t.AmplifyAuthenticatorComponent=y,t.AmplifyConfirmSignUpComponent=D,t.AmplifyErrorComponent=T,t.AmplifyInputComponent=A,t.AmplifyOverrideDirective=h,t.AmplifySignInComponent=x,t.AmplifySignOutComponent=P,t.AmplifySignUpComponent=I,t.AuthPropService=g,t.StateMachineService=d,t.UiAngularModule=Mt,t.ɵa=_,t.ɵb=y,t.ɵc=x,t.ɵd=P,t.ɵe=I,t.ɵf=A,t.ɵg=T,t.ɵh=D,t.ɵi=O,t.ɵj=R,t.ɵk=M,t.ɵl=U,t.ɵm=F,t.ɵn=B,t.ɵo=z,t.ɵp=Z,t.ɵq=j,t.ɵr=q,Object.defineProperty(t,"__esModule",{value:!0})}));
|
|
1
|
+
!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports,require("@angular/core"),require("@angular/common"),require("@aws-amplify/ui"),require("aws-amplify"),require("xstate"),require("qrcode"),require("lodash"),require("nanoid"),require("rxjs"),require("@aws-amplify/ui-components/dist/components")):"function"==typeof define&&define.amd?define("@aws-amplify/ui-angular",["exports","@angular/core","@angular/common","@aws-amplify/ui","aws-amplify","xstate","qrcode","lodash","nanoid","rxjs","@aws-amplify/ui-components/dist/components"],e):e(((t="undefined"!=typeof globalThis?globalThis:t||self)["aws-amplify"]=t["aws-amplify"]||{},t["aws-amplify"]["ui-angular"]={}),t.ng.core,t.ng.common,t.ui,t["aws-amplify"],t.xstate,t.QRCode,t.lodash,t.nanoid,t.rxjs,t.components)}(this,(function(t,e,n,o,i,a,r,s,l,c,p){"use strict";function u(t){return t&&"object"==typeof t&&"default"in t?t:{default:t}}function m(t){if(t&&t.__esModule)return t;var e=Object.create(null);return t&&Object.keys(t).forEach((function(n){if("default"!==n){var o=Object.getOwnPropertyDescriptor(t,n);Object.defineProperty(e,n,o.get?o:{enumerable:!0,get:function(){return t[n]}})}})),e.default=t,Object.freeze(e)}var f=m(e),d=u(r),h=function(){function t(t){this.template=t}return Object.defineProperty(t.prototype,"amplifySlot",{set:function(t){this.name=t},enumerable:!1,configurable:!0}),t}();h.decorators=[{type:e.Directive,args:[{selector:"[amplifySlot]"}]}],h.ctorParameters=function(){return[{type:e.TemplateRef}]},h.propDecorators={amplifySlot:[{type:e.Input}]};var g=function(){function t(){this._customComponents={},this._props={}}return Object.defineProperty(t.prototype,"customComponents",{get:function(){return this._customComponents},set:function(t){this._customComponents=Object.assign(Object.assign({},this._customComponents),t)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"props",{get:function(){return this._props},set:function(t){this._props=Object.assign(Object.assign({},this._props),t)},enumerable:!1,configurable:!0}),t}();g.ɵprov=f.ɵɵdefineInjectable({factory:function(){return new g},token:g,providedIn:"root"}),g.decorators=[{type:e.Injectable,args:[{providedIn:"root"}]}],g.ctorParameters=function(){return[]};var y=function(){function t(){}return t.prototype.startMachine=function(t){var e=this,n=t.initialState,i=t.loginMechanisms,r=o.createAuthenticatorMachine({initialState:n,loginMechanisms:i}),s=a.interpret(r,{devTools:"development"===process.env.NODE_ENV}).onTransition((function(t){e._user=t.context.user,e._authState=t})).start();this._services=o.getSendEventAliases(s.send),this._authService=s},Object.defineProperty(t.prototype,"services",{get:function(){return this._services},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"authState",{get:function(){return this._authState},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"authService",{get:function(){return this._authService},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"user",{get:function(){return this._user},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"context",{get:function(){return this._authState.context},enumerable:!1,configurable:!0}),t.prototype.send=function(t){this.authService.send(t)},t}();y.ɵprov=f.ɵɵdefineInjectable({factory:function(){return new y},token:y,providedIn:"root"}),y.decorators=[{type:e.Injectable,args:[{providedIn:"root"}]}];var b=function(){function t(t,e){this.stateMachine=t,this.contextService=e,this.customComponentQuery=null,this.customComponents={},this.signInTitle=o.translate("Sign In"),this.signUpTitle=o.translate("Create Account")}return t.prototype.ngOnInit=function(){i.I18n.putVocabularies(o.translations);var t=this.initialState,e=this.loginMechanisms;this.stateMachine.startMachine({initialState:t,loginMechanisms:e}),this.signInTitle=o.translate("Sign In"),this.signUpTitle=o.translate("Create Account")},t.prototype.ngAfterContentInit=function(){this.contextService.customComponents=this.mapCustomComponents(this.customComponentQuery),this.customComponents=this.contextService.customComponents},Object.defineProperty(t.prototype,"context",{get:function(){return{signOut:this.stateMachine.services.signOut,user:this.stateMachine.user}},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"actorState",{get:function(){return o.getActorState(this.stateMachine.authState)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"authenticatorState",{get:function(){return this.stateMachine.authState},enumerable:!1,configurable:!0}),t.prototype.onTabChange=function(){"signIn"===this.stateMachine.authState.value?this.stateMachine.send("SIGN_UP"):this.stateMachine.send("SIGN_IN")},t.prototype.mapCustomComponents=function(t){if(!t)return{};var e={};return t.forEach((function(t){e[t.name]=t.template})),e},t}();b.decorators=[{type:e.Component,args:[{selector:"amplify-authenticator",template:'\x3c!-- \n Define default contents here.\n--\x3e\n<ng-template #signIn>\n <amplify-sign-in></amplify-sign-in>\n</ng-template>\n<ng-template #signUp>\n <amplify-sign-up></amplify-sign-up>\n</ng-template>\n<ng-template #confirmSignUp>\n <amplify-confirm-sign-up></amplify-confirm-sign-up>\n</ng-template>\n<ng-template #confirmSignIn>\n <amplify-confirm-sign-in></amplify-confirm-sign-in>\n</ng-template>\n<ng-template #authenticated> <ng-content></ng-content> </ng-template>\n<ng-template #setupTOTP>\n <amplify-setup-totp></amplify-setup-totp>\n</ng-template>\n<ng-template #forceNewPassword>\n <amplify-force-new-password></amplify-force-new-password>\n</ng-template>\n<ng-template #resetPassword>\n <amplify-reset-password></amplify-reset-password>\n</ng-template>\n<ng-template #confirmResetPassword>\n <amplify-confirm-reset-password></amplify-confirm-reset-password>\n</ng-template>\n<ng-template #verifyUser>\n <amplify-verify-user></amplify-verify-user>\n</ng-template>\n<ng-template #confirmVerifyUser>\n <amplify-confirm-verify-user></amplify-confirm-verify-user>\n</ng-template>\n\n\x3c!-- \n Next, we render respective auth subcomponent respective to the current authState.\n If customer is overriding that component, we render customer\'s template instead.\n--\x3e\n\n<div data-amplify-authenticator>\n <div data-amplify-modal></div>\n\n <div data-amplify-container>\n <amplify-tabs\n (tabChange)="onTabChange()"\n *ngIf="actorState?.matches(\'signIn\') || actorState?.matches(\'signUp\')"\n >\n <amplify-tab-item\n [title]="signInTitle"\n [active]="actorState?.matches(\'signIn\')"\n >\n \x3c!-- signIn component --\x3e\n <ng-container\n [ngTemplateOutlet]="customComponents.signIn || signIn"\n [ngTemplateOutletContext]="context"\n *ngIf="actorState?.matches(\'signIn\')"\n ></ng-container>\n </amplify-tab-item>\n <amplify-tab-item\n [title]="signUpTitle"\n [active]="actorState?.matches(\'signUp\')"\n >\n \x3c!-- signUp component --\x3e\n <ng-container\n [ngTemplateOutlet]="customComponents.signUp || signUp"\n [ngTemplateOutletContext]="context"\n *ngIf="actorState?.matches(\'signUp\')"\n ></ng-container>\n </amplify-tab-item>\n </amplify-tabs>\n\n \x3c!-- confirmSignUp content --\x3e\n <ng-container\n [ngTemplateOutlet]="customComponents.confirmSignUp || confirmSignUp"\n [ngTemplateOutletContext]="context"\n *ngIf="actorState?.matches(\'confirmSignUp\')"\n >\n </ng-container>\n\n \x3c!-- confirmSignIn content --\x3e\n <ng-container\n [ngTemplateOutlet]="customComponents.confirmSignIn || confirmSignIn"\n [ngTemplateOutletContext]="context"\n *ngIf="actorState?.matches(\'confirmSignIn\')"\n >\n </ng-container>\n\n \x3c!-- setupTotp content --\x3e\n <ng-container\n [ngTemplateOutlet]="customComponents.setupTOTP || setupTOTP"\n [ngTemplateOutletContext]="context"\n *ngIf="actorState?.matches(\'setupTOTP\')"\n >\n </ng-container>\n\n \x3c!-- forceNewPassword content --\x3e\n <ng-container\n [ngTemplateOutlet]="customComponents.forceNewPassword || forceNewPassword"\n [ngTemplateOutletContext]="context"\n *ngIf="actorState?.matches(\'forceNewPassword\')"\n >\n </ng-container>\n\n \x3c!-- resetPassword content --\x3e\n <ng-container\n [ngTemplateOutlet]="customComponents.resetPassword || resetPassword"\n [ngTemplateOutletContext]="context"\n *ngIf="actorState?.matches(\'resetPassword\')"\n >\n </ng-container>\n\n \x3c!-- confirmResetPassword content --\x3e\n <ng-container\n [ngTemplateOutlet]="\n customComponents.confirmResetPassword || confirmResetPassword\n "\n [ngTemplateOutletContext]="context"\n *ngIf="actorState?.matches(\'confirmResetPassword\')"\n >\n </ng-container>\n\n \x3c!-- verifyUser content --\x3e\n <ng-container\n [ngTemplateOutlet]="customComponents.verifyUser || verifyUser"\n [ngTemplateOutletContext]="context"\n *ngIf="actorState?.matches(\'verifyUser\')"\n >\n </ng-container>\n\n \x3c!-- confirmVerifyUser content --\x3e\n <ng-container\n [ngTemplateOutlet]="\n customComponents.confirmVerifyUser || confirmVerifyUser\n "\n [ngTemplateOutletContext]="context"\n *ngIf="actorState?.matches(\'confirmVerifyUser\')"\n >\n </ng-container>\n </div>\n</div>\n\n\x3c!-- signedIn content is rendered outside authenticator so it\'s not styled by authenticator --\x3e\n<ng-container\n [ngTemplateOutlet]="customComponents.authenticated || authenticated"\n [ngTemplateOutletContext]="context"\n *ngIf="authenticatorState.matches(\'authenticated\')"\n>\n</ng-container>\n',providers:[g],encapsulation:e.ViewEncapsulation.None}]}],b.ctorParameters=function(){return[{type:y},{type:g}]},b.propDecorators={initialState:[{type:e.Input}],loginMechanisms:[{type:e.Input}],customComponentQuery:[{type:e.ContentChildren,args:[h]}]};var v=new i.Logger("ConfirmSignIn"),C=function(){function t(t,e){this.stateMachine=t,this.contextService=e,this.dataAttr="",this.customComponents={},this.remoteError="",this.isPending=!1,this.confirmText=o.translate("Confirm"),this.backToSignInText=o.translate("Back to Sign In")}return t.prototype.ngOnInit=function(){var t=this;this.authSubscription=this.stateMachine.authService.subscribe((function(e){t.onStateUpdate(e)})),this.setHeaderText()},t.prototype.ngAfterContentInit=function(){this.customComponents=this.contextService.customComponents},t.prototype.ngOnDestroy=function(){this.authSubscription.unsubscribe()},Object.defineProperty(t.prototype,"context",{get:function(){var t=this.stateMachine.services,e=t.change,n=t.signIn,o=t.submit;return{change:e,remoteError:this.remoteError,signIn:n,submit:o}},enumerable:!1,configurable:!0}),t.prototype.setHeaderText=function(){var t=this.stateMachine.authState,e=o.getActorContext(t).challengeName;switch(e){case o.AuthChallengeNames.SOFTWARE_TOKEN_MFA:this.headerText=o.translate("Confirm TOTP Code");break;case o.AuthChallengeNames.SMS_MFA:this.headerText=o.translate("Confirm SMS Code");break;default:v.error("Unexpected challengeName",e)}},t.prototype.onStateUpdate=function(t){var e=o.getActorState(t);this.remoteError=e.context.remoteError,this.isPending=!e.matches("confirmSignIn.edit")},t.prototype.onInput=function(t){t.preventDefault();var e=t.target,n=e.name,o=e.value;this.stateMachine.send({type:"CHANGE",data:{name:n,value:o}})},t.prototype.onSubmit=function(t){t.preventDefault();var e=new FormData(t.target);this.stateMachine.send({type:"SUBMIT",data:Object.fromEntries(e)})},t.prototype.toSignIn=function(){this.stateMachine.send("SIGN_IN")},t}();C.decorators=[{type:e.Component,args:[{selector:"amplify-confirm-sign-in",template:'\x3c!-- \n Define default contents here\n--\x3e\n<ng-template #confirmSignInButton>\n <button amplify-button variation="primary" fullWidth="true" type="submit">\n {{ confirmText }}\n </button>\n</ng-template>\n\n<ng-template #confirmSignInForm>\n <form data-amplify-form (submit)="onSubmit($event)" (input)="onInput($event)">\n <fieldset\n class="amplify-flex"\n style="flex-direction: column"\n data-amplify-fieldset\n [disabled]="isPending"\n >\n <h3 class="amplify-heading">{{ headerText }}</h3>\n <amplify-form-field\n name="confirmation_code"\n label="Code *"\n type="text"\n autocomplete="one-time-code"\n ></amplify-form-field>\n\n <ng-container\n [ngTemplateOutlet]="\n customComponents.confirmSignInButton || confirmSignInButton\n "\n [ngTemplateOutletContext]="context"\n >\n </ng-container>\n <button\n amplify-button\n size="small"\n variation="link"\n fontWeight="normal"\n fullWidth="true"\n (click)="toSignIn()"\n >\n {{ backToSignInText }}\n </button>\n <amplify-error *ngIf="remoteError">\n {{ remoteError }}\n </amplify-error>\n </fieldset>\n </form>\n</ng-template>\n\n\x3c!-- \n Render sign in component\n--\x3e\n\n<div data-amplify-container>\n <ng-container\n [ngTemplateOutlet]="customComponents.signInForm || confirmSignInForm"\n [ngTemplateOutletContext]="context"\n >\n </ng-container>\n</div>\n'}]}],C.ctorParameters=function(){return[{type:y},{type:g}]},C.propDecorators={dataAttr:[{type:e.HostBinding,args:["attr.data-amplify-authenticator-confirmsignin"]}]};var x=function(){function t(t,e){this.stateMachine=t,this.contextService=e,this.dataAttr="",this.headerText=o.translate("Confirm Sign Up"),this.customComponents={},this.remoteError="",this.isPending=!1,this.resendCodeText=o.translate("Resend Code"),this.lostCodeText=o.translate("Lost your code? "),this.confirmText=o.translate("Confirm")}return t.prototype.ngOnInit=function(){var t=this;this.authSubscription=this.stateMachine.authService.subscribe((function(e){return t.onStateUpdate(e)}))},t.prototype.ngAfterContentInit=function(){this.customComponents=this.contextService.customComponents},t.prototype.ngOnDestroy=function(){this.authSubscription.unsubscribe()},t.prototype.onStateUpdate=function(t){var e=o.getActorState(t);this.remoteError=e.context.remoteError,this.isPending=!e.matches("confirmSignUp.edit")},Object.defineProperty(t.prototype,"context",{get:function(){var t=this.stateMachine.services,e=t.change,n=t.resend,o=t.signIn,i=t.submit;return{change:e,remoteError:this.remoteError,resend:n,signIn:o,submit:i,username:this.username}},enumerable:!1,configurable:!0}),t.prototype.resend=function(){this.stateMachine.send({type:"RESEND",data:{username:this.username}})},t.prototype.onInput=function(t){t.preventDefault();var e=t.target,n=e.name,o=e.value;this.stateMachine.send({type:"CHANGE",data:{name:n,value:o}})},t.prototype.onSubmit=function(t){t.preventDefault();var e=this.stateMachine.authState,n=o.getActorContext(e).formValues,i=n.username,a=n.confirmation_code;this.stateMachine.send({type:"SUBMIT",data:{username:i,confirmation_code:a}})},t}();x.decorators=[{type:e.Component,args:[{selector:"amplify-confirm-sign-up",template:'\x3c!-- \n Define default contents here\n--\x3e\n<ng-template #confirmSignUpButton>\n <button amplify-button variation="primary" fullWidth="true" type="submit">\n {{ confirmText }}\n </button>\n</ng-template>\n\n<ng-template #confirmSignUpForm>\n <form data-amplify-form (submit)="onSubmit($event)" (input)="onInput($event)">\n <fieldset\n class="amplify-flex"\n style="flex-direction: column"\n data-amplify-fieldset\n [disabled]="isPending"\n >\n <h3 class="amplify-heading">{{ this.headerText }}</h3>\n <amplify-form-field\n name="confirmation_code"\n type="number"\n autocomplete="one-time-code"\n ></amplify-form-field>\n\n <ng-container\n [ngTemplateOutlet]="\n customComponents.confirmSignUpButton || confirmSignUpButton\n "\n [ngTemplateOutletContext]="context"\n >\n </ng-container>\n <button amplify-button fontWeight="normal" (click)="resend()">\n {{ resendCodeText }}\n </button>\n </fieldset>\n\n <amplify-error *ngIf="remoteError">\n {{ remoteError }}\n </amplify-error>\n </form>\n</ng-template>\n\n\x3c!-- \n Render confirm sign up component\n--\x3e\n\n<div data-amplify-container>\n <ng-container\n [ngTemplateOutlet]="customComponents.confirmSignUpForm || confirmSignUpForm"\n [ngTemplateOutletContext]="context"\n >\n </ng-container>\n</div>\n'}]}],x.ctorParameters=function(){return[{type:y},{type:g}]},x.propDecorators={dataAttr:[{type:e.HostBinding,args:["attr.data-amplify-authenticator-confirmsignup"]}],headerText:[{type:e.Input}]};var S=function(t){var e=this;this.stateMachine=t,this.onClick=function(){e.stateMachine.send({type:"FEDERATED_SIGN_IN",data:{provider:e.provider}})}};S.decorators=[{type:e.Component,args:[{selector:"amplify-federated-sign-in-button",template:'<button\n amplify-button\n class="amplify-field-group__control federated-sign-in-button"\n fullWidth="true"\n fontWeight="normal"\n style="display: block"\n (click)="onClick()"\n>\n <div\n class="amplify-flex federated-sign-in-button-row"\n style="flex-direction: row; justify-content: center"\n >\n <ng-content></ng-content>\n </div>\n</button>\n'}]}],S.ctorParameters=function(){return[{type:y}]},S.propDecorators={provider:[{type:e.Input}],text:[{type:e.Input}]};var I=function(){function t(t){this.stateMachine=t,this.FederatedProviders=o.FederatedIdentityProviders,this.includeFacebook=!1,this.includeGoogle=!1,this.includeAmazon=!1,this.shouldShowFederatedSignIn=!1,this.signInFacebookText=o.translate("Sign In with Facebook"),this.signInGoogleText=o.translate("Sign In with Google"),this.signInAmazonText=o.translate("Sign In with Amazon")}return t.prototype.ngOnInit=function(){var t,e,n=null===(e=null===(t=this.stateMachine.context)||void 0===t?void 0:t.config)||void 0===e?void 0:e.login_mechanisms;this.includeFacebook=null==n?void 0:n.includes("facebook"),this.includeGoogle=null==n?void 0:n.includes("google"),this.includeAmazon=null==n?void 0:n.includes("amazon"),this.shouldShowFederatedSignIn=this.includeFacebook||this.includeGoogle||this.includeAmazon},t}();I.decorators=[{type:e.Component,args:[{selector:"amplify-federated-sign-in",template:'<div\n class="amplify-flex federated-sign-in-container"\n style="flex-direction: column"\n *ngIf="shouldShowFederatedSignIn"\n data-orientation="horizontal"\n data-size="small"\n>\n <hr\n class="amplify-divider"\n aria-orientation="horizontal"\n data-size="small"\n style="margin: \'1rem 0\'"\n />\n <amplify-federated-sign-in-button\n *ngIf="includeGoogle"\n [provider]="FederatedProviders.Google"\n >\n <svg\n aria-label="Google icon"\n class="amplify-icon federated-sign-in-icon"\n viewBox="0 0 256 262"\n xmlns="http://www.w3.org/2000/svg"\n preserveAspectRatio="xMidYMid"\n >\n <path\n d="M255.878 133.451c0-10.734-.871-18.567-2.756-26.69H130.55v48.448h71.947c-1.45 12.04-9.283 30.172-26.69 42.356l-.244 1.622 38.755 30.023 2.685.268c24.659-22.774 38.875-56.282 38.875-96.027"\n fill="#4285F4"\n ></path>\n <path\n d="M130.55 261.1c35.248 0 64.839-11.605 86.453-31.622l-41.196-31.913c-11.024 7.688-25.82 13.055-45.257 13.055-34.523 0-63.824-22.773-74.269-54.25l-1.531.13-40.298 31.187-.527 1.465C35.393 231.798 79.49 261.1 130.55 261.1"\n fill="#34A853"\n ></path>\n <path\n d="M56.281 156.37c-2.756-8.123-4.351-16.827-4.351-25.82 0-8.994 1.595-17.697 4.206-25.82l-.073-1.73L15.26 71.312l-1.335.635C5.077 89.644 0 109.517 0 130.55s5.077 40.905 13.925 58.602l42.356-32.782"\n fill="#FBBC05"\n ></path>\n <path\n d="M130.55 50.479c24.514 0 41.05 10.589 50.479 19.438l36.844-35.974C195.245 12.91 165.798 0 130.55 0 79.49 0 35.393 29.301 13.925 71.947l42.211 32.783c10.59-31.477 39.891-54.251 74.414-54.251"\n fill="#EB4335"\n ></path>\n </svg>\n <p class="amplify-text" style="align-self: center">\n {{ signInGoogleText }}\n </p>\n </amplify-federated-sign-in-button>\n\n <amplify-federated-sign-in-button\n *ngIf="includeFacebook"\n [text]="signInFacebookText"\n [provider]="FederatedProviders.Facebook"\n >\n <svg\n aria-label="Facebook icon"\n class="amplify-icon federated-sign-in-icon"\n viewBox="0 0 279 538"\n >\n <path\n d="M82.3409742,538 L82.3409742,292.936652 L0,292.936652 L0,196.990154 L82.2410458,196.990154 L82.2410458,126.4295 C82.2410458,44.575144 132.205229,0 205.252865,0 C240.227794,0 270.306232,2.59855099 279,3.79788222 L279,89.2502322 L228.536175,89.2502322 C188.964542,89.2502322 181.270057,108.139699 181.270057,135.824262 L181.270057,196.89021 L276.202006,196.89021 L263.810888,292.836708 L181.16913,292.836708 L181.16913,538 L82.3409742,538 Z"\n fill="#1877F2"\n ></path>\n </svg>\n <p class="amplify-text" style="align-self: center">\n {{ signInFacebookText }}\n </p>\n </amplify-federated-sign-in-button>\n\n <amplify-federated-sign-in-button\n *ngIf="includeAmazon"\n [text]="signInAmazonText"\n [provider]="FederatedProviders.Amazon"\n >\n <svg\n aria-label="Amazon icon"\n class="amplify-icon federated-sign-in-icon"\n viewBox="0 0 248 268"\n >\n <path\n d="M139.056521,147.024612 C133.548808,156.744524 124.782731,162.726926 115.087401,162.726926 C101.790721,162.726926 93.9937779,152.612964 93.9937779,137.68681 C93.9937779,108.224571 120.447551,102.879017 145.533369,102.879017 L145.533369,110.365976 C145.533369,123.831358 145.876354,135.063787 139.056521,147.024612 M207.206992,162.579655 C209.400505,165.692256 209.887066,169.437725 207.063416,171.770186 C199.996315,177.653081 187.429476,188.590967 180.513926,194.716661 L180.46208,194.621133 C178.176838,196.663031 174.862638,196.810303 172.27828,195.445057 C160.780281,185.9162 158.686473,181.494078 152.405048,172.403055 C133.405233,191.751331 119.909143,197.534719 95.309886,197.534719 C66.1281801,197.534719 43.4791563,179.599451 43.4791563,143.669212 C43.4791563,115.616003 58.6782107,96.5105248 80.4019706,87.1727225 C99.2063636,78.9096034 125.464714,77.4528107 145.533369,75.1641337 L145.533369,70.694248 C145.533369,62.4749122 146.167493,52.7510201 141.297893,45.6541312 C137.110277,39.2856386 129.018206,36.6586354 121.859376,36.6586354 C108.658413,36.6586354 96.9171331,43.4171982 94.0416364,57.4199213 C93.4593582,60.532522 91.1701278,63.5933787 88.003492,63.7406501 L54.4387473,60.1424518 C51.6150972,59.5095829 48.4484614,57.2248862 49.2740201,52.8982915 C56.9712583,12.2553679 93.7983558,0 126.732964,0 C143.587124,0 165.606011,4.47386604 178.902691,17.2148315 C195.760839,32.917146 194.149604,53.8694866 194.149604,76.6726704 L194.149604,130.542157 C194.149604,146.734049 200.87372,153.830938 207.206992,162.579655 Z M233.826346,208.038962 C230.467669,203.683255 211.550709,205.9821 203.056405,206.998432 C200.470662,207.321077 200.076227,205.042397 202.406981,203.404973 C217.475208,192.664928 242.201125,195.766353 245.081698,199.363845 C247.966255,202.981502 244.336653,228.071183 230.172839,240.049379 C228.001452,241.888455 225.929671,240.904388 226.89783,238.468418 C230.077218,230.430525 237.204944,212.418868 233.826346,208.038962 Z M126.768855,264 C74.0234043,264 42.0764048,241.955028 17.7852554,217.541992 C12.9733903,212.705982 6.71799208,206.295994 3.31151296,200.690918 C1.90227474,198.372135 5.59096074,195.021875 8.0442063,196.84375 C38.2390146,219.267578 82.1011654,239.538304 125.529506,239.538304 C154.819967,239.538304 191.046475,227.469543 220.66851,214.867659 C225.146771,212.966167 225.146771,219.180222 224.511585,221.060516 C224.183264,222.03242 209.514625,236.221149 189.247207,247.047411 C170.304273,257.166172 146.397132,264 126.768855,264 Z"\n fill="#FF9900"\n ></path>\n </svg>\n\n <p class="amplify-text" style="align-self: center">\n {{ signInAmazonText }}\n </p>\n </amplify-federated-sign-in-button>\n</div>\n'}]}],I.ctorParameters=function(){return[{type:y}]};var P=new i.Logger("ForceNewPassword"),T=function(){function t(t,e){this.stateMachine=t,this.contextService=e,this.dataAttr="",this.headerText=o.translate("Change Password"),this.customComponents={},this.remoteError="",this.isPending=!1,this.changePasswordText=o.translate("Change Password"),this.backToSignInText=o.translate("Back to Sign In")}return t.prototype.ngOnInit=function(){var t=this;this.authSubscription=this.stateMachine.authService.subscribe((function(e){return t.onStateUpdate(e)}))},t.prototype.ngAfterContentInit=function(){this.customComponents=this.contextService.customComponents},t.prototype.ngOnDestroy=function(){P.log("sign in destroyed, unsubscribing from state machine..."),this.authSubscription.unsubscribe()},t.prototype.onStateUpdate=function(t){var e=o.getActorState(t);this.remoteError=e.context.remoteError,this.isPending=e.matches({signUp:{submission:"idle"}})},Object.defineProperty(t.prototype,"context",{get:function(){var t=this.stateMachine.services,e=t.change,n=t.signIn,o=t.submit,i=this.stateMachine.user;return{change:e,remoteError:this.remoteError,signIn:n,submit:o,user:i}},enumerable:!1,configurable:!0}),t.prototype.toSignIn=function(){this.stateMachine.send("SIGN_IN")},t.prototype.onInput=function(t){t.preventDefault();var e=t.target,n=e.name,o=e.value;this.stateMachine.send({type:"CHANGE",data:{name:n,value:o}})},t.prototype.onSubmit=function(t){t.preventDefault();var e=this.stateMachine.authState,n=o.getActorContext(e).formValues;this.stateMachine.send({type:"SUBMIT",data:n})},t}();T.decorators=[{type:e.Component,args:[{selector:"amplify-force-new-password",template:'\x3c!-- \n Define default contents here\n--\x3e\n<ng-template #forceNewPasswordSubmitButton>\n <button amplify-button variation="primary" fullWidth="true" type="submit">\n {{ changePasswordText }}\n </button>\n</ng-template>\n\n<ng-template #signInForm>\n <form data-amplify-form (submit)="onSubmit($event)" (input)="onInput($event)">\n <fieldset\n class="amplify-flex"\n style="flex-direction: column"\n data-amplify-fieldset\n [disabled]="isPending"\n >\n <h3 class="amplify-heading">{{ this.headerText }}</h3>\n <amplify-form-field\n name="password"\n type="password"\n autocomplete="new-password"\n ></amplify-form-field>\n\n <amplify-form-field\n name="confirm_password"\n label="Confirm Password"\n type="password"\n autocomplete="new-password"\n ></amplify-form-field>\n\n <ng-container\n [ngTemplateOutlet]="\n customComponents.forceNewPasswordSubmitButton ||\n forceNewPasswordSubmitButton\n "\n [ngTemplateOutletContext]="context"\n ></ng-container>\n <button\n amplify-button\n size="small"\n variation="link"\n fontWeight="normal"\n fullWidth="true"\n (click)="toSignIn()"\n >\n {{ backToSignInText }}\n </button>\n <amplify-error *ngIf="remoteError">\n {{ remoteError }}\n </amplify-error>\n </fieldset>\n </form>\n</ng-template>\n\n\x3c!-- \n Render force new password component\n--\x3e\n<div data-amplify-container>\n <ng-container\n [ngTemplateOutlet]="customComponents.signInForm || signInForm"\n [ngTemplateOutletContext]="context"\n >\n </ng-container>\n</div>\n'}]}],T.ctorParameters=function(){return[{type:y},{type:g}]},T.propDecorators={dataAttr:[{type:e.HostBinding,args:["attr.data-amplify-authenticator-forcenewpassword"]}],headerText:[{type:e.Input}]};var A=function(){function t(t,e){this.stateMachine=t,this.contextService=e,this.dataAttr="",this.headerText=o.translate("Reset your password"),this.customComponents={},this.remoteError="",this.isPending=!1,this.sendCodeText=o.translate("Send Code"),this.backToSignInText=o.translate("Back to Sign In")}return t.prototype.ngOnInit=function(){var t=this;this.authSubscription=this.stateMachine.authService.subscribe((function(e){return t.onStateUpdate(e)}))},t.prototype.ngAfterContentInit=function(){this.customComponents=this.contextService.customComponents},t.prototype.ngOnDestroy=function(){this.authSubscription.unsubscribe()},t.prototype.onStateUpdate=function(t){var e=o.getActorState(t);this.remoteError=e.context.remoteError,this.isPending=!e.matches("resetPassword.edit")},Object.defineProperty(t.prototype,"context",{get:function(){var t=this.stateMachine.services,e=t.change,n=t.signIn,o=t.submit;return{change:e,remoteError:this.remoteError,signIn:n,submit:o}},enumerable:!1,configurable:!0}),t.prototype.toSignIn=function(){this.stateMachine.send("SIGN_IN")},t.prototype.onInput=function(t){t.preventDefault();var e=t.target,n=e.name,o=e.value;this.stateMachine.send({type:"CHANGE",data:{name:n,value:o}})},t.prototype.onSubmit=function(t){t.preventDefault(),this.stateMachine.send("SUBMIT")},t}();A.decorators=[{type:e.Component,args:[{selector:"amplify-reset-password",template:'\x3c!-- \n Define default contents here\n--\x3e\n<ng-template #resetPasswordSubmitButton>\n <button amplify-button variation="primary" fullWidth="true" type="submit">\n {{ sendCodeText }}\n </button>\n</ng-template>\n\n<ng-template #resetPasswordForm>\n <form data-amplify-form (submit)="onSubmit($event)" (input)="onInput($event)">\n <fieldset\n class="amplify-flex"\n style="flex-direction: column"\n data-amplify-fieldset\n [disabled]="isPending"\n >\n <h3 class="amplify-heading">{{ this.headerText }}</h3>\n <amplify-form-field\n name="username"\n type="username"\n autocomplete="username"\n ></amplify-form-field>\n <ng-container\n [ngTemplateOutlet]="\n customComponents.resetPasswordSubmitButton ||\n resetPasswordSubmitButton\n "\n [ngTemplateOutletContext]="context"\n >\n </ng-container>\n <button\n amplify-button\n size="small"\n variation="link"\n fontWeight="normal"\n fullWidth="true"\n (click)="toSignIn()"\n >\n {{ backToSignInText }}\n </button>\n <amplify-error *ngIf="remoteError">\n {{ remoteError }}\n </amplify-error>\n </fieldset>\n </form>\n</ng-template>\n\n\x3c!-- \n Render reset passsword component\n--\x3e\n<div data-amplify-container>\n <ng-container\n [ngTemplateOutlet]="customComponents.resetPasswordForm || resetPasswordForm"\n [ngTemplateOutletContext]="context"\n >\n </ng-container>\n</div>\n'}]}],A.ctorParameters=function(){return[{type:y},{type:g}]},A.propDecorators={dataAttr:[{type:e.HostBinding,args:["attr.data-amplify-authenticator-resetPassword"]}],headerText:[{type:e.Input}]};function E(t,e,n,o){var i,a=arguments.length,r=a<3?e:null===o?o=Object.getOwnPropertyDescriptor(e,n):o;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)r=Reflect.decorate(t,e,n,o);else for(var s=t.length-1;s>=0;s--)(i=t[s])&&(r=(a<3?i(r):a>3?i(e,n,r):i(e,n))||r);return a>3&&r&&Object.defineProperty(e,n,r),r}function D(t,e,n,o){return new(n||(n=Promise))((function(i,a){function r(t){try{l(o.next(t))}catch(t){a(t)}}function s(t){try{l(o.throw(t))}catch(t){a(t)}}function l(t){var e;t.done?i(t.value):(e=t.value,e instanceof n?e:new n((function(t){t(e)}))).then(r,s)}l((o=o.apply(t,e||[])).next())}))}function w(t,e){var n,o,i,a,r={label:0,sent:function(){if(1&i[0])throw i[1];return i[1]},trys:[],ops:[]};return a={next:s(0),throw:s(1),return:s(2)},"function"==typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function s(a){return function(s){return function(a){if(n)throw new TypeError("Generator is already executing.");for(;r;)try{if(n=1,o&&(i=2&a[0]?o.return:a[0]?o.throw||((i=o.return)&&i.call(o),0):o.next)&&!(i=i.call(o,a[1])).done)return i;switch(o=0,i&&(a=[2&a[0],i.value]),a[0]){case 0:case 1:i=a;break;case 4:return r.label++,{value:a[1],done:!1};case 5:r.label++,o=a[1],a=[0];continue;case 7:a=r.ops.pop(),r.trys.pop();continue;default:if(!(i=r.trys,(i=i.length>0&&i[i.length-1])||6!==a[0]&&2!==a[0])){r=0;continue}if(3===a[0]&&(!i||a[1]>i[0]&&a[1]<i[3])){r.label=a[1];break}if(6===a[0]&&r.label<i[1]){r.label=i[1],i=a;break}if(i&&r.label<i[2]){r.label=i[2],r.ops.push(a);break}i[2]&&r.ops.pop(),r.trys.pop();continue}a=e.call(t,r)}catch(t){a=[6,t],o=0}finally{n=i=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}([a,s])}}}Object.create;Object.create;var O=new i.Logger("SetupTotp"),R=function(){function t(t,e){this.stateMachine=t,this.contextService=e,this.customComponents={},this.remoteError="",this.isPending=!1,this.headerText=o.translate("Setup TOTP"),this.qrCodeSource="",this.backToSignInText=o.translate("Back to Sign In"),this.confirmText=o.translate("Confirm")}return t.prototype.ngOnInit=function(){var t=this;this.authSubscription=this.stateMachine.authService.subscribe((function(e){t.onStateUpdate(e)})),this.generateQRCode()},t.prototype.ngAfterContentInit=function(){this.customComponents=this.contextService.customComponents},t.prototype.ngOnDestroy=function(){this.authSubscription.unsubscribe()},t.prototype.onStateUpdate=function(t){var e=o.getActorState(t);this.remoteError=e.context.remoteError,this.isPending=!e.matches("setupTOTP.edit")},Object.defineProperty(t.prototype,"context",{get:function(){var t=this.stateMachine.services,e=t.change,n=t.submit;return{change:e,remoteError:this.remoteError,submit:n,user:this.stateMachine.user}},enumerable:!1,configurable:!0}),t.prototype.generateQRCode=function(){var t;return D(this,void 0,void 0,(function(){var e,n,a,r,s,l,c,p;return w(this,(function(u){switch(u.label){case 0:e=this.stateMachine.authState,n=o.getActorContext(e),a=n.user,u.label=1;case 1:return u.trys.push([1,4,,5]),[4,i.Auth.setupTOTP(a)];case 2:return r=u.sent(),s="AWSCognito",l="otpauth://totp/AWSCognito:"+a.username+"?secret="+r+"&issuer="+s,O.info("totp code was generated:",l),c=this,[4,d.default.toDataURL(l)];case 3:return c.qrCodeSource=u.sent(),[3,5];case 4:return p=u.sent(),this.remoteError=null!==(t=p.message)&&void 0!==t?t:p,O.error(p),[3,5];case 5:return[2]}}))}))},t.prototype.onInput=function(t){t.preventDefault();var e=t.target,n=e.name,o=e.value;this.stateMachine.send({type:"CHANGE",data:{name:n,value:o}})},t.prototype.onSubmit=function(t){t.preventDefault();var e=new FormData(t.target);this.stateMachine.send({type:"SUBMIT",data:Object.fromEntries(e)})},t.prototype.toSignIn=function(){this.stateMachine.send("SIGN_IN")},t}();R.decorators=[{type:e.Component,args:[{selector:"amplify-setup-totp",template:'\x3c!-- \n Define default contents here\n--\x3e\n<ng-template #setupTotpButton>\n <button amplify-button variation="primary" fullWidth="true" type="submit">\n {{ confirmText }}\n </button>\n</ng-template>\n\n<ng-template #setupTotpForm>\n <form data-amplify-form (submit)="onSubmit($event)" (input)="onInput($event)">\n <fieldset\n class="amplify-flex"\n style="flex-direction: column"\n data-amplify-fieldset\n [disabled]="isPending"\n >\n <h3 class="amplify-heading">{{ this.headerText }}</h3>\n <p *ngIf="!qrCodeSource">Loading...</p>\n <img\n *ngIf="qrCodeSource"\n [src]="qrCodeSource"\n alt="qr code"\n data-amplify-qrcode\n />\n <amplify-form-field\n name="confirmation_code"\n label="Code *"\n type="text"\n autocomplete="one-time-code"\n ></amplify-form-field>\n <ng-container\n [ngTemplateOutlet]="customComponents.setupTotpButton || setupTotpButton"\n [ngTemplateOutletContext]="context"\n >\n </ng-container>\n <button\n amplify-button\n size="small"\n variation="link"\n fontWeight="normal"\n fullWidth="true"\n (click)="toSignIn()"\n >\n {{ backToSignInText }}\n </button>\n <amplify-error *ngIf="remoteError">\n {{ remoteError }}\n </amplify-error>\n </fieldset>\n </form>\n</ng-template>\n\n\x3c!-- \n Render sign in component\n--\x3e\n<div data-amplify-container>\n <ng-container\n [ngTemplateOutlet]="customComponents.setupTotpForm || setupTotpForm"\n [ngTemplateOutletContext]="context"\n >\n </ng-container>\n</div>\n'}]}],R.ctorParameters=function(){return[{type:y},{type:g}]},R.propDecorators={customComponents:[{type:e.HostBinding,args:["attr.data-amplify-authenticator-setup-totp"]}]};var k=new i.Logger("SignIn"),M=function(){function t(t,e){this.stateMachine=t,this.contextService=e,this.dataAttr="",this.headerText=o.translate("Sign in to your account"),this.customComponents={},this.remoteError="",this.isPending=!1,this.forgotPasswordText=o.translate("Forgot your password? "),this.signInButtonText=o.translate("Sign in"),this.noAccountText=o.translate("No account? ")}return t.prototype.ngOnInit=function(){var t=this;this.authSubscription=this.stateMachine.authService.subscribe((function(e){return t.onStateUpdate(e)}))},t.prototype.ngAfterContentInit=function(){this.customComponents=this.contextService.customComponents},t.prototype.ngOnDestroy=function(){k.log("sign in destroyed, unsubscribing from state machine..."),this.authSubscription.unsubscribe()},t.prototype.onStateUpdate=function(t){var e=o.getActorState(t);this.remoteError=e.context.remoteError,this.isPending=!e.matches("signIn.edit")},Object.defineProperty(t.prototype,"context",{get:function(){var t=this.stateMachine.services,e=t.change,n=t.resetPassword,o=t.signUp,i=t.submit;return{change:e,remoteError:this.remoteError,resetPassword:n,signUp:o,submit:i}},enumerable:!1,configurable:!0}),t.prototype.toResetPassword=function(){this.stateMachine.send("RESET_PASSWORD")},t.prototype.onInput=function(t){t.preventDefault();var e=t.target,n=e.name,o=e.value;this.stateMachine.send({type:"CHANGE",data:{name:n,value:o}})},t.prototype.onSubmit=function(t){return D(this,void 0,void 0,(function(){return w(this,(function(e){return t.preventDefault(),this.stateMachine.send({type:"SUBMIT"}),[2]}))}))},t}();M.decorators=[{type:e.Component,args:[{selector:"amplify-sign-in",template:'\x3c!-- \n Define default contents here\n--\x3e\n<ng-template #signInButton>\n <button amplify-button variation="primary" fullWidth="true" type="submit">\n {{ signInButtonText }}\n </button>\n</ng-template>\n\n<ng-template #signInForm>\n <form data-amplify-form (submit)="onSubmit($event)" (input)="onInput($event)">\n <fieldset\n class="amplify-flex"\n style="flex-direction: column"\n data-amplify-fieldset\n [disabled]="isPending"\n >\n <h3 class="amplify-heading">{{ this.headerText }}</h3>\n <amplify-user-name-alias></amplify-user-name-alias>\n <amplify-form-field\n data-amplify-password\n name="password"\n type="password"\n autocomplete="current-password"\n ></amplify-form-field>\n <ng-container\n [ngTemplateOutlet]="customComponents.signInButton || signInButton"\n [ngTemplateOutletContext]="context"\n >\n </ng-container>\n <button\n amplify-button\n fontWeight="normal"\n size="small"\n variation="link"\n (click)="toResetPassword()"\n >\n {{ forgotPasswordText }}\n </button>\n <amplify-error *ngIf="remoteError">\n {{ remoteError }}\n </amplify-error>\n </fieldset>\n <amplify-federated-sign-in></amplify-federated-sign-in>\n </form>\n</ng-template>\n\n\x3c!-- \n Render sign in component\n--\x3e\n\n<div data-amplify-container>\n <ng-container\n [ngTemplateOutlet]="customComponents.signInForm || signInForm"\n [ngTemplateOutletContext]="context"\n >\n </ng-container>\n</div>\n',encapsulation:e.ViewEncapsulation.None}]}],M.ctorParameters=function(){return[{type:y},{type:g}]},M.propDecorators={dataAttr:[{type:e.HostBinding,args:["attr.data-amplify-authenticator-signin"]}],headerText:[{type:e.Input}]};var F=function(){function t(t,e){this.stateMachine=t,this.contextService=e,this.dataAttr="",this.headerText=o.translate("Create a new account"),this.remoteError="",this.isPending=!1,this.primaryAlias="",this.secondaryAliases=[],this.validationError={},this.createAccountText=o.translate("Create Account")}return Object.defineProperty(t.prototype,"context",{get:function(){var t=this.stateMachine.services,e=t.change,n=t.signIn,o=t.submit;return{change:e,remoteError:this.remoteError,signIn:n,submit:o,validationError:this.validationError}},enumerable:!1,configurable:!0}),t.prototype.ngOnInit=function(){var t=this;this.authSubscription=this.stateMachine.authService.subscribe((function(e){return t.onStateUpdate(e)}));var e=this.stateMachine.context,n=o.getConfiguredAliases(e),i=n.primaryAlias,a=n.secondaryAliases;"username"===i&&s.isEmpty(a)&&a.push("email","phone_number"),this.primaryAlias=i,this.secondaryAliases=a},t.prototype.ngAfterContentInit=function(){this.customComponents=this.contextService.customComponents},t.prototype.ngOnDestroy=function(){this.authSubscription.unsubscribe()},t.prototype.onStateUpdate=function(t){var e=o.getActorState(t),n=o.getActorContext(t);this.remoteError=n.remoteError,this.validationError=n.validationError,this.isPending=!e.matches({signUp:{submission:"idle"}})},t.prototype.onSubmit=function(t){return D(this,void 0,void 0,(function(){return w(this,(function(e){return t.preventDefault(),this.stateMachine.send("SUBMIT"),[2]}))}))},t.prototype.onInput=function(t){t.preventDefault();var e=t.target,n=e.name,o=e.value;this.stateMachine.send({type:"CHANGE",data:{name:n,value:o}})},t}();F.decorators=[{type:e.Component,args:[{selector:"amplify-sign-up",template:'<ng-template #signUpButton>\n <button amplify-button variation="primary" fullWidth="true" type="submit">\n {{ createAccountText }}\n </button>\n</ng-template>\n\n<ng-template #signUpUsername>\n <amplify-user-name-alias [name]="primaryAlias"></amplify-user-name-alias>\n</ng-template>\n\n<ng-template #signUpPassword>\n <amplify-form-field\n name="password"\n autocomplete="new-password"\n ></amplify-form-field>\n</ng-template>\n\n<ng-template #signUpConfirmPassword>\n <amplify-form-field\n name="confirm_password"\n label="Confirm Password"\n type="password"\n autocomplete="new-password"\n ></amplify-form-field>\n</ng-template>\n\n<ng-template #signUpFieldset>\n <fieldset\n class="amplify-flex"\n style="flex-direction: column"\n data-amplify-fieldset\n [disabled]="isPending"\n >\n <h3 class="amplify-heading">{{ this.headerText }}</h3>\n <ng-container\n [ngTemplateOutlet]="customComponents.signUpUsername || signUpUsername"\n [ngTemplateOutletContext]="context"\n ></ng-container>\n\n <ng-container\n [ngTemplateOutlet]="customComponents.signUpPassword || signUpPassword"\n [ngTemplateOutletContext]="context"\n ></ng-container>\n\n <ng-container\n [ngTemplateOutlet]="\n customComponents.signUpConfirmPassword || signUpConfirmPassword\n "\n [ngTemplateOutletContext]="context"\n ></ng-container>\n\n <ng-container *ngFor="let secondaryAlias of secondaryAliases">\n <amplify-form-field [name]="secondaryAlias"></amplify-form-field>\n </ng-container>\n <ng-container\n [ngTemplateOutlet]="customComponents.signUpButton || signUpButton"\n [ngTemplateOutletContext]="context"\n >\n </ng-container>\n <amplify-error *ngIf="remoteError">\n {{ remoteError }}\n </amplify-error>\n </fieldset>\n <amplify-federated-sign-in></amplify-federated-sign-in>\n</ng-template>\n\n<div data-amplify-container>\n <form data-amplify-form (submit)="onSubmit($event)" (input)="onInput($event)">\n <ng-container\n [ngTemplateOutlet]="customComponents.signUpFieldset || signUpFieldset"\n [ngTemplateOutletContext]="context"\n ></ng-container>\n </form>\n</div>\n'}]}],F.ctorParameters=function(){return[{type:y},{type:g}]},F.propDecorators={dataAttr:[{type:e.HostBinding,args:["attr.data-amplify-authenticator-signup"]}],headerText:[{type:e.Input}]};var N=function(){return o.authInputAttributes},B=function(){function t(t,e){this.stateMachine=t,this.contextService=e,this.dataAttr="",this.headerText=o.translate("Account recovery requires verified contact information"),this.customComponents={},this.unverifiedAttributes={},this.remoteError="",this.isPending=!1,this.labelId=l.nanoid(12),this.skipText=o.translate("Skip"),this.verifyText=o.translate("Verify")}return t.prototype.ngOnInit=function(){var t=this;this.authSubscription=this.stateMachine.authService.subscribe((function(e){return t.onStateUpdate(e)}))},t.prototype.ngAfterContentInit=function(){this.customComponents=this.contextService.customComponents},t.prototype.ngOnDestroy=function(){this.authSubscription.unsubscribe()},t.prototype.onStateUpdate=function(t){var e=o.getActorState(t);this.unverifiedAttributes=e.context.unverifiedAttributes,this.remoteError=e.context.remoteError,this.isPending=!e.matches("verifyUser.edit")},Object.defineProperty(t.prototype,"context",{get:function(){var t=this.stateMachine.services,e=t.change,n=t.skip,o=t.submit;return{change:e,remoteError:this.remoteError,skip:n,submit:o}},enumerable:!1,configurable:!0}),t.prototype.skipVerify=function(){this.stateMachine.send("SKIP")},t.prototype.getLabelForAttr=function(t){var e,n=null===(e=N()[t])||void 0===e?void 0:e.label;return o.translate(n)},t.prototype.onSubmit=function(t){return D(this,void 0,void 0,(function(){var e;return w(this,(function(n){return t.preventDefault(),e=new FormData(t.target),this.stateMachine.send({type:"SUBMIT",data:Object.fromEntries(e)}),[2]}))}))},t}();B.decorators=[{type:e.Component,args:[{selector:"amplify-verify-user",template:'\x3c!-- \n Define default contents here\n--\x3e\n<ng-template #verifyButton>\n <button amplify-button variation="primary" fullWidth="true" type="submit">\n {{ verifyText }}\n </button>\n</ng-template>\n\n<ng-template #verifyUserForm>\n <form data-amplify-form (submit)="onSubmit($event)">\n <fieldset\n class="amplify-flex"\n style="flex-direction: column"\n data-amplify-fieldset\n [disabled]="isPending"\n >\n <h3 class="amplify-heading">{{ this.headerText }}</h3>\n\n <div *ngFor="let unverifiedAttribute of unverifiedAttributes | keyvalue">\n \x3c!-- TODO: match React implementation --\x3e\n <input\n name="unverifiedAttr"\n type="radio"\n [value]="unverifiedAttribute.key"\n [id]="labelId"\n />\n <label [for]="labelId">{{\n getLabelForAttr(unverifiedAttribute.key)\n }}</label>\n </div>\n\n <ng-container\n [ngTemplateOutlet]="customComponents.verifyButton || verifyButton"\n [ngTemplateOutletContext]="context"\n ></ng-container>\n\n <button\n amplify-button\n size="small"\n variation="link"\n fontWeight="normal"\n fullWidth="true"\n (click)="skipVerify()"\n >\n {{ skipText }}\n </button>\n\n <amplify-error *ngIf="remoteError">\n {{ remoteError }}\n </amplify-error>\n </fieldset>\n </form>\n</ng-template>\n\n\x3c!-- \n Render verify user component\n--\x3e\n<div data-amplify-container>\n <ng-container\n [ngTemplateOutlet]="customComponents.verifyUserForm || verifyUserForm"\n [ngTemplateOutletContext]="context"\n >\n </ng-container>\n</div>\n',encapsulation:e.ViewEncapsulation.None}]}],B.ctorParameters=function(){return[{type:y},{type:g}]},B.propDecorators={dataAttr:[{type:e.HostBinding,args:["attr.data-amplify-authenticator-verifyuser"]}],headerText:[{type:e.Input}]};var U=function(){function t(t,e){this.stateMachine=t,this.contextService=e,this.dataAttr="",this.headerText=o.translate("Reset your password"),this.customComponents={},this.remoteError="",this.isPending=!1,this.sendCodeText=o.translate("Send Code"),this.backToSignInText=o.translate("Back to Sign In"),this.lostCodeText=o.translate("Lost your code? "),this.resendCodeText=o.translate("Resend Code")}return t.prototype.ngOnInit=function(){var t=this;this.authSubscription=this.stateMachine.authService.subscribe((function(e){return t.onStateUpdate(e)}))},t.prototype.ngAfterContentInit=function(){this.customComponents=this.contextService.customComponents},t.prototype.ngOnDestroy=function(){this.authSubscription.unsubscribe()},t.prototype.onStateUpdate=function(t){var e=o.getActorState(t);this.remoteError=e.context.remoteError,this.isPending=!e.matches("confirmResetPassword.edit")},Object.defineProperty(t.prototype,"context",{get:function(){var t=this.stateMachine.services,e=t.change,n=t.resend,o=t.signIn,i=t.submit;return{change:e,resend:n,remoteError:this.remoteError,signIn:o,submit:i}},enumerable:!1,configurable:!0}),t.prototype.toSignIn=function(){this.stateMachine.send("SIGN_IN")},t.prototype.resend=function(){this.stateMachine.send("RESEND")},t.prototype.onInput=function(t){t.preventDefault();var e=t.target,n=e.name,o=e.value;this.stateMachine.send({type:"CHANGE",data:{name:n,value:o}})},t.prototype.onSubmit=function(t){return D(this,void 0,void 0,(function(){return w(this,(function(e){return t.preventDefault(),this.stateMachine.send("SUBMIT"),[2]}))}))},t}();U.decorators=[{type:e.Component,args:[{selector:"amplify-confirm-reset-password",template:'\x3c!-- \n Define default contents here\n--\x3e\n<ng-template #confirmResetPasswordSubmitButton>\n <button amplify-button variation="primary" fullWidth="true" type="submit">\n {{ sendCodeText }}\n </button>\n</ng-template>\n<ng-template #confirmResetPasswordForm>\n <form data-amplify-form (submit)="onSubmit($event)" (input)="onInput($event)">\n <fieldset\n class="amplify-flex"\n style="flex-direction: column"\n data-amplify-fieldset\n [disabled]="isPending"\n >\n <h3 class="amplify-heading">{{ headerText }}</h3>\n <amplify-form-field\n name="confirmation_code"\n type="number"\n autocomplete="one-time-code"\n ></amplify-form-field>\n <amplify-form-field\n name="password"\n label="New password"\n autocomplete="new-password"\n ></amplify-form-field>\n\n <ng-container\n [ngTemplateOutlet]="\n customComponents.confirmResetPasswordSubmitButton ||\n confirmResetPasswordSubmitButton\n "\n [ngTemplateOutletContext]="context"\n ></ng-container>\n\n <button\n amplify-button\n size="small"\n variation="link"\n fontWeight="normal"\n fullWidth="true"\n type="button"\n (click)="resend()"\n >\n {{ resendCodeText }}\n </button>\n\n <amplify-error *ngIf="remoteError">\n {{ remoteError }}\n </amplify-error>\n </fieldset>\n </form>\n</ng-template>\n\n\x3c!-- \n Render confirm reset password component\n--\x3e\n<div data-amplify-container>\n <ng-container\n [ngTemplateOutlet]="\n customComponents.confirmResetPasswordForm || confirmResetPasswordForm\n "\n [ngTemplateOutletContext]="context"\n >\n </ng-container>\n</div>\n'}]}],U.ctorParameters=function(){return[{type:y},{type:g}]},U.propDecorators={dataAttr:[{type:e.HostBinding,args:["attr.data-amplify-authenticator-confirmsignin"]}],headerText:[{type:e.Input}]};var z=function(){function t(t,e){this.stateMachine=t,this.contextService=e,this.dataAttr="",this.headerText=o.translate("Account recovery requires verified contact information"),this.customComponents={},this.remoteError="",this.isPending=!1,this.skipText=o.translate("Skip"),this.submitText=o.translate("Submit")}return t.prototype.ngOnInit=function(){var t=this;this.authSubscription=this.stateMachine.authService.subscribe((function(e){return t.onStateUpdate(e)}))},t.prototype.ngAfterContentInit=function(){this.customComponents=this.contextService.customComponents},t.prototype.ngOnDestroy=function(){this.authSubscription.unsubscribe()},t.prototype.onStateUpdate=function(t){var e=o.getActorState(t);this.remoteError=e.context.remoteError,this.isPending=!e.matches("confirmVerifyUser.edit")},Object.defineProperty(t.prototype,"context",{get:function(){var t=this.stateMachine.services,e=t.skip,n=t.submit;return{remoteError:this.remoteError,skip:e,submit:n}},enumerable:!1,configurable:!0}),t.prototype.skipVerify=function(){this.stateMachine.send("SKIP")},t.prototype.onSubmit=function(t){return D(this,void 0,void 0,(function(){var e;return w(this,(function(n){return t.preventDefault(),e=new FormData(t.target),this.stateMachine.send({type:"SUBMIT",data:Object.fromEntries(e)}),[2]}))}))},t}();z.decorators=[{type:e.Component,args:[{selector:"amplify-confirm-verify-user",template:'\x3c!-- \n Define default contents here\n--\x3e\n<ng-template #confirmVerifyButton>\n <button amplify-button variation="primary" fullWidth="true" type="submit">\n {{ submitText }}\n </button>\n</ng-template>\n\n<ng-template #confirmVerifyUserForm>\n <form data-amplify-form (submit)="onSubmit($event)">\n <fieldset\n class="amplify-flex"\n style="flex-direction: column"\n data-amplify-fieldset\n [disabled]="isPending"\n >\n <h3 class="amplify-heading">{{ this.headerText }}</h3>\n <amplify-form-field\n name="confirmation_code"\n type="number"\n autocomplete="one-time-code"\n ></amplify-form-field>\n <ng-container\n [ngTemplateOutlet]="\n customComponents.confirmVerifyButton || confirmVerifyButton\n "\n [ngTemplateOutletContext]="context"\n ></ng-container>\n\n <button\n amplify-button\n size="small"\n variation="link"\n fontWeight="normal"\n fullWidth="true"\n (click)="skipVerify()"\n >\n {{ skipText }}\n </button>\n <amplify-error *ngIf="remoteError">\n {{ remoteError }}\n </amplify-error>\n </fieldset>\n </form>\n</ng-template>\n\n\x3c!-- \n Render confirm reset password component\n--\x3e\n<div data-amplify-container>\n <ng-container\n [ngTemplateOutlet]="\n customComponents.confirmVerifyUserForm || confirmVerifyUserForm\n "\n [ngTemplateOutletContext]="context"\n >\n </ng-container>\n</div>\n'}]}],z.ctorParameters=function(){return[{type:y},{type:g}]},z.propDecorators={dataAttr:[{type:e.HostBinding,args:["attr.data-amplify-authenticator-confirmverifyuser"]}],headerText:[{type:e.Input}]};var _=function(){function t(){this.type="button",this.fullWidth=!1,this.size="medium",this.variation="default",this.fontWeight="normal",this.defaultClass=!0}return t.prototype.ngOnInit=function(){this.typeAttr=this.type,this.fullWidthAttr=this.fullWidth,this.sizeAttr=this.size,this.variationAttr=this.variation,this.fontWeightAttr=this.fontWeight},t}();_.decorators=[{type:e.Component,args:[{selector:"button[amplify-button]",template:"<ng-content></ng-content>\n"}]}],_.propDecorators={type:[{type:e.Input}],fullWidth:[{type:e.Input}],size:[{type:e.Input}],variation:[{type:e.Input}],fontWeight:[{type:e.Input}],typeAttr:[{type:e.HostBinding,args:["type"]}],fullWidthAttr:[{type:e.HostBinding,args:["attr.data-fullwidth"]}],sizeAttr:[{type:e.HostBinding,args:["attr.data-size"]}],variationAttr:[{type:e.HostBinding,args:["attr.data-variation"]}],defaultClass:[{type:e.HostBinding,args:["class.amplify-button"]}],fontWeightAttr:[{type:e.HostBinding,args:["style.font-weight"]}]};var q=function(){};q.decorators=[{type:e.Component,args:[{selector:"amplify-error",template:"<span data-ui-error>\n <ng-content></ng-content>\n</span>\n"}]}];var Z=function(){function t(t){this.stateMachine=t,this.required=!0,this.placeholder="",this.label="",this.initialValue="",this.disabled=!1,this.autocomplete="",this.countryDialCodes=o.countryDialCodes}return t.prototype.ngOnInit=function(){if(this.textFieldId="amplify-field-"+l.nanoid(12),this.selectFieldId="amplify-field-"+l.nanoid(12),this.isPhoneField()){var t=this.stateMachine.authState,e=o.getActorContext(t).country_code;this.defaultCountryCode=e,this.stateMachine.send({type:"CHANGE",data:{name:"country_code",value:e}})}},Object.defineProperty(t.prototype,"attributeMap",{get:function(){return N()},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"error",{get:function(){return o.getActorContext(this.stateMachine.authState).validationError[this.name]},enumerable:!1,configurable:!0}),t.prototype.inferLabel=function(){var t,e=this.label||(null===(t=this.attributeMap[this.name])||void 0===t?void 0:t.label);return o.translate(e)},t.prototype.inferPlaceholder=function(){var t,e=this.placeholder||(null===(t=this.attributeMap[this.name])||void 0===t?void 0:t.placeholder)||this.inferLabel();return o.translate(e)},t.prototype.inferType=function(){var t,e,n;return null!==(n=null!==(t=this.type)&&void 0!==t?t:null===(e=this.attributeMap[this.name])||void 0===e?void 0:e.type)&&void 0!==n?n:"text"},t.prototype.isPasswordField=function(){return"password"===this.inferType()},t.prototype.isPhoneField=function(){return"tel"===this.inferType()},t}();Z.decorators=[{type:e.Component,args:[{selector:"amplify-form-field",template:'<div class="amplify-flex" style="flex-direction: column; gap: 0">\n \x3c!-- Country code field --\x3e\n <amplify-phone-number-field\n *ngIf="isPhoneField()"\n [selectFieldId]="selectFieldId"\n [defaultCountryCode]="defaultCountryCode"\n [textFieldId]="textFieldId"\n [type]="inferType()"\n [name]="name"\n [label]="inferLabel()"\n [placeholder]="inferPlaceholder()"\n [required]="required"\n [initialValue]="initialValue"\n [disabled]="disabled"\n [autocomplete]="autocomplete"\n ></amplify-phone-number-field>\n\n <amplify-password-field\n *ngIf="isPasswordField()"\n [id]="textFieldId"\n [name]="name"\n [label]="inferLabel()"\n [placeholder]="inferPlaceholder()"\n [required]="required"\n [value]="initialValue"\n [disabled]="disabled"\n [autocomplete]="autocomplete"\n ></amplify-password-field>\n\n <amplify-text-field\n *ngIf="!isPasswordField() && !isPhoneField()"\n [id]="textFieldId"\n [type]="inferType()"\n [name]="name"\n [label]="inferLabel()"\n [placeholder]="inferPlaceholder()"\n [required]="required"\n [value]="initialValue"\n [disabled]="disabled"\n [autocomplete]="autocomplete"\n ></amplify-text-field>\n\n <amplify-error *ngIf="error">\n {{ error }}\n </amplify-error>\n</div>\n'}]}],Z.ctorParameters=function(){return[{type:y}]},Z.propDecorators={name:[{type:e.Input}],type:[{type:e.Input}],required:[{type:e.Input}],placeholder:[{type:e.Input}],label:[{type:e.Input}],initialValue:[{type:e.Input}],disabled:[{type:e.Input}],autocomplete:[{type:e.Input}]};var j=function(){function t(){this.autocomplete="new-password",this.disabled=!1,this.initialValue="",this.label="",this.placeholder="",this.required=!0,this.type="password",this.showPassword=!1,this.showPasswordButtonlabel=o.translate("Show password")}return t.prototype.togglePasswordText=function(){this.showPassword=!this.showPassword,this.showPasswordButtonlabel=this.showPassword?o.translate("Show password"):o.translate("Hide password"),this.type=this.showPassword?"text":"password"},t}();j.decorators=[{type:e.Component,args:[{selector:"amplify-password-field",template:'<label class="amplify-label sr-only" [for]="id">\n {{ label }}\n</label>\n<div class="amplify-flex amplify-field-group">\n <input\n class="amplify-input amplify-field-group__control"\n [id]="id"\n [type]="type"\n [name]="name"\n [placeholder]="placeholder"\n [required]="required"\n [value]="initialValue"\n [attr.disabled]="disabled ? \'\' : null"\n [autocomplete]="autocomplete"\n />\n <div class="amplify-field-group__outer-end">\n <button\n amplify-button\n [attr.aria-label]="showPasswordButtonlabel"\n class="amplify-field-group__control amplify-field__show-password"\n (click)="togglePasswordText()"\n >\n <svg\n *ngIf="!showPassword"\n xmlns="http://www.w3.org/2000/svg"\n fill="currentColor"\n viewBox="0 0 24 24"\n class="amplify-icon"\n >\n <path\n d="M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z"\n ></path>\n </svg>\n <svg\n *ngIf="showPassword"\n xmlns="http://www.w3.org/2000/svg"\n fill="currentColor"\n viewBox="0 0 24 24"\n class="amplify-icon"\n >\n <path\n d="M0 0h24v24H0zm0 0h24v24H0zm0 0h24v24H0zm0 0h24v24H0z"\n fill="none"\n ></path>\n <path\n d="M12 7c2.76 0 5 2.24 5 5 0 .65-.13 1.26-.36 1.83l2.92 2.92c1.51-1.26 2.7-2.89 3.43-4.75-1.73-4.39-6-7.5-11-7.5-1.4 0-2.74.25-3.98.7l2.16 2.16C10.74 7.13 11.35 7 12 7zM2 4.27l2.28 2.28.46.46C3.08 8.3 1.78 10.02 1 12c1.73 4.39 6 7.5 11 7.5 1.55 0 3.03-.3 4.38-.84l.42.42L19.73 22 21 20.73 3.27 3 2 4.27zM7.53 9.8l1.55 1.55c-.05.21-.08.43-.08.65 0 1.66 1.34 3 3 3 .22 0 .44-.03.65-.08l1.55 1.55c-.67.33-1.41.53-2.2.53-2.76 0-5-2.24-5-5 0-.79.2-1.53.53-2.2zm4.31-.78l3.15 3.15.02-.16c0-1.66-1.34-3-3-3l-.17.01z"\n ></path>\n </svg>\n </button>\n </div>\n</div>\n'}]}],j.propDecorators={autocomplete:[{type:e.Input}],disabled:[{type:e.Input}],id:[{type:e.Input}],initialValue:[{type:e.Input}],label:[{type:e.Input}],name:[{type:e.Input}],placeholder:[{type:e.Input}],required:[{type:e.Input}]};var V=function(){};V.decorators=[{type:e.Component,args:[{selector:"amplify-form-select",template:'<label class="amplify-label sr-only" [for]="id">{{ label }}</label>\n<div class="amplify-select__wrapper">\n <select\n class="amplify-select amplify-field-group__control"\n autocomplete="tel-country-code"\n [id]="id"\n [name]="name"\n >\n <option\n *ngFor="let item of items"\n [value]="item"\n [selected]="item === defaultValue"\n >\n {{ item }}\n </option>\n </select>\n <div\n class="amplify-flex amplify-select__icon-wrapper"\n style="align-items: center; justify-content: center"\n >\n <svg\n xmlns="http://www.w3.org/2000/svg"\n class="amplify-icon"\n viewBox="0 0 24 24"\n data-size="large"\n fill="currentColor"\n >\n <path d="M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z"></path>\n </svg>\n </div>\n</div>\n'}]}],V.propDecorators={items:[{type:e.Input}],name:[{type:e.Input}],label:[{type:e.Input}],id:[{type:e.Input}],defaultValue:[{type:e.Input}]};var H=function(){this.active=!1};H.decorators=[{type:e.Component,args:[{selector:"amplify-tab-item",template:'<div\n data-orientation="horizontal"\n role="tabpanel"\n [id]="id"\n [attr.aria-labelledby]="labelledById"\n [attr.data-state]="active ? \'active\' : \'inactive\'"\n [attr.tabindex]="tabIndex"\n>\n <ng-content *ngIf="active"></ng-content>\n</div>\n'}]}],H.propDecorators={title:[{type:e.Input}],active:[{type:e.Input}],id:[{type:e.Input}],labelledById:[{type:e.Input}],tabIndex:[{type:e.Input}]};var W=function(){function t(){this.tabChange=new e.EventEmitter}return t.prototype.ngAfterContentInit=function(){this.tabs.forEach((function(t,e){t.id="radix-id-"+l.nanoid(12)+"-1-content-"+e,t.labelledById="radix-id-"+l.nanoid(12)+"-1-trigger-"+e})),1!==this.tabs.filter((function(t){return t.active})).length&&this.selectTab(this.tabs.first)},t.prototype.selectTab=function(t){this.tabs.forEach((function(t){t.active=!1})),t.active=!0},t.prototype.handleTabClick=function(t){t.active||(this.tabChange.emit(),this.selectTab(t))},t}();W.decorators=[{type:e.Component,args:[{selector:"amplify-tabs",template:'<div\n tabindex="0"\n aria-orientation="horizontal"\n data-orientation="horizontal"\n role="tablist"\n style="outline: none"\n>\n <div\n class="amplify-flex amplify-tabs"\n data-indicator-position="top"\n style="gap: 0px; justify-content: center"\n >\n <div\n *ngFor="let tab of tabs"\n class="amplify-tabs-item"\n data-grow="equal"\n data-orientation="horizontal"\n role="tab"\n [id]="tab.labelledById"\n [tabindex]="tab.active ? \'0\' : \'1\'"\n [attr.aria-selected]="tab.active"\n [attr.aria-controls]="tab.id"\n [attr.data-state]="tab.active ? \'active\' : \'inactive\'"\n (click)="handleTabClick(tab)"\n >\n {{ tab.title }}\n </div>\n </div>\n</div>\n\n<ng-content></ng-content>\n'}]}],W.propDecorators={tabs:[{type:e.ContentChildren,args:[H]}],tabChange:[{type:e.Output}]};var L=function(){this.autocomplete="new-password",this.disabled=!1,this.initialValue="",this.label="",this.placeholder="",this.required=!0};L.decorators=[{type:e.Component,args:[{selector:"amplify-text-field",template:'<label class="amplify-label sr-only" [for]="id">\n {{ label }}\n</label>\n<input\n class="amplify-input"\n [id]="id"\n [type]="type"\n [name]="name"\n [placeholder]="placeholder"\n [required]="required"\n [value]="initialValue"\n [attr.disabled]="disabled ? \'\' : null"\n [autocomplete]="autocomplete"\n/>\n'}]}],L.propDecorators={autocomplete:[{type:e.Input}],disabled:[{type:e.Input}],id:[{type:e.Input}],initialValue:[{type:e.Input}],label:[{type:e.Input}],name:[{type:e.Input}],placeholder:[{type:e.Input}],required:[{type:e.Input}],type:[{type:e.Input}]};var G=function(){function t(t){this.stateMachine=t,this.name="username",this.disabled=!1,this.initialValue="",this.required=!0}return t.prototype.ngOnInit=function(){var t=this.stateMachine.context,e=o.getAliasInfoFromContext(t),n=e.label,i=e.type;this.label=n,this.type=i,this.placeholder=n},t}();G.decorators=[{type:e.Component,args:[{selector:"amplify-user-name-alias",template:'<amplify-form-field\n data-amplify-usernamealias\n [name]="name"\n [label]="label"\n [type]="type"\n [placeholder]="placeholder"\n [initialValue]="initialValue"\n [disabled]="disabled"\n [required]="required"\n autocomplete="username"\n>\n</amplify-form-field>\n'}]}],G.ctorParameters=function(){return[{type:y}]},G.propDecorators={name:[{type:e.Input}],disabled:[{type:e.Input}],initialValue:[{type:e.Input}],required:[{type:e.Input}]};function $(t){return function(e){var n,o,i;return t.inputs&&(n=e,o=t.inputs,i=n.prototype,o.forEach((function(t){Object.defineProperty(i,t,{get:function(){return this.el[t]},set:function(e){var n=this;this.z.runOutsideAngular((function(){return n.el[t]=e}))}})}))),t.methods&&function(t,e){var n=t.prototype;e.forEach((function(t){n[t]=function(){var e=this,n=arguments;return this.z.runOutsideAngular((function(){return e.el[t].apply(e.el,n)}))}}))}(e,t.methods),e}}var K=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};K.decorators=[{type:e.Component,args:[{selector:"amplify-amazon-button",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["clientId","handleAuthStateChange"]}]}],K.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},K=E([$({inputs:["clientId","handleAuthStateChange"]})],K);var Q=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};Q.decorators=[{type:e.Component,args:[{selector:"amplify-auth-container",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>"}]}],Q.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]};var Y=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};Y.decorators=[{type:e.Component,args:[{selector:"amplify-auth-fields",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["formFields"]}]}],Y.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},Y=E([$({inputs:["formFields"]})],Y);var J=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};J.decorators=[{type:e.Component,args:[{selector:"amplify-auth0-button",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["config","handleAuthStateChange"]}]}],J.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},J=E([$({inputs:["config","handleAuthStateChange"]})],J);var X=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};X.decorators=[{type:e.Component,args:[{selector:"amplify-authenticator",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["federated","handleAuthStateChange","hideToast","initialAuthState","usernameAlias"]}]}],X.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},X=E([$({inputs:["federated","handleAuthStateChange","hideToast","initialAuthState","usernameAlias"]})],X),t.AmplifyButton=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement},t.AmplifyButton.decorators=[{type:e.Component,args:[{selector:"amplify-button",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["disabled","handleButtonClick","icon","type","variant"]}]}],t.AmplifyButton.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},t.AmplifyButton=E([$({inputs:["disabled","handleButtonClick","icon","type","variant"]})],t.AmplifyButton),t.AmplifyChatbot=function(t,e,n){var o,i;this.z=n,t.detach(),this.el=e.nativeElement,o=this,i=this.el,["chatCompleted"].forEach((function(t){return o[t]=c.fromEvent(i,t)}))},t.AmplifyChatbot.decorators=[{type:e.Component,args:[{selector:"amplify-chatbot",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["botName","botTitle","clearOnComplete","conversationModeOn","silenceThreshold","silenceTime","textEnabled","voiceEnabled","welcomeMessage"]}]}],t.AmplifyChatbot.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},t.AmplifyChatbot=E([$({inputs:["botName","botTitle","clearOnComplete","conversationModeOn","silenceThreshold","silenceTime","textEnabled","voiceEnabled","welcomeMessage"]})],t.AmplifyChatbot);var tt=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};tt.decorators=[{type:e.Component,args:[{selector:"amplify-checkbox",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["checked","disabled","fieldId","label","name","value"]}]}],tt.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},tt=E([$({inputs:["checked","disabled","fieldId","label","name","value"]})],tt);var et=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};et.decorators=[{type:e.Component,args:[{selector:"amplify-code-field",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["disabled","fieldId","handleInputChange","hint","inputProps","label","placeholder","required","value"]}]}],et.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},et=E([$({inputs:["disabled","fieldId","handleInputChange","hint","inputProps","label","placeholder","required","value"]})],et);var nt=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};nt.decorators=[{type:e.Component,args:[{selector:"amplify-confirm-sign-in",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["formFields","handleAuthStateChange","handleSubmit","headerText","submitButtonText","user"]}]}],nt.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},nt=E([$({inputs:["formFields","handleAuthStateChange","handleSubmit","headerText","submitButtonText","user"]})],nt);var ot=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};ot.decorators=[{type:e.Component,args:[{selector:"amplify-confirm-sign-up",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["formFields","handleAuthStateChange","handleSubmit","headerText","submitButtonText","user","usernameAlias"]}]}],ot.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},ot=E([$({inputs:["formFields","handleAuthStateChange","handleSubmit","headerText","submitButtonText","user","usernameAlias"]})],ot);var it=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};it.decorators=[{type:e.Component,args:[{selector:"amplify-container",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>"}]}],it.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]};var at=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};at.decorators=[{type:e.Component,args:[{selector:"amplify-country-dial-code",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["dialCode","fieldId","handleInputChange","options"]}]}],at.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},at=E([$({inputs:["dialCode","fieldId","handleInputChange","options"]})],at);var rt=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};rt.decorators=[{type:e.Component,args:[{selector:"amplify-email-field",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["disabled","fieldId","handleInputChange","hint","inputProps","label","placeholder","required","value"]}]}],rt.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},rt=E([$({inputs:["disabled","fieldId","handleInputChange","hint","inputProps","label","placeholder","required","value"]})],rt);var st=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};st.decorators=[{type:e.Component,args:[{selector:"amplify-facebook-button",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["appId","handleAuthStateChange"]}]}],st.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},st=E([$({inputs:["appId","handleAuthStateChange"]})],st);var lt=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};lt.decorators=[{type:e.Component,args:[{selector:"amplify-federated-buttons",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["authState","federated","handleAuthStateChange"]}]}],lt.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},lt=E([$({inputs:["authState","federated","handleAuthStateChange"]})],lt);var ct=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};ct.decorators=[{type:e.Component,args:[{selector:"amplify-federated-sign-in",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["authState","federated"]}]}],ct.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},ct=E([$({inputs:["authState","federated"]})],ct);var pt=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};pt.decorators=[{type:e.Component,args:[{selector:"amplify-forgot-password",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["formFields","handleAuthStateChange","handleSend","handleSubmit","headerText","sendButtonText","submitButtonText","usernameAlias"]}]}],pt.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},pt=E([$({inputs:["formFields","handleAuthStateChange","handleSend","handleSubmit","headerText","sendButtonText","submitButtonText","usernameAlias"]})],pt);var ut=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};ut.decorators=[{type:e.Component,args:[{selector:"amplify-form-field",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["description","disabled","fieldId","handleInputChange","hint","inputProps","label","name","placeholder","required","type","value"]}]}],ut.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},ut=E([$({inputs:["description","disabled","fieldId","handleInputChange","hint","inputProps","label","name","placeholder","required","type","value"]})],ut);var mt=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};mt.decorators=[{type:e.Component,args:[{selector:"amplify-form-section",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["handleSubmit","headerText","loading","secondaryFooterContent","submitButtonText","testDataPrefix"]}]}],mt.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},mt=E([$({inputs:["handleSubmit","headerText","loading","secondaryFooterContent","submitButtonText","testDataPrefix"]})],mt);var ft=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};ft.decorators=[{type:e.Component,args:[{selector:"amplify-google-button",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["clientId","handleAuthStateChange"]}]}],ft.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},ft=E([$({inputs:["clientId","handleAuthStateChange"]})],ft);var dt=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};dt.decorators=[{type:e.Component,args:[{selector:"amplify-greetings",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["handleAuthStateChange","logo","username"]}]}],dt.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},dt=E([$({inputs:["handleAuthStateChange","logo","username"]})],dt);var ht=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};ht.decorators=[{type:e.Component,args:[{selector:"amplify-hint",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>"}]}],ht.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]};var gt=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};gt.decorators=[{type:e.Component,args:[{selector:"amplify-icon",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["name"]}]}],gt.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},gt=E([$({inputs:["name"]})],gt);var yt=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};yt.decorators=[{type:e.Component,args:[{selector:"amplify-icon-button",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["autoShowTooltip","name","tooltip"]}]}],yt.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},yt=E([$({inputs:["autoShowTooltip","name","tooltip"]})],yt),t.AmplifyInput=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement},t.AmplifyInput.decorators=[{type:e.Component,args:[{selector:"amplify-input",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["description","disabled","fieldId","handleInputChange","inputProps","name","placeholder","required","type","value"]}]}],t.AmplifyInput.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},t.AmplifyInput=E([$({inputs:["description","disabled","fieldId","handleInputChange","inputProps","name","placeholder","required","type","value"]})],t.AmplifyInput);var bt=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};bt.decorators=[{type:e.Component,args:[{selector:"amplify-label",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["htmlFor"]}]}],bt.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},bt=E([$({inputs:["htmlFor"]})],bt);var vt=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};vt.decorators=[{type:e.Component,args:[{selector:"amplify-link",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["role"]}]}],vt.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},vt=E([$({inputs:["role"]})],vt);var Ct=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};Ct.decorators=[{type:e.Component,args:[{selector:"amplify-loading-spinner",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>"}]}],Ct.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]};var xt=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};xt.decorators=[{type:e.Component,args:[{selector:"amplify-nav",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>"}]}],xt.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]};var St=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};St.decorators=[{type:e.Component,args:[{selector:"amplify-oauth-button",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["config"]}]}],St.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},St=E([$({inputs:["config"]})],St);var It=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};It.decorators=[{type:e.Component,args:[{selector:"amplify-password-field",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["disabled","fieldId","handleInputChange","hint","inputProps","label","placeholder","required","value"]}]}],It.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},It=E([$({inputs:["disabled","fieldId","handleInputChange","hint","inputProps","label","placeholder","required","value"]})],It);var Pt=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};Pt.decorators=[{type:e.Component,args:[{selector:"amplify-phone-field",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["dialCode","disabled","fieldId","handleInputChange","hint","inputProps","label","placeholder","required","value"]}]}],Pt.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},Pt=E([$({inputs:["dialCode","disabled","fieldId","handleInputChange","hint","inputProps","label","placeholder","required","value"]})],Pt),t.AmplifyPhotoPicker=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement},t.AmplifyPhotoPicker.decorators=[{type:e.Component,args:[{selector:"amplify-photo-picker",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["buttonText","handleClick","headerHint","headerTitle","placeholderHint","previewSrc"]}]}],t.AmplifyPhotoPicker.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},t.AmplifyPhotoPicker=E([$({inputs:["buttonText","handleClick","headerHint","headerTitle","placeholderHint","previewSrc"]})],t.AmplifyPhotoPicker),t.AmplifyPicker=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement},t.AmplifyPicker.decorators=[{type:e.Component,args:[{selector:"amplify-picker",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["acceptValue","inputHandler","pickerText"]}]}],t.AmplifyPicker.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},t.AmplifyPicker=E([$({inputs:["acceptValue","inputHandler","pickerText"]})],t.AmplifyPicker);var Tt=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};Tt.decorators=[{type:e.Component,args:[{selector:"amplify-radio-button",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["checked","disabled","fieldId","handleInputChange","inputProps","label","name","placeholder","value"]}]}],Tt.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},Tt=E([$({inputs:["checked","disabled","fieldId","handleInputChange","inputProps","label","name","placeholder","value"]})],Tt);var At=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};At.decorators=[{type:e.Component,args:[{selector:"amplify-require-new-password",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["formFields","handleAuthStateChange","handleSubmit","headerText","submitButtonText","user"]}]}],At.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},At=E([$({inputs:["formFields","handleAuthStateChange","handleSubmit","headerText","submitButtonText","user"]})],At),t.AmplifyS3Album=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement},t.AmplifyS3Album.decorators=[{type:e.Component,args:[{selector:"amplify-s3-album",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["contentType","fileToKey","filter","handleOnError","handleOnLoad","identityId","level","path","picker","pickerText","sort","track"]}]}],t.AmplifyS3Album.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},t.AmplifyS3Album=E([$({inputs:["contentType","fileToKey","filter","handleOnError","handleOnLoad","identityId","level","path","picker","pickerText","sort","track"]})],t.AmplifyS3Album),t.AmplifyS3Image=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement},t.AmplifyS3Image.decorators=[{type:e.Component,args:[{selector:"amplify-s3-image",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["alt","body","contentType","handleOnError","handleOnLoad","identityId","imgKey","imgProps","level","path","track"]}]}],t.AmplifyS3Image.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},t.AmplifyS3Image=E([$({inputs:["alt","body","contentType","handleOnError","handleOnLoad","identityId","imgKey","imgProps","level","path","track"]})],t.AmplifyS3Image),t.AmplifyS3ImagePicker=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement},t.AmplifyS3ImagePicker.decorators=[{type:e.Component,args:[{selector:"amplify-s3-image-picker",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["buttonText","contentType","fileToKey","headerHint","headerTitle","identityId","level","path","placeholderHint","track"]}]}],t.AmplifyS3ImagePicker.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},t.AmplifyS3ImagePicker=E([$({inputs:["buttonText","contentType","fileToKey","headerHint","headerTitle","identityId","level","path","placeholderHint","track"]})],t.AmplifyS3ImagePicker),t.AmplifyS3Text=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement},t.AmplifyS3Text.decorators=[{type:e.Component,args:[{selector:"amplify-s3-text",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["body","contentType","fallbackText","identityId","level","path","textKey","track"]}]}],t.AmplifyS3Text.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},t.AmplifyS3Text=E([$({inputs:["body","contentType","fallbackText","identityId","level","path","textKey","track"]})],t.AmplifyS3Text),t.AmplifyS3TextPicker=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement},t.AmplifyS3TextPicker.decorators=[{type:e.Component,args:[{selector:"amplify-s3-text-picker",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["contentType","fallbackText","fileToKey","identityId","level","path","track"]}]}],t.AmplifyS3TextPicker.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},t.AmplifyS3TextPicker=E([$({inputs:["contentType","fallbackText","fileToKey","identityId","level","path","track"]})],t.AmplifyS3TextPicker);var Et=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};Et.decorators=[{type:e.Component,args:[{selector:"amplify-section",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["role"]}]}],Et.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},Et=E([$({inputs:["role"]})],Et);var Dt=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};Dt.decorators=[{type:e.Component,args:[{selector:"amplify-select",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["fieldId","handleInputChange","options","selected"]}]}],Dt.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},Dt=E([$({inputs:["fieldId","handleInputChange","options","selected"]})],Dt);var wt=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};wt.decorators=[{type:e.Component,args:[{selector:"amplify-select-mfa-type",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["MFATypes","authData","handleSubmit"]}]}],wt.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},wt=E([$({inputs:["MFATypes","authData","handleSubmit"]})],wt);var Ot=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};Ot.decorators=[{type:e.Component,args:[{selector:"amplify-sign-in",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["federated","formFields","handleAuthStateChange","handleSubmit","headerText","hideSignUp","submitButtonText","usernameAlias"]}]}],Ot.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},Ot=E([$({inputs:["federated","formFields","handleAuthStateChange","handleSubmit","headerText","hideSignUp","submitButtonText","usernameAlias"]})],Ot);var Rt=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};Rt.decorators=[{type:e.Component,args:[{selector:"amplify-sign-in-button",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["provider"]}]}],Rt.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},Rt=E([$({inputs:["provider"]})],Rt);var kt=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};kt.decorators=[{type:e.Component,args:[{selector:"amplify-sign-out",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["buttonText","handleAuthStateChange"]}]}],kt.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},kt=E([$({inputs:["buttonText","handleAuthStateChange"]})],kt);var Mt=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};Mt.decorators=[{type:e.Component,args:[{selector:"amplify-sign-up",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["formFields","handleAuthStateChange","handleSignUp","handleSubmit","haveAccountText","headerText","signInText","submitButtonText","usernameAlias","validationErrors"]}]}],Mt.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},Mt=E([$({inputs:["formFields","handleAuthStateChange","handleSignUp","handleSubmit","haveAccountText","headerText","signInText","submitButtonText","usernameAlias","validationErrors"]})],Mt);var Ft=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};Ft.decorators=[{type:e.Component,args:[{selector:"amplify-strike",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>"}]}],Ft.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},t.AmplifyToast=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement},t.AmplifyToast.decorators=[{type:e.Component,args:[{selector:"amplify-toast",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["handleClose","message"]}]}],t.AmplifyToast.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},t.AmplifyToast=E([$({inputs:["handleClose","message"]})],t.AmplifyToast);var Nt=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};Nt.decorators=[{type:e.Component,args:[{selector:"amplify-tooltip",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["shouldAutoShow","text"]}]}],Nt.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},Nt=E([$({inputs:["shouldAutoShow","text"]})],Nt);var Bt=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};Bt.decorators=[{type:e.Component,args:[{selector:"amplify-totp-setup",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["handleAuthStateChange","handleComplete","headerText","issuer","standalone","user"]}]}],Bt.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},Bt=E([$({inputs:["handleAuthStateChange","handleComplete","headerText","issuer","standalone","user"]})],Bt);var Ut=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};Ut.decorators=[{type:e.Component,args:[{selector:"amplify-username-field",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["disabled","fieldId","handleInputChange","hint","inputProps","label","placeholder","required","value"]}]}],Ut.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},Ut=E([$({inputs:["disabled","fieldId","handleInputChange","hint","inputProps","label","placeholder","required","value"]})],Ut);var zt=function(t,e,n){this.z=n,t.detach(),this.el=e.nativeElement};zt.decorators=[{type:e.Component,args:[{selector:"amplify-verify-contact",changeDetection:e.ChangeDetectionStrategy.OnPush,template:"<ng-content></ng-content>",inputs:["handleAuthStateChange","user"]}]}],zt.ctorParameters=function(){return[{type:e.ChangeDetectorRef},{type:e.ElementRef},{type:e.NgZone}]},zt=E([$({inputs:["handleAuthStateChange","user"]})],zt);var _t=function(){this.autocomplete="new-password",this.disabled=!1,this.initialValue="",this.label="",this.placeholder="",this.required=!0,this.countryDialCodes=o.countryDialCodes};_t.decorators=[{type:e.Component,args:[{selector:"amplify-phone-number-field",template:'<div\n class="amplify-flex amplify-phonenumberfield"\n amplify-field-group\n style="gap: 0px"\n>\n <div class="amplify-field-group__outer-start">\n <div\n class=" amplify-flex amplify-field amplify-selectfield amplify-countrycodeselect"\n style="flex-direction: column"\n >\n <amplify-form-select\n name="country_code"\n label="Country Code"\n [id]="selectFieldId"\n [items]="countryDialCodes"\n [defaultValue]="defaultCountryCode"\n ></amplify-form-select>\n </div>\n </div>\n\n <label class="sr-only amplify-label" [for]="textFieldId">\n {{ label }}\n </label>\n <input\n class="amplify-input"\n [id]="textFieldId"\n [type]="type"\n [name]="name"\n [placeholder]="placeholder"\n [required]="required"\n [value]="initialValue"\n [attr.disabled]="disabled ? \'\' : null"\n [autocomplete]="autocomplete"\n />\n</div>\n'}]}],_t.propDecorators={autocomplete:[{type:e.Input}],disabled:[{type:e.Input}],defaultCountryCode:[{type:e.Input}],selectFieldId:[{type:e.Input}],textFieldId:[{type:e.Input}],initialValue:[{type:e.Input}],label:[{type:e.Input}],name:[{type:e.Input}],placeholder:[{type:e.Input}],required:[{type:e.Input}],type:[{type:e.Input}]},customElements.define("amplify-button",p.AmplifyButton),customElements.define("amplify-input",p.AmplifyInput),customElements.define("amplify-toast",p.AmplifyToast),customElements.define("amplify-chatbot",p.AmplifyChatbot),customElements.define("amplify-s3-album",p.AmplifyS3Album),customElements.define("amplify-s3-image-picker",p.AmplifyS3ImagePicker),customElements.define("amplify-s3-text",p.AmplifyS3Text),customElements.define("amplify-s3-text-picker",p.AmplifyS3TextPicker),customElements.define("amplify-s3-image",p.AmplifyS3Image),customElements.define("amplify-picker",p.AmplifyPicker),customElements.define("amplify-photo-picker",p.AmplifyPhotoPicker);var qt=function(){};qt.decorators=[{type:e.NgModule,args:[{declarations:[t.AmplifyChatbot,t.AmplifyToast,t.AmplifyInput,t.AmplifyButton,t.AmplifyS3Album,t.AmplifyS3ImagePicker,t.AmplifyS3Text,t.AmplifyS3TextPicker,t.AmplifyS3Image,t.AmplifyPicker,t.AmplifyPhotoPicker,b,M,F,Z,q,h,x,G,C,R,T,I,S,A,B,U,z,V,_,j,L,W,H,_t],imports:[n.CommonModule],exports:[t.AmplifyChatbot,t.AmplifyToast,t.AmplifyInput,t.AmplifyButton,t.AmplifyS3Album,t.AmplifyS3ImagePicker,t.AmplifyS3Text,t.AmplifyS3TextPicker,t.AmplifyS3Image,t.AmplifyPicker,t.AmplifyPhotoPicker,b,M,Z,q,h],schemas:[e.CUSTOM_ELEMENTS_SCHEMA]}]}],t.AmplifyAuthenticatorComponent=b,t.AmplifyConfirmSignInComponent=C,t.AmplifyConfirmSignUpComponent=x,t.AmplifyErrorComponent=q,t.AmplifyFederatedSignInButtonComponent=S,t.AmplifyFederatedSignInComponent=I,t.AmplifyForceNewPasswordComponent=T,t.AmplifyFormFieldComponent=Z,t.AmplifyResetPasswordComponent=A,t.AmplifySetupTotpComponent=R,t.AmplifySignInComponent=M,t.AmplifySignUpComponent=F,t.AmplifySlotDirective=h,t.AmplifyVerifyUserComponent=B,t.AuthPropService=g,t.ConfirmResetPasswordComponent=U,t.ConfirmVerifyUserComponent=z,t.StateMachineService=y,t.UiAngularModule=qt,t.getAttributeMap=N,t["ɵa"]=$,t["ɵb"]=b,t["ɵc"]=M,t["ɵd"]=F,t["ɵe"]=Z,t["ɵf"]=q,t["ɵg"]=x,t["ɵh"]=G,t["ɵi"]=C,t["ɵj"]=R,t["ɵk"]=T,t["ɵl"]=I,t["ɵm"]=S,t["ɵn"]=A,t["ɵo"]=B,t["ɵp"]=U,t["ɵq"]=z,t["ɵr"]=V,t["ɵs"]=_,t["ɵt"]=j,t["ɵu"]=L,t["ɵv"]=W,t["ɵw"]=H,t["ɵx"]=_t,Object.defineProperty(t,"__esModule",{value:!0})}));
|
|
2
2
|
//# sourceMappingURL=aws-amplify-ui-angular.umd.min.js.map
|