@mindly/ui-components 1.8.0 → 1.9.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.
@@ -21,7 +21,8 @@ import SelectImpressionEmojiProps from './lib/SelectImpressionEmoji/SelectImpres
21
21
  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
- export { ArchivedConsultationCard, DatePicker, Button, FloatingButton, FooterForBooking, ListButton, NavigationBar, ContentCard, TherapistCard, toast, NoInternetConnection, TherapistInformationComponent, Input, ScrollTabs, TabBar, YourLocalTimeBlock, ModalCalendar, HorizontalCalendar, SelectImpressionEmoji, ImpressionEmojiEnum, LetterAvatar, ImageWithFallback, };
25
- export type { SelectImpressionEmojiProps, DayToRender, LetterAvatarProps, ImageWithFallbackProps };
24
+ import PersonDateTimeCard, { PersonDateTimeCardProps } from './lib/PersonDateTimeCard/PersonDateTimeCard';
25
+ export { ArchivedConsultationCard, DatePicker, Button, FloatingButton, FooterForBooking, ListButton, NavigationBar, ContentCard, TherapistCard, toast, NoInternetConnection, TherapistInformationComponent, Input, ScrollTabs, TabBar, YourLocalTimeBlock, ModalCalendar, HorizontalCalendar, SelectImpressionEmoji, ImpressionEmojiEnum, LetterAvatar, ImageWithFallback, PersonDateTimeCard };
26
+ export type { SelectImpressionEmojiProps, DayToRender, LetterAvatarProps, ImageWithFallbackProps, PersonDateTimeCardProps };
26
27
  export * from './lib/EntryNotFound';
27
28
  export * from './lib/consultation-card';
@@ -1,6 +1,7 @@
1
1
  import React from "react";
2
2
  export declare type LetterAvatarProps = {
3
3
  letter: string;
4
+ className?: string;
4
5
  };
5
6
  declare const _default: React.NamedExoticComponent<LetterAvatarProps>;
6
7
  export default _default;
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ export declare type PersonDateTimeCardProps = {
3
+ photoSrc?: string;
4
+ name: string;
5
+ dateTime: Date;
6
+ };
7
+ declare const _default: React.NamedExoticComponent<PersonDateTimeCardProps>;
8
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const PersonDateTimeCardStyled: import("styled-components").StyledComponent<"div", any, {}, never>;
2
+ export default PersonDateTimeCardStyled;