randmarcomps 1.39.0 → 1.41.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 +11 -0
- package/dist/randmarcomps.js +2061 -1906
- package/dist/randmarcomps.umd.cjs +47 -27
- package/package.json +1 -1
package/dist/randmarcomps.d.ts
CHANGED
|
@@ -43,6 +43,8 @@ export declare const Dialog: {
|
|
|
43
43
|
displayName: string | undefined;
|
|
44
44
|
};
|
|
45
45
|
|
|
46
|
+
export declare const DialogClose: React_2.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React_2.RefAttributes<HTMLButtonElement>>;
|
|
47
|
+
|
|
46
48
|
export declare const DialogContent: React_2.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogContentProps & React_2.RefAttributes<HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
|
|
47
49
|
|
|
48
50
|
export declare const DialogDescription: React_2.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React_2.RefAttributes<HTMLParagraphElement>, "ref"> & React_2.RefAttributes<HTMLParagraphElement>>;
|
|
@@ -102,6 +104,15 @@ export declare interface NavRoute {
|
|
|
102
104
|
showInNav?: boolean;
|
|
103
105
|
}
|
|
104
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
|
+
|
|
105
116
|
export declare const Separator: React_2.ForwardRefExoticComponent<Omit<SeparatorPrimitive.SeparatorProps & React_2.RefAttributes<HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
|
|
106
117
|
|
|
107
118
|
export declare const Sheet: React_2.FC<DialogPrimitive.DialogProps>;
|