vrfi-design-system 1.2.42 → 1.2.43
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/index.d.ts +8 -0
- package/dist/main.es.js +2949 -2946
- package/dist/main.umd.js +77 -77
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -334,6 +334,14 @@ export declare interface CardWithIconAndTextProps {
|
|
|
334
334
|
subHeading: string;
|
|
335
335
|
}
|
|
336
336
|
|
|
337
|
+
export declare const ChatAttachment: ({ attachmentLink, attachmentName, isLoading, }: ChatAttachmentProps) => default_2.JSX.Element;
|
|
338
|
+
|
|
339
|
+
export declare interface ChatAttachmentProps {
|
|
340
|
+
attachmentLink: string;
|
|
341
|
+
attachmentName: string;
|
|
342
|
+
isLoading?: boolean;
|
|
343
|
+
}
|
|
344
|
+
|
|
337
345
|
export declare const ChatDetails: default_2.FC<ChatDetailsProps>;
|
|
338
346
|
|
|
339
347
|
declare interface ChatDetailsProps {
|