@trafilea/afrodita-components 6.4.2 → 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 +6 -2
- package/build/index.esm.js +92 -87
- package/build/index.esm.js.map +1 -1
- package/build/index.js +92 -87
- 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;
|
|
@@ -3032,11 +3034,13 @@ interface TabProps {
|
|
|
3032
3034
|
}
|
|
3033
3035
|
interface TabsProps {
|
|
3034
3036
|
backgroundColor?: string;
|
|
3037
|
+
selectedBorderColor?: string;
|
|
3038
|
+
fixedBorderColor?: string;
|
|
3035
3039
|
initialSelected?: string;
|
|
3036
3040
|
tabsMaxWidth?: string;
|
|
3037
3041
|
tabs: TabProps[];
|
|
3038
3042
|
}
|
|
3039
|
-
declare const Tabs: ({ backgroundColor, tabs, initialSelected, tabsMaxWidth, }: TabsProps) => JSX.Element | null;
|
|
3043
|
+
declare const Tabs: ({ backgroundColor, selectedBorderColor, fixedBorderColor, tabs, initialSelected, tabsMaxWidth, }: TabsProps) => JSX.Element | null;
|
|
3040
3044
|
|
|
3041
3045
|
interface CategoryTagProps {
|
|
3042
3046
|
text: string;
|