@mindly/ui-components 5.46.2 → 5.46.3

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.
@@ -6,6 +6,7 @@ type ConsultationUserType = {
6
6
  avatar: string;
7
7
  locale: string;
8
8
  timezone: string;
9
+ onUserClick?: () => void;
9
10
  };
10
11
  declare const _default: React.NamedExoticComponent<ConsultationUserType & TranslationType>;
11
12
  export default _default;
@@ -1,2 +1,3 @@
1
1
  export { default as SpecialistPaymentConsultationsFeature } from './SpecialistPaymentConsultationsFeature';
2
+ export { default as PaymentSessionsList } from './Consultations/ConsultationsList';
2
3
  export { ConsultationsListSkeleton } from './Consultations/ConsultationsListSkeleton';
@@ -88,4 +88,5 @@ export type SpecialistPaymentConsultationDetailsType = {
88
88
  isLoading: boolean;
89
89
  timezone: string;
90
90
  locale: string;
91
+ onUserClick?: () => void;
91
92
  };