vrfi-design-system 1.0.38 → 1.0.39
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 +13 -0
- package/dist/main.es.js +22455 -20025
- package/dist/main.umd.js +152 -138
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -646,6 +646,19 @@ export declare interface UploadBasePropsForDropdown extends CustomDropDownFileUp
|
|
|
646
646
|
|
|
647
647
|
export declare const UploadWithDropdown: ({ name, onChange, ...rest }: UploadBasePropsForDropdown) => default_2.JSX.Element;
|
|
648
648
|
|
|
649
|
+
export declare const UserBadge: (props: UserBadgeProps) => default_2.JSX.Element;
|
|
650
|
+
|
|
651
|
+
export declare interface UserBadgeProps {
|
|
652
|
+
name: string;
|
|
653
|
+
company: string;
|
|
654
|
+
email: string;
|
|
655
|
+
address: string;
|
|
656
|
+
inviteLinkIncluded?: boolean;
|
|
657
|
+
inviteLink?: string;
|
|
658
|
+
shareLink?: string;
|
|
659
|
+
onClose: () => void;
|
|
660
|
+
}
|
|
661
|
+
|
|
649
662
|
export declare function UserStatus(props: UserStatusProps): default_2.JSX.Element;
|
|
650
663
|
|
|
651
664
|
export declare type UserStatusProps = {
|