@ckeditor/ckeditor5-emoji 44.2.1 → 44.3.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-emoji",
3
- "version": "44.2.1",
3
+ "version": "44.3.0-alpha.1",
4
4
  "description": "Emoji feature for CKEditor 5.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -13,12 +13,12 @@
13
13
  "type": "module",
14
14
  "main": "src/index.js",
15
15
  "dependencies": {
16
- "@ckeditor/ckeditor5-core": "44.2.1",
17
- "@ckeditor/ckeditor5-mention": "44.2.1",
18
- "@ckeditor/ckeditor5-typing": "44.2.1",
19
- "@ckeditor/ckeditor5-ui": "44.2.1",
20
- "@ckeditor/ckeditor5-utils": "44.2.1",
21
- "ckeditor5": "44.2.1",
16
+ "@ckeditor/ckeditor5-core": "44.3.0-alpha.1",
17
+ "@ckeditor/ckeditor5-mention": "44.3.0-alpha.1",
18
+ "@ckeditor/ckeditor5-typing": "44.3.0-alpha.1",
19
+ "@ckeditor/ckeditor5-ui": "44.3.0-alpha.1",
20
+ "@ckeditor/ckeditor5-utils": "44.3.0-alpha.1",
21
+ "ckeditor5": "44.3.0-alpha.1",
22
22
  "fuzzysort": "3.1.0",
23
23
  "lodash-es": "4.17.21"
24
24
  },
@@ -204,11 +204,13 @@ class EmojiRepository extends Plugin {
204
204
  return;
205
205
  }
206
206
  /**
207
- * By default, the Emoji plugin fetches the emoji repository from CKEditor 5 CDN. To avoid this,
208
- * you can use the {@link module:emoji/emojiconfig~EmojiConfig#definitionsUrl `emoji.definitionsUrl`}
207
+ * It was detected that your installation uses a commercial license key,
208
+ * and the default {@glink features/emoji#emoji-source CKEditor CDN for Emoji plugin data}.
209
+ *
210
+ * To avoid this, you can use the {@link module:emoji/emojiconfig~EmojiConfig#definitionsUrl `emoji.definitionsUrl`}
209
211
  * configuration option to provide a URL to your own emoji repository.
210
212
  *
211
- * If you only want to suppress this warning, set this configuration option to `cdn`.
213
+ * If you want to suppress this warning, while using the default CDN, set this configuration option to `cdn`.
212
214
  *
213
215
  * @error emoji-repository-cdn-use
214
216
  */