@commonsku/styles 1.17.29 → 1.17.31
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 -5
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/styles/ProductCard.d.ts +1 -0
- package/dist/styles/ProductCard.d.ts.map +1 -1
- package/dist/styles/ProductDetail.d.ts.map +1 -1
- package/dist/styles/icons/SkubotLogo.d.ts +2 -7
- package/dist/styles/icons/SkubotLogo.d.ts.map +1 -1
- package/dist/styles/icons/SkubotSpinner.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -868,6 +868,7 @@ declare const Product: (props: {
|
|
|
868
868
|
type ProductCardProps = React__default.PropsWithChildren<{
|
|
869
869
|
handleClick?: () => void;
|
|
870
870
|
selected: boolean;
|
|
871
|
+
loading?: boolean;
|
|
871
872
|
imgUrl: string;
|
|
872
873
|
title: string;
|
|
873
874
|
sku?: string;
|
|
@@ -2827,12 +2828,8 @@ type CommonskuMainLogoProps = {
|
|
|
2827
2828
|
declare function CommonskuMainLogo({ color, size, altText, width, ...props }: CommonskuMainLogoProps): React__default.JSX.Element;
|
|
2828
2829
|
|
|
2829
2830
|
type SkubotLogoProps = {
|
|
2830
|
-
size?: TIconSize;
|
|
2831
|
-
width?: string | number;
|
|
2832
|
-
height?: string | number;
|
|
2833
|
-
altText?: string;
|
|
2834
2831
|
color?: string | undefined;
|
|
2835
|
-
} &
|
|
2832
|
+
} & SVGIconProps;
|
|
2836
2833
|
declare function SkubotLogo({ color, width, height, altText, ...props }: SkubotLogoProps): React__default.JSX.Element;
|
|
2837
2834
|
|
|
2838
2835
|
type SalesArrowIconDirection = 'up' | 'down';
|