react-input-emoji 5.8.1 → 5.9.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.es.js +23 -3
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +23 -3
- package/dist/index.js.map +1 -1
- package/dist/src/utils/input-event-utils.d.ts +9 -2
- package/package.json +1 -1
@@ -4,8 +4,15 @@
|
|
4
4
|
*/
|
5
5
|
export function handleCopy(event: React.ClipboardEvent): void;
|
6
6
|
/**
|
7
|
-
*
|
8
|
-
|
7
|
+
* Caches the current text selection range
|
8
|
+
*/
|
9
|
+
export function cacheCurrentRange(): void;
|
10
|
+
/**
|
11
|
+
* Clears the cached text selection range
|
12
|
+
*/
|
13
|
+
export function cleanCurrentRange(): void;
|
14
|
+
/**
|
15
|
+
* @param {string} html - HTML string to be pasted at the caret position
|
9
16
|
*/
|
10
17
|
export function handlePasteHtmlAtCaret(html: string): void;
|
11
18
|
/**
|
package/package.json
CHANGED