@srimandir/kundli-generator 3.0.49 → 3.0.50

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.
@@ -1,11 +1,17 @@
1
1
  import { KundliAnalytics } from '../../../../analytics';
2
+ /**
3
+ * Background image for the section (replaced from CSS so next/image can optimize when host provides imageComponent).
4
+ * Exported so host apps can preload this resource in document head for better performance:
5
+ * <link rel="preload" as="image" href={PREMIUM_REPORT_BACKGROUND_IMAGE_URL} />
6
+ */
7
+ export declare const PREMIUM_REPORT_BACKGROUND_IMAGE_URL = "https://srm-cdn.a4b.io/yoda/1772618348892.webp";
2
8
  export interface PremiumReportOverviewProps {
3
9
  t: (key: string) => string;
4
10
  /** Optional report cover image URL */
5
11
  reportImageUrl?: string;
6
12
  /** When true, report image can be loaded with priority (e.g. LCP) */
7
13
  reportImagePriority?: boolean;
8
- /** When true, section background image is loaded with priority (e.g. LCP) */
14
+ /** When true, section background image loads with priority (e.g. LCP). Default false so background uses loading="lazy" per Lighthouse. Set true when this section is above the fold (hero). */
9
15
  backgroundImagePriority?: boolean;
10
16
  /** Optional analytics for tracking banner clicked */
11
17
  analytics?: KundliAnalytics;