demio-ui 2.1.55 → 2.1.57
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 +3 -3
- package/dist/cjs/types/src/icons/index.d.ts +4 -1
- package/dist/esm/index.js +3 -3
- package/dist/esm/types/src/icons/index.d.ts +4 -1
- package/dist/types.d.ts +168 -129
- package/package.json +1 -1
|
@@ -11,6 +11,7 @@ import CheckboxIcon from './checkbox.svg';
|
|
|
11
11
|
import CheckboxUncheckIcon from './checkbox_uncheck.svg';
|
|
12
12
|
import ClockIcon from './clock.svg';
|
|
13
13
|
import CloseIcon from './close.svg';
|
|
14
|
+
import CopyIcon from './copy.svg';
|
|
14
15
|
import CustomizeIcon from './customize.svg';
|
|
15
16
|
import DeleteIcon from './delete.svg';
|
|
16
17
|
import DotsIcon from './dots.svg';
|
|
@@ -28,8 +29,10 @@ import ItemsIcon from './items.svg';
|
|
|
28
29
|
import ArrowDownIcon from './keyboard_arrow_down.svg';
|
|
29
30
|
import ListIcon from './list.svg';
|
|
30
31
|
import ListThIcon from './list_th.svg';
|
|
32
|
+
import LocationIcon from './location.svg';
|
|
31
33
|
import LockIcon from './lock.svg';
|
|
32
34
|
import MagicIcon from './magic.svg';
|
|
35
|
+
import MailIcon from './mail.svg';
|
|
33
36
|
import MaterialsIcon from './materials.svg';
|
|
34
37
|
import MicOnfIcon from './mic.svg';
|
|
35
38
|
import MicOffSolidIcon from './mic_off.svg';
|
|
@@ -59,4 +62,4 @@ import VolumeUpSolidIcon from './volume_up.svg';
|
|
|
59
62
|
import VolumeUpIcon from './volume_up-1.svg';
|
|
60
63
|
import WarningSolidIcon from './warning.svg';
|
|
61
64
|
import WarningIcon from './warning-1.svg';
|
|
62
|
-
export { AddIcon, ArrowDownIcon, ArrowLeftIcon, BarChartIcon, BlockIcon, BlurOnIcon, CachedIcon, CalendarIcon, CalendarStarIcon, CheckboxIcon, CheckboxUncheckIcon, CheckCircleIcon, ClockIcon, CloseIcon, CustomizeIcon, DeleteIcon, DotsIcon, EditIcon, 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, };
|
|
65
|
+
export { AddIcon, ArrowDownIcon, ArrowLeftIcon, BarChartIcon, BlockIcon, BlurOnIcon, CachedIcon, CalendarIcon, CalendarStarIcon, CheckboxIcon, CheckboxUncheckIcon, CheckCircleIcon, ClockIcon, CloseIcon, CopyIcon, CustomizeIcon, DeleteIcon, DotsIcon, EditIcon, ElectricBoltIcon, EventDetailsIcon, EventRepeatIcon, ExclamationIcon, ExternalLinkIcon, FileIcon, FilterListIcon, InfoIcon, InfoSolidIcon, ItemsIcon, ListIcon, ListThIcon, LocationIcon, LockIcon, MagicIcon, MailIcon, 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, };
|