demio-ui 2.1.9 → 2.1.11

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.
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ type Props = {
3
+ message?: string;
4
+ };
5
+ declare function Toast({ message, }: Props): React.JSX.Element;
6
+ export default Toast;
@@ -0,0 +1 @@
1
+ export { default } from './Toast';
@@ -44,6 +44,8 @@ import SearchIcon from './search.svg';
44
44
  import SmileIcon from './smile.svg';
45
45
  import StackedEmailIcon from './stacked_email.svg';
46
46
  import TodayIcon from './today.svg';
47
+ import TrendingUpIcon from './trending_up.svg';
48
+ import TrendingDownIcon from './trending_down.svg';
47
49
  import VideoCamOffIcon from './videocam_off.svg';
48
50
  import VideoCamOffSolidIcon from './videocam_off-1.svg';
49
51
  import VideoCamOnIcon from './videocam.svg';
@@ -54,4 +56,4 @@ import VolumeUpIcon from './volume_up-1.svg';
54
56
  import VolumeUpSolidIcon from './volume_up.svg';
55
57
  import WarningIcon from './warning-1.svg';
56
58
  import WarningSolidIcon from './warning.svg';
57
- export { AddIcon, ArrowDownIcon, ArrowLeftIcon, BlockIcon, BlurOnIcon, CachedIcon, CalendarIcon, CalendarStarIcon, ExternalLinkIcon, FileIcon, FilterListIcon, CheckboxIcon, CheckboxUncheckIcon, CheckCircleIcon, ClockIcon, CloseIcon, CustomizeIcon, DeleteIcon, DotsIcon, ElectricBoltIcon, EventDetailsIcon, EventRepeatIcon, ExclamationIcon, InfoIcon, InfoSolidIcon, ItemsIcon, ListIcon, ListThIcon, LockIcon, MagicIcon, MaterialsIcon, MicOffIcon, MicOffSolidIcon, MicOnfIcon, MicOnSolidIcon, PasswordEyeIcon, PasswordEyeCrossedIcon, PlayIcon, PollIcon, ProgressIcon, ReplayDisabledIcon, RocketIcon, SearchIcon, SmileIcon, StackedEmailIcon, TodayIcon, VideoCamOffIcon, VideoCamOffSolidIcon, VideoCamOnIcon, VideoCamOnSolidIcon, VolumeOffIcon, VolumeOffSolidIcon, VolumeUpIcon, VolumeUpSolidIcon, WarningIcon, WarningSolidIcon, };
59
+ export { AddIcon, ArrowDownIcon, ArrowLeftIcon, BlockIcon, BlurOnIcon, CachedIcon, CalendarIcon, CalendarStarIcon, ExternalLinkIcon, FileIcon, FilterListIcon, CheckboxIcon, CheckboxUncheckIcon, CheckCircleIcon, ClockIcon, CloseIcon, CustomizeIcon, DeleteIcon, DotsIcon, ElectricBoltIcon, EventDetailsIcon, EventRepeatIcon, ExclamationIcon, InfoIcon, InfoSolidIcon, ItemsIcon, ListIcon, ListThIcon, LockIcon, MagicIcon, MaterialsIcon, MicOffIcon, MicOffSolidIcon, MicOnfIcon, MicOnSolidIcon, PasswordEyeIcon, PasswordEyeCrossedIcon, PlayIcon, PollIcon, ProgressIcon, ReplayDisabledIcon, RocketIcon, SearchIcon, SmileIcon, StackedEmailIcon, TodayIcon, TrendingDownIcon, TrendingUpIcon, VideoCamOffIcon, VideoCamOffSolidIcon, VideoCamOnIcon, VideoCamOnSolidIcon, VolumeOffIcon, VolumeOffSolidIcon, VolumeUpIcon, VolumeUpSolidIcon, WarningIcon, WarningSolidIcon, };