@mindly/ui-components 1.13.2 → 1.14.0

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.
@@ -25,7 +25,8 @@ import PersonDateTimeCard from './lib/PersonDateTimeCard/PersonDateTimeCard';
25
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
- 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 };
29
- export type { SelectImpressionEmojiProps, DayToRender, LetterAvatarProps, ImageWithFallbackProps, UserAppTypes, UsersPsychologistScrollListPropsType };
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 };
30
31
  export * from './lib/EntryNotFound';
31
32
  export * from './lib/consultation-card';
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export declare type NotesCardTextProps = {
3
+ text: string;
4
+ };
5
+ declare const NotesCardText: React.FC<NotesCardTextProps>;
6
+ export default NotesCardText;
@@ -0,0 +1 @@
1
+ export declare const StyledNotesCardPre: import("styled-components").StyledComponent<"pre", any, {}, never>;
@@ -0,0 +1 @@
1
+ export * from './NotesCardText';