vrfi-design-system 1.0.37 → 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 CHANGED
@@ -208,7 +208,7 @@ declare interface CustomDropDownFileUploadProps extends Omit<UploadProps_2, 'onC
208
208
  }
209
209
 
210
210
  export declare interface CustomInputProps {
211
- label: string;
211
+ label?: string;
212
212
  name: string;
213
213
  placeholder?: string;
214
214
  type?: InputTypes_2;
@@ -328,6 +328,7 @@ export declare interface FloatingLabelProps {
328
328
  value: string;
329
329
  prefix?: ReactNode;
330
330
  required?: boolean;
331
+ placeholder?: string;
331
332
  }
332
333
 
333
334
  export { FooterDetailsProps }
@@ -645,6 +646,19 @@ export declare interface UploadBasePropsForDropdown extends CustomDropDownFileUp
645
646
 
646
647
  export declare const UploadWithDropdown: ({ name, onChange, ...rest }: UploadBasePropsForDropdown) => default_2.JSX.Element;
647
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
+
648
662
  export declare function UserStatus(props: UserStatusProps): default_2.JSX.Element;
649
663
 
650
664
  export declare type UserStatusProps = {