nylas-calendar-picker

Overview

The nylas-calendar-picker component is a form input for selecting calendars to check availability.

Version1.1.4
Install (React)npm install @nylas/react
Import (React)import { NylasCalendarPicker } from '@nylas/react';
Import (CDN)<script type="module"> import { defineCustomElement } from "https://cdn.jsdelivr.net/npm/@nylas/web-elements@latest/dist/cdn/nylas-calendar-picker/nylas-calendar-picker.es.js"; defineCustomElement(); </script>

Example


Properties

Standalone Props

ⓘ NOTE: The following props are automatically configured when used within nylas-scheduler-editor. Set these props manually only if you’re using the component independently.
PropertyAttributeDescriptionTypeDefault
calendarsThe calendars to choose from.Calendar[] | undefinedundefined
currentUserThe logged in user.undefined | { id: string; email: string; name?: string | undefined; provider?: string | undefined; }undefined
defaultSelectedCalendarsThe default selected calendars.string[][]
nameThe name of the calendar picker.string'calendar'

Events

EventDescriptionType
valueChangedThis event is fired when the selected calendars change.CustomEvent<{ value: string[]; name: string; valueChangedHandler?: ((event: CustomEvent<{ value: string[]; name: string; }>) => void) | undefined; }>

Shadow Parts

PartDescription
"ncp"The calendar picker container
"ncp__dropdown"The dropdown container
"ncp__dropdown-button"The dropdown button
"ncp__dropdown-content"The dropdown content

Built with StencilJS