demio-ui 1.0.25 → 1.0.26
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/components/ScrollArea/ScrollArea.d.ts +6 -0
- package/dist/cjs/types/src/components/ScrollArea/index.d.ts +1 -0
- package/dist/cjs/types/src/icons/index.d.ts +9 -8
- package/dist/esm/index.js +2 -2
- package/dist/esm/types/src/components/ScrollArea/ScrollArea.d.ts +6 -0
- package/dist/esm/types/src/components/ScrollArea/index.d.ts +1 -0
- package/dist/esm/types/src/icons/index.d.ts +9 -8
- package/dist/types.d.ts +109 -95
- package/package.json +1 -1
- package/dist/.DS_Store +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from "./ScrollArea";
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import AddIcon from './add.svg';
|
|
2
|
+
import ArrowDownIcon from './keyboard_arrow_down.svg';
|
|
2
3
|
import BlockIcon from './block.svg';
|
|
3
4
|
import BlurOnIcon from './blur_on.svg';
|
|
4
5
|
import CachedIcon from './cached.svg';
|
|
@@ -7,19 +8,19 @@ import CloseIcon from './close.svg';
|
|
|
7
8
|
import DeleteIcon from './delete.svg';
|
|
8
9
|
import InfoIcon from './info.svg';
|
|
9
10
|
import InfoSolidIcon from './info-1.svg';
|
|
10
|
-
import ArrowDownIcon from './keyboard_arrow_down.svg';
|
|
11
|
-
import MicOnSolidIcon from './mic-1.svg';
|
|
12
|
-
import MicOnfIcon from './mic.svg';
|
|
13
11
|
import MicOffIcon from './mic_off-1.svg';
|
|
14
12
|
import MicOffSolidIcon from './mic_off.svg';
|
|
15
|
-
import
|
|
16
|
-
import
|
|
17
|
-
import
|
|
13
|
+
import MicOnfIcon from './mic.svg';
|
|
14
|
+
import MicOnSolidIcon from './mic-1.svg';
|
|
15
|
+
import PlayIcon from './play.svg';
|
|
18
16
|
import VideoCamOffIcon from './videocam_off.svg';
|
|
17
|
+
import VideoCamOffSolidIcon from './videocam_off-1.svg';
|
|
18
|
+
import VideoCamOnIcon from './videocam.svg';
|
|
19
|
+
import VideoCamOnSolidIcon from './videocam-1.svg';
|
|
19
20
|
import VolumeOffIcon from './volume_off-1.svg';
|
|
20
21
|
import VolumeOffSolidIcon from './volume_off.svg';
|
|
21
22
|
import VolumeUpIcon from './volume_up-1.svg';
|
|
22
23
|
import VolumeUpSolidIcon from './volume_up.svg';
|
|
23
|
-
import WarningSolidIcon from './warning.svg';
|
|
24
24
|
import WarningIcon from './warning-1.svg';
|
|
25
|
-
|
|
25
|
+
import WarningSolidIcon from './warning.svg';
|
|
26
|
+
export { AddIcon, ArrowDownIcon, BlockIcon, BlurOnIcon, CachedIcon, CheckCircleIcon, CloseIcon, DeleteIcon, InfoIcon, InfoSolidIcon, MicOffIcon, MicOffSolidIcon, MicOnfIcon, MicOnSolidIcon, PlayIcon, VideoCamOffIcon, VideoCamOffSolidIcon, VideoCamOnIcon, VideoCamOnSolidIcon, VolumeOffIcon, VolumeOffSolidIcon, VolumeUpIcon, VolumeUpSolidIcon, WarningIcon, WarningSolidIcon, };
|