@srimandir/kundli-generator 3.0.47 → 3.0.48
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/KundliContext.d.ts +2 -0
- package/dist/components/KundliPage/sections/PremiumReportOverview/PremiumReportOverview.d.ts +2 -0
- package/dist/kundli-generator.js +495 -486
- package/dist/kundli-generator.js.map +1 -1
- package/dist/kundli-generator.umd.cjs +8 -8
- package/dist/kundli-generator.umd.cjs.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +3 -3
|
@@ -13,6 +13,8 @@ export interface KundliContextConfig {
|
|
|
13
13
|
reportImageUrl?: string;
|
|
14
14
|
/** When true, LCP report image can be loaded with priority (e.g. next/image priority). */
|
|
15
15
|
reportImagePriority?: boolean;
|
|
16
|
+
/** When true, section background image (PremiumReportOverview) is loaded with priority for LCP. */
|
|
17
|
+
backgroundImagePriority?: boolean;
|
|
16
18
|
universityLogoUrls?: [string?, string?];
|
|
17
19
|
sampleReportHref?: string;
|
|
18
20
|
onViewSampleReport?: () => void;
|
package/dist/components/KundliPage/sections/PremiumReportOverview/PremiumReportOverview.d.ts
CHANGED
|
@@ -5,6 +5,8 @@ export interface PremiumReportOverviewProps {
|
|
|
5
5
|
reportImageUrl?: string;
|
|
6
6
|
/** When true, report image can be loaded with priority (e.g. LCP) */
|
|
7
7
|
reportImagePriority?: boolean;
|
|
8
|
+
/** When true, section background image is loaded with priority (e.g. LCP) */
|
|
9
|
+
backgroundImagePriority?: boolean;
|
|
8
10
|
/** Optional analytics for tracking banner clicked */
|
|
9
11
|
analytics?: KundliAnalytics;
|
|
10
12
|
className?: string;
|