-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path5239.c28d4f53abe01d25.js
1 lines (1 loc) · 93.6 KB
/
5239.c28d4f53abe01d25.js
1
"use strict";(self.webpackChunkmaterial_angular_io=self.webpackChunkmaterial_angular_io||[]).push([[5239],{9349:(te,H,c)=>{c.d(H,{IC:()=>R,Ky:()=>Y,Lq:()=>F,aC:()=>P});var e=c(3353),x=c(4650),n=c(1281),_=c(8896),A=c(8929),w=c(3753),E=c(7568),N=c(7625),T=c(6895);const L=(0,e.i$)({passive:!0});let F=(()=>{class v{constructor(d,r){this._platform=d,this._ngZone=r,this._monitoredElements=new Map}monitor(d){if(!this._platform.isBrowser)return _.E;const r=(0,n.fI)(d),h=this._monitoredElements.get(r);if(h)return h.subject;const s=new A.xQ,b="cdk-text-field-autofilled",m=g=>{"cdk-text-field-autofill-start"!==g.animationName||r.classList.contains(b)?"cdk-text-field-autofill-end"===g.animationName&&r.classList.contains(b)&&(r.classList.remove(b),this._ngZone.run(()=>s.next({target:g.target,isAutofilled:!1}))):(r.classList.add(b),this._ngZone.run(()=>s.next({target:g.target,isAutofilled:!0})))};return this._ngZone.runOutsideAngular(()=>{r.addEventListener("animationstart",m,L),r.classList.add("cdk-text-field-autofill-monitored")}),this._monitoredElements.set(r,{subject:s,unlisten:()=>{r.removeEventListener("animationstart",m,L)}}),s}stopMonitoring(d){const r=(0,n.fI)(d),h=this._monitoredElements.get(r);h&&(h.unlisten(),h.subject.complete(),r.classList.remove("cdk-text-field-autofill-monitored"),r.classList.remove("cdk-text-field-autofilled"),this._monitoredElements.delete(r))}ngOnDestroy(){this._monitoredElements.forEach((d,r)=>this.stopMonitoring(r))}}return v.\u0275fac=function(d){return new(d||v)(x.LFG(e.t4),x.LFG(x.R0b))},v.\u0275prov=x.Yz7({token:v,factory:v.\u0275fac,providedIn:"root"}),v})(),P=(()=>{class v{constructor(d,r){this._elementRef=d,this._autofillMonitor=r,this.cdkAutofill=new x.vpe}ngOnInit(){this._autofillMonitor.monitor(this._elementRef).subscribe(d=>this.cdkAutofill.emit(d))}ngOnDestroy(){this._autofillMonitor.stopMonitoring(this._elementRef)}}return v.\u0275fac=function(d){return new(d||v)(x.Y36(x.SBq),x.Y36(F))},v.\u0275dir=x.lG2({type:v,selectors:[["","cdkAutofill",""]],outputs:{cdkAutofill:"cdkAutofill"}}),v})(),R=(()=>{class v{constructor(d,r,h,s){this._elementRef=d,this._platform=r,this._ngZone=h,this._destroyed=new A.xQ,this._enabled=!0,this._previousMinRows=-1,this._isViewInited=!1,this._handleFocusEvent=b=>{this._hasFocus="focus"===b.type},this._document=s,this._textareaElement=this._elementRef.nativeElement}get minRows(){return this._minRows}set minRows(d){this._minRows=(0,n.su)(d),this._setMinHeight()}get maxRows(){return this._maxRows}set maxRows(d){this._maxRows=(0,n.su)(d),this._setMaxHeight()}get enabled(){return this._enabled}set enabled(d){d=(0,n.Ig)(d),this._enabled!==d&&((this._enabled=d)?this.resizeToFitContent(!0):this.reset())}get placeholder(){return this._textareaElement.placeholder}set placeholder(d){this._cachedPlaceholderHeight=void 0,d?this._textareaElement.setAttribute("placeholder",d):this._textareaElement.removeAttribute("placeholder"),this._cacheTextareaPlaceholderHeight()}_setMinHeight(){const d=this.minRows&&this._cachedLineHeight?this.minRows*this._cachedLineHeight+"px":null;d&&(this._textareaElement.style.minHeight=d)}_setMaxHeight(){const d=this.maxRows&&this._cachedLineHeight?this.maxRows*this._cachedLineHeight+"px":null;d&&(this._textareaElement.style.maxHeight=d)}ngAfterViewInit(){this._platform.isBrowser&&(this._initialHeight=this._textareaElement.style.height,this.resizeToFitContent(),this._ngZone.runOutsideAngular(()=>{const d=this._getWindow();(0,w.R)(d,"resize").pipe((0,E.e)(16),(0,N.R)(this._destroyed)).subscribe(()=>this.resizeToFitContent(!0)),this._textareaElement.addEventListener("focus",this._handleFocusEvent),this._textareaElement.addEventListener("blur",this._handleFocusEvent)}),this._isViewInited=!0,this.resizeToFitContent(!0))}ngOnDestroy(){this._textareaElement.removeEventListener("focus",this._handleFocusEvent),this._textareaElement.removeEventListener("blur",this._handleFocusEvent),this._destroyed.next(),this._destroyed.complete()}_cacheTextareaLineHeight(){if(this._cachedLineHeight)return;let d=this._textareaElement.cloneNode(!1);d.rows=1,d.style.position="absolute",d.style.visibility="hidden",d.style.border="none",d.style.padding="0",d.style.height="",d.style.minHeight="",d.style.maxHeight="",d.style.overflow="hidden",this._textareaElement.parentNode.appendChild(d),this._cachedLineHeight=d.clientHeight,d.remove(),this._setMinHeight(),this._setMaxHeight()}_measureScrollHeight(){const d=this._textareaElement,r=d.style.marginBottom||"",h=this._platform.FIREFOX,s=h&&this._hasFocus,b=h?"cdk-textarea-autosize-measuring-firefox":"cdk-textarea-autosize-measuring";s&&(d.style.marginBottom=`${d.clientHeight}px`),d.classList.add(b);const m=d.scrollHeight-4;return d.classList.remove(b),s&&(d.style.marginBottom=r),m}_cacheTextareaPlaceholderHeight(){if(!this._isViewInited||null!=this._cachedPlaceholderHeight)return;if(!this.placeholder)return void(this._cachedPlaceholderHeight=0);const d=this._textareaElement.value;this._textareaElement.value=this._textareaElement.placeholder,this._cachedPlaceholderHeight=this._measureScrollHeight(),this._textareaElement.value=d}ngDoCheck(){this._platform.isBrowser&&this.resizeToFitContent()}resizeToFitContent(d=!1){if(!this._enabled||(this._cacheTextareaLineHeight(),this._cacheTextareaPlaceholderHeight(),!this._cachedLineHeight))return;const r=this._elementRef.nativeElement,h=r.value;if(!d&&this._minRows===this._previousMinRows&&h===this._previousValue)return;const s=this._measureScrollHeight(),b=Math.max(s,this._cachedPlaceholderHeight||0);r.style.height=`${b}px`,this._ngZone.runOutsideAngular(()=>{typeof requestAnimationFrame<"u"?requestAnimationFrame(()=>this._scrollToCaretPosition(r)):setTimeout(()=>this._scrollToCaretPosition(r))}),this._previousValue=h,this._previousMinRows=this._minRows}reset(){void 0!==this._initialHeight&&(this._textareaElement.style.height=this._initialHeight)}_noopInputHandler(){}_getDocument(){return this._document||document}_getWindow(){return this._getDocument().defaultView||window}_scrollToCaretPosition(d){const{selectionStart:r,selectionEnd:h}=d;!this._destroyed.isStopped&&this._hasFocus&&d.setSelectionRange(r,h)}}return v.\u0275fac=function(d){return new(d||v)(x.Y36(x.SBq),x.Y36(e.t4),x.Y36(x.R0b),x.Y36(T.K0,8))},v.\u0275dir=x.lG2({type:v,selectors:[["textarea","cdkTextareaAutosize",""]],hostAttrs:["rows","1",1,"cdk-textarea-autosize"],hostBindings:function(d,r){1&d&&x.NdJ("input",function(){return r._noopInputHandler()})},inputs:{minRows:["cdkAutosizeMinRows","minRows"],maxRows:["cdkAutosizeMaxRows","maxRows"],enabled:["cdkTextareaAutosize","enabled"],placeholder:"placeholder"},exportAs:["cdkTextareaAutosize"]}),v})(),Y=(()=>{class v{}return v.\u0275fac=function(d){return new(d||v)},v.\u0275mod=x.oAB({type:v}),v.\u0275inj=x.cJS({}),v})()},5239:(te,H,c)=>{c.r(H),c.d(H,{PizzaPartyAnnotatedComponent:()=>Y,PizzaPartyComponent:()=>P,SnackBarAnnotatedComponentExample:()=>R,SnackBarComponentExample:()=>F,SnackBarExamplesModule:()=>h,SnackBarHarnessExample:()=>d,SnackBarOverviewExample:()=>v,SnackBarPositionExample:()=>M});var e=c(4650),x=c(4006),n=c(4859),_=c(284),A=c(4385),w=c(7009),E=c(9549),N=c(3238);const T="mat-form-field[_ngcontent-%COMP%] {\n margin-right: 12px;\n}";function L(s,b){1&s&&e._uU(0,"Hello from the snackbar")}let F=(()=>{class s{constructor(m){this._snackBar=m,this.durationInSeconds=5}openSnackBar(){this._snackBar.openFromComponent(P,{duration:1e3*this.durationInSeconds})}}return s.\u0275fac=function(m){return new(m||s)(e.Y36(w.ux))},s.\u0275cmp=e.Xpm({type:s,selectors:[["snack-bar-component-example"]],decls:6,vars:1,consts:[["appearance","fill"],["type","number","matInput","",3,"ngModel","ngModelChange"],["mat-stroked-button","","aria-label","Show an example snack-bar",3,"click"]],template:function(m,g){1&m&&(e.TgZ(0,"mat-form-field",0)(1,"mat-label"),e._uU(2,"Snack bar duration (seconds)"),e.qZA(),e.TgZ(3,"input",1),e.NdJ("ngModelChange",function(I){return g.durationInSeconds=I}),e.qZA()(),e.TgZ(4,"button",2),e.NdJ("click",function(){return g.openSnackBar()}),e._uU(5," Pizza party\n"),e.qZA()),2&m&&(e.xp6(3),e.Q6J("ngModel",g.durationInSeconds))},dependencies:[x.Fj,x.wV,x.JJ,x.On,n.lW,_.Nt,E.KE,E.hX],styles:["mat-form-field[_ngcontent-%COMP%] {\n margin-right: 12px;\n}"]}),s})(),P=(()=>{class s{}return s.\u0275fac=function(m){return new(m||s)},s.\u0275cmp=e.Xpm({type:s,selectors:[["snack-bar-component-example-snack"]],decls:2,vars:0,consts:[[1,"example-pizza-party"]],template:function(m,g){1&m&&(e.TgZ(0,"span",0),e._uU(1," Pizza party!!! \u{1f355}\n"),e.qZA())},styles:[".example-pizza-party[_ngcontent-%COMP%] {\n color: hotpink;\n }"]}),s})(),R=(()=>{class s{constructor(m){this._snackBar=m,this.durationInSeconds=5}openSnackBar(){this._snackBar.openFromComponent(Y,{duration:1e3*this.durationInSeconds})}}return s.\u0275fac=function(m){return new(m||s)(e.Y36(w.ux))},s.\u0275cmp=e.Xpm({type:s,selectors:[["snack-bar-annotated-component-example"]],decls:6,vars:1,consts:[["appearance","fill"],["type","number","matInput","",3,"ngModel","ngModelChange"],["mat-stroked-button","","aria-label","Show an example snack-bar",3,"click"]],template:function(m,g){1&m&&(e.TgZ(0,"mat-form-field",0)(1,"mat-label"),e._uU(2,"Snack bar duration (seconds)"),e.qZA(),e.TgZ(3,"input",1),e.NdJ("ngModelChange",function(I){return g.durationInSeconds=I}),e.qZA()(),e.TgZ(4,"button",2),e.NdJ("click",function(){return g.openSnackBar()}),e._uU(5," Pizza party\n"),e.qZA()),2&m&&(e.xp6(3),e.Q6J("ngModel",g.durationInSeconds))},dependencies:[x.Fj,x.wV,x.JJ,x.On,n.lW,_.Nt,E.KE,E.hX],styles:[T]}),s})(),Y=(()=>{class s{constructor(){this.snackBarRef=(0,e.f3M)(w.OX)}}return s.\u0275fac=function(m){return new(m||s)},s.\u0275cmp=e.Xpm({type:s,selectors:[["snack-bar-annotated-component-example-snack"]],decls:5,vars:0,consts:[["matSnackBarLabel","",1,"example-pizza-party"],["matSnackBarActions",""],["mat-button","","matSnackBarAction","",3,"click"]],template:function(m,g){1&m&&(e.TgZ(0,"span",0),e._uU(1," Pizza party!!!\n"),e.qZA(),e.TgZ(2,"span",1)(3,"button",2),e.NdJ("click",function(){return g.snackBarRef.dismissWithAction()}),e._uU(4,"\u{1f355}"),e.qZA()())},dependencies:[n.lW,w.Mm,w.ZZ,w.Wf],styles:["[_nghost-%COMP%] {\n display: flex;\n }\n\n .example-pizza-party[_ngcontent-%COMP%] {\n color: hotpink;\n }"]}),s})(),v=(()=>{class s{constructor(m){this._snackBar=m}openSnackBar(m,g){this._snackBar.open(m,g)}}return s.\u0275fac=function(m){return new(m||s)(e.Y36(w.ux))},s.\u0275cmp=e.Xpm({type:s,selectors:[["snack-bar-overview-example"]],decls:12,vars:0,consts:[["appearance","fill"],["matInput","","value","Disco party!"],["message",""],["matInput","","value","Dance"],["action",""],["mat-stroked-button","",3,"click"]],template:function(m,g){if(1&m){const S=e.EpF();e.TgZ(0,"mat-form-field",0)(1,"mat-label"),e._uU(2,"Message"),e.qZA(),e._UZ(3,"input",1,2),e.qZA(),e.TgZ(5,"mat-form-field",0)(6,"mat-label"),e._uU(7,"Action"),e.qZA(),e._UZ(8,"input",3,4),e.qZA(),e.TgZ(10,"button",5),e.NdJ("click",function(){e.CHM(S);const V=e.MAs(4),Z=e.MAs(9);return e.KtG(g.openSnackBar(V.value,Z.value))}),e._uU(11,"Show snack-bar"),e.qZA()}},dependencies:[n.lW,_.Nt,E.KE,E.hX],styles:[T]}),s})(),M=(()=>{class s{constructor(m){this._snackBar=m,this.horizontalPosition="start",this.verticalPosition="bottom"}openSnackBar(){this._snackBar.open("Cannonball!!","Splash",{horizontalPosition:this.horizontalPosition,verticalPosition:this.verticalPosition})}}return s.\u0275fac=function(m){return new(m||s)(e.Y36(w.ux))},s.\u0275cmp=e.Xpm({type:s,selectors:[["snack-bar-position-example"]],decls:24,vars:2,consts:[["appearance","fill"],[3,"value","valueChange"],["value","start"],["value","center"],["value","end"],["value","left"],["value","right"],["value","top"],["value","bottom"],["mat-stroked-button","","aria-label","Show an example snack-bar",3,"click"]],template:function(m,g){1&m&&(e.TgZ(0,"mat-form-field",0)(1,"mat-label"),e._uU(2,"Horizontal position"),e.qZA(),e.TgZ(3,"mat-select",1),e.NdJ("valueChange",function(I){return g.horizontalPosition=I}),e.TgZ(4,"mat-option",2),e._uU(5,"Start"),e.qZA(),e.TgZ(6,"mat-option",3),e._uU(7,"Center"),e.qZA(),e.TgZ(8,"mat-option",4),e._uU(9,"End"),e.qZA(),e.TgZ(10,"mat-option",5),e._uU(11,"Left"),e.qZA(),e.TgZ(12,"mat-option",6),e._uU(13,"Right"),e.qZA()()(),e.TgZ(14,"mat-form-field",0)(15,"mat-label"),e._uU(16,"Vertical position"),e.qZA(),e.TgZ(17,"mat-select",1),e.NdJ("valueChange",function(I){return g.verticalPosition=I}),e.TgZ(18,"mat-option",7),e._uU(19,"Top"),e.qZA(),e.TgZ(20,"mat-option",8),e._uU(21,"Bottom"),e.qZA()()(),e.TgZ(22,"button",9),e.NdJ("click",function(){return g.openSnackBar()}),e._uU(23," Pool party!\n"),e.qZA()),2&m&&(e.xp6(3),e.Q6J("value",g.horizontalPosition),e.xp6(14),e.Q6J("value",g.verticalPosition))},dependencies:[n.lW,E.KE,E.hX,A.gD,N.ey],styles:[T]}),s})(),d=(()=>{class s{constructor(m){this.snackBar=m}open(m,g="",S){return this.snackBar.open(m,g,S)}}return s.\u0275fac=function(m){return new(m||s)(e.Y36(w.ux))},s.\u0275cmp=e.Xpm({type:s,selectors:[["snack-bar-harness-example"]],decls:1,vars:0,template:function(m,g){1&m&&e.YNc(0,L,1,0,"ng-template")},encapsulation:2}),s})(),h=(()=>{class s{}return s.\u0275fac=function(m){return new(m||s)},s.\u0275mod=e.oAB({type:s}),s.\u0275inj=e.cJS({imports:[x.u5,n.ot,_.c,A.LD,w.ZX]}),s})()},9549:(te,H,c)=>{c.d(H,{Eo:()=>f,G_:()=>k,KE:()=>$,R9:()=>ue,TO:()=>fe,bx:()=>Q,hX:()=>ie,lN:()=>B,qo:()=>pe});var e=c(4650),x=c(445),n=c(3353),_=c(8929),A=c(6787),w=c(7625),E=c(6895),N=c(1281),T=c(7340),L=c(9643),F=c(3238);const P=["matFormFieldNotchedOutline",""],R=["*"],Y=["textField"],v=["iconPrefixContainer"],M=["textPrefixContainer"];function d(l,u){1&l&&e._UZ(0,"span",19)}function r(l,u){if(1&l){const i=e.EpF();e.TgZ(0,"label",17),e.NdJ("cdkObserveContent",function(){e.CHM(i);const y=e.oxw(2);return e.KtG(y._refreshOutlineNotchWidth())}),e.Hsn(1,1),e.YNc(2,d,1,0,"span",18),e.qZA()}if(2&l){const i=e.oxw(2);e.Q6J("floating",i._shouldLabelFloat())("cdkObserveContentDisabled",!i._hasOutline())("id",i._labelId),e.uIk("for",i._control.id)("aria-owns",i._control.id),e.xp6(2),e.Q6J("ngIf",!i.hideRequiredMarker&&i._control.required)}}function h(l,u){if(1&l&&e.YNc(0,r,3,6,"label",16),2&l){const i=e.oxw();e.Q6J("ngIf",i._hasFloatingLabel())}}function s(l,u){1&l&&e._UZ(0,"div",20)}function b(l,u){}function m(l,u){if(1&l&&e.YNc(0,b,0,0,"ng-template",22),2&l){e.oxw(2);const i=e.MAs(1);e.Q6J("ngTemplateOutlet",i)}}function g(l,u){if(1&l&&(e.TgZ(0,"div",21),e.YNc(1,m,1,1,"ng-template",9),e.qZA()),2&l){const i=e.oxw();e.Q6J("matFormFieldNotchedOutlineOpen",i._shouldLabelFloat())("matFormFieldNotchedOutlineLabelWidth",i._labelWidth),e.xp6(1),e.Q6J("ngIf",!i._forceDisplayInfixLabel())}}function S(l,u){1&l&&(e.TgZ(0,"div",23,24),e.Hsn(2,2),e.qZA())}function I(l,u){1&l&&(e.TgZ(0,"div",25,26),e.Hsn(2,3),e.qZA())}function V(l,u){}function Z(l,u){if(1&l&&e.YNc(0,V,0,0,"ng-template",22),2&l){e.oxw();const i=e.MAs(1);e.Q6J("ngTemplateOutlet",i)}}function G(l,u){1&l&&(e.TgZ(0,"div",27),e.Hsn(1,4),e.qZA())}function J(l,u){1&l&&(e.TgZ(0,"div",28),e.Hsn(1,5),e.qZA())}function X(l,u){1&l&&e._UZ(0,"div",29)}function U(l,u){if(1&l&&(e.TgZ(0,"div",30),e.Hsn(1,6),e.qZA()),2&l){const i=e.oxw();e.Q6J("@transitionMessages",i._subscriptAnimationState)}}function ce(l,u){if(1&l&&(e.TgZ(0,"mat-hint",34),e._uU(1),e.qZA()),2&l){const i=e.oxw(2);e.Q6J("id",i._hintLabelId),e.xp6(1),e.Oqu(i.hintLabel)}}function me(l,u){if(1&l&&(e.TgZ(0,"div",31),e.YNc(1,ce,2,2,"mat-hint",32),e.Hsn(2,7),e._UZ(3,"div",33),e.Hsn(4,8),e.qZA()),2&l){const i=e.oxw();e.Q6J("@transitionMessages",i._subscriptAnimationState),e.xp6(1),e.Q6J("ngIf",i.hintLabel)}}const ye=["*",[["mat-label"]],[["","matPrefix",""],["","matIconPrefix",""]],[["","matTextPrefix",""]],[["","matTextSuffix",""]],[["","matSuffix",""],["","matIconSuffix",""]],[["mat-error"],["","matError",""]],[["mat-hint",3,"align","end"]],[["mat-hint","align","end"]]],Me=["*","mat-label","[matPrefix], [matIconPrefix]","[matTextPrefix]","[matTextSuffix]","[matSuffix], [matIconSuffix]","mat-error, [matError]","mat-hint:not([align='end'])","mat-hint[align='end']"];let ie=(()=>{class l{}return l.\u0275fac=function(i){return new(i||l)},l.\u0275dir=e.lG2({type:l,selectors:[["mat-label"]]}),l})(),ne=0;const q=new e.OlP("MatError");let fe=(()=>{class l{constructor(i,o){this.id="mat-mdc-error-"+ne++,i||o.nativeElement.setAttribute("aria-live","polite")}}return l.\u0275fac=function(i){return new(i||l)(e.$8M("aria-live"),e.Y36(e.SBq))},l.\u0275dir=e.lG2({type:l,selectors:[["mat-error"],["","matError",""]],hostAttrs:["aria-atomic","true",1,"mat-mdc-form-field-error","mat-mdc-form-field-bottom-align"],hostVars:1,hostBindings:function(i,o){2&i&&e.Ikx("id",o.id)},inputs:{id:"id"},features:[e._Bn([{provide:q,useExisting:l}])]}),l})(),he=0,Q=(()=>{class l{constructor(){this.align="start",this.id="mat-mdc-hint-"+he++}}return l.\u0275fac=function(i){return new(i||l)},l.\u0275dir=e.lG2({type:l,selectors:[["mat-hint"]],hostAttrs:[1,"mat-mdc-form-field-hint","mat-mdc-form-field-bottom-align"],hostVars:4,hostBindings:function(i,o){2&i&&(e.Ikx("id",o.id),e.uIk("align",null),e.ekj("mat-mdc-form-field-hint-end","end"===o.align))},inputs:{align:"align",id:"id"}}),l})();const j=new e.OlP("MatPrefix");let pe=(()=>{class l{constructor(i){this._isText=!1,this._isText=i.nativeElement.hasAttribute("matTextPrefix")}}return l.\u0275fac=function(i){return new(i||l)(e.Y36(e.SBq))},l.\u0275dir=e.lG2({type:l,selectors:[["","matPrefix",""],["","matIconPrefix",""],["","matTextPrefix",""]],features:[e._Bn([{provide:j,useExisting:l}])]}),l})();const ae=new e.OlP("MatSuffix");let ue=(()=>{class l{constructor(i){this._isText=!1,this._isText=i.nativeElement.hasAttribute("matTextSuffix")}}return l.\u0275fac=function(i){return new(i||l)(e.Y36(e.SBq))},l.\u0275dir=e.lG2({type:l,selectors:[["","matSuffix",""],["","matIconSuffix",""],["","matTextSuffix",""]],features:[e._Bn([{provide:ae,useExisting:l}])]}),l})(),le=(()=>{class l{constructor(i){this._elementRef=i,this.floating=!1}getWidth(){return function _e(l){if(null!==l.offsetParent)return l.scrollWidth;const i=l.cloneNode(!0);i.style.setProperty("position","absolute"),i.style.setProperty("transform","translate(-9999px, -9999px)"),document.documentElement.appendChild(i);const o=i.scrollWidth;return i.remove(),o}(this._elementRef.nativeElement)}get element(){return this._elementRef.nativeElement}}return l.\u0275fac=function(i){return new(i||l)(e.Y36(e.SBq))},l.\u0275dir=e.lG2({type:l,selectors:[["label","matFormFieldFloatingLabel",""]],hostAttrs:[1,"mdc-floating-label","mat-mdc-floating-label"],hostVars:2,hostBindings:function(i,o){2&i&&e.ekj("mdc-floating-label--float-above",o.floating)},inputs:{floating:"floating"}}),l})();const oe="mdc-line-ripple--active",p="mdc-line-ripple--deactivating";let O=(()=>{class l{constructor(i,o){this._elementRef=i,this._handleTransitionEnd=y=>{const C=this._elementRef.nativeElement.classList,ee=C.contains(p);"opacity"===y.propertyName&&ee&&C.remove(oe,p)},o.runOutsideAngular(()=>{i.nativeElement.addEventListener("transitionend",this._handleTransitionEnd)})}activate(){const i=this._elementRef.nativeElement.classList;i.remove(p),i.add(oe)}deactivate(){this._elementRef.nativeElement.classList.add(p)}ngOnDestroy(){this._elementRef.nativeElement.removeEventListener("transitionend",this._handleTransitionEnd)}}return l.\u0275fac=function(i){return new(i||l)(e.Y36(e.SBq),e.Y36(e.R0b))},l.\u0275dir=e.lG2({type:l,selectors:[["div","matFormFieldLineRipple",""]],hostAttrs:[1,"mdc-line-ripple"]}),l})(),t=(()=>{class l{constructor(i,o){this._elementRef=i,this._ngZone=o,this.labelWidth=0,this.open=!1}ngAfterViewInit(){const i=this._elementRef.nativeElement.querySelector(".mdc-floating-label");i?(this._elementRef.nativeElement.classList.add("mdc-notched-outline--upgraded"),"function"==typeof requestAnimationFrame&&(i.style.transitionDuration="0s",this._ngZone.runOutsideAngular(()=>{requestAnimationFrame(()=>i.style.transitionDuration="")}))):this._elementRef.nativeElement.classList.add("mdc-notched-outline--no-label")}_getNotchWidth(){return this.open?this.labelWidth>0?`calc(${this.labelWidth}px * var(--mat-mdc-form-field-floating-label-scale, 0.75) + 9px)`:"0px":null}}return l.\u0275fac=function(i){return new(i||l)(e.Y36(e.SBq),e.Y36(e.R0b))},l.\u0275cmp=e.Xpm({type:l,selectors:[["div","matFormFieldNotchedOutline",""]],hostAttrs:[1,"mdc-notched-outline"],hostVars:2,hostBindings:function(i,o){2&i&&e.ekj("mdc-notched-outline--notched",o.open)},inputs:{labelWidth:["matFormFieldNotchedOutlineLabelWidth","labelWidth"],open:["matFormFieldNotchedOutlineOpen","open"]},attrs:P,ngContentSelectors:R,decls:4,vars:2,consts:[[1,"mdc-notched-outline__leading"],[1,"mdc-notched-outline__notch"],[1,"mdc-notched-outline__trailing"]],template:function(i,o){1&i&&(e.F$t(),e._UZ(0,"div",0),e.TgZ(1,"div",1),e.Hsn(2),e.qZA(),e._UZ(3,"div",2)),2&i&&(e.xp6(1),e.Udp("width",o._getNotchWidth()))},encapsulation:2,changeDetection:0}),l})();const a={transitionMessages:(0,T.X$)("transitionMessages",[(0,T.SB)("enter",(0,T.oB)({opacity:1,transform:"translateY(0%)"})),(0,T.eR)("void => enter",[(0,T.oB)({opacity:0,transform:"translateY(-5px)"}),(0,T.jt)("300ms cubic-bezier(0.55, 0, 0.55, 0.2)")])])};let f=(()=>{class l{}return l.\u0275fac=function(i){return new(i||l)},l.\u0275dir=e.lG2({type:l}),l})();const k=new e.OlP("MatFormField"),ge=new e.OlP("MAT_FORM_FIELD_DEFAULT_OPTIONS");let re=0,$=(()=>{class l{constructor(i,o,y,C,ee,W,ve,Ce){this._elementRef=i,this._changeDetectorRef=o,this._ngZone=y,this._dir=C,this._platform=ee,this._defaults=W,this._animationMode=ve,this._document=Ce,this._hideRequiredMarker=!1,this.color="primary",this._appearance="fill",this._subscriptSizing=null,this._hintLabel="",this._hasIconPrefix=!1,this._hasTextPrefix=!1,this._hasIconSuffix=!1,this._hasTextSuffix=!1,this._labelId="mat-mdc-form-field-label-"+re++,this._hintLabelId="mat-mdc-hint-"+re++,this._subscriptAnimationState="",this._labelWidth=0,this._destroyed=new _.xQ,this._isFocused=null,this._needsOutlineLabelOffsetUpdateOnStable=!1,W&&(W.appearance&&(this.appearance=W.appearance),this._hideRequiredMarker=Boolean(W?.hideRequiredMarker),W.color&&(this.color=W.color))}get hideRequiredMarker(){return this._hideRequiredMarker}set hideRequiredMarker(i){this._hideRequiredMarker=(0,N.Ig)(i)}get floatLabel(){return this._floatLabel||this._defaults?.floatLabel||"auto"}set floatLabel(i){i!==this._floatLabel&&(this._floatLabel=i,this._changeDetectorRef.markForCheck())}get appearance(){return this._appearance}set appearance(i){const o=this._appearance;this._appearance=i||this._defaults?.appearance||"fill","outline"===this._appearance&&this._appearance!==o&&(this._refreshOutlineNotchWidth(),this._needsOutlineLabelOffsetUpdateOnStable=!0)}get subscriptSizing(){return this._subscriptSizing||this._defaults?.subscriptSizing||"fixed"}set subscriptSizing(i){this._subscriptSizing=i||this._defaults?.subscriptSizing||"fixed"}get hintLabel(){return this._hintLabel}set hintLabel(i){this._hintLabel=i,this._processHints()}get _control(){return this._explicitFormFieldControl||this._formFieldControl}set _control(i){this._explicitFormFieldControl=i}ngAfterViewInit(){this._updateFocusState(),this._refreshOutlineNotchWidth(),this._document?.fonts?.ready?this._document.fonts.ready.then(()=>{this._refreshOutlineNotchWidth(),this._changeDetectorRef.markForCheck()}):setTimeout(()=>this._refreshOutlineNotchWidth(),100),this._subscriptAnimationState="enter",this._changeDetectorRef.detectChanges()}ngAfterContentInit(){this._assertFormFieldControl(),this._initializeControl(),this._initializeSubscript(),this._initializePrefixAndSuffix(),this._initializeOutlineLabelOffsetSubscriptions()}ngAfterContentChecked(){this._assertFormFieldControl()}ngOnDestroy(){this._destroyed.next(),this._destroyed.complete()}getLabelId(){return this._hasFloatingLabel()?this._labelId:null}getConnectedOverlayOrigin(){return this._textField||this._elementRef}_animateAndLockLabel(){this._hasFloatingLabel()&&(this.floatLabel="always")}_initializeControl(){const i=this._control;i.controlType&&this._elementRef.nativeElement.classList.add(`mat-mdc-form-field-type-${i.controlType}`),i.stateChanges.subscribe(()=>{this._updateFocusState(),this._syncDescribedByIds(),this._changeDetectorRef.markForCheck()}),i.ngControl&&i.ngControl.valueChanges&&i.ngControl.valueChanges.pipe((0,w.R)(this._destroyed)).subscribe(()=>this._changeDetectorRef.markForCheck())}_checkPrefixAndSuffixTypes(){this._hasIconPrefix=!!this._prefixChildren.find(i=>!i._isText),this._hasTextPrefix=!!this._prefixChildren.find(i=>i._isText),this._hasIconSuffix=!!this._suffixChildren.find(i=>!i._isText),this._hasTextSuffix=!!this._suffixChildren.find(i=>i._isText)}_initializePrefixAndSuffix(){this._checkPrefixAndSuffixTypes(),(0,A.T)(this._prefixChildren.changes,this._suffixChildren.changes).subscribe(()=>{this._checkPrefixAndSuffixTypes(),this._changeDetectorRef.markForCheck()})}_initializeSubscript(){this._hintChildren.changes.subscribe(()=>{this._processHints(),this._changeDetectorRef.markForCheck()}),this._errorChildren.changes.subscribe(()=>{this._syncDescribedByIds(),this._changeDetectorRef.markForCheck()}),this._validateHints(),this._syncDescribedByIds()}_assertFormFieldControl(){}_updateFocusState(){this._control.focused&&!this._isFocused?(this._isFocused=!0,this._lineRipple?.activate()):!this._control.focused&&(this._isFocused||null===this._isFocused)&&(this._isFocused=!1,this._lineRipple?.deactivate()),this._textField?.nativeElement.classList.toggle("mdc-text-field--focused",this._control.focused)}_initializeOutlineLabelOffsetSubscriptions(){this._prefixChildren.changes.subscribe(()=>this._needsOutlineLabelOffsetUpdateOnStable=!0),this._ngZone.runOutsideAngular(()=>{this._ngZone.onStable.pipe((0,w.R)(this._destroyed)).subscribe(()=>{this._needsOutlineLabelOffsetUpdateOnStable&&(this._needsOutlineLabelOffsetUpdateOnStable=!1,this._updateOutlineLabelOffset())})}),this._dir.change.pipe((0,w.R)(this._destroyed)).subscribe(()=>this._needsOutlineLabelOffsetUpdateOnStable=!0)}_shouldAlwaysFloat(){return"always"===this.floatLabel}_hasOutline(){return"outline"===this.appearance}_forceDisplayInfixLabel(){return!this._platform.isBrowser&&this._prefixChildren.length&&!this._shouldLabelFloat()}_hasFloatingLabel(){return!!this._labelChildNonStatic||!!this._labelChildStatic}_shouldLabelFloat(){return this._control.shouldLabelFloat||this._shouldAlwaysFloat()}_shouldForward(i){const o=this._control?this._control.ngControl:null;return o&&o[i]}_getDisplayedMessages(){return this._errorChildren&&this._errorChildren.length>0&&this._control.errorState?"error":"hint"}_refreshOutlineNotchWidth(){!this._hasOutline()||!this._floatingLabel||(this._labelWidth=this._floatingLabel.getWidth())}_processHints(){this._validateHints(),this._syncDescribedByIds()}_validateHints(){}_syncDescribedByIds(){if(this._control){let i=[];if(this._control.userAriaDescribedBy&&"string"==typeof this._control.userAriaDescribedBy&&i.push(...this._control.userAriaDescribedBy.split(" ")),"hint"===this._getDisplayedMessages()){const o=this._hintChildren?this._hintChildren.find(C=>"start"===C.align):null,y=this._hintChildren?this._hintChildren.find(C=>"end"===C.align):null;o?i.push(o.id):this._hintLabel&&i.push(this._hintLabelId),y&&i.push(y.id)}else this._errorChildren&&i.push(...this._errorChildren.map(o=>o.id));this._control.setDescribedByIds(i)}}_updateOutlineLabelOffset(){if(!this._platform.isBrowser||!this._hasOutline()||!this._floatingLabel)return;const i=this._floatingLabel.element;if(!this._iconPrefixContainer&&!this._textPrefixContainer)return void(i.style.transform="");if(!this._isAttachedToDom())return void(this._needsOutlineLabelOffsetUpdateOnStable=!0);const o=this._iconPrefixContainer?.nativeElement,y=this._textPrefixContainer?.nativeElement,C=o?.getBoundingClientRect().width??0,ee=y?.getBoundingClientRect().width??0;i.style.transform=`var(\n --mat-mdc-form-field-label-transform,\n translateY(-50%) translateX(calc(${"rtl"===this._dir.value?"-1":"1"} * (${C+ee}px + var(--mat-mdc-form-field-label-offset-x, 0px))))\n )`}_isAttachedToDom(){const i=this._elementRef.nativeElement;if(i.getRootNode){const o=i.getRootNode();return o&&o!==i}return document.documentElement.contains(i)}}return l.\u0275fac=function(i){return new(i||l)(e.Y36(e.SBq),e.Y36(e.sBO),e.Y36(e.R0b),e.Y36(x.Is),e.Y36(n.t4),e.Y36(ge,8),e.Y36(e.QbO,8),e.Y36(E.K0))},l.\u0275cmp=e.Xpm({type:l,selectors:[["mat-form-field"]],contentQueries:function(i,o,y){if(1&i&&(e.Suo(y,ie,5),e.Suo(y,ie,7),e.Suo(y,f,5),e.Suo(y,j,5),e.Suo(y,ae,5),e.Suo(y,q,5),e.Suo(y,Q,5)),2&i){let C;e.iGM(C=e.CRH())&&(o._labelChildNonStatic=C.first),e.iGM(C=e.CRH())&&(o._labelChildStatic=C.first),e.iGM(C=e.CRH())&&(o._formFieldControl=C.first),e.iGM(C=e.CRH())&&(o._prefixChildren=C),e.iGM(C=e.CRH())&&(o._suffixChildren=C),e.iGM(C=e.CRH())&&(o._errorChildren=C),e.iGM(C=e.CRH())&&(o._hintChildren=C)}},viewQuery:function(i,o){if(1&i&&(e.Gf(Y,5),e.Gf(v,5),e.Gf(M,5),e.Gf(le,5),e.Gf(t,5),e.Gf(O,5)),2&i){let y;e.iGM(y=e.CRH())&&(o._textField=y.first),e.iGM(y=e.CRH())&&(o._iconPrefixContainer=y.first),e.iGM(y=e.CRH())&&(o._textPrefixContainer=y.first),e.iGM(y=e.CRH())&&(o._floatingLabel=y.first),e.iGM(y=e.CRH())&&(o._notchedOutline=y.first),e.iGM(y=e.CRH())&&(o._lineRipple=y.first)}},hostAttrs:[1,"mat-mdc-form-field"],hostVars:42,hostBindings:function(i,o){2&i&&e.ekj("mat-mdc-form-field-label-always-float",o._shouldAlwaysFloat())("mat-mdc-form-field-has-icon-prefix",o._hasIconPrefix)("mat-mdc-form-field-has-icon-suffix",o._hasIconSuffix)("mat-form-field-invalid",o._control.errorState)("mat-form-field-disabled",o._control.disabled)("mat-form-field-autofilled",o._control.autofilled)("mat-form-field-no-animations","NoopAnimations"===o._animationMode)("mat-form-field-appearance-fill","fill"==o.appearance)("mat-form-field-appearance-outline","outline"==o.appearance)("mat-form-field-hide-placeholder",o._hasFloatingLabel()&&!o._shouldLabelFloat())("mat-focused",o._control.focused)("mat-primary","accent"!==o.color&&"warn"!==o.color)("mat-accent","accent"===o.color)("mat-warn","warn"===o.color)("ng-untouched",o._shouldForward("untouched"))("ng-touched",o._shouldForward("touched"))("ng-pristine",o._shouldForward("pristine"))("ng-dirty",o._shouldForward("dirty"))("ng-valid",o._shouldForward("valid"))("ng-invalid",o._shouldForward("invalid"))("ng-pending",o._shouldForward("pending"))},inputs:{hideRequiredMarker:"hideRequiredMarker",color:"color",floatLabel:"floatLabel",appearance:"appearance",subscriptSizing:"subscriptSizing",hintLabel:"hintLabel"},exportAs:["matFormField"],features:[e._Bn([{provide:k,useExisting:l}])],ngContentSelectors:Me,decls:18,vars:23,consts:[["labelTemplate",""],[1,"mat-mdc-text-field-wrapper","mdc-text-field",3,"click"],["textField",""],["class","mat-mdc-form-field-focus-overlay",4,"ngIf"],[1,"mat-mdc-form-field-flex"],["matFormFieldNotchedOutline","",3,"matFormFieldNotchedOutlineOpen","matFormFieldNotchedOutlineLabelWidth",4,"ngIf"],["class","mat-mdc-form-field-icon-prefix",4,"ngIf"],["class","mat-mdc-form-field-text-prefix",4,"ngIf"],[1,"mat-mdc-form-field-infix"],[3,"ngIf"],["class","mat-mdc-form-field-text-suffix",4,"ngIf"],["class","mat-mdc-form-field-icon-suffix",4,"ngIf"],["matFormFieldLineRipple","",4,"ngIf"],[1,"mat-mdc-form-field-subscript-wrapper","mat-mdc-form-field-bottom-align",3,"ngSwitch"],["class","mat-mdc-form-field-error-wrapper",4,"ngSwitchCase"],["class","mat-mdc-form-field-hint-wrapper",4,"ngSwitchCase"],["matFormFieldFloatingLabel","",3,"floating","cdkObserveContentDisabled","id","cdkObserveContent",4,"ngIf"],["matFormFieldFloatingLabel","",3,"floating","cdkObserveContentDisabled","id","cdkObserveContent"],["aria-hidden","true","class","mat-mdc-form-field-required-marker mdc-floating-label--required",4,"ngIf"],["aria-hidden","true",1,"mat-mdc-form-field-required-marker","mdc-floating-label--required"],[1,"mat-mdc-form-field-focus-overlay"],["matFormFieldNotchedOutline","",3,"matFormFieldNotchedOutlineOpen","matFormFieldNotchedOutlineLabelWidth"],[3,"ngTemplateOutlet"],[1,"mat-mdc-form-field-icon-prefix"],["iconPrefixContainer",""],[1,"mat-mdc-form-field-text-prefix"],["textPrefixContainer",""],[1,"mat-mdc-form-field-text-suffix"],[1,"mat-mdc-form-field-icon-suffix"],["matFormFieldLineRipple",""],[1,"mat-mdc-form-field-error-wrapper"],[1,"mat-mdc-form-field-hint-wrapper"],[3,"id",4,"ngIf"],[1,"mat-mdc-form-field-hint-spacer"],[3,"id"]],template:function(i,o){1&i&&(e.F$t(ye),e.YNc(0,h,1,1,"ng-template",null,0,e.W1O),e.TgZ(2,"div",1,2),e.NdJ("click",function(C){return o._control.onContainerClick&&o._control.onContainerClick(C)}),e.YNc(4,s,1,0,"div",3),e.TgZ(5,"div",4),e.YNc(6,g,2,3,"div",5),e.YNc(7,S,3,0,"div",6),e.YNc(8,I,3,0,"div",7),e.TgZ(9,"div",8),e.YNc(10,Z,1,1,"ng-template",9),e.Hsn(11),e.qZA(),e.YNc(12,G,2,0,"div",10),e.YNc(13,J,2,0,"div",11),e.qZA(),e.YNc(14,X,1,0,"div",12),e.qZA(),e.TgZ(15,"div",13),e.YNc(16,U,2,1,"div",14),e.YNc(17,me,5,2,"div",15),e.qZA()),2&i&&(e.xp6(2),e.ekj("mdc-text-field--filled",!o._hasOutline())("mdc-text-field--outlined",o._hasOutline())("mdc-text-field--no-label",!o._hasFloatingLabel())("mdc-text-field--disabled",o._control.disabled)("mdc-text-field--invalid",o._control.errorState),e.xp6(2),e.Q6J("ngIf",!o._hasOutline()&&!o._control.disabled),e.xp6(2),e.Q6J("ngIf",o._hasOutline()),e.xp6(1),e.Q6J("ngIf",o._hasIconPrefix),e.xp6(1),e.Q6J("ngIf",o._hasTextPrefix),e.xp6(2),e.Q6J("ngIf",!o._hasOutline()||o._forceDisplayInfixLabel()),e.xp6(2),e.Q6J("ngIf",o._hasTextSuffix),e.xp6(1),e.Q6J("ngIf",o._hasIconSuffix),e.xp6(1),e.Q6J("ngIf",!o._hasOutline()),e.xp6(1),e.ekj("mat-mdc-form-field-subscript-dynamic-size","dynamic"===o.subscriptSizing),e.Q6J("ngSwitch",o._getDisplayedMessages()),e.xp6(1),e.Q6J("ngSwitchCase","error"),e.xp6(1),e.Q6J("ngSwitchCase","hint"))},dependencies:[E.O5,E.tP,E.RF,E.n9,L.wD,Q,le,t,O],styles:['.mdc-text-field{border-top-left-radius:var(--mdc-shape-small, 4px);border-top-right-radius:var(--mdc-shape-small, 4px);border-bottom-right-radius:0;border-bottom-left-radius:0;display:inline-flex;align-items:baseline;padding:0 16px;position:relative;box-sizing:border-box;overflow:hidden;will-change:opacity,transform,color}.mdc-text-field .mdc-floating-label{top:50%;transform:translateY(-50%);pointer-events:none}.mdc-text-field__input{height:28px;width:100%;min-width:0;border:none;border-radius:0;background:none;appearance:none;padding:0}.mdc-text-field__input::-ms-clear{display:none}.mdc-text-field__input::-webkit-calendar-picker-indicator{display:none}.mdc-text-field__input:focus{outline:none}.mdc-text-field__input:invalid{box-shadow:none}@media all{.mdc-text-field__input::placeholder{opacity:0}}@media all{.mdc-text-field__input:-ms-input-placeholder{opacity:0}}@media all{.mdc-text-field--no-label .mdc-text-field__input::placeholder,.mdc-text-field--focused .mdc-text-field__input::placeholder{opacity:1}}@media all{.mdc-text-field--no-label .mdc-text-field__input:-ms-input-placeholder,.mdc-text-field--focused .mdc-text-field__input:-ms-input-placeholder{opacity:1}}.mdc-text-field__affix{height:28px;opacity:0;white-space:nowrap}.mdc-text-field--label-floating .mdc-text-field__affix,.mdc-text-field--no-label .mdc-text-field__affix{opacity:1}@supports(-webkit-hyphens: none){.mdc-text-field--outlined .mdc-text-field__affix{align-items:center;align-self:center;display:inline-flex;height:100%}}.mdc-text-field__affix--prefix{padding-left:0;padding-right:2px}[dir=rtl] .mdc-text-field__affix--prefix,.mdc-text-field__affix--prefix[dir=rtl]{padding-left:2px;padding-right:0}.mdc-text-field--end-aligned .mdc-text-field__affix--prefix{padding-left:0;padding-right:12px}[dir=rtl] .mdc-text-field--end-aligned .mdc-text-field__affix--prefix,.mdc-text-field--end-aligned .mdc-text-field__affix--prefix[dir=rtl]{padding-left:12px;padding-right:0}.mdc-text-field__affix--suffix{padding-left:12px;padding-right:0}[dir=rtl] .mdc-text-field__affix--suffix,.mdc-text-field__affix--suffix[dir=rtl]{padding-left:0;padding-right:12px}.mdc-text-field--end-aligned .mdc-text-field__affix--suffix{padding-left:2px;padding-right:0}[dir=rtl] .mdc-text-field--end-aligned .mdc-text-field__affix--suffix,.mdc-text-field--end-aligned .mdc-text-field__affix--suffix[dir=rtl]{padding-left:0;padding-right:2px}.mdc-text-field--filled{height:56px}.mdc-text-field--filled::before{display:inline-block;width:0;height:40px;content:"";vertical-align:0}.mdc-text-field--filled .mdc-floating-label{left:16px;right:initial}[dir=rtl] .mdc-text-field--filled .mdc-floating-label,.mdc-text-field--filled .mdc-floating-label[dir=rtl]{left:initial;right:16px}.mdc-text-field--filled .mdc-floating-label--float-above{transform:translateY(-106%) scale(0.75)}.mdc-text-field--filled.mdc-text-field--no-label .mdc-text-field__input{height:100%}.mdc-text-field--filled.mdc-text-field--no-label .mdc-floating-label{display:none}.mdc-text-field--filled.mdc-text-field--no-label::before{display:none}@supports(-webkit-hyphens: none){.mdc-text-field--filled.mdc-text-field--no-label .mdc-text-field__affix{align-items:center;align-self:center;display:inline-flex;height:100%}}.mdc-text-field--outlined{height:56px;overflow:visible}.mdc-text-field--outlined .mdc-floating-label--float-above{transform:translateY(-37.25px) scale(1)}.mdc-text-field--outlined .mdc-floating-label--float-above{font-size:.75rem}.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{transform:translateY(-34.75px) scale(0.75)}.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{font-size:1rem}.mdc-text-field--outlined .mdc-text-field__input{height:100%}.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading{border-top-left-radius:var(--mdc-shape-small, 4px);border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:var(--mdc-shape-small, 4px)}[dir=rtl] .mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading,.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading[dir=rtl]{border-top-left-radius:0;border-top-right-radius:var(--mdc-shape-small, 4px);border-bottom-right-radius:var(--mdc-shape-small, 4px);border-bottom-left-radius:0}@supports(top: max(0%)){.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading{width:max(12px, var(--mdc-shape-small, 4px))}}@supports(top: max(0%)){.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__notch{max-width:calc(100% - max(12px, var(--mdc-shape-small, 4px))*2)}}.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__trailing{border-top-left-radius:0;border-top-right-radius:var(--mdc-shape-small, 4px);border-bottom-right-radius:var(--mdc-shape-small, 4px);border-bottom-left-radius:0}[dir=rtl] .mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__trailing,.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__trailing[dir=rtl]{border-top-left-radius:var(--mdc-shape-small, 4px);border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:var(--mdc-shape-small, 4px)}@supports(top: max(0%)){.mdc-text-field--outlined{padding-left:max(16px, calc(var(--mdc-shape-small, 4px) + 4px))}}@supports(top: max(0%)){.mdc-text-field--outlined{padding-right:max(16px, var(--mdc-shape-small, 4px))}}@supports(top: max(0%)){.mdc-text-field--outlined+.mdc-text-field-helper-line{padding-left:max(16px, calc(var(--mdc-shape-small, 4px) + 4px))}}@supports(top: max(0%)){.mdc-text-field--outlined+.mdc-text-field-helper-line{padding-right:max(16px, var(--mdc-shape-small, 4px))}}.mdc-text-field--outlined.mdc-text-field--with-leading-icon{padding-left:0}@supports(top: max(0%)){.mdc-text-field--outlined.mdc-text-field--with-leading-icon{padding-right:max(16px, var(--mdc-shape-small, 4px))}}[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-leading-icon,.mdc-text-field--outlined.mdc-text-field--with-leading-icon[dir=rtl]{padding-right:0}@supports(top: max(0%)){[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-leading-icon,.mdc-text-field--outlined.mdc-text-field--with-leading-icon[dir=rtl]{padding-left:max(16px, var(--mdc-shape-small, 4px))}}.mdc-text-field--outlined.mdc-text-field--with-trailing-icon{padding-right:0}@supports(top: max(0%)){.mdc-text-field--outlined.mdc-text-field--with-trailing-icon{padding-left:max(16px, calc(var(--mdc-shape-small, 4px) + 4px))}}[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-trailing-icon,.mdc-text-field--outlined.mdc-text-field--with-trailing-icon[dir=rtl]{padding-left:0}@supports(top: max(0%)){[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-trailing-icon,.mdc-text-field--outlined.mdc-text-field--with-trailing-icon[dir=rtl]{padding-right:max(16px, calc(var(--mdc-shape-small, 4px) + 4px))}}.mdc-text-field--outlined.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon{padding-left:0;padding-right:0}.mdc-text-field--outlined .mdc-notched-outline--notched .mdc-notched-outline__notch{padding-top:1px}.mdc-text-field--outlined .mdc-floating-label{left:4px;right:initial}[dir=rtl] .mdc-text-field--outlined .mdc-floating-label,.mdc-text-field--outlined .mdc-floating-label[dir=rtl]{left:initial;right:4px}.mdc-text-field--outlined .mdc-text-field__input{display:flex;border:none !important;background-color:rgba(0,0,0,0)}.mdc-text-field--outlined .mdc-notched-outline{z-index:1}.mdc-text-field--textarea{flex-direction:column;align-items:center;width:auto;height:auto;padding:0}.mdc-text-field--textarea .mdc-floating-label{top:19px}.mdc-text-field--textarea .mdc-floating-label:not(.mdc-floating-label--float-above){transform:none}.mdc-text-field--textarea .mdc-text-field__input{flex-grow:1;height:auto;min-height:1.5rem;overflow-x:hidden;overflow-y:auto;box-sizing:border-box;resize:none;padding:0 16px}.mdc-text-field--textarea.mdc-text-field--filled::before{display:none}.mdc-text-field--textarea.mdc-text-field--filled .mdc-floating-label--float-above{transform:translateY(-10.25px) scale(0.75)}.mdc-text-field--textarea.mdc-text-field--filled .mdc-text-field__input{margin-top:23px;margin-bottom:9px}.mdc-text-field--textarea.mdc-text-field--filled.mdc-text-field--no-label .mdc-text-field__input{margin-top:16px;margin-bottom:16px}.mdc-text-field--textarea.mdc-text-field--outlined .mdc-notched-outline--notched .mdc-notched-outline__notch{padding-top:0}.mdc-text-field--textarea.mdc-text-field--outlined .mdc-floating-label--float-above{transform:translateY(-27.25px) scale(1)}.mdc-text-field--textarea.mdc-text-field--outlined .mdc-floating-label--float-above{font-size:.75rem}.mdc-text-field--textarea.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--textarea.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{transform:translateY(-24.75px) scale(0.75)}.mdc-text-field--textarea.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--textarea.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{font-size:1rem}.mdc-text-field--textarea.mdc-text-field--outlined .mdc-text-field__input{margin-top:16px;margin-bottom:16px}.mdc-text-field--textarea.mdc-text-field--outlined .mdc-floating-label{top:18px}.mdc-text-field--textarea.mdc-text-field--with-internal-counter .mdc-text-field__input{margin-bottom:2px}.mdc-text-field--textarea.mdc-text-field--with-internal-counter .mdc-text-field-character-counter{align-self:flex-end;padding:0 16px}.mdc-text-field--textarea.mdc-text-field--with-internal-counter .mdc-text-field-character-counter::after{display:inline-block;width:0;height:16px;content:"";vertical-align:-16px}.mdc-text-field--textarea.mdc-text-field--with-internal-counter .mdc-text-field-character-counter::before{display:none}.mdc-text-field__resizer{align-self:stretch;display:inline-flex;flex-direction:column;flex-grow:1;max-height:100%;max-width:100%;min-height:56px;min-width:fit-content;min-width:-moz-available;min-width:-webkit-fill-available;overflow:hidden;resize:both}.mdc-text-field--filled .mdc-text-field__resizer{transform:translateY(-1px)}.mdc-text-field--filled .mdc-text-field__resizer .mdc-text-field__input,.mdc-text-field--filled .mdc-text-field__resizer .mdc-text-field-character-counter{transform:translateY(1px)}.mdc-text-field--outlined .mdc-text-field__resizer{transform:translateX(-1px) translateY(-1px)}[dir=rtl] .mdc-text-field--outlined .mdc-text-field__resizer,.mdc-text-field--outlined .mdc-text-field__resizer[dir=rtl]{transform:translateX(1px) translateY(-1px)}.mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field__input,.mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field-character-counter{transform:translateX(1px) translateY(1px)}[dir=rtl] .mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field__input,[dir=rtl] .mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field-character-counter,.mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field__input[dir=rtl],.mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field-character-counter[dir=rtl]{transform:translateX(-1px) translateY(1px)}.mdc-text-field--with-leading-icon{padding-left:0;padding-right:16px}[dir=rtl] .mdc-text-field--with-leading-icon,.mdc-text-field--with-leading-icon[dir=rtl]{padding-left:16px;padding-right:0}.mdc-text-field--with-leading-icon.mdc-text-field--filled .mdc-floating-label{max-width:calc(100% - 48px);left:48px;right:initial}[dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--filled .mdc-floating-label,.mdc-text-field--with-leading-icon.mdc-text-field--filled .mdc-floating-label[dir=rtl]{left:initial;right:48px}.mdc-text-field--with-leading-icon.mdc-text-field--filled .mdc-floating-label--float-above{max-width:calc(100% / 0.75 - 64px / 0.75)}.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label{left:36px;right:initial}[dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label,.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label[dir=rtl]{left:initial;right:36px}.mdc-text-field--with-leading-icon.mdc-text-field--outlined :not(.mdc-notched-outline--notched) .mdc-notched-outline__notch{max-width:calc(100% - 60px)}.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--float-above{transform:translateY(-37.25px) translateX(-32px) scale(1)}[dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--float-above,.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--float-above[dir=rtl]{transform:translateY(-37.25px) translateX(32px) scale(1)}.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--float-above{font-size:.75rem}.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{transform:translateY(-34.75px) translateX(-32px) scale(0.75)}[dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,[dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above[dir=rtl],.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above[dir=rtl]{transform:translateY(-34.75px) translateX(32px) scale(0.75)}.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{font-size:1rem}.mdc-text-field--with-trailing-icon{padding-left:16px;padding-right:0}[dir=rtl] .mdc-text-field--with-trailing-icon,.mdc-text-field--with-trailing-icon[dir=rtl]{padding-left:0;padding-right:16px}.mdc-text-field--with-trailing-icon.mdc-text-field--filled .mdc-floating-label{max-width:calc(100% - 64px)}.mdc-text-field--with-trailing-icon.mdc-text-field--filled .mdc-floating-label--float-above{max-width:calc(100% / 0.75 - 64px / 0.75)}.mdc-text-field--with-trailing-icon.mdc-text-field--outlined :not(.mdc-notched-outline--notched) .mdc-notched-outline__notch{max-width:calc(100% - 60px)}.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon{padding-left:0;padding-right:0}.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon.mdc-text-field--filled .mdc-floating-label{max-width:calc(100% - 96px)}.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon.mdc-text-field--filled .mdc-floating-label--float-above{max-width:calc(100% / 0.75 - 96px / 0.75)}.mdc-text-field-helper-line{display:flex;justify-content:space-between;box-sizing:border-box}.mdc-text-field+.mdc-text-field-helper-line{padding-right:16px;padding-left:16px}.mdc-form-field>.mdc-text-field+label{align-self:flex-start}.mdc-text-field--focused .mdc-notched-outline__leading,.mdc-text-field--focused .mdc-notched-outline__notch,.mdc-text-field--focused .mdc-notched-outline__trailing{border-width:2px}.mdc-text-field--focused+.mdc-text-field-helper-line .mdc-text-field-helper-text:not(.mdc-text-field-helper-text--validation-msg){opacity:1}.mdc-text-field--focused.mdc-text-field--outlined .mdc-notched-outline--notched .mdc-notched-outline__notch{padding-top:2px}.mdc-text-field--focused.mdc-text-field--outlined.mdc-text-field--textarea .mdc-notched-outline--notched .mdc-notched-outline__notch{padding-top:0}.mdc-text-field--invalid+.mdc-text-field-helper-line .mdc-text-field-helper-text--validation-msg{opacity:1}.mdc-text-field--disabled{pointer-events:none}@media screen and (forced-colors: active){.mdc-text-field--disabled .mdc-text-field__input{background-color:Window}.mdc-text-field--disabled .mdc-floating-label{z-index:1}}.mdc-text-field--disabled .mdc-floating-label{cursor:default}.mdc-text-field--disabled.mdc-text-field--filled .mdc-text-field__ripple{display:none}.mdc-text-field--disabled .mdc-text-field__input{pointer-events:auto}.mdc-text-field--end-aligned .mdc-text-field__input{text-align:right}[dir=rtl] .mdc-text-field--end-aligned .mdc-text-field__input,.mdc-text-field--end-aligned .mdc-text-field__input[dir=rtl]{text-align:left}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__input,[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__affix,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__input,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__affix{direction:ltr}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__affix--prefix,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__affix--prefix{padding-left:0;padding-right:2px}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__affix--suffix,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__affix--suffix{padding-left:12px;padding-right:0}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__icon--leading,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__icon--leading{order:1}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__affix--suffix,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__affix--suffix{order:2}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__input,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__input{order:3}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__affix--prefix,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__affix--prefix{order:4}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__icon--trailing,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__icon--trailing{order:5}[dir=rtl] .mdc-text-field--ltr-text.mdc-text-field--end-aligned .mdc-text-field__input,.mdc-text-field--ltr-text.mdc-text-field--end-aligned[dir=rtl] .mdc-text-field__input{text-align:right}[dir=rtl] .mdc-text-field--ltr-text.mdc-text-field--end-aligned .mdc-text-field__affix--prefix,.mdc-text-field--ltr-text.mdc-text-field--end-aligned[dir=rtl] .mdc-text-field__affix--prefix{padding-right:12px}[dir=rtl] .mdc-text-field--ltr-text.mdc-text-field--end-aligned .mdc-text-field__affix--suffix,.mdc-text-field--ltr-text.mdc-text-field--end-aligned[dir=rtl] .mdc-text-field__affix--suffix{padding-left:2px}.mdc-floating-label{position:absolute;left:0;-webkit-transform-origin:left top;transform-origin:left top;line-height:1.15rem;text-align:left;text-overflow:ellipsis;white-space:nowrap;cursor:text;overflow:hidden;will-change:transform}[dir=rtl] .mdc-floating-label,.mdc-floating-label[dir=rtl]{right:0;left:auto;-webkit-transform-origin:right top;transform-origin:right top;text-align:right}.mdc-floating-label--float-above{cursor:auto}.mdc-floating-label--required::after{margin-left:1px;margin-right:0px;content:"*"}[dir=rtl] .mdc-floating-label--required::after,.mdc-floating-label--required[dir=rtl]::after{margin-left:0;margin-right:1px}.mdc-floating-label--float-above{transform:translateY(-106%) scale(0.75)}.mdc-notched-outline{display:flex;position:absolute;top:0;right:0;left:0;box-sizing:border-box;width:100%;max-width:100%;height:100%;text-align:left;pointer-events:none}[dir=rtl] .mdc-notched-outline,.mdc-notched-outline[dir=rtl]{text-align:right}.mdc-notched-outline__leading,.mdc-notched-outline__notch,.mdc-notched-outline__trailing{box-sizing:border-box;height:100%;border-top:1px solid;border-bottom:1px solid;pointer-events:none}.mdc-notched-outline__leading{border-left:1px solid;border-right:none;width:12px}[dir=rtl] .mdc-notched-outline__leading,.mdc-notched-outline__leading[dir=rtl]{border-left:none;border-right:1px solid}.mdc-notched-outline__trailing{border-left:none;border-right:1px solid;flex-grow:1}[dir=rtl] .mdc-notched-outline__trailing,.mdc-notched-outline__trailing[dir=rtl]{border-left:1px solid;border-right:none}.mdc-notched-outline__notch{flex:0 0 auto;width:auto;max-width:calc(100% - 12px * 2)}.mdc-notched-outline .mdc-floating-label{display:inline-block;position:relative;max-width:100%}.mdc-notched-outline .mdc-floating-label--float-above{text-overflow:clip}.mdc-notched-outline--upgraded .mdc-floating-label--float-above{max-width:133.3333333333%}.mdc-notched-outline--notched .mdc-notched-outline__notch{padding-left:0;padding-right:8px;border-top:none}[dir=rtl] .mdc-notched-outline--notched .mdc-notched-outline__notch,.mdc-notched-outline--notched .mdc-notched-outline__notch[dir=rtl]{padding-left:8px;padding-right:0}.mdc-notched-outline--no-label .mdc-notched-outline__notch{display:none}.mdc-line-ripple::before,.mdc-line-ripple::after{position:absolute;bottom:0;left:0;width:100%;border-bottom-style:solid;content:""}.mdc-line-ripple::before{border-bottom-width:1px}.mdc-line-ripple::before{z-index:1}.mdc-line-ripple::after{transform:scaleX(0);border-bottom-width:2px;opacity:0;z-index:2}.mdc-line-ripple--active::after{transform:scaleX(1);opacity:1}.mdc-line-ripple--deactivating::after{opacity:0}.mat-mdc-form-field-textarea-control{vertical-align:middle;resize:vertical;box-sizing:border-box;height:auto;margin:0;padding:0;border:none;overflow:auto}.mat-mdc-form-field-input-control.mat-mdc-form-field-input-control{font:inherit;letter-spacing:inherit;text-decoration:inherit;text-transform:inherit;border:none}.mat-mdc-form-field .mat-mdc-floating-label.mdc-floating-label{line-height:normal}.mdc-text-field--no-label:not(.mdc-text-field--textarea) .mat-mdc-form-field-input-control.mdc-text-field__input,.mat-mdc-text-field-wrapper .mat-mdc-form-field-input-control{height:auto}.mat-mdc-text-field-wrapper .mat-mdc-form-field-input-control.mdc-text-field__input[type=color]{height:23px}.mat-mdc-text-field-wrapper{height:auto;flex:auto}.mat-mdc-form-field-has-icon-prefix .mat-mdc-text-field-wrapper{padding-left:0;--mat-mdc-form-field-label-offset-x: -16px}.mat-mdc-form-field-has-icon-suffix .mat-mdc-text-field-wrapper{padding-right:0}[dir=rtl] .mat-mdc-text-field-wrapper{padding-left:16px;padding-right:16px}[dir=rtl] .mat-mdc-form-field-has-icon-suffix .mat-mdc-text-field-wrapper{padding-left:0}[dir=rtl] .mat-mdc-form-field-has-icon-prefix .mat-mdc-text-field-wrapper{padding-right:0}.mat-mdc-form-field-label-always-float .mdc-text-field__input::placeholder{transition-delay:40ms;transition-duration:110ms;opacity:1}.mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-floating-label{left:auto;right:auto}.mat-mdc-text-field-wrapper.mdc-text-field--outlined .mdc-text-field__input{display:inline-block}.mat-mdc-form-field .mat-mdc-text-field-wrapper.mdc-text-field .mdc-notched-outline__notch{padding-top:0}.mat-mdc-text-field-wrapper::before{content:none}.mat-mdc-form-field-subscript-wrapper{box-sizing:border-box;width:100%;position:relative}.mat-mdc-form-field-hint-wrapper,.mat-mdc-form-field-error-wrapper{position:absolute;top:0;left:0;right:0;padding:0 16px}.mat-mdc-form-field-subscript-dynamic-size .mat-mdc-form-field-hint-wrapper,.mat-mdc-form-field-subscript-dynamic-size .mat-mdc-form-field-error-wrapper{position:static}.mat-mdc-form-field-bottom-align::before{content:"";display:inline-block;height:16px}.mat-mdc-form-field-bottom-align.mat-mdc-form-field-subscript-dynamic-size::before{content:unset}.mat-mdc-form-field-hint-end{order:1}.mat-mdc-form-field-hint-wrapper{display:flex}.mat-mdc-form-field-hint-spacer{flex:1 0 1em}.mat-mdc-form-field-error{display:block}.mat-mdc-form-field-focus-overlay{top:0;left:0;right:0;bottom:0;position:absolute;opacity:0}select.mat-mdc-form-field-input-control{-moz-appearance:none;-webkit-appearance:none;background-color:rgba(0,0,0,0);display:inline-flex;box-sizing:border-box}select.mat-mdc-form-field-input-control:not(:disabled){cursor:pointer}.mat-mdc-form-field-type-mat-native-select .mat-mdc-form-field-infix::after{content:"";width:0;height:0;border-left:5px solid rgba(0,0,0,0);border-right:5px solid rgba(0,0,0,0);border-top:5px solid;position:absolute;right:0;top:50%;margin-top:-2.5px;pointer-events:none}[dir=rtl] .mat-mdc-form-field-type-mat-native-select .mat-mdc-form-field-infix::after{right:auto;left:0}.mat-mdc-form-field-type-mat-native-select .mat-mdc-form-field-input-control{padding-right:15px}[dir=rtl] .mat-mdc-form-field-type-mat-native-select .mat-mdc-form-field-input-control{padding-right:0;padding-left:15px}.cdk-high-contrast-active .mat-form-field-appearance-fill .mat-mdc-text-field-wrapper{outline:solid 1px}.cdk-high-contrast-active .mat-form-field-appearance-fill.mat-form-field-disabled .mat-mdc-text-field-wrapper{outline-color:GrayText}.cdk-high-contrast-active .mat-form-field-appearance-fill.mat-focused .mat-mdc-text-field-wrapper{outline:dashed 3px}.cdk-high-contrast-active .mat-mdc-form-field.mat-focused .mdc-notched-outline{border:dashed 3px}.mat-mdc-form-field{--mat-mdc-form-field-floating-label-scale: 0.75;display:inline-flex;flex-direction:column;min-width:0;text-align:left}[dir=rtl] .mat-mdc-form-field{text-align:right}.mat-mdc-form-field-flex{display:inline-flex;align-items:baseline;box-sizing:border-box;width:100%}.mat-mdc-text-field-wrapper{width:100%}.mat-mdc-form-field-icon-prefix,.mat-mdc-form-field-icon-suffix{align-self:center;line-height:0}.mat-mdc-form-field-icon-prefix,[dir=rtl] .mat-mdc-form-field-icon-suffix{padding:0 4px 0 0}.mat-mdc-form-field-icon-suffix,[dir=rtl] .mat-mdc-form-field-icon-prefix{padding:0 0 0 4px}.mat-mdc-form-field-icon-prefix>.mat-icon,.mat-mdc-form-field-icon-suffix>.mat-icon{padding:12px;box-sizing:content-box}.mat-mdc-form-field-subscript-wrapper .mat-icon,.mat-mdc-form-field label .mat-icon{width:1em;height:1em;font-size:inherit}.mat-mdc-form-field-infix{flex:auto;min-width:0;width:180px;position:relative;box-sizing:border-box}.mat-mdc-form-field .mdc-notched-outline__notch{margin-left:-1px;-webkit-clip-path:inset(-9em -999em -9em 1px);clip-path:inset(-9em -999em -9em 1px)}[dir=rtl] .mat-mdc-form-field .mdc-notched-outline__notch{margin-left:0;margin-right:-1px;-webkit-clip-path:inset(-9em 1px -9em -999em);clip-path:inset(-9em 1px -9em -999em)}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__input{transition:opacity 150ms 0ms cubic-bezier(0.4, 0, 0.2, 1)}@media all{.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__input::placeholder{transition:opacity 67ms 0ms cubic-bezier(0.4, 0, 0.2, 1)}}@media all{.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__input:-ms-input-placeholder{transition:opacity 67ms 0ms cubic-bezier(0.4, 0, 0.2, 1)}}@media all{.mdc-text-field--no-label .mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__input::placeholder,.mdc-text-field--focused .mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__input::placeholder{transition-delay:40ms;transition-duration:110ms}}@media all{.mdc-text-field--no-label .mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__input:-ms-input-placeholder,.mdc-text-field--focused .mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__input:-ms-input-placeholder{transition-delay:40ms;transition-duration:110ms}}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__affix{transition:opacity 150ms 0ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--filled.mdc-ripple-upgraded--background-focused .mdc-text-field__ripple::before,.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--filled:not(.mdc-ripple-upgraded):focus .mdc-text-field__ripple::before{transition-duration:75ms}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--outlined .mdc-floating-label--shake{animation:mdc-floating-label-shake-float-above-text-field-outlined 250ms 1}@keyframes mdc-floating-label-shake-float-above-text-field-outlined{0%{transform:translateX(calc(0 - 0%)) translateY(-34.75px) scale(0.75)}33%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(calc(4% - 0%)) translateY(-34.75px) scale(0.75)}66%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(calc(-4% - 0%)) translateY(-34.75px) scale(0.75)}100%{transform:translateX(calc(0 - 0%)) translateY(-34.75px) scale(0.75)}}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--textarea{transition:none}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--textarea.mdc-text-field--filled .mdc-floating-label--shake{animation:mdc-floating-label-shake-float-above-textarea-filled 250ms 1}@keyframes mdc-floating-label-shake-float-above-textarea-filled{0%{transform:translateX(calc(0 - 0%)) translateY(-10.25px) scale(0.75)}33%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(calc(4% - 0%)) translateY(-10.25px) scale(0.75)}66%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(calc(-4% - 0%)) translateY(-10.25px) scale(0.75)}100%{transform:translateX(calc(0 - 0%)) translateY(-10.25px) scale(0.75)}}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--textarea.mdc-text-field--outlined .mdc-floating-label--shake{animation:mdc-floating-label-shake-float-above-textarea-outlined 250ms 1}@keyframes mdc-floating-label-shake-float-above-textarea-outlined{0%{transform:translateX(calc(0 - 0%)) translateY(-24.75px) scale(0.75)}33%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(calc(4% - 0%)) translateY(-24.75px) scale(0.75)}66%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(calc(-4% - 0%)) translateY(-24.75px) scale(0.75)}100%{transform:translateX(calc(0 - 0%)) translateY(-24.75px) scale(0.75)}}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--shake{animation:mdc-floating-label-shake-float-above-text-field-outlined-leading-icon 250ms 1}@keyframes mdc-floating-label-shake-float-above-text-field-outlined-leading-icon{0%{transform:translateX(calc(0 - 32px)) translateY(-34.75px) scale(0.75)}33%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(calc(4% - 32px)) translateY(-34.75px) scale(0.75)}66%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(calc(-4% - 32px)) translateY(-34.75px) scale(0.75)}100%{transform:translateX(calc(0 - 32px)) translateY(-34.75px) scale(0.75)}}[dir=rtl] .mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--shake,.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--with-leading-icon.mdc-text-field--outlined[dir=rtl] .mdc-floating-label--shake{animation:mdc-floating-label-shake-float-above-text-field-outlined-leading-icon 250ms 1}@keyframes mdc-floating-label-shake-float-above-text-field-outlined-leading-icon-rtl{0%{transform:translateX(calc(0 - -32px)) translateY(-34.75px) scale(0.75)}33%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(calc(4% - -32px)) translateY(-34.75px) scale(0.75)}66%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(calc(-4% - -32px)) translateY(-34.75px) scale(0.75)}100%{transform:translateX(calc(0 - -32px)) translateY(-34.75px) scale(0.75)}}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-floating-label{transition:transform 150ms cubic-bezier(0.4, 0, 0.2, 1),color 150ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-floating-label--shake{animation:mdc-floating-label-shake-float-above-standard 250ms 1}@keyframes mdc-floating-label-shake-float-above-standard{0%{transform:translateX(calc(0 - 0%)) translateY(-106%) scale(0.75)}33%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(calc(4% - 0%)) translateY(-106%) scale(0.75)}66%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(calc(-4% - 0%)) translateY(-106%) scale(0.75)}100%{transform:translateX(calc(0 - 0%)) translateY(-106%) scale(0.75)}}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-line-ripple::after{transition:transform 180ms cubic-bezier(0.4, 0, 0.2, 1),opacity 180ms cubic-bezier(0.4, 0, 0.2, 1)}'],encapsulation:2,data:{animation:[a.transitionMessages]},changeDetection:0}),l})(),B=(()=>{class l{}return l.\u0275fac=function(i){return new(i||l)},l.\u0275mod=e.oAB({type:l}),l.\u0275inj=e.cJS({imports:[F.BQ,E.ez,L.Q8,F.BQ]}),l})()},284:(te,H,c)=>{c.d(H,{Jk:()=>L,Nt:()=>Y,c:()=>v});var e=c(1281),x=c(3353),n=c(9349),_=c(4650),A=c(4006),w=c(3238),E=c(9549),N=c(8929);const L=new _.OlP("MAT_INPUT_VALUE_ACCESSOR"),F=["button","checkbox","file","hidden","image","radio","range","reset","submit"];let P=0;const R=(0,w.FD)(class{constructor(M,d,r,h){this._defaultErrorStateMatcher=M,this._parentForm=d,this._parentFormGroup=r,this.ngControl=h,this.stateChanges=new N.xQ}});let Y=(()=>{class M extends R{constructor(r,h,s,b,m,g,S,I,V,Z){super(g,b,m,s),this._elementRef=r,this._platform=h,this._autofillMonitor=I,this._formField=Z,this._uid="mat-input-"+P++,this.focused=!1,this.stateChanges=new N.xQ,this.controlType="mat-input",this.autofilled=!1,this._disabled=!1,this._type="text",this._readonly=!1,this._neverEmptyInputTypes=["date","datetime","datetime-local","month","time","week"].filter(X=>(0,x.qK)().has(X)),this._iOSKeyupListener=X=>{const U=X.target;!U.value&&0===U.selectionStart&&0===U.selectionEnd&&(U.setSelectionRange(1,1),U.setSelectionRange(0,0))};const G=this._elementRef.nativeElement,J=G.nodeName.toLowerCase();this._inputValueAccessor=S||G,this._previousNativeValue=this.value,this.id=this.id,h.IOS&&V.runOutsideAngular(()=>{r.nativeElement.addEventListener("keyup",this._iOSKeyupListener)}),this._isServer=!this._platform.isBrowser,this._isNativeSelect="select"===J,this._isTextarea="textarea"===J,this._isInFormField=!!Z,this._isNativeSelect&&(this.controlType=G.multiple?"mat-native-select-multiple":"mat-native-select")}get disabled(){return this.ngControl&&null!==this.ngControl.disabled?this.ngControl.disabled:this._disabled}set disabled(r){this._disabled=(0,e.Ig)(r),this.focused&&(this.focused=!1,this.stateChanges.next())}get id(){return this._id}set id(r){this._id=r||this._uid}get required(){return this._required??this.ngControl?.control?.hasValidator(A.kI.required)??!1}set required(r){this._required=(0,e.Ig)(r)}get type(){return this._type}set type(r){this._type=r||"text",this._validateType(),!this._isTextarea&&(0,x.qK)().has(this._type)&&(this._elementRef.nativeElement.type=this._type)}get value(){return this._inputValueAccessor.value}set value(r){r!==this.value&&(this._inputValueAccessor.value=r,this.stateChanges.next())}get readonly(){return this._readonly}set readonly(r){this._readonly=(0,e.Ig)(r)}ngAfterViewInit(){this._platform.isBrowser&&this._autofillMonitor.monitor(this._elementRef.nativeElement).subscribe(r=>{this.autofilled=r.isAutofilled,this.stateChanges.next()})}ngOnChanges(){this.stateChanges.next()}ngOnDestroy(){this.stateChanges.complete(),this._platform.isBrowser&&this._autofillMonitor.stopMonitoring(this._elementRef.nativeElement),this._platform.IOS&&this._elementRef.nativeElement.removeEventListener("keyup",this._iOSKeyupListener)}ngDoCheck(){this.ngControl&&this.updateErrorState(),this._dirtyCheckNativeValue(),this._dirtyCheckPlaceholder()}focus(r){this._elementRef.nativeElement.focus(r)}_focusChanged(r){r!==this.focused&&(this.focused=r,this.stateChanges.next())}_onInput(){}_dirtyCheckNativeValue(){const r=this._elementRef.nativeElement.value;this._previousNativeValue!==r&&(this._previousNativeValue=r,this.stateChanges.next())}_dirtyCheckPlaceholder(){const r=this._getPlaceholder();if(r!==this._previousPlaceholder){const h=this._elementRef.nativeElement;this._previousPlaceholder=r,r?h.setAttribute("placeholder",r):h.removeAttribute("placeholder")}}_getPlaceholder(){return this.placeholder||null}_validateType(){F.indexOf(this._type)}_isNeverEmpty(){return this._neverEmptyInputTypes.indexOf(this._type)>-1}_isBadInput(){let r=this._elementRef.nativeElement.validity;return r&&r.badInput}get empty(){return!(this._isNeverEmpty()||this._elementRef.nativeElement.value||this._isBadInput()||this.autofilled)}get shouldLabelFloat(){if(this._isNativeSelect){const r=this._elementRef.nativeElement,h=r.options[0];return this.focused||r.multiple||!this.empty||!!(r.selectedIndex>-1&&h&&h.label)}return this.focused||!this.empty}setDescribedByIds(r){r.length?this._elementRef.nativeElement.setAttribute("aria-describedby",r.join(" ")):this._elementRef.nativeElement.removeAttribute("aria-describedby")}onContainerClick(){this.focused||this.focus()}_isInlineSelect(){const r=this._elementRef.nativeElement;return this._isNativeSelect&&(r.multiple||r.size>1)}}return M.\u0275fac=function(r){return new(r||M)(_.Y36(_.SBq),_.Y36(x.t4),_.Y36(A.a5,10),_.Y36(A.F,8),_.Y36(A.sg,8),_.Y36(w.rD),_.Y36(L,10),_.Y36(n.Lq),_.Y36(_.R0b),_.Y36(E.G_,8))},M.\u0275dir=_.lG2({type:M,selectors:[["input","matInput",""],["textarea","matInput",""],["select","matNativeControl",""],["input","matNativeControl",""],["textarea","matNativeControl",""]],hostAttrs:[1,"mat-mdc-input-element"],hostVars:18,hostBindings:function(r,h){1&r&&_.NdJ("focus",function(){return h._focusChanged(!0)})("blur",function(){return h._focusChanged(!1)})("input",function(){return h._onInput()}),2&r&&(_.Ikx("id",h.id)("disabled",h.disabled)("required",h.required),_.uIk("name",h.name||null)("readonly",h.readonly&&!h._isNativeSelect||null)("aria-invalid",h.empty&&h.required?null:h.errorState)("aria-required",h.required)("id",h.id),_.ekj("mat-input-server",h._isServer)("mat-mdc-form-field-textarea-control",h._isInFormField&&h._isTextarea)("mat-mdc-form-field-input-control",h._isInFormField)("mdc-text-field__input",h._isInFormField)("mat-mdc-native-select-inline",h._isInlineSelect()))},inputs:{disabled:"disabled",id:"id",placeholder:"placeholder",name:"name",required:"required",type:"type",errorStateMatcher:"errorStateMatcher",userAriaDescribedBy:["aria-describedby","userAriaDescribedBy"],value:"value",readonly:"readonly"},exportAs:["matInput"],features:[_._Bn([{provide:E.Eo,useExisting:M}]),_.qOj,_.TTD]}),M})(),v=(()=>{class M{}return M.\u0275fac=function(r){return new(r||M)},M.\u0275mod=_.oAB({type:M}),M.\u0275inj=_.cJS({imports:[w.BQ,E.lN,E.lN,n.Ky,w.BQ]}),M})()},4385:(te,H,c)=>{c.d(H,{$L:()=>le,LD:()=>oe,gD:()=>_e});var e=c(8184),x=c(6895),n=c(4650),_=c(3238),A=c(9549),w=c(7376),E=c(2687),N=c(445),T=c(1281),L=c(5017),F=c(9521),P=c(4006),R=c(8929),Y=c(8514),v=c(6787),M=c(1059),d=c(7545),r=c(2986),h=c(2198),s=c(4850),b=c(5778),m=c(7625),g=c(7340);const S=["trigger"],I=["panel"];function V(p,O){if(1&p&&(n.TgZ(0,"span",10),n._uU(1),n.qZA()),2&p){const t=n.oxw();n.xp6(1),n.Oqu(t.placeholder)}}function Z(p,O){if(1&p&&(n.TgZ(0,"span",14),n._uU(1),n.qZA()),2&p){const t=n.oxw(2);n.xp6(1),n.Oqu(t.triggerValue)}}function G(p,O){1&p&&n.Hsn(0,0,["*ngSwitchCase","true"])}function J(p,O){if(1&p&&(n.TgZ(0,"span",11),n.YNc(1,Z,2,1,"span",12),n.YNc(2,G,1,0,"ng-content",13),n.qZA()),2&p){const t=n.oxw();n.Q6J("ngSwitch",!!t.customTrigger),n.xp6(2),n.Q6J("ngSwitchCase",!0)}}function X(p,O){if(1&p){const t=n.EpF();n.O4$(),n.kcU(),n.TgZ(0,"div",15,16),n.NdJ("@transformPanel.done",function(f){n.CHM(t);const D=n.oxw();return n.KtG(D._panelDoneAnimatingStream.next(f.toState))})("keydown",function(f){n.CHM(t);const D=n.oxw();return n.KtG(D._handleKeydown(f))}),n.Hsn(2,1),n.qZA()}if(2&p){const t=n.oxw();n.Gre("mat-mdc-select-panel mdc-menu-surface mdc-menu-surface--open ",t._getPanelTheme(),""),n.Q6J("ngClass",t.panelClass)("@transformPanel","showing"),n.uIk("id",t.id+"-panel")("aria-multiselectable",t.multiple)("aria-label",t.ariaLabel||null)("aria-labelledby",t._getPanelAriaLabelledby())}}const U=[[["mat-select-trigger"]],"*"],ce=["mat-select-trigger","*"],me={transformPanelWrap:(0,g.X$)("transformPanelWrap",[(0,g.eR)("* => void",(0,g.IO)("@transformPanel",[(0,g.pV)()],{optional:!0}))]),transformPanel:(0,g.X$)("transformPanel",[(0,g.SB)("void",(0,g.oB)({opacity:0,transform:"scale(1, 0.8)"})),(0,g.eR)("void => showing",(0,g.jt)("120ms cubic-bezier(0, 0, 0.2, 1)",(0,g.oB)({opacity:1,transform:"scale(1, 1)"}))),(0,g.eR)("* => void",(0,g.jt)("100ms linear",(0,g.oB)({opacity:0})))])};let ne=0;const q=new n.OlP("mat-select-scroll-strategy"),he=new n.OlP("MAT_SELECT_CONFIG"),Q={provide:q,deps:[e.aV],useFactory:function fe(p){return()=>p.scrollStrategies.reposition()}},j=new n.OlP("MatSelectTrigger");class pe{constructor(O,t){this.source=O,this.value=t}}const ae=(0,_.Kr)((0,_.sb)((0,_.Id)((0,_.FD)(class{constructor(p,O,t,a,f){this._elementRef=p,this._defaultErrorStateMatcher=O,this._parentForm=t,this._parentFormGroup=a,this.ngControl=f,this.stateChanges=new R.xQ}}))));let ue=(()=>{class p extends ae{constructor(t,a,f,D,z,K,k,ge,re,de,xe,se,be,$){super(z,D,k,ge,de),this._viewportRuler=t,this._changeDetectorRef=a,this._ngZone=f,this._dir=K,this._parentFormField=re,this._liveAnnouncer=be,this._defaultOptions=$,this._panelOpen=!1,this._compareWith=(B,l)=>B===l,this._uid="mat-select-"+ne++,this._triggerAriaLabelledBy=null,this._destroy=new R.xQ,this._onChange=()=>{},this._onTouched=()=>{},this._valueId="mat-select-value-"+ne++,this._panelDoneAnimatingStream=new R.xQ,this._overlayPanelClass=this._defaultOptions?.overlayPanelClass||"",this._focused=!1,this.controlType="mat-select",this._multiple=!1,this._disableOptionCentering=this._defaultOptions?.disableOptionCentering??!1,this.ariaLabel="",this.optionSelectionChanges=(0,Y.P)(()=>{const B=this.options;return B?B.changes.pipe((0,M.O)(B),(0,d.w)(()=>(0,v.T)(...B.map(l=>l.onSelectionChange)))):this._ngZone.onStable.pipe((0,r.q)(1),(0,d.w)(()=>this.optionSelectionChanges))}),this.openedChange=new n.vpe,this._openedStream=this.openedChange.pipe((0,h.h)(B=>B),(0,s.U)(()=>{})),this._closedStream=this.openedChange.pipe((0,h.h)(B=>!B),(0,s.U)(()=>{})),this.selectionChange=new n.vpe,this.valueChange=new n.vpe,this.ngControl&&(this.ngControl.valueAccessor=this),null!=$?.typeaheadDebounceInterval&&(this._typeaheadDebounceInterval=$.typeaheadDebounceInterval),this._scrollStrategyFactory=se,this._scrollStrategy=this._scrollStrategyFactory(),this.tabIndex=parseInt(xe)||0,this.id=this.id}get focused(){return this._focused||this._panelOpen}get placeholder(){return this._placeholder}set placeholder(t){this._placeholder=t,this.stateChanges.next()}get required(){return this._required??this.ngControl?.control?.hasValidator(P.kI.required)??!1}set required(t){this._required=(0,T.Ig)(t),this.stateChanges.next()}get multiple(){return this._multiple}set multiple(t){this._multiple=(0,T.Ig)(t)}get disableOptionCentering(){return this._disableOptionCentering}set disableOptionCentering(t){this._disableOptionCentering=(0,T.Ig)(t)}get compareWith(){return this._compareWith}set compareWith(t){this._compareWith=t,this._selectionModel&&this._initializeSelection()}get value(){return this._value}set value(t){this._assignValue(t)&&this._onChange(t)}get typeaheadDebounceInterval(){return this._typeaheadDebounceInterval}set typeaheadDebounceInterval(t){this._typeaheadDebounceInterval=(0,T.su)(t)}get id(){return this._id}set id(t){this._id=t||this._uid,this.stateChanges.next()}ngOnInit(){this._selectionModel=new L.Ov(this.multiple),this.stateChanges.next(),this._panelDoneAnimatingStream.pipe((0,b.x)(),(0,m.R)(this._destroy)).subscribe(()=>this._panelDoneAnimating(this.panelOpen))}ngAfterContentInit(){this._initKeyManager(),this._selectionModel.changed.pipe((0,m.R)(this._destroy)).subscribe(t=>{t.added.forEach(a=>a.select()),t.removed.forEach(a=>a.deselect())}),this.options.changes.pipe((0,M.O)(null),(0,m.R)(this._destroy)).subscribe(()=>{this._resetOptions(),this._initializeSelection()})}ngDoCheck(){const t=this._getTriggerAriaLabelledby(),a=this.ngControl;if(t!==this._triggerAriaLabelledBy){const f=this._elementRef.nativeElement;this._triggerAriaLabelledBy=t,t?f.setAttribute("aria-labelledby",t):f.removeAttribute("aria-labelledby")}a&&(this._previousControl!==a.control&&(void 0!==this._previousControl&&null!==a.disabled&&a.disabled!==this.disabled&&(this.disabled=a.disabled),this._previousControl=a.control),this.updateErrorState())}ngOnChanges(t){(t.disabled||t.userAriaDescribedBy)&&this.stateChanges.next(),t.typeaheadDebounceInterval&&this._keyManager&&this._keyManager.withTypeAhead(this._typeaheadDebounceInterval)}ngOnDestroy(){this._keyManager?.destroy(),this._destroy.next(),this._destroy.complete(),this.stateChanges.complete()}toggle(){this.panelOpen?this.close():this.open()}open(){this._canOpen()&&(this._panelOpen=!0,this._keyManager.withHorizontalOrientation(null),this._highlightCorrectOption(),this._changeDetectorRef.markForCheck())}close(){this._panelOpen&&(this._panelOpen=!1,this._keyManager.withHorizontalOrientation(this._isRtl()?"rtl":"ltr"),this._changeDetectorRef.markForCheck(),this._onTouched())}writeValue(t){this._assignValue(t)}registerOnChange(t){this._onChange=t}registerOnTouched(t){this._onTouched=t}setDisabledState(t){this.disabled=t,this._changeDetectorRef.markForCheck(),this.stateChanges.next()}get panelOpen(){return this._panelOpen}get selected(){return this.multiple?this._selectionModel?.selected||[]:this._selectionModel?.selected[0]}get triggerValue(){if(this.empty)return"";if(this._multiple){const t=this._selectionModel.selected.map(a=>a.viewValue);return this._isRtl()&&t.reverse(),t.join(", ")}return this._selectionModel.selected[0].viewValue}_isRtl(){return!!this._dir&&"rtl"===this._dir.value}_handleKeydown(t){this.disabled||(this.panelOpen?this._handleOpenKeydown(t):this._handleClosedKeydown(t))}_handleClosedKeydown(t){const a=t.keyCode,f=a===F.JH||a===F.LH||a===F.oh||a===F.SV,D=a===F.K5||a===F.L_,z=this._keyManager;if(!z.isTyping()&&D&&!(0,F.Vb)(t)||(this.multiple||t.altKey)&&f)t.preventDefault(),this.open();else if(!this.multiple){const K=this.selected;z.onKeydown(t);const k=this.selected;k&&K!==k&&this._liveAnnouncer.announce(k.viewValue,1e4)}}_handleOpenKeydown(t){const a=this._keyManager,f=t.keyCode,D=f===F.JH||f===F.LH,z=a.isTyping();if(D&&t.altKey)t.preventDefault(),this.close();else if(z||f!==F.K5&&f!==F.L_||!a.activeItem||(0,F.Vb)(t))if(!z&&this._multiple&&f===F.A&&t.ctrlKey){t.preventDefault();const K=this.options.some(k=>!k.disabled&&!k.selected);this.options.forEach(k=>{k.disabled||(K?k.select():k.deselect())})}else{const K=a.activeItemIndex;a.onKeydown(t),this._multiple&&D&&t.shiftKey&&a.activeItem&&a.activeItemIndex!==K&&a.activeItem._selectViaInteraction()}else t.preventDefault(),a.activeItem._selectViaInteraction()}_onFocus(){this.disabled||(this._focused=!0,this.stateChanges.next())}_onBlur(){this._focused=!1,this._keyManager?.cancelTypeahead(),!this.disabled&&!this.panelOpen&&(this._onTouched(),this._changeDetectorRef.markForCheck(),this.stateChanges.next())}_onAttached(){this._overlayDir.positionChange.pipe((0,r.q)(1)).subscribe(()=>{this._changeDetectorRef.detectChanges(),this._positioningSettled()})}_getPanelTheme(){return this._parentFormField?`mat-${this._parentFormField.color}`:""}get empty(){return!this._selectionModel||this._selectionModel.isEmpty()}_initializeSelection(){Promise.resolve().then(()=>{this.ngControl&&(this._value=this.ngControl.value),this._setSelectionByValue(this._value),this.stateChanges.next()})}_setSelectionByValue(t){if(this._selectionModel.selected.forEach(a=>a.setInactiveStyles()),this._selectionModel.clear(),this.multiple&&t)Array.isArray(t),t.forEach(a=>this._selectOptionByValue(a)),this._sortValues();else{const a=this._selectOptionByValue(t);a?this._keyManager.updateActiveItem(a):this.panelOpen||this._keyManager.updateActiveItem(-1)}this._changeDetectorRef.markForCheck()}_selectOptionByValue(t){const a=this.options.find(f=>{if(this._selectionModel.isSelected(f))return!1;try{return null!=f.value&&this._compareWith(f.value,t)}catch{return!1}});return a&&this._selectionModel.select(a),a}_assignValue(t){return!!(t!==this._value||this._multiple&&Array.isArray(t))&&(this.options&&this._setSelectionByValue(t),this._value=t,!0)}_initKeyManager(){this._keyManager=new E.s1(this.options).withTypeAhead(this._typeaheadDebounceInterval).withVerticalOrientation().withHorizontalOrientation(this._isRtl()?"rtl":"ltr").withHomeAndEnd().withPageUpDown().withAllowedModifierKeys(["shiftKey"]),this._keyManager.tabOut.subscribe(()=>{this.panelOpen&&(!this.multiple&&this._keyManager.activeItem&&this._keyManager.activeItem._selectViaInteraction(),this.focus(),this.close())}),this._keyManager.change.subscribe(()=>{this._panelOpen&&this.panel?this._scrollOptionIntoView(this._keyManager.activeItemIndex||0):!this._panelOpen&&!this.multiple&&this._keyManager.activeItem&&this._keyManager.activeItem._selectViaInteraction()})}_resetOptions(){const t=(0,v.T)(this.options.changes,this._destroy);this.optionSelectionChanges.pipe((0,m.R)(t)).subscribe(a=>{this._onSelect(a.source,a.isUserInput),a.isUserInput&&!this.multiple&&this._panelOpen&&(this.close(),this.focus())}),(0,v.T)(...this.options.map(a=>a._stateChanges)).pipe((0,m.R)(t)).subscribe(()=>{this._changeDetectorRef.markForCheck(),this.stateChanges.next()})}_onSelect(t,a){const f=this._selectionModel.isSelected(t);null!=t.value||this._multiple?(f!==t.selected&&(t.selected?this._selectionModel.select(t):this._selectionModel.deselect(t)),a&&this._keyManager.setActiveItem(t),this.multiple&&(this._sortValues(),a&&this.focus())):(t.deselect(),this._selectionModel.clear(),null!=this.value&&this._propagateChanges(t.value)),f!==this._selectionModel.isSelected(t)&&this._propagateChanges(),this.stateChanges.next()}_sortValues(){if(this.multiple){const t=this.options.toArray();this._selectionModel.sort((a,f)=>this.sortComparator?this.sortComparator(a,f,t):t.indexOf(a)-t.indexOf(f)),this.stateChanges.next()}}_propagateChanges(t){let a=null;a=this.multiple?this.selected.map(f=>f.value):this.selected?this.selected.value:t,this._value=a,this.valueChange.emit(a),this._onChange(a),this.selectionChange.emit(this._getChangeEvent(a)),this._changeDetectorRef.markForCheck()}_highlightCorrectOption(){this._keyManager&&(this.empty?this._keyManager.setFirstItemActive():this._keyManager.setActiveItem(this._selectionModel.selected[0]))}_canOpen(){return!this._panelOpen&&!this.disabled&&this.options?.length>0}focus(t){this._elementRef.nativeElement.focus(t)}_getPanelAriaLabelledby(){if(this.ariaLabel)return null;const t=this._parentFormField?.getLabelId();return this.ariaLabelledby?(t?t+" ":"")+this.ariaLabelledby:t}_getAriaActiveDescendant(){return this.panelOpen&&this._keyManager&&this._keyManager.activeItem?this._keyManager.activeItem.id:null}_getTriggerAriaLabelledby(){if(this.ariaLabel)return null;const t=this._parentFormField?.getLabelId();let a=(t?t+" ":"")+this._valueId;return this.ariaLabelledby&&(a+=" "+this.ariaLabelledby),a}_panelDoneAnimating(t){this.openedChange.emit(t)}setDescribedByIds(t){t.length?this._elementRef.nativeElement.setAttribute("aria-describedby",t.join(" ")):this._elementRef.nativeElement.removeAttribute("aria-describedby")}onContainerClick(){this.focus(),this.open()}get shouldLabelFloat(){return this._panelOpen||!this.empty||this._focused&&!!this._placeholder}}return p.\u0275fac=function(t){return new(t||p)(n.Y36(w.rL),n.Y36(n.sBO),n.Y36(n.R0b),n.Y36(_.rD),n.Y36(n.SBq),n.Y36(N.Is,8),n.Y36(P.F,8),n.Y36(P.sg,8),n.Y36(A.G_,8),n.Y36(P.a5,10),n.$8M("tabindex"),n.Y36(q),n.Y36(E.Kd),n.Y36(he,8))},p.\u0275dir=n.lG2({type:p,viewQuery:function(t,a){if(1&t&&(n.Gf(S,5),n.Gf(I,5),n.Gf(e.pI,5)),2&t){let f;n.iGM(f=n.CRH())&&(a.trigger=f.first),n.iGM(f=n.CRH())&&(a.panel=f.first),n.iGM(f=n.CRH())&&(a._overlayDir=f.first)}},inputs:{userAriaDescribedBy:["aria-describedby","userAriaDescribedBy"],panelClass:"panelClass",placeholder:"placeholder",required:"required",multiple:"multiple",disableOptionCentering:"disableOptionCentering",compareWith:"compareWith",value:"value",ariaLabel:["aria-label","ariaLabel"],ariaLabelledby:["aria-labelledby","ariaLabelledby"],errorStateMatcher:"errorStateMatcher",typeaheadDebounceInterval:"typeaheadDebounceInterval",sortComparator:"sortComparator",id:"id"},outputs:{openedChange:"openedChange",_openedStream:"opened",_closedStream:"closed",selectionChange:"selectionChange",valueChange:"valueChange"},features:[n.qOj,n.TTD]}),p})(),le=(()=>{class p{}return p.\u0275fac=function(t){return new(t||p)},p.\u0275dir=n.lG2({type:p,selectors:[["mat-select-trigger"]],features:[n._Bn([{provide:j,useExisting:p}])]}),p})(),_e=(()=>{class p extends ue{constructor(){super(...arguments),this._positions=[{originX:"start",originY:"bottom",overlayX:"start",overlayY:"top"},{originX:"start",originY:"top",overlayX:"start",overlayY:"bottom",panelClass:"mat-mdc-select-panel-above"}]}get shouldLabelFloat(){return this.panelOpen||!this.empty||this.focused&&!!this.placeholder}ngOnInit(){super.ngOnInit(),this._viewportRuler.change().pipe((0,m.R)(this._destroy)).subscribe(()=>{this.panelOpen&&(this._overlayWidth=this._getOverlayWidth(),this._changeDetectorRef.detectChanges())})}ngAfterViewInit(){this._parentFormField&&(this._preferredOverlayOrigin=this._parentFormField.getConnectedOverlayOrigin())}open(){this._overlayWidth=this._getOverlayWidth(),super.open(),this.stateChanges.next()}close(){super.close(),this.stateChanges.next()}_scrollOptionIntoView(t){const a=this.options.toArray()[t];if(a){const f=this.panel.nativeElement,D=(0,_.CB)(t,this.options,this.optionGroups),z=a._getHostElement();f.scrollTop=0===t&&1===D?0:(0,_.jH)(z.offsetTop,z.offsetHeight,f.scrollTop,f.offsetHeight)}}_positioningSettled(){this._scrollOptionIntoView(this._keyManager.activeItemIndex||0)}_getChangeEvent(t){return new pe(this,t)}_getOverlayWidth(){return(this._preferredOverlayOrigin instanceof e.xu?this._preferredOverlayOrigin.elementRef:this._preferredOverlayOrigin||this._elementRef).nativeElement.getBoundingClientRect().width}}return p.\u0275fac=function(){let O;return function(a){return(O||(O=n.n5z(p)))(a||p)}}(),p.\u0275cmp=n.Xpm({type:p,selectors:[["mat-select"]],contentQueries:function(t,a,f){if(1&t&&(n.Suo(f,j,5),n.Suo(f,_.ey,5),n.Suo(f,_.K7,5)),2&t){let D;n.iGM(D=n.CRH())&&(a.customTrigger=D.first),n.iGM(D=n.CRH())&&(a.options=D),n.iGM(D=n.CRH())&&(a.optionGroups=D)}},hostAttrs:["role","combobox","aria-autocomplete","none","aria-haspopup","listbox",1,"mat-mdc-select"],hostVars:19,hostBindings:function(t,a){1&t&&n.NdJ("keydown",function(D){return a._handleKeydown(D)})("focus",function(){return a._onFocus()})("blur",function(){return a._onBlur()}),2&t&&(n.uIk("id",a.id)("tabindex",a.tabIndex)("aria-controls",a.panelOpen?a.id+"-panel":null)("aria-expanded",a.panelOpen)("aria-label",a.ariaLabel||null)("aria-required",a.required.toString())("aria-disabled",a.disabled.toString())("aria-invalid",a.errorState)("aria-activedescendant",a._getAriaActiveDescendant()),n.ekj("mat-mdc-select-disabled",a.disabled)("mat-mdc-select-invalid",a.errorState)("mat-mdc-select-required",a.required)("mat-mdc-select-empty",a.empty)("mat-mdc-select-multiple",a.multiple))},inputs:{disabled:"disabled",disableRipple:"disableRipple",tabIndex:"tabIndex"},exportAs:["matSelect"],features:[n._Bn([{provide:A.Eo,useExisting:p},{provide:_.HF,useExisting:p}]),n.qOj],ngContentSelectors:ce,decls:11,vars:11,consts:[["cdk-overlay-origin","",1,"mat-mdc-select-trigger",3,"click"],["fallbackOverlayOrigin","cdkOverlayOrigin","trigger",""],[1,"mat-mdc-select-value",3,"ngSwitch"],["class","mat-mdc-select-placeholder mat-mdc-select-min-line",4,"ngSwitchCase"],["class","mat-mdc-select-value-text",3,"ngSwitch",4,"ngSwitchCase"],[1,"mat-mdc-select-arrow-wrapper"],[1,"mat-mdc-select-arrow"],["viewBox","0 0 24 24","width","24px","height","24px","focusable","false"],["d","M7 10l5 5 5-5z"],["cdk-connected-overlay","","cdkConnectedOverlayLockPosition","","cdkConnectedOverlayHasBackdrop","","cdkConnectedOverlayBackdropClass","cdk-overlay-transparent-backdrop",3,"cdkConnectedOverlayPanelClass","cdkConnectedOverlayScrollStrategy","cdkConnectedOverlayOrigin","cdkConnectedOverlayOpen","cdkConnectedOverlayPositions","cdkConnectedOverlayWidth","backdropClick","attach","detach"],[1,"mat-mdc-select-placeholder","mat-mdc-select-min-line"],[1,"mat-mdc-select-value-text",3,"ngSwitch"],["class","mat-mdc-select-min-line",4,"ngSwitchDefault"],[4,"ngSwitchCase"],[1,"mat-mdc-select-min-line"],["role","listbox","tabindex","-1",3,"ngClass","keydown"],["panel",""]],template:function(t,a){if(1&t&&(n.F$t(U),n.TgZ(0,"div",0,1),n.NdJ("click",function(){return a.toggle()}),n.TgZ(3,"div",2),n.YNc(4,V,2,1,"span",3),n.YNc(5,J,3,2,"span",4),n.qZA(),n.TgZ(6,"div",5)(7,"div",6),n.O4$(),n.TgZ(8,"svg",7),n._UZ(9,"path",8),n.qZA()()()(),n.YNc(10,X,3,9,"ng-template",9),n.NdJ("backdropClick",function(){return a.close()})("attach",function(){return a._onAttached()})("detach",function(){return a.close()})),2&t){const f=n.MAs(1);n.uIk("aria-owns",a.panelOpen?a.id+"-panel":null),n.xp6(3),n.Q6J("ngSwitch",a.empty),n.uIk("id",a._valueId),n.xp6(1),n.Q6J("ngSwitchCase",!0),n.xp6(1),n.Q6J("ngSwitchCase",!1),n.xp6(5),n.Q6J("cdkConnectedOverlayPanelClass",a._overlayPanelClass)("cdkConnectedOverlayScrollStrategy",a._scrollStrategy)("cdkConnectedOverlayOrigin",a._preferredOverlayOrigin||f)("cdkConnectedOverlayOpen",a.panelOpen)("cdkConnectedOverlayPositions",a._positions)("cdkConnectedOverlayWidth",a._overlayWidth)}},dependencies:[x.mk,x.RF,x.n9,x.ED,e.pI,e.xu],styles:['.mdc-menu-surface{display:none;position:absolute;box-sizing:border-box;max-width:calc(100vw - 32px);max-width:var(--mdc-menu-max-width, calc(100vw - 32px));max-height:calc(100vh - 32px);max-height:var(--mdc-menu-max-height, calc(100vh - 32px));margin:0;padding:0;transform:scale(1);transform-origin:top left;opacity:0;overflow:auto;will-change:transform,opacity;z-index:8;border-radius:4px;border-radius:var(--mdc-shape-medium, 4px);transform-origin-left:top left;transform-origin-right:top right}.mdc-menu-surface:focus{outline:none}.mdc-menu-surface--animating-open{display:inline-block;transform:scale(0.8);opacity:0}.mdc-menu-surface--open{display:inline-block;transform:scale(1);opacity:1}.mdc-menu-surface--animating-closed{display:inline-block;opacity:0}[dir=rtl] .mdc-menu-surface,.mdc-menu-surface[dir=rtl]{transform-origin-left:top right;transform-origin-right:top left}.mdc-menu-surface--anchor{position:relative;overflow:visible}.mdc-menu-surface--fixed{position:fixed}.mdc-menu-surface--fullwidth{width:100%}.mat-mdc-select{display:inline-block;width:100%;outline:none}.mat-mdc-select-trigger{display:inline-flex;align-items:center;cursor:pointer;position:relative;box-sizing:border-box;width:100%}.mat-mdc-select-disabled .mat-mdc-select-trigger{-webkit-user-select:none;user-select:none;cursor:default}.mat-mdc-select-value{width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.mat-mdc-select-value-text{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.mat-mdc-select-arrow-wrapper{height:24px;flex-shrink:0;display:inline-flex;align-items:center}.mat-form-field-appearance-fill .mat-mdc-select-arrow-wrapper{transform:translateY(-8px)}.mat-form-field-appearance-fill .mdc-text-field--no-label .mat-mdc-select-arrow-wrapper{transform:none}.mat-mdc-select-arrow{width:10px;height:5px;position:relative}.mat-mdc-select-arrow svg{fill:currentColor;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%)}.cdk-high-contrast-active .mat-mdc-select-arrow svg{fill:CanvasText}.mat-mdc-select-disabled .cdk-high-contrast-active .mat-mdc-select-arrow svg{fill:GrayText}.mdc-menu-surface.mat-mdc-select-panel{width:100%;max-height:275px;position:static;outline:0;margin:0;padding:8px 0;list-style-type:none}.mdc-menu-surface.mat-mdc-select-panel:focus{outline:none}.cdk-high-contrast-active .mdc-menu-surface.mat-mdc-select-panel{outline:solid 1px}.cdk-overlay-pane:not(.mat-mdc-select-panel-above) .mdc-menu-surface.mat-mdc-select-panel{border-top-left-radius:0;border-top-right-radius:0;transform-origin:top center}.mat-mdc-select-panel-above .mdc-menu-surface.mat-mdc-select-panel{border-bottom-left-radius:0;border-bottom-right-radius:0;transform-origin:bottom center}.mat-mdc-select-placeholder{transition:color 400ms 133.3333333333ms cubic-bezier(0.25, 0.8, 0.25, 1)}._mat-animation-noopable .mat-mdc-select-placeholder{transition:none}.mat-form-field-hide-placeholder .mat-mdc-select-placeholder{color:rgba(0,0,0,0);-webkit-text-fill-color:rgba(0,0,0,0);transition:none;display:block}.mat-mdc-form-field-type-mat-select.mat-form-field-appearance-fill .mat-mdc-floating-label{max-width:calc(100% - 18px)}.mat-mdc-form-field-type-mat-select.mat-form-field-appearance-fill .mdc-floating-label--float-above{max-width:calc(100% / 0.75 - 24px)}.mat-mdc-form-field-type-mat-select.mat-form-field-appearance-outline .mdc-notched-outline__notch{max-width:calc(100% - 60px)}.mat-mdc-form-field-type-mat-select.mat-form-field-appearance-outline .mdc-text-field--label-floating .mdc-notched-outline__notch{max-width:calc(100% - 24px)}.mat-mdc-select-min-line:empty::before{content:" ";white-space:pre;width:1px;display:inline-block;visibility:hidden}'],encapsulation:2,data:{animation:[me.transformPanel]},changeDetection:0}),p})(),oe=(()=>{class p{}return p.\u0275fac=function(t){return new(t||p)},p.\u0275mod=n.oAB({type:p}),p.\u0275inj=n.cJS({providers:[Q],imports:[x.ez,e.U8,_.Ng,_.BQ,w.ZD,A.lN,_.Ng,_.BQ]}),p})()}}]);