jodit-react 5.0.2 → 5.0.7
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 +7 -0
- package/__mocks__/styleMock.js +2 -0
- package/build/jodit-react.js +1 -1
- package/build/jodit-react.js.LICENSE.txt +1 -1
- package/build/types/JoditEditor.d.ts +7 -8
- package/jest.config.ts +191 -0
- package/package.json +94 -82
- package/src/JoditEditor.tsx +11 -11
- package/tests/__snapshots__/smoke.test.tsx.snap +1421 -0
- package/tests/onchange.test.tsx +28 -0
- package/tests/smoke.test.tsx +31 -0
- package/tsconfig.json +5 -3
package/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,13 @@
|
|
|
9
9
|
> - :house: [Internal]
|
|
10
10
|
> - :nail_care: [Polish]
|
|
11
11
|
|
|
12
|
+
## 5.0.5
|
|
13
|
+
|
|
14
|
+
- [Fix: Avoid "Abort async" error by utilizing waitForReady API in Jodit destruct handling #287](https://github.com/jodit/jodit-react/pull/287)
|
|
15
|
+
- Fixed Config type issue
|
|
16
|
+
- Support React 19
|
|
17
|
+
-
|
|
18
|
+
|
|
12
19
|
## 4.0.1
|
|
13
20
|
|
|
14
21
|
-
|