@ckeditor/ckeditor5-special-characters 41.1.0 → 41.3.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.
@@ -0,0 +1,96 @@
1
+ /**
2
+ * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
+ */
5
+ /**
6
+ * @module special-characters/specialcharacters
7
+ */
8
+ import { Plugin, type Editor } from 'ckeditor5/src/core.js';
9
+ import { Typing } from 'ckeditor5/src/typing.js';
10
+ import '../theme/specialcharacters.css';
11
+ /**
12
+ * The special characters feature.
13
+ *
14
+ * Introduces the `'specialCharacters'` dropdown.
15
+ */
16
+ export default class SpecialCharacters extends Plugin {
17
+ /**
18
+ * Registered characters. A pair of a character name and its symbol.
19
+ */
20
+ private _characters;
21
+ /**
22
+ * Registered groups. Each group contains a displayed label and a collection with symbol names.
23
+ */
24
+ private _groups;
25
+ /**
26
+ * A label describing the "All" special characters category.
27
+ */
28
+ private _allSpecialCharactersGroupLabel;
29
+ /**
30
+ * @inheritDoc
31
+ */
32
+ static get requires(): readonly [typeof Typing];
33
+ /**
34
+ * @inheritDoc
35
+ */
36
+ static get pluginName(): "SpecialCharacters";
37
+ /**
38
+ * @inheritDoc
39
+ */
40
+ constructor(editor: Editor);
41
+ /**
42
+ * @inheritDoc
43
+ */
44
+ init(): void;
45
+ /**
46
+ * Adds a collection of special characters to the specified group. The title of a special character must be unique.
47
+ *
48
+ * **Note:** The "All" category name is reserved by the plugin and cannot be used as a new name for a special
49
+ * characters category.
50
+ */
51
+ addItems(groupName: string, items: Array<SpecialCharacterDefinition>, options?: {
52
+ label: string;
53
+ }): void;
54
+ /**
55
+ * Returns special character groups in an order determined based on configuration and registration sequence.
56
+ */
57
+ getGroups(): Set<string>;
58
+ /**
59
+ * Returns a collection of special characters symbol names (titles).
60
+ */
61
+ getCharactersForGroup(groupName: string): Set<string> | undefined;
62
+ /**
63
+ * Returns the symbol of a special character for the specified name. If the special character could not be found, `undefined`
64
+ * is returned.
65
+ *
66
+ * @param title The title of a special character.
67
+ */
68
+ getCharacter(title: string): string | undefined;
69
+ /**
70
+ * Returns a group of special characters. If the group with the specified name does not exist, it will be created.
71
+ *
72
+ * @param groupName The name of the group to create.
73
+ * @param label The label describing the new group.
74
+ */
75
+ private _getGroup;
76
+ /**
77
+ * Updates the symbol grid depending on the currently selected character group.
78
+ */
79
+ private _updateGrid;
80
+ /**
81
+ * Initializes the dropdown, used for lazy loading.
82
+ *
83
+ * @returns An object with `navigationView`, `gridView` and `infoView` properties, containing UI parts.
84
+ */
85
+ private _createDropdownPanelContent;
86
+ }
87
+ export interface SpecialCharacterDefinition {
88
+ /**
89
+ * A unique name of the character (e.g. "greek small letter epsilon").
90
+ */
91
+ title: string;
92
+ /**
93
+ * A human-readable character displayed as the label (e.g. "ε").
94
+ */
95
+ character: string;
96
+ }
@@ -0,0 +1,30 @@
1
+ /**
2
+ * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
+ */
5
+ /**
6
+ * @module special-characters/specialcharactersarrows
7
+ */
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ /**
10
+ * A plugin that provides special characters for the "Arrows" category.
11
+ *
12
+ * ```ts
13
+ * ClassicEditor
14
+ * .create( {
15
+ * plugins: [ ..., SpecialCharacters, SpecialCharactersArrows ],
16
+ * } )
17
+ * .then( ... )
18
+ * .catch( ... );
19
+ * ```
20
+ */
21
+ export default class SpecialCharactersArrows extends Plugin {
22
+ /**
23
+ * @inheritDoc
24
+ */
25
+ static get pluginName(): "SpecialCharactersArrows";
26
+ /**
27
+ * @inheritDoc
28
+ */
29
+ init(): void;
30
+ }
@@ -0,0 +1,51 @@
1
+ /**
2
+ * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
+ */
5
+ /**
6
+ * @module special-characters/specialcharactersconfig
7
+ */
8
+ /**
9
+ * The configuration of the special characters feature.
10
+ *
11
+ * Read more about {@glink features/special-characters#configuration configuring the special characters feature}.
12
+ *
13
+ * ```ts
14
+ * ClassicEditor
15
+ * .create( editorElement, {
16
+ * specialCharacters: ... // Special characters feature options.
17
+ * } )
18
+ * .then( ... )
19
+ * .catch( ... );
20
+ * ```
21
+ *
22
+ * See {@link module:core/editor/editorconfig~EditorConfig all editor configuration options}.
23
+ */
24
+ export interface SpecialCharactersConfig {
25
+ /**
26
+ * The configuration of the special characters category order.
27
+ *
28
+ * Special characters categories are displayed in the UI in the order in which they were registered. Using the `order` property
29
+ * allows to override this behaviour and enforce specific order. Categories not listed in the `order` property will be displayed
30
+ * in the default order below categories listed in the configuration.
31
+ *
32
+ * ```ts
33
+ * ClassicEditor
34
+ * .create( editorElement, {
35
+ * plugins: [ SpecialCharacters, SpecialCharactersEssentials, ... ],
36
+ * specialCharacters: {
37
+ * order: [
38
+ * 'Text',
39
+ * 'Latin',
40
+ * 'Mathematical',
41
+ * 'Currency',
42
+ * 'Arrows'
43
+ * ]
44
+ * }
45
+ * } )
46
+ * .then( ... )
47
+ * .catch( ... );
48
+ * ```
49
+ */
50
+ order?: Array<string>;
51
+ }
@@ -0,0 +1,30 @@
1
+ /**
2
+ * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
+ */
5
+ /**
6
+ * @module special-characters/specialcharacterscurrency
7
+ */
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ /**
10
+ * A plugin that provides special characters for the "Currency" category.
11
+ *
12
+ * ```ts
13
+ * ClassicEditor
14
+ * .create( {
15
+ * plugins: [ ..., SpecialCharacters, SpecialCharactersCurrency ],
16
+ * } )
17
+ * .then( ... )
18
+ * .catch( ... );
19
+ * ```
20
+ */
21
+ export default class SpecialCharactersCurrency extends Plugin {
22
+ /**
23
+ * @inheritDoc
24
+ */
25
+ static get pluginName(): "SpecialCharactersCurrency";
26
+ /**
27
+ * @inheritDoc
28
+ */
29
+ init(): void;
30
+ }
@@ -0,0 +1,35 @@
1
+ /**
2
+ * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
+ */
5
+ /**
6
+ * @module special-characters/specialcharactersessentials
7
+ */
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ import SpecialCharactersCurrency from './specialcharacterscurrency.js';
10
+ import SpecialCharactersMathematical from './specialcharactersmathematical.js';
11
+ import SpecialCharactersArrows from './specialcharactersarrows.js';
12
+ import SpecialCharactersLatin from './specialcharacterslatin.js';
13
+ import SpecialCharactersText from './specialcharacterstext.js';
14
+ /**
15
+ * A plugin combining a basic set of characters for the special characters plugin.
16
+ *
17
+ * ```ts
18
+ * ClassicEditor
19
+ * .create( {
20
+ * plugins: [ ..., SpecialCharacters, SpecialCharactersEssentials ],
21
+ * } )
22
+ * .then( ... )
23
+ * .catch( ... );
24
+ * ```
25
+ */
26
+ export default class SpecialCharactersEssentials extends Plugin {
27
+ /**
28
+ * @inheritDoc
29
+ */
30
+ static get pluginName(): "SpecialCharactersEssentials";
31
+ /**
32
+ * @inheritDoc
33
+ */
34
+ static get requires(): readonly [typeof SpecialCharactersCurrency, typeof SpecialCharactersText, typeof SpecialCharactersMathematical, typeof SpecialCharactersArrows, typeof SpecialCharactersLatin];
35
+ }
@@ -0,0 +1,30 @@
1
+ /**
2
+ * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
+ */
5
+ /**
6
+ * @module special-characters/specialcharacterslatin
7
+ */
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ /**
10
+ * A plugin that provides special characters for the "Latin" category.
11
+ *
12
+ * ```ts
13
+ * ClassicEditor
14
+ * .create( {
15
+ * plugins: [ ..., SpecialCharacters, SpecialCharactersLatin ],
16
+ * } )
17
+ * .then( ... )
18
+ * .catch( ... );
19
+ * ```
20
+ */
21
+ export default class SpecialCharactersLatin extends Plugin {
22
+ /**
23
+ * @inheritDoc
24
+ */
25
+ static get pluginName(): "SpecialCharactersLatin";
26
+ /**
27
+ * @inheritDoc
28
+ */
29
+ init(): void;
30
+ }
@@ -0,0 +1,30 @@
1
+ /**
2
+ * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
+ */
5
+ /**
6
+ * @module special-characters/specialcharactersmathematical
7
+ */
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ /**
10
+ * A plugin that provides special characters for the "Mathematical" category.
11
+ *
12
+ * ```ts
13
+ * ClassicEditor
14
+ * .create( {
15
+ * plugins: [ ..., SpecialCharacters, SpecialCharactersMathematical ],
16
+ * } )
17
+ * .then( ... )
18
+ * .catch( ... );
19
+ * ```
20
+ */
21
+ export default class SpecialCharactersMathematical extends Plugin {
22
+ /**
23
+ * @inheritDoc
24
+ */
25
+ static get pluginName(): "SpecialCharactersMathematical";
26
+ /**
27
+ * @inheritDoc
28
+ */
29
+ init(): void;
30
+ }
@@ -0,0 +1,30 @@
1
+ /**
2
+ * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
+ */
5
+ /**
6
+ * @module special-characters/specialcharacterstext
7
+ */
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ /**
10
+ * A plugin that provides special characters for the "Text" category.
11
+ *
12
+ * ```ts
13
+ * ClassicEditor
14
+ * .create( {
15
+ * plugins: [ ..., SpecialCharacters, SpecialCharactersText ],
16
+ * } )
17
+ * .then( ... )
18
+ * .catch( ... );
19
+ * ```
20
+ */
21
+ export default class SpecialCharactersText extends Plugin {
22
+ /**
23
+ * @inheritDoc
24
+ */
25
+ static get pluginName(): "SpecialCharactersText";
26
+ /**
27
+ * @inheritDoc
28
+ */
29
+ init(): void;
30
+ }
@@ -0,0 +1,94 @@
1
+ /**
2
+ * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
+ */
5
+ /**
6
+ * @module special-characters/ui/charactergridview
7
+ */
8
+ import { View, ButtonView, type ViewCollection } from 'ckeditor5/src/ui.js';
9
+ import { KeystrokeHandler, FocusTracker, type Locale } from 'ckeditor5/src/utils.js';
10
+ import '../../theme/charactergrid.css';
11
+ /**
12
+ * A grid of character tiles. It allows browsing special characters and selecting the character to
13
+ * be inserted into the content.
14
+ */
15
+ export default class CharacterGridView extends View<HTMLDivElement> {
16
+ /**
17
+ * A collection of the child tile views. Each tile represents a particular character.
18
+ */
19
+ readonly tiles: ViewCollection<ButtonView>;
20
+ /**
21
+ * Tracks information about the DOM focus in the grid.
22
+ */
23
+ readonly focusTracker: FocusTracker;
24
+ /**
25
+ * An instance of the {@link module:utils/keystrokehandler~KeystrokeHandler}.
26
+ */
27
+ readonly keystrokes: KeystrokeHandler;
28
+ /**
29
+ * Creates an instance of a character grid containing tiles representing special characters.
30
+ *
31
+ * @param locale The localization services instance.
32
+ */
33
+ constructor(locale: Locale);
34
+ /**
35
+ * Creates a new tile for the grid.
36
+ *
37
+ * @param character A human-readable character displayed as the label (e.g. "ε").
38
+ * @param name The name of the character (e.g. "greek small letter epsilon").
39
+ */
40
+ createTile(character: string, name: string): ButtonView;
41
+ /**
42
+ * @inheritDoc
43
+ */
44
+ render(): void;
45
+ /**
46
+ * @inheritDoc
47
+ */
48
+ destroy(): void;
49
+ /**
50
+ * Focuses the first focusable in {@link ~CharacterGridView#tiles}.
51
+ */
52
+ focus(): void;
53
+ }
54
+ /**
55
+ * Fired when any of {@link ~CharacterGridView#tiles grid tiles} is clicked.
56
+ *
57
+ * @eventName ~CharacterGridView#execute
58
+ * @param data Additional information about the event.
59
+ */
60
+ export type CharacterGridViewExecuteEvent = {
61
+ name: 'execute';
62
+ args: [data: CharacterGridViewEventData];
63
+ };
64
+ /**
65
+ * Fired when a mouse or another pointing device caused the cursor to move onto any {@link ~CharacterGridView#tiles grid tile}
66
+ * (similar to the native `mouseover` DOM event).
67
+ *
68
+ * @eventName ~CharacterGridView#tileHover
69
+ * @param data Additional information about the event.
70
+ */
71
+ export type CharacterGridViewTileHoverEvent = {
72
+ name: 'tileHover';
73
+ args: [data: CharacterGridViewEventData];
74
+ };
75
+ /**
76
+ * Fired when {@link ~CharacterGridView#tiles grid tile} is focused (e.g. by navigating with arrow keys).
77
+ *
78
+ * @eventName ~CharacterGridView#tileFocus
79
+ * @param data Additional information about the event.
80
+ */
81
+ export type CharacterGridViewTileFocusEvent = {
82
+ name: 'tileFocus';
83
+ args: [data: CharacterGridViewEventData];
84
+ };
85
+ export interface CharacterGridViewEventData {
86
+ /**
87
+ * The name of the tile that caused the event (e.g. "greek small letter epsilon").
88
+ */
89
+ name: string;
90
+ /**
91
+ * A human-readable character displayed as the label (e.g. "ε").
92
+ */
93
+ character: string;
94
+ }
@@ -0,0 +1,35 @@
1
+ /**
2
+ * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
+ */
5
+ /**
6
+ * @module special-characters/ui/characterinfoview
7
+ */
8
+ import type { Locale } from 'ckeditor5/src/utils.js';
9
+ import { View } from 'ckeditor5/src/ui.js';
10
+ import '../../theme/characterinfo.css';
11
+ /**
12
+ * The view displaying detailed information about a special character glyph, e.g. upon
13
+ * hovering it with a mouse.
14
+ */
15
+ export default class CharacterInfoView extends View<HTMLDivElement> {
16
+ /**
17
+ * The character whose information is displayed by the view. For instance, "∑" or "¿".
18
+ *
19
+ * @observable
20
+ */
21
+ character: string | null;
22
+ /**
23
+ * The name of the {@link #character}. For instance, "N-ary summation" or "Inverted question mark".
24
+ *
25
+ * @observable
26
+ */
27
+ name: string | null;
28
+ /**
29
+ * The "Unicode string" of the {@link #character}. For instance "U+0061".
30
+ *
31
+ * @observable
32
+ */
33
+ readonly code: string;
34
+ constructor(locale: Locale);
35
+ }
@@ -0,0 +1,59 @@
1
+ /**
2
+ * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
+ */
5
+ /**
6
+ * @module special-characters/ui/specialcharactersnavigationview
7
+ */
8
+ import { type Locale } from 'ckeditor5/src/utils.js';
9
+ import { FormHeaderView, type DropdownView } from 'ckeditor5/src/ui.js';
10
+ /**
11
+ * A class representing the navigation part of the special characters UI. It is responsible
12
+ * for describing the feature and allowing the user to select a particular character group.
13
+ */
14
+ export default class SpecialCharactersNavigationView extends FormHeaderView {
15
+ /**
16
+ * A dropdown that allows selecting a group of special characters to be displayed.
17
+ */
18
+ groupDropdownView: GroupDropdownView;
19
+ /**
20
+ * Creates an instance of the {@link module:special-characters/ui/specialcharactersnavigationview~SpecialCharactersNavigationView}
21
+ * class.
22
+ *
23
+ * @param locale The localization services instance.
24
+ * @param groupNames The names of the character groups and their displayed labels.
25
+ */
26
+ constructor(locale: Locale, groupNames: GroupNames);
27
+ /**
28
+ * Returns the name of the character group currently selected in the {@link #groupDropdownView}.
29
+ */
30
+ get currentGroupName(): string;
31
+ /**
32
+ * Focuses the character categories dropdown.
33
+ */
34
+ focus(): void;
35
+ /**
36
+ * Returns a dropdown that allows selecting character groups.
37
+ *
38
+ * @param groupNames The names of the character groups and their displayed labels.
39
+ */
40
+ private _createGroupDropdown;
41
+ /**
42
+ * Returns list item definitions to be used in the character group dropdown
43
+ * representing specific character groups.
44
+ *
45
+ * @param dropdown Dropdown view element
46
+ * @param groupNames The names of the character groups and their displayed labels.
47
+ */
48
+ private _getCharacterGroupListItemDefinitions;
49
+ }
50
+ /**
51
+ * The names of the character groups and their displayed labels.
52
+ */
53
+ export type GroupNames = Map<string, string>;
54
+ /**
55
+ * `DropdownView` with additional field for the name of the currectly selected character group.
56
+ */
57
+ export type GroupDropdownView = DropdownView & {
58
+ value: string;
59
+ };
@@ -0,0 +1,65 @@
1
+ /**
2
+ * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
+ */
5
+ /**
6
+ * @module special-characters/ui/specialcharactersview
7
+ */
8
+ import { View, FocusCycler, type ViewCollection, type FocusableView } from 'ckeditor5/src/ui.js';
9
+ import { FocusTracker, KeystrokeHandler, type Locale } from 'ckeditor5/src/utils.js';
10
+ import type CharacterGridView from './charactergridview.js';
11
+ import type CharacterInfoView from './characterinfoview.js';
12
+ import type SpecialCharactersNavigationView from './specialcharactersnavigationview.js';
13
+ /**
14
+ * A view that glues pieces of the special characters dropdown panel together:
15
+ *
16
+ * * the navigation view (allows selecting the category),
17
+ * * the grid view (displays characters as a grid),
18
+ * * and the info view (displays detailed info about a specific character).
19
+ */
20
+ export default class SpecialCharactersView extends View<HTMLDivElement> {
21
+ /**
22
+ * A collection of the focusable children of the view.
23
+ */
24
+ readonly items: ViewCollection<FocusableView>;
25
+ /**
26
+ * Tracks information about the DOM focus in the view.
27
+ */
28
+ readonly focusTracker: FocusTracker;
29
+ /**
30
+ * An instance of the {@link module:utils/keystrokehandler~KeystrokeHandler}.
31
+ */
32
+ readonly keystrokes: KeystrokeHandler;
33
+ /**
34
+ * Helps cycling over focusable {@link #items} in the view.
35
+ */
36
+ protected readonly _focusCycler: FocusCycler;
37
+ /**
38
+ * An instance of the `SpecialCharactersNavigationView`.
39
+ */
40
+ navigationView: SpecialCharactersNavigationView;
41
+ /**
42
+ * An instance of the `CharacterGridView`.
43
+ */
44
+ gridView: CharacterGridView;
45
+ /**
46
+ * An instance of the `CharacterInfoView`.
47
+ */
48
+ infoView: CharacterInfoView;
49
+ /**
50
+ * Creates an instance of the `SpecialCharactersView`.
51
+ */
52
+ constructor(locale: Locale, navigationView: SpecialCharactersNavigationView, gridView: CharacterGridView, infoView: CharacterInfoView);
53
+ /**
54
+ * @inheritDoc
55
+ */
56
+ render(): void;
57
+ /**
58
+ * @inheritDoc
59
+ */
60
+ destroy(): void;
61
+ /**
62
+ * Focuses the first focusable in {@link #items}.
63
+ */
64
+ focus(): void;
65
+ }
@@ -14,7 +14,7 @@ msgid ""
14
14
  msgstr ""
15
15
  "Language-Team: Hebrew (https://app.transifex.com/ckeditor/teams/11143/he/)\n"
16
16
  "Language: he\n"
17
- "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n"
17
+ "Plural-Forms: nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;\n"
18
18
  "Content-Type: text/plain; charset=UTF-8\n"
19
19
 
20
20
  msgctxt "Name of the special characters plugins, visible in a dropdown and as a button tooltip."
@@ -135,11 +135,11 @@ msgstr "\"Top\" com seta para cima em cima"
135
135
 
136
136
  msgctxt "A label for the \"dollar sign\" symbol."
137
137
  msgid "Dollar sign"
138
- msgstr "Cifrão"
138
+ msgstr "Sinal de Dólar"
139
139
 
140
140
  msgctxt "A label for the \"euro sign\" symbol."
141
141
  msgid "Euro sign"
142
- msgstr "Sinal de euro"
142
+ msgstr "Sinal de Euro"
143
143
 
144
144
  msgctxt "A label for the \"yen sign\" symbol."
145
145
  msgid "Yen sign"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-special-characters",
3
- "version": "41.1.0",
3
+ "version": "41.3.0-alpha.0",
4
4
  "description": "Special characters feature for CKEditor 5.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -13,7 +13,7 @@
13
13
  "type": "module",
14
14
  "main": "src/index.js",
15
15
  "dependencies": {
16
- "ckeditor5": "41.1.0"
16
+ "ckeditor5": "41.3.0-alpha.0"
17
17
  },
18
18
  "author": "CKSource (http://cksource.com/)",
19
19
  "license": "GPL-2.0-or-later",
@@ -25,6 +25,7 @@
25
25
  "directory": "packages/ckeditor5-special-characters"
26
26
  },
27
27
  "files": [
28
+ "dist",
28
29
  "lang",
29
30
  "src/**/*.js",
30
31
  "src/**/*.d.ts",