react-input-emoji 5.9.0-beta.2 → 5.9.0-beta.4
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/index.es.js +356 -354
- package/dist/index.js +361 -359
- package/package.json +2 -3
- package/dist/src/types/types.d.ts +0 -32
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "react-input-emoji",
|
3
|
-
"version": "5.9.0-beta.
|
3
|
+
"version": "5.9.0-beta.4",
|
4
4
|
"description": "A React input with an option to add an emoji with language support.",
|
5
5
|
"homepage": "https://cesarwbr.github.io/react-input-emoji/",
|
6
6
|
"author": "cesarwbr",
|
@@ -25,8 +25,6 @@
|
|
25
25
|
"test:watch": "jest --watch",
|
26
26
|
"build": "tsc && rollup -c",
|
27
27
|
"start": "rollup -c -w",
|
28
|
-
"prepare": "yarn run build",
|
29
|
-
"predeploy": "cd example && yarn install && yarn run build",
|
30
28
|
"deploy": "gh-pages -d example/build",
|
31
29
|
"gen:types": "tsc"
|
32
30
|
},
|
@@ -38,6 +36,7 @@
|
|
38
36
|
"@babel/cli": "^7.14.3",
|
39
37
|
"@babel/core": "^7.14.3",
|
40
38
|
"@babel/plugin-external-helpers": "^7.12.13",
|
39
|
+
"@babel/plugin-transform-optional-chaining": "^7.24.8",
|
41
40
|
"@babel/preset-env": "^7.14.4",
|
42
41
|
"@babel/preset-react": "^7.13.13",
|
43
42
|
"@rollup/plugin-babel": "^5.3.0",
|
@@ -1,32 +0,0 @@
|
|
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";
|