@mindly/ui-components 0.1.23 → 0.1.25

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.
@@ -11,4 +11,5 @@ import { toast } from './lib/toast/toast';
11
11
  import { ArchivedConsultationCard } from './lib/archived-consultation-card/ArchivedConsultationCard';
12
12
  import { DatePicker } from './lib/date-picker/DatePicker';
13
13
  import { NoInternetConnection } from './lib/no-internet-connection/NoInternetConnection';
14
- export { ArchivedConsultationCard, DatePicker, Button, FloatingButton, FooterForBooking, ListButton, NavigationBar, TabBar, ConsultationCard, ContentCard, TherapistCard, toast, NoInternetConnection, };
14
+ import { TherapistInformationComponent } from './lib/therapist-information-component/TherapistInformationComponent';
15
+ export { ArchivedConsultationCard, DatePicker, Button, FloatingButton, FooterForBooking, ListButton, NavigationBar, TabBar, ConsultationCard, ContentCard, TherapistCard, toast, NoInternetConnection, TherapistInformationComponent, };
package/dist/index.d.ts CHANGED
@@ -106,4 +106,12 @@ interface NoInternetConnectionProps {
106
106
  }
107
107
  declare const NoInternetConnection: React.FC<NoInternetConnectionProps>;
108
108
 
109
- export { ArchivedConsultationCard, Button, ConsultationCard, ContentCard, DatePicker, FloatingButton, FooterForBooking, ListButton, NavigationBar, NoInternetConnection, TabBar, TherapistCard, toast };
109
+ interface TherapistInformationComponentProps {
110
+ avatar: string;
111
+ experience: string;
112
+ duration: string;
113
+ price: string;
114
+ }
115
+ declare const TherapistInformationComponent: React.FC<TherapistInformationComponentProps>;
116
+
117
+ export { ArchivedConsultationCard, Button, ConsultationCard, ContentCard, DatePicker, FloatingButton, FooterForBooking, ListButton, NavigationBar, NoInternetConnection, TabBar, TherapistCard, TherapistInformationComponent, toast };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindly/ui-components",
3
- "version": "0.1.23",
3
+ "version": "0.1.25",
4
4
  "private": false,
5
5
  "dependencies": {
6
6
  "@babel/polyfill": "^7.12.1",