@ckeditor/ckeditor5-emoji 47.6.2 → 47.7.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/LICENSE.md +2 -5
- package/README.md +4 -7
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +8 -8
- package/src/emojirepository.js +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-emoji",
|
|
3
|
-
"version": "47.
|
|
3
|
+
"version": "47.7.0-alpha.1",
|
|
4
4
|
"description": "Emoji feature for CKEditor 5.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ckeditor",
|
|
@@ -13,13 +13,13 @@
|
|
|
13
13
|
"type": "module",
|
|
14
14
|
"main": "src/index.js",
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@ckeditor/ckeditor5-core": "47.
|
|
17
|
-
"@ckeditor/ckeditor5-icons": "47.
|
|
18
|
-
"@ckeditor/ckeditor5-mention": "47.
|
|
19
|
-
"@ckeditor/ckeditor5-typing": "47.
|
|
20
|
-
"@ckeditor/ckeditor5-ui": "47.
|
|
21
|
-
"@ckeditor/ckeditor5-utils": "47.
|
|
22
|
-
"ckeditor5": "47.
|
|
16
|
+
"@ckeditor/ckeditor5-core": "47.7.0-alpha.1",
|
|
17
|
+
"@ckeditor/ckeditor5-icons": "47.7.0-alpha.1",
|
|
18
|
+
"@ckeditor/ckeditor5-mention": "47.7.0-alpha.1",
|
|
19
|
+
"@ckeditor/ckeditor5-typing": "47.7.0-alpha.1",
|
|
20
|
+
"@ckeditor/ckeditor5-ui": "47.7.0-alpha.1",
|
|
21
|
+
"@ckeditor/ckeditor5-utils": "47.7.0-alpha.1",
|
|
22
|
+
"ckeditor5": "47.7.0-alpha.1",
|
|
23
23
|
"fuzzysort": "3.1.0",
|
|
24
24
|
"es-toolkit": "1.39.5"
|
|
25
25
|
},
|
package/src/emojirepository.js
CHANGED
|
@@ -213,6 +213,7 @@ export class EmojiRepository extends Plugin {
|
|
|
213
213
|
const config = editor.config.get('emoji');
|
|
214
214
|
const licenseKey = editor.config.get('licenseKey');
|
|
215
215
|
const distributionChannel = window[Symbol.for('cke distribution')];
|
|
216
|
+
/* istanbul ignore if -- @preserve */
|
|
216
217
|
if (licenseKey === 'GPL') {
|
|
217
218
|
// Don't warn GPL users.
|
|
218
219
|
return;
|