@srimandir/kundli-generator 5.30.20 → 5.30.22
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 +0 -12
- package/dist/components/KundliPage/sections/KundliTableSection/SampleReportsSection.d.ts +0 -1
- package/dist/components/KundliPage/sections/KundliTableSection/index.d.ts +3 -2
- package/dist/components/ThreeSkuPlanBottomSheet/QuestionInput.d.ts +1 -0
- package/dist/components/ThreeSkuPlanBottomSheet/ThreeSkuPlanBottomSheet.types.d.ts +3 -0
- package/dist/criticalCss-gcaPLPsl.js +1921 -0
- package/dist/criticalCss-gcaPLPsl.js.map +1 -0
- package/dist/kundli-generator.js +1 -1
- package/dist/page-entry.js +1 -1
- package/dist/style.css +1 -1
- package/package.json +2 -2
- package/dist/components/KundliPage/sections/KundliTableSection/KundliTableSection.d.ts +0 -11
- package/dist/components/KundliPage/sections/KundliTableSection/PackagesTableBody.d.ts +0 -8
- package/dist/components/KundliPage/sections/KundliTableSection/PackagesTableHeader.d.ts +0 -7
- package/dist/criticalCss-DqEEk4yI.js +0 -2017
- package/dist/criticalCss-DqEEk4yI.js.map +0 -1
package/dist/components/KundliPage/sections/KundliTableSection/KundliTableSection.constants.d.ts
CHANGED
|
@@ -29,16 +29,4 @@ export declare const getTableStrings: (locale: TableLocale) => {
|
|
|
29
29
|
sampleLabelOneQuestion: string;
|
|
30
30
|
rowLabels: [string, string, string, string, string];
|
|
31
31
|
};
|
|
32
|
-
export declare const PRICES: {
|
|
33
|
-
readonly global: [string, string, string];
|
|
34
|
-
readonly domestic: [string, string, string];
|
|
35
|
-
};
|
|
36
|
-
export type Cell = "check" | "cross";
|
|
37
|
-
export declare const rows: Array<{
|
|
38
|
-
label: string;
|
|
39
|
-
values: [Cell, Cell, Cell];
|
|
40
|
-
}>;
|
|
41
|
-
export declare const CheckIcon: () => JSX.Element;
|
|
42
|
-
export declare const CrossIcon: () => JSX.Element;
|
|
43
|
-
export declare const TrendUpIcon: () => JSX.Element;
|
|
44
32
|
export declare const SampleReportArrowIcon: () => JSX.Element;
|
|
@@ -3,7 +3,6 @@ import { TABLE_STRINGS } from './KundliTableSection.constants';
|
|
|
3
3
|
type TableStrings = typeof TABLE_STRINGS["en"];
|
|
4
4
|
interface SampleReportsSectionProps {
|
|
5
5
|
kundliReportSampleHref: string;
|
|
6
|
-
oneQuestionSampleHref: string;
|
|
7
6
|
analytics?: KundliAnalytics;
|
|
8
7
|
s: TableStrings;
|
|
9
8
|
}
|
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
export {
|
|
2
|
-
export
|
|
1
|
+
export { SampleReportsSection } from './SampleReportsSection';
|
|
2
|
+
export { DEFAULT_SAMPLE_URL, DEFAULT_ONE_QUESTION_SAMPLE_URL, getTableStrings } from './KundliTableSection.constants';
|
|
3
|
+
export type { TableLocale } from './KundliTableSection.constants';
|
|
@@ -9,6 +9,7 @@ interface QuestionInputProps {
|
|
|
9
9
|
onClick: () => void;
|
|
10
10
|
onChange: (e: React.ChangeEvent<HTMLTextAreaElement>) => void;
|
|
11
11
|
onChipClick: (key: string, idx: number) => void;
|
|
12
|
+
onViewSample?: () => void;
|
|
12
13
|
}
|
|
13
14
|
export declare const QuestionInput: React.FC<QuestionInputProps>;
|
|
14
15
|
export {};
|
|
@@ -31,6 +31,7 @@ export interface ThreeSkuAnalytics {
|
|
|
31
31
|
previous_chip_index: number | null;
|
|
32
32
|
user_had_custom_text: boolean;
|
|
33
33
|
}): void;
|
|
34
|
+
trackOneQuestionViewSampleReportClicked?(): void;
|
|
34
35
|
}
|
|
35
36
|
export interface ThreeSkuPlanBottomSheetProps {
|
|
36
37
|
isOpen: boolean;
|
|
@@ -45,4 +46,6 @@ export interface ThreeSkuPlanBottomSheetProps {
|
|
|
45
46
|
locale?: ThreeSkuLocale;
|
|
46
47
|
t?: (key: string) => string;
|
|
47
48
|
analytics?: ThreeSkuAnalytics;
|
|
49
|
+
/** URL for the "1 Question" sample answer PDF shown inside the sheet. */
|
|
50
|
+
oneQuestionSampleHref?: string;
|
|
48
51
|
}
|