demio-ui 2.0.11 → 2.1.2
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/README.md +148 -13
- package/dist/cjs/index.css +1 -1
- package/dist/cjs/index.js +3 -3
- package/dist/cjs/types/src/components/Toast/Toast.d.ts +6 -0
- package/dist/cjs/types/src/components/Toast/index.d.ts +1 -0
- package/dist/cjs/types/src/icons/index.d.ts +5 -1
- package/dist/esm/index.css +1 -1
- package/dist/esm/index.js +3 -3
- package/dist/esm/types/src/components/Toast/Toast.d.ts +6 -0
- package/dist/esm/types/src/components/Toast/index.d.ts +1 -0
- package/dist/esm/types/src/icons/index.d.ts +5 -1
- package/dist/types.d.ts +247 -234
- package/package.json +6 -4
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './Toast';
|
|
@@ -5,6 +5,7 @@ import BlockIcon from './block.svg';
|
|
|
5
5
|
import BlurOnIcon from './blur_on.svg';
|
|
6
6
|
import CachedIcon from './cached.svg';
|
|
7
7
|
import CalendarIcon from './calendar.svg';
|
|
8
|
+
import CalendarStarIcon from './calendar_star.svg';
|
|
8
9
|
import CheckCircleIcon from './check_circle.svg';
|
|
9
10
|
import CheckboxIcon from './checkbox.svg';
|
|
10
11
|
import CheckboxUncheckIcon from './checkbox_uncheck.svg';
|
|
@@ -18,10 +19,12 @@ import EventDetailsIcon from './event_details.svg';
|
|
|
18
19
|
import EventRepeatIcon from './event_repeat.svg';
|
|
19
20
|
import ExclamationIcon from './exclamation.svg';
|
|
20
21
|
import ExternalLinkIcon from './external_link.svg';
|
|
22
|
+
import FileIcon from './file.svg';
|
|
21
23
|
import InfoIcon from './info.svg';
|
|
22
24
|
import InfoSolidIcon from './info-1.svg';
|
|
23
25
|
import ItemsIcon from './items.svg';
|
|
24
26
|
import ListIcon from './list.svg';
|
|
27
|
+
import ListThIcon from './list_th.svg';
|
|
25
28
|
import LockIcon from './lock.svg';
|
|
26
29
|
import MagicIcon from './magic.svg';
|
|
27
30
|
import MaterialsIcon from './materials.svg';
|
|
@@ -32,6 +35,7 @@ import MicOnfIcon from './mic.svg';
|
|
|
32
35
|
import PasswordEyeCrossedIcon from './password_eye_crossed.svg';
|
|
33
36
|
import PasswordEyeIcon from './password_eye.svg';
|
|
34
37
|
import PlayIcon from './play.svg';
|
|
38
|
+
import PollIcon from './poll.svg';
|
|
35
39
|
import ProgressIcon from './progress.svg';
|
|
36
40
|
import ReplayDisabledIcon from './replay_disabled.svg';
|
|
37
41
|
import SearchIcon from './search.svg';
|
|
@@ -48,4 +52,4 @@ import VolumeUpIcon from './volume_up-1.svg';
|
|
|
48
52
|
import VolumeUpSolidIcon from './volume_up.svg';
|
|
49
53
|
import WarningIcon from './warning-1.svg';
|
|
50
54
|
import WarningSolidIcon from './warning.svg';
|
|
51
|
-
export { AddIcon, ArrowDownIcon, ArrowLeftIcon, BlockIcon, BlurOnIcon, CachedIcon, CalendarIcon, ExternalLinkIcon, CheckboxIcon, CheckboxUncheckIcon, CheckCircleIcon, ClockIcon, CloseIcon, CustomizeIcon, DeleteIcon, DotsIcon, ElectricBoltIcon, EventDetailsIcon, EventRepeatIcon, ExclamationIcon, InfoIcon, InfoSolidIcon, ItemsIcon, ListIcon, LockIcon, MagicIcon, MaterialsIcon, MicOffIcon, MicOffSolidIcon, MicOnfIcon, MicOnSolidIcon, PasswordEyeIcon, PasswordEyeCrossedIcon, PlayIcon, ProgressIcon, ReplayDisabledIcon, SearchIcon, SmileIcon, StackedEmailIcon, TodayIcon, VideoCamOffIcon, VideoCamOffSolidIcon, VideoCamOnIcon, VideoCamOnSolidIcon, VolumeOffIcon, VolumeOffSolidIcon, VolumeUpIcon, VolumeUpSolidIcon, WarningIcon, WarningSolidIcon, };
|
|
55
|
+
export { AddIcon, ArrowDownIcon, ArrowLeftIcon, BlockIcon, BlurOnIcon, CachedIcon, CalendarIcon, CalendarStarIcon, ExternalLinkIcon, FileIcon, 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, SearchIcon, SmileIcon, StackedEmailIcon, TodayIcon, VideoCamOffIcon, VideoCamOffSolidIcon, VideoCamOnIcon, VideoCamOnSolidIcon, VolumeOffIcon, VolumeOffSolidIcon, VolumeUpIcon, VolumeUpSolidIcon, WarningIcon, WarningSolidIcon, };
|