diff --git a/docs/installation/integrations/angular.md b/docs/installation/integrations/angular.md index 6698d0946ef..fe403fdaac9 100644 --- a/docs/installation/integrations/angular.md +++ b/docs/installation/integrations/angular.md @@ -105,6 +105,21 @@ This tutorial assumes that you picked [`@ckeditor/ckeditor5-build-classic`](http npm install --save @ckeditor/ckeditor5-build-classic ``` +The [`@ckeditor/ckeditor5-angular`](https://www.npmjs.com/package/@ckeditor/ckeditor5-angular) package requires the following peer dependencies, with a version of at least 37.0.0: + +* [`@ckeditor/ckeditor5-core`](https://www.npmjs.com/package/@ckeditor/ckeditor5-core), +* [`@ckeditor/ckeditor5-engine`](https://www.npmjs.com/package/@ckeditor/ckeditor5-engine), +* [`@ckeditor/ckeditor5-utils`](https://www.npmjs.com/package/@ckeditor/ckeditor5-utils), +* [`@ckeditor/ckeditor5-watchdog`](https://www.npmjs.com/package/@ckeditor/ckeditor5-watchdog). + +Keep in mind that they {@link installation/plugins/installing-plugins#requirements must have the same version as the editor build}. + +Install all the required peer dependencies: + +```bash +npm install --save @ckeditor/ckeditor5-core @ckeditor/ckeditor5-engine @ckeditor/ckeditor5-utils @ckeditor/ckeditor5-watchdog +``` + Now, add `CKEditorModule` to modules whose components will be using the `` component in their templates. ```ts