@mindly/ui-components 3.9.8 → 3.9.10

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.
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- declare type SpecialistEducationCardProps = {
2
+ export declare type SpecialistEducationCardProps = {
3
3
  institutionName?: string;
4
4
  institutionLogoLink?: string | null;
5
5
  onClickSeeMoreButton?: () => void;
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ import { JSX } from '@ionic/core/components';
3
+ declare type VideoPlayerProps = {
4
+ videoLink: string;
5
+ closeModalHandler?: () => void;
6
+ } & JSX.IonModal;
7
+ declare const VideoPlayer: React.FC<VideoPlayerProps>;
8
+ export default VideoPlayer;
@@ -0,0 +1,5 @@
1
+ /// <reference types="react" />
2
+ export declare const VideoPlayerContainer: import("styled-components").StyledComponent<import("react").FC<{
3
+ style?: import("react").CSSProperties | undefined;
4
+ className?: string | undefined;
5
+ }>, any, {}, never>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindly/ui-components",
3
- "version": "3.9.8",
3
+ "version": "3.9.10",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "start": "react-scripts start",