@trafilea/afrodita-components 6.53.0 → 6.54.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/build/index.d.ts CHANGED
@@ -1464,6 +1464,13 @@ declare type BeforeAfterCardProps = {
1464
1464
  };
1465
1465
  declare const BeforeAfterCard: react__default.FC<BeforeAfterCardProps>;
1466
1466
 
1467
+ interface MotivatorProps {
1468
+ backgroundColor?: string;
1469
+ borderColor?: string;
1470
+ content: ReactNode;
1471
+ testId?: string;
1472
+ }
1473
+
1467
1474
  interface SimpleProps {
1468
1475
  title: string;
1469
1476
  freeShippingText: string;
@@ -1491,6 +1498,7 @@ interface MinimalisticProps {
1491
1498
  declare const Bundle: {
1492
1499
  Minimalistic: ({ backgroundColor, borderColor, originalPrice, price, savingPrice, getMorePayLessText, youAreSavingText, getQtyForText, discount, offText, widthAuto, testId, }: MinimalisticProps) => JSX.Element;
1493
1500
  Simple: ({ title, freeShippingText, price, anyQtyForText, backgroundColor, widthAuto, }: SimpleProps) => JSX.Element;
1501
+ Motivator: ({ backgroundColor, borderColor, content, testId, }: MotivatorProps) => JSX.Element;
1494
1502
  };
1495
1503
 
1496
1504
  interface BuyNowPayLaterProps {
@@ -2480,6 +2488,7 @@ interface ProductItemSmallMobileProps$1 extends ProductItemProps {
2480
2488
  priceLoading?: boolean;
2481
2489
  noFollow?: boolean;
2482
2490
  colorPicker?: {
2491
+ shouldStopCardClick?: boolean;
2483
2492
  display: boolean;
2484
2493
  position: string;
2485
2494
  component: JSX.Element | JSX.Element[] | undefined;