nylas-booked-event-card

Overview

The nylas-booked-event-card component is a UI component that displays the booked event card.

Version1.1.0-canary.14
Install (React)npm install @nylas/react
Import (React)import { NylasBookedEventCard } from '@nylas/react';

Example


Properties

PropertyAttributeDescriptionTypeDefault
bookingInfobooking-infoThe booking info used to book / reschedule the event.anyundefined
configSettingsconfig-settingsThe config settings for the scheduler.anyundefined
eventInfo (required)The booked event.{ booking_id: string; organizer: { email: string; name: string; is_organizer?: boolean | undefined; }; title: string; description: string; status: string; }undefined
rescheduleBookingIdreschedule-booking-idBooking flow type.string | undefinedundefined
selectedTimeslot (required)The selected timeslot.{ start_time: Date; end_time: Date; }undefined
selectedTimezoneselected-timezoneThe selected timezone.stringIntl.DateTimeFormat().resolvedOptions().timeZone

Events

EventDescriptionType
cancelBookedEventValidationErrorThis event is fired when an error occurs while cancelling the booking.CustomEvent<{ error: { title: string; message: string; }; }>
cancelBookingButtonClickedCancel booking button clicked event.CustomEvent<{ bookingId: string; }>
rescheduleBookedEventErrorThis event is fired when an error occurs while rescheduling the booking.CustomEvent<NylasSchedulerErrorResponse>
rescheduleButtonClickedReschedule button clicked event.CustomEvent<{ bookingId: string; errorHandler?: ((error: NylasSchedulerErrorResponse) => void) | undefined; }>

Shadow Parts

PartDescription
"nbec"The booked event card host.
"nbec__button-outline"The cancel & reschedule button CTA.
"nbec__cancel-cta"The cancel button CTA.
"nbec__card"The booked event card.
"nbec__description"The description of the booked event card.
"nbec__reschedule-cta"The reschedule button CTA.
"nbec__title"The title of the booked event card.

Built with StencilJS