@srimandir/dosha-calculator 2.1.4 → 2.1.6

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.
@@ -29,5 +29,11 @@ export interface DoshaResultsFullProps {
29
29
  inlineEditForm?: React.ReactNode;
30
30
  /** Optional analytics implementation for tracking user interactions */
31
31
  analytics?: DoshaAnalytics;
32
+ /** Problem area text for personalized impact generation */
33
+ problemArea?: string;
34
+ /** Array of problem area IDs */
35
+ problemAreaIds?: string[];
36
+ /** Custom problem text when "other" is selected */
37
+ customProblemText?: string;
32
38
  }
33
- export declare function DoshaResultsFull({ result, t, onEdit, className, kundaliSectionId, feedbackEmail, renderPujaCard, isLoadingPujas, renderKundali, birthDetails, supabase, language, readMoreReviewsHref, inlineEditForm, analytics, }: DoshaResultsFullProps): import("react/jsx-runtime").JSX.Element;
39
+ export declare function DoshaResultsFull({ result, t, onEdit, className, kundaliSectionId, feedbackEmail, renderPujaCard, isLoadingPujas, renderKundali, birthDetails, supabase, language, readMoreReviewsHref, inlineEditForm, analytics, problemArea, problemAreaIds, customProblemText, }: DoshaResultsFullProps): import("react/jsx-runtime").JSX.Element;