@mindly/ui-components 3.63.1 → 3.64.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.
- package/dist/cjs/index.js +8 -8
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/index.d.ts +1 -1
- package/dist/cjs/types/lib/Avatar/Avatar.d.ts +6 -0
- package/dist/cjs/types/lib/Avatar/Avatar.style.d.ts +1 -0
- package/dist/cjs/types/lib/Flag/Flag.d.ts +1 -0
- package/dist/esm/index.js +8 -8
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/index.d.ts +1 -1
- package/dist/esm/types/lib/Avatar/Avatar.d.ts +6 -0
- package/dist/esm/types/lib/Avatar/Avatar.style.d.ts +1 -0
- package/dist/esm/types/lib/Flag/Flag.d.ts +1 -0
- package/dist/index.d.ts +7 -0
- package/package.json +1 -1
- /package/dist/cjs/types/{lib → deprecated}/LetterAvatar/LetterAvatar.d.ts +0 -0
- /package/dist/cjs/types/{lib → deprecated}/LetterAvatar/LetterAvatar.styled.d.ts +0 -0
- /package/dist/esm/types/{lib → deprecated}/LetterAvatar/LetterAvatar.d.ts +0 -0
- /package/dist/esm/types/{lib → deprecated}/LetterAvatar/LetterAvatar.styled.d.ts +0 -0
|
@@ -16,7 +16,7 @@ import { YourLocalTimeBlock } from './lib/your-local-time-block/YourLocalTimeBlo
|
|
|
16
16
|
import { ModalCalendar } from './lib/ModalCalendar/ModalCalendar';
|
|
17
17
|
import { HorizontalCalendar } from './lib/HorisontalCalendar';
|
|
18
18
|
import ImpressionEmojiEnum from './lib/SelectImpressionEmoji/ImpressionEmojiEnum';
|
|
19
|
-
import LetterAvatar from './
|
|
19
|
+
import LetterAvatar from './deprecated/LetterAvatar/LetterAvatar';
|
|
20
20
|
import ImageWithFallback from './lib/ImageWithFallback/ImageWithFallback';
|
|
21
21
|
import PersonDateTimeCard from './lib/PersonDateTimeCard/PersonDateTimeCard';
|
|
22
22
|
import { UsersPsychologistScrollList } from './lib/UsersPsychologistScrollList/UsersPsychologistScrollList';
|
|
@@ -3,9 +3,15 @@ export declare type AvatarProps = {
|
|
|
3
3
|
dimensions?: number;
|
|
4
4
|
width?: number;
|
|
5
5
|
height?: number;
|
|
6
|
+
/**
|
|
7
|
+
* @deprecated
|
|
8
|
+
*/
|
|
6
9
|
fontSize?: number;
|
|
7
10
|
borderRadius?: string;
|
|
8
11
|
src?: string;
|
|
12
|
+
/**
|
|
13
|
+
* @deprecated
|
|
14
|
+
*/
|
|
9
15
|
firstName?: string;
|
|
10
16
|
style?: CSSProperties;
|
|
11
17
|
className?: string;
|