@mindly/ui-components 3.9.11 → 3.9.13
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/cjs/index.js +12 -12
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/lib/SpecialistEducationCard/SpecialistEducationCard.d.ts +2 -2
- package/dist/cjs/types/lib/SpecialistEducationCard/SpecialistEducationCard.style.d.ts +5 -1
- package/dist/cjs/types/lib/SpecialistProfileViewCard/SpecialistProfileViewCard.d.ts +3 -2
- package/dist/cjs/types/lib/VideoPlayer/VideoPlayer.d.ts +3 -2
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/lib/SpecialistEducationCard/SpecialistEducationCard.d.ts +2 -2
- package/dist/esm/types/lib/SpecialistEducationCard/SpecialistEducationCard.style.d.ts +5 -1
- package/dist/esm/types/lib/SpecialistProfileViewCard/SpecialistProfileViewCard.d.ts +3 -2
- package/dist/esm/types/lib/VideoPlayer/VideoPlayer.d.ts +3 -2
- package/dist/index.d.ts +10 -8
- package/package.json +1 -1
|
@@ -8,5 +8,5 @@ export declare type SpecialistEducationCardProps = {
|
|
|
8
8
|
yearEnd?: number | null;
|
|
9
9
|
showLoader?: boolean;
|
|
10
10
|
};
|
|
11
|
-
declare const
|
|
12
|
-
export default
|
|
11
|
+
declare const _default: React.NamedExoticComponent<SpecialistEducationCardProps>;
|
|
12
|
+
export default _default;
|
|
@@ -1,2 +1,6 @@
|
|
|
1
|
-
|
|
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
|
|
13
|
-
export default
|
|
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
|
|
8
|
-
export default
|
|
8
|
+
declare const _default: React.NamedExoticComponent<VideoPlayerProps>;
|
|
9
|
+
export default _default;
|