├── .babelrc ├── .dockerignore ├── .env.example ├── .eslintrc.json ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── pull_request_template.md └── workflows │ └── default.yaml ├── .gitignore ├── .nowignore ├── .npmignore ├── .nvmrc ├── .tx └── config ├── .vscode ├── launch.json └── settings.json ├── CODEOWNERS ├── Dockerfile ├── LICENSE ├── README.md ├── doc ├── TESTING.md ├── sozialhelden-logo.svg └── wheelmap-logo.svg ├── docs └── TESTING.md ├── next-env.d.ts ├── next.config.js ├── package.json ├── public ├── favicon.ico ├── i18n │ ├── ar.txt │ ├── bg.txt │ ├── ca.txt │ ├── cs.txt │ ├── da.txt │ ├── de.txt │ ├── el.txt │ ├── en_US.txt │ ├── es.txt │ ├── fa.txt │ ├── fi.txt │ ├── fr.txt │ ├── fy.txt │ ├── gl.txt │ ├── he.txt │ ├── hi.txt │ ├── hu.txt │ ├── is.txt │ ├── it.txt │ ├── ja.txt │ ├── ko.txt │ ├── lt.txt │ ├── lv.txt │ ├── mn.txt │ ├── my.txt │ ├── nb.txt │ ├── nl.txt │ ├── nn.txt │ ├── no.txt │ ├── nqo.txt │ ├── pl.txt │ ├── pt.txt │ ├── pt_BR.txt │ ├── pt_PT.txt │ ├── ro.txt │ ├── ro_RO.txt │ ├── ru.txt │ ├── sk.txt │ ├── sq_AL.txt │ ├── sv.txt │ ├── sw.txt │ ├── tlh.txt │ ├── tr.txt │ ├── uk.txt │ ├── vi.txt │ ├── vi_VN.txt │ ├── zh-Hans.txt │ ├── zh-Hant.txt │ ├── zh.txt │ └── zh_TW.txt └── images │ ├── Browserstack-logo.svg │ ├── WheelmapBeta.jpg │ ├── eventPlaceholder.png │ ├── external-app-icons │ ├── goMap.png │ ├── idEditor.png │ ├── mapsMeForAndroid.png │ ├── mapsMeForIOS.jpg │ └── vespucci.png │ ├── photo-upload │ ├── entrancePlaceholder.png │ ├── sitemapPlaceholder.png │ └── toiletPlaceholder.png │ ├── splash.svg │ ├── triangle.svg │ └── wheely_big.jpg ├── retranslate ├── .babelrc ├── babel-plugin-retranslate │ ├── .babelrc │ └── src │ │ └── plugin.js ├── rewrite-pos │ ├── .babelrc │ └── rewrite-pos.js ├── run.sh └── test.js ├── run_tests.sh ├── scripts ├── createLinks.js ├── generate-icons.js └── parseGettextFiles.js ├── src ├── App.tsx ├── AppContext.ts ├── AsyncNextHead.tsx ├── MainView.tsx ├── app │ ├── ContributionThanksData.tsx │ ├── CreatePlaceData.tsx │ ├── MapData.tsx │ ├── MappingEventDetailData.tsx │ ├── PlaceDetailsData.tsx │ ├── PlaceDetailsProps.ts │ ├── SearchData.tsx │ ├── fetchAccessibilityCloudPlacesBySameURI.tsx │ ├── getInitialProps.ts │ └── router.ts ├── components │ ├── ActivityIndicator │ │ ├── ActivityIndicator.tsx │ │ └── Spinner.tsx │ ├── Button.ts │ ├── ChevronLeft.tsx │ ├── ChevronRight.tsx │ ├── CloseButton.tsx │ ├── CloseLink.tsx │ ├── ContributionThanksDialog │ │ └── ContributionThanksDialog.tsx │ ├── CreatePlaceDialog │ │ ├── ChevronLeft.tsx │ │ └── CreatePlaceDialog.tsx │ ├── CreatePlaceFlow │ │ ├── CreatePlaceFlow.tsx │ │ ├── PageStack.tsx │ │ ├── components │ │ │ ├── AddressEditor.tsx │ │ │ ├── CategoryTreeLeaf.tsx │ │ │ ├── CategoryTreeNode.tsx │ │ │ ├── InputField.tsx │ │ │ ├── MapButton.tsx │ │ │ ├── PageHeader.tsx │ │ │ ├── VerticalPage.tsx │ │ │ ├── usePlaceDetails.ts │ │ │ ├── usePlaceSearch.ts │ │ │ └── usePlaceSearchWithWheelmapResolution.ts │ │ └── pages │ │ │ ├── CategoryPicker.tsx │ │ │ ├── CreationSuccessScreen.tsx │ │ │ ├── ExistingPlacePicker.tsx │ │ │ ├── PlaceDetailsEditor.tsx │ │ │ └── PointGeometryPicker.tsx │ ├── EmbedModeDeniedDialog.tsx │ ├── ErrorBoundary.tsx │ ├── FacebookMeta.tsx │ ├── FullscreenBackdrop.ts │ ├── Icon.tsx │ ├── IconButton.tsx │ ├── Link │ │ ├── Link.tsx │ │ └── RouteContext.tsx │ ├── MainMenu │ │ ├── GlobalActivityIndicator.tsx │ │ ├── MainMenu.tsx │ │ ├── SearchIcon.tsx │ │ └── StatusBarBackground.ts │ ├── Map │ │ ├── A11yMarkerIcon.tsx │ │ ├── Cluster.ts │ │ ├── ClusterIcon.tsx │ │ ├── GeoJSONTileLayer.ts │ │ ├── HighlightableMarker.ts │ │ ├── ImmobilienScout24.svg │ │ ├── ImmobilienScout24Logo.tsx │ │ ├── L.Control.Locate.ts │ │ ├── LeafletLocateControlStyle.tsx │ │ ├── LeafletStyle.tsx │ │ ├── Map.tsx │ │ ├── MapLoading.tsx │ │ ├── MapStyle.tsx │ │ ├── MappingEventHaloMarkerIcon.tsx │ │ ├── MappingEventMarkerIcon.tsx │ │ ├── MarkerIcon.ts │ │ ├── NotificationButton.tsx │ │ ├── Sozialhelden.svg │ │ ├── SozialheldenLogo.tsx │ │ ├── addLocateControlToMap.ts │ │ ├── geoTileToBbox.ts │ │ ├── getAccessibilityCloudTileUrl.ts │ │ ├── getIconNameForProperties.ts │ │ ├── highlightMarkers.ts │ │ ├── isSamePlace.ts │ │ ├── isSamePosition.ts │ │ ├── leaflet-gesture-handling │ │ │ ├── language-content.ts │ │ │ ├── leaflet-gesture-handling.css │ │ │ ├── leaflet-gesture-handling.scss │ │ │ └── leaflet-gesture-handling.ts │ │ ├── overrideLeafletZoomBehavior.ts │ │ └── trackTileLoadingState.ts │ ├── MapButton.ts │ ├── MappingEvents │ │ ├── ChevronLeft.ts │ │ ├── MappingEventShareBar.tsx │ │ ├── MappingEventToolbar.tsx │ │ ├── MappingEventWelcomeDialog.tsx │ │ ├── MappingEventsToolbar.tsx │ │ └── Statistics.tsx │ ├── Markdown.tsx │ ├── ModalDialog.tsx │ ├── NodeToolbar │ │ ├── AccessibilityEditor │ │ │ ├── CustomRadio.tsx │ │ │ ├── EditFormSubmissionButton.tsx │ │ │ ├── InlineWheelchairAccessibilityEditor.tsx │ │ │ ├── LastEditsStorage.ts │ │ │ ├── RadioStatusEditor.tsx │ │ │ ├── StyledRadioGroup.tsx │ │ │ ├── ToiletStatusEditor.tsx │ │ │ ├── WheelchairStatusEditor.tsx │ │ │ └── saveStatus.ts │ │ ├── AccessibilitySection │ │ │ ├── AccessibilityDetailsTree.tsx │ │ │ ├── AccessibilitySourceDisclaimer.tsx │ │ │ ├── AccessibleDescription.tsx │ │ │ ├── Description.ts │ │ │ ├── EquipmentAccessibility.tsx │ │ │ ├── PlaceAccessibilitySection.tsx │ │ │ ├── StyledFrame.ts │ │ │ └── WheelchairAndToiletAccessibility.tsx │ │ ├── Address.ts │ │ ├── BreadCrumbs.tsx │ │ ├── EmptyToolbarWithLoadingIndicator.tsx │ │ ├── Equipment │ │ │ ├── EquipmentItem.tsx │ │ │ ├── EquipmentList.tsx │ │ │ ├── EquipmentOverview.tsx │ │ │ └── getEquipmentInfoDescription.ts │ │ ├── EquipmentInfoLink.tsx │ │ ├── FeatureClusterPanel.tsx │ │ ├── IconButtonList │ │ │ ├── ConfigurableExternalLinks.tsx │ │ │ ├── ExternalLinks.tsx │ │ │ ├── IconButtonList.tsx │ │ │ ├── PhoneNumberLink.tsx │ │ │ ├── PlaceAddress.tsx │ │ │ ├── PlaceWebsiteLink.tsx │ │ │ ├── ReportIssueButton.tsx │ │ │ ├── ShareButtons.tsx │ │ │ └── ShareButtons │ │ │ │ └── icons │ │ │ │ ├── ChevronLeft.tsx │ │ │ │ ├── Email.tsx │ │ │ │ ├── Facebook.tsx │ │ │ │ ├── Telegram.tsx │ │ │ │ ├── TelegramIcon.svg │ │ │ │ ├── Twitter.tsx │ │ │ │ └── WhatsApp.tsx │ │ ├── IncentiveHint.ts │ │ ├── LicenseHint.tsx │ │ ├── NodeHeader.tsx │ │ ├── NodeToolbar.tsx │ │ ├── NodeToolbarFeatureLoader.tsx │ │ ├── Photos │ │ │ ├── PhotoNotification.tsx │ │ │ └── PhotoSection.tsx │ │ ├── PlaceInfoLink.tsx │ │ ├── Report │ │ │ ├── FixOnExternalPage.tsx │ │ │ ├── FixOsmComment.tsx │ │ │ ├── FixOsmNonExistingPlace.tsx │ │ │ ├── FixOsmPlacePosition.tsx │ │ │ ├── MailToSupport.tsx │ │ │ ├── ReportDialog.tsx │ │ │ ├── SendReportToAc.tsx │ │ │ └── strings.ts │ │ ├── SourceLink.tsx │ │ ├── SourceList.tsx │ │ ├── StyledToolbar.ts │ │ └── TextPlaceholder.tsx │ ├── NotFound │ │ └── NotFound.tsx │ ├── NotificationText.tsx │ ├── Onboarding │ │ └── Onboarding.tsx │ ├── OpenGraph.tsx │ ├── PhotoUpload │ │ ├── CameraIcon.tsx │ │ ├── PhotoUploadButton.tsx │ │ ├── PhotoUploadInstructionsToolbar.tsx │ │ ├── ReportPhotoToolbar.tsx │ │ └── readme-photoupload.md │ ├── PlaceName.ts │ ├── SearchToolbar │ │ ├── AccessibilityFilterButton.tsx │ │ ├── AccessibilityFilterMenu.tsx │ │ ├── AccessibilityFilterModel.ts │ │ ├── CategoryButton.tsx │ │ ├── CategoryMenu.tsx │ │ ├── CombinedIcon.tsx │ │ ├── CustomRadio.tsx │ │ ├── SearchButton.tsx │ │ ├── SearchIcon.tsx │ │ ├── SearchInputField.tsx │ │ ├── SearchResult.tsx │ │ ├── SearchResults.tsx │ │ └── SearchToolbar.tsx │ ├── ShareBar │ │ ├── ShareBar.tsx │ │ ├── ShareBarContent.tsx │ │ ├── ShareBarToggle.tsx │ │ └── icons │ │ │ ├── ChevronLeft.tsx │ │ │ ├── Email.tsx │ │ │ ├── Facebook.tsx │ │ │ ├── Telegram.tsx │ │ │ ├── TelegramIcon.svg │ │ │ ├── Twitter.tsx │ │ │ └── WhatsApp.tsx │ ├── StyledMarkdown.tsx │ ├── Toolbar.tsx │ ├── TwitterMeta.tsx │ ├── VectorImage.tsx │ ├── WheelmapHomeLink.tsx │ ├── fetchJSON.tsx │ ├── icons │ │ ├── accessibility │ │ │ ├── ToiletStatus.tsx │ │ │ ├── ToiletStatusAccessible.tsx │ │ │ ├── ToiletStatusNotAccessible.tsx │ │ │ └── index.ts │ │ ├── actions │ │ │ ├── Camera.svg │ │ │ ├── Camera.tsx │ │ │ ├── CheckmarkIcon.svg │ │ │ ├── CheckmarkIcon.tsx │ │ │ ├── ChevronRight.svg │ │ │ ├── ChevronRight.tsx │ │ │ ├── Close.tsx │ │ │ ├── Flag.svg │ │ │ ├── Flag.tsx │ │ │ ├── LocateOff.svg │ │ │ ├── LocateOff.tsx │ │ │ ├── LocateOn.svg │ │ │ ├── LocateOn.tsx │ │ │ ├── PenIcon.svg │ │ │ ├── PenIcon.tsx │ │ │ ├── Phone.svg │ │ │ ├── Phone.tsx │ │ │ ├── Place.svg │ │ │ ├── Place.tsx │ │ │ ├── ProblemIcon.svg │ │ │ ├── ProblemIcon.tsx │ │ │ ├── Route.svg │ │ │ ├── Route.tsx │ │ │ ├── Search.tsx │ │ │ ├── ShareIOS.svg │ │ │ ├── ShareIOS.tsx │ │ │ ├── World.svg │ │ │ ├── World.tsx │ │ │ ├── index.ts │ │ │ └── search.svg │ │ ├── categories │ │ │ ├── accommodation.svg │ │ │ ├── accommodation.tsx │ │ │ ├── aerialway_station.svg │ │ │ ├── aerialway_station.tsx │ │ │ ├── airport.svg │ │ │ ├── airport.tsx │ │ │ ├── airport_terminal.svg │ │ │ ├── airport_terminal.tsx │ │ │ ├── alcohol.svg │ │ │ ├── alcohol.tsx │ │ │ ├── allotments.svg │ │ │ ├── allotments.tsx │ │ │ ├── alternative_medicine.svg │ │ │ ├── alternative_medicine.tsx │ │ │ ├── animal.svg │ │ │ ├── animal.tsx │ │ │ ├── antiques.svg │ │ │ ├── antiques.tsx │ │ │ ├── archaeological_site.svg │ │ │ ├── archaeological_site.tsx │ │ │ ├── art_gallery.svg │ │ │ ├── art_gallery.tsx │ │ │ ├── art_shop.svg │ │ │ ├── art_shop.tsx │ │ │ ├── arts_center.svg │ │ │ ├── arts_center.tsx │ │ │ ├── association.svg │ │ │ ├── association.tsx │ │ │ ├── atm.svg │ │ │ ├── atm.tsx │ │ │ ├── attraction.svg │ │ │ ├── attraction.tsx │ │ │ ├── bank.svg │ │ │ ├── bank.tsx │ │ │ ├── bar.svg │ │ │ ├── bar.tsx │ │ │ ├── barber.svg │ │ │ ├── barber.tsx │ │ │ ├── bbq.svg │ │ │ ├── bbq.tsx │ │ │ ├── beach.svg │ │ │ ├── beach.tsx │ │ │ ├── beautysalon.svg │ │ │ ├── beautysalon.tsx │ │ │ ├── bed_breakfast.svg │ │ │ ├── bed_breakfast.tsx │ │ │ ├── beverages.svg │ │ │ ├── beverages.tsx │ │ │ ├── bicycle_rental.svg │ │ │ ├── bicycle_rental.tsx │ │ │ ├── bicycle_repair.svg │ │ │ ├── bicycle_repair.tsx │ │ │ ├── bicycle_store.svg │ │ │ ├── bicycle_store.tsx │ │ │ ├── biergarten.svg │ │ │ ├── biergarten.tsx │ │ │ ├── boarding_area.svg │ │ │ ├── boarding_area.tsx │ │ │ ├── books.svg │ │ │ ├── books.tsx │ │ │ ├── bread.svg │ │ │ ├── bread.tsx │ │ │ ├── brothel.svg │ │ │ ├── brothel.tsx │ │ │ ├── bus_station.svg │ │ │ ├── bus_station.tsx │ │ │ ├── bus_stop.svg │ │ │ ├── bus_stop.tsx │ │ │ ├── butcher.svg │ │ │ ├── butcher.tsx │ │ │ ├── cablecar.svg │ │ │ ├── cablecar.tsx │ │ │ ├── camping.svg │ │ │ ├── camping.tsx │ │ │ ├── canteen.svg │ │ │ ├── canteen.tsx │ │ │ ├── car_dealer.svg │ │ │ ├── car_dealer.tsx │ │ │ ├── car_rental.svg │ │ │ ├── car_rental.tsx │ │ │ ├── car_repair.svg │ │ │ ├── car_repair.tsx │ │ │ ├── car_sharing.svg │ │ │ ├── car_sharing.tsx │ │ │ ├── caravan_site.svg │ │ │ ├── caravan_site.tsx │ │ │ ├── casino.svg │ │ │ ├── casino.tsx │ │ │ ├── castle.svg │ │ │ ├── castle.tsx │ │ │ ├── cave.svg │ │ │ ├── cave.tsx │ │ │ ├── cemetery.svg │ │ │ ├── cemetery.tsx │ │ │ ├── chalet.svg │ │ │ ├── chalet.tsx │ │ │ ├── charging_station.svg │ │ │ ├── charging_station.tsx │ │ │ ├── chemist.svg │ │ │ ├── chemist.tsx │ │ │ ├── cinema.svg │ │ │ ├── cinema.tsx │ │ │ ├── clothes.svg │ │ │ ├── clothes.tsx │ │ │ ├── coffee.svg │ │ │ ├── coffee.tsx │ │ │ ├── college.svg │ │ │ ├── college.tsx │ │ │ ├── communitycentre.svg │ │ │ ├── communitycentre.tsx │ │ │ ├── company.svg │ │ │ ├── company.tsx │ │ │ ├── computers.svg │ │ │ ├── computers.tsx │ │ │ ├── confectionery.svg │ │ │ ├── confectionery.tsx │ │ │ ├── convenience_store.svg │ │ │ ├── convenience_store.tsx │ │ │ ├── copyshop.svg │ │ │ ├── copyshop.tsx │ │ │ ├── court.svg │ │ │ ├── court.tsx │ │ │ ├── culture.svg │ │ │ ├── culture.tsx │ │ │ ├── currencyexchange.svg │ │ │ ├── currencyexchange.tsx │ │ │ ├── deli.svg │ │ │ ├── deli.tsx │ │ │ ├── dentist.svg │ │ │ ├── dentist.tsx │ │ │ ├── department_store.svg │ │ │ ├── department_store.tsx │ │ │ ├── diy.svg │ │ │ ├── diy.tsx │ │ │ ├── doctor.svg │ │ │ ├── doctor.tsx │ │ │ ├── dog_park.svg │ │ │ ├── dog_park.tsx │ │ │ ├── dormitory.svg │ │ │ ├── dormitory.tsx │ │ │ ├── drinkingwater.svg │ │ │ ├── drinkingwater.tsx │ │ │ ├── driving_school.svg │ │ │ ├── driving_school.tsx │ │ │ ├── dry_cleaning.svg │ │ │ ├── dry_cleaning.tsx │ │ │ ├── education.svg │ │ │ ├── education.tsx │ │ │ ├── electronics.svg │ │ │ ├── electronics.tsx │ │ │ ├── elevator.svg │ │ │ ├── elevator.tsx │ │ │ ├── embassy.svg │ │ │ ├── embassy.tsx │ │ │ ├── employment_agency.svg │ │ │ ├── employment_agency.tsx │ │ │ ├── entrance.svg │ │ │ ├── entrance.tsx │ │ │ ├── erotic.svg │ │ │ ├── erotic.tsx │ │ │ ├── escalator.svg │ │ │ ├── escalator.tsx │ │ │ ├── fastfood.svg │ │ │ ├── fastfood.tsx │ │ │ ├── ferry.svg │ │ │ ├── ferry.tsx │ │ │ ├── flowers.svg │ │ │ ├── flowers.tsx │ │ │ ├── food.svg │ │ │ ├── food.tsx │ │ │ ├── fuel.svg │ │ │ ├── fuel.tsx │ │ │ ├── funeral_home.svg │ │ │ ├── funeral_home.tsx │ │ │ ├── furniture.svg │ │ │ ├── furniture.tsx │ │ │ ├── garden_center.svg │ │ │ ├── garden_center.tsx │ │ │ ├── gifts.svg │ │ │ ├── gifts.tsx │ │ │ ├── government_office.svg │ │ │ ├── government_office.tsx │ │ │ ├── greengrocer.svg │ │ │ ├── greengrocer.tsx │ │ │ ├── guest_house.svg │ │ │ ├── guest_house.tsx │ │ │ ├── halt.svg │ │ │ ├── halt.tsx │ │ │ ├── health.svg │ │ │ ├── health.tsx │ │ │ ├── hearing_aids.svg │ │ │ ├── hearing_aids.tsx │ │ │ ├── hiking.svg │ │ │ ├── hiking.tsx │ │ │ ├── hospital.svg │ │ │ ├── hospital.tsx │ │ │ ├── hostel.svg │ │ │ ├── hostel.tsx │ │ │ ├── hotel.svg │ │ │ ├── hotel.tsx │ │ │ ├── house.svg │ │ │ ├── house.tsx │ │ │ ├── icecream.svg │ │ │ ├── icecream.tsx │ │ │ ├── index.ts │ │ │ ├── industry.svg │ │ │ ├── industry.tsx │ │ │ ├── information.svg │ │ │ ├── information.tsx │ │ │ ├── instruments.svg │ │ │ ├── instruments.tsx │ │ │ ├── insurance.svg │ │ │ ├── insurance.tsx │ │ │ ├── interior_decoration.svg │ │ │ ├── interior_decoration.tsx │ │ │ ├── jewelry.svg │ │ │ ├── jewelry.tsx │ │ │ ├── kindergarten.svg │ │ │ ├── kindergarten.tsx │ │ │ ├── kiosk.svg │ │ │ ├── kiosk.tsx │ │ │ ├── laundry.svg │ │ │ ├── laundry.tsx │ │ │ ├── lawyer.svg │ │ │ ├── lawyer.tsx │ │ │ ├── leisure.svg │ │ │ ├── leisure.tsx │ │ │ ├── library.svg │ │ │ ├── library.tsx │ │ │ ├── mall.svg │ │ │ ├── mall.tsx │ │ │ ├── marina.svg │ │ │ ├── marina.tsx │ │ │ ├── market.svg │ │ │ ├── market.tsx │ │ │ ├── massage.svg │ │ │ ├── massage.tsx │ │ │ ├── medical_store.svg │ │ │ ├── medical_store.tsx │ │ │ ├── memorial.svg │ │ │ ├── memorial.tsx │ │ │ ├── mobile_phones.svg │ │ │ ├── mobile_phones.tsx │ │ │ ├── money.svg │ │ │ ├── money.tsx │ │ │ ├── motel.svg │ │ │ ├── motel.tsx │ │ │ ├── museum.svg │ │ │ ├── museum.tsx │ │ │ ├── music.svg │ │ │ ├── music.tsx │ │ │ ├── music_school.svg │ │ │ ├── music_school.tsx │ │ │ ├── newsagent.svg │ │ │ ├── newsagent.tsx │ │ │ ├── ngo.svg │ │ │ ├── ngo.tsx │ │ │ ├── nightclub.svg │ │ │ ├── nightclub.tsx │ │ │ ├── occupational_therapist.svg │ │ │ ├── occupational_therapist.tsx │ │ │ ├── official.svg │ │ │ ├── official.tsx │ │ │ ├── ophthalmologist.svg │ │ │ ├── ophthalmologist.tsx │ │ │ ├── organic_food.svg │ │ │ ├── organic_food.tsx │ │ │ ├── other.svg │ │ │ ├── other.tsx │ │ │ ├── outdoor_seating.svg │ │ │ ├── outdoor_seating.tsx │ │ │ ├── parcel_locker.svg │ │ │ ├── parcel_locker.tsx │ │ │ ├── park.svg │ │ │ ├── park.tsx │ │ │ ├── parking.svg │ │ │ ├── parking.tsx │ │ │ ├── parking_carports.svg │ │ │ ├── parking_carports.tsx │ │ │ ├── parking_half_on_kerb.svg │ │ │ ├── parking_half_on_kerb.tsx │ │ │ ├── parking_layby.svg │ │ │ ├── parking_layby.tsx │ │ │ ├── parking_multi_storey.svg │ │ │ ├── parking_multi_storey.tsx │ │ │ ├── parking_on_kerb.svg │ │ │ ├── parking_on_kerb.tsx │ │ │ ├── parking_rooftop.svg │ │ │ ├── parking_rooftop.tsx │ │ │ ├── parking_street_side.svg │ │ │ ├── parking_street_side.tsx │ │ │ ├── parking_surface.svg │ │ │ ├── parking_surface.tsx │ │ │ ├── parking_underground.svg │ │ │ ├── parking_underground.tsx │ │ │ ├── pet_store.svg │ │ │ ├── pet_store.tsx │ │ │ ├── pharmacy.svg │ │ │ ├── pharmacy.tsx │ │ │ ├── photography.svg │ │ │ ├── photography.tsx │ │ │ ├── physiotherapist.svg │ │ │ ├── physiotherapist.tsx │ │ │ ├── picnic_table.svg │ │ │ ├── picnic_table.tsx │ │ │ ├── pier.svg │ │ │ ├── pier.tsx │ │ │ ├── place_of_worship.svg │ │ │ ├── place_of_worship.tsx │ │ │ ├── platform.svg │ │ │ ├── platform.tsx │ │ │ ├── playground.svg │ │ │ ├── playground.tsx │ │ │ ├── police.svg │ │ │ ├── police.tsx │ │ │ ├── political_party.svg │ │ │ ├── political_party.tsx │ │ │ ├── post_box.svg │ │ │ ├── post_box.tsx │ │ │ ├── post_office.svg │ │ │ ├── post_office.tsx │ │ │ ├── psychotherapist.svg │ │ │ ├── psychotherapist.tsx │ │ │ ├── pub.svg │ │ │ ├── pub.tsx │ │ │ ├── public_art.svg │ │ │ ├── public_art.tsx │ │ │ ├── public_transport.svg │ │ │ ├── public_transport.tsx │ │ │ ├── railway_platform.svg │ │ │ ├── railway_platform.tsx │ │ │ ├── railway_station.svg │ │ │ ├── railway_station.tsx │ │ │ ├── recycling.svg │ │ │ ├── recycling.tsx │ │ │ ├── restaurant.svg │ │ │ ├── restaurant.tsx │ │ │ ├── retirement_home.svg │ │ │ ├── retirement_home.tsx │ │ │ ├── sauna.svg │ │ │ ├── sauna.tsx │ │ │ ├── school.svg │ │ │ ├── school.tsx │ │ │ ├── second_hand.svg │ │ │ ├── second_hand.tsx │ │ │ ├── shelter.svg │ │ │ ├── shelter.tsx │ │ │ ├── shoes.svg │ │ │ ├── shoes.tsx │ │ │ ├── shopping.svg │ │ │ ├── shopping.tsx │ │ │ ├── soccer.svg │ │ │ ├── soccer.tsx │ │ │ ├── social_facility.svg │ │ │ ├── social_facility.tsx │ │ │ ├── speech_therapist.svg │ │ │ ├── speech_therapist.tsx │ │ │ ├── sport.svg │ │ │ ├── sport.tsx │ │ │ ├── sports_center.svg │ │ │ ├── sports_center.tsx │ │ │ ├── sports_shop.svg │ │ │ ├── sports_shop.tsx │ │ │ ├── stadium.svg │ │ │ ├── stadium.tsx │ │ │ ├── station.svg │ │ │ ├── station.tsx │ │ │ ├── station_entrance.svg │ │ │ ├── station_entrance.tsx │ │ │ ├── stationery.svg │ │ │ ├── stationery.tsx │ │ │ ├── stop.svg │ │ │ ├── stop.tsx │ │ │ ├── stop_area.svg │ │ │ ├── stop_area.tsx │ │ │ ├── stop_position.svg │ │ │ ├── stop_position.tsx │ │ │ ├── stripclub.svg │ │ │ ├── stripclub.tsx │ │ │ ├── subway_entrance.svg │ │ │ ├── subway_entrance.tsx │ │ │ ├── subway_station.svg │ │ │ ├── subway_station.tsx │ │ │ ├── supermarket.svg │ │ │ ├── supermarket.tsx │ │ │ ├── swimming.svg │ │ │ ├── swimming.tsx │ │ │ ├── tailor.svg │ │ │ ├── tailor.tsx │ │ │ ├── tattoo.svg │ │ │ ├── tattoo.tsx │ │ │ ├── taxi.svg │ │ │ ├── taxi.tsx │ │ │ ├── tea_shop.svg │ │ │ ├── tea_shop.tsx │ │ │ ├── telephone.svg │ │ │ ├── telephone.tsx │ │ │ ├── textiles.svg │ │ │ ├── textiles.tsx │ │ │ ├── theater.svg │ │ │ ├── theater.tsx │ │ │ ├── themepark.svg │ │ │ ├── themepark.tsx │ │ │ ├── tobacco.svg │ │ │ ├── tobacco.tsx │ │ │ ├── toilets.svg │ │ │ ├── toilets.tsx │ │ │ ├── tools.svg │ │ │ ├── tools.tsx │ │ │ ├── tourism.svg │ │ │ ├── tourism.tsx │ │ │ ├── townhall.svg │ │ │ ├── townhall.tsx │ │ │ ├── toys.svg │ │ │ ├── toys.tsx │ │ │ ├── train.svg │ │ │ ├── train.tsx │ │ │ ├── train_station.svg │ │ │ ├── train_station.tsx │ │ │ ├── tram_crossing.svg │ │ │ ├── tram_crossing.tsx │ │ │ ├── tram_stop.svg │ │ │ ├── tram_stop.tsx │ │ │ ├── transport.svg │ │ │ ├── transport.tsx │ │ │ ├── travel_agency.svg │ │ │ ├── travel_agency.tsx │ │ │ ├── undefined.svg │ │ │ ├── undefined.tsx │ │ │ ├── university.svg │ │ │ ├── university.tsx │ │ │ ├── variety_store.svg │ │ │ ├── variety_store.tsx │ │ │ ├── vending_machine.svg │ │ │ ├── vending_machine.tsx │ │ │ ├── veterinary.svg │ │ │ ├── veterinary.tsx │ │ │ ├── video_store.svg │ │ │ ├── video_store.tsx │ │ │ ├── viewpoint.svg │ │ │ ├── viewpoint.tsx │ │ │ ├── water_ramp.svg │ │ │ ├── water_ramp.tsx │ │ │ ├── zoo.svg │ │ │ └── zoo.tsx │ │ ├── equipment │ │ │ ├── elevatorBrokenBig.svg │ │ │ ├── elevatorBrokenBig.tsx │ │ │ ├── elevatorUnknownBig.svg │ │ │ ├── elevatorUnknownBig.tsx │ │ │ ├── elevatorWorkingBig.svg │ │ │ ├── elevatorWorkingBig.tsx │ │ │ ├── escalatorBrokenBig.svg │ │ │ ├── escalatorBrokenBig.tsx │ │ │ ├── escalatorUnknownBig.svg │ │ │ ├── escalatorUnknownBig.tsx │ │ │ ├── escalatorWorkingBig.svg │ │ │ ├── escalatorWorkingBig.tsx │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── mainCategories │ │ │ ├── accommodation.svg │ │ │ ├── accommodation.tsx │ │ │ ├── culture.svg │ │ │ ├── culture.tsx │ │ │ ├── education.svg │ │ │ ├── education.tsx │ │ │ ├── food.svg │ │ │ ├── food.tsx │ │ │ ├── government.svg │ │ │ ├── government.tsx │ │ │ ├── health.svg │ │ │ ├── health.tsx │ │ │ ├── index.ts │ │ │ ├── leisure.svg │ │ │ ├── leisure.tsx │ │ │ ├── misc.svg │ │ │ ├── misc.tsx │ │ │ ├── money_post.svg │ │ │ ├── money_post.tsx │ │ │ ├── public_transfer.svg │ │ │ ├── public_transfer.tsx │ │ │ ├── shopping.svg │ │ │ ├── shopping.tsx │ │ │ ├── sport.svg │ │ │ ├── sport.tsx │ │ │ ├── tourism.svg │ │ │ ├── tourism.tsx │ │ │ ├── undefined.svg │ │ │ └── undefined.tsx │ │ ├── markers │ │ │ ├── event.svg │ │ │ ├── event.tsx │ │ │ ├── index.ts │ │ │ ├── limitedWithArrow.svg │ │ │ ├── limitedWithArrow.tsx │ │ │ ├── limitedWithoutArrow.svg │ │ │ ├── limitedWithoutArrow.tsx │ │ │ ├── mappingEvent.svg │ │ │ ├── mappingEvent.tsx │ │ │ ├── mappingEventHalo.svg │ │ │ ├── mappingEventHalo.tsx │ │ │ ├── noWithArrow.svg │ │ │ ├── noWithArrow.tsx │ │ │ ├── noWithoutArrow.svg │ │ │ ├── noWithoutArrow.tsx │ │ │ ├── unknownWithArrow.svg │ │ │ ├── unknownWithArrow.tsx │ │ │ ├── unknownWithoutArrow.svg │ │ │ ├── unknownWithoutArrow.tsx │ │ │ ├── yesWithArrow.svg │ │ │ ├── yesWithArrow.tsx │ │ │ ├── yesWithoutArrow.svg │ │ │ └── yesWithoutArrow.tsx │ │ └── ui-elements │ │ │ ├── BellIcon.svg │ │ │ ├── BellIcon.tsx │ │ │ ├── BreadcrumbChevron.svg │ │ │ ├── BreadcrumbChevron.tsx │ │ │ ├── CalendarIcon.svg │ │ │ ├── CalendarIcon.tsx │ │ │ ├── CheckboxChecked.svg │ │ │ ├── CheckboxChecked.tsx │ │ │ ├── CheckboxUnchecked.svg │ │ │ ├── CheckboxUnchecked.tsx │ │ │ ├── GlobeIcon.svg │ │ │ ├── GlobeIcon.tsx │ │ │ ├── MapPinIcon.svg │ │ │ ├── MapPinIcon.tsx │ │ │ ├── MapPinWithPlusIcon.svg │ │ │ ├── MapPinWithPlusIcon.tsx │ │ │ ├── RadioButtonSelected.svg │ │ │ ├── RadioButtonSelected.tsx │ │ │ ├── RadioButtonUnselected.svg │ │ │ ├── RadioButtonUnselected.tsx │ │ │ ├── UserIcon.svg │ │ │ ├── UserIcon.tsx │ │ │ └── index.ts │ ├── unindent.ts │ └── usePromise.tsx ├── lib │ ├── Analytics.ts │ ├── App.ts │ ├── Categories.ts │ ├── ClientSideConfiguration.ts │ ├── Disruption.ts │ ├── EquipmentInfo.ts │ ├── EventTarget.ts │ ├── Feature.ts │ ├── FetchManager.ts │ ├── IBranding.ts │ ├── ISVGOResult.ts │ ├── Image.ts │ ├── ImageResizer.ts │ ├── Logo.svg │ ├── Logo.tsx │ ├── MappingEvent.ts │ ├── ModalNodeState.ts │ ├── NativeAppStrings.ts │ ├── NextRouteHistory.ts │ ├── PhotoModel.ts │ ├── ResponseError.ts │ ├── Router.ts │ ├── RouterHistory.ts │ ├── TrackingEventBackend.ts │ ├── ViewportSize.ts │ ├── cache │ │ ├── AccessibilityCloudFeatureCache.ts │ │ ├── AccessibilityCloudImageCache.ts │ │ ├── AppCache.ts │ │ ├── CategoryLookupTablesCache.ts │ │ ├── DataSourceCache.ts │ │ ├── EquipmentInfoCache.ts │ │ ├── FeatureCache.ts │ │ ├── LicenseCache.ts │ │ ├── MappingEventsCache.ts │ │ ├── TTLCache.ts │ │ ├── URLDataCache.ts │ │ ├── WheelmapFeatureCache.ts │ │ ├── WheelmapLightweightFeatureCache.ts │ │ ├── convertAcPhotosToLightboxPhotos.ts │ │ ├── fetch-cache │ │ │ ├── FetchCache.spec.ts │ │ │ ├── FetchCache.ts │ │ │ ├── defaultTTL.spec.ts │ │ │ ├── defaultTTL.ts │ │ │ └── types.ts │ │ └── hamster-cache │ │ │ ├── Cache.spec.ts │ │ │ ├── Cache.ts │ │ │ ├── LRUQueue.spec.ts │ │ │ ├── LRUQueue.ts │ │ │ └── types.ts │ ├── colors.ts │ ├── config.ts │ ├── data-fetching │ │ ├── useAccessibilityAttributes.tsx │ │ └── useSWRWithPrefetch.tsx │ ├── debouncePromise.ts │ ├── env.ts │ ├── fetch.ts │ ├── filterAccessibility.ts │ ├── formatDistance.ts │ ├── generateMapsUrls.ts │ ├── generateOsmUrls.ts │ ├── geoDistance.ts │ ├── getAddressString.ts │ ├── getAddressStringFromA11yJSONFeature.ts │ ├── getHumanEnumeration.tsx │ ├── getToiletsNearby.ts │ ├── goToLocationSettings.ts │ ├── i18n.ts │ ├── insertPlaceholdersToAddPlaceUrl.ts │ ├── isEmbedTokenValid.ts │ ├── model │ │ ├── hasDefaultOSMDescription.ts │ │ ├── isA11yEditable.ts │ │ ├── isBuildingLike.ts │ │ ├── isParkingFacility.ts │ │ ├── nonBuildingCategoryIds.ts │ │ └── placeCategoriesWithoutExtraToiletEntry.tsx │ ├── normalizeCoordinates.ts │ ├── openButtonCaption.ts │ ├── pathsInObject.ts │ ├── savedState.ts │ ├── searchPlaces.ts │ ├── shouldUseImperialUnits.ts │ ├── translations.json │ └── userAgent.ts ├── next-env.d.ts ├── pages │ ├── _app.tsx │ ├── _document.tsx │ └── main.ts ├── server │ ├── healthChecks.ts │ ├── server.ts │ └── tsconfig.json ├── tsconfig.json └── types │ ├── express-cache-headers │ └── index.d.ts │ ├── leaflet │ └── index.d.ts │ └── react-images │ └── index.d.ts ├── tests ├── .eslintrc.json ├── conf │ └── parallel.conf.js ├── lib │ ├── acceptLocationAlertOnMobilesIfPresent.js │ ├── currentTest.js │ ├── getCurrentUrl.js │ └── saveScreenshot.js ├── specs-inactive │ └── .git-keep ├── specs-todo │ ├── different-place-types.js │ ├── dragAndDrop-with-keys_WORKS.js │ ├── dragAndDrop-with-pointer_NOTWORKING.js │ ├── localization.js │ ├── search-a-place-with-categories.js │ ├── search-by-shop.js │ ├── zoom-into-location.js │ └── zoom-out-of-location.js └── specs │ ├── basics.js │ ├── highlighted-marker.js │ ├── onboarding.js │ └── search-by-name.js └── tsconfig.json /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/.babelrc -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/.github/workflows/default.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /.nowignore: -------------------------------------------------------------------------------- 1 | .npmrc 2 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/.npmignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 18 2 | -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/.tx/config -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @sozialhelden/developers 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/README.md -------------------------------------------------------------------------------- /doc/TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/doc/TESTING.md -------------------------------------------------------------------------------- /doc/sozialhelden-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/doc/sozialhelden-logo.svg -------------------------------------------------------------------------------- /doc/wheelmap-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/doc/wheelmap-logo.svg -------------------------------------------------------------------------------- /docs/TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/docs/TESTING.md -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/i18n/ar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/i18n/ar.txt -------------------------------------------------------------------------------- /public/i18n/bg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/i18n/bg.txt -------------------------------------------------------------------------------- /public/i18n/ca.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/i18n/ca.txt -------------------------------------------------------------------------------- /public/i18n/cs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/i18n/cs.txt -------------------------------------------------------------------------------- /public/i18n/da.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/i18n/da.txt -------------------------------------------------------------------------------- /public/i18n/de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/i18n/de.txt -------------------------------------------------------------------------------- /public/i18n/el.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/i18n/el.txt -------------------------------------------------------------------------------- /public/i18n/en_US.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/i18n/en_US.txt -------------------------------------------------------------------------------- /public/i18n/es.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/i18n/es.txt -------------------------------------------------------------------------------- /public/i18n/fa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/i18n/fa.txt -------------------------------------------------------------------------------- /public/i18n/fi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/i18n/fi.txt -------------------------------------------------------------------------------- /public/i18n/fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/i18n/fr.txt -------------------------------------------------------------------------------- /public/i18n/fy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/i18n/fy.txt -------------------------------------------------------------------------------- /public/i18n/gl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/i18n/gl.txt -------------------------------------------------------------------------------- /public/i18n/he.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/i18n/he.txt -------------------------------------------------------------------------------- /public/i18n/hi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/i18n/hi.txt -------------------------------------------------------------------------------- /public/i18n/hu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/i18n/hu.txt -------------------------------------------------------------------------------- /public/i18n/is.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/i18n/is.txt -------------------------------------------------------------------------------- /public/i18n/it.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/i18n/it.txt -------------------------------------------------------------------------------- /public/i18n/ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/i18n/ja.txt -------------------------------------------------------------------------------- /public/i18n/ko.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/i18n/ko.txt -------------------------------------------------------------------------------- /public/i18n/lt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/i18n/lt.txt -------------------------------------------------------------------------------- /public/i18n/lv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/i18n/lv.txt -------------------------------------------------------------------------------- /public/i18n/mn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/i18n/mn.txt -------------------------------------------------------------------------------- /public/i18n/my.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/i18n/my.txt -------------------------------------------------------------------------------- /public/i18n/nb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/i18n/nb.txt -------------------------------------------------------------------------------- /public/i18n/nl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/i18n/nl.txt -------------------------------------------------------------------------------- /public/i18n/nn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/i18n/nn.txt -------------------------------------------------------------------------------- /public/i18n/no.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/i18n/no.txt -------------------------------------------------------------------------------- /public/i18n/nqo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/i18n/nqo.txt -------------------------------------------------------------------------------- /public/i18n/pl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/i18n/pl.txt -------------------------------------------------------------------------------- /public/i18n/pt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/i18n/pt.txt -------------------------------------------------------------------------------- /public/i18n/pt_BR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/i18n/pt_BR.txt -------------------------------------------------------------------------------- /public/i18n/pt_PT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/i18n/pt_PT.txt -------------------------------------------------------------------------------- /public/i18n/ro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/i18n/ro.txt -------------------------------------------------------------------------------- /public/i18n/ro_RO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/i18n/ro_RO.txt -------------------------------------------------------------------------------- /public/i18n/ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/i18n/ru.txt -------------------------------------------------------------------------------- /public/i18n/sk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/i18n/sk.txt -------------------------------------------------------------------------------- /public/i18n/sq_AL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/i18n/sq_AL.txt -------------------------------------------------------------------------------- /public/i18n/sv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/i18n/sv.txt -------------------------------------------------------------------------------- /public/i18n/sw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/i18n/sw.txt -------------------------------------------------------------------------------- /public/i18n/tlh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/i18n/tlh.txt -------------------------------------------------------------------------------- /public/i18n/tr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/i18n/tr.txt -------------------------------------------------------------------------------- /public/i18n/uk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/i18n/uk.txt -------------------------------------------------------------------------------- /public/i18n/vi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/i18n/vi.txt -------------------------------------------------------------------------------- /public/i18n/vi_VN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/i18n/vi_VN.txt -------------------------------------------------------------------------------- /public/i18n/zh-Hans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/i18n/zh-Hans.txt -------------------------------------------------------------------------------- /public/i18n/zh-Hant.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/i18n/zh-Hant.txt -------------------------------------------------------------------------------- /public/i18n/zh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/i18n/zh.txt -------------------------------------------------------------------------------- /public/i18n/zh_TW.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/i18n/zh_TW.txt -------------------------------------------------------------------------------- /public/images/Browserstack-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/images/Browserstack-logo.svg -------------------------------------------------------------------------------- /public/images/WheelmapBeta.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/images/WheelmapBeta.jpg -------------------------------------------------------------------------------- /public/images/eventPlaceholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/images/eventPlaceholder.png -------------------------------------------------------------------------------- /public/images/external-app-icons/goMap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/images/external-app-icons/goMap.png -------------------------------------------------------------------------------- /public/images/external-app-icons/idEditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/images/external-app-icons/idEditor.png -------------------------------------------------------------------------------- /public/images/external-app-icons/mapsMeForIOS.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/images/external-app-icons/mapsMeForIOS.jpg -------------------------------------------------------------------------------- /public/images/external-app-icons/vespucci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/images/external-app-icons/vespucci.png -------------------------------------------------------------------------------- /public/images/photo-upload/entrancePlaceholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/images/photo-upload/entrancePlaceholder.png -------------------------------------------------------------------------------- /public/images/photo-upload/sitemapPlaceholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/images/photo-upload/sitemapPlaceholder.png -------------------------------------------------------------------------------- /public/images/photo-upload/toiletPlaceholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/images/photo-upload/toiletPlaceholder.png -------------------------------------------------------------------------------- /public/images/splash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/images/splash.svg -------------------------------------------------------------------------------- /public/images/triangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/images/triangle.svg -------------------------------------------------------------------------------- /public/images/wheely_big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/public/images/wheely_big.jpg -------------------------------------------------------------------------------- /retranslate/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/retranslate/.babelrc -------------------------------------------------------------------------------- /retranslate/babel-plugin-retranslate/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/retranslate/babel-plugin-retranslate/.babelrc -------------------------------------------------------------------------------- /retranslate/babel-plugin-retranslate/src/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/retranslate/babel-plugin-retranslate/src/plugin.js -------------------------------------------------------------------------------- /retranslate/rewrite-pos/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/retranslate/rewrite-pos/.babelrc -------------------------------------------------------------------------------- /retranslate/rewrite-pos/rewrite-pos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/retranslate/rewrite-pos/rewrite-pos.js -------------------------------------------------------------------------------- /retranslate/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/retranslate/run.sh -------------------------------------------------------------------------------- /retranslate/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/retranslate/test.js -------------------------------------------------------------------------------- /run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/run_tests.sh -------------------------------------------------------------------------------- /scripts/createLinks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/scripts/createLinks.js -------------------------------------------------------------------------------- /scripts/generate-icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/scripts/generate-icons.js -------------------------------------------------------------------------------- /scripts/parseGettextFiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/scripts/parseGettextFiles.js -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/AppContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/AppContext.ts -------------------------------------------------------------------------------- /src/AsyncNextHead.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/AsyncNextHead.tsx -------------------------------------------------------------------------------- /src/MainView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/MainView.tsx -------------------------------------------------------------------------------- /src/app/ContributionThanksData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/app/ContributionThanksData.tsx -------------------------------------------------------------------------------- /src/app/CreatePlaceData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/app/CreatePlaceData.tsx -------------------------------------------------------------------------------- /src/app/MapData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/app/MapData.tsx -------------------------------------------------------------------------------- /src/app/MappingEventDetailData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/app/MappingEventDetailData.tsx -------------------------------------------------------------------------------- /src/app/PlaceDetailsData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/app/PlaceDetailsData.tsx -------------------------------------------------------------------------------- /src/app/PlaceDetailsProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/app/PlaceDetailsProps.ts -------------------------------------------------------------------------------- /src/app/SearchData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/app/SearchData.tsx -------------------------------------------------------------------------------- /src/app/fetchAccessibilityCloudPlacesBySameURI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/app/fetchAccessibilityCloudPlacesBySameURI.tsx -------------------------------------------------------------------------------- /src/app/getInitialProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/app/getInitialProps.ts -------------------------------------------------------------------------------- /src/app/router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/app/router.ts -------------------------------------------------------------------------------- /src/components/ActivityIndicator/Spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/ActivityIndicator/Spinner.tsx -------------------------------------------------------------------------------- /src/components/Button.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/Button.ts -------------------------------------------------------------------------------- /src/components/ChevronLeft.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/ChevronLeft.tsx -------------------------------------------------------------------------------- /src/components/ChevronRight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/ChevronRight.tsx -------------------------------------------------------------------------------- /src/components/CloseButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/CloseButton.tsx -------------------------------------------------------------------------------- /src/components/CloseLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/CloseLink.tsx -------------------------------------------------------------------------------- /src/components/CreatePlaceDialog/ChevronLeft.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/CreatePlaceDialog/ChevronLeft.tsx -------------------------------------------------------------------------------- /src/components/CreatePlaceFlow/CreatePlaceFlow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/CreatePlaceFlow/CreatePlaceFlow.tsx -------------------------------------------------------------------------------- /src/components/CreatePlaceFlow/PageStack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/CreatePlaceFlow/PageStack.tsx -------------------------------------------------------------------------------- /src/components/EmbedModeDeniedDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/EmbedModeDeniedDialog.tsx -------------------------------------------------------------------------------- /src/components/ErrorBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/ErrorBoundary.tsx -------------------------------------------------------------------------------- /src/components/FacebookMeta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/FacebookMeta.tsx -------------------------------------------------------------------------------- /src/components/FullscreenBackdrop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/FullscreenBackdrop.ts -------------------------------------------------------------------------------- /src/components/Icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/Icon.tsx -------------------------------------------------------------------------------- /src/components/IconButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/IconButton.tsx -------------------------------------------------------------------------------- /src/components/Link/Link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/Link/Link.tsx -------------------------------------------------------------------------------- /src/components/Link/RouteContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/Link/RouteContext.tsx -------------------------------------------------------------------------------- /src/components/MainMenu/GlobalActivityIndicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/MainMenu/GlobalActivityIndicator.tsx -------------------------------------------------------------------------------- /src/components/MainMenu/MainMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/MainMenu/MainMenu.tsx -------------------------------------------------------------------------------- /src/components/MainMenu/SearchIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/MainMenu/SearchIcon.tsx -------------------------------------------------------------------------------- /src/components/MainMenu/StatusBarBackground.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/MainMenu/StatusBarBackground.ts -------------------------------------------------------------------------------- /src/components/Map/A11yMarkerIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/Map/A11yMarkerIcon.tsx -------------------------------------------------------------------------------- /src/components/Map/Cluster.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/Map/Cluster.ts -------------------------------------------------------------------------------- /src/components/Map/ClusterIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/Map/ClusterIcon.tsx -------------------------------------------------------------------------------- /src/components/Map/GeoJSONTileLayer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/Map/GeoJSONTileLayer.ts -------------------------------------------------------------------------------- /src/components/Map/HighlightableMarker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/Map/HighlightableMarker.ts -------------------------------------------------------------------------------- /src/components/Map/ImmobilienScout24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/Map/ImmobilienScout24.svg -------------------------------------------------------------------------------- /src/components/Map/ImmobilienScout24Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/Map/ImmobilienScout24Logo.tsx -------------------------------------------------------------------------------- /src/components/Map/L.Control.Locate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/Map/L.Control.Locate.ts -------------------------------------------------------------------------------- /src/components/Map/LeafletLocateControlStyle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/Map/LeafletLocateControlStyle.tsx -------------------------------------------------------------------------------- /src/components/Map/LeafletStyle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/Map/LeafletStyle.tsx -------------------------------------------------------------------------------- /src/components/Map/Map.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/Map/Map.tsx -------------------------------------------------------------------------------- /src/components/Map/MapLoading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/Map/MapLoading.tsx -------------------------------------------------------------------------------- /src/components/Map/MapStyle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/Map/MapStyle.tsx -------------------------------------------------------------------------------- /src/components/Map/MappingEventHaloMarkerIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/Map/MappingEventHaloMarkerIcon.tsx -------------------------------------------------------------------------------- /src/components/Map/MappingEventMarkerIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/Map/MappingEventMarkerIcon.tsx -------------------------------------------------------------------------------- /src/components/Map/MarkerIcon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/Map/MarkerIcon.ts -------------------------------------------------------------------------------- /src/components/Map/NotificationButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/Map/NotificationButton.tsx -------------------------------------------------------------------------------- /src/components/Map/Sozialhelden.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/Map/Sozialhelden.svg -------------------------------------------------------------------------------- /src/components/Map/SozialheldenLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/Map/SozialheldenLogo.tsx -------------------------------------------------------------------------------- /src/components/Map/addLocateControlToMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/Map/addLocateControlToMap.ts -------------------------------------------------------------------------------- /src/components/Map/geoTileToBbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/Map/geoTileToBbox.ts -------------------------------------------------------------------------------- /src/components/Map/getAccessibilityCloudTileUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/Map/getAccessibilityCloudTileUrl.ts -------------------------------------------------------------------------------- /src/components/Map/getIconNameForProperties.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/Map/getIconNameForProperties.ts -------------------------------------------------------------------------------- /src/components/Map/highlightMarkers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/Map/highlightMarkers.ts -------------------------------------------------------------------------------- /src/components/Map/isSamePlace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/Map/isSamePlace.ts -------------------------------------------------------------------------------- /src/components/Map/isSamePosition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/Map/isSamePosition.ts -------------------------------------------------------------------------------- /src/components/Map/overrideLeafletZoomBehavior.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/Map/overrideLeafletZoomBehavior.ts -------------------------------------------------------------------------------- /src/components/Map/trackTileLoadingState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/Map/trackTileLoadingState.ts -------------------------------------------------------------------------------- /src/components/MapButton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/MapButton.ts -------------------------------------------------------------------------------- /src/components/MappingEvents/ChevronLeft.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/MappingEvents/ChevronLeft.ts -------------------------------------------------------------------------------- /src/components/MappingEvents/Statistics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/MappingEvents/Statistics.tsx -------------------------------------------------------------------------------- /src/components/Markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/Markdown.tsx -------------------------------------------------------------------------------- /src/components/ModalDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/ModalDialog.tsx -------------------------------------------------------------------------------- /src/components/NodeToolbar/Address.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/NodeToolbar/Address.ts -------------------------------------------------------------------------------- /src/components/NodeToolbar/BreadCrumbs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/NodeToolbar/BreadCrumbs.tsx -------------------------------------------------------------------------------- /src/components/NodeToolbar/EquipmentInfoLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/NodeToolbar/EquipmentInfoLink.tsx -------------------------------------------------------------------------------- /src/components/NodeToolbar/FeatureClusterPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/NodeToolbar/FeatureClusterPanel.tsx -------------------------------------------------------------------------------- /src/components/NodeToolbar/IncentiveHint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/NodeToolbar/IncentiveHint.ts -------------------------------------------------------------------------------- /src/components/NodeToolbar/LicenseHint.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/NodeToolbar/LicenseHint.tsx -------------------------------------------------------------------------------- /src/components/NodeToolbar/NodeHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/NodeToolbar/NodeHeader.tsx -------------------------------------------------------------------------------- /src/components/NodeToolbar/NodeToolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/NodeToolbar/NodeToolbar.tsx -------------------------------------------------------------------------------- /src/components/NodeToolbar/Photos/PhotoSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/NodeToolbar/Photos/PhotoSection.tsx -------------------------------------------------------------------------------- /src/components/NodeToolbar/PlaceInfoLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/NodeToolbar/PlaceInfoLink.tsx -------------------------------------------------------------------------------- /src/components/NodeToolbar/Report/FixOsmComment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/NodeToolbar/Report/FixOsmComment.tsx -------------------------------------------------------------------------------- /src/components/NodeToolbar/Report/MailToSupport.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/NodeToolbar/Report/MailToSupport.tsx -------------------------------------------------------------------------------- /src/components/NodeToolbar/Report/ReportDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/NodeToolbar/Report/ReportDialog.tsx -------------------------------------------------------------------------------- /src/components/NodeToolbar/Report/strings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/NodeToolbar/Report/strings.ts -------------------------------------------------------------------------------- /src/components/NodeToolbar/SourceLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/NodeToolbar/SourceLink.tsx -------------------------------------------------------------------------------- /src/components/NodeToolbar/SourceList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/NodeToolbar/SourceList.tsx -------------------------------------------------------------------------------- /src/components/NodeToolbar/StyledToolbar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/NodeToolbar/StyledToolbar.ts -------------------------------------------------------------------------------- /src/components/NodeToolbar/TextPlaceholder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/NodeToolbar/TextPlaceholder.tsx -------------------------------------------------------------------------------- /src/components/NotFound/NotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/NotFound/NotFound.tsx -------------------------------------------------------------------------------- /src/components/NotificationText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/NotificationText.tsx -------------------------------------------------------------------------------- /src/components/Onboarding/Onboarding.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/Onboarding/Onboarding.tsx -------------------------------------------------------------------------------- /src/components/OpenGraph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/OpenGraph.tsx -------------------------------------------------------------------------------- /src/components/PhotoUpload/CameraIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/PhotoUpload/CameraIcon.tsx -------------------------------------------------------------------------------- /src/components/PhotoUpload/PhotoUploadButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/PhotoUpload/PhotoUploadButton.tsx -------------------------------------------------------------------------------- /src/components/PhotoUpload/ReportPhotoToolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/PhotoUpload/ReportPhotoToolbar.tsx -------------------------------------------------------------------------------- /src/components/PhotoUpload/readme-photoupload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/PhotoUpload/readme-photoupload.md -------------------------------------------------------------------------------- /src/components/PlaceName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/PlaceName.ts -------------------------------------------------------------------------------- /src/components/SearchToolbar/CategoryButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/SearchToolbar/CategoryButton.tsx -------------------------------------------------------------------------------- /src/components/SearchToolbar/CategoryMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/SearchToolbar/CategoryMenu.tsx -------------------------------------------------------------------------------- /src/components/SearchToolbar/CombinedIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/SearchToolbar/CombinedIcon.tsx -------------------------------------------------------------------------------- /src/components/SearchToolbar/CustomRadio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/SearchToolbar/CustomRadio.tsx -------------------------------------------------------------------------------- /src/components/SearchToolbar/SearchButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/SearchToolbar/SearchButton.tsx -------------------------------------------------------------------------------- /src/components/SearchToolbar/SearchIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/SearchToolbar/SearchIcon.tsx -------------------------------------------------------------------------------- /src/components/SearchToolbar/SearchInputField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/SearchToolbar/SearchInputField.tsx -------------------------------------------------------------------------------- /src/components/SearchToolbar/SearchResult.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/SearchToolbar/SearchResult.tsx -------------------------------------------------------------------------------- /src/components/SearchToolbar/SearchResults.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/SearchToolbar/SearchResults.tsx -------------------------------------------------------------------------------- /src/components/SearchToolbar/SearchToolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/SearchToolbar/SearchToolbar.tsx -------------------------------------------------------------------------------- /src/components/ShareBar/ShareBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/ShareBar/ShareBar.tsx -------------------------------------------------------------------------------- /src/components/ShareBar/ShareBarContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/ShareBar/ShareBarContent.tsx -------------------------------------------------------------------------------- /src/components/ShareBar/ShareBarToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/ShareBar/ShareBarToggle.tsx -------------------------------------------------------------------------------- /src/components/ShareBar/icons/ChevronLeft.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/ShareBar/icons/ChevronLeft.tsx -------------------------------------------------------------------------------- /src/components/ShareBar/icons/Email.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/ShareBar/icons/Email.tsx -------------------------------------------------------------------------------- /src/components/ShareBar/icons/Facebook.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/ShareBar/icons/Facebook.tsx -------------------------------------------------------------------------------- /src/components/ShareBar/icons/Telegram.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/ShareBar/icons/Telegram.tsx -------------------------------------------------------------------------------- /src/components/ShareBar/icons/TelegramIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/ShareBar/icons/TelegramIcon.svg -------------------------------------------------------------------------------- /src/components/ShareBar/icons/Twitter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/ShareBar/icons/Twitter.tsx -------------------------------------------------------------------------------- /src/components/ShareBar/icons/WhatsApp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/ShareBar/icons/WhatsApp.tsx -------------------------------------------------------------------------------- /src/components/StyledMarkdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/StyledMarkdown.tsx -------------------------------------------------------------------------------- /src/components/Toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/Toolbar.tsx -------------------------------------------------------------------------------- /src/components/TwitterMeta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/TwitterMeta.tsx -------------------------------------------------------------------------------- /src/components/VectorImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/VectorImage.tsx -------------------------------------------------------------------------------- /src/components/WheelmapHomeLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/WheelmapHomeLink.tsx -------------------------------------------------------------------------------- /src/components/fetchJSON.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/fetchJSON.tsx -------------------------------------------------------------------------------- /src/components/icons/accessibility/ToiletStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/accessibility/ToiletStatus.tsx -------------------------------------------------------------------------------- /src/components/icons/accessibility/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/accessibility/index.ts -------------------------------------------------------------------------------- /src/components/icons/actions/Camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/actions/Camera.svg -------------------------------------------------------------------------------- /src/components/icons/actions/Camera.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/actions/Camera.tsx -------------------------------------------------------------------------------- /src/components/icons/actions/CheckmarkIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/actions/CheckmarkIcon.svg -------------------------------------------------------------------------------- /src/components/icons/actions/CheckmarkIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/actions/CheckmarkIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/actions/ChevronRight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/actions/ChevronRight.svg -------------------------------------------------------------------------------- /src/components/icons/actions/ChevronRight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/actions/ChevronRight.tsx -------------------------------------------------------------------------------- /src/components/icons/actions/Close.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/actions/Close.tsx -------------------------------------------------------------------------------- /src/components/icons/actions/Flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/actions/Flag.svg -------------------------------------------------------------------------------- /src/components/icons/actions/Flag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/actions/Flag.tsx -------------------------------------------------------------------------------- /src/components/icons/actions/LocateOff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/actions/LocateOff.svg -------------------------------------------------------------------------------- /src/components/icons/actions/LocateOff.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/actions/LocateOff.tsx -------------------------------------------------------------------------------- /src/components/icons/actions/LocateOn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/actions/LocateOn.svg -------------------------------------------------------------------------------- /src/components/icons/actions/LocateOn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/actions/LocateOn.tsx -------------------------------------------------------------------------------- /src/components/icons/actions/PenIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/actions/PenIcon.svg -------------------------------------------------------------------------------- /src/components/icons/actions/PenIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/actions/PenIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/actions/Phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/actions/Phone.svg -------------------------------------------------------------------------------- /src/components/icons/actions/Phone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/actions/Phone.tsx -------------------------------------------------------------------------------- /src/components/icons/actions/Place.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/actions/Place.svg -------------------------------------------------------------------------------- /src/components/icons/actions/Place.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/actions/Place.tsx -------------------------------------------------------------------------------- /src/components/icons/actions/ProblemIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/actions/ProblemIcon.svg -------------------------------------------------------------------------------- /src/components/icons/actions/ProblemIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/actions/ProblemIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/actions/Route.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/actions/Route.svg -------------------------------------------------------------------------------- /src/components/icons/actions/Route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/actions/Route.tsx -------------------------------------------------------------------------------- /src/components/icons/actions/Search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/actions/Search.tsx -------------------------------------------------------------------------------- /src/components/icons/actions/ShareIOS.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/actions/ShareIOS.svg -------------------------------------------------------------------------------- /src/components/icons/actions/ShareIOS.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/actions/ShareIOS.tsx -------------------------------------------------------------------------------- /src/components/icons/actions/World.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/actions/World.svg -------------------------------------------------------------------------------- /src/components/icons/actions/World.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/actions/World.tsx -------------------------------------------------------------------------------- /src/components/icons/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/actions/index.ts -------------------------------------------------------------------------------- /src/components/icons/actions/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/actions/search.svg -------------------------------------------------------------------------------- /src/components/icons/categories/accommodation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/accommodation.svg -------------------------------------------------------------------------------- /src/components/icons/categories/accommodation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/accommodation.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/airport.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/airport.svg -------------------------------------------------------------------------------- /src/components/icons/categories/airport.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/airport.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/alcohol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/alcohol.svg -------------------------------------------------------------------------------- /src/components/icons/categories/alcohol.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/alcohol.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/allotments.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/allotments.svg -------------------------------------------------------------------------------- /src/components/icons/categories/allotments.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/allotments.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/animal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/animal.svg -------------------------------------------------------------------------------- /src/components/icons/categories/animal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/animal.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/antiques.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/antiques.svg -------------------------------------------------------------------------------- /src/components/icons/categories/antiques.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/antiques.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/art_gallery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/art_gallery.svg -------------------------------------------------------------------------------- /src/components/icons/categories/art_gallery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/art_gallery.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/art_shop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/art_shop.svg -------------------------------------------------------------------------------- /src/components/icons/categories/art_shop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/art_shop.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/arts_center.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/arts_center.svg -------------------------------------------------------------------------------- /src/components/icons/categories/arts_center.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/arts_center.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/association.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/association.svg -------------------------------------------------------------------------------- /src/components/icons/categories/association.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/association.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/atm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/atm.svg -------------------------------------------------------------------------------- /src/components/icons/categories/atm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/atm.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/attraction.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/attraction.svg -------------------------------------------------------------------------------- /src/components/icons/categories/attraction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/attraction.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/bank.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/bank.svg -------------------------------------------------------------------------------- /src/components/icons/categories/bank.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/bank.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/bar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/bar.svg -------------------------------------------------------------------------------- /src/components/icons/categories/bar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/bar.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/barber.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/barber.svg -------------------------------------------------------------------------------- /src/components/icons/categories/barber.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/barber.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/bbq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/bbq.svg -------------------------------------------------------------------------------- /src/components/icons/categories/bbq.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/bbq.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/beach.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/beach.svg -------------------------------------------------------------------------------- /src/components/icons/categories/beach.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/beach.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/beautysalon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/beautysalon.svg -------------------------------------------------------------------------------- /src/components/icons/categories/beautysalon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/beautysalon.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/bed_breakfast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/bed_breakfast.svg -------------------------------------------------------------------------------- /src/components/icons/categories/bed_breakfast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/bed_breakfast.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/beverages.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/beverages.svg -------------------------------------------------------------------------------- /src/components/icons/categories/beverages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/beverages.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/bicycle_rental.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/bicycle_rental.svg -------------------------------------------------------------------------------- /src/components/icons/categories/bicycle_rental.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/bicycle_rental.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/bicycle_repair.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/bicycle_repair.svg -------------------------------------------------------------------------------- /src/components/icons/categories/bicycle_repair.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/bicycle_repair.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/bicycle_store.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/bicycle_store.svg -------------------------------------------------------------------------------- /src/components/icons/categories/bicycle_store.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/bicycle_store.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/biergarten.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/biergarten.svg -------------------------------------------------------------------------------- /src/components/icons/categories/biergarten.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/biergarten.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/boarding_area.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/boarding_area.svg -------------------------------------------------------------------------------- /src/components/icons/categories/boarding_area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/boarding_area.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/books.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/books.svg -------------------------------------------------------------------------------- /src/components/icons/categories/books.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/books.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/bread.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/bread.svg -------------------------------------------------------------------------------- /src/components/icons/categories/bread.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/bread.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/brothel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/brothel.svg -------------------------------------------------------------------------------- /src/components/icons/categories/brothel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/brothel.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/bus_station.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/bus_station.svg -------------------------------------------------------------------------------- /src/components/icons/categories/bus_station.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/bus_station.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/bus_stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/bus_stop.svg -------------------------------------------------------------------------------- /src/components/icons/categories/bus_stop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/bus_stop.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/butcher.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/butcher.svg -------------------------------------------------------------------------------- /src/components/icons/categories/butcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/butcher.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/cablecar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/cablecar.svg -------------------------------------------------------------------------------- /src/components/icons/categories/cablecar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/cablecar.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/camping.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/camping.svg -------------------------------------------------------------------------------- /src/components/icons/categories/camping.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/camping.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/canteen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/canteen.svg -------------------------------------------------------------------------------- /src/components/icons/categories/canteen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/canteen.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/car_dealer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/car_dealer.svg -------------------------------------------------------------------------------- /src/components/icons/categories/car_dealer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/car_dealer.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/car_rental.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/car_rental.svg -------------------------------------------------------------------------------- /src/components/icons/categories/car_rental.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/car_rental.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/car_repair.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/car_repair.svg -------------------------------------------------------------------------------- /src/components/icons/categories/car_repair.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/car_repair.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/car_sharing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/car_sharing.svg -------------------------------------------------------------------------------- /src/components/icons/categories/car_sharing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/car_sharing.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/caravan_site.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/caravan_site.svg -------------------------------------------------------------------------------- /src/components/icons/categories/caravan_site.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/caravan_site.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/casino.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/casino.svg -------------------------------------------------------------------------------- /src/components/icons/categories/casino.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/casino.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/castle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/castle.svg -------------------------------------------------------------------------------- /src/components/icons/categories/castle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/castle.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/cave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/cave.svg -------------------------------------------------------------------------------- /src/components/icons/categories/cave.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/cave.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/cemetery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/cemetery.svg -------------------------------------------------------------------------------- /src/components/icons/categories/cemetery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/cemetery.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/chalet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/chalet.svg -------------------------------------------------------------------------------- /src/components/icons/categories/chalet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/chalet.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/chemist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/chemist.svg -------------------------------------------------------------------------------- /src/components/icons/categories/chemist.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/chemist.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/cinema.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/cinema.svg -------------------------------------------------------------------------------- /src/components/icons/categories/cinema.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/cinema.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/clothes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/clothes.svg -------------------------------------------------------------------------------- /src/components/icons/categories/clothes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/clothes.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/coffee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/coffee.svg -------------------------------------------------------------------------------- /src/components/icons/categories/coffee.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/coffee.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/college.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/college.svg -------------------------------------------------------------------------------- /src/components/icons/categories/college.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/college.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/communitycentre.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/communitycentre.svg -------------------------------------------------------------------------------- /src/components/icons/categories/communitycentre.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/communitycentre.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/company.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/company.svg -------------------------------------------------------------------------------- /src/components/icons/categories/company.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/company.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/computers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/computers.svg -------------------------------------------------------------------------------- /src/components/icons/categories/computers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/computers.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/confectionery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/confectionery.svg -------------------------------------------------------------------------------- /src/components/icons/categories/confectionery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/confectionery.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/copyshop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/copyshop.svg -------------------------------------------------------------------------------- /src/components/icons/categories/copyshop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/copyshop.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/court.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/court.svg -------------------------------------------------------------------------------- /src/components/icons/categories/court.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/court.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/culture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/culture.svg -------------------------------------------------------------------------------- /src/components/icons/categories/culture.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/culture.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/deli.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/deli.svg -------------------------------------------------------------------------------- /src/components/icons/categories/deli.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/deli.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/dentist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/dentist.svg -------------------------------------------------------------------------------- /src/components/icons/categories/dentist.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/dentist.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/diy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/diy.svg -------------------------------------------------------------------------------- /src/components/icons/categories/diy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/diy.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/doctor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/doctor.svg -------------------------------------------------------------------------------- /src/components/icons/categories/doctor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/doctor.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/dog_park.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/dog_park.svg -------------------------------------------------------------------------------- /src/components/icons/categories/dog_park.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/dog_park.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/dormitory.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/dormitory.svg -------------------------------------------------------------------------------- /src/components/icons/categories/dormitory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/dormitory.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/drinkingwater.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/drinkingwater.svg -------------------------------------------------------------------------------- /src/components/icons/categories/drinkingwater.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/drinkingwater.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/driving_school.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/driving_school.svg -------------------------------------------------------------------------------- /src/components/icons/categories/driving_school.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/driving_school.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/dry_cleaning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/dry_cleaning.svg -------------------------------------------------------------------------------- /src/components/icons/categories/dry_cleaning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/dry_cleaning.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/education.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/education.svg -------------------------------------------------------------------------------- /src/components/icons/categories/education.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/education.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/electronics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/electronics.svg -------------------------------------------------------------------------------- /src/components/icons/categories/electronics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/electronics.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/elevator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/elevator.svg -------------------------------------------------------------------------------- /src/components/icons/categories/elevator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/elevator.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/embassy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/embassy.svg -------------------------------------------------------------------------------- /src/components/icons/categories/embassy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/embassy.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/entrance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/entrance.svg -------------------------------------------------------------------------------- /src/components/icons/categories/entrance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/entrance.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/erotic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/erotic.svg -------------------------------------------------------------------------------- /src/components/icons/categories/erotic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/erotic.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/escalator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/escalator.svg -------------------------------------------------------------------------------- /src/components/icons/categories/escalator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/escalator.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/fastfood.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/fastfood.svg -------------------------------------------------------------------------------- /src/components/icons/categories/fastfood.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/fastfood.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/ferry.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/ferry.svg -------------------------------------------------------------------------------- /src/components/icons/categories/ferry.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/ferry.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/flowers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/flowers.svg -------------------------------------------------------------------------------- /src/components/icons/categories/flowers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/flowers.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/food.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/food.svg -------------------------------------------------------------------------------- /src/components/icons/categories/food.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/food.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/fuel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/fuel.svg -------------------------------------------------------------------------------- /src/components/icons/categories/fuel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/fuel.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/funeral_home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/funeral_home.svg -------------------------------------------------------------------------------- /src/components/icons/categories/funeral_home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/funeral_home.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/furniture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/furniture.svg -------------------------------------------------------------------------------- /src/components/icons/categories/furniture.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/furniture.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/garden_center.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/garden_center.svg -------------------------------------------------------------------------------- /src/components/icons/categories/garden_center.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/garden_center.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/gifts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/gifts.svg -------------------------------------------------------------------------------- /src/components/icons/categories/gifts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/gifts.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/greengrocer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/greengrocer.svg -------------------------------------------------------------------------------- /src/components/icons/categories/greengrocer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/greengrocer.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/guest_house.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/guest_house.svg -------------------------------------------------------------------------------- /src/components/icons/categories/guest_house.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/guest_house.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/halt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/halt.svg -------------------------------------------------------------------------------- /src/components/icons/categories/halt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/halt.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/health.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/health.svg -------------------------------------------------------------------------------- /src/components/icons/categories/health.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/health.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/hearing_aids.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/hearing_aids.svg -------------------------------------------------------------------------------- /src/components/icons/categories/hearing_aids.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/hearing_aids.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/hiking.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/hiking.svg -------------------------------------------------------------------------------- /src/components/icons/categories/hiking.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/hiking.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/hospital.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/hospital.svg -------------------------------------------------------------------------------- /src/components/icons/categories/hospital.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/hospital.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/hostel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/hostel.svg -------------------------------------------------------------------------------- /src/components/icons/categories/hostel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/hostel.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/hotel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/hotel.svg -------------------------------------------------------------------------------- /src/components/icons/categories/hotel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/hotel.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/house.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/house.svg -------------------------------------------------------------------------------- /src/components/icons/categories/house.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/house.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/icecream.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/icecream.svg -------------------------------------------------------------------------------- /src/components/icons/categories/icecream.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/icecream.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/index.ts -------------------------------------------------------------------------------- /src/components/icons/categories/industry.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/industry.svg -------------------------------------------------------------------------------- /src/components/icons/categories/industry.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/industry.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/information.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/information.svg -------------------------------------------------------------------------------- /src/components/icons/categories/information.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/information.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/instruments.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/instruments.svg -------------------------------------------------------------------------------- /src/components/icons/categories/instruments.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/instruments.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/insurance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/insurance.svg -------------------------------------------------------------------------------- /src/components/icons/categories/insurance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/insurance.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/jewelry.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/jewelry.svg -------------------------------------------------------------------------------- /src/components/icons/categories/jewelry.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/jewelry.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/kindergarten.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/kindergarten.svg -------------------------------------------------------------------------------- /src/components/icons/categories/kindergarten.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/kindergarten.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/kiosk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/kiosk.svg -------------------------------------------------------------------------------- /src/components/icons/categories/kiosk.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/kiosk.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/laundry.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/laundry.svg -------------------------------------------------------------------------------- /src/components/icons/categories/laundry.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/laundry.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/lawyer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/lawyer.svg -------------------------------------------------------------------------------- /src/components/icons/categories/lawyer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/lawyer.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/leisure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/leisure.svg -------------------------------------------------------------------------------- /src/components/icons/categories/leisure.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/leisure.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/library.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/library.svg -------------------------------------------------------------------------------- /src/components/icons/categories/library.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/library.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/mall.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/mall.svg -------------------------------------------------------------------------------- /src/components/icons/categories/mall.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/mall.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/marina.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/marina.svg -------------------------------------------------------------------------------- /src/components/icons/categories/marina.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/marina.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/market.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/market.svg -------------------------------------------------------------------------------- /src/components/icons/categories/market.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/market.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/massage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/massage.svg -------------------------------------------------------------------------------- /src/components/icons/categories/massage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/massage.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/medical_store.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/medical_store.svg -------------------------------------------------------------------------------- /src/components/icons/categories/medical_store.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/medical_store.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/memorial.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/memorial.svg -------------------------------------------------------------------------------- /src/components/icons/categories/memorial.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/memorial.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/mobile_phones.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/mobile_phones.svg -------------------------------------------------------------------------------- /src/components/icons/categories/mobile_phones.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/mobile_phones.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/money.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/money.svg -------------------------------------------------------------------------------- /src/components/icons/categories/money.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/money.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/motel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/motel.svg -------------------------------------------------------------------------------- /src/components/icons/categories/motel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/motel.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/museum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/museum.svg -------------------------------------------------------------------------------- /src/components/icons/categories/museum.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/museum.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/music.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/music.svg -------------------------------------------------------------------------------- /src/components/icons/categories/music.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/music.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/music_school.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/music_school.svg -------------------------------------------------------------------------------- /src/components/icons/categories/music_school.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/music_school.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/newsagent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/newsagent.svg -------------------------------------------------------------------------------- /src/components/icons/categories/newsagent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/newsagent.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/ngo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/ngo.svg -------------------------------------------------------------------------------- /src/components/icons/categories/ngo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/ngo.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/nightclub.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/nightclub.svg -------------------------------------------------------------------------------- /src/components/icons/categories/nightclub.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/nightclub.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/official.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/official.svg -------------------------------------------------------------------------------- /src/components/icons/categories/official.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/official.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/ophthalmologist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/ophthalmologist.svg -------------------------------------------------------------------------------- /src/components/icons/categories/ophthalmologist.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/ophthalmologist.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/organic_food.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/organic_food.svg -------------------------------------------------------------------------------- /src/components/icons/categories/organic_food.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/organic_food.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/other.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/other.svg -------------------------------------------------------------------------------- /src/components/icons/categories/other.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/other.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/outdoor_seating.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/outdoor_seating.svg -------------------------------------------------------------------------------- /src/components/icons/categories/outdoor_seating.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/outdoor_seating.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/parcel_locker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/parcel_locker.svg -------------------------------------------------------------------------------- /src/components/icons/categories/parcel_locker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/parcel_locker.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/park.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/park.svg -------------------------------------------------------------------------------- /src/components/icons/categories/park.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/park.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/parking.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/parking.svg -------------------------------------------------------------------------------- /src/components/icons/categories/parking.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/parking.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/parking_layby.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/parking_layby.svg -------------------------------------------------------------------------------- /src/components/icons/categories/parking_layby.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/parking_layby.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/parking_on_kerb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/parking_on_kerb.svg -------------------------------------------------------------------------------- /src/components/icons/categories/parking_on_kerb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/parking_on_kerb.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/parking_rooftop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/parking_rooftop.svg -------------------------------------------------------------------------------- /src/components/icons/categories/parking_rooftop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/parking_rooftop.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/parking_surface.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/parking_surface.svg -------------------------------------------------------------------------------- /src/components/icons/categories/parking_surface.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/parking_surface.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/pet_store.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/pet_store.svg -------------------------------------------------------------------------------- /src/components/icons/categories/pet_store.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/pet_store.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/pharmacy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/pharmacy.svg -------------------------------------------------------------------------------- /src/components/icons/categories/pharmacy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/pharmacy.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/photography.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/photography.svg -------------------------------------------------------------------------------- /src/components/icons/categories/photography.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/photography.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/physiotherapist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/physiotherapist.svg -------------------------------------------------------------------------------- /src/components/icons/categories/physiotherapist.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/physiotherapist.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/picnic_table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/picnic_table.svg -------------------------------------------------------------------------------- /src/components/icons/categories/picnic_table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/picnic_table.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/pier.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/pier.svg -------------------------------------------------------------------------------- /src/components/icons/categories/pier.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/pier.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/platform.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/platform.svg -------------------------------------------------------------------------------- /src/components/icons/categories/platform.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/platform.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/playground.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/playground.svg -------------------------------------------------------------------------------- /src/components/icons/categories/playground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/playground.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/police.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/police.svg -------------------------------------------------------------------------------- /src/components/icons/categories/police.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/police.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/political_party.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/political_party.svg -------------------------------------------------------------------------------- /src/components/icons/categories/political_party.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/political_party.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/post_box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/post_box.svg -------------------------------------------------------------------------------- /src/components/icons/categories/post_box.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/post_box.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/post_office.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/post_office.svg -------------------------------------------------------------------------------- /src/components/icons/categories/post_office.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/post_office.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/psychotherapist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/psychotherapist.svg -------------------------------------------------------------------------------- /src/components/icons/categories/psychotherapist.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/psychotherapist.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/pub.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/pub.svg -------------------------------------------------------------------------------- /src/components/icons/categories/pub.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/pub.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/public_art.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/public_art.svg -------------------------------------------------------------------------------- /src/components/icons/categories/public_art.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/public_art.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/railway_station.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/railway_station.svg -------------------------------------------------------------------------------- /src/components/icons/categories/railway_station.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/railway_station.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/recycling.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/recycling.svg -------------------------------------------------------------------------------- /src/components/icons/categories/recycling.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/recycling.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/restaurant.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/restaurant.svg -------------------------------------------------------------------------------- /src/components/icons/categories/restaurant.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/restaurant.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/retirement_home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/retirement_home.svg -------------------------------------------------------------------------------- /src/components/icons/categories/retirement_home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/retirement_home.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/sauna.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/sauna.svg -------------------------------------------------------------------------------- /src/components/icons/categories/sauna.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/sauna.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/school.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/school.svg -------------------------------------------------------------------------------- /src/components/icons/categories/school.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/school.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/second_hand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/second_hand.svg -------------------------------------------------------------------------------- /src/components/icons/categories/second_hand.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/second_hand.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/shelter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/shelter.svg -------------------------------------------------------------------------------- /src/components/icons/categories/shelter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/shelter.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/shoes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/shoes.svg -------------------------------------------------------------------------------- /src/components/icons/categories/shoes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/shoes.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/shopping.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/shopping.svg -------------------------------------------------------------------------------- /src/components/icons/categories/shopping.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/shopping.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/soccer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/soccer.svg -------------------------------------------------------------------------------- /src/components/icons/categories/soccer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/soccer.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/social_facility.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/social_facility.svg -------------------------------------------------------------------------------- /src/components/icons/categories/social_facility.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/social_facility.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/sport.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/sport.svg -------------------------------------------------------------------------------- /src/components/icons/categories/sport.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/sport.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/sports_center.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/sports_center.svg -------------------------------------------------------------------------------- /src/components/icons/categories/sports_center.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/sports_center.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/sports_shop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/sports_shop.svg -------------------------------------------------------------------------------- /src/components/icons/categories/sports_shop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/sports_shop.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/stadium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/stadium.svg -------------------------------------------------------------------------------- /src/components/icons/categories/stadium.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/stadium.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/station.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/station.svg -------------------------------------------------------------------------------- /src/components/icons/categories/station.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/station.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/stationery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/stationery.svg -------------------------------------------------------------------------------- /src/components/icons/categories/stationery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/stationery.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/stop.svg -------------------------------------------------------------------------------- /src/components/icons/categories/stop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/stop.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/stop_area.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/stop_area.svg -------------------------------------------------------------------------------- /src/components/icons/categories/stop_area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/stop_area.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/stop_position.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/stop_position.svg -------------------------------------------------------------------------------- /src/components/icons/categories/stripclub.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/stripclub.svg -------------------------------------------------------------------------------- /src/components/icons/categories/stripclub.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/stripclub.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/supermarket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/supermarket.svg -------------------------------------------------------------------------------- /src/components/icons/categories/supermarket.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/supermarket.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/swimming.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/swimming.svg -------------------------------------------------------------------------------- /src/components/icons/categories/swimming.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/swimming.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/tailor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/tailor.svg -------------------------------------------------------------------------------- /src/components/icons/categories/tailor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/tailor.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/tattoo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/tattoo.svg -------------------------------------------------------------------------------- /src/components/icons/categories/tattoo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/tattoo.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/taxi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/taxi.svg -------------------------------------------------------------------------------- /src/components/icons/categories/taxi.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/taxi.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/tea_shop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/tea_shop.svg -------------------------------------------------------------------------------- /src/components/icons/categories/tea_shop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/tea_shop.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/telephone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/telephone.svg -------------------------------------------------------------------------------- /src/components/icons/categories/telephone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/telephone.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/textiles.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/textiles.svg -------------------------------------------------------------------------------- /src/components/icons/categories/textiles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/textiles.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/theater.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/theater.svg -------------------------------------------------------------------------------- /src/components/icons/categories/theater.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/theater.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/themepark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/themepark.svg -------------------------------------------------------------------------------- /src/components/icons/categories/themepark.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/themepark.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/tobacco.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/tobacco.svg -------------------------------------------------------------------------------- /src/components/icons/categories/tobacco.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/tobacco.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/toilets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/toilets.svg -------------------------------------------------------------------------------- /src/components/icons/categories/toilets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/toilets.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/tools.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/tools.svg -------------------------------------------------------------------------------- /src/components/icons/categories/tools.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/tools.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/tourism.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/tourism.svg -------------------------------------------------------------------------------- /src/components/icons/categories/tourism.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/tourism.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/townhall.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/townhall.svg -------------------------------------------------------------------------------- /src/components/icons/categories/townhall.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/townhall.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/toys.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/toys.svg -------------------------------------------------------------------------------- /src/components/icons/categories/toys.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/toys.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/train.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/train.svg -------------------------------------------------------------------------------- /src/components/icons/categories/train.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/train.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/tram_stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/tram_stop.svg -------------------------------------------------------------------------------- /src/components/icons/categories/tram_stop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/tram_stop.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/transport.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/transport.svg -------------------------------------------------------------------------------- /src/components/icons/categories/transport.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/transport.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/undefined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/undefined.svg -------------------------------------------------------------------------------- /src/components/icons/categories/undefined.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/undefined.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/university.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/university.svg -------------------------------------------------------------------------------- /src/components/icons/categories/university.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/university.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/veterinary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/veterinary.svg -------------------------------------------------------------------------------- /src/components/icons/categories/veterinary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/veterinary.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/video_store.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/video_store.svg -------------------------------------------------------------------------------- /src/components/icons/categories/video_store.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/video_store.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/viewpoint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/viewpoint.svg -------------------------------------------------------------------------------- /src/components/icons/categories/viewpoint.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/viewpoint.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/water_ramp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/water_ramp.svg -------------------------------------------------------------------------------- /src/components/icons/categories/water_ramp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/water_ramp.tsx -------------------------------------------------------------------------------- /src/components/icons/categories/zoo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/zoo.svg -------------------------------------------------------------------------------- /src/components/icons/categories/zoo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/categories/zoo.tsx -------------------------------------------------------------------------------- /src/components/icons/equipment/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/equipment/index.ts -------------------------------------------------------------------------------- /src/components/icons/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/index.ts -------------------------------------------------------------------------------- /src/components/icons/mainCategories/culture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/mainCategories/culture.svg -------------------------------------------------------------------------------- /src/components/icons/mainCategories/culture.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/mainCategories/culture.tsx -------------------------------------------------------------------------------- /src/components/icons/mainCategories/food.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/mainCategories/food.svg -------------------------------------------------------------------------------- /src/components/icons/mainCategories/food.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/mainCategories/food.tsx -------------------------------------------------------------------------------- /src/components/icons/mainCategories/health.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/mainCategories/health.svg -------------------------------------------------------------------------------- /src/components/icons/mainCategories/health.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/mainCategories/health.tsx -------------------------------------------------------------------------------- /src/components/icons/mainCategories/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/mainCategories/index.ts -------------------------------------------------------------------------------- /src/components/icons/mainCategories/leisure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/mainCategories/leisure.svg -------------------------------------------------------------------------------- /src/components/icons/mainCategories/leisure.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/mainCategories/leisure.tsx -------------------------------------------------------------------------------- /src/components/icons/mainCategories/misc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/mainCategories/misc.svg -------------------------------------------------------------------------------- /src/components/icons/mainCategories/misc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/mainCategories/misc.tsx -------------------------------------------------------------------------------- /src/components/icons/mainCategories/shopping.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/mainCategories/shopping.svg -------------------------------------------------------------------------------- /src/components/icons/mainCategories/shopping.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/mainCategories/shopping.tsx -------------------------------------------------------------------------------- /src/components/icons/mainCategories/sport.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/mainCategories/sport.svg -------------------------------------------------------------------------------- /src/components/icons/mainCategories/sport.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/mainCategories/sport.tsx -------------------------------------------------------------------------------- /src/components/icons/mainCategories/tourism.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/mainCategories/tourism.svg -------------------------------------------------------------------------------- /src/components/icons/mainCategories/tourism.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/mainCategories/tourism.tsx -------------------------------------------------------------------------------- /src/components/icons/markers/event.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/markers/event.svg -------------------------------------------------------------------------------- /src/components/icons/markers/event.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/markers/event.tsx -------------------------------------------------------------------------------- /src/components/icons/markers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/markers/index.ts -------------------------------------------------------------------------------- /src/components/icons/markers/mappingEvent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/markers/mappingEvent.svg -------------------------------------------------------------------------------- /src/components/icons/markers/mappingEvent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/markers/mappingEvent.tsx -------------------------------------------------------------------------------- /src/components/icons/markers/noWithArrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/markers/noWithArrow.svg -------------------------------------------------------------------------------- /src/components/icons/markers/noWithArrow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/markers/noWithArrow.tsx -------------------------------------------------------------------------------- /src/components/icons/markers/noWithoutArrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/markers/noWithoutArrow.svg -------------------------------------------------------------------------------- /src/components/icons/markers/noWithoutArrow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/markers/noWithoutArrow.tsx -------------------------------------------------------------------------------- /src/components/icons/markers/yesWithArrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/markers/yesWithArrow.svg -------------------------------------------------------------------------------- /src/components/icons/markers/yesWithArrow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/markers/yesWithArrow.tsx -------------------------------------------------------------------------------- /src/components/icons/markers/yesWithoutArrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/markers/yesWithoutArrow.svg -------------------------------------------------------------------------------- /src/components/icons/markers/yesWithoutArrow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/markers/yesWithoutArrow.tsx -------------------------------------------------------------------------------- /src/components/icons/ui-elements/BellIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/ui-elements/BellIcon.svg -------------------------------------------------------------------------------- /src/components/icons/ui-elements/BellIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/ui-elements/BellIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/ui-elements/GlobeIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/ui-elements/GlobeIcon.svg -------------------------------------------------------------------------------- /src/components/icons/ui-elements/GlobeIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/ui-elements/GlobeIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/ui-elements/MapPinIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/ui-elements/MapPinIcon.svg -------------------------------------------------------------------------------- /src/components/icons/ui-elements/MapPinIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/ui-elements/MapPinIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/ui-elements/UserIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/ui-elements/UserIcon.svg -------------------------------------------------------------------------------- /src/components/icons/ui-elements/UserIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/ui-elements/UserIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/ui-elements/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/icons/ui-elements/index.ts -------------------------------------------------------------------------------- /src/components/unindent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/unindent.ts -------------------------------------------------------------------------------- /src/components/usePromise.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/components/usePromise.tsx -------------------------------------------------------------------------------- /src/lib/Analytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/Analytics.ts -------------------------------------------------------------------------------- /src/lib/App.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/App.ts -------------------------------------------------------------------------------- /src/lib/Categories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/Categories.ts -------------------------------------------------------------------------------- /src/lib/ClientSideConfiguration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/ClientSideConfiguration.ts -------------------------------------------------------------------------------- /src/lib/Disruption.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/Disruption.ts -------------------------------------------------------------------------------- /src/lib/EquipmentInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/EquipmentInfo.ts -------------------------------------------------------------------------------- /src/lib/EventTarget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/EventTarget.ts -------------------------------------------------------------------------------- /src/lib/Feature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/Feature.ts -------------------------------------------------------------------------------- /src/lib/FetchManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/FetchManager.ts -------------------------------------------------------------------------------- /src/lib/IBranding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/IBranding.ts -------------------------------------------------------------------------------- /src/lib/ISVGOResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/ISVGOResult.ts -------------------------------------------------------------------------------- /src/lib/Image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/Image.ts -------------------------------------------------------------------------------- /src/lib/ImageResizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/ImageResizer.ts -------------------------------------------------------------------------------- /src/lib/Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/Logo.svg -------------------------------------------------------------------------------- /src/lib/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/Logo.tsx -------------------------------------------------------------------------------- /src/lib/MappingEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/MappingEvent.ts -------------------------------------------------------------------------------- /src/lib/ModalNodeState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/ModalNodeState.ts -------------------------------------------------------------------------------- /src/lib/NativeAppStrings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/NativeAppStrings.ts -------------------------------------------------------------------------------- /src/lib/NextRouteHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/NextRouteHistory.ts -------------------------------------------------------------------------------- /src/lib/PhotoModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/PhotoModel.ts -------------------------------------------------------------------------------- /src/lib/ResponseError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/ResponseError.ts -------------------------------------------------------------------------------- /src/lib/Router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/Router.ts -------------------------------------------------------------------------------- /src/lib/RouterHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/RouterHistory.ts -------------------------------------------------------------------------------- /src/lib/TrackingEventBackend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/TrackingEventBackend.ts -------------------------------------------------------------------------------- /src/lib/ViewportSize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/ViewportSize.ts -------------------------------------------------------------------------------- /src/lib/cache/AccessibilityCloudFeatureCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/cache/AccessibilityCloudFeatureCache.ts -------------------------------------------------------------------------------- /src/lib/cache/AccessibilityCloudImageCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/cache/AccessibilityCloudImageCache.ts -------------------------------------------------------------------------------- /src/lib/cache/AppCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/cache/AppCache.ts -------------------------------------------------------------------------------- /src/lib/cache/CategoryLookupTablesCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/cache/CategoryLookupTablesCache.ts -------------------------------------------------------------------------------- /src/lib/cache/DataSourceCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/cache/DataSourceCache.ts -------------------------------------------------------------------------------- /src/lib/cache/EquipmentInfoCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/cache/EquipmentInfoCache.ts -------------------------------------------------------------------------------- /src/lib/cache/FeatureCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/cache/FeatureCache.ts -------------------------------------------------------------------------------- /src/lib/cache/LicenseCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/cache/LicenseCache.ts -------------------------------------------------------------------------------- /src/lib/cache/MappingEventsCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/cache/MappingEventsCache.ts -------------------------------------------------------------------------------- /src/lib/cache/TTLCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/cache/TTLCache.ts -------------------------------------------------------------------------------- /src/lib/cache/URLDataCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/cache/URLDataCache.ts -------------------------------------------------------------------------------- /src/lib/cache/WheelmapFeatureCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/cache/WheelmapFeatureCache.ts -------------------------------------------------------------------------------- /src/lib/cache/WheelmapLightweightFeatureCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/cache/WheelmapLightweightFeatureCache.ts -------------------------------------------------------------------------------- /src/lib/cache/convertAcPhotosToLightboxPhotos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/cache/convertAcPhotosToLightboxPhotos.ts -------------------------------------------------------------------------------- /src/lib/cache/fetch-cache/FetchCache.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/cache/fetch-cache/FetchCache.spec.ts -------------------------------------------------------------------------------- /src/lib/cache/fetch-cache/FetchCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/cache/fetch-cache/FetchCache.ts -------------------------------------------------------------------------------- /src/lib/cache/fetch-cache/defaultTTL.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/cache/fetch-cache/defaultTTL.spec.ts -------------------------------------------------------------------------------- /src/lib/cache/fetch-cache/defaultTTL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/cache/fetch-cache/defaultTTL.ts -------------------------------------------------------------------------------- /src/lib/cache/fetch-cache/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/cache/fetch-cache/types.ts -------------------------------------------------------------------------------- /src/lib/cache/hamster-cache/Cache.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/cache/hamster-cache/Cache.spec.ts -------------------------------------------------------------------------------- /src/lib/cache/hamster-cache/Cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/cache/hamster-cache/Cache.ts -------------------------------------------------------------------------------- /src/lib/cache/hamster-cache/LRUQueue.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/cache/hamster-cache/LRUQueue.spec.ts -------------------------------------------------------------------------------- /src/lib/cache/hamster-cache/LRUQueue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/cache/hamster-cache/LRUQueue.ts -------------------------------------------------------------------------------- /src/lib/cache/hamster-cache/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/cache/hamster-cache/types.ts -------------------------------------------------------------------------------- /src/lib/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/colors.ts -------------------------------------------------------------------------------- /src/lib/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/config.ts -------------------------------------------------------------------------------- /src/lib/data-fetching/useSWRWithPrefetch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/data-fetching/useSWRWithPrefetch.tsx -------------------------------------------------------------------------------- /src/lib/debouncePromise.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/debouncePromise.ts -------------------------------------------------------------------------------- /src/lib/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/env.ts -------------------------------------------------------------------------------- /src/lib/fetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/fetch.ts -------------------------------------------------------------------------------- /src/lib/filterAccessibility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/filterAccessibility.ts -------------------------------------------------------------------------------- /src/lib/formatDistance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/formatDistance.ts -------------------------------------------------------------------------------- /src/lib/generateMapsUrls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/generateMapsUrls.ts -------------------------------------------------------------------------------- /src/lib/generateOsmUrls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/generateOsmUrls.ts -------------------------------------------------------------------------------- /src/lib/geoDistance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/geoDistance.ts -------------------------------------------------------------------------------- /src/lib/getAddressString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/getAddressString.ts -------------------------------------------------------------------------------- /src/lib/getAddressStringFromA11yJSONFeature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/getAddressStringFromA11yJSONFeature.ts -------------------------------------------------------------------------------- /src/lib/getHumanEnumeration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/getHumanEnumeration.tsx -------------------------------------------------------------------------------- /src/lib/getToiletsNearby.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/getToiletsNearby.ts -------------------------------------------------------------------------------- /src/lib/goToLocationSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/goToLocationSettings.ts -------------------------------------------------------------------------------- /src/lib/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/i18n.ts -------------------------------------------------------------------------------- /src/lib/insertPlaceholdersToAddPlaceUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/insertPlaceholdersToAddPlaceUrl.ts -------------------------------------------------------------------------------- /src/lib/isEmbedTokenValid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/isEmbedTokenValid.ts -------------------------------------------------------------------------------- /src/lib/model/hasDefaultOSMDescription.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/model/hasDefaultOSMDescription.ts -------------------------------------------------------------------------------- /src/lib/model/isA11yEditable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/model/isA11yEditable.ts -------------------------------------------------------------------------------- /src/lib/model/isBuildingLike.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/model/isBuildingLike.ts -------------------------------------------------------------------------------- /src/lib/model/isParkingFacility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/model/isParkingFacility.ts -------------------------------------------------------------------------------- /src/lib/model/nonBuildingCategoryIds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/model/nonBuildingCategoryIds.ts -------------------------------------------------------------------------------- /src/lib/normalizeCoordinates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/normalizeCoordinates.ts -------------------------------------------------------------------------------- /src/lib/openButtonCaption.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/openButtonCaption.ts -------------------------------------------------------------------------------- /src/lib/pathsInObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/pathsInObject.ts -------------------------------------------------------------------------------- /src/lib/savedState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/savedState.ts -------------------------------------------------------------------------------- /src/lib/searchPlaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/searchPlaces.ts -------------------------------------------------------------------------------- /src/lib/shouldUseImperialUnits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/shouldUseImperialUnits.ts -------------------------------------------------------------------------------- /src/lib/translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/translations.json -------------------------------------------------------------------------------- /src/lib/userAgent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/lib/userAgent.ts -------------------------------------------------------------------------------- /src/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/next-env.d.ts -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/pages/_document.tsx -------------------------------------------------------------------------------- /src/pages/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/pages/main.ts -------------------------------------------------------------------------------- /src/server/healthChecks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/server/healthChecks.ts -------------------------------------------------------------------------------- /src/server/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/server/server.ts -------------------------------------------------------------------------------- /src/server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/server/tsconfig.json -------------------------------------------------------------------------------- /src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/tsconfig.json -------------------------------------------------------------------------------- /src/types/express-cache-headers/index.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'express-cache-headers'; 2 | 3 | -------------------------------------------------------------------------------- /src/types/leaflet/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/src/types/leaflet/index.d.ts -------------------------------------------------------------------------------- /src/types/react-images/index.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'react-images'; -------------------------------------------------------------------------------- /tests/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/tests/.eslintrc.json -------------------------------------------------------------------------------- /tests/conf/parallel.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/tests/conf/parallel.conf.js -------------------------------------------------------------------------------- /tests/lib/currentTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/tests/lib/currentTest.js -------------------------------------------------------------------------------- /tests/lib/getCurrentUrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/tests/lib/getCurrentUrl.js -------------------------------------------------------------------------------- /tests/lib/saveScreenshot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/tests/lib/saveScreenshot.js -------------------------------------------------------------------------------- /tests/specs-inactive/.git-keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/specs-todo/different-place-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/tests/specs-todo/different-place-types.js -------------------------------------------------------------------------------- /tests/specs-todo/dragAndDrop-with-keys_WORKS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/tests/specs-todo/dragAndDrop-with-keys_WORKS.js -------------------------------------------------------------------------------- /tests/specs-todo/localization.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/specs-todo/search-by-shop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/tests/specs-todo/search-by-shop.js -------------------------------------------------------------------------------- /tests/specs-todo/zoom-into-location.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/tests/specs-todo/zoom-into-location.js -------------------------------------------------------------------------------- /tests/specs-todo/zoom-out-of-location.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/tests/specs-todo/zoom-out-of-location.js -------------------------------------------------------------------------------- /tests/specs/basics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/tests/specs/basics.js -------------------------------------------------------------------------------- /tests/specs/highlighted-marker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/tests/specs/highlighted-marker.js -------------------------------------------------------------------------------- /tests/specs/onboarding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/tests/specs/onboarding.js -------------------------------------------------------------------------------- /tests/specs/search-by-name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/tests/specs/search-by-name.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sozialhelden/wheelmap-frontend/HEAD/tsconfig.json --------------------------------------------------------------------------------