@zolaha/react-noto-animated-emoji 2.1.0 → 2.2.0
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 +8 -0
- package/dist/emoji-keywords.d.ts +1 -0
- package/dist/index.cjs.js +3 -3
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +4084 -3351
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
|
@@ -24,6 +24,14 @@ export interface AnimateEmojiModalProps {
|
|
|
24
24
|
position?: ModalPosition;
|
|
25
25
|
/** Loop mode for emojis in the modal grid (default: true) */
|
|
26
26
|
loop?: boolean | number;
|
|
27
|
+
/** Autoplay emojis in the modal grid (default: true) */
|
|
28
|
+
autoplay?: boolean;
|
|
29
|
+
/** Replay animation when hovered in the grid (default: true) */
|
|
30
|
+
replayOnHover?: boolean;
|
|
31
|
+
/** Custom title for the modal. Set to null to hide title text. (default: "Emoji Picker") */
|
|
32
|
+
title?: React.ReactNode | null;
|
|
33
|
+
/** Hide the entire header including the close button. (default: false) */
|
|
34
|
+
hideHeader?: boolean;
|
|
27
35
|
/** 'dark' | 'light' (default: 'dark') */
|
|
28
36
|
theme?: 'dark' | 'light';
|
|
29
37
|
/** Extra class applied to the modal panel */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const EMOJI_KEYWORDS: Record<string, string>;
|