@ckeditor/ckeditor5-utils 41.4.2 → 42.0.0-alpha.1
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/README.md +6 -0
- package/dist/index.js +1293 -969
- package/dist/index.js.map +1 -1
- package/dist/types/collection.d.ts +1 -1
- package/dist/types/focustracker.d.ts +1 -1
- package/dist/types/locale.d.ts +1 -1
- package/dist/types/version.d.ts +1 -1
- package/package.json +1 -1
- package/src/collection.d.ts +1 -1
- package/src/collection.js +1 -1
- package/src/dom/emittermixin.js +2 -2
- package/src/emittermixin.js +1 -1
- package/src/env.js +9 -9
- package/src/focustracker.d.ts +1 -1
- package/src/focustracker.js +1 -1
- package/src/keyboard.js +3 -2
- package/src/locale.d.ts +1 -1
- package/src/locale.js +1 -1
- package/src/observablemixin.js +1 -1
- package/src/unicode.js +1 -1
- package/src/version.d.ts +1 -1
- package/src/version.js +10 -8
package/README.md
CHANGED
|
@@ -11,6 +11,12 @@ Various utilities used by CKEditor 5 and its features. This is a sort of C
|
|
|
11
11
|
|
|
12
12
|
See the [`@ckeditor/ckeditor5-utils` package](https://ckeditor.com/docs/ckeditor5/latest/api/utils.html) page in [CKEditor 5 documentation](https://ckeditor.com/docs/ckeditor5/latest/).
|
|
13
13
|
|
|
14
|
+
## Installation
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
npm install ckeditor5
|
|
18
|
+
```
|
|
19
|
+
|
|
14
20
|
## License
|
|
15
21
|
|
|
16
22
|
Licensed under the terms of [GNU General Public License Version 2 or later](http://www.gnu.org/licenses/gpl.html). For full details about the license, please check the `LICENSE.md` file or [https://ckeditor.com/legal/ckeditor-oss-license](https://ckeditor.com/legal/ckeditor-oss-license).
|