@srimandir/make-your-own-ritual 0.30.0 → 0.32.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.
@@ -1,4 +1,3 @@
1
- import { PickedDate } from '../../../../pitru-paksh-common/dist/pitru-paksh-common.js';
2
1
  import { MakeYourOwnRitualDataState, RitualDataAction, TithiPreview, TithiValidity } from '../../types';
3
2
  /**
4
3
  * Interaction points this screen doesn't otherwise expose a callback for —
@@ -68,7 +67,5 @@ export interface DeathTithiProps {
68
67
  /** Checks whether a directly-picked tithi is still bookable. Never rejects — a failure resolves to undefined. */
69
68
  onValidateTithi?: (tithiKey: string, ancestorKey: string) => Promise<TithiValidity | undefined>;
70
69
  onInteraction?: (event: DeathTithiInteractionEvent) => void;
71
- /** Last selectable date on the death-date picker — the backend rejects a future date of passing, so the host caps the wheel here instead of only finding out after a resolve call fails. Defaults to the picker's own "today" cap. */
72
- maxDate?: PickedDate;
73
70
  }
74
- export declare function DeathTithi({ store, mutate, avatarUrl, audioSrc, onBackClick, onProceed, onResolveTithiForDate, onValidateTithi, onInteraction, maxDate, }: DeathTithiProps): import("react").JSX.Element;
71
+ export declare function DeathTithi({ store, mutate, avatarUrl, audioSrc, onBackClick, onProceed, onResolveTithiForDate, onValidateTithi, onInteraction, }: DeathTithiProps): import("react").JSX.Element;