@tinymce/tinymce-react
Advanced tools
Comparing version 4.3.3-feature.20240322003649859.shaea4b75f to 4.3.3-feature.20240325031118397.sha8b97641
@@ -9,2 +9,22 @@ # Change log | ||
## 5.0.0 - 2024-03-25 | ||
### Added | ||
- Added `licenseKey` property that overrides the TinyMCE `license_key` init property. #INT-3291 | ||
- Added events `onInput`, `onCompositionEnd`, `onCompositionStart` & `onCompositionUpdate`. #INT-3291 | ||
- Added a JSDoc link to the TinyMCE 7 React Technical Reference docs page. #INT-3291 | ||
### Fixed | ||
- `readonly` init property is now properly typed as undefined, as it's overriden by the integration. #INT-3287 | ||
### Changed | ||
- Updated dependencies. #INT-3291 | ||
- Changed default cloudChannel to `'7'`. #INT-3291 | ||
### Improved | ||
- Improved `cloudChannel` type. #INT-3291 | ||
- Updated to Storybook v8 and it now uses react-vite as a bundler/builder instead of webpack. #INT-3291 | ||
- Storybook examples now use CSFv3 components. #INT-3291 | ||
- Tests now run against TinyMCE version 7 as well. #INT-3291 | ||
## 4.3.2 - 2023-11-20 | ||
@@ -11,0 +31,0 @@ |
@@ -24,2 +24,3 @@ import { Editor as TinyMCEEditor, EditorEvent, Events } from 'tinymce'; | ||
onFocusOut: EEventHandler<'focusout'>; | ||
onInput: EEventHandler<'input'>; | ||
onKeyDown: EEventHandler<'keydown'>; | ||
@@ -55,3 +56,2 @@ onKeyPress: EEventHandler<'keypress'>; | ||
onInit: EEventHandler<'init'>; | ||
onInput: EEventHandler<'input'>; | ||
onLoadContent: EEventHandler<'LoadContent'>; | ||
@@ -58,0 +58,0 @@ onNodeChange: EEventHandler<'NodeChange'>; |
@@ -24,2 +24,3 @@ import { Editor as TinyMCEEditor, EditorEvent, Events } from 'tinymce'; | ||
onFocusOut: EEventHandler<'focusout'>; | ||
onInput: EEventHandler<'input'>; | ||
onKeyDown: EEventHandler<'keydown'>; | ||
@@ -55,3 +56,2 @@ onKeyPress: EEventHandler<'keypress'>; | ||
onInit: EEventHandler<'init'>; | ||
onInput: EEventHandler<'input'>; | ||
onLoadContent: EEventHandler<'LoadContent'>; | ||
@@ -58,0 +58,0 @@ onNodeChange: EEventHandler<'NodeChange'>; |
@@ -73,4 +73,4 @@ { | ||
}, | ||
"version": "4.3.3-feature.20240322003649859.shaea4b75f", | ||
"version": "4.3.3-feature.20240325031118397.sha8b97641", | ||
"name": "@tinymce/tinymce-react" | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
99950