randmarcomps 1.186.0 → 1.188.0
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/randmarcomps.d.ts +4 -2
- package/dist/randmarcomps.js +1444 -1408
- package/dist/randmarcomps.umd.cjs +32 -32
- package/package.json +1 -1
package/dist/randmarcomps.d.ts
CHANGED
|
@@ -448,12 +448,14 @@ export declare interface NavRoute {
|
|
|
448
448
|
showInNav?: boolean;
|
|
449
449
|
}
|
|
450
450
|
|
|
451
|
-
export declare function PartnerCard({ account, action, loading, withVoice }: PartnerCardProps): JSX.Element;
|
|
451
|
+
export declare function PartnerCard({ account, action, loading, className, withAbout, withVoice }: PartnerCardProps): JSX.Element;
|
|
452
452
|
|
|
453
453
|
declare interface PartnerCardProps {
|
|
454
454
|
account?: Account;
|
|
455
455
|
action?: ReactNode;
|
|
456
456
|
loading?: boolean;
|
|
457
|
+
className?: string;
|
|
458
|
+
withAbout?: boolean;
|
|
457
459
|
withVoice?: boolean;
|
|
458
460
|
}
|
|
459
461
|
|
|
@@ -488,7 +490,7 @@ export declare interface ProductCardProps {
|
|
|
488
490
|
isAddToCartActionLoading?: boolean;
|
|
489
491
|
syncToShopifyAction?: () => void;
|
|
490
492
|
isSyncToShopifyActionLoading?: boolean;
|
|
491
|
-
customAction?:
|
|
493
|
+
customAction?: default_2.ReactNode;
|
|
492
494
|
}
|
|
493
495
|
|
|
494
496
|
export declare function ProductImage({ randmarSKU, size, alt, secondaryContent }: ProductImageProps): JSX.Element;
|