demio-ui 1.0.84 → 1.0.86
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 +2 -2
- package/dist/cjs/types/src/icons/index.d.ts +3 -1
- package/dist/esm/index.js +3 -3
- package/dist/esm/types/src/icons/index.d.ts +3 -1
- package/dist/types.d.ts +144 -114
- package/package.json +1 -1
|
@@ -18,6 +18,7 @@ import InfoIcon from './info.svg';
|
|
|
18
18
|
import InfoSolidIcon from './info-1.svg';
|
|
19
19
|
import ItemsIcon from './items.svg';
|
|
20
20
|
import ListIcon from './list.svg';
|
|
21
|
+
import LockIcon from './lock.svg';
|
|
21
22
|
import MagicIcon from './magic.svg';
|
|
22
23
|
import MaterialsIcon from './materials.svg';
|
|
23
24
|
import MicOffIcon from './mic_off-1.svg';
|
|
@@ -27,6 +28,7 @@ import MicOnSolidIcon from './mic-1.svg';
|
|
|
27
28
|
import PasswordEyeIcon from './password_eye.svg';
|
|
28
29
|
import PasswordEyeCrossedIcon from './password_eye_crossed.svg';
|
|
29
30
|
import PlayIcon from './play.svg';
|
|
31
|
+
import ProgressIcon from './progress.svg';
|
|
30
32
|
import SearchIcon from './search.svg';
|
|
31
33
|
import SmileIcon from './smile.svg';
|
|
32
34
|
import StackedEmailIcon from './stacked_email.svg';
|
|
@@ -41,4 +43,4 @@ import VolumeUpIcon from './volume_up-1.svg';
|
|
|
41
43
|
import VolumeUpSolidIcon from './volume_up.svg';
|
|
42
44
|
import WarningIcon from './warning-1.svg';
|
|
43
45
|
import WarningSolidIcon from './warning.svg';
|
|
44
|
-
export { AddIcon, ArrowDownIcon, ArrowLeftIcon, BlockIcon, BlurOnIcon, CachedIcon, CalendarIcon, CheckboxIcon, CheckboxUncheckIcon, CheckCircleIcon, ClockIcon, CloseIcon, CustomizeIcon, DeleteIcon, EventDetailsIcon, EventRepeatIcon, InfoIcon, InfoSolidIcon, ItemsIcon, ListIcon, MagicIcon, MaterialsIcon, MicOffIcon, MicOffSolidIcon, MicOnfIcon, MicOnSolidIcon, PasswordEyeIcon, PasswordEyeCrossedIcon, PlayIcon, SearchIcon, SmileIcon, StackedEmailIcon, TodayIcon, VideoCamOffIcon, VideoCamOffSolidIcon, VideoCamOnIcon, VideoCamOnSolidIcon, VolumeOffIcon, VolumeOffSolidIcon, VolumeUpIcon, VolumeUpSolidIcon, WarningIcon, WarningSolidIcon, };
|
|
46
|
+
export { AddIcon, ArrowDownIcon, ArrowLeftIcon, BlockIcon, BlurOnIcon, CachedIcon, CalendarIcon, CheckboxIcon, CheckboxUncheckIcon, CheckCircleIcon, ClockIcon, CloseIcon, CustomizeIcon, DeleteIcon, EventDetailsIcon, EventRepeatIcon, InfoIcon, InfoSolidIcon, ItemsIcon, ListIcon, LockIcon, MagicIcon, MaterialsIcon, MicOffIcon, MicOffSolidIcon, MicOnfIcon, MicOnSolidIcon, PasswordEyeIcon, PasswordEyeCrossedIcon, PlayIcon, ProgressIcon, SearchIcon, SmileIcon, StackedEmailIcon, TodayIcon, VideoCamOffIcon, VideoCamOffSolidIcon, VideoCamOnIcon, VideoCamOnSolidIcon, VolumeOffIcon, VolumeOffSolidIcon, VolumeUpIcon, VolumeUpSolidIcon, WarningIcon, WarningSolidIcon, };
|