@trafilea/afrodita-components 6.21.3 → 6.21.5

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/build/index.d.ts CHANGED
@@ -2737,6 +2737,7 @@ declare type ProductGalleryProps = {
2737
2737
  hasOverflowArrows?: boolean;
2738
2738
  withZoom?: boolean;
2739
2739
  hasToPreserveOrder?: boolean;
2740
+ isRatioSquare?: boolean;
2740
2741
  };
2741
2742
  declare const ProductGallery: React.FC<ProductGalleryProps>;
2742
2743
 
@@ -2928,6 +2929,7 @@ interface CouponProps {
2928
2929
  btnText?: string;
2929
2930
  couponCode?: string;
2930
2931
  offerLink?: string;
2932
+ onClickHandler?: () => void;
2931
2933
  }
2932
2934
  declare const CouponCard: FC<CouponProps>;
2933
2935
 
@@ -3559,6 +3561,7 @@ declare type TimerProps = Partial<TimeProps> & {
3559
3561
  showHours?: boolean;
3560
3562
  timerColor?: string;
3561
3563
  countdown?: number;
3564
+ template?: boolean;
3562
3565
  };
3563
3566
  declare const Timer: React.FC<TimerProps>;
3564
3567
 
@@ -3655,6 +3658,8 @@ declare type HurryUpProps = {
3655
3658
  textPosition?: 'left' | 'right' | 'center';
3656
3659
  clockPosition?: 'left' | 'right';
3657
3660
  countdown?: number;
3661
+ template?: boolean;
3662
+ hurryUpTextColor?: string;
3658
3663
  } & Partial<TimerProps>;
3659
3664
  declare const HurryUp: React__default.FC<HurryUpProps>;
3660
3665