demio-ui 1.0.82 → 1.0.84
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/components/Modal/Modal.d.ts +2 -1
- package/dist/cjs/types/src/icons/index.d.ts +3 -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 +3 -1
- package/dist/types.d.ts +102 -71
- 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;
|
|
@@ -16,6 +16,8 @@ import EventDetailsIcon from './event_details.svg';
|
|
|
16
16
|
import EventRepeatIcon from './event_repeat.svg';
|
|
17
17
|
import InfoIcon from './info.svg';
|
|
18
18
|
import InfoSolidIcon from './info-1.svg';
|
|
19
|
+
import ItemsIcon from './items.svg';
|
|
20
|
+
import ListIcon from './list.svg';
|
|
19
21
|
import MagicIcon from './magic.svg';
|
|
20
22
|
import MaterialsIcon from './materials.svg';
|
|
21
23
|
import MicOffIcon from './mic_off-1.svg';
|
|
@@ -39,4 +41,4 @@ import VolumeUpIcon from './volume_up-1.svg';
|
|
|
39
41
|
import VolumeUpSolidIcon from './volume_up.svg';
|
|
40
42
|
import WarningIcon from './warning-1.svg';
|
|
41
43
|
import WarningSolidIcon from './warning.svg';
|
|
42
|
-
export { AddIcon, ArrowDownIcon, ArrowLeftIcon, BlockIcon, BlurOnIcon, CachedIcon, CalendarIcon, CheckboxIcon, CheckboxUncheckIcon, CheckCircleIcon, ClockIcon, CloseIcon, CustomizeIcon, DeleteIcon, EventDetailsIcon, EventRepeatIcon, InfoIcon, InfoSolidIcon, MagicIcon, MaterialsIcon, MicOffIcon, MicOffSolidIcon, MicOnfIcon, MicOnSolidIcon, PasswordEyeIcon, PasswordEyeCrossedIcon, PlayIcon, SearchIcon, SmileIcon, StackedEmailIcon, TodayIcon, VideoCamOffIcon, VideoCamOffSolidIcon, VideoCamOnIcon, VideoCamOnSolidIcon, VolumeOffIcon, VolumeOffSolidIcon, VolumeUpIcon, VolumeUpSolidIcon, WarningIcon, WarningSolidIcon, };
|
|
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, };
|