react-input-emoji 5.8.1 → 5.9.0-beta.2
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 +600 -1052
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +600 -1052
- 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