@mindly/ui-components 3.9.12 → 3.9.14

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.
@@ -8,5 +8,5 @@ export declare type SpecialistEducationCardProps = {
8
8
  yearEnd?: number | null;
9
9
  showLoader?: boolean;
10
10
  };
11
- declare const SpecialistEducationCard: React.FC<SpecialistEducationCardProps>;
12
- export default SpecialistEducationCard;
11
+ declare const _default: React.NamedExoticComponent<SpecialistEducationCardProps>;
12
+ export default _default;
@@ -1,2 +1,6 @@
1
- export declare const StyledSpecialistEducationCard: import("styled-components").StyledComponent<"div", any, {}, never>;
1
+ declare type StyledSpecialistEducationCardProps = {
2
+ isNeedHoverEffect?: boolean;
3
+ };
4
+ export declare const StyledSpecialistEducationCard: import("styled-components").StyledComponent<"div", any, StyledSpecialistEducationCardProps, never>;
2
5
  export declare const StyledInstitutionTextContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
6
+ export {};
@@ -7,7 +7,8 @@ export declare type SpecialistProfileViewCardProps = {
7
7
  sessionDuration?: number | null;
8
8
  hoursOfPractice?: number | null;
9
9
  onImageClick?: () => void;
10
+ videoLinkUrl?: string | null;
10
11
  showLoader?: boolean;
11
12
  } & React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>;
12
- declare const SpecialistProfileViewCard: React.FC<SpecialistProfileViewCardProps>;
13
- export default SpecialistProfileViewCard;
13
+ declare const _default: React.NamedExoticComponent<SpecialistProfileViewCardProps>;
14
+ export default _default;
@@ -3,6 +3,7 @@ import { JSX } from '@ionic/core/components';
3
3
  declare type VideoPlayerProps = {
4
4
  videoLink: string;
5
5
  closeModalHandler?: () => void;
6
+ onErrorContent: React.ReactElement;
6
7
  } & JSX.IonModal;
7
- declare const VideoPlayer: React.FC<VideoPlayerProps>;
8
- export default VideoPlayer;
8
+ declare const _default: React.NamedExoticComponent<VideoPlayerProps>;
9
+ export default _default;