demio-ui 2.1.106 → 2.1.107
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 +4 -4
- package/dist/cjs/types/src/components/Pagination/Pagination.utils.d.ts +7 -0
- package/dist/cjs/types/src/hooks/useCroppedImage.d.ts +4 -0
- package/dist/cjs/types/src/icons/index.d.ts +3 -1
- package/dist/esm/index.js +4 -4
- package/dist/esm/types/src/components/Pagination/Pagination.utils.d.ts +7 -0
- package/dist/esm/types/src/hooks/useCroppedImage.d.ts +4 -0
- package/dist/esm/types/src/icons/index.d.ts +3 -1
- package/dist/types.d.ts +223 -199
- package/package.json +1 -1
|
@@ -46,8 +46,10 @@ import MicOnfIcon from './mic.svg';
|
|
|
46
46
|
import MicOffSolidIcon from './mic_off.svg';
|
|
47
47
|
import MicOffIcon from './mic_off-1.svg';
|
|
48
48
|
import MicOnSolidIcon from './mic-1.svg';
|
|
49
|
+
import OutStageIcon from './out-stage.svg';
|
|
49
50
|
import PasswordEyeIcon from './password_eye.svg';
|
|
50
51
|
import PasswordEyeCrossedIcon from './password_eye_crossed.svg';
|
|
52
|
+
import PeopleCommunityIcon from './people-community.svg';
|
|
51
53
|
import Person from './person.svg';
|
|
52
54
|
import PlayIcon from './play.svg';
|
|
53
55
|
import PollIcon from './poll.svg';
|
|
@@ -76,4 +78,4 @@ import VolumeUpSolidIcon from './volume_up.svg';
|
|
|
76
78
|
import VolumeUpIcon from './volume_up-1.svg';
|
|
77
79
|
import WarningSolidIcon from './warning.svg';
|
|
78
80
|
import WarningIcon from './warning-1.svg';
|
|
79
|
-
export { AddIcon, ArrowDownIcon, ArrowLeftDoubleIcon, ArrowLeftIcon, ArrowLeftSingleIcon, BarChartIcon, BlockIcon, BlurOnIcon, CachedIcon, CalendarIcon, CalendarStarIcon, ChatIcon, CheckboxIcon, CheckboxUncheckIcon, CheckCircleIcon, CheckCircleSolidIcon, ClockIcon, CloseIcon, CopyIcon, CustomizeIcon, DeleteIcon, DotsIcon, EditIcon, ElectricBoltIcon, EventDetailsIcon, EventRepeatIcon, ExclamationIcon, ExternalLinkIcon, FeatureActionIcon, FileIcon, FilterListIcon, HelpSolidIcon, InfoCircleIcon, InfoCircleSolidIcon, InfoIcon, InfoSolidIcon, ItemsIcon, ListIcon, ListThIcon, LocationIcon, LockIcon, MagicIcon, MailIcon, MaterialsIcon, MicOffIcon, MicOffSolidIcon, MicOnfIcon, MicOnSolidIcon, PasswordEyeCrossedIcon, PasswordEyeIcon, Person, PlayIcon, PollIcon, ProgressIcon, ReplayDisabledIcon, RestartIcon, RocketIcon, ScreenShareIcon, ScreenShareWindowIcon, SearchIcon, SmileIcon, SpotlightIcon, StackedEmailIcon, SyncIcon, TimesCircleIcon, TodayIcon, TrendingDownIcon, TrendingUpIcon, VideoCamOffIcon, VideoCamOffSolidIcon, VideoCamOnIcon, VideoCamOnSolidIcon, VolumeOffIcon, VolumeOffSolidIcon, VolumeUpIcon, VolumeUpSolidIcon, WarningIcon, WarningSolidIcon, };
|
|
81
|
+
export { AddIcon, ArrowDownIcon, ArrowLeftDoubleIcon, ArrowLeftIcon, ArrowLeftSingleIcon, BarChartIcon, BlockIcon, BlurOnIcon, CachedIcon, CalendarIcon, CalendarStarIcon, ChatIcon, CheckboxIcon, CheckboxUncheckIcon, CheckCircleIcon, CheckCircleSolidIcon, ClockIcon, CloseIcon, CopyIcon, CustomizeIcon, DeleteIcon, DotsIcon, EditIcon, ElectricBoltIcon, EventDetailsIcon, EventRepeatIcon, ExclamationIcon, ExternalLinkIcon, FeatureActionIcon, FileIcon, FilterListIcon, HelpSolidIcon, InfoCircleIcon, InfoCircleSolidIcon, InfoIcon, InfoSolidIcon, ItemsIcon, ListIcon, ListThIcon, LocationIcon, LockIcon, MagicIcon, MailIcon, MaterialsIcon, MicOffIcon, MicOffSolidIcon, MicOnfIcon, MicOnSolidIcon, OutStageIcon, PasswordEyeCrossedIcon, PasswordEyeIcon, PeopleCommunityIcon, Person, PlayIcon, PollIcon, ProgressIcon, ReplayDisabledIcon, RestartIcon, RocketIcon, ScreenShareIcon, ScreenShareWindowIcon, SearchIcon, SmileIcon, SpotlightIcon, StackedEmailIcon, SyncIcon, TimesCircleIcon, TodayIcon, TrendingDownIcon, TrendingUpIcon, VideoCamOffIcon, VideoCamOffSolidIcon, VideoCamOnIcon, VideoCamOnSolidIcon, VolumeOffIcon, VolumeOffSolidIcon, VolumeUpIcon, VolumeUpSolidIcon, WarningIcon, WarningSolidIcon, };
|