@srimandir/kundli-generator 7.5.6 → 7.5.7
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/KundliPage/KundliPage.d.ts +4 -0
- package/dist/components/KundliPage/KundliPageV1.d.ts +4 -0
- package/dist/{criticalCss-xjrhFW6_.js → criticalCss-5f00WNFD.js} +461 -442
- package/dist/criticalCss-5f00WNFD.js.map +1 -0
- package/dist/kundli-generator.js +1 -1
- package/dist/page-entry.js +1 -1
- package/package.json +2 -2
- package/dist/criticalCss-xjrhFW6_.js.map +0 -1
|
@@ -63,5 +63,9 @@ export interface KundliPageProps {
|
|
|
63
63
|
* An empty string means "no banner" (show default PremiumReportOverview).
|
|
64
64
|
*/
|
|
65
65
|
resolvedUtmBannerImageUrl?: string;
|
|
66
|
+
/** Pre-fills form values on mount (e.g. from URL query params on a deep-linked SEO flow). */
|
|
67
|
+
initialFormValues?: Partial<KundliFormValues>;
|
|
68
|
+
/** When true, automatically opens the plan selection bottom sheet once (requires variant "v1"). Used for deep-linked flows where the form is already fully pre-filled. */
|
|
69
|
+
autoOpenPlanSheet?: boolean;
|
|
66
70
|
}
|
|
67
71
|
export declare const KundliPage: React.FC<KundliPageProps>;
|
|
@@ -64,5 +64,9 @@ export interface KundliPageProps {
|
|
|
64
64
|
* An empty string means "no banner" (show default PremiumReportOverview).
|
|
65
65
|
*/
|
|
66
66
|
resolvedUtmBannerImageUrl?: string;
|
|
67
|
+
/** Pre-fills form values on mount (e.g. from URL query params on a deep-linked SEO flow). */
|
|
68
|
+
initialFormValues?: Partial<KundliFormValues>;
|
|
69
|
+
/** When true, automatically opens the plan selection bottom sheet once on mount. Used for deep-linked flows where the form is already fully pre-filled. */
|
|
70
|
+
autoOpenPlanSheet?: boolean;
|
|
67
71
|
}
|
|
68
72
|
export declare const KundliPageV1: React.FC<KundliPageProps>;
|