@mindly/ui-components 3.26.11 → 3.27.1

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.
@@ -10,4 +10,7 @@ export interface TherapistCardProps {
10
10
  handleClick: (props?: React.SyntheticEvent) => void;
11
11
  ['data-testid']?: string;
12
12
  }
13
+ /**
14
+ * @deprecated
15
+ */
13
16
  export declare const TherapistCard: React.FC<TherapistCardProps>;
@@ -3,7 +3,7 @@ import { FloatingButton } from './lib/floating-button/FloatingButton';
3
3
  import { ListButton } from './lib/list-button/ListButton';
4
4
  import { NavigationBar } from './lib/navigation-bar/NavigationBar';
5
5
  import { ContentCard } from './lib/content-card/ContentCard';
6
- import { TherapistCard } from './lib/therapist-card/TherapistCard';
6
+ import { TherapistCard } from './deprecated/therapist-card/TherapistCard';
7
7
  import { toast } from './lib/toast/toast';
8
8
  import { ArchivedConsultationCard } from './lib/archived-consultation-card/ArchivedConsultationCard';
9
9
  import { DatePicker } from './lib/date-picker/DatePicker';
@@ -131,3 +131,5 @@ export { default as BookingScheduleTime } from './lib/Booking/BookingScheduleTim
131
131
  export * from './lib/Booking/BookingScheduleTime';
132
132
  export { default as BookingSpecialistInfo } from './lib/Booking/BookingSpecialistInfo';
133
133
  export * from './lib/Booking/BookingSpecialistInfo';
134
+ export { default as SpecialistCard } from './lib/SpecialistCard';
135
+ export * from './lib/SpecialistCard';
@@ -0,0 +1,17 @@
1
+ import React from 'react';
2
+ declare type SpecialistCardProps = {
3
+ fullName: string;
4
+ specialization: string;
5
+ pricePerSessionUAH: number;
6
+ sessionDurationInMinutes: number;
7
+ avatarLink?: string | null;
8
+ yearsOfExperience?: number | null;
9
+ hoursOfPractice?: number | null;
10
+ summary?: string | null;
11
+ clientsCount?: number | null;
12
+ sessionsCount?: number | null;
13
+ onFavouriteClickHandler?: () => void;
14
+ isFavouriteSpecialist?: boolean;
15
+ };
16
+ declare const SpecialistCard: React.FC<SpecialistCardProps>;
17
+ export default SpecialistCard;
@@ -0,0 +1,14 @@
1
+ /// <reference types="react" />
2
+ export declare const SpecialistCardContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
3
+ declare type SpecialistCardContainerRowProps = {
4
+ bottomGapPx?: number;
5
+ flexGapPX?: number;
6
+ justifyContent?: 'center' | 'space-between';
7
+ };
8
+ export declare const SpecialistCardContainerRow: import("styled-components").StyledComponent<"div", any, SpecialistCardContainerRowProps, never>;
9
+ export declare const StyledCardAvatar: import("styled-components").StyledComponent<import("react").FC<import("../Avatar").AvatarProps>, any, {}, never>;
10
+ export declare const SpecialistMainInfo: import("styled-components").StyledComponent<"div", any, {}, never>;
11
+ export declare const SpecialistCardSummary: import("styled-components").StyledComponent<"div", any, {}, never>;
12
+ export declare const SpecialistPriceSection: import("styled-components").StyledComponent<"div", any, {}, never>;
13
+ export declare const SpecialistStatistics: import("styled-components").StyledComponent<"div", any, {}, never>;
14
+ export {};
@@ -0,0 +1 @@
1
+ export { default } from './SpecialistCard';
@@ -7,6 +7,7 @@ declare type UserInfo = {
7
7
  export declare type VideoCallInfoProps = {
8
8
  userInfo: UserInfo;
9
9
  consultationDate?: number;
10
+ timeZone?: string;
10
11
  };
11
12
  declare const _default: React.NamedExoticComponent<VideoCallInfoProps>;
12
13
  export default _default;