@royaloperahouse/harmonic 0.17.0-i → 0.17.0-k
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/README.GIT +294 -0
- package/README.md +43 -268
- package/dist/components/molecules/Paywall/Paywall.d.ts +1 -1
- package/dist/components/organisms/AnchorTabBar/AnchorTabBar.style.d.ts +1 -1
- package/dist/harmonic.cjs.development.js +10 -6
- 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 +10 -6
- 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
|
@@ -754,10 +754,14 @@ export declare type PaywallProps = {
|
|
|
754
754
|
intro?: string;
|
|
755
755
|
/** Body HTML */
|
|
756
756
|
description: string;
|
|
757
|
+
/** Function called when CTA clicked */
|
|
758
|
+
buttonOnClick?: MouseEventHandler<HTMLAnchorElement>;
|
|
757
759
|
/** CTA text */
|
|
758
760
|
buttonText: string;
|
|
759
761
|
/** CTA URL */
|
|
760
762
|
buttonUrl: string;
|
|
763
|
+
/** Function called when sign-in link clicked */
|
|
764
|
+
signInLinkOnClick?: MouseEventHandler<HTMLAnchorElement>;
|
|
761
765
|
/** Text before sign-in link (required to show sign-in link) */
|
|
762
766
|
signInPromptText?: string;
|
|
763
767
|
/** Sign-in link URL (required to show sign-in link) */
|