@srimandir/kundli-generator 5.30.0 → 5.30.2
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/{analytics-DCkm-Koi.js → analytics-Deq0Kl4U.js} +341 -348
- package/dist/{analytics-DCkm-Koi.js.map → analytics-Deq0Kl4U.js.map} +1 -1
- package/dist/components/KundliForm/sections/UserInfoFormSection/useGooglePlacesAutocomplete.d.ts +5 -5
- package/dist/components/KundliPage/KundliPageVariant.d.ts +5 -0
- package/dist/components/KundliPlanBottomSheet/AstrologerDetails.d.ts +9 -12
- package/dist/components/ThreeSkuPlanBottomSheet/ThreeSkuAstrologerCard.d.ts +6 -0
- package/dist/components/ThreeSkuPlanBottomSheet/ThreeSkuAstrologerProfiles.d.ts +22 -0
- package/dist/criticalCss-lKR-u5PY.js +1974 -0
- package/dist/criticalCss-lKR-u5PY.js.map +1 -0
- package/dist/form-entry.js +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/kundli-generator.js +15 -14
- package/dist/page-entry.js +2 -2
- package/dist/style.css +1 -1
- package/package.json +2 -2
- package/dist/criticalCss-R8hQ5IOD.js +0 -1192
- package/dist/criticalCss-R8hQ5IOD.js.map +0 -1
package/dist/components/KundliForm/sections/UserInfoFormSection/useGooglePlacesAutocomplete.d.ts
CHANGED
|
@@ -22,9 +22,9 @@ export declare const useGooglePlacesAutocomplete: (params: {
|
|
|
22
22
|
searchLocalities?: AtlasSearchLocalities;
|
|
23
23
|
restrictCountry?: string;
|
|
24
24
|
}) => {
|
|
25
|
-
predictions:
|
|
26
|
-
isSearching:
|
|
27
|
-
loadError:
|
|
28
|
-
searchPlaces:
|
|
29
|
-
clearPredictions:
|
|
25
|
+
predictions: PlacePrediction[];
|
|
26
|
+
isSearching: boolean;
|
|
27
|
+
loadError: string | null;
|
|
28
|
+
searchPlaces: (query: string) => Promise<void>;
|
|
29
|
+
clearPredictions: () => void;
|
|
30
30
|
};
|
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
import { KundliPageProps as BaseKundliPageProps } from './KundliPage';
|
|
2
2
|
export type KundliPageProps = BaseKundliPageProps & {
|
|
3
3
|
variant?: "v1";
|
|
4
|
+
/**
|
|
5
|
+
* When provided, renders the isolated 3-SKU experiment page.
|
|
6
|
+
* Use this as an AB-toggle prop from host apps.
|
|
7
|
+
*/
|
|
8
|
+
threeSkuExperimentKey?: string;
|
|
4
9
|
};
|
|
5
10
|
export declare const KundliPage: React.FC<KundliPageProps>;
|
|
@@ -1,22 +1,19 @@
|
|
|
1
1
|
export declare const ASTROLOGERS: readonly [{
|
|
2
2
|
readonly id: "jyoti";
|
|
3
|
-
readonly name: "
|
|
3
|
+
readonly name: "planAstrologerNameJyoti";
|
|
4
4
|
readonly imageUrl: "https://srm-cdn.a4b.io/yoda/1773992823100.webp";
|
|
5
|
-
readonly experience: "
|
|
6
|
-
readonly
|
|
7
|
-
readonly certifications: readonly ["25+ Years Vedic Astrology", "Result-Oriented Spiritual Guidance"];
|
|
5
|
+
readonly experience: "planAstrologerExpJyoti";
|
|
6
|
+
readonly certifications: readonly ["planAstrologerCertCertifiedJyotish", "planAstrologerCertAccurateSolutions"];
|
|
8
7
|
}, {
|
|
9
8
|
readonly id: "samiksha";
|
|
10
|
-
readonly name: "
|
|
9
|
+
readonly name: "planAstrologerNameSamiksha";
|
|
11
10
|
readonly imageUrl: "https://srm-cdn.a4b.io/yoda/1773992841106.webp";
|
|
12
|
-
readonly experience: "
|
|
13
|
-
readonly
|
|
14
|
-
readonly certifications: readonly ["Certified Jyotish Acharya", "Guaranteed accurate solutions"];
|
|
11
|
+
readonly experience: "planAstrologerExpSamiksha";
|
|
12
|
+
readonly certifications: readonly ["planAstrologerCertVedicAstrology", "planAstrologerCertResultOriented"];
|
|
15
13
|
}, {
|
|
16
14
|
readonly id: "neeraj";
|
|
17
|
-
readonly name: "
|
|
15
|
+
readonly name: "planAstrologerNameNeeraj";
|
|
18
16
|
readonly imageUrl: "https://srm-cdn.a4b.io/yoda/1773992858276.webp";
|
|
19
|
-
readonly experience: "
|
|
20
|
-
readonly
|
|
21
|
-
readonly certifications: readonly ["BHU Certified Vedic Astrologer", "Mantra & Rudraksha Specialist"];
|
|
17
|
+
readonly experience: "planAstrologerExpNeeraj";
|
|
18
|
+
readonly certifications: readonly ["planAstrologerCertBhuCertified", "planAstrologerCertMantraRudraksha"];
|
|
22
19
|
}];
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { KundliPlanAstrologer } from '../KundliPlanBottomSheet/types';
|
|
2
|
+
export interface ThreeSkuAstrologerCardProps {
|
|
3
|
+
astrologer: KundliPlanAstrologer;
|
|
4
|
+
t?: (key: string, options?: any) => string;
|
|
5
|
+
}
|
|
6
|
+
export declare const ThreeSkuAstrologerCard: React.FC<ThreeSkuAstrologerCardProps>;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
export declare const THREE_SKU_ASTROLOGERS: readonly [{
|
|
2
|
+
readonly id: "jyoti";
|
|
3
|
+
readonly name: "Astro Sadhana";
|
|
4
|
+
readonly imageUrl: "https://srm-cdn.a4b.io/yoda/1773992823100.webp";
|
|
5
|
+
readonly experience: "21+ Years of experience";
|
|
6
|
+
readonly languages: readonly ["Hindi", "English", "Telugu"];
|
|
7
|
+
readonly certifications: readonly ["25+ Years Vedic Astrology", "Result-Oriented Spiritual Guidance"];
|
|
8
|
+
}, {
|
|
9
|
+
readonly id: "samiksha";
|
|
10
|
+
readonly name: "Astro Samiksha";
|
|
11
|
+
readonly imageUrl: "https://srm-cdn.a4b.io/yoda/1773992841106.webp";
|
|
12
|
+
readonly experience: "21+ Years of experience";
|
|
13
|
+
readonly languages: readonly ["Hindi", "English", "Telugu"];
|
|
14
|
+
readonly certifications: readonly ["Certified Jyotish Acharya", "Guaranteed accurate solutions"];
|
|
15
|
+
}, {
|
|
16
|
+
readonly id: "neeraj";
|
|
17
|
+
readonly name: "Astro Neeraj";
|
|
18
|
+
readonly imageUrl: "https://srm-cdn.a4b.io/yoda/1773992858276.webp";
|
|
19
|
+
readonly experience: "18+ Years of experience";
|
|
20
|
+
readonly languages: readonly ["Hindi", "English", "Telugu"];
|
|
21
|
+
readonly certifications: readonly ["BHU Certified Vedic Astrologer", "Mantra & Rudraksha Specialist"];
|
|
22
|
+
}];
|