{"version":3,"file":"default-src_app_components_branches_branch-selection_branch-selection_module_ts.js","mappings":";;;;;;;;;;;;;;;;AAA+E;AAGmB;;;;ICEhG,oEAAqH;;;IAAvF,mLAAwB;;;;IA2BlD,wEAAuD;IACrD,6EAAuE;IAArC,uTAAS,qEAA0B,IAAC;IACpE,0EACF;IAAA,4DAAS;IACX,qEAAe;;;;IAGb,6EAAgG;IAArC,sTAAS,qEAA0B,IAAC;IAC7F,4EACF;IAAA,4DAAS;;;IAFD,2HAA6B;;;IAT3C,0EAAqD;IAEjD,8IAIe;IAEf,wNAIc;IAChB,4DAAM;;;;IAXW,0DAAyB;IAAzB,0HAAyB;;;AD3B9C;;;;;;;GAOG;AAMI,MAAM,wBAAwB;IAOnC;QANU,eAAU,GAAG,IAAI,uDAAY,EAAU,CAAC;QACzC,WAAM,GAAkB,IAAI,CAAC;QAC7B,wBAAmB,GAAG,KAAK,CAAC;QAErC,wBAAmB,GAAG,8FAAU,CAAC;IAElB,CAAC;IAEhB,QAAQ,KAAU,CAAC;IAEnB,OAAO,CAAC,QAAgB;QACtB,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;IACjC,CAAC;;gGAbU,wBAAwB;sHAAxB,wBAAwB;QClBrC,yEAIK;QACH,oHAAqH;QACrH,yEAAuB;QACE,uDAA0B;QAAA,4DAAK;QACtD,yEAAuB;QAEnB,uDAAqB;QAAA,gEAAM;QAC3B,uDACA;QAAA,iEAAM;QACN,wEAAsE;QAAA,oEAAQ;QAAA,4DAAI;QAGpF,oEAAuB;QAEvB,qEAAG;QAEC,wDACF;QAAA,4DAAI;QAGN,qEAAG;QACO,kEAAM;QAAA,4DAAS;QAAA,iEAAM;QAC7B,wDACF;QAAA,4DAAI;QAGR,sHAcM;QACR,4DAAM;;QA7CD,gQAID;QACI,0DAAsB;QAAtB,iHAAsB;QAEH,0DAA0B;QAA1B,oHAA0B;QAG7C,0DAAqB;QAArB,yHAAqB;QACrB,0DACA;QADA,4NACA;QACG,0DAAkD;QAAlD,oLAAkD;QAMlD,0DAAkC;QAAlC,uMAAkC;QACnC,0DACF;QADE,wHACF;QAKA,0DACF;QADE,wHACF;QAGE,0DAAyB;QAAzB,yFAAyB;;;;;;;;;;;;;;;;;;;AC7Bc;AAEyB;;AAOjE,MAAM,qBAAqB;;0FAArB,qBAAqB;kHAArB,qBAAqB;sHAHvB,CAAC,yDAAY,CAAC;mIAGZ,qBAAqB,mBAJjB,iFAAwB,aAC7B,yDAAY,aACZ,iFAAwB","sources":["./src/app/components/branches/branch-selection/branch-selection.component.ts","./src/app/components/branches/branch-selection/branch-selection.component.html","./src/app/components/branches/branch-selection/branch-selection.module.ts"],"sourcesContent":["import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';\n\nimport { Branch } from 'src/app/services/branch/branch.model';\nimport { setAddressForGoogleMaps as setAddress } from 'src/app/helpers/google-maps-search.helper';\n\n/**\n * Use this component as a list item template for branch results from a zip code search.\n * This component will also display the branch image at the header of the card.\n *\n * @prop branch: object of type {Branch}.\n * @prop showSelectionButton: This will show a {Select Branch} button that will emit a {clickEvent}.\n * @emits clickEvent: Emits the selected branch DomainID of type number.\n */\n@Component({\n selector: 'app-branch-selection',\n templateUrl: './branch-selection.component.html',\n styleUrls: ['./branch-selection.component.scss'],\n})\nexport class BranchSelectionComponent implements OnInit {\n @Output() clickEvent = new EventEmitter();\n @Input() branch: Branch | null = null;\n @Input() showSelectionButton = false;\n\n setGoogleMapsSearch = setAddress;\n\n constructor() {}\n\n ngOnInit(): void {}\n\n onClick(domainId: number) {\n this.clickEvent.emit(domainId);\n }\n}\n","
\n \n
\n
{{ branch?.LocationName }}
\n
\n

\n {{ branch?.Address }}
\n {{ branch?.City }}, {{ branch?.State }} {{ branch?.Zip }}\n
\n View Map\n

\n\n
\n\n

\n \n {{ branch?.Phone }}\n \n

\n\n

\n HOURS:
\n {{ branch?.Hours }}\n

\n
\n
\n
\n
\n \n \n \n\n \n \n \n
\n
\n
","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { BranchSelectionComponent } from './branch-selection.component';\n\n@NgModule({\n declarations: [BranchSelectionComponent],\n imports: [CommonModule],\n exports: [BranchSelectionComponent],\n})\nexport class BranchSelectionModule {}\n"],"names":[],"sourceRoot":"webpack:///"}