{"version":3,"file":"common.3e4f5da5ad99c7d8.js","sources":["webpack:///./src/app/core/constants/properties.ts","webpack:///./src/app/shared/components/breadcrumb/breadcrumb.component.html","webpack:///./src/app/shared/components/breadcrumb/breadcrumb.component.ts","webpack:///./src/app/shared/components/no-results/no-results.component.ts","webpack:///./src/app/shared/components/no-results/no-results.component.html","webpack:///./src/app/shared/components/page-title/page-title.component.html","webpack:///./src/app/shared/components/page-title/page-title.component.ts","webpack:///./src/app/shared/components/property-list/info/info.component.html","webpack:///./src/app/shared/components/property-list/info/info.component.ts","webpack:///./src/app/shared/components/property-list/property-list.component.html","webpack:///./src/app/shared/components/property-list/property-list.component.ts","webpack:///./src/app/shared/pipes/status.pipe.ts","webpack:///./src/app/state/offers/offers.selectors.ts"],"sourceRoot":"webpack:///","sourcesContent":["export interface IPropertyType {\n key: string;\n subtypes: string[];\n}\n\nexport const PROPERTY_TYPES: IPropertyType[] = [\n {\n key: 'Residential',\n subtypes: [\n 'SINGLE_FAMILY',\n 'MULTI_FAMILY',\n 'ROW_HOUSE',\n 'TOWN_HOUSE',\n 'CONDOMINIUM',\n 'MOBILE_HOUSE',\n 'APARTMENTS',\n ],\n },\n { key: 'Commercial', subtypes: ['COMMERCIAL'] },\n { key: 'Land', subtypes: ['VACANT_LAND', 'FARM_LAND'] },\n];\n","\n","import { Component, Input } from '@angular/core';\n\n@Component({\n selector: 'app-shared-breadcrumb',\n templateUrl: './breadcrumb.component.html',\n styleUrls: ['./breadcrumb.component.scss'],\n})\nexport class BreadcrumbComponent {\n @Input({ required: true }) items: { label: string; path?: string }[] = [];\n}\n","import { Component, Input } from '@angular/core';\n\n@Component({\n selector: 'app-shared-no-results',\n templateUrl: './no-results.component.html',\n styleUrls: ['./no-results.component.scss'],\n})\nexport class NoResultsComponent {\n @Input() title?: string = 'No results found';\n @Input() message?: string =\n \"Try adjusting your search to find what you're looking for.\";\n}\n","
{{ message }}
\n