@ckeditor/ckeditor5-special-characters 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/index-content.css +3 -0
- package/dist/index-content.css.map +1 -0
- package/dist/index-editor.css +107 -105
- package/dist/index-editor.css.map +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/specialcharacters.d.ts +0 -1
- package/dist/ui/charactergridview.d.ts +0 -1
- package/dist/ui/characterinfoview.d.ts +0 -1
- package/package.json +6 -6
|
@@ -8,7 +8,6 @@
|
|
|
8
8
|
import { Plugin, type Editor, type PluginDependenciesOf } from "@ckeditor/ckeditor5-core";
|
|
9
9
|
import { Typing } from "@ckeditor/ckeditor5-typing";
|
|
10
10
|
import { Dialog } from "@ckeditor/ckeditor5-ui";
|
|
11
|
-
import "../theme/specialcharacters.css";
|
|
12
11
|
/**
|
|
13
12
|
* The special characters feature.
|
|
14
13
|
*
|
|
@@ -7,7 +7,6 @@
|
|
|
7
7
|
*/
|
|
8
8
|
import { View, ButtonView, type ViewCollection } from "@ckeditor/ckeditor5-ui";
|
|
9
9
|
import { KeystrokeHandler, FocusTracker, type Locale } from "@ckeditor/ckeditor5-utils";
|
|
10
|
-
import "../../theme/charactergrid.css";
|
|
11
10
|
/**
|
|
12
11
|
* A grid of character tiles. It allows browsing special characters and selecting the character to
|
|
13
12
|
* be inserted into the content.
|
|
@@ -7,7 +7,6 @@
|
|
|
7
7
|
*/
|
|
8
8
|
import type { Locale } from "@ckeditor/ckeditor5-utils";
|
|
9
9
|
import { View } from "@ckeditor/ckeditor5-ui";
|
|
10
|
-
import "../../theme/characterinfo.css";
|
|
11
10
|
/**
|
|
12
11
|
* The view displaying detailed information about a special character glyph, e.g. upon
|
|
13
12
|
* hovering it with a mouse.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-special-characters",
|
|
3
|
-
"version": "48.
|
|
3
|
+
"version": "48.4.0-alpha.0",
|
|
4
4
|
"description": "Special characters feature for CKEditor 5.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "CKSource (http://cksource.com/)",
|
|
@@ -26,11 +26,11 @@
|
|
|
26
26
|
"./package.json": "./package.json"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@ckeditor/ckeditor5-core": "48.
|
|
30
|
-
"@ckeditor/ckeditor5-icons": "48.
|
|
31
|
-
"@ckeditor/ckeditor5-typing": "48.
|
|
32
|
-
"@ckeditor/ckeditor5-ui": "48.
|
|
33
|
-
"@ckeditor/ckeditor5-utils": "48.
|
|
29
|
+
"@ckeditor/ckeditor5-core": "48.4.0-alpha.0",
|
|
30
|
+
"@ckeditor/ckeditor5-icons": "48.4.0-alpha.0",
|
|
31
|
+
"@ckeditor/ckeditor5-typing": "48.4.0-alpha.0",
|
|
32
|
+
"@ckeditor/ckeditor5-ui": "48.4.0-alpha.0",
|
|
33
|
+
"@ckeditor/ckeditor5-utils": "48.4.0-alpha.0"
|
|
34
34
|
},
|
|
35
35
|
"files": [
|
|
36
36
|
"dist",
|