@mindly/ui-components 3.5.2 → 3.5.3

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.
@@ -65,3 +65,5 @@ export { default as Textarea } from './lib/Chat/Textarea';
65
65
  export * from './lib/Chat/Textarea';
66
66
  export { default as LouseConnect } from './lib/Chat/LouseConnect';
67
67
  export * from './lib/Chat/LouseConnect';
68
+ export { default as UpdatesCard } from './lib/UpdatesCard';
69
+ export * from './lib/UpdatesCard';
@@ -0,0 +1,11 @@
1
+ import React from 'react';
2
+ import { ButtonProps } from '../button/Button';
3
+ export declare type UpdatesPopupPropsType = {
4
+ text?: string;
5
+ buttonHandler?: () => void;
6
+ closeHandler?: () => void;
7
+ buttonType?: Extract<ButtonProps, 'buttonType'>;
8
+ disabledButton?: Extract<ButtonProps, 'isDisabled'>;
9
+ };
10
+ declare const UpdatesCard: React.FC<UpdatesPopupPropsType>;
11
+ export default UpdatesCard;
@@ -0,0 +1 @@
1
+ export { default } from './UpdatesCard';
package/dist/index.d.ts CHANGED
@@ -492,4 +492,13 @@ declare type LouseConnectProps = {
492
492
  };
493
493
  declare const LouseConnect: FC<LouseConnectProps>;
494
494
 
495
- export { AppHeader, ArchivedConsultationCard, Avatar, AvatarProps, Button, ChatListItem, ChatListSkeleton, ChatMessage, ChatMessageSkeleton, ConsultationCard, ConsultationCardProps, ConsultationCardSkeleton, Container, ContentCard, DatePicker, DateTimeType, DayOfWeeks, DayToRender, EmptyChatList, EmptyChatMessages, EntryNotFound, EntryNotFoundProps, FloatingButton, FooterForBooking, HorizontalCalendar, HorizontalCalendarProps, ImageWithFallback, ImpressionEmojiEnum, Input, _default$2 as LetterAvatar, ListButton, ListSelect, LouseConnect, AgoraMediaPlayer as MediaPlayer, Modal, ModalCalendar, NavigationBar, NoInternetConnection, NotesCardText, NotesEditor, _default$1 as PersonDateTimeCard, Range, RoundButton, RowSelect, ScrollTabs, Segment, SegmentType, _default as SelectImpressionEmoji, StatusTag, TabBar, Textarea, TherapistCard, TherapistInformationComponent, Toggle, UsersPsychologistScrollList, YourLocalTimeBlock, toast };
495
+ declare type UpdatesPopupPropsType = {
496
+ text?: string;
497
+ buttonHandler?: () => void;
498
+ closeHandler?: () => void;
499
+ buttonType?: Extract<ButtonProps, 'buttonType'>;
500
+ disabledButton?: Extract<ButtonProps, 'isDisabled'>;
501
+ };
502
+ declare const UpdatesCard: React.FC<UpdatesPopupPropsType>;
503
+
504
+ export { AppHeader, ArchivedConsultationCard, Avatar, AvatarProps, Button, ChatListItem, ChatListSkeleton, ChatMessage, ChatMessageSkeleton, ConsultationCard, ConsultationCardProps, ConsultationCardSkeleton, Container, ContentCard, DatePicker, DateTimeType, DayOfWeeks, DayToRender, EmptyChatList, EmptyChatMessages, EntryNotFound, EntryNotFoundProps, FloatingButton, FooterForBooking, HorizontalCalendar, HorizontalCalendarProps, ImageWithFallback, ImpressionEmojiEnum, Input, _default$2 as LetterAvatar, ListButton, ListSelect, LouseConnect, AgoraMediaPlayer as MediaPlayer, Modal, ModalCalendar, NavigationBar, NoInternetConnection, NotesCardText, NotesEditor, _default$1 as PersonDateTimeCard, Range, RoundButton, RowSelect, ScrollTabs, Segment, SegmentType, _default as SelectImpressionEmoji, StatusTag, TabBar, Textarea, TherapistCard, TherapistInformationComponent, Toggle, UpdatesCard, UsersPsychologistScrollList, YourLocalTimeBlock, toast };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindly/ui-components",
3
- "version": "3.5.2",
3
+ "version": "3.5.3",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "start": "react-scripts start",