@srimandir/make-your-own-ritual 0.30.2 → 0.30.5

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.
@@ -11,5 +11,7 @@ export interface LandingPageProps {
11
11
  onCardImpression?: (ritual: PitruPakshRenderableRitual, position: number) => void;
12
12
  /** Fired when a card's checkbox is toggled, with its 1-based list position and the new selected state. */
13
13
  onCardToggle?: (ritual: PitruPakshRenderableRitual, position: number, willBeSelected: boolean) => void;
14
+ /** Called when the top bar's back button is clicked. */
15
+ onBackClick?: () => void;
14
16
  }
15
- export declare function LandingPage({ store, mutate, onProceed, onLocaleChange, onAboutRitualClick, onCardImpression, onCardToggle, }: LandingPageProps): import("react").JSX.Element;
17
+ export declare function LandingPage({ store, mutate, onProceed, onLocaleChange, onAboutRitualClick, onCardImpression, onCardToggle, onBackClick, }: LandingPageProps): import("react").JSX.Element;