@trafilea/afrodita-components 5.0.0-beta.117 → 5.0.0-beta.119
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 +10 -1
- package/build/index.esm.js +174 -145
- package/build/index.esm.js.map +1 -1
- package/build/index.js +174 -145
- package/build/index.js.map +1 -1
- package/build/theme/revel.theme.d.ts +8 -0
- package/build/theme/revel.theme.js +9 -1
- package/build/theme/shapermint.theme.d.ts +8 -0
- package/build/theme/shapermint.theme.js +7 -0
- package/build/theme/truekind.theme.d.ts +8 -0
- package/build/theme/truekind.theme.js +7 -0
- package/package.json +1 -1
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: {
|
|
@@ -1558,6 +1565,7 @@ declare type ThemeAssets = {
|
|
|
1558
1565
|
images: {
|
|
1559
1566
|
favicon: string;
|
|
1560
1567
|
logo: string;
|
|
1568
|
+
logoMobile?: string;
|
|
1561
1569
|
};
|
|
1562
1570
|
[key: string]: any;
|
|
1563
1571
|
};
|
|
@@ -1926,6 +1934,7 @@ interface ProductItemSmallMobileProps extends ProductItemProps {
|
|
|
1926
1934
|
onClick?: () => void;
|
|
1927
1935
|
priceDisplayType?: 'default' | 'styled';
|
|
1928
1936
|
priceAtBottom?: boolean;
|
|
1937
|
+
priceLoading?: boolean;
|
|
1929
1938
|
}
|
|
1930
1939
|
|
|
1931
1940
|
declare function withProductGrid<P extends ProductItemProps>(ProductItemComponent: React.FC<P>, data: ProductItemProps[]): {
|
|
@@ -1934,7 +1943,7 @@ declare function withProductGrid<P extends ProductItemProps>(ProductItemComponen
|
|
|
1934
1943
|
};
|
|
1935
1944
|
|
|
1936
1945
|
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;
|
|
1946
|
+
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
1947
|
withProductGrid: typeof withProductGrid;
|
|
1939
1948
|
};
|
|
1940
1949
|
|