@srimandir/kundli-generator 5.30.17 → 5.30.18
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/KundliPage/sections/KundliTableSection/KundliTableSection.constants.d.ts +28 -14
- package/dist/components/KundliPage/sections/KundliTableSection/KundliTableSection.d.ts +4 -0
- package/dist/components/KundliPage/sections/KundliTableSection/PackagesTableBody.d.ts +3 -0
- package/dist/components/KundliPage/sections/KundliTableSection/PackagesTableHeader.d.ts +7 -1
- package/dist/components/KundliPage/sections/KundliTableSection/SampleReportsSection.d.ts +5 -0
- package/dist/components/ThreeSkuPlanBottomSheet/ThreeSkuAstrologerProfiles.d.ts +5 -5
- package/dist/components/ThreeSkuPlanBottomSheet/constants.d.ts +2 -2
- package/dist/{criticalCss-AJzC8_GT.js → criticalCss-DhNtb9iY.js} +644 -590
- package/dist/criticalCss-DhNtb9iY.js.map +1 -0
- package/dist/kundli-generator.js +1 -1
- package/dist/page-entry.js +1 -1
- package/package.json +2 -2
- package/dist/criticalCss-AJzC8_GT.js.map +0 -1
package/dist/components/KundliPage/sections/KundliTableSection/KundliTableSection.constants.d.ts
CHANGED
|
@@ -1,19 +1,33 @@
|
|
|
1
1
|
export declare const DEFAULT_SAMPLE_URL = "https://srm-cdn.a4b.io/yoda/1773317492292.pdf";
|
|
2
2
|
export declare const DEFAULT_ONE_QUESTION_SAMPLE_URL = "https://srm-cdn.a4b.io/yoda/1781248337750.pdf";
|
|
3
|
-
export
|
|
4
|
-
export declare const
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
3
|
+
export type TableLocale = "en" | "hi";
|
|
4
|
+
export declare const TABLE_STRINGS: Record<TableLocale, {
|
|
5
|
+
sectionTitle: string;
|
|
6
|
+
sampleReportsTitle: string;
|
|
7
|
+
onlyFor: string;
|
|
8
|
+
uniqueFeatures: string;
|
|
9
|
+
popularBadge: string;
|
|
10
|
+
columnKundliReport: string;
|
|
11
|
+
columnReportPlusQuestion: string;
|
|
12
|
+
columnReportPlusQuestionSubtext: string;
|
|
13
|
+
columnReportPlusConsultation: string;
|
|
14
|
+
sampleLabelKundliReport: string;
|
|
15
|
+
sampleLabelOneQuestion: string;
|
|
16
|
+
rowLabels: [string, string, string, string, string];
|
|
17
|
+
}>;
|
|
18
|
+
export declare const getTableStrings: (locale: TableLocale) => {
|
|
19
|
+
sectionTitle: string;
|
|
20
|
+
sampleReportsTitle: string;
|
|
21
|
+
onlyFor: string;
|
|
22
|
+
uniqueFeatures: string;
|
|
23
|
+
popularBadge: string;
|
|
24
|
+
columnKundliReport: string;
|
|
25
|
+
columnReportPlusQuestion: string;
|
|
26
|
+
columnReportPlusQuestionSubtext: string;
|
|
27
|
+
columnReportPlusConsultation: string;
|
|
28
|
+
sampleLabelKundliReport: string;
|
|
29
|
+
sampleLabelOneQuestion: string;
|
|
30
|
+
rowLabels: [string, string, string, string, string];
|
|
17
31
|
};
|
|
18
32
|
export declare const PRICES: {
|
|
19
33
|
readonly global: [string, string, string];
|
|
@@ -1,7 +1,11 @@
|
|
|
1
|
+
import { TableLocale } from './KundliTableSection.constants';
|
|
2
|
+
import { KundliAnalytics } from '../../../../analytics';
|
|
1
3
|
export interface KundliPackagesSectionProps {
|
|
2
4
|
isGlobal?: boolean;
|
|
5
|
+
locale?: TableLocale;
|
|
3
6
|
kundliReportSampleHref?: string;
|
|
4
7
|
oneQuestionSampleHref?: string;
|
|
8
|
+
analytics?: KundliAnalytics;
|
|
5
9
|
className?: string;
|
|
6
10
|
}
|
|
7
11
|
export declare const KundliPackagesSection: React.FC<KundliPackagesSectionProps>;
|
|
@@ -1,5 +1,8 @@
|
|
|
1
|
+
import { TABLE_STRINGS } from './KundliTableSection.constants';
|
|
2
|
+
type TableStrings = typeof TABLE_STRINGS["en"];
|
|
1
3
|
interface PackagesTableBodyProps {
|
|
2
4
|
prices: [string, string, string];
|
|
5
|
+
s: TableStrings;
|
|
3
6
|
}
|
|
4
7
|
export declare const PackagesTableBody: React.FC<PackagesTableBodyProps>;
|
|
5
8
|
export {};
|
|
@@ -1 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
import { TABLE_STRINGS } from './KundliTableSection.constants';
|
|
2
|
+
type TableStrings = typeof TABLE_STRINGS["en"];
|
|
3
|
+
interface PackagesTableHeaderProps {
|
|
4
|
+
s: TableStrings;
|
|
5
|
+
}
|
|
6
|
+
export declare const PackagesTableHeader: React.FC<PackagesTableHeaderProps>;
|
|
7
|
+
export {};
|
|
@@ -1,6 +1,11 @@
|
|
|
1
|
+
import { KundliAnalytics } from '../../../../analytics';
|
|
2
|
+
import { TABLE_STRINGS } from './KundliTableSection.constants';
|
|
3
|
+
type TableStrings = typeof TABLE_STRINGS["en"];
|
|
1
4
|
interface SampleReportsSectionProps {
|
|
2
5
|
kundliReportSampleHref: string;
|
|
3
6
|
oneQuestionSampleHref: string;
|
|
7
|
+
analytics?: KundliAnalytics;
|
|
8
|
+
s: TableStrings;
|
|
4
9
|
}
|
|
5
10
|
export declare const SampleReportsSection: React.FC<SampleReportsSectionProps>;
|
|
6
11
|
export {};
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
export declare const THREE_SKU_ASTROLOGERS: readonly [{
|
|
2
2
|
readonly id: "samiksha";
|
|
3
|
-
readonly name: "
|
|
4
|
-
readonly imageUrl: "https://srm-cdn.a4b.io/yoda/
|
|
3
|
+
readonly name: "Acharya Rama Sarma";
|
|
4
|
+
readonly imageUrl: "https://srm-cdn.a4b.io/yoda/1781527417602.webp";
|
|
5
5
|
readonly experience: "21+ Years of experience";
|
|
6
6
|
readonly languages: readonly ["Hindi", "English", "Telugu"];
|
|
7
7
|
readonly certifications: readonly ["Certified Jyotish Acharya", "Guaranteed accurate solutions"];
|
|
8
8
|
}, {
|
|
9
9
|
readonly id: "jyoti";
|
|
10
|
-
readonly name: "Astro
|
|
11
|
-
readonly imageUrl: "https://srm-cdn.a4b.io/yoda/
|
|
10
|
+
readonly name: "Astro Neeraj";
|
|
11
|
+
readonly imageUrl: "https://srm-cdn.a4b.io/yoda/1781527490353.webp";
|
|
12
12
|
readonly experience: "21+ Years of experience";
|
|
13
|
-
readonly languages: readonly ["Hindi", "English"
|
|
13
|
+
readonly languages: readonly ["Hindi", "English"];
|
|
14
14
|
readonly certifications: readonly ["25+ Years Vedic Astrology", "Result-Oriented Spiritual Guidance"];
|
|
15
15
|
}];
|
|
@@ -80,8 +80,8 @@ export declare const getThreeSkuDefaultPlans: (isGlobal: boolean) => ThreeSkuPla
|
|
|
80
80
|
export declare const CHIP_KEYS: readonly ["planQuestionChip1", "planQuestionChip2", "planQuestionChip3", "planQuestionChip4"];
|
|
81
81
|
export declare const TOP_ASTROLOGER_AVATARS: {
|
|
82
82
|
id: "jyoti" | "samiksha";
|
|
83
|
-
imageUrl: "https://srm-cdn.a4b.io/yoda/
|
|
84
|
-
name: "
|
|
83
|
+
imageUrl: "https://srm-cdn.a4b.io/yoda/1781527417602.webp" | "https://srm-cdn.a4b.io/yoda/1781527490353.webp";
|
|
84
|
+
name: "Acharya Rama Sarma" | "Astro Neeraj";
|
|
85
85
|
}[];
|
|
86
86
|
export declare const MAX_QUESTION_LENGTH = 5000;
|
|
87
87
|
export declare const MAX_TEXTAREA_HEIGHT_PX = 84;
|