@commonsku/styles 1.17.54 → 1.17.55
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 +3 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/styles/ProductDetail.d.ts +3 -1
- package/dist/styles/ProductDetail.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -894,6 +894,8 @@ type PriceProps = {
|
|
|
894
894
|
type ProductDetailProps = {
|
|
895
895
|
name: string;
|
|
896
896
|
sku: string;
|
|
897
|
+
divisionName?: string;
|
|
898
|
+
divisionHref?: string;
|
|
897
899
|
descriptions: string[] | string;
|
|
898
900
|
sizes: string[];
|
|
899
901
|
allColors: string[];
|
|
@@ -907,7 +909,7 @@ type ProductDetailProps = {
|
|
|
907
909
|
productHref?: string;
|
|
908
910
|
addToTarget?: string;
|
|
909
911
|
};
|
|
910
|
-
declare const ProductDetail: ({ name, sku, descriptions, sizes, allColors, images, mainImage, prices, handleClickProductEvent, selected, showAddButton, costBased, productHref, addToTarget }: ProductDetailProps) => React__default.JSX.Element;
|
|
912
|
+
declare const ProductDetail: ({ name, sku, divisionName, divisionHref, descriptions, sizes, allColors, images, mainImage, prices, handleClickProductEvent, selected, showAddButton, costBased, productHref, addToTarget }: ProductDetailProps) => React__default.JSX.Element;
|
|
911
913
|
|
|
912
914
|
type ArtworkProps = {
|
|
913
915
|
picture?: string;
|