nylas-event-title
Overview
The nylas-event-title
component is a form input for the title of an event.
Version | 1.1.4 |
Install (React) | npm install @nylas/react |
Import (React) | import { NylasEventTitle } from '@nylas/react'; |
Import (CDN) | <script type="module">
import { defineCustomElement } from "https://cdn.jsdelivr.net/npm/@nylas/web-elements@latest/dist/cdn/nylas-event-title/nylas-event-title.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.
Property | Attribute | Description | Type | Default |
---|---|---|---|---|
eventTitle | The title of the event from the cofiguration. | string | undefined | this.selectedConfiguration?.event_booking?.title | |
name | The name attribute of this component. | string | 'title' | |
selectedConfiguration | The selected config | Configuration | undefined | undefined |
Events
Event | Description | Type |
---|---|---|
valueChanged | This event is fired when the value of the event title changes. | CustomEvent<{ value: string; name: string; }> |
Shadow Parts
Part | Description |
---|---|
"net" | The event title container |
"net__dropdown-content" | The token options container |
"net__title" | The event title input |
Built with StencilJS