react-calendly
Advanced tools
Comparing version 2.2.0 to 2.2.1
{ | ||
"name": "react-calendly", | ||
"version": "2.2.0", | ||
"version": "2.2.1", | ||
"description": "Calendly integration for React apps", | ||
@@ -5,0 +5,0 @@ "author": "tcampb", |
import * as React from "react"; | ||
import { CalendlyEvent } from "../../calendly"; | ||
declare type DateAndTimeSelectedEvent = MessageEvent<{ | ||
export declare type DateAndTimeSelectedEvent = MessageEvent<{ | ||
event: CalendlyEvent.DATE_AND_TIME_SELECTED; | ||
payload: {}; | ||
}>; | ||
declare type EventScheduledEvent = MessageEvent<{ | ||
export declare type EventScheduledEvent = MessageEvent<{ | ||
event: CalendlyEvent.EVENT_SCHEDULED; | ||
@@ -28,7 +28,7 @@ payload: { | ||
}>; | ||
declare type EventTypeViewedEvent = MessageEvent<{ | ||
export declare type EventTypeViewedEvent = MessageEvent<{ | ||
event: CalendlyEvent.EVENT_TYPE_VIEWED; | ||
payload: {}; | ||
}>; | ||
declare type ProfilePageViewedEvent = MessageEvent<{ | ||
export declare type ProfilePageViewedEvent = MessageEvent<{ | ||
event: CalendlyEvent.PROFILE_PAGE_VIEWED; | ||
@@ -35,0 +35,0 @@ payload: {}; |
@@ -5,2 +5,3 @@ import InlineWidget from "./components/InlineWidget/InlineWidget"; | ||
import CalendlyEventListener from "./components/CalendlyEventListener/CalendlyEventListener"; | ||
import type { DateAndTimeSelectedEvent, EventScheduledEvent, EventTypeViewedEvent, ProfilePageViewedEvent } from "./components/CalendlyEventListener/CalendlyEventListener"; | ||
import { openPopupWidget, closePopupWidget } from './calendly'; | ||
@@ -11,2 +12,3 @@ export { InlineWidget }; | ||
export { CalendlyEventListener }; | ||
export { DateAndTimeSelectedEvent, EventScheduledEvent, EventTypeViewedEvent, ProfilePageViewedEvent, }; | ||
export { openPopupWidget, closePopupWidget }; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
274689
14