react-calendly
Advanced tools
Comparing version 0.0.10 to 0.0.11
@@ -661,2 +661,3 @@ import { createRef, createElement, Component, Fragment } from 'react'; | ||
prefill: this.props.prefill, | ||
utm: this.props.utm, | ||
}); | ||
@@ -693,2 +694,3 @@ }; | ||
prefill: this.props.prefill, | ||
utm: this.props.utm, | ||
}; | ||
@@ -695,0 +697,0 @@ return (createElement("a", { href: "", onClick: createClickHandler(widgetOptions) }, this.props.text)); |
@@ -665,2 +665,3 @@ 'use strict'; | ||
prefill: this.props.prefill, | ||
utm: this.props.utm, | ||
}); | ||
@@ -697,2 +698,3 @@ }; | ||
prefill: this.props.prefill, | ||
utm: this.props.utm, | ||
}; | ||
@@ -699,0 +701,0 @@ return (React.createElement("a", { href: "", onClick: createClickHandler(widgetOptions) }, this.props.text)); |
{ | ||
"name": "react-calendly", | ||
"version": "0.0.10", | ||
"version": "0.0.11", | ||
"description": "Calendly integration for React apps", | ||
@@ -5,0 +5,0 @@ "author": "tcampb", |
@@ -38,4 +38,11 @@ import { Props as BadgeWidgetOptions } from "./components/PopupWidget/PopupWidget"; | ||
}>; | ||
export declare type Utm = Optional<{ | ||
utmCampaign: string; | ||
utmSource: string; | ||
utmMedium: string; | ||
utmContent: string; | ||
utmTerm: string; | ||
}>; | ||
export declare const loadScript: () => void; | ||
export declare const loadStyleSheet: () => void; | ||
export {}; |
import * as React from "react"; | ||
import { Prefill } from "../../calendly"; | ||
import { Prefill, Utm } from "../../calendly"; | ||
export interface Props { | ||
url: string; | ||
prefill?: Prefill; | ||
utm?: Utm; | ||
styles?: React.CSSProperties | undefined; | ||
@@ -12,2 +13,3 @@ } | ||
prefill?: Prefill; | ||
utm?: Utm; | ||
} | ||
@@ -14,0 +16,0 @@ declare class InlineWidget extends React.Component<Props> { |
import * as React from "react"; | ||
import { Prefill } from "../../calendly"; | ||
import { Prefill, Utm } from "../../calendly"; | ||
export interface Props { | ||
@@ -7,2 +7,3 @@ url: string; | ||
prefill?: Prefill; | ||
utm?: Utm; | ||
} | ||
@@ -12,2 +13,3 @@ export interface PopupWidgetOptions { | ||
prefill?: Prefill; | ||
utm?: Utm; | ||
} | ||
@@ -14,0 +16,0 @@ declare class PopupText extends React.Component<Props> { |
import * as React from "react"; | ||
import { Prefill } from "../../calendly"; | ||
import { Prefill, Utm } from "../../calendly"; | ||
export interface Props { | ||
@@ -10,2 +10,3 @@ url: string; | ||
prefill?: Prefill; | ||
utm?: Utm; | ||
} | ||
@@ -12,0 +13,0 @@ declare class PopupWidget extends React.Component<Props> { |
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
199164
1552