@ckeditor/ckeditor5-emoji 48.3.1 → 48.4.0-alpha.0
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/dist/emojipicker.d.ts +0 -1
- package/dist/index-content.css +3 -0
- package/dist/index-content.css.map +1 -0
- package/dist/index-editor.css +79 -77
- package/dist/index-editor.css.map +1 -0
- package/dist/index.css.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.js.map +1 -1
- package/dist/ui/emojicategoriesview.d.ts +0 -1
- package/dist/ui/emojigridview.d.ts +0 -1
- package/dist/ui/emojipickerformview.d.ts +0 -1
- package/dist/ui/emojitoneview.d.ts +0 -1
- package/package.json +8 -7
|
@@ -8,7 +8,6 @@
|
|
|
8
8
|
import { ButtonView, View, FocusCycler, type ViewCollection } from "@ckeditor/ckeditor5-ui";
|
|
9
9
|
import { FocusTracker, KeystrokeHandler, type Locale } from "@ckeditor/ckeditor5-utils";
|
|
10
10
|
import type { EmojiCategory } from "../emojirepository.js";
|
|
11
|
-
import "../../theme/emojicategories.css";
|
|
12
11
|
/**
|
|
13
12
|
* A class representing the navigation part of the emoji UI.
|
|
14
13
|
* It is responsible allowing the user to select a particular emoji category.
|
|
@@ -9,7 +9,6 @@ import { ButtonView, type FilteredView, View, type ViewCollection } from "@ckedi
|
|
|
9
9
|
import { FocusTracker, KeystrokeHandler, type Locale } from "@ckeditor/ckeditor5-utils";
|
|
10
10
|
import type { EmojiCategory, EmojiEntry } from "../emojirepository.js";
|
|
11
11
|
import type { EmojiSkinToneId } from "../emojiconfig.js";
|
|
12
|
-
import "../../theme/emojigrid.css";
|
|
13
12
|
/**
|
|
14
13
|
* A grid of emoji tiles. It allows browsing emojis and selecting them to be inserted into the content.
|
|
15
14
|
*/
|
|
@@ -9,7 +9,6 @@ import { View, type DropdownView } from "@ckeditor/ckeditor5-ui";
|
|
|
9
9
|
import { type Locale } from "@ckeditor/ckeditor5-utils";
|
|
10
10
|
import type { EmojiSkinToneId } from "../emojiconfig.js";
|
|
11
11
|
import type { EmojiSkinTone } from "../emojirepository.js";
|
|
12
|
-
import "../../theme/emojitone.css";
|
|
13
12
|
/**
|
|
14
13
|
* A view responsible for selecting a skin tone for an emoji.
|
|
15
14
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-emoji",
|
|
3
|
-
"version": "48.
|
|
3
|
+
"version": "48.4.0-alpha.0",
|
|
4
4
|
"description": "Emoji feature for CKEditor 5.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "CKSource (http://cksource.com/)",
|
|
@@ -27,15 +27,16 @@
|
|
|
27
27
|
},
|
|
28
28
|
"sideEffects": [
|
|
29
29
|
"*.css",
|
|
30
|
+
"src/index.ts",
|
|
30
31
|
"dist/translations/*.umd.js"
|
|
31
32
|
],
|
|
32
33
|
"dependencies": {
|
|
33
|
-
"@ckeditor/ckeditor5-core": "48.
|
|
34
|
-
"@ckeditor/ckeditor5-icons": "48.
|
|
35
|
-
"@ckeditor/ckeditor5-mention": "48.
|
|
36
|
-
"@ckeditor/ckeditor5-typing": "48.
|
|
37
|
-
"@ckeditor/ckeditor5-ui": "48.
|
|
38
|
-
"@ckeditor/ckeditor5-utils": "48.
|
|
34
|
+
"@ckeditor/ckeditor5-core": "48.4.0-alpha.0",
|
|
35
|
+
"@ckeditor/ckeditor5-icons": "48.4.0-alpha.0",
|
|
36
|
+
"@ckeditor/ckeditor5-mention": "48.4.0-alpha.0",
|
|
37
|
+
"@ckeditor/ckeditor5-typing": "48.4.0-alpha.0",
|
|
38
|
+
"@ckeditor/ckeditor5-ui": "48.4.0-alpha.0",
|
|
39
|
+
"@ckeditor/ckeditor5-utils": "48.4.0-alpha.0",
|
|
39
40
|
"fuzzysort": "3.1.0",
|
|
40
41
|
"es-toolkit": "1.45.1"
|
|
41
42
|
},
|