@srimandir/old-dosha-calculator 7.4.2 → 7.4.3
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/DoshaCalculatorV2.d.ts +1 -1
- package/dist/components/DoshaDateField/DoshaDateField.d.ts +1 -1
- package/dist/components/DoshaHelpers.d.ts +3 -3
- package/dist/components/DoshaResultsFull/DoshaResultsFull.d.ts +1 -1
- package/dist/components/DoshaResultsView/DoshaResultsView.d.ts +1 -1
- package/dist/components/DoshaTimeField/DoshaTimeField.d.ts +1 -1
- package/dist/components/Footer.d.ts +1 -1
- package/dist/components/HeaderV2.d.ts +1 -1
- package/dist/components/HomePageExperiment.d.ts +1 -1
- package/dist/components/IndexV2.d.ts +1 -1
- package/dist/components/KundaliCard/KundaliCard.d.ts +1 -1
- package/dist/components/SriMandirPujaCarousel.d.ts +1 -1
- package/dist/components/SriMandirPujaVerticalCard.d.ts +1 -1
- package/dist/components/TestimonialsV2.d.ts +1 -1
- package/dist/components/TrustBarV2.d.ts +1 -1
- package/dist/components/ui/skeleton.d.ts +1 -1
- package/dist/old-dosha-calculator.js +7491 -7211
- package/dist/old-dosha-calculator.js.map +1 -1
- package/dist/old-dosha-calculator.umd.cjs +34 -49
- package/dist/old-dosha-calculator.umd.cjs.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +2 -2
|
@@ -5,5 +5,5 @@ export interface DoshaCalculatorV2Props {
|
|
|
5
5
|
/** Google Maps API key for place autocomplete (required for location search) */
|
|
6
6
|
googleMapsApiKey?: string;
|
|
7
7
|
}
|
|
8
|
-
declare const DoshaCalculatorV2: ({ analytics, googleMapsApiKey }?: DoshaCalculatorV2Props) => import("react
|
|
8
|
+
declare const DoshaCalculatorV2: ({ analytics, googleMapsApiKey }?: DoshaCalculatorV2Props) => import("react").JSX.Element;
|
|
9
9
|
export default DoshaCalculatorV2;
|
|
@@ -4,4 +4,4 @@ export interface DoshaDateFieldProps {
|
|
|
4
4
|
onChange: (value: string) => void;
|
|
5
5
|
className?: string;
|
|
6
6
|
}
|
|
7
|
-
export declare function DoshaDateField({ id, value, onChange, className, }: DoshaDateFieldProps): import("react
|
|
7
|
+
export declare function DoshaDateField({ id, value, onChange, className, }: DoshaDateFieldProps): import("react").JSX.Element;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export declare const DoshaResults: ({ results }: any) => import("react
|
|
2
|
-
export declare const DateOfBirthPicker: ({ value, onChange, error }: any) => import("react
|
|
3
|
-
export declare const TimeOfBirthPicker: ({ value, onChange, error }: any) => import("react
|
|
1
|
+
export declare const DoshaResults: ({ results }: any) => import("react").JSX.Element;
|
|
2
|
+
export declare const DateOfBirthPicker: ({ value, onChange, error }: any) => import("react").JSX.Element;
|
|
3
|
+
export declare const TimeOfBirthPicker: ({ value, onChange, error }: any) => import("react").JSX.Element;
|
|
@@ -32,4 +32,4 @@ export interface DoshaResultsFullProps {
|
|
|
32
32
|
/** Analytics implementation for tracking events */
|
|
33
33
|
analytics?: DoshaAnalytics;
|
|
34
34
|
}
|
|
35
|
-
export declare function DoshaResultsFull({ result, t, onEdit, className, kundaliSectionId, feedbackEmail, renderPujaCard, isLoadingPujas, renderKundali, birthDetails, supabase, language, problemArea, problemAreaIds, customProblemText, analytics, }: DoshaResultsFullProps):
|
|
35
|
+
export declare function DoshaResultsFull({ result, t, onEdit, className, kundaliSectionId, feedbackEmail, renderPujaCard, isLoadingPujas, renderKundali, birthDetails, supabase, language, problemArea, problemAreaIds, customProblemText, analytics, }: DoshaResultsFullProps): React.JSX.Element;
|
|
@@ -5,4 +5,4 @@ export interface DoshaResultsViewProps {
|
|
|
5
5
|
onEdit?: () => void;
|
|
6
6
|
className?: string;
|
|
7
7
|
}
|
|
8
|
-
export declare function DoshaResultsView({ result, t, onEdit, className }: DoshaResultsViewProps): import("react
|
|
8
|
+
export declare function DoshaResultsView({ result, t, onEdit, className }: DoshaResultsViewProps): import("react").JSX.Element;
|
|
@@ -6,4 +6,4 @@ export interface DoshaTimeFieldProps {
|
|
|
6
6
|
disabled?: boolean;
|
|
7
7
|
className?: string;
|
|
8
8
|
}
|
|
9
|
-
export declare function DoshaTimeField({ id, value, onChange, placeholder, disabled, className, }: DoshaTimeFieldProps): import("react
|
|
9
|
+
export declare function DoshaTimeField({ id, value, onChange, placeholder, disabled, className, }: DoshaTimeFieldProps): import("react").JSX.Element;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export default function Footer(): import("react
|
|
1
|
+
export default function Footer(): import("react").JSX.Element;
|
|
@@ -5,4 +5,4 @@ export interface HeaderV2Props {
|
|
|
5
5
|
/** Whether the user is global (hides language toggle when true) */
|
|
6
6
|
isGlobal?: boolean;
|
|
7
7
|
}
|
|
8
|
-
export default function HeaderV2({ analytics, isGlobal }?: HeaderV2Props): import("react
|
|
8
|
+
export default function HeaderV2({ analytics, isGlobal }?: HeaderV2Props): import("react").JSX.Element;
|
|
@@ -4,5 +4,5 @@
|
|
|
4
4
|
* v1: Original design (IndexV2)
|
|
5
5
|
* v5: New copy - "Free Birth Chart Analysis to Find Right Puja for You"
|
|
6
6
|
*/
|
|
7
|
-
declare const HomePageExperiment: () => import("react
|
|
7
|
+
declare const HomePageExperiment: () => import("react").JSX.Element;
|
|
8
8
|
export default HomePageExperiment;
|
|
@@ -7,5 +7,5 @@ export interface IndexV2Props {
|
|
|
7
7
|
/** Whether the user is global (hides language toggle when true) */
|
|
8
8
|
isGlobal?: boolean;
|
|
9
9
|
}
|
|
10
|
-
declare const IndexV2: ({ analytics, googleMapsApiKey, isGlobal }?: IndexV2Props) => import("react
|
|
10
|
+
declare const IndexV2: ({ analytics, googleMapsApiKey, isGlobal }?: IndexV2Props) => import("react").JSX.Element;
|
|
11
11
|
export default IndexV2;
|
|
@@ -8,4 +8,4 @@ export interface KundaliCardProps {
|
|
|
8
8
|
/** Translation function for UI strings */
|
|
9
9
|
t: (key: string) => string;
|
|
10
10
|
}
|
|
11
|
-
export declare function KundaliCard({ birthDetails, supabase, language, t }: KundaliCardProps): import("react
|
|
11
|
+
export declare function KundaliCard({ birthDetails, supabase, language, t }: KundaliCardProps): import("react").JSX.Element;
|
|
@@ -10,4 +10,4 @@ export interface SriMandirPujaVerticalCardProps {
|
|
|
10
10
|
/** Optional analytics callback */
|
|
11
11
|
analytics?: DoshaAnalytics;
|
|
12
12
|
}
|
|
13
|
-
export declare function SriMandirPujaVerticalCard({ puja, doshaType, language, onBookClick, analytics, }: SriMandirPujaVerticalCardProps): import("react
|
|
13
|
+
export declare function SriMandirPujaVerticalCard({ puja, doshaType, language, onBookClick, analytics, }: SriMandirPujaVerticalCardProps): import("react").JSX.Element;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export default function TestimonialsV2(): import("react
|
|
1
|
+
export default function TestimonialsV2(): import("react").JSX.Element;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export default function TrustBarV2(): import("react
|
|
1
|
+
export default function TrustBarV2(): import("react").JSX.Element;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare function Skeleton({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): import("react
|
|
1
|
+
declare function Skeleton({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): import("react").JSX.Element;
|
|
2
2
|
export { Skeleton };
|