@mindly/ui-components 3.9.0 → 3.9.1
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/esm/index.js +4 -4
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/index.d.ts +2 -0
- package/dist/index.d.ts +8 -1
- package/package.json +1 -1
|
@@ -85,3 +85,5 @@ export { default as SpecialistWorkDirections } from './lib/SpecialistWorkDirecti
|
|
|
85
85
|
export * from './lib/SpecialistWorkDirections';
|
|
86
86
|
export { default as Tag } from './lib/Tag';
|
|
87
87
|
export * from './lib/Tag';
|
|
88
|
+
export { default as AppFooter } from './lib/AppFooter';
|
|
89
|
+
export * from './lib/AppFooter';
|
package/dist/index.d.ts
CHANGED
|
@@ -611,4 +611,11 @@ declare type TagProps = {
|
|
|
611
611
|
};
|
|
612
612
|
declare const Tag: React.FC<TagProps>;
|
|
613
613
|
|
|
614
|
-
|
|
614
|
+
declare type AppFooterProps = {
|
|
615
|
+
fullwidth?: boolean;
|
|
616
|
+
style?: CSSProperties;
|
|
617
|
+
className?: string;
|
|
618
|
+
};
|
|
619
|
+
declare const AppFooter: FC<AppFooterProps>;
|
|
620
|
+
|
|
621
|
+
export { AppFooter, 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$3 as LetterAvatar, ListButton, ListSelect, LouseConnect, _default as MediaPlayer, Modal, ModalCalendar, NavigationBar, NoInternetConnection, NotesCardText, NotesEditor, _default$2 as PersonDateTimeCard, Range, RoundButton, RowSelect, ScrollTabs, SectionHeading, Segment, SegmentColor, SegmentType, _default$1 as SelectImpressionEmoji, Skeleton, SpecialistAbout, SpecialistEducationCard, SpecialistProfileViewCard, SpecialistStatisticsCard, SpecialistWorkDirections, StatusTag, SwitchDeviceCard, TabBar, Tag, Textarea, TherapistCard, TherapistInformationComponent, Toggle, UpdatesCard, UsersPsychologistScrollList, YourLocalTimeBlock, toast };
|