@mindly/ui-components 3.5.2 → 3.5.4
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 +4 -4
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/index.d.ts +2 -0
- package/dist/cjs/types/lib/UpdatesCard/UpdatesCard.d.ts +12 -0
- package/dist/cjs/types/lib/UpdatesCard/index.d.ts +1 -0
- package/dist/esm/index.js +4 -4
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/index.d.ts +2 -0
- package/dist/esm/types/lib/UpdatesCard/UpdatesCard.d.ts +12 -0
- package/dist/esm/types/lib/UpdatesCard/index.d.ts +1 -0
- package/dist/index.d.ts +11 -1
- package/package.json +1 -1
|
@@ -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,12 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { ButtonProps } from '../button/Button';
|
|
3
|
+
export declare type UpdatesPopupPropsType = {
|
|
4
|
+
text?: string;
|
|
5
|
+
closeHandler?: () => void;
|
|
6
|
+
buttonHandler?: () => void;
|
|
7
|
+
buttonType?: Extract<ButtonProps, 'buttonType'>;
|
|
8
|
+
buttonText?: string;
|
|
9
|
+
disabledButton?: Extract<ButtonProps, 'isDisabled'>;
|
|
10
|
+
};
|
|
11
|
+
declare const UpdatesCard: React.FC<UpdatesPopupPropsType>;
|
|
12
|
+
export default UpdatesCard;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './UpdatesCard';
|
package/dist/index.d.ts
CHANGED
|
@@ -492,4 +492,14 @@ declare type LouseConnectProps = {
|
|
|
492
492
|
};
|
|
493
493
|
declare const LouseConnect: FC<LouseConnectProps>;
|
|
494
494
|
|
|
495
|
-
|
|
495
|
+
declare type UpdatesPopupPropsType = {
|
|
496
|
+
text?: string;
|
|
497
|
+
closeHandler?: () => void;
|
|
498
|
+
buttonHandler?: () => void;
|
|
499
|
+
buttonType?: Extract<ButtonProps, 'buttonType'>;
|
|
500
|
+
buttonText?: string;
|
|
501
|
+
disabledButton?: Extract<ButtonProps, 'isDisabled'>;
|
|
502
|
+
};
|
|
503
|
+
declare const UpdatesCard: React.FC<UpdatesPopupPropsType>;
|
|
504
|
+
|
|
505
|
+
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 };
|