@commonsku/styles 1.17.51 → 1.17.53
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/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/styles/ProductCard.d.ts +2 -0
- package/dist/styles/ProductCard.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -874,7 +874,9 @@ type ProductCardProps = React__default.PropsWithChildren<{
|
|
|
874
874
|
imgUrl: string;
|
|
875
875
|
title: string;
|
|
876
876
|
sku?: string;
|
|
877
|
+
description?: string;
|
|
877
878
|
subTitle: string;
|
|
879
|
+
handleSubTitleClick?: () => void;
|
|
878
880
|
showButton: boolean;
|
|
879
881
|
handleClickProductEvent?: () => void;
|
|
880
882
|
} & SharedStyleTypes & SizerTypes>;
|