@srimandir/kundli-generator 3.0.10 → 3.0.11
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/sections/CTAFooter/CTAFooter.d.ts +4 -0
- package/dist/components/KundliPage/sections/CTAFooter/index.d.ts +1 -1
- package/dist/components/KundliPage/sections/ContactUsSection/ContactUsSection.d.ts +0 -4
- package/dist/components/KundliPage/sections/FeedbackSection/FeedbackSection.d.ts +2 -6
- package/dist/components/KundliPage/sections/KundliHeader/KundliHeader.d.ts +0 -4
- package/dist/components/KundliPage/sections/index.d.ts +1 -1
- package/dist/kundli-generator.js +1307 -1619
- package/dist/kundli-generator.js.map +1 -1
- package/dist/kundli-generator.umd.cjs +9 -9
- package/dist/kundli-generator.umd.cjs.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +4 -2
- package/dist/components/FooterShell/FooterCTAButton.d.ts +0 -14
- package/dist/components/FooterShell/FooterShell.d.ts +0 -8
- package/dist/components/FooterShell/index.d.ts +0 -5
|
@@ -8,4 +8,8 @@ export interface CTAFooterProps {
|
|
|
8
8
|
ctaLabel?: string;
|
|
9
9
|
className?: string;
|
|
10
10
|
}
|
|
11
|
+
/** Single row of trust badges for marquee (used in footer and under header). */
|
|
12
|
+
export declare const TrustBadgesRow: React.FC<{
|
|
13
|
+
t: (key: string) => string;
|
|
14
|
+
}>;
|
|
11
15
|
export declare const CTAFooter: React.FC<CTAFooterProps>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { CTAFooter } from './CTAFooter';
|
|
1
|
+
export { CTAFooter, TrustBadgesRow } from './CTAFooter';
|
|
2
2
|
export type { CTAFooterProps } from './CTAFooter';
|
|
@@ -1,12 +1,8 @@
|
|
|
1
1
|
export interface ContactUsSectionProps {
|
|
2
2
|
t: (key: string) => string;
|
|
3
|
-
/** Override WhatsApp number (Global) */
|
|
4
3
|
whatsAppGlobal?: string;
|
|
5
|
-
/** Override WhatsApp number (Domestic) */
|
|
6
4
|
whatsAppDomestic?: string;
|
|
7
|
-
/** Override email */
|
|
8
5
|
email?: string;
|
|
9
|
-
/** Override brand name */
|
|
10
6
|
brandName?: string;
|
|
11
7
|
className?: string;
|
|
12
8
|
}
|
|
@@ -1,9 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
authorName: string;
|
|
4
|
-
authorAvatarUrl?: string;
|
|
5
|
-
rating?: number;
|
|
6
|
-
}
|
|
1
|
+
import { Testimonial } from '../../../../../../astrology-common/dist/index.js';
|
|
2
|
+
export type { Testimonial };
|
|
7
3
|
export interface FeedbackSectionProps {
|
|
8
4
|
t: (key: string) => string;
|
|
9
5
|
testimonials?: Testimonial[];
|
|
@@ -1,11 +1,7 @@
|
|
|
1
1
|
export interface KundliHeaderProps {
|
|
2
|
-
/** Translation function */
|
|
3
2
|
t: (key: string) => string;
|
|
4
|
-
/** Language selector slot */
|
|
5
3
|
languageSelector?: React.ReactNode;
|
|
6
|
-
/** Logo URL (optional; shows placeholder if not provided) */
|
|
7
4
|
logoUrl?: string;
|
|
8
|
-
/** Optional class name */
|
|
9
5
|
className?: string;
|
|
10
6
|
}
|
|
11
7
|
export declare const KundliHeader: React.FC<KundliHeaderProps>;
|
|
@@ -9,4 +9,4 @@ export { WhyUsSection } from './WhyUsSection';
|
|
|
9
9
|
export { FeedbackSection } from './FeedbackSection';
|
|
10
10
|
export { FAQSection } from './FAQSection';
|
|
11
11
|
export { ContactUsSection } from './ContactUsSection';
|
|
12
|
-
export { CTAFooter } from './CTAFooter';
|
|
12
|
+
export { CTAFooter, TrustBadgesRow } from './CTAFooter';
|