@srimandir/kundli-matching-generator 1.0.25 → 1.0.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/analytics.d.ts
CHANGED
|
@@ -36,6 +36,7 @@ export declare const KUNDLI_MATCHING_ANALYTICS_EVENT_NAMES: {
|
|
|
36
36
|
readonly phone_section_filled: "phone_section_filled";
|
|
37
37
|
readonly email_section_clicked: "email_section_clicked";
|
|
38
38
|
readonly email_section_filled: "email_section_filled";
|
|
39
|
+
readonly kundli_matching_l0_cta_click: "kundli_matching_l0_cta_click";
|
|
39
40
|
readonly primary_cta_clicked_l1: "primary_cta_clicked_l1";
|
|
40
41
|
readonly kundli_matching_plan_page_viewed: "kundli_matching_plan_page_viewed";
|
|
41
42
|
readonly kundli_matching_plan_selected: "kundli_matching_plan_selected";
|
|
@@ -104,6 +105,10 @@ export interface KundliMatchingAnalytics {
|
|
|
104
105
|
trackPhoneSectionFilled?(): void;
|
|
105
106
|
trackEmailSectionClicked?(): void;
|
|
106
107
|
trackEmailSectionFilled?(): void;
|
|
108
|
+
trackKundliMatchingL0CtaClick?(params: {
|
|
109
|
+
ctaText: string;
|
|
110
|
+
isFormComplete: boolean;
|
|
111
|
+
}): void;
|
|
107
112
|
trackPrimaryCtaClickedL1?(params: {
|
|
108
113
|
avenue?: string;
|
|
109
114
|
}): void;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
2
|
import { KundliMatchingFormValues } from '../KundliMatchingFormSection/KundliMatchingFormSection';
|
|
3
|
+
import { KundliMatchingAnalytics } from '../../analytics';
|
|
3
4
|
export declare const BadgeRow: React.FC<{
|
|
4
5
|
t: (key: string) => string;
|
|
5
6
|
}>;
|
|
@@ -8,6 +9,7 @@ export interface ProceedFooterProps {
|
|
|
8
9
|
values: KundliMatchingFormValues;
|
|
9
10
|
onProceed: () => void;
|
|
10
11
|
isGlobal?: boolean;
|
|
12
|
+
analytics?: KundliMatchingAnalytics;
|
|
11
13
|
className?: string;
|
|
12
14
|
}
|
|
13
15
|
export declare const ProceedFooter: React.FC<ProceedFooterProps>;
|