react-mentions 4.4.6 → 4.4.8
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/CHANGELOG.md +18 -0
- package/README.md +1 -3
- package/dist/react-mentions.cjs.dev.js +259 -311
- package/dist/react-mentions.cjs.prod.js +169 -246
- package/dist/react-mentions.esm.js +260 -312
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,23 @@
|
|
1
1
|
# react-mentions
|
2
2
|
|
3
|
+
## 4.4.8
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- ad43016: Typing fix in SuggestionsOverlay.js
|
8
|
+
- e13731f: Fix package.json properties for release
|
9
|
+
- 3f40576: Fixed the suggestions container that was not aligned with the caret position
|
10
|
+
- db2d91a: Fix cursor jumping to the end of the textfield when pasting and using React 18
|
11
|
+
- 1eef7df: Fix scroll into view automatically
|
12
|
+
- a69db87: Custom container scrolling fixed, now works like other containers
|
13
|
+
|
14
|
+
## 4.4.7
|
15
|
+
|
16
|
+
### Patch Changes
|
17
|
+
|
18
|
+
- 834240e: SuggestionsOverlay.js refactored to functional component
|
19
|
+
- f8e5793: Highlighter.js converted to functional component
|
20
|
+
|
3
21
|
## 4.4.6
|
4
22
|
|
5
23
|
### Patch Changes
|
package/README.md
CHANGED