randmarcomps 1.86.0 → 1.87.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 +8 -0
- package/dist/randmarcomps.js +22596 -16434
- package/dist/randmarcomps.umd.cjs +384 -116
- package/package.json +2 -1
package/dist/randmarcomps.d.ts
CHANGED
|
@@ -227,6 +227,14 @@ declare interface PartnerCardProps {
|
|
|
227
227
|
loading?: boolean;
|
|
228
228
|
}
|
|
229
229
|
|
|
230
|
+
export declare function Preloader({ text, color, className }: PreloaderProps): JSX.Element;
|
|
231
|
+
|
|
232
|
+
export declare interface PreloaderProps {
|
|
233
|
+
text?: string;
|
|
234
|
+
color?: "white" | "black";
|
|
235
|
+
className?: string;
|
|
236
|
+
}
|
|
237
|
+
|
|
230
238
|
export declare function ProductCard({ item, addToCart, syncToShopify, customAction, defaultOpportunityNumber, viewProductAction, addToCartAction, isAddToCartActionLoading, syncToShopifyAction, isSyncToShopifyActionLoading, }: ProductCardProps): JSX.Element;
|
|
231
239
|
|
|
232
240
|
export declare interface ProductCardProps {
|