nylas-date-picker
Overview
The nylas-date-picker component is a UI component that allows users to select a date.
| Version | 2.2.4 | 
| Install (React) | npm install @nylas/react | 
| Import (React) | import { NylasDatePicker } from '@nylas/react'; | 
| Import (CDN) | You do not need to individually import the component, just import the parent component either nylas-schedulingornylas-scheduler-editor. | 
Example
Properties
| Property | Attribute | Description | Type | Default | 
|---|---|---|---|---|
| eventDuration | The event duration. | number | undefined | undefined | |
| isLoading | The loading state. | boolean | undefined | undefined | |
| selectedDate | The selected date. | Date | undefined | undefined | |
| selectedLanguage | The selected language. | LANGUAGE_CODE.de | LANGUAGE_CODE.en | LANGUAGE_CODE.es | LANGUAGE_CODE.fr | LANGUAGE_CODE.ja | LANGUAGE_CODE.ko | LANGUAGE_CODE.nl | LANGUAGE_CODE.sv | LANGUAGE_CODE.zh | undefined | undefined | |
| selectedTimezone | The selected timezone. | string | Intl.DateTimeFormat().resolvedOptions().timeZone | 
Standalone Props
ⓘ NOTE: The following props are automatically configured when used within nylas-scheduling. Set these props manually only if you’re using the component independently.
| Property | Attribute | Description | Type | Default | 
|---|---|---|---|---|
| configSettings | The config settings. | undefined | { configuration_id: string; booking?: { additional_fields: Record<string, string>; additional_guests: { email: string; name: string; }[]; booking_ref: string; booking_ref_salt: string; guest: { email: string; name: string; }; timezone: string; email_language: string; event_data: { location: string; when: { start_time: Date; end_time: Date; end_timezone: string; start_timezone: string; object: string; }; }; event_organizer: { name: string; email: string; is_organizer: boolean; }; } | undefined; scheduler: { available_days_in_future: number; min_cancellation_notice: number; min_booking_notice: number; rescheduling_url?: string | undefined; cancellation_url?: string | undefined; cancellation_policy?: string | undefined; hide_additional_guests?: boolean | undefined; hide_cancellation_options?: boolean | undefined; hide_rescheduling_options?: boolean | undefined; additional_fields?: Record<string, AdditionalFields> | undefined; confirmation_redirect_url?: string | undefined; organizer_confirmation_url?: string | undefined; }; organizer: { name: string; email: string; }; slug: string; appearance: Appearance; booking_type: string; name: string; } | undefined | |
| selectableDates | The dates that are selectable. | Date[] | undefined | undefined | |
| themeConfig | The theme configuration. | any | undefined | 
Events
| Event | Description | Type | 
|---|---|---|
| dateSelected | This event is fired when a date is selected. | CustomEvent<Date> | 
| monthChanged | This event is fired when the month is changed. | CustomEvent<Date> | 
Shadow Parts
| Part | Description | 
|---|---|
| "ndp" | The date picker host. | 
| "ndp__date" | The date. | 
| "ndp__date--current-day" | The current day. | 
| "ndp__date--current-month" | The dates in the current month. | 
| "ndp__date--disabled" | The disabled dates. | 
| "ndp__date--selected" | The selected date. | 
| "ndp__day" | The day. | 
| "ndp__month-button" | The month button. | 
| "ndp__month-header" | The month header. | 
| "ndp__title" | The title. | 
Built with StencilJS