@mindly/ui-components 1.15.0 → 1.15.2
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 +4 -3
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/index.d.ts +4 -3
- package/dist/index.d.ts +10 -1
- package/package.json +1 -1
|
@@ -22,11 +22,12 @@ import ImpressionEmojiEnum from './lib/SelectImpressionEmoji/ImpressionEmojiEnum
|
|
|
22
22
|
import LetterAvatar, { LetterAvatarProps } from './lib/LetterAvatar/LetterAvatar';
|
|
23
23
|
import ImageWithFallback, { ImageWithFallbackProps } from './lib/ImageWithFallback/ImageWithFallback';
|
|
24
24
|
import PersonDateTimeCard from './lib/PersonDateTimeCard/PersonDateTimeCard';
|
|
25
|
-
import * as UserAppTypes from
|
|
25
|
+
import * as UserAppTypes from './lib/userAppTypes';
|
|
26
26
|
import { UsersPsychologistScrollList, UsersPsychologistScrollListPropsType } from './lib/UsersPsychologistScrollList/UsersPsychologistScrollList';
|
|
27
27
|
import NotesEditor from './lib/notes-editor/NotesEditor';
|
|
28
28
|
import NotesCardText, { NotesCardTextProps } from './lib/notes-card-text/NotesCardText';
|
|
29
|
-
export { ArchivedConsultationCard, DatePicker, Button, FloatingButton, FooterForBooking, ListButton, NavigationBar, ContentCard, TherapistCard, toast, NoInternetConnection, TherapistInformationComponent, Input, ScrollTabs, TabBar, YourLocalTimeBlock, ModalCalendar, HorizontalCalendar, SelectImpressionEmoji, ImpressionEmojiEnum, LetterAvatar, ImageWithFallback, PersonDateTimeCard, UsersPsychologistScrollList, NotesEditor, NotesCardText };
|
|
30
|
-
export type { SelectImpressionEmojiProps, DayToRender, LetterAvatarProps, ImageWithFallbackProps, UserAppTypes, UsersPsychologistScrollListPropsType, NotesCardTextProps };
|
|
29
|
+
export { ArchivedConsultationCard, DatePicker, Button, FloatingButton, FooterForBooking, ListButton, NavigationBar, ContentCard, TherapistCard, toast, NoInternetConnection, TherapistInformationComponent, Input, ScrollTabs, TabBar, YourLocalTimeBlock, ModalCalendar, HorizontalCalendar, SelectImpressionEmoji, ImpressionEmojiEnum, LetterAvatar, ImageWithFallback, PersonDateTimeCard, UsersPsychologistScrollList, NotesEditor, NotesCardText, };
|
|
30
|
+
export type { SelectImpressionEmojiProps, DayToRender, LetterAvatarProps, ImageWithFallbackProps, UserAppTypes, UsersPsychologistScrollListPropsType, NotesCardTextProps, };
|
|
31
31
|
export * from './lib/EntryNotFound';
|
|
32
32
|
export * from './lib/consultation-card';
|
|
33
|
+
export * from './lib/Avatar';
|
package/dist/index.d.ts
CHANGED
|
@@ -561,4 +561,13 @@ declare const ConsultationCard: React.FC<ConsultationCardProps>;
|
|
|
561
561
|
|
|
562
562
|
declare const ConsultationCardSkeleton: () => JSX.Element;
|
|
563
563
|
|
|
564
|
-
|
|
564
|
+
declare type AvatarProps = {
|
|
565
|
+
dimensions?: number;
|
|
566
|
+
src?: string;
|
|
567
|
+
firstName?: string;
|
|
568
|
+
style?: CSSProperties;
|
|
569
|
+
className?: string;
|
|
570
|
+
};
|
|
571
|
+
declare const Avatar: FC<AvatarProps>;
|
|
572
|
+
|
|
573
|
+
export { ArchivedConsultationCard, Avatar, AvatarProps, Button, ConsultationCard, ConsultationCardProps, ConsultationCardSkeleton, ContentCard, DatePicker, DateTimeType, DayOfWeeks, DayToRender, EntryNotFound, EntryNotFoundProps, FloatingButton, FooterForBooking, HorizontalCalendar, ImageWithFallback, ImageWithFallbackProps, ImpressionEmojiEnum, Input, _default$1 as LetterAvatar, LetterAvatarProps, ListButton, ModalCalendar, NavigationBar, NoInternetConnection, NotesCardText, NotesCardTextProps, NotesEditor, _default as PersonDateTimeCard, ScrollTabs, _default$2 as SelectImpressionEmoji, SelectImpressionEmojiProps, TabBar, TherapistCard, TherapistInformationComponent, userAppTypes_d as UserAppTypes, UsersPsychologistScrollList, UsersPsychologistScrollListPropsType, YourLocalTimeBlock, toast };
|