demio-ui 1.0.83 → 1.0.85
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/Modal/Modal.d.ts +2 -1
- package/dist/cjs/types/src/icons/index.d.ts +2 -1
- package/dist/esm/index.js +3 -3
- package/dist/esm/types/src/components/Modal/Modal.d.ts +2 -1
- package/dist/esm/types/src/icons/index.d.ts +2 -1
- package/dist/types.d.ts +131 -115
- package/package.json +1 -1
|
@@ -4,6 +4,7 @@ type Props = {
|
|
|
4
4
|
contentClassName?: string;
|
|
5
5
|
hideCloseButton?: boolean;
|
|
6
6
|
maxHeight?: string;
|
|
7
|
+
onClose?: () => void;
|
|
7
8
|
onOpenChange: (open: boolean) => void;
|
|
8
9
|
open: boolean;
|
|
9
10
|
overlayClassName: string;
|
|
@@ -16,5 +17,5 @@ type Props = {
|
|
|
16
17
|
- Esc closes the component automatically.
|
|
17
18
|
- [Accessibility and Keyboard Interactions](https://www.radix-ui.com/docs/primitives/components/dialog#accessibility)
|
|
18
19
|
**/
|
|
19
|
-
declare function Modal({ children, contentClassName, hideCloseButton, maxHeight,
|
|
20
|
+
declare function Modal({ children, contentClassName, hideCloseButton, maxHeight, onClose, onOpenChange, open, overlayClassName, title, width, }: Props): React.JSX.Element;
|
|
20
21
|
export default Modal;
|
|
@@ -27,6 +27,7 @@ import MicOnSolidIcon from './mic-1.svg';
|
|
|
27
27
|
import PasswordEyeIcon from './password_eye.svg';
|
|
28
28
|
import PasswordEyeCrossedIcon from './password_eye_crossed.svg';
|
|
29
29
|
import PlayIcon from './play.svg';
|
|
30
|
+
import ProgressIcon from './progress.svg';
|
|
30
31
|
import SearchIcon from './search.svg';
|
|
31
32
|
import SmileIcon from './smile.svg';
|
|
32
33
|
import StackedEmailIcon from './stacked_email.svg';
|
|
@@ -41,4 +42,4 @@ import VolumeUpIcon from './volume_up-1.svg';
|
|
|
41
42
|
import VolumeUpSolidIcon from './volume_up.svg';
|
|
42
43
|
import WarningIcon from './warning-1.svg';
|
|
43
44
|
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, };
|
|
45
|
+
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, ProgressIcon, SearchIcon, SmileIcon, StackedEmailIcon, TodayIcon, VideoCamOffIcon, VideoCamOffSolidIcon, VideoCamOnIcon, VideoCamOnSolidIcon, VolumeOffIcon, VolumeOffSolidIcon, VolumeUpIcon, VolumeUpSolidIcon, WarningIcon, WarningSolidIcon, };
|