@trafilea/afrodita-components 5.0.0-beta.116 → 5.0.0-beta.118

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
@@ -1532,6 +1532,13 @@ declare type ThemeComponent = {
1532
1532
  selectedContrast: string;
1533
1533
  tagColor: string;
1534
1534
  };
1535
+ slideNavigation: {
1536
+ slideDots: {
1537
+ unselectedDotColor: string;
1538
+ selectedDotColor: string;
1539
+ dotsOpacity: number;
1540
+ };
1541
+ };
1535
1542
  };
1536
1543
  declare type ThemeTypography = {
1537
1544
  config: {
@@ -1926,6 +1933,7 @@ interface ProductItemSmallMobileProps extends ProductItemProps {
1926
1933
  onClick?: () => void;
1927
1934
  priceDisplayType?: 'default' | 'styled';
1928
1935
  priceAtBottom?: boolean;
1936
+ priceLoading?: boolean;
1929
1937
  }
1930
1938
 
1931
1939
  declare function withProductGrid<P extends ProductItemProps>(ProductItemComponent: React.FC<P>, data: ProductItemProps[]): {
@@ -1934,7 +1942,7 @@ declare function withProductGrid<P extends ProductItemProps>(ProductItemComponen
1934
1942
  };
1935
1943
 
1936
1944
  declare const Collection: {
1937
- ProductItemMobile: ({ title, image, imageHover, price, rating, size, alignName, url, className, topTag, bottomTag, onClick, priceDisplayType, priceAtBottom, }: ProductItemSmallMobileProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
1945
+ ProductItemMobile: ({ title, image, imageHover, price, rating, size, alignName, url, className, topTag, bottomTag, onClick, priceDisplayType, priceAtBottom, priceLoading, }: ProductItemSmallMobileProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
1938
1946
  withProductGrid: typeof withProductGrid;
1939
1947
  };
1940
1948