@trafilea/afrodita-components 5.0.0-beta.218 → 5.0.0-beta.220
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 +15 -1
- package/build/index.esm.js +405 -376
- package/build/index.esm.js.map +1 -1
- package/build/index.js +405 -376
- package/build/index.js.map +1 -1
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -567,6 +567,8 @@ declare const Hours: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
|
567
567
|
|
|
568
568
|
declare const NewClock: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
569
569
|
|
|
570
|
+
declare const KlarnaLogo: ({ height, width }: IconProps) => JSX.Element;
|
|
571
|
+
|
|
570
572
|
declare const PDP_Clock: typeof Clock;
|
|
571
573
|
declare const PDP_FlagUSA: typeof FlagUSA;
|
|
572
574
|
declare const PDP_Minus: typeof Minus;
|
|
@@ -588,6 +590,7 @@ declare const PDP_Stars: typeof Stars;
|
|
|
588
590
|
declare const PDP_Moon: typeof Moon;
|
|
589
591
|
declare const PDP_Hours: typeof Hours;
|
|
590
592
|
declare const PDP_NewClock: typeof NewClock;
|
|
593
|
+
declare const PDP_KlarnaLogo: typeof KlarnaLogo;
|
|
591
594
|
declare namespace PDP {
|
|
592
595
|
export {
|
|
593
596
|
PDP_Clock as Clock,
|
|
@@ -612,6 +615,7 @@ declare namespace PDP {
|
|
|
612
615
|
PDP_Moon as Moon,
|
|
613
616
|
PDP_Hours as Hours,
|
|
614
617
|
PDP_NewClock as NewClock,
|
|
618
|
+
PDP_KlarnaLogo as KlarnaLogo,
|
|
615
619
|
};
|
|
616
620
|
}
|
|
617
621
|
|
|
@@ -2255,6 +2259,16 @@ interface ProductItemSmallMobileProps extends ProductItemProps {
|
|
|
2255
2259
|
position: string;
|
|
2256
2260
|
component: JSX.Element | JSX.Element[] | undefined;
|
|
2257
2261
|
};
|
|
2262
|
+
showBNPL?: boolean;
|
|
2263
|
+
isBNPL?: {
|
|
2264
|
+
installments: number;
|
|
2265
|
+
installmentPrice: string;
|
|
2266
|
+
iconFolder?: string;
|
|
2267
|
+
iconName: string;
|
|
2268
|
+
showLogo?: boolean;
|
|
2269
|
+
iconColor: string;
|
|
2270
|
+
fontSize: string;
|
|
2271
|
+
};
|
|
2258
2272
|
}
|
|
2259
2273
|
|
|
2260
2274
|
declare function withProductGrid<P extends ProductItemProps>(ProductItemComponent: React.FC<P>, data: ProductItemProps[]): {
|
|
@@ -2263,7 +2277,7 @@ declare function withProductGrid<P extends ProductItemProps>(ProductItemComponen
|
|
|
2263
2277
|
};
|
|
2264
2278
|
|
|
2265
2279
|
declare const Collection: {
|
|
2266
|
-
ProductItemMobile: ({ title, image, imageHover, price, rating, size, alignName, url, className, topTag, bottomTag, onClick, priceDisplayType, priceAtBottom, priceLoading, colorPicker, }: ProductItemSmallMobileProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
2280
|
+
ProductItemMobile: ({ title, image, imageHover, price, rating, size, alignName, url, className, topTag, bottomTag, onClick, priceDisplayType, priceAtBottom, priceLoading, colorPicker, showBNPL, isBNPL, }: ProductItemSmallMobileProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
2267
2281
|
withProductGrid: typeof withProductGrid;
|
|
2268
2282
|
};
|
|
2269
2283
|
|