design-system-silkhaus 2.1.0-beta.travel-list.18 → 2.2.0-beta.travel-list.1

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.d.ts CHANGED
@@ -128,6 +128,7 @@ export declare interface ButtonProps extends default_2.ButtonHTMLAttributes<HTML
128
128
  disabled?: true | false;
129
129
  startIcon?: default_2.ReactNode;
130
130
  endIcon?: default_2.ReactNode;
131
+ trackingId?: string;
131
132
  selected?: boolean;
132
133
  }
133
134
 
@@ -477,6 +478,28 @@ export declare interface PriceRangeSliderProps {
477
478
  value?: [number | '', number | ''];
478
479
  }
479
480
 
481
+ export declare const PromoDialog: default_2.ForwardRefExoticComponent<PromoDialogProps & default_2.RefAttributes<HTMLDivElement>>;
482
+
483
+ export declare interface PromoDialogProps {
484
+ bannerImageUrlDesktop?: string;
485
+ bannerImageUrlMobile?: string;
486
+ heading?: string;
487
+ discountText?: string;
488
+ desc?: string;
489
+ warningText?: string;
490
+ primaryBtnText?: string | ReactNode;
491
+ secondaryBtnText?: string | ReactNode;
492
+ onPrimaryBtnClick?: (email: string) => void;
493
+ onSecondaryBtnClick?: () => void;
494
+ onCloseButtonClick?: () => void;
495
+ showRecaptchaBranding?: boolean;
496
+ primatyBtnTrackingId?: string;
497
+ secondaryBtnTrackingId?: string;
498
+ closeBtnTrackingId?: string;
499
+ className?: string;
500
+ open?: boolean;
501
+ }
502
+
480
503
  export declare const QuestionMarkIcon: FC<{
481
504
  className?: string;
482
505
  }>;