@ckeditor/ckeditor5-language 38.2.0-alpha.0 → 38.2.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 +2 -2
- package/src/augmentation.d.ts +1 -1
- package/src/index.d.ts +6 -6
- package/src/index.js +4 -4
- package/src/textpartlanguage.d.ts +3 -3
- package/src/textpartlanguage.js +3 -3
- package/src/textpartlanguagecommand.d.ts +2 -2
- package/src/textpartlanguagecommand.js +2 -2
- package/src/textpartlanguageconfig.d.ts +1 -1
- package/src/textpartlanguageediting.d.ts +1 -1
- package/src/textpartlanguageediting.js +3 -3
- package/src/textpartlanguageui.d.ts +1 -1
- package/src/textpartlanguageui.js +4 -4
- package/src/utils.d.ts +1 -1
- package/src/utils.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-language",
|
|
3
|
-
"version": "38.2.0-alpha.
|
|
3
|
+
"version": "38.2.0-alpha.1",
|
|
4
4
|
"description": "Text part language feature for CKEditor 5.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ckeditor",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"main": "src/index.js",
|
|
14
14
|
"type": "module",
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"ckeditor5": "38.2.0-alpha.
|
|
16
|
+
"ckeditor5": "38.2.0-alpha.1"
|
|
17
17
|
},
|
|
18
18
|
"engines": {
|
|
19
19
|
"node": ">=16.0.0",
|
package/src/augmentation.d.ts
CHANGED
|
@@ -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, TextPartLanguageEditing, TextPartLanguageUI, TextPartLanguageCommand } from './index';
|
|
5
|
+
import type { TextPartLanguageOption, TextPartLanguage, TextPartLanguageEditing, TextPartLanguageUI, TextPartLanguageCommand } from './index.js';
|
|
6
6
|
declare module '@ckeditor/ckeditor5-core' {
|
|
7
7
|
interface LanguageConfig {
|
|
8
8
|
/**
|
package/src/index.d.ts
CHANGED
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module language
|
|
7
7
|
*/
|
|
8
|
-
export { default as TextPartLanguage } from './textpartlanguage';
|
|
9
|
-
export { default as TextPartLanguageEditing } from './textpartlanguageediting';
|
|
10
|
-
export { default as TextPartLanguageUI } from './textpartlanguageui';
|
|
11
|
-
export type { TextPartLanguageOption } from './textpartlanguageconfig';
|
|
12
|
-
export type { default as TextPartLanguageCommand } from './textpartlanguagecommand';
|
|
13
|
-
import './augmentation';
|
|
8
|
+
export { default as TextPartLanguage } from './textpartlanguage.js';
|
|
9
|
+
export { default as TextPartLanguageEditing } from './textpartlanguageediting.js';
|
|
10
|
+
export { default as TextPartLanguageUI } from './textpartlanguageui.js';
|
|
11
|
+
export type { TextPartLanguageOption } from './textpartlanguageconfig.js';
|
|
12
|
+
export type { default as TextPartLanguageCommand } from './textpartlanguagecommand.js';
|
|
13
|
+
import './augmentation.js';
|
package/src/index.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module language
|
|
7
7
|
*/
|
|
8
|
-
export { default as TextPartLanguage } from './textpartlanguage';
|
|
9
|
-
export { default as TextPartLanguageEditing } from './textpartlanguageediting';
|
|
10
|
-
export { default as TextPartLanguageUI } from './textpartlanguageui';
|
|
11
|
-
import './augmentation';
|
|
8
|
+
export { default as TextPartLanguage } from './textpartlanguage.js';
|
|
9
|
+
export { default as TextPartLanguageEditing } from './textpartlanguageediting.js';
|
|
10
|
+
export { default as TextPartLanguageUI } from './textpartlanguageui.js';
|
|
11
|
+
import './augmentation.js';
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module language/textpartlanguage
|
|
7
7
|
*/
|
|
8
|
-
import { Plugin } from 'ckeditor5/src/core';
|
|
9
|
-
import TextPartLanguageEditing from './textpartlanguageediting';
|
|
10
|
-
import TextPartLanguageUI from './textpartlanguageui';
|
|
8
|
+
import { Plugin } from 'ckeditor5/src/core.js';
|
|
9
|
+
import TextPartLanguageEditing from './textpartlanguageediting.js';
|
|
10
|
+
import TextPartLanguageUI from './textpartlanguageui.js';
|
|
11
11
|
/**
|
|
12
12
|
* The text part language feature.
|
|
13
13
|
*
|
package/src/textpartlanguage.js
CHANGED
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module language/textpartlanguage
|
|
7
7
|
*/
|
|
8
|
-
import { Plugin } from 'ckeditor5/src/core';
|
|
9
|
-
import TextPartLanguageEditing from './textpartlanguageediting';
|
|
10
|
-
import TextPartLanguageUI from './textpartlanguageui';
|
|
8
|
+
import { Plugin } from 'ckeditor5/src/core.js';
|
|
9
|
+
import TextPartLanguageEditing from './textpartlanguageediting.js';
|
|
10
|
+
import TextPartLanguageUI from './textpartlanguageui.js';
|
|
11
11
|
/**
|
|
12
12
|
* The text part language feature.
|
|
13
13
|
*
|
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module language/textpartlanguagecommand
|
|
7
7
|
*/
|
|
8
|
-
import type { LanguageDirection } from 'ckeditor5/src/utils';
|
|
9
|
-
import { Command } from 'ckeditor5/src/core';
|
|
8
|
+
import type { LanguageDirection } from 'ckeditor5/src/utils.js';
|
|
9
|
+
import { Command } from 'ckeditor5/src/core.js';
|
|
10
10
|
/**
|
|
11
11
|
* The text part language command plugin.
|
|
12
12
|
*/
|
|
@@ -2,8 +2,8 @@
|
|
|
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 { Command } from 'ckeditor5/src/core';
|
|
6
|
-
import { stringifyLanguageAttribute } from './utils';
|
|
5
|
+
import { Command } from 'ckeditor5/src/core.js';
|
|
6
|
+
import { stringifyLanguageAttribute } from './utils.js';
|
|
7
7
|
/**
|
|
8
8
|
* The text part language command plugin.
|
|
9
9
|
*/
|
|
@@ -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 { Plugin, type Editor } from 'ckeditor5/src/core';
|
|
5
|
+
import { Plugin, type Editor } from 'ckeditor5/src/core.js';
|
|
6
6
|
/**
|
|
7
7
|
* The text part language editing.
|
|
8
8
|
*
|
|
@@ -2,9 +2,9 @@
|
|
|
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 { Plugin } from 'ckeditor5/src/core';
|
|
6
|
-
import TextPartLanguageCommand from './textpartlanguagecommand';
|
|
7
|
-
import { stringifyLanguageAttribute, parseLanguageAttribute } from './utils';
|
|
5
|
+
import { Plugin } from 'ckeditor5/src/core.js';
|
|
6
|
+
import TextPartLanguageCommand from './textpartlanguagecommand.js';
|
|
7
|
+
import { stringifyLanguageAttribute, parseLanguageAttribute } from './utils.js';
|
|
8
8
|
/**
|
|
9
9
|
* The text part language editing.
|
|
10
10
|
*
|
|
@@ -5,10 +5,10 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module language/textpartlanguageui
|
|
7
7
|
*/
|
|
8
|
-
import { Plugin } from 'ckeditor5/src/core';
|
|
9
|
-
import { Model, createDropdown, addListToDropdown } from 'ckeditor5/src/ui';
|
|
10
|
-
import { Collection } from 'ckeditor5/src/utils';
|
|
11
|
-
import { stringifyLanguageAttribute } from './utils';
|
|
8
|
+
import { Plugin } from 'ckeditor5/src/core.js';
|
|
9
|
+
import { Model, createDropdown, addListToDropdown } from 'ckeditor5/src/ui.js';
|
|
10
|
+
import { Collection } from 'ckeditor5/src/utils.js';
|
|
11
|
+
import { stringifyLanguageAttribute } from './utils.js';
|
|
12
12
|
/**
|
|
13
13
|
* The text part language UI plugin.
|
|
14
14
|
*
|
package/src/utils.d.ts
CHANGED
package/src/utils.js
CHANGED