@zolaha/react-noto-animated-emoji 2.2.0 → 2.2.1
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/AnimateEmojiModal.d.ts +4 -0
- package/dist/index.cjs.js +3 -3
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +1240 -1231
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
|
@@ -40,6 +40,10 @@ export interface AnimateEmojiModalProps {
|
|
|
40
40
|
style?: React.CSSProperties;
|
|
41
41
|
/** Size of each emoji in the picker grid in px (default: 36) */
|
|
42
42
|
emojiSize?: number;
|
|
43
|
+
/** Whether to show a darkened backdrop overlay. (default: true for center, false otherwise) */
|
|
44
|
+
showOverlay?: boolean;
|
|
45
|
+
/** Whether clicking the overlay backdrop closes the modal. (default: true) */
|
|
46
|
+
closeOnOverlayClick?: boolean;
|
|
43
47
|
}
|
|
44
48
|
declare const AnimateEmojiModal: React.FC<AnimateEmojiModalProps>;
|
|
45
49
|
export default AnimateEmojiModal;
|