@srimandir/pitru-paksh-common 2.1.2 → 2.2.4
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/FAQAccordion/FAQAccordion.d.ts +31 -0
- package/dist/components/FAQAccordion/index.d.ts +2 -0
- package/dist/components/PujaDetailsForm/PujaDetailsForm.d.ts +1 -1
- package/dist/components/PujaDetailsForm/PujaDetailsForm.types.d.ts +6 -3
- package/dist/components/TrustBadgesBar/TrustBadgesBar.d.ts +14 -2
- package/dist/index.d.ts +17 -31
- package/dist/pitru-paksh-common.d.ts +17 -31
- package/dist/pitru-paksh-common.js +1468 -1796
- 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 -7
- 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
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
export interface FAQAccordionItem {
|
|
3
|
+
question: string;
|
|
4
|
+
answer: string;
|
|
5
|
+
}
|
|
6
|
+
/**
|
|
7
|
+
* Borderless FAQ accordion — rows separated by a thin bottom line, accent-bar
|
|
8
|
+
* title (same convention as `BillDetails`'s `showTitleAccent`), and a
|
|
9
|
+
* chevron that swaps (not rotates) between up/down per row. Visually
|
|
10
|
+
* distinct from `FAQSection` (rounded bordered rows, centered title, single
|
|
11
|
+
* rotating chevron) — a separate component rather than a restyle so existing
|
|
12
|
+
* `FAQSection` usages are unaffected.
|
|
13
|
+
*/
|
|
14
|
+
export interface FAQAccordionProps {
|
|
15
|
+
title?: string;
|
|
16
|
+
/** Set to `false` to hide the accent bar before the title. */
|
|
17
|
+
showTitleAccent?: boolean;
|
|
18
|
+
items: FAQAccordionItem[];
|
|
19
|
+
/** Items shown before the CTA. Ignored when showCta is false or items.length is at most this. */
|
|
20
|
+
initialVisibleCount?: number;
|
|
21
|
+
/** Whether to render the "see more / see less" CTA at all. */
|
|
22
|
+
showCta?: boolean;
|
|
23
|
+
/** Initial expanded state of the CTA-controlled list. */
|
|
24
|
+
defaultExpanded?: boolean;
|
|
25
|
+
ctaExpandLabel?: string;
|
|
26
|
+
ctaCollapseLabel?: string;
|
|
27
|
+
/** Index of the FAQ row open by default. -1 = none. */
|
|
28
|
+
defaultOpenIndex?: number;
|
|
29
|
+
className?: string;
|
|
30
|
+
}
|
|
31
|
+
export declare const FAQAccordion: React.FC<FAQAccordionProps>;
|
|
@@ -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 —
|
|
@@ -51,9 +51,10 @@ export interface PujaDetailsFormProps {
|
|
|
51
51
|
*/
|
|
52
52
|
gotraOptions?: string[];
|
|
53
53
|
/**
|
|
54
|
-
* When `true`, this puja is for all ancestors ("Sarva Pitru") —
|
|
55
|
-
*
|
|
56
|
-
*
|
|
54
|
+
* When `true`, this puja is for all ancestors ("Sarva Pitru") — a
|
|
55
|
+
* read-only "For all ancestors" field is shown above the ancestor name
|
|
56
|
+
* fields, which stay editable so the devotee can still additionally name
|
|
57
|
+
* specific ancestors. Defaults to `false`.
|
|
57
58
|
*/
|
|
58
59
|
isSarvaPitru?: boolean;
|
|
59
60
|
onBackClick?: () => void;
|
|
@@ -62,6 +63,8 @@ export interface PujaDetailsFormProps {
|
|
|
62
63
|
/** Muted line under the amount in the sticky bottom bar, e.g. "2 Rituals". */
|
|
63
64
|
ritualsCountLabel?: string;
|
|
64
65
|
onPriceInfoClick?: () => void;
|
|
66
|
+
/** Shows/hides the info icon next to the amount in the sticky bottom bar. Defaults to `true`. */
|
|
67
|
+
showPriceInfoIcon?: boolean;
|
|
65
68
|
/** Overrides the computed required-fields check for enabling the CTA. */
|
|
66
69
|
canProceed?: boolean;
|
|
67
70
|
/** 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
|
@@ -5,10 +5,12 @@ export { TestimonialCard } from './components/TestimonialCard';
|
|
|
5
5
|
export type { TestimonialCardProps } from './components/TestimonialCard';
|
|
6
6
|
export { FAQSection } from './components/FAQSection';
|
|
7
7
|
export type { FAQSectionProps, FAQItem } from './components/FAQSection';
|
|
8
|
+
export { FAQAccordion } from './components/FAQAccordion';
|
|
9
|
+
export type { FAQAccordionProps, FAQAccordionItem } from './components/FAQAccordion';
|
|
8
10
|
export { VideoPlayer } from './components/VideoPlayer';
|
|
9
11
|
export type { VideoPlayerProps } from './components/VideoPlayer';
|
|
10
12
|
export { LanguageSwitcher } from './components/LanguageSwitcher';
|
|
11
|
-
export type { LanguageSwitcherProps, LanguageOption
|
|
13
|
+
export type { LanguageSwitcherProps, LanguageOption } from './components/LanguageSwitcher';
|
|
12
14
|
export { TopBar } from './components/TopBar';
|
|
13
15
|
export type { TopBarProps } from './components/TopBar';
|
|
14
16
|
export { Chip } from './components/Chip';
|
|
@@ -23,34 +25,34 @@ export { SelectorCard, SelectorCardEditableField, SelectorCardInfoRow, SelectorC
|
|
|
23
25
|
export type { SelectorCardProps, SelectorCardEditableFieldProps, SelectorCardInfoRowProps, SelectorCardNoteProps, SelectorCardPriceBadgeProps, } from './components/SelectorCard';
|
|
24
26
|
export { QuantityStepper } from './components/QuantityStepper';
|
|
25
27
|
export type { QuantityStepperProps } from './components/QuantityStepper';
|
|
26
|
-
export { CartReviewItem, CartReviewMandapItem, CartReviewChangeButton, CartReviewAddedBadge
|
|
28
|
+
export { CartReviewItem, CartReviewMandapItem, CartReviewChangeButton, CartReviewAddedBadge } from './components/CartReviewItem';
|
|
27
29
|
export type { CartReviewItemProps, CartReviewMandapItemProps, CartReviewChangeButtonProps, CartReviewAddedBadgeProps, } from './components/CartReviewItem';
|
|
28
30
|
export { ServiceOfferCard } from './components/ServiceOfferCard';
|
|
29
31
|
export type { ServiceOfferCardProps } from './components/ServiceOfferCard';
|
|
30
32
|
export { PackageSelect } from './components/PackageSelect';
|
|
31
|
-
export type { PackageSelectProps, PackageSelectOption
|
|
33
|
+
export type { PackageSelectProps, PackageSelectOption } from './components/PackageSelect';
|
|
32
34
|
export { PACKAGE_SELECT_DEFAULT_COPY, getPackageSelectDefaultCopy, } from './components/PackageSelect';
|
|
33
|
-
export type { PackageSelectLocale, PackageSelectDefaultCopy
|
|
35
|
+
export type { PackageSelectLocale, PackageSelectDefaultCopy } from './components/PackageSelect';
|
|
34
36
|
export { TrustBadgesBar } from './components/TrustBadgesBar';
|
|
35
|
-
export type { TrustBadgesBarProps, TrustBadge
|
|
37
|
+
export type { TrustBadgesBarProps, TrustBadge } from './components/TrustBadgesBar';
|
|
36
38
|
export { CheckoutBar } from './components/CheckoutBar';
|
|
37
39
|
export type { CheckoutBarProps } from './components/CheckoutBar';
|
|
38
|
-
export { CHECKOUT_BAR_DEFAULT_COPY, getCheckoutBarDefaultCopy
|
|
39
|
-
export type { CheckoutBarLocale, CheckoutBarDefaultCopy
|
|
40
|
+
export { CHECKOUT_BAR_DEFAULT_COPY, getCheckoutBarDefaultCopy } from './components/CheckoutBar';
|
|
41
|
+
export type { CheckoutBarLocale, CheckoutBarDefaultCopy } from './components/CheckoutBar';
|
|
40
42
|
export { BookingSummaryBanner } from './components/BookingSummaryBanner';
|
|
41
|
-
export type { BookingSummaryBannerProps, BookingSummaryBannerStats
|
|
43
|
+
export type { BookingSummaryBannerProps, BookingSummaryBannerStats } from './components/BookingSummaryBanner';
|
|
42
44
|
export { BOOKING_SUMMARY_BANNER_DEFAULT_COPY, getBookingSummaryBannerDefaultCopy, } from './components/BookingSummaryBanner';
|
|
43
45
|
export type { BookingSummaryBannerLocale, BookingSummaryBannerDefaultCopy, } from './components/BookingSummaryBanner';
|
|
44
46
|
export { BillDetails } from './components/BillDetails';
|
|
45
|
-
export type { BillDetailsProps, BillDetailsRow
|
|
47
|
+
export type { BillDetailsProps, BillDetailsRow } from './components/BillDetails';
|
|
46
48
|
export { CartView } from './components/CartView';
|
|
47
|
-
export type { CartViewProps, CartViewAddon, CartViewItem
|
|
49
|
+
export type { CartViewProps, CartViewAddon, CartViewItem } from './components/CartView';
|
|
48
50
|
export { TextField } from './components/TextField';
|
|
49
51
|
export type { TextFieldProps } from './components/TextField';
|
|
50
52
|
export { TithiPickerSheet } from './components/TithiPickerSheet';
|
|
51
53
|
export type { TithiPickerSheetProps } from './components/TithiPickerSheet';
|
|
52
54
|
export { DatePickerSheet } from './components/DatePickerSheet';
|
|
53
|
-
export type { DatePickerSheetProps, PickedDate
|
|
55
|
+
export type { DatePickerSheetProps, PickedDate } from './components/DatePickerSheet';
|
|
54
56
|
export { PhoneNumberSheet } from './components/PhoneNumberSheet';
|
|
55
57
|
export type { PhoneNumberSheetProps } from './components/PhoneNumberSheet';
|
|
56
58
|
export { EmailSheet } from './components/EmailSheet';
|
|
@@ -58,8 +60,8 @@ export type { EmailSheetProps } from './components/EmailSheet';
|
|
|
58
60
|
export { L2Card } from './components/L2Card';
|
|
59
61
|
export type { L2CardProps, L2CardImageProps } from './components/L2Card';
|
|
60
62
|
export { OutcomeButton, PlusIcon, CheckIcon } from './components/OutcomeButton';
|
|
61
|
-
export type { OutcomeButtonProps, OutcomeButtonVariant, IconProps
|
|
62
|
-
export { PujaDetailsForm, createEmptyPujaDetailsFormValues
|
|
63
|
+
export type { OutcomeButtonProps, OutcomeButtonVariant, IconProps } from './components/OutcomeButton';
|
|
64
|
+
export { PujaDetailsForm, createEmptyPujaDetailsFormValues } from './components/PujaDetailsForm';
|
|
63
65
|
export type { PujaDetailsFormProps, PujaDetailsFormValues, AncestorNameEntry, } from './components/PujaDetailsForm';
|
|
64
66
|
export { PUJA_DETAILS_FORM_DEFAULT_COPY, getPujaDetailsFormDefaultCopy, getKartaOrdinalLabel, } from './components/PujaDetailsForm';
|
|
65
67
|
export type { PujaDetailsFormLocale, PujaDetailsFormDefaultCopy, } from './components/PujaDetailsForm';
|
|
@@ -72,25 +74,9 @@ export type { GotraInfoModalProps } from './components/GotraInfoModal';
|
|
|
72
74
|
export { GOTRA_INFO_MODAL_DEFAULT_COPY, getGotraInfoModalDefaultCopy, } from './components/GotraInfoModal';
|
|
73
75
|
export type { GotraInfoModalLocale, GotraInfoModalDefaultCopy, } from './components/GotraInfoModal';
|
|
74
76
|
export { OutcomeSummary } from './components/OutcomeSummary';
|
|
75
|
-
export type { OutcomeSummaryProps, OutcomeTrustItem, OutcomeTrustIconVariant
|
|
76
|
-
export { AddAncestorSheet } from './components/AddAncestorSheet';
|
|
77
|
-
export type { AddAncestorSheetProps } from './components/AddAncestorSheet';
|
|
78
|
-
export { AncestorTab } from './components/AncestorTab';
|
|
79
|
-
export type { AncestorTabProps, AncestorTabState, } from './components/AncestorTab';
|
|
80
|
-
export { AncestorTabRow } from './components/AncestorTabRow';
|
|
81
|
-
export type { AncestorTabRowProps, AncestorTabRowEntry, } from './components/AncestorTabRow';
|
|
82
|
-
export { AvatarCardDialog } from './components/AvatarCardDialog';
|
|
83
|
-
export type { AvatarCardDialogProps } from './components/AvatarCardDialog';
|
|
84
|
-
export { parseIsoDate, formatIsoDate, getMonthLabels, formatDisplayDate, } from './utils/date.utils';
|
|
77
|
+
export type { OutcomeSummaryProps, OutcomeTrustItem, OutcomeTrustIconVariant } from './components/OutcomeSummary';
|
|
85
78
|
export { SarvaPitruCard } from './components/SarvaPitruCard';
|
|
86
79
|
export type { SarvaPitruCardProps } from './components/SarvaPitruCard';
|
|
87
80
|
export { SARVA_PITRU_CARD_DEFAULT_COPY, getSarvaPitruCardDefaultCopy, } from './components/SarvaPitruCard';
|
|
88
|
-
export type { SarvaPitruCardLocale, SarvaPitruCardDefaultCopy
|
|
81
|
+
export type { SarvaPitruCardLocale, SarvaPitruCardDefaultCopy } from './components/SarvaPitruCard';
|
|
89
82
|
export { cn } from '../../common/dist/common.js';
|
|
90
|
-
export { ALL_ANCESTORS_ID, ANCESTOR_OPTIONS, MALE_ANCESTOR_AVATAR_URL, FEMALE_ANCESTOR_AVATAR_URL, getAncestorAvatarUrl, } from './constants';
|
|
91
|
-
export { DEATH_TITHI_OPTIONS, TITHI_NAME_KEYS } from './constants';
|
|
92
|
-
export type { AncestorOptionData, DeathTithiMethod } from './types';
|
|
93
|
-
export { EventHeader } from './components/EventHeader';
|
|
94
|
-
export type { EventHeaderProps } from './components/EventHeader';
|
|
95
|
-
export { RitualProceedBar } from './components/RitualProceedBar';
|
|
96
|
-
export type { RitualProceedBarProps } from './components/RitualProceedBar';
|
|
@@ -5,10 +5,12 @@ export { TestimonialCard } from './components/TestimonialCard';
|
|
|
5
5
|
export type { TestimonialCardProps } from './components/TestimonialCard';
|
|
6
6
|
export { FAQSection } from './components/FAQSection';
|
|
7
7
|
export type { FAQSectionProps, FAQItem } from './components/FAQSection';
|
|
8
|
+
export { FAQAccordion } from './components/FAQAccordion';
|
|
9
|
+
export type { FAQAccordionProps, FAQAccordionItem } from './components/FAQAccordion';
|
|
8
10
|
export { VideoPlayer } from './components/VideoPlayer';
|
|
9
11
|
export type { VideoPlayerProps } from './components/VideoPlayer';
|
|
10
12
|
export { LanguageSwitcher } from './components/LanguageSwitcher';
|
|
11
|
-
export type { LanguageSwitcherProps, LanguageOption
|
|
13
|
+
export type { LanguageSwitcherProps, LanguageOption } from './components/LanguageSwitcher';
|
|
12
14
|
export { TopBar } from './components/TopBar';
|
|
13
15
|
export type { TopBarProps } from './components/TopBar';
|
|
14
16
|
export { Chip } from './components/Chip';
|
|
@@ -23,34 +25,34 @@ export { SelectorCard, SelectorCardEditableField, SelectorCardInfoRow, SelectorC
|
|
|
23
25
|
export type { SelectorCardProps, SelectorCardEditableFieldProps, SelectorCardInfoRowProps, SelectorCardNoteProps, SelectorCardPriceBadgeProps, } from './components/SelectorCard';
|
|
24
26
|
export { QuantityStepper } from './components/QuantityStepper';
|
|
25
27
|
export type { QuantityStepperProps } from './components/QuantityStepper';
|
|
26
|
-
export { CartReviewItem, CartReviewMandapItem, CartReviewChangeButton, CartReviewAddedBadge
|
|
28
|
+
export { CartReviewItem, CartReviewMandapItem, CartReviewChangeButton, CartReviewAddedBadge } from './components/CartReviewItem';
|
|
27
29
|
export type { CartReviewItemProps, CartReviewMandapItemProps, CartReviewChangeButtonProps, CartReviewAddedBadgeProps, } from './components/CartReviewItem';
|
|
28
30
|
export { ServiceOfferCard } from './components/ServiceOfferCard';
|
|
29
31
|
export type { ServiceOfferCardProps } from './components/ServiceOfferCard';
|
|
30
32
|
export { PackageSelect } from './components/PackageSelect';
|
|
31
|
-
export type { PackageSelectProps, PackageSelectOption
|
|
33
|
+
export type { PackageSelectProps, PackageSelectOption } from './components/PackageSelect';
|
|
32
34
|
export { PACKAGE_SELECT_DEFAULT_COPY, getPackageSelectDefaultCopy, } from './components/PackageSelect';
|
|
33
|
-
export type { PackageSelectLocale, PackageSelectDefaultCopy
|
|
35
|
+
export type { PackageSelectLocale, PackageSelectDefaultCopy } from './components/PackageSelect';
|
|
34
36
|
export { TrustBadgesBar } from './components/TrustBadgesBar';
|
|
35
|
-
export type { TrustBadgesBarProps, TrustBadge
|
|
37
|
+
export type { TrustBadgesBarProps, TrustBadge } from './components/TrustBadgesBar';
|
|
36
38
|
export { CheckoutBar } from './components/CheckoutBar';
|
|
37
39
|
export type { CheckoutBarProps } from './components/CheckoutBar';
|
|
38
|
-
export { CHECKOUT_BAR_DEFAULT_COPY, getCheckoutBarDefaultCopy
|
|
39
|
-
export type { CheckoutBarLocale, CheckoutBarDefaultCopy
|
|
40
|
+
export { CHECKOUT_BAR_DEFAULT_COPY, getCheckoutBarDefaultCopy } from './components/CheckoutBar';
|
|
41
|
+
export type { CheckoutBarLocale, CheckoutBarDefaultCopy } from './components/CheckoutBar';
|
|
40
42
|
export { BookingSummaryBanner } from './components/BookingSummaryBanner';
|
|
41
|
-
export type { BookingSummaryBannerProps, BookingSummaryBannerStats
|
|
43
|
+
export type { BookingSummaryBannerProps, BookingSummaryBannerStats } from './components/BookingSummaryBanner';
|
|
42
44
|
export { BOOKING_SUMMARY_BANNER_DEFAULT_COPY, getBookingSummaryBannerDefaultCopy, } from './components/BookingSummaryBanner';
|
|
43
45
|
export type { BookingSummaryBannerLocale, BookingSummaryBannerDefaultCopy, } from './components/BookingSummaryBanner';
|
|
44
46
|
export { BillDetails } from './components/BillDetails';
|
|
45
|
-
export type { BillDetailsProps, BillDetailsRow
|
|
47
|
+
export type { BillDetailsProps, BillDetailsRow } from './components/BillDetails';
|
|
46
48
|
export { CartView } from './components/CartView';
|
|
47
|
-
export type { CartViewProps, CartViewAddon, CartViewItem
|
|
49
|
+
export type { CartViewProps, CartViewAddon, CartViewItem } from './components/CartView';
|
|
48
50
|
export { TextField } from './components/TextField';
|
|
49
51
|
export type { TextFieldProps } from './components/TextField';
|
|
50
52
|
export { TithiPickerSheet } from './components/TithiPickerSheet';
|
|
51
53
|
export type { TithiPickerSheetProps } from './components/TithiPickerSheet';
|
|
52
54
|
export { DatePickerSheet } from './components/DatePickerSheet';
|
|
53
|
-
export type { DatePickerSheetProps, PickedDate
|
|
55
|
+
export type { DatePickerSheetProps, PickedDate } from './components/DatePickerSheet';
|
|
54
56
|
export { PhoneNumberSheet } from './components/PhoneNumberSheet';
|
|
55
57
|
export type { PhoneNumberSheetProps } from './components/PhoneNumberSheet';
|
|
56
58
|
export { EmailSheet } from './components/EmailSheet';
|
|
@@ -58,8 +60,8 @@ export type { EmailSheetProps } from './components/EmailSheet';
|
|
|
58
60
|
export { L2Card } from './components/L2Card';
|
|
59
61
|
export type { L2CardProps, L2CardImageProps } from './components/L2Card';
|
|
60
62
|
export { OutcomeButton, PlusIcon, CheckIcon } from './components/OutcomeButton';
|
|
61
|
-
export type { OutcomeButtonProps, OutcomeButtonVariant, IconProps
|
|
62
|
-
export { PujaDetailsForm, createEmptyPujaDetailsFormValues
|
|
63
|
+
export type { OutcomeButtonProps, OutcomeButtonVariant, IconProps } from './components/OutcomeButton';
|
|
64
|
+
export { PujaDetailsForm, createEmptyPujaDetailsFormValues } from './components/PujaDetailsForm';
|
|
63
65
|
export type { PujaDetailsFormProps, PujaDetailsFormValues, AncestorNameEntry, } from './components/PujaDetailsForm';
|
|
64
66
|
export { PUJA_DETAILS_FORM_DEFAULT_COPY, getPujaDetailsFormDefaultCopy, getKartaOrdinalLabel, } from './components/PujaDetailsForm';
|
|
65
67
|
export type { PujaDetailsFormLocale, PujaDetailsFormDefaultCopy, } from './components/PujaDetailsForm';
|
|
@@ -72,25 +74,9 @@ export type { GotraInfoModalProps } from './components/GotraInfoModal';
|
|
|
72
74
|
export { GOTRA_INFO_MODAL_DEFAULT_COPY, getGotraInfoModalDefaultCopy, } from './components/GotraInfoModal';
|
|
73
75
|
export type { GotraInfoModalLocale, GotraInfoModalDefaultCopy, } from './components/GotraInfoModal';
|
|
74
76
|
export { OutcomeSummary } from './components/OutcomeSummary';
|
|
75
|
-
export type { OutcomeSummaryProps, OutcomeTrustItem, OutcomeTrustIconVariant
|
|
76
|
-
export { AddAncestorSheet } from './components/AddAncestorSheet';
|
|
77
|
-
export type { AddAncestorSheetProps } from './components/AddAncestorSheet';
|
|
78
|
-
export { AncestorTab } from './components/AncestorTab';
|
|
79
|
-
export type { AncestorTabProps, AncestorTabState, } from './components/AncestorTab';
|
|
80
|
-
export { AncestorTabRow } from './components/AncestorTabRow';
|
|
81
|
-
export type { AncestorTabRowProps, AncestorTabRowEntry, } from './components/AncestorTabRow';
|
|
82
|
-
export { AvatarCardDialog } from './components/AvatarCardDialog';
|
|
83
|
-
export type { AvatarCardDialogProps } from './components/AvatarCardDialog';
|
|
84
|
-
export { parseIsoDate, formatIsoDate, getMonthLabels, formatDisplayDate, } from './utils/date.utils';
|
|
77
|
+
export type { OutcomeSummaryProps, OutcomeTrustItem, OutcomeTrustIconVariant } from './components/OutcomeSummary';
|
|
85
78
|
export { SarvaPitruCard } from './components/SarvaPitruCard';
|
|
86
79
|
export type { SarvaPitruCardProps } from './components/SarvaPitruCard';
|
|
87
80
|
export { SARVA_PITRU_CARD_DEFAULT_COPY, getSarvaPitruCardDefaultCopy, } from './components/SarvaPitruCard';
|
|
88
|
-
export type { SarvaPitruCardLocale, SarvaPitruCardDefaultCopy
|
|
81
|
+
export type { SarvaPitruCardLocale, SarvaPitruCardDefaultCopy } from './components/SarvaPitruCard';
|
|
89
82
|
export { cn } from '../../common/dist/common.js';
|
|
90
|
-
export { ALL_ANCESTORS_ID, ANCESTOR_OPTIONS, MALE_ANCESTOR_AVATAR_URL, FEMALE_ANCESTOR_AVATAR_URL, getAncestorAvatarUrl, } from './constants';
|
|
91
|
-
export { DEATH_TITHI_OPTIONS, TITHI_NAME_KEYS } from './constants';
|
|
92
|
-
export type { AncestorOptionData, DeathTithiMethod } from './types';
|
|
93
|
-
export { EventHeader } from './components/EventHeader';
|
|
94
|
-
export type { EventHeaderProps } from './components/EventHeader';
|
|
95
|
-
export { RitualProceedBar } from './components/RitualProceedBar';
|
|
96
|
-
export type { RitualProceedBarProps } from './components/RitualProceedBar';
|