@srimandir/daily-live-puja 1.4.1 → 1.4.3
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/LoggedOutSections/DevoteesSaySection.d.ts +2 -0
- package/dist/components/LoggedOutSections/HighlightsStripSection.d.ts +2 -0
- package/dist/components/LoggedOutSections/LoggedOutSections.d.ts +2 -0
- package/dist/components/LoggedOutSections/WhatYouGetSection.d.ts +2 -0
- package/dist/components/LoggedOutSections/index.d.ts +1 -0
- package/dist/components/VideoPage/VideoPage.d.ts +2 -0
- package/dist/constants/index.d.ts +2 -0
- package/dist/constants/loggedOutSections.constants.d.ts +22 -0
- package/dist/daily-live-puja.js +1283 -1138
- package/dist/daily-live-puja.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/style.css +1 -1
- package/package.json +3 -3
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { LoggedOutSections } from './LoggedOutSections';
|
|
@@ -19,6 +19,8 @@ interface VideoPageProps {
|
|
|
19
19
|
attendedDays?: number[];
|
|
20
20
|
/** Current day in the 7-day journey (1-indexed). */
|
|
21
21
|
currentDay?: number;
|
|
22
|
+
/** Controls logged-in vs logged-out sections below video. */
|
|
23
|
+
isLoggedIn?: boolean;
|
|
22
24
|
/** Called when a store card is tapped. */
|
|
23
25
|
onStoreCardClick?: (card: StoreCard) => void;
|
|
24
26
|
/** Host app API client (same instance pattern as web app pages). */
|
|
@@ -3,3 +3,5 @@ export type { ExpectationItem } from './expectations';
|
|
|
3
3
|
export { ISD_COUNTRY_OPTIONS } from './countrycode';
|
|
4
4
|
export { SHARE_TITLE, SHARE_SUBTITLE, SHARE_CTA_LABEL, STREAK_SECTION_TITLE, STREAK_ATTENDED_ICON_URL, STREAK_FOOTER, STORE_SECTION_TITLE, STORE_SECTION_ARIA_LABEL, SUBSCRIPTION_BADGE, SUBSCRIPTION_TITLE, SUBSCRIPTION_SUBTITLE, SUBSCRIPTION_FEATURE_1, SUBSCRIPTION_FEATURE_2, SUBSCRIPTION_OM_IMAGE_URL, SUBSCRIPTION_PRICE_PERIOD, SUBSCRIPTION_CTA_LABEL, SUBSCRIPTION_FOOTER_NOTE, } from './dlp.constants';
|
|
5
5
|
export { BLOG_ADMIN_HOSTS, DEMO_STORE_CARDS, DLP_QUERY_STRING, FALLBACK_OFFERINGS, FALLBACK_PUJA_CARD, STREAM_STATUS_INITIAL_RECHECK_DELAY_MS, STREAM_STATUS_NON_LIVE_CONFIRMATION_DELAY_MS, STREAM_STATUS_POLL_INTERVAL_MS, YT_STATUS_PROBE_PLAYER_VARS, } from './videoPage.constants';
|
|
6
|
+
export { LOGGED_OUT_HIGHLIGHTS, LOGGED_OUT_BENEFITS, LOGGED_OUT_TESTIMONIALS, } from './loggedOutSections.constants';
|
|
7
|
+
export type { LoggedOutHighlightItem, LoggedOutBenefitItem, LoggedOutTestimonialItem, } from './loggedOutSections.constants';
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
export interface LoggedOutHighlightItem {
|
|
2
|
+
id: string;
|
|
3
|
+
label: string;
|
|
4
|
+
}
|
|
5
|
+
export interface LoggedOutBenefitItem {
|
|
6
|
+
id: string;
|
|
7
|
+
iconUrl: string;
|
|
8
|
+
title: string;
|
|
9
|
+
description: string;
|
|
10
|
+
}
|
|
11
|
+
export interface LoggedOutTestimonialItem {
|
|
12
|
+
id: string;
|
|
13
|
+
name: string;
|
|
14
|
+
location: string;
|
|
15
|
+
initial: string;
|
|
16
|
+
rating: number;
|
|
17
|
+
quote: string;
|
|
18
|
+
ctaLabel: string;
|
|
19
|
+
}
|
|
20
|
+
export declare const LOGGED_OUT_HIGHLIGHTS: LoggedOutHighlightItem[];
|
|
21
|
+
export declare const LOGGED_OUT_BENEFITS: LoggedOutBenefitItem[];
|
|
22
|
+
export declare const LOGGED_OUT_TESTIMONIALS: LoggedOutTestimonialItem[];
|