randmarcomps 1.40.0 → 1.42.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 +9 -0
- package/dist/randmarcomps.js +2061 -1907
- package/dist/randmarcomps.umd.cjs +47 -27
- package/dist/style.css +2 -0
- package/package.json +1 -1
package/dist/randmarcomps.d.ts
CHANGED
|
@@ -104,6 +104,15 @@ export declare interface NavRoute {
|
|
|
104
104
|
showInNav?: boolean;
|
|
105
105
|
}
|
|
106
106
|
|
|
107
|
+
export declare function ProductImage({ randmarSKU, size, alt, secondaryContent }: ProductImageProps): JSX.Element;
|
|
108
|
+
|
|
109
|
+
export declare interface ProductImageProps {
|
|
110
|
+
randmarSKU: string;
|
|
111
|
+
size?: "sm" | "md" | "lg" | "xl";
|
|
112
|
+
alt?: string;
|
|
113
|
+
secondaryContent?: React_2.ReactNode;
|
|
114
|
+
}
|
|
115
|
+
|
|
107
116
|
export declare const Separator: React_2.ForwardRefExoticComponent<Omit<SeparatorPrimitive.SeparatorProps & React_2.RefAttributes<HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
|
|
108
117
|
|
|
109
118
|
export declare const Sheet: React_2.FC<DialogPrimitive.DialogProps>;
|