@royaloperahouse/harmonic 0.17.0 → 0.17.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +3 -0
- package/dist/components/molecules/Paywall/Paywall.d.ts +1 -1
- package/dist/harmonic.cjs.development.js +6 -2
- package/dist/harmonic.cjs.development.js.map +1 -1
- package/dist/harmonic.cjs.production.min.js +1 -1
- package/dist/harmonic.cjs.production.min.js.map +1 -1
- package/dist/harmonic.esm.js +6 -2
- package/dist/harmonic.esm.js.map +1 -1
- package/dist/types/types.d.ts +4 -0
- package/package.json +1 -1
package/dist/types/types.d.ts
CHANGED
|
@@ -742,10 +742,14 @@ export declare type PaywallProps = {
|
|
|
742
742
|
intro?: string;
|
|
743
743
|
/** Body HTML */
|
|
744
744
|
description: string;
|
|
745
|
+
/** Function called when CTA clicked */
|
|
746
|
+
buttonOnClick?: MouseEventHandler<HTMLAnchorElement>;
|
|
745
747
|
/** CTA text */
|
|
746
748
|
buttonText: string;
|
|
747
749
|
/** CTA URL */
|
|
748
750
|
buttonUrl: string;
|
|
751
|
+
/** Function called when sign-in link clicked */
|
|
752
|
+
signInLinkOnClick?: MouseEventHandler<HTMLAnchorElement>;
|
|
749
753
|
/** Text before sign-in link (required to show sign-in link) */
|
|
750
754
|
signInPromptText?: string;
|
|
751
755
|
/** Sign-in link URL (required to show sign-in link) */
|