@srimandir/kundli-generator 5.30.2 → 5.30.4
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-Deq0Kl4U.js → analytics-DL-R30Zw.js} +9 -9
- package/dist/{analytics-Deq0Kl4U.js.map → analytics-DL-R30Zw.js.map} +1 -1
- package/dist/components/KundliPage/KundliPageVariant.d.ts +0 -5
- package/dist/components/KundliThreeSkuPage/KundliThreeSkuPage.d.ts +2 -0
- package/dist/criticalCss-fMFN3vjg.js +1201 -0
- package/dist/criticalCss-fMFN3vjg.js.map +1 -0
- package/dist/form-entry.js +1 -1
- package/dist/kundli-generator.js +874 -25
- package/dist/kundli-generator.js.map +1 -1
- package/dist/page-entry.js +2 -2
- package/dist/style.css +1 -1
- package/package.json +2 -2
- package/dist/criticalCss-lKR-u5PY.js +0 -1974
- package/dist/criticalCss-lKR-u5PY.js.map +0 -1
|
@@ -1,10 +1,5 @@
|
|
|
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;
|
|
9
4
|
};
|
|
10
5
|
export declare const KundliPage: React.FC<KundliPageProps>;
|
|
@@ -34,5 +34,7 @@ export interface KundliThreeSkuPageProps {
|
|
|
34
34
|
onLocaleChange?: (locale: SupportedLocale) => void;
|
|
35
35
|
/** Atlas localities search callback for birth place autocomplete */
|
|
36
36
|
atlasSearchLocalities?: AtlasSearchLocalities;
|
|
37
|
+
/** Show language dropdown in header. Default true. */
|
|
38
|
+
showLanguageSelector?: boolean;
|
|
37
39
|
}
|
|
38
40
|
export declare const KundliThreeSkuPage: React.FC<KundliThreeSkuPageProps>;
|