demio-ui 2.1.29 → 2.1.31
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.css +1 -1
- package/dist/cjs/index.js +2 -2
- package/dist/cjs/types/src/components/Avatar/Avatar.d.ts +2 -1
- package/dist/cjs/types/src/components/index.d.ts +1 -0
- package/dist/cjs/types/src/icons/index.d.ts +2 -1
- package/dist/esm/index.css +1 -1
- package/dist/esm/index.js +2 -2
- package/dist/esm/types/src/components/Avatar/Avatar.d.ts +2 -1
- package/dist/esm/types/src/components/index.d.ts +1 -0
- package/dist/esm/types/src/icons/index.d.ts +2 -1
- package/dist/types.d.ts +178 -155
- package/package.json +2 -1
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import { FC } from 'react';
|
|
2
2
|
export interface Props {
|
|
3
3
|
src?: string;
|
|
4
|
-
size?: 'medium' | 'large';
|
|
4
|
+
size?: 'small' | 'medium' | 'large';
|
|
5
5
|
userName?: string;
|
|
6
6
|
alt?: string | undefined;
|
|
7
7
|
className?: string;
|
|
8
|
+
fallbackDelay?: number;
|
|
8
9
|
}
|
|
9
10
|
declare const Avatar: FC<Props>;
|
|
10
11
|
export default Avatar;
|
|
@@ -36,6 +36,7 @@ import MicOffIcon from './mic_off-1.svg';
|
|
|
36
36
|
import MicOnSolidIcon from './mic-1.svg';
|
|
37
37
|
import PasswordEyeIcon from './password_eye.svg';
|
|
38
38
|
import PasswordEyeCrossedIcon from './password_eye_crossed.svg';
|
|
39
|
+
import Person from './person.svg';
|
|
39
40
|
import PlayIcon from './play.svg';
|
|
40
41
|
import PollIcon from './poll.svg';
|
|
41
42
|
import ProgressIcon from './progress.svg';
|
|
@@ -57,4 +58,4 @@ import VolumeUpSolidIcon from './volume_up.svg';
|
|
|
57
58
|
import VolumeUpIcon from './volume_up-1.svg';
|
|
58
59
|
import WarningSolidIcon from './warning.svg';
|
|
59
60
|
import WarningIcon from './warning-1.svg';
|
|
60
|
-
export { AddIcon, ArrowDownIcon, ArrowLeftIcon, BarChartIcon, BlockIcon, BlurOnIcon, CachedIcon, CalendarIcon, CalendarStarIcon, CheckboxIcon, CheckboxUncheckIcon, CheckCircleIcon, ClockIcon, CloseIcon, CustomizeIcon, DeleteIcon, DotsIcon, ElectricBoltIcon, EventDetailsIcon, EventRepeatIcon, ExclamationIcon, ExternalLinkIcon, FileIcon, FilterListIcon, InfoIcon, InfoSolidIcon, ItemsIcon, ListIcon, ListThIcon, LockIcon, MagicIcon, MaterialsIcon, MicOffIcon, MicOffSolidIcon, MicOnfIcon, MicOnSolidIcon, PasswordEyeCrossedIcon, PasswordEyeIcon, PlayIcon, PollIcon, ProgressIcon, ReplayDisabledIcon, RocketIcon, SearchIcon, SmileIcon, StackedEmailIcon, TodayIcon, TrendingDownIcon, TrendingUpIcon, VideoCamOffIcon, VideoCamOffSolidIcon, VideoCamOnIcon, VideoCamOnSolidIcon, VolumeOffIcon, VolumeOffSolidIcon, VolumeUpIcon, VolumeUpSolidIcon, WarningIcon, WarningSolidIcon, };
|
|
61
|
+
export { AddIcon, ArrowDownIcon, ArrowLeftIcon, BarChartIcon, BlockIcon, BlurOnIcon, CachedIcon, CalendarIcon, CalendarStarIcon, CheckboxIcon, CheckboxUncheckIcon, CheckCircleIcon, ClockIcon, CloseIcon, CustomizeIcon, DeleteIcon, DotsIcon, ElectricBoltIcon, EventDetailsIcon, EventRepeatIcon, ExclamationIcon, ExternalLinkIcon, FileIcon, FilterListIcon, InfoIcon, InfoSolidIcon, ItemsIcon, ListIcon, ListThIcon, LockIcon, MagicIcon, MaterialsIcon, MicOffIcon, MicOffSolidIcon, MicOnfIcon, MicOnSolidIcon, PasswordEyeCrossedIcon, PasswordEyeIcon, Person, PlayIcon, PollIcon, ProgressIcon, ReplayDisabledIcon, RocketIcon, SearchIcon, SmileIcon, StackedEmailIcon, TodayIcon, TrendingDownIcon, TrendingUpIcon, VideoCamOffIcon, VideoCamOffSolidIcon, VideoCamOnIcon, VideoCamOnSolidIcon, VolumeOffIcon, VolumeOffSolidIcon, VolumeUpIcon, VolumeUpSolidIcon, WarningIcon, WarningSolidIcon, };
|