@srimandir/hanuman-chalisa 1.5.24 → 1.5.26
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/countrycode.d.ts +16 -0
- package/dist/constants/index.d.ts +1 -0
- package/dist/constants/whatsapp.constants.d.ts +1 -0
- package/dist/context/AppContext.d.ts +1 -1
- package/dist/hanuman-chalisa.js +493 -401
- package/dist/hanuman-chalisa.js.map +1 -1
- package/dist/i18n/translations.en.d.ts +1 -0
- package/dist/i18n/translations.hi.d.ts +1 -0
- package/dist/style.css +1 -1
- package/package.json +3 -3
|
@@ -10,7 +10,7 @@ export interface HanumanChalisaAnalytics {
|
|
|
10
10
|
email?: string;
|
|
11
11
|
phone?: string;
|
|
12
12
|
}): void;
|
|
13
|
-
|
|
13
|
+
trackwhatsappBtnClicked?(): 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
|
+
fullPhoneNumber: string;
|
|
22
22
|
}) => void;
|
|
23
23
|
/** If true, uses +1 country code; if false, uses +91 */
|
|
24
24
|
isGlobal?: boolean;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export declare const ISD_COUNTRY_OPTIONS: readonly [{
|
|
2
|
+
readonly code: "+1";
|
|
3
|
+
readonly country: "USA";
|
|
4
|
+
}, {
|
|
5
|
+
readonly code: "+44";
|
|
6
|
+
readonly country: "UK";
|
|
7
|
+
}, {
|
|
8
|
+
readonly code: "+61";
|
|
9
|
+
readonly country: "AUS";
|
|
10
|
+
}, {
|
|
11
|
+
readonly code: "+91";
|
|
12
|
+
readonly country: "IN";
|
|
13
|
+
}, {
|
|
14
|
+
readonly code: "+971";
|
|
15
|
+
readonly country: "UAE";
|
|
16
|
+
}];
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const WHATSAPP_URL: string;
|