react-input-emoji 5.6.4 → 5.6.5
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.es.js +31 -21
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +31 -21
- package/dist/index.js.map +1 -1
- package/dist/src/types/types.d.ts +32 -0
- package/package.json +1 -1
@@ -0,0 +1,32 @@
|
|
1
|
+
export interface EmojiMartItem {
|
2
|
+
id: string;
|
3
|
+
name: string;
|
4
|
+
native: string;
|
5
|
+
unified: string;
|
6
|
+
keywords: string[];
|
7
|
+
shortcodes: string;
|
8
|
+
emoticons: string[];
|
9
|
+
}
|
10
|
+
export interface MentionUser {
|
11
|
+
id: string;
|
12
|
+
name: string;
|
13
|
+
image: string;
|
14
|
+
}
|
15
|
+
export type Listerner<T> = (event: T) => void;
|
16
|
+
export type ListenerObj<T> = {
|
17
|
+
subscribe: (listerner: Listerner<T>) => () => void;
|
18
|
+
publish: (event?: T) => void;
|
19
|
+
currentListerners: Listerner<T>[];
|
20
|
+
};
|
21
|
+
export type TextInputListeners = {
|
22
|
+
keyDown: ListenerObj<any>;
|
23
|
+
keyUp: ListenerObj<any>;
|
24
|
+
arrowUp: ListenerObj<any>;
|
25
|
+
arrowDown: ListenerObj<any>;
|
26
|
+
enter: ListenerObj<any>;
|
27
|
+
focus: ListenerObj<any>;
|
28
|
+
blur: ListenerObj<any>;
|
29
|
+
};
|
30
|
+
export type SanitizeFn = (html: string) => string;
|
31
|
+
export type PolluteFn = (text: string) => string;
|
32
|
+
export type Languages = "ar" | "be" | "cs" | "de" | "en" | "es" | "fa" | "fi" | "fr" | "hi" | "it" | "ja" | "kr" | "pl" | "pt" | "ru" | "sa" | "tr" | "uk" | "vi" | "zh";
|
package/package.json
CHANGED