randmarcomps 1.330.0 → 1.331.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 +12 -0
- package/dist/randmarcomps.js +2680 -2563
- package/dist/randmarcomps.umd.cjs +76 -71
- package/package.json +1 -1
package/dist/randmarcomps.d.ts
CHANGED
|
@@ -396,6 +396,18 @@ export declare function ExploreManufacturers({ appID, manufPath, withBot }: {
|
|
|
396
396
|
withBot: boolean;
|
|
397
397
|
}): JSX.Element;
|
|
398
398
|
|
|
399
|
+
/**
|
|
400
|
+
* A card component to display an external product with a responsive layout.
|
|
401
|
+
* It shows a compact view with badges on mobile and a detailed grid on desktop.
|
|
402
|
+
* Includes a skeleton loader state for asynchronous data fetching.
|
|
403
|
+
*/
|
|
404
|
+
export declare function ExternalProductCard({ product, viewProductLink }: ExternalProductCardProps): JSX.Element;
|
|
405
|
+
|
|
406
|
+
declare interface ExternalProductCardProps {
|
|
407
|
+
product?: Product;
|
|
408
|
+
viewProductLink?: string;
|
|
409
|
+
}
|
|
410
|
+
|
|
399
411
|
/**
|
|
400
412
|
* Formats a number as Canadian dollars (CAD) for an English (Canada) locale.
|
|
401
413
|
*
|