design-system-silkhaus 1.1.0 → 1.1.1-beta.promo-dialog.3
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/index.cjs +42 -42
- package/dist/index.d.ts +16 -0
- package/dist/index.js +6804 -6712
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -405,6 +405,22 @@ export declare interface PriceRangeSliderProps {
|
|
|
405
405
|
value?: [number | '', number | ''];
|
|
406
406
|
}
|
|
407
407
|
|
|
408
|
+
export declare const PromoDialog: default_2.ForwardRefExoticComponent<PromoDialogProps & default_2.RefAttributes<HTMLDivElement>>;
|
|
409
|
+
|
|
410
|
+
export declare interface PromoDialogProps {
|
|
411
|
+
bannerImageUrlDesktop?: string;
|
|
412
|
+
bannerImageUrlMobile?: string;
|
|
413
|
+
heading?: string;
|
|
414
|
+
discountText?: string;
|
|
415
|
+
desc?: string;
|
|
416
|
+
warningText?: string;
|
|
417
|
+
primaryBtnText?: string | ReactNode;
|
|
418
|
+
secondaryBtnText?: string | ReactNode;
|
|
419
|
+
onPrimaryBtnClick?: (email: string) => void;
|
|
420
|
+
onSecondaryBtnClick?: () => void;
|
|
421
|
+
onCloseButtonClick?: () => void;
|
|
422
|
+
}
|
|
423
|
+
|
|
408
424
|
export declare const QuestionMarkIcon: FC<{
|
|
409
425
|
className?: string;
|
|
410
426
|
}>;
|