Merged in feat/SW-1067-special-needs-accessibility-page (pull request #1253)
feat/SW-1067 special needs accessibility page * feat(SW-1067): update types * feat(SW-1067): add sidebar * feat(SW-1067): add additional content component * feat(SW-1067): add special needs list * feat(SW-1067): update type * feat(SW-1067): update import * feat(SW-1067): remove component * feat(SW-1067): re add component * feat(SW-1067): update folder structure Approved-by: Erik Tiekstra
This commit is contained in:
@@ -1,5 +1,4 @@
|
||||
import type { Hotel } from "@/types/hotel"
|
||||
|
||||
export type AccessibilityAmenityProps = {
|
||||
accessibility: Hotel["hotelFacts"]["hotelInformation"]["accessibility"]
|
||||
elevatorPitch?: string
|
||||
hasExtraAccessibilityPage: boolean
|
||||
}
|
||||
|
||||
@@ -1,11 +1,12 @@
|
||||
import type { Hotel, Restaurant, RestaurantOpeningHours } from "@/types/hotel"
|
||||
import type { AccessibilityAmenityProps } from "./accessibility"
|
||||
import type { ParkingAmenityProps } from "./parking"
|
||||
|
||||
export type AmenitiesSidePeekProps = {
|
||||
amenitiesList: Hotel["detailedFacilities"]
|
||||
parking: ParkingAmenityProps
|
||||
checkInInformation: Hotel["hotelFacts"]["checkin"]
|
||||
accessibility: Hotel["hotelFacts"]["hotelInformation"]["accessibility"]
|
||||
accessibility: AccessibilityAmenityProps
|
||||
restaurants: Restaurant[]
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user