@srimandir/hanuman-chalisa 1.5.26 → 1.5.28
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/dist/components/LandingPage/LandingPage.d.ts +2 -2
- package/dist/components/SuccessPage/SuccessPage.d.ts +1 -1
- package/dist/constants/index.d.ts +0 -1
- package/dist/context/AppContext.d.ts +1 -1
- package/dist/hanuman-chalisa.js +401 -493
- package/dist/hanuman-chalisa.js.map +1 -1
- package/dist/i18n/translations.en.d.ts +0 -1
- package/dist/i18n/translations.hi.d.ts +0 -1
- package/dist/style.css +1 -1
- package/package.json +3 -3
- package/dist/constants/countrycode.d.ts +0 -16
- package/dist/constants/whatsapp.constants.d.ts +0 -1
|
@@ -10,7 +10,7 @@ export interface HanumanChalisaAnalytics {
|
|
|
10
10
|
email?: string;
|
|
11
11
|
phone?: string;
|
|
12
12
|
}): void;
|
|
13
|
-
|
|
13
|
+
trackHomePageBtnClicked?(): void;
|
|
14
14
|
}
|
|
15
15
|
export interface LandingPageProps {
|
|
16
16
|
/** Target date and time for the countdown timer */
|
|
@@ -18,7 +18,7 @@ export interface LandingPageProps {
|
|
|
18
18
|
/** Callback when user submits the form */
|
|
19
19
|
onSubmit?: (data: {
|
|
20
20
|
name: string;
|
|
21
|
-
|
|
21
|
+
whatsappNumber: string;
|
|
22
22
|
}) => void;
|
|
23
23
|
/** If true, uses +1 country code; if false, uses +91 */
|
|
24
24
|
isGlobal?: boolean;
|