@trafilea/afrodita-components 6.4.4 → 6.4.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 +3 -1
- package/build/index.esm.js +85 -83
- package/build/index.esm.js.map +1 -1
- package/build/index.js +85 -83
- package/build/index.js.map +1 -1
- package/build/theme/revel.theme.js +1 -1
- package/build/theme/shapermint.theme.js +1 -1
- package/build/theme/thespadr.theme.js +1 -1
- package/build/theme/truekind.theme.js +1 -1
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -1076,6 +1076,7 @@ declare type AutoshipProps = {
|
|
|
1076
1076
|
discountedPrice: number;
|
|
1077
1077
|
}) => void;
|
|
1078
1078
|
className?: string;
|
|
1079
|
+
closeIcon?: boolean;
|
|
1079
1080
|
};
|
|
1080
1081
|
declare const Autoship: React.FC<AutoshipProps>;
|
|
1081
1082
|
|
|
@@ -2058,10 +2059,11 @@ interface RatingProps {
|
|
|
2058
2059
|
reviews?: number;
|
|
2059
2060
|
reviewsText?: string;
|
|
2060
2061
|
wrapWithParenthesis?: boolean;
|
|
2062
|
+
showRatingText?: boolean;
|
|
2061
2063
|
underline?: boolean;
|
|
2062
2064
|
reviewsContainerId?: string;
|
|
2063
2065
|
}
|
|
2064
|
-
declare const Rating: ({ size, reviews, reviewsText, rating, wrapWithParenthesis, underline, reviewsContainerId, }: RatingProps) => JSX.Element;
|
|
2066
|
+
declare const Rating: ({ size, reviews, reviewsText, rating, showRatingText, wrapWithParenthesis, underline, reviewsContainerId, }: RatingProps) => JSX.Element;
|
|
2065
2067
|
|
|
2066
2068
|
interface ProductItemProps {
|
|
2067
2069
|
title: string;
|