@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.
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/index.d.ts +2 -1
- package/dist/esm/index.js +2 -2
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/index.d.ts +2 -1
- package/dist/index.d.ts +9 -1
- package/package.json +1 -1
|
@@ -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
|
-
|
|
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
|
-
|
|
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 };
|