vrfi-design-system 1.2.4 → 1.2.6

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
@@ -195,6 +195,11 @@ declare interface AgencyJobCardProps extends HTMLAttributes<HTMLDivElement> {
195
195
 
196
196
  export { Align }
197
197
 
198
+ declare enum AllowedCountries {
199
+ CANADA = "CA",
200
+ UNITED_STATES = "US"
201
+ }
202
+
198
203
  export { AntdRadioProps }
199
204
 
200
205
  export declare const ApplicationHeader: default_2.FC<ApplicationHeaderProps>;
@@ -670,11 +675,12 @@ export { InputRef }
670
675
 
671
676
  export { InputTypes }
672
677
 
673
- export declare const InputWithCountry: ({ label, type, required, isdCodeName, customInput, ...rest }: Omit<InputWithCountryFlagProps & InputProps_2, "icon">) => default_2.JSX.Element;
678
+ export declare const InputWithCountry: ({ label, type, required, isdCodeName, customInput, onlyCountries, ...rest }: Omit<InputWithCountryFlagProps & InputProps_2, "icon">) => default_2.JSX.Element;
674
679
 
675
680
  declare interface InputWithCountryFlagProps extends Omit<CustomInputProps, "customOnChange"> {
676
681
  isdCodeName: string;
677
682
  onChange?: (value: MobileInputValue_2) => void;
683
+ onlyCountries?: AllowedCountries[];
678
684
  }
679
685
 
680
686
  export declare const JobCard: FC<JobCardProps>;
@@ -756,6 +762,10 @@ export declare interface LoaderProps {
756
762
 
757
763
  declare interface LooseChat {
758
764
  chatType?: string;
765
+ participantDetails?: {
766
+ name?: string;
767
+ profileUrl?: string;
768
+ };
759
769
  messages?: LooseMessage[];
760
770
  }
761
771