@srimandir/pitru-paksh-common 2.0.36 → 2.0.38
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/PujaDetailsForm/PujaDetailsForm.d.ts +1 -1
- package/dist/components/PujaDetailsForm/PujaDetailsForm.types.d.ts +2 -0
- package/dist/components/TrustBadgesBar/TrustBadgesBar.d.ts +14 -2
- package/dist/index.d.ts +15 -31
- package/dist/pitru-paksh-common.d.ts +15 -31
- package/dist/pitru-paksh-common.js +1380 -1771
- package/dist/pitru-paksh-common.umd.cjs +8 -8
- package/dist/style.css +1 -1
- package/package.json +2 -2
- package/dist/components/AddAncestorSheet/AddAncestorSheet.d.ts +0 -13
- package/dist/components/AddAncestorSheet/index.d.ts +0 -2
- package/dist/components/AncestorTab/AncestorTab.d.ts +0 -15
- package/dist/components/AncestorTab/index.d.ts +0 -2
- package/dist/components/AncestorTabRow/AncestorTabRow.d.ts +0 -15
- package/dist/components/AncestorTabRow/index.d.ts +0 -2
- package/dist/components/AvatarCardDialog/AvatarCardDialog.d.ts +0 -17
- package/dist/components/AvatarCardDialog/index.d.ts +0 -2
- package/dist/components/EventHeader/EventHeader.d.ts +0 -35
- package/dist/components/EventHeader/index.d.ts +0 -2
- package/dist/components/RitualProceedBar/RitualProceedBar.d.ts +0 -35
- package/dist/components/RitualProceedBar/index.d.ts +0 -2
- package/dist/constants/ancestor.constants.d.ts +0 -57
- package/dist/constants/deathTithi.constants.d.ts +0 -8
- package/dist/constants/index.d.ts +0 -3
- package/dist/constants/tithi.constants.d.ts +0 -1
- package/dist/types/ancestor.types.d.ts +0 -6
- package/dist/types/deathTithi.types.d.ts +0 -1
- package/dist/types/index.d.ts +0 -2
- package/dist/utils/date.utils.d.ts +0 -6
|
@@ -13,7 +13,7 @@ import { AncestorNameEntry, PujaDetailsFormProps, PujaDetailsFormValues } from '
|
|
|
13
13
|
* always the fixed, translated copy (not overridable) since this form only
|
|
14
14
|
* ever collects an Indian mobile number or an email.
|
|
15
15
|
*/
|
|
16
|
-
export declare function PujaDetailsForm({ locale, values, onValuesChange, isGlobal, gotraOptions, isSarvaPitru, onBackClick, amount, ritualsCountLabel, onPriceInfoClick, canProceed, proceedCtaLabel, proceedButtonProps, onProceedPayment, className, }: PujaDetailsFormProps): import("react").JSX.Element;
|
|
16
|
+
export declare function PujaDetailsForm({ locale, values, onValuesChange, isGlobal, gotraOptions, isSarvaPitru, onBackClick, amount, ritualsCountLabel, onPriceInfoClick, showPriceInfoIcon, canProceed, proceedCtaLabel, proceedButtonProps, onProceedPayment, className, }: PujaDetailsFormProps): import("react").JSX.Element;
|
|
17
17
|
/**
|
|
18
18
|
* Convenience factory for a blank `PujaDetailsFormValues`, e.g. to seed local
|
|
19
19
|
* component state. `kartaCount` sets how many Karta name fields render —
|
|
@@ -62,6 +62,8 @@ export interface PujaDetailsFormProps {
|
|
|
62
62
|
/** Muted line under the amount in the sticky bottom bar, e.g. "2 Rituals". */
|
|
63
63
|
ritualsCountLabel?: string;
|
|
64
64
|
onPriceInfoClick?: () => void;
|
|
65
|
+
/** Shows/hides the info icon next to the amount in the sticky bottom bar. Defaults to `true`. */
|
|
66
|
+
showPriceInfoIcon?: boolean;
|
|
65
67
|
/** Overrides the computed required-fields check for enabling the CTA. */
|
|
66
68
|
canProceed?: boolean;
|
|
67
69
|
/** Defaults to locale-specific copy. */
|
|
@@ -15,13 +15,25 @@ export interface TrustBadgesBarProps extends React.HTMLAttributes<HTMLDivElement
|
|
|
15
15
|
*/
|
|
16
16
|
badges?: TrustBadge[];
|
|
17
17
|
badgeClassName?: string;
|
|
18
|
+
/** Continuously auto-scrolls the badges in an infinite loop instead of a static (manually scrollable) row. Defaults to `true`. */
|
|
19
|
+
marquee?: boolean;
|
|
20
|
+
/** Seconds for one full marquee loop — lower is faster. Only used when `marquee` is `true`. Defaults to `14`. */
|
|
21
|
+
marqueeDurationSeconds?: number;
|
|
18
22
|
}
|
|
19
23
|
/**
|
|
20
|
-
*
|
|
21
|
-
*
|
|
24
|
+
* Strip of trust badges (icon + label) shown above the checkout bar, e.g.
|
|
25
|
+
* "100% Money Back Guarantee | No Hidden Cost | ...". Loops in a continuous
|
|
26
|
+
* horizontal marquee by default — pass `marquee={false}` for a static,
|
|
27
|
+
* manually scrollable row instead.
|
|
28
|
+
*
|
|
29
|
+
* The marquee renders `badges` twice back-to-back and animates the track
|
|
30
|
+
* leftward by exactly one copy's width (`-50%`), so the moment the first
|
|
31
|
+
* copy scrolls fully off-screen the second is in the exact same position it
|
|
32
|
+
* started in — the loop point is invisible. Respects `prefers-reduced-motion`.
|
|
22
33
|
*
|
|
23
34
|
* @example
|
|
24
35
|
* <TrustBadgesBar />
|
|
36
|
+
* <TrustBadgesBar marquee={false} />
|
|
25
37
|
* <TrustBadgesBar badges={[{ id: 'verified', icon: <FiCheckCircle />, label: 'Verified Pandits' }]} />
|
|
26
38
|
*/
|
|
27
39
|
export declare const TrustBadgesBar: React.FC<TrustBadgesBarProps>;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
export { Button, buttonVariants } from './components/Button';
|
|
2
2
|
export type { ButtonProps } from './components/Button';
|
|
3
|
-
export { EventHeader } from './components/EventHeader';
|
|
4
|
-
export type { EventHeaderProps } from './components/EventHeader';
|
|
5
|
-
export { RitualProceedBar } from './components/RitualProceedBar';
|
|
6
|
-
export type { RitualProceedBarProps } from './components/RitualProceedBar';
|
|
7
3
|
export { ConfinedBottomSheet } from './components/ConfinedBottomSheet';
|
|
8
4
|
export { TestimonialCard } from './components/TestimonialCard';
|
|
9
5
|
export type { TestimonialCardProps } from './components/TestimonialCard';
|
|
@@ -12,7 +8,7 @@ export type { FAQSectionProps, FAQItem } from './components/FAQSection';
|
|
|
12
8
|
export { VideoPlayer } from './components/VideoPlayer';
|
|
13
9
|
export type { VideoPlayerProps } from './components/VideoPlayer';
|
|
14
10
|
export { LanguageSwitcher } from './components/LanguageSwitcher';
|
|
15
|
-
export type { LanguageSwitcherProps, LanguageOption
|
|
11
|
+
export type { LanguageSwitcherProps, LanguageOption } from './components/LanguageSwitcher';
|
|
16
12
|
export { TopBar } from './components/TopBar';
|
|
17
13
|
export type { TopBarProps } from './components/TopBar';
|
|
18
14
|
export { Chip } from './components/Chip';
|
|
@@ -27,34 +23,34 @@ export { SelectorCard, SelectorCardEditableField, SelectorCardInfoRow, SelectorC
|
|
|
27
23
|
export type { SelectorCardProps, SelectorCardEditableFieldProps, SelectorCardInfoRowProps, SelectorCardNoteProps, SelectorCardPriceBadgeProps, } from './components/SelectorCard';
|
|
28
24
|
export { QuantityStepper } from './components/QuantityStepper';
|
|
29
25
|
export type { QuantityStepperProps } from './components/QuantityStepper';
|
|
30
|
-
export { CartReviewItem, CartReviewMandapItem, CartReviewChangeButton, CartReviewAddedBadge
|
|
26
|
+
export { CartReviewItem, CartReviewMandapItem, CartReviewChangeButton, CartReviewAddedBadge } from './components/CartReviewItem';
|
|
31
27
|
export type { CartReviewItemProps, CartReviewMandapItemProps, CartReviewChangeButtonProps, CartReviewAddedBadgeProps, } from './components/CartReviewItem';
|
|
32
28
|
export { ServiceOfferCard } from './components/ServiceOfferCard';
|
|
33
29
|
export type { ServiceOfferCardProps } from './components/ServiceOfferCard';
|
|
34
30
|
export { PackageSelect } from './components/PackageSelect';
|
|
35
|
-
export type { PackageSelectProps, PackageSelectOption
|
|
31
|
+
export type { PackageSelectProps, PackageSelectOption } from './components/PackageSelect';
|
|
36
32
|
export { PACKAGE_SELECT_DEFAULT_COPY, getPackageSelectDefaultCopy, } from './components/PackageSelect';
|
|
37
|
-
export type { PackageSelectLocale, PackageSelectDefaultCopy
|
|
33
|
+
export type { PackageSelectLocale, PackageSelectDefaultCopy } from './components/PackageSelect';
|
|
38
34
|
export { TrustBadgesBar } from './components/TrustBadgesBar';
|
|
39
|
-
export type { TrustBadgesBarProps, TrustBadge
|
|
35
|
+
export type { TrustBadgesBarProps, TrustBadge } from './components/TrustBadgesBar';
|
|
40
36
|
export { CheckoutBar } from './components/CheckoutBar';
|
|
41
37
|
export type { CheckoutBarProps } from './components/CheckoutBar';
|
|
42
|
-
export { CHECKOUT_BAR_DEFAULT_COPY, getCheckoutBarDefaultCopy
|
|
43
|
-
export type { CheckoutBarLocale, CheckoutBarDefaultCopy
|
|
38
|
+
export { CHECKOUT_BAR_DEFAULT_COPY, getCheckoutBarDefaultCopy } from './components/CheckoutBar';
|
|
39
|
+
export type { CheckoutBarLocale, CheckoutBarDefaultCopy } from './components/CheckoutBar';
|
|
44
40
|
export { BookingSummaryBanner } from './components/BookingSummaryBanner';
|
|
45
|
-
export type { BookingSummaryBannerProps, BookingSummaryBannerStats
|
|
41
|
+
export type { BookingSummaryBannerProps, BookingSummaryBannerStats } from './components/BookingSummaryBanner';
|
|
46
42
|
export { BOOKING_SUMMARY_BANNER_DEFAULT_COPY, getBookingSummaryBannerDefaultCopy, } from './components/BookingSummaryBanner';
|
|
47
43
|
export type { BookingSummaryBannerLocale, BookingSummaryBannerDefaultCopy, } from './components/BookingSummaryBanner';
|
|
48
44
|
export { BillDetails } from './components/BillDetails';
|
|
49
|
-
export type { BillDetailsProps, BillDetailsRow
|
|
45
|
+
export type { BillDetailsProps, BillDetailsRow } from './components/BillDetails';
|
|
50
46
|
export { CartView } from './components/CartView';
|
|
51
|
-
export type { CartViewProps, CartViewAddon, CartViewItem
|
|
47
|
+
export type { CartViewProps, CartViewAddon, CartViewItem } from './components/CartView';
|
|
52
48
|
export { TextField } from './components/TextField';
|
|
53
49
|
export type { TextFieldProps } from './components/TextField';
|
|
54
50
|
export { TithiPickerSheet } from './components/TithiPickerSheet';
|
|
55
51
|
export type { TithiPickerSheetProps } from './components/TithiPickerSheet';
|
|
56
52
|
export { DatePickerSheet } from './components/DatePickerSheet';
|
|
57
|
-
export type { DatePickerSheetProps, PickedDate
|
|
53
|
+
export type { DatePickerSheetProps, PickedDate } from './components/DatePickerSheet';
|
|
58
54
|
export { PhoneNumberSheet } from './components/PhoneNumberSheet';
|
|
59
55
|
export type { PhoneNumberSheetProps } from './components/PhoneNumberSheet';
|
|
60
56
|
export { EmailSheet } from './components/EmailSheet';
|
|
@@ -62,8 +58,8 @@ export type { EmailSheetProps } from './components/EmailSheet';
|
|
|
62
58
|
export { L2Card } from './components/L2Card';
|
|
63
59
|
export type { L2CardProps, L2CardImageProps } from './components/L2Card';
|
|
64
60
|
export { OutcomeButton, PlusIcon, CheckIcon } from './components/OutcomeButton';
|
|
65
|
-
export type { OutcomeButtonProps, OutcomeButtonVariant, IconProps
|
|
66
|
-
export { PujaDetailsForm, createEmptyPujaDetailsFormValues
|
|
61
|
+
export type { OutcomeButtonProps, OutcomeButtonVariant, IconProps } from './components/OutcomeButton';
|
|
62
|
+
export { PujaDetailsForm, createEmptyPujaDetailsFormValues } from './components/PujaDetailsForm';
|
|
67
63
|
export type { PujaDetailsFormProps, PujaDetailsFormValues, AncestorNameEntry, } from './components/PujaDetailsForm';
|
|
68
64
|
export { PUJA_DETAILS_FORM_DEFAULT_COPY, getPujaDetailsFormDefaultCopy, getKartaOrdinalLabel, } from './components/PujaDetailsForm';
|
|
69
65
|
export type { PujaDetailsFormLocale, PujaDetailsFormDefaultCopy, } from './components/PujaDetailsForm';
|
|
@@ -76,21 +72,9 @@ export type { GotraInfoModalProps } from './components/GotraInfoModal';
|
|
|
76
72
|
export { GOTRA_INFO_MODAL_DEFAULT_COPY, getGotraInfoModalDefaultCopy, } from './components/GotraInfoModal';
|
|
77
73
|
export type { GotraInfoModalLocale, GotraInfoModalDefaultCopy, } from './components/GotraInfoModal';
|
|
78
74
|
export { OutcomeSummary } from './components/OutcomeSummary';
|
|
79
|
-
export type { OutcomeSummaryProps, OutcomeTrustItem, OutcomeTrustIconVariant
|
|
80
|
-
export { AddAncestorSheet } from './components/AddAncestorSheet';
|
|
81
|
-
export type { AddAncestorSheetProps } from './components/AddAncestorSheet';
|
|
82
|
-
export { AncestorTab } from './components/AncestorTab';
|
|
83
|
-
export type { AncestorTabProps, AncestorTabState, } from './components/AncestorTab';
|
|
84
|
-
export { AncestorTabRow } from './components/AncestorTabRow';
|
|
85
|
-
export type { AncestorTabRowProps, AncestorTabRowEntry, } from './components/AncestorTabRow';
|
|
86
|
-
export { AvatarCardDialog } from './components/AvatarCardDialog';
|
|
87
|
-
export type { AvatarCardDialogProps } from './components/AvatarCardDialog';
|
|
88
|
-
export { parseIsoDate, formatIsoDate, getMonthLabels, formatDisplayDate, } from './utils/date.utils';
|
|
75
|
+
export type { OutcomeSummaryProps, OutcomeTrustItem, OutcomeTrustIconVariant } from './components/OutcomeSummary';
|
|
89
76
|
export { SarvaPitruCard } from './components/SarvaPitruCard';
|
|
90
77
|
export type { SarvaPitruCardProps } from './components/SarvaPitruCard';
|
|
91
78
|
export { SARVA_PITRU_CARD_DEFAULT_COPY, getSarvaPitruCardDefaultCopy, } from './components/SarvaPitruCard';
|
|
92
|
-
export type { SarvaPitruCardLocale, SarvaPitruCardDefaultCopy
|
|
79
|
+
export type { SarvaPitruCardLocale, SarvaPitruCardDefaultCopy } from './components/SarvaPitruCard';
|
|
93
80
|
export { cn } from '../../common/dist/common.js';
|
|
94
|
-
export { ALL_ANCESTORS_ID, ANCESTOR_OPTIONS, MALE_ANCESTOR_AVATAR_URL, FEMALE_ANCESTOR_AVATAR_URL, getAncestorAvatarUrl, } from './constants';
|
|
95
|
-
export { DEATH_TITHI_OPTIONS, TITHI_NAME_KEYS } from './constants';
|
|
96
|
-
export type { AncestorOptionData, DeathTithiMethod } from './types';
|
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
export { Button, buttonVariants } from './components/Button';
|
|
2
2
|
export type { ButtonProps } from './components/Button';
|
|
3
|
-
export { EventHeader } from './components/EventHeader';
|
|
4
|
-
export type { EventHeaderProps } from './components/EventHeader';
|
|
5
|
-
export { RitualProceedBar } from './components/RitualProceedBar';
|
|
6
|
-
export type { RitualProceedBarProps } from './components/RitualProceedBar';
|
|
7
3
|
export { ConfinedBottomSheet } from './components/ConfinedBottomSheet';
|
|
8
4
|
export { TestimonialCard } from './components/TestimonialCard';
|
|
9
5
|
export type { TestimonialCardProps } from './components/TestimonialCard';
|
|
@@ -12,7 +8,7 @@ export type { FAQSectionProps, FAQItem } from './components/FAQSection';
|
|
|
12
8
|
export { VideoPlayer } from './components/VideoPlayer';
|
|
13
9
|
export type { VideoPlayerProps } from './components/VideoPlayer';
|
|
14
10
|
export { LanguageSwitcher } from './components/LanguageSwitcher';
|
|
15
|
-
export type { LanguageSwitcherProps, LanguageOption
|
|
11
|
+
export type { LanguageSwitcherProps, LanguageOption } from './components/LanguageSwitcher';
|
|
16
12
|
export { TopBar } from './components/TopBar';
|
|
17
13
|
export type { TopBarProps } from './components/TopBar';
|
|
18
14
|
export { Chip } from './components/Chip';
|
|
@@ -27,34 +23,34 @@ export { SelectorCard, SelectorCardEditableField, SelectorCardInfoRow, SelectorC
|
|
|
27
23
|
export type { SelectorCardProps, SelectorCardEditableFieldProps, SelectorCardInfoRowProps, SelectorCardNoteProps, SelectorCardPriceBadgeProps, } from './components/SelectorCard';
|
|
28
24
|
export { QuantityStepper } from './components/QuantityStepper';
|
|
29
25
|
export type { QuantityStepperProps } from './components/QuantityStepper';
|
|
30
|
-
export { CartReviewItem, CartReviewMandapItem, CartReviewChangeButton, CartReviewAddedBadge
|
|
26
|
+
export { CartReviewItem, CartReviewMandapItem, CartReviewChangeButton, CartReviewAddedBadge } from './components/CartReviewItem';
|
|
31
27
|
export type { CartReviewItemProps, CartReviewMandapItemProps, CartReviewChangeButtonProps, CartReviewAddedBadgeProps, } from './components/CartReviewItem';
|
|
32
28
|
export { ServiceOfferCard } from './components/ServiceOfferCard';
|
|
33
29
|
export type { ServiceOfferCardProps } from './components/ServiceOfferCard';
|
|
34
30
|
export { PackageSelect } from './components/PackageSelect';
|
|
35
|
-
export type { PackageSelectProps, PackageSelectOption
|
|
31
|
+
export type { PackageSelectProps, PackageSelectOption } from './components/PackageSelect';
|
|
36
32
|
export { PACKAGE_SELECT_DEFAULT_COPY, getPackageSelectDefaultCopy, } from './components/PackageSelect';
|
|
37
|
-
export type { PackageSelectLocale, PackageSelectDefaultCopy
|
|
33
|
+
export type { PackageSelectLocale, PackageSelectDefaultCopy } from './components/PackageSelect';
|
|
38
34
|
export { TrustBadgesBar } from './components/TrustBadgesBar';
|
|
39
|
-
export type { TrustBadgesBarProps, TrustBadge
|
|
35
|
+
export type { TrustBadgesBarProps, TrustBadge } from './components/TrustBadgesBar';
|
|
40
36
|
export { CheckoutBar } from './components/CheckoutBar';
|
|
41
37
|
export type { CheckoutBarProps } from './components/CheckoutBar';
|
|
42
|
-
export { CHECKOUT_BAR_DEFAULT_COPY, getCheckoutBarDefaultCopy
|
|
43
|
-
export type { CheckoutBarLocale, CheckoutBarDefaultCopy
|
|
38
|
+
export { CHECKOUT_BAR_DEFAULT_COPY, getCheckoutBarDefaultCopy } from './components/CheckoutBar';
|
|
39
|
+
export type { CheckoutBarLocale, CheckoutBarDefaultCopy } from './components/CheckoutBar';
|
|
44
40
|
export { BookingSummaryBanner } from './components/BookingSummaryBanner';
|
|
45
|
-
export type { BookingSummaryBannerProps, BookingSummaryBannerStats
|
|
41
|
+
export type { BookingSummaryBannerProps, BookingSummaryBannerStats } from './components/BookingSummaryBanner';
|
|
46
42
|
export { BOOKING_SUMMARY_BANNER_DEFAULT_COPY, getBookingSummaryBannerDefaultCopy, } from './components/BookingSummaryBanner';
|
|
47
43
|
export type { BookingSummaryBannerLocale, BookingSummaryBannerDefaultCopy, } from './components/BookingSummaryBanner';
|
|
48
44
|
export { BillDetails } from './components/BillDetails';
|
|
49
|
-
export type { BillDetailsProps, BillDetailsRow
|
|
45
|
+
export type { BillDetailsProps, BillDetailsRow } from './components/BillDetails';
|
|
50
46
|
export { CartView } from './components/CartView';
|
|
51
|
-
export type { CartViewProps, CartViewAddon, CartViewItem
|
|
47
|
+
export type { CartViewProps, CartViewAddon, CartViewItem } from './components/CartView';
|
|
52
48
|
export { TextField } from './components/TextField';
|
|
53
49
|
export type { TextFieldProps } from './components/TextField';
|
|
54
50
|
export { TithiPickerSheet } from './components/TithiPickerSheet';
|
|
55
51
|
export type { TithiPickerSheetProps } from './components/TithiPickerSheet';
|
|
56
52
|
export { DatePickerSheet } from './components/DatePickerSheet';
|
|
57
|
-
export type { DatePickerSheetProps, PickedDate
|
|
53
|
+
export type { DatePickerSheetProps, PickedDate } from './components/DatePickerSheet';
|
|
58
54
|
export { PhoneNumberSheet } from './components/PhoneNumberSheet';
|
|
59
55
|
export type { PhoneNumberSheetProps } from './components/PhoneNumberSheet';
|
|
60
56
|
export { EmailSheet } from './components/EmailSheet';
|
|
@@ -62,8 +58,8 @@ export type { EmailSheetProps } from './components/EmailSheet';
|
|
|
62
58
|
export { L2Card } from './components/L2Card';
|
|
63
59
|
export type { L2CardProps, L2CardImageProps } from './components/L2Card';
|
|
64
60
|
export { OutcomeButton, PlusIcon, CheckIcon } from './components/OutcomeButton';
|
|
65
|
-
export type { OutcomeButtonProps, OutcomeButtonVariant, IconProps
|
|
66
|
-
export { PujaDetailsForm, createEmptyPujaDetailsFormValues
|
|
61
|
+
export type { OutcomeButtonProps, OutcomeButtonVariant, IconProps } from './components/OutcomeButton';
|
|
62
|
+
export { PujaDetailsForm, createEmptyPujaDetailsFormValues } from './components/PujaDetailsForm';
|
|
67
63
|
export type { PujaDetailsFormProps, PujaDetailsFormValues, AncestorNameEntry, } from './components/PujaDetailsForm';
|
|
68
64
|
export { PUJA_DETAILS_FORM_DEFAULT_COPY, getPujaDetailsFormDefaultCopy, getKartaOrdinalLabel, } from './components/PujaDetailsForm';
|
|
69
65
|
export type { PujaDetailsFormLocale, PujaDetailsFormDefaultCopy, } from './components/PujaDetailsForm';
|
|
@@ -76,21 +72,9 @@ export type { GotraInfoModalProps } from './components/GotraInfoModal';
|
|
|
76
72
|
export { GOTRA_INFO_MODAL_DEFAULT_COPY, getGotraInfoModalDefaultCopy, } from './components/GotraInfoModal';
|
|
77
73
|
export type { GotraInfoModalLocale, GotraInfoModalDefaultCopy, } from './components/GotraInfoModal';
|
|
78
74
|
export { OutcomeSummary } from './components/OutcomeSummary';
|
|
79
|
-
export type { OutcomeSummaryProps, OutcomeTrustItem, OutcomeTrustIconVariant
|
|
80
|
-
export { AddAncestorSheet } from './components/AddAncestorSheet';
|
|
81
|
-
export type { AddAncestorSheetProps } from './components/AddAncestorSheet';
|
|
82
|
-
export { AncestorTab } from './components/AncestorTab';
|
|
83
|
-
export type { AncestorTabProps, AncestorTabState, } from './components/AncestorTab';
|
|
84
|
-
export { AncestorTabRow } from './components/AncestorTabRow';
|
|
85
|
-
export type { AncestorTabRowProps, AncestorTabRowEntry, } from './components/AncestorTabRow';
|
|
86
|
-
export { AvatarCardDialog } from './components/AvatarCardDialog';
|
|
87
|
-
export type { AvatarCardDialogProps } from './components/AvatarCardDialog';
|
|
88
|
-
export { parseIsoDate, formatIsoDate, getMonthLabels, formatDisplayDate, } from './utils/date.utils';
|
|
75
|
+
export type { OutcomeSummaryProps, OutcomeTrustItem, OutcomeTrustIconVariant } from './components/OutcomeSummary';
|
|
89
76
|
export { SarvaPitruCard } from './components/SarvaPitruCard';
|
|
90
77
|
export type { SarvaPitruCardProps } from './components/SarvaPitruCard';
|
|
91
78
|
export { SARVA_PITRU_CARD_DEFAULT_COPY, getSarvaPitruCardDefaultCopy, } from './components/SarvaPitruCard';
|
|
92
|
-
export type { SarvaPitruCardLocale, SarvaPitruCardDefaultCopy
|
|
79
|
+
export type { SarvaPitruCardLocale, SarvaPitruCardDefaultCopy } from './components/SarvaPitruCard';
|
|
93
80
|
export { cn } from '../../common/dist/common.js';
|
|
94
|
-
export { ALL_ANCESTORS_ID, ANCESTOR_OPTIONS, MALE_ANCESTOR_AVATAR_URL, FEMALE_ANCESTOR_AVATAR_URL, getAncestorAvatarUrl, } from './constants';
|
|
95
|
-
export { DEATH_TITHI_OPTIONS, TITHI_NAME_KEYS } from './constants';
|
|
96
|
-
export type { AncestorOptionData, DeathTithiMethod } from './types';
|