@srimandir/make-your-own-ritual 0.30.6 → 0.30.8
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/ChadhavaSevaBottomSheet/ChadhavaSevaBottomSheet.d.ts +4 -0
- package/dist/i18n/translations.en.d.ts +1 -0
- package/dist/i18n/translations.hi.d.ts +1 -0
- package/dist/i18n/translations.kn.d.ts +1 -0
- package/dist/i18n/translations.te.d.ts +1 -0
- package/dist/make-your-own-ritual.js +568 -543
- package/dist/make-your-own-ritual.js.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +5 -5
|
@@ -5,5 +5,9 @@ export interface ChadhavaSevaBottomSheetProps {
|
|
|
5
5
|
imageUrl: string;
|
|
6
6
|
title: string;
|
|
7
7
|
description: string;
|
|
8
|
+
/** The individual resolved ancestor dates this add-on needs, e.g. "16/04/26 (Ekadashi), 18/04/26 (Trayodashi)" — same field the full `PujaDetailsCarouselHeader` sheet shows for a real ritual. Omitted when nothing's resolved yet. */
|
|
9
|
+
dateLabel?: string;
|
|
10
|
+
/** Omitted for most add-ons — donations/services aren't tied to a physical location the way a temple ritual is. */
|
|
11
|
+
locationLabel?: string;
|
|
8
12
|
}
|
|
9
13
|
export declare const ChadhavaSevaBottomSheet: React.FC<ChadhavaSevaBottomSheetProps>;
|