@srimandir/kundli-generator 5.30.21 → 5.30.23
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/SampleReportsSection.d.ts +0 -1
- package/dist/components/ThreeSkuPlanBottomSheet/QuestionInput.d.ts +1 -0
- package/dist/components/ThreeSkuPlanBottomSheet/ThreeSkuPlanBottomSheet.types.d.ts +3 -0
- package/dist/{criticalCss-BLid95lh.js → criticalCss-66i_WtMP.js} +760 -797
- package/dist/criticalCss-66i_WtMP.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/criticalCss-BLid95lh.js.map +0 -1
|
@@ -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
|
}
|
|
@@ -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
|
}
|