@srimandir/pitru-paksh-common 2.35.0 → 2.36.0-beta.0
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/CartView/CartView.d.ts +2 -0
- package/dist/components/DatePickerSheet/DatePickerSheet.d.ts +5 -1
- package/dist/components/FAQSection/FAQSection.d.ts +2 -0
- package/dist/components/L2Card/L2Card.d.ts +2 -2
- package/dist/components/VideoPlayer/VideoPlayer.d.ts +1 -0
- package/dist/pitru-paksh-common.d.ts +132 -0
- package/dist/pitru-paksh-common.js +1848 -1813
- package/dist/pitru-paksh-common.umd.cjs +8 -8
- package/dist/style.css +1 -1
- package/package.json +4 -5
|
@@ -46,6 +46,8 @@ export interface CartViewProps extends Omit<React.HTMLAttributes<HTMLDivElement>
|
|
|
46
46
|
headerClassName?: string;
|
|
47
47
|
backButtonClassName?: string;
|
|
48
48
|
headerTitleClassName?: string;
|
|
49
|
+
/** Rendered between the booking items and the add-ons section — for anything that should introduce the add-ons (a one-time offer card, a notice). */
|
|
50
|
+
beforeAddons?: React.ReactNode;
|
|
49
51
|
/** Pink "Pitru Paksha Special Rituals" style banner. Omit to hide it. All `BookingSummaryBanner` props are available. */
|
|
50
52
|
summary?: BookingSummaryBannerProps;
|
|
51
53
|
/** Read-only booking line items (Performers-Karta, rituals, fees, ...). Omit/empty to hide the section. */
|
|
@@ -19,5 +19,9 @@ export interface DatePickerSheetProps {
|
|
|
19
19
|
initialDate?: PickedDate;
|
|
20
20
|
minYear?: number;
|
|
21
21
|
maxYear?: number;
|
|
22
|
+
/** Day-precise lower bound. Takes precedence over `minYear` and also restricts month/day within its own year. */
|
|
23
|
+
minDate?: PickedDate;
|
|
24
|
+
/** Day-precise upper bound. Takes precedence over `maxYear` and also restricts month/day within its own year. */
|
|
25
|
+
maxDate?: PickedDate;
|
|
22
26
|
}
|
|
23
|
-
export declare function DatePickerSheet({ isOpen, onClose, avatarUrl, heading, monthLabels, confirmLabel, onConfirm, timezoneLabel, initialDate, minYear, maxYear, }: DatePickerSheetProps): import("react").JSX.Element;
|
|
27
|
+
export declare function DatePickerSheet({ isOpen, onClose, avatarUrl, heading, monthLabels, confirmLabel, onConfirm, timezoneLabel, initialDate, minYear, maxYear, minDate, maxDate, }: DatePickerSheetProps): import("react").JSX.Element;
|
|
@@ -19,5 +19,7 @@ export interface FAQSectionProps {
|
|
|
19
19
|
className?: string;
|
|
20
20
|
/** Left-aligned heading with the same accent bar as `BillDetails`'s title, instead of the default centered heading. */
|
|
21
21
|
showTitleAccent?: boolean;
|
|
22
|
+
/** Extra classes for the heading — e.g. `text-center` to restore the old centred title. */
|
|
23
|
+
titleClassName?: string;
|
|
22
24
|
}
|
|
23
25
|
export declare const FAQSection: React.FC<FAQSectionProps>;
|
|
@@ -32,7 +32,7 @@ export interface L2CardProps {
|
|
|
32
32
|
/** e.g. "2k people booked" — only rendered while expanded */
|
|
33
33
|
bookedLabel?: string;
|
|
34
34
|
title: string;
|
|
35
|
-
/**
|
|
35
|
+
/** Usecase/summary line shown directly below the title — only rendered while expanded */
|
|
36
36
|
description?: string;
|
|
37
37
|
/** Only rendered while expanded */
|
|
38
38
|
learnMoreLabel?: string;
|
|
@@ -51,4 +51,4 @@ export interface L2CardProps {
|
|
|
51
51
|
cta: ReactNode;
|
|
52
52
|
className?: string;
|
|
53
53
|
}
|
|
54
|
-
export declare function L2Card({ chipNumber, chipLabel, isAdded, onEditClick, editButtonAriaLabel, onExpandClick, expandButtonAriaLabel, imageUrl, imageAlt, imageComponent: ImageComponent, ratingLabel, bookedLabel, title, learnMoreLabel, onLearnMoreClick, learnMoreHref, dateLabel, locationLabel, priceInfoLabel, onPriceInfoClick, price, cta, className, }: L2CardProps): import("react").JSX.Element;
|
|
54
|
+
export declare function L2Card({ chipNumber, chipLabel, isAdded, onEditClick, editButtonAriaLabel, onExpandClick, expandButtonAriaLabel, imageUrl, imageAlt, imageComponent: ImageComponent, ratingLabel, bookedLabel, title, description, learnMoreLabel, onLearnMoreClick, learnMoreHref, dateLabel, locationLabel, priceInfoLabel, onPriceInfoClick, price, cta, className, }: L2CardProps): import("react").JSX.Element;
|
|
@@ -8,5 +8,6 @@ export interface VideoPlayerProps {
|
|
|
8
8
|
/** Enforced on both the outer container and the video/poster itself. */
|
|
9
9
|
width?: string | number;
|
|
10
10
|
height?: string | number;
|
|
11
|
+
autoPlay?: boolean;
|
|
11
12
|
}
|
|
12
13
|
export declare const VideoPlayer: React.ForwardRefExoticComponent<VideoPlayerProps & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
export { getOutcomeTranslation, OutcomeI18nProvider, OUTCOME_SUPPORTED_LOCALES, outcomeTranslations, useOutcomeI18n, } from './outcome-i18n';
|
|
2
|
+
export type { OutcomeLocale, OutcomeTranslationKey, OutcomeTranslations, } from './outcome-i18n';
|
|
3
|
+
export { OutcomeBillDetails, } from './components/OutcomeBillDetails/OutcomeBillDetails';
|
|
4
|
+
export type { OutcomeBillDetailsItem, OutcomeBillDetailsProps, } from './components/OutcomeBillDetails/OutcomeBillDetails';
|
|
5
|
+
export { OutcomeAncestorEditModal, } from './components/OutcomeAncestorEditModal/OutcomeAncestorEditModal';
|
|
6
|
+
export type { OutcomeAncestorEditModalProps, OutcomeAncestorPujaItem, } from './components/OutcomeAncestorEditModal/OutcomeAncestorEditModal';
|
|
7
|
+
export { OutcomeStickyCta, } from './components/OutcomeStickyCta/OutcomeStickyCta';
|
|
8
|
+
export type { OutcomeStickyCtaProps, } from './components/OutcomeStickyCta/OutcomeStickyCta';
|
|
9
|
+
export { OutcomeEmptyRituals, } from './components/OutcomeEmptyRituals/OutcomeEmptyRituals';
|
|
10
|
+
export { OnlinePujaTestimonial, } from './components/OnlinePujaTestimonial/OnlinePujaTestimonial';
|
|
11
|
+
export { WhySriMandir } from './components/WhySriMandir/WhySriMandir';
|
|
12
|
+
export { ProcessInvolved } from './components/ProcessInvolved/ProcessInvolved';
|
|
13
|
+
export { PujaDetailsCarouselHeader, } from './components/PujaDetails/PujaDetailsCarouselHeader';
|
|
14
|
+
export type { PujaDetailsCarouselHeaderProps, } from './components/PujaDetails/PujaDetailsCarouselHeader';
|
|
15
|
+
export { PujaBenefitsSection, } from './components/PujaDetails/PujaBenefitsSection';
|
|
16
|
+
export type { PujaBenefitData, PujaBenefitsSectionProps, } from './components/PujaDetails/PujaBenefitsSection';
|
|
17
|
+
export { TempleSignificanceSection, } from './components/PujaDetails/TempleSignificanceSection';
|
|
18
|
+
export type { TempleSignificanceSectionProps, } from './components/PujaDetails/TempleSignificanceSection';
|
|
19
|
+
export { DevoteesReviews } from './components/PujaDetails/DevoteesReviews';
|
|
20
|
+
export type { DevoteeReviewData, DevoteeReviewMedia, DevoteesReviewsProps, } from './components/PujaDetails/DevoteesReviews';
|
|
21
|
+
export { OUTCOME_TRUST_ITEMS } from './constants/outcome.constants';
|
|
22
|
+
export type { OutcomeTrustItemData, } from './constants/outcome.constants';
|
|
23
|
+
export { Button, buttonVariants } from './components/Button';
|
|
24
|
+
export type { ButtonProps } from './components/Button';
|
|
25
|
+
export { ConfinedBottomSheet } from './components/ConfinedBottomSheet';
|
|
26
|
+
export { TestimonialCard } from './components/TestimonialCard';
|
|
27
|
+
export type { TestimonialCardProps } from './components/TestimonialCard';
|
|
28
|
+
export { FAQSection } from './components/FAQSection';
|
|
29
|
+
export type { FAQSectionProps, FAQItem } from './components/FAQSection';
|
|
30
|
+
export { FAQAccordion } from './components/FAQAccordion';
|
|
31
|
+
export type { FAQAccordionProps, FAQAccordionItem } from './components/FAQAccordion';
|
|
32
|
+
export { VideoPlayer } from './components/VideoPlayer';
|
|
33
|
+
export type { VideoPlayerProps } from './components/VideoPlayer';
|
|
34
|
+
export { LanguageSwitcher } from './components/LanguageSwitcher';
|
|
35
|
+
export type { LanguageSwitcherProps, LanguageOption, } from './components/LanguageSwitcher';
|
|
36
|
+
export { TopBar } from './components/TopBar';
|
|
37
|
+
export type { TopBarProps } from './components/TopBar';
|
|
38
|
+
export { Chip } from './components/Chip';
|
|
39
|
+
export type { ChipProps } from './components/Chip';
|
|
40
|
+
export { StepProgressHeader } from './components/StepProgressHeader';
|
|
41
|
+
export type { StepProgressHeaderProps } from './components/StepProgressHeader';
|
|
42
|
+
export { AudioQuestionCard } from './components/AudioQuestionCard';
|
|
43
|
+
export type { AudioQuestionCardProps } from './components/AudioQuestionCard';
|
|
44
|
+
export { IconBadge } from './components/IconBadge';
|
|
45
|
+
export type { IconBadgeProps } from './components/IconBadge';
|
|
46
|
+
export { SelectorCard, SelectorCardEditableField, SelectorCardInfoRow, SelectorCardNote, SelectorCardPriceBadge, } from './components/SelectorCard';
|
|
47
|
+
export type { SelectorCardProps, SelectorCardEditableFieldProps, SelectorCardInfoRowProps, SelectorCardNoteProps, SelectorCardPriceBadgeProps, } from './components/SelectorCard';
|
|
48
|
+
export { QuantityStepper } from './components/QuantityStepper';
|
|
49
|
+
export type { QuantityStepperProps } from './components/QuantityStepper';
|
|
50
|
+
export { CartReviewItem, CartReviewMandapItem, CartReviewChangeButton, CartReviewAddedBadge, } from './components/CartReviewItem';
|
|
51
|
+
export type { CartReviewItemProps, CartReviewMandapItemProps, CartReviewChangeButtonProps, CartReviewAddedBadgeProps, } from './components/CartReviewItem';
|
|
52
|
+
export { ServiceOfferCard } from './components/ServiceOfferCard';
|
|
53
|
+
export type { ServiceOfferCardProps } from './components/ServiceOfferCard';
|
|
54
|
+
export { ServiceOfferSheet } from './components/ServiceOfferSheet';
|
|
55
|
+
export type { ServiceOfferSheetProps } from './components/ServiceOfferSheet';
|
|
56
|
+
export { PackageSelect } from './components/PackageSelect';
|
|
57
|
+
export type { PackageSelectProps, PackageSelectOption, } from './components/PackageSelect';
|
|
58
|
+
export { PACKAGE_SELECT_DEFAULT_COPY, getPackageSelectDefaultCopy, } from './components/PackageSelect';
|
|
59
|
+
export type { PackageSelectLocale, PackageSelectDefaultCopy, } from './components/PackageSelect';
|
|
60
|
+
export { TrustBadgesBar } from './components/TrustBadgesBar';
|
|
61
|
+
export type { TrustBadgesBarProps, TrustBadge, } from './components/TrustBadgesBar';
|
|
62
|
+
export { CheckoutBar } from './components/CheckoutBar';
|
|
63
|
+
export type { CheckoutBarProps } from './components/CheckoutBar';
|
|
64
|
+
export { CHECKOUT_BAR_DEFAULT_COPY, getCheckoutBarDefaultCopy, } from './components/CheckoutBar';
|
|
65
|
+
export type { CheckoutBarLocale, CheckoutBarDefaultCopy, } from './components/CheckoutBar';
|
|
66
|
+
export { BookingSummaryBanner } from './components/BookingSummaryBanner';
|
|
67
|
+
export type { BookingSummaryBannerProps, BookingSummaryBannerStats, } from './components/BookingSummaryBanner';
|
|
68
|
+
export { BOOKING_SUMMARY_BANNER_DEFAULT_COPY, getBookingSummaryBannerDefaultCopy, } from './components/BookingSummaryBanner';
|
|
69
|
+
export type { BookingSummaryBannerLocale, BookingSummaryBannerDefaultCopy, } from './components/BookingSummaryBanner';
|
|
70
|
+
export { BillDetails } from './components/BillDetails';
|
|
71
|
+
export type { BillDetailsProps, BillDetailsRow, } from './components/BillDetails';
|
|
72
|
+
export { CartView } from './components/CartView';
|
|
73
|
+
export type { CartViewProps, CartViewAddon, CartViewItem, CartViewLocale, } from './components/CartView';
|
|
74
|
+
export { TextField } from './components/TextField';
|
|
75
|
+
export type { TextFieldProps } from './components/TextField';
|
|
76
|
+
export { TithiPickerSheet } from './components/TithiPickerSheet';
|
|
77
|
+
export type { TithiPickerSheetProps } from './components/TithiPickerSheet';
|
|
78
|
+
export { DatePickerSheet } from './components/DatePickerSheet';
|
|
79
|
+
export type { DatePickerSheetProps, PickedDate, } from './components/DatePickerSheet';
|
|
80
|
+
export { PhoneNumberSheet } from './components/PhoneNumberSheet';
|
|
81
|
+
export type { PhoneNumberSheetProps } from './components/PhoneNumberSheet';
|
|
82
|
+
export { EmailSheet } from './components/EmailSheet';
|
|
83
|
+
export type { EmailSheetProps } from './components/EmailSheet';
|
|
84
|
+
export { TimeOfBirthPickerSheet } from './components/DatePickerSheet';
|
|
85
|
+
export type { TimeOfBirthPickerSheetProps, PickedTime } from './components/DatePickerSheet';
|
|
86
|
+
export { L2Card } from './components/L2Card';
|
|
87
|
+
export type { L2CardProps, L2CardImageProps } from './components/L2Card';
|
|
88
|
+
export { OutcomeButton, PlusIcon, CheckIcon } from './components/OutcomeButton';
|
|
89
|
+
export type { OutcomeButtonProps, OutcomeButtonVariant, IconProps, } from './components/OutcomeButton';
|
|
90
|
+
export { PujaDetailsForm, createEmptyPujaDetailsFormValues, } from './components/PujaDetailsForm';
|
|
91
|
+
export type { PujaDetailsFormProps, PujaDetailsFormValues, AncestorNameEntry, } from './components/PujaDetailsForm';
|
|
92
|
+
export { PUJA_DETAILS_FORM_DEFAULT_COPY, getPujaDetailsFormDefaultCopy, getKartaOrdinalLabel, } from './components/PujaDetailsForm';
|
|
93
|
+
export type { PujaDetailsFormLocale, PujaDetailsFormDefaultCopy, } from './components/PujaDetailsForm';
|
|
94
|
+
export { ConfirmPujaDetailsModal } from './components/ConfirmPujaDetailsModal';
|
|
95
|
+
export type { ConfirmPujaDetailsModalProps } from './components/ConfirmPujaDetailsModal';
|
|
96
|
+
export { CONFIRM_PUJA_DETAILS_MODAL_DEFAULT_COPY, getConfirmPujaDetailsModalDefaultCopy, } from './components/ConfirmPujaDetailsModal';
|
|
97
|
+
export type { ConfirmPujaDetailsModalLocale, ConfirmPujaDetailsModalDefaultCopy, } from './components/ConfirmPujaDetailsModal';
|
|
98
|
+
export { GotraInfoModal } from './components/GotraInfoModal';
|
|
99
|
+
export type { GotraInfoModalProps } from './components/GotraInfoModal';
|
|
100
|
+
export { GOTRA_INFO_MODAL_DEFAULT_COPY, getGotraInfoModalDefaultCopy, } from './components/GotraInfoModal';
|
|
101
|
+
export type { GotraInfoModalLocale, GotraInfoModalDefaultCopy, } from './components/GotraInfoModal';
|
|
102
|
+
export { OutcomeSummary } from './components/OutcomeSummary';
|
|
103
|
+
export type { OutcomeSummaryProps, OutcomeTrustItem, OutcomeTrustIconVariant, } from './components/OutcomeSummary';
|
|
104
|
+
export { AddAncestorSheet } from './components/AddAncestorSheet';
|
|
105
|
+
export type { AddAncestorSheetProps } from './components/AddAncestorSheet';
|
|
106
|
+
export { AncestorTab } from './components/AncestorTab';
|
|
107
|
+
export type { AncestorTabProps, AncestorTabState, } from './components/AncestorTab';
|
|
108
|
+
export { AncestorTabRow } from './components/AncestorTabRow';
|
|
109
|
+
export type { AncestorTabRowProps, AncestorTabRowEntry, } from './components/AncestorTabRow';
|
|
110
|
+
export { AvatarCardDialog } from './components/AvatarCardDialog';
|
|
111
|
+
export type { AvatarCardDialogProps } from './components/AvatarCardDialog';
|
|
112
|
+
export { parseIsoDate, formatIsoDate, getMonthLabels, formatDisplayDate, } from './utils/date.utils';
|
|
113
|
+
export { SarvaPitruCard } from './components/SarvaPitruCard';
|
|
114
|
+
export type { SarvaPitruCardProps } from './components/SarvaPitruCard';
|
|
115
|
+
export { SARVA_PITRU_CARD_DEFAULT_COPY, getSarvaPitruCardDefaultCopy, } from './components/SarvaPitruCard';
|
|
116
|
+
export type { SarvaPitruCardLocale, SarvaPitruCardDefaultCopy, } from './components/SarvaPitruCard';
|
|
117
|
+
export { cn } from '../../common/dist/common.js';
|
|
118
|
+
export { ALL_ANCESTORS_ID, ANCESTOR_OPTIONS, MALE_ANCESTOR_AVATAR_URL, FEMALE_ANCESTOR_AVATAR_URL, getAncestorAvatarUrl, } from './constants';
|
|
119
|
+
export { DEATH_TITHI_OPTIONS, TITHI_NAME_KEYS } from './constants';
|
|
120
|
+
export type { AncestorOptionData, DeathTithiMethod } from './types';
|
|
121
|
+
export type { OutcomeAncestorItem, OutcomeMandapArrangementData, OutcomePackageSelectOption, OutcomePackageSelectProps, OutcomeRitualData, } from './types/outcome.types';
|
|
122
|
+
export { mapPujaL2Response } from './utils/mapPujaL2Response';
|
|
123
|
+
export type { PujaL2DetailsSheetData, } from './utils/mapPujaL2Response';
|
|
124
|
+
export type { PujaL2Benefit, PujaL2BenefitsCard, PujaL2Card, PujaL2InfoMedia, PujaL2LocationDetailsCard, PujaL2Response, PujaL2ReviewUser, PujaL2StoreCard, PujaL2TempleDetails, PujaL2UserReviewsCard, } from './types/pujaL2.types';
|
|
125
|
+
export { EventHeader } from './components/EventHeader';
|
|
126
|
+
export type { EventHeaderProps } from './components/EventHeader';
|
|
127
|
+
export { HeroLogoBadge } from './components/HeroLogoBadge';
|
|
128
|
+
export type { HeroLogoBadgeProps } from './components/HeroLogoBadge';
|
|
129
|
+
export { DatesCard } from './components/DatesCard';
|
|
130
|
+
export type { DatesCardProps } from './components/DatesCard';
|
|
131
|
+
export { RitualProceedBar } from './components/RitualProceedBar';
|
|
132
|
+
export type { RitualProceedBarProps } from './components/RitualProceedBar';
|