@ckeditor/ckeditor5-language 38.0.1 → 38.1.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-language",
3
- "version": "38.0.1",
3
+ "version": "38.1.0",
4
4
  "description": "Text part language feature for CKEditor 5.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -12,19 +12,7 @@
12
12
  ],
13
13
  "main": "src/index.js",
14
14
  "dependencies": {
15
- "ckeditor5": "^38.0.1"
16
- },
17
- "devDependencies": {
18
- "@ckeditor/ckeditor5-core": "^38.0.1",
19
- "@ckeditor/ckeditor5-dev-utils": "^37.0.0",
20
- "@ckeditor/ckeditor5-editor-classic": "^38.0.1",
21
- "@ckeditor/ckeditor5-engine": "^38.0.1",
22
- "@ckeditor/ckeditor5-paragraph": "^38.0.1",
23
- "@ckeditor/ckeditor5-theme-lark": "^38.0.1",
24
- "@ckeditor/ckeditor5-ui": "^38.0.1",
25
- "typescript": "^4.8.4",
26
- "webpack": "^5.58.1",
27
- "webpack-cli": "^4.9.0"
15
+ "ckeditor5": "38.1.0"
28
16
  },
29
17
  "engines": {
30
18
  "node": ">=16.0.0",
@@ -48,10 +36,5 @@
48
36
  "ckeditor5-metadata.json",
49
37
  "CHANGELOG.md"
50
38
  ],
51
- "scripts": {
52
- "dll:build": "webpack",
53
- "build": "tsc -p ./tsconfig.json",
54
- "postversion": "npm run build"
55
- },
56
39
  "types": "src/index.d.ts"
57
40
  }
@@ -2,7 +2,7 @@
2
2
  * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
4
  */
5
- import type { TextPartLanguageOption, TextPartLanguage, TextPartLanguageUI, TextPartLanguageCommand } from './index';
5
+ import type { TextPartLanguageOption, TextPartLanguage, TextPartLanguageEditing, TextPartLanguageUI, TextPartLanguageCommand } from './index';
6
6
  declare module '@ckeditor/ckeditor5-core' {
7
7
  interface LanguageConfig {
8
8
  /**
@@ -38,6 +38,7 @@ declare module '@ckeditor/ckeditor5-core' {
38
38
  }
39
39
  interface PluginsMap {
40
40
  [TextPartLanguage.pluginName]: TextPartLanguage;
41
+ [TextPartLanguageEditing.pluginName]: TextPartLanguageEditing;
41
42
  [TextPartLanguageUI.pluginName]: TextPartLanguageUI;
42
43
  }
43
44
  interface CommandsMap {
@@ -31,5 +31,5 @@ export default class TextPartLanguage extends Plugin {
31
31
  /**
32
32
  * @inheritDoc
33
33
  */
34
- static get pluginName(): 'TextPartLanguage';
34
+ static get pluginName(): "TextPartLanguage";
35
35
  }
@@ -12,7 +12,7 @@ export default class TextPartLanguageEditing extends Plugin {
12
12
  /**
13
13
  * @inheritDoc
14
14
  */
15
- static get pluginName(): 'TextPartLanguageEditing';
15
+ static get pluginName(): "TextPartLanguageEditing";
16
16
  /**
17
17
  * @inheritDoc
18
18
  */
@@ -26,8 +26,3 @@ export default class TextPartLanguageEditing extends Plugin {
26
26
  */
27
27
  private _defineConverters;
28
28
  }
29
- declare module '@ckeditor/ckeditor5-core' {
30
- interface PluginsMap {
31
- [TextPartLanguageEditing.pluginName]: TextPartLanguageEditing;
32
- }
33
- }
@@ -15,7 +15,7 @@ export default class TextPartLanguageUI extends Plugin {
15
15
  /**
16
16
  * @inheritDoc
17
17
  */
18
- static get pluginName(): 'TextPartLanguageUI';
18
+ static get pluginName(): "TextPartLanguageUI";
19
19
  /**
20
20
  * @inheritDoc
21
21
  */