demio-ui 1.0.61 → 1.0.63
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 +3 -3
- package/dist/cjs/types/src/icons/index.d.ts +4 -1
- package/dist/esm/index.css +1 -1
- package/dist/esm/index.js +3 -3
- package/dist/esm/types/src/icons/index.d.ts +4 -1
- package/dist/types.d.ts +205 -115
- package/package.json +1 -1
- package/dist/cjs/types/src/components/ScrollArea/ScrollArea.d.ts +0 -6
- package/dist/cjs/types/src/components/ScrollArea/index.d.ts +0 -1
- package/dist/esm/types/src/components/ScrollArea/ScrollArea.d.ts +0 -6
- package/dist/esm/types/src/components/ScrollArea/index.d.ts +0 -1
|
@@ -9,11 +9,13 @@ import CheckboxIcon from './checkbox.svg';
|
|
|
9
9
|
import CheckboxUncheckIcon from './checkbox_uncheck.svg';
|
|
10
10
|
import CheckCircleIcon from './check_circle.svg';
|
|
11
11
|
import CloseIcon from './close.svg';
|
|
12
|
+
import CustomizeIcon from './customize.svg';
|
|
12
13
|
import DeleteIcon from './delete.svg';
|
|
13
14
|
import EventDetailsIcon from './event_details.svg';
|
|
14
15
|
import EventRepeatIcon from './event_repeat.svg';
|
|
15
16
|
import InfoIcon from './info.svg';
|
|
16
17
|
import InfoSolidIcon from './info-1.svg';
|
|
18
|
+
import MaterialsIcon from './materials.svg';
|
|
17
19
|
import MicOffIcon from './mic_off-1.svg';
|
|
18
20
|
import MicOffSolidIcon from './mic_off.svg';
|
|
19
21
|
import MicOnfIcon from './mic.svg';
|
|
@@ -22,6 +24,7 @@ import PasswordEyeIcon from './password_eye.svg';
|
|
|
22
24
|
import PasswordEyeCrossedIcon from './password_eye_crossed.svg';
|
|
23
25
|
import PlayIcon from './play.svg';
|
|
24
26
|
import SmileIcon from './smile.svg';
|
|
27
|
+
import StackedEmailIcon from './stacked_email.svg';
|
|
25
28
|
import TodayIcon from './today.svg';
|
|
26
29
|
import VideoCamOffIcon from './videocam_off.svg';
|
|
27
30
|
import VideoCamOffSolidIcon from './videocam_off-1.svg';
|
|
@@ -33,4 +36,4 @@ import VolumeUpIcon from './volume_up-1.svg';
|
|
|
33
36
|
import VolumeUpSolidIcon from './volume_up.svg';
|
|
34
37
|
import WarningIcon from './warning-1.svg';
|
|
35
38
|
import WarningSolidIcon from './warning.svg';
|
|
36
|
-
export { AddIcon, ArrowDownIcon, ArrowLeftIcon, BlockIcon, BlurOnIcon, CachedIcon, CalendarIcon, CheckboxIcon, CheckboxUncheckIcon, CheckCircleIcon, CloseIcon, DeleteIcon, EventDetailsIcon, EventRepeatIcon, InfoIcon, InfoSolidIcon, MicOffIcon, MicOffSolidIcon, MicOnfIcon, MicOnSolidIcon, PasswordEyeIcon, PasswordEyeCrossedIcon, PlayIcon, SmileIcon, TodayIcon, VideoCamOffIcon, VideoCamOffSolidIcon, VideoCamOnIcon, VideoCamOnSolidIcon, VolumeOffIcon, VolumeOffSolidIcon, VolumeUpIcon, VolumeUpSolidIcon, WarningIcon, WarningSolidIcon, };
|
|
39
|
+
export { AddIcon, ArrowDownIcon, ArrowLeftIcon, BlockIcon, BlurOnIcon, CachedIcon, CalendarIcon, CheckboxIcon, CheckboxUncheckIcon, CheckCircleIcon, CloseIcon, CustomizeIcon, DeleteIcon, EventDetailsIcon, EventRepeatIcon, InfoIcon, InfoSolidIcon, MaterialsIcon, MicOffIcon, MicOffSolidIcon, MicOnfIcon, MicOnSolidIcon, PasswordEyeIcon, PasswordEyeCrossedIcon, PlayIcon, SmileIcon, StackedEmailIcon, TodayIcon, VideoCamOffIcon, VideoCamOffSolidIcon, VideoCamOnIcon, VideoCamOnSolidIcon, VolumeOffIcon, VolumeOffSolidIcon, VolumeUpIcon, VolumeUpSolidIcon, WarningIcon, WarningSolidIcon, };
|