@trafilea/afrodita-components 6.53.0 → 6.54.0
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 +8 -0
- package/build/index.esm.js +85 -76
- package/build/index.esm.js.map +1 -1
- package/build/index.js +85 -76
- package/build/index.js.map +1 -1
- package/package.json +1 -1
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 {
|