@mindly/ui-components 1.7.5 → 1.8.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.
@@ -19,7 +19,9 @@ import { DayToRender, HorizontalCalendar } from './lib/HorisontalCalendar';
19
19
  import SelectImpressionEmoji from './lib/SelectImpressionEmoji';
20
20
  import SelectImpressionEmojiProps from './lib/SelectImpressionEmoji/SelectImpressionEmojiProps';
21
21
  import ImpressionEmojiEnum from './lib/SelectImpressionEmoji/ImpressionEmojiEnum';
22
- export { ArchivedConsultationCard, DatePicker, Button, FloatingButton, FooterForBooking, ListButton, NavigationBar, ContentCard, TherapistCard, toast, NoInternetConnection, TherapistInformationComponent, Input, ScrollTabs, TabBar, YourLocalTimeBlock, ModalCalendar, HorizontalCalendar, SelectImpressionEmoji, ImpressionEmojiEnum, };
23
- export type { SelectImpressionEmojiProps, DayToRender };
22
+ import LetterAvatar, { LetterAvatarProps } from './lib/LetterAvatar/LetterAvatar';
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
26
  export * from './lib/EntryNotFound';
25
27
  export * from './lib/consultation-card';
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export declare type ImageWithFallbackProps = JSX.IntrinsicElements["img"] & ({
3
+ onErrorContent: React.ReactElement;
4
+ });
5
+ declare const ImageWithFallback: React.FC<ImageWithFallbackProps>;
6
+ export default ImageWithFallback;
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ export declare type LetterAvatarProps = {
3
+ letter: string;
4
+ };
5
+ declare const _default: React.NamedExoticComponent<LetterAvatarProps>;
6
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const LetterAvatarStyled: import("styled-components").StyledComponent<"div", any, {}, never>;
2
+ export default LetterAvatarStyled;