@ckeditor/ckeditor5-indent 38.2.0-alpha.1 → 39.0.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/README.md +0 -1
- package/build/translations/ug.js +1 -0
- package/lang/translations/ug.po +25 -0
- package/package.json +2 -3
- package/src/augmentation.d.ts +1 -1
- package/src/indent.d.ts +3 -3
- package/src/indent.js +3 -3
- package/src/indentblock.d.ts +1 -1
- package/src/indentblock.js +5 -5
- package/src/indentblockcommand.d.ts +2 -2
- package/src/indentblockcommand.js +2 -2
- package/src/indentcommandbehavior/indentusingclasses.d.ts +1 -1
- package/src/indentcommandbehavior/indentusingoffset.d.ts +1 -1
- package/src/indentediting.d.ts +1 -1
- package/src/indentediting.js +1 -1
- package/src/indentui.d.ts +1 -1
- package/src/indentui.js +2 -2
- package/src/index.d.ts +7 -7
- package/src/index.js +5 -5
package/README.md
CHANGED
|
@@ -4,7 +4,6 @@ CKEditor 5 block indentation feature
|
|
|
4
4
|
[](https://www.npmjs.com/package/@ckeditor/ckeditor5-indent)
|
|
5
5
|
[](https://coveralls.io/github/ckeditor/ckeditor5?branch=master)
|
|
6
6
|
[](https://app.travis-ci.com/github/ckeditor/ckeditor5)
|
|
7
|
-

|
|
8
7
|
|
|
9
8
|
This package implements block indentation support for CKEditor 5.
|
|
10
9
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
!function(n){const i=n.ug=n.ug||{};i.dictionary=Object.assign(i.dictionary||{},{"Decrease indent":"تارايتىشنى كېمەيت","Increase indent":"تارايتىشنى ئاشۇر"})}(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={}));
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
|
2
|
+
#
|
|
3
|
+
# !!! IMPORTANT !!!
|
|
4
|
+
#
|
|
5
|
+
# Before you edit this file, please keep in mind that contributing to the project
|
|
6
|
+
# translations is possible ONLY via the Transifex online service.
|
|
7
|
+
#
|
|
8
|
+
# To submit your translations, visit https://www.transifex.com/ckeditor/ckeditor5.
|
|
9
|
+
#
|
|
10
|
+
# To learn more, check out the official contributor's guide:
|
|
11
|
+
# https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
|
|
12
|
+
#
|
|
13
|
+
msgid ""
|
|
14
|
+
msgstr ""
|
|
15
|
+
"Language-Team: Uyghur (https://app.transifex.com/ckeditor/teams/11143/ug/)\n"
|
|
16
|
+
"Language: ug\n"
|
|
17
|
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
18
|
+
|
|
19
|
+
msgctxt "Toolbar button tooltip for the increase indentation feature."
|
|
20
|
+
msgid "Increase indent"
|
|
21
|
+
msgstr "تارايتىشنى ئاشۇر"
|
|
22
|
+
|
|
23
|
+
msgctxt "Toolbar button tooltip for the decrease indentation feature."
|
|
24
|
+
msgid "Decrease indent"
|
|
25
|
+
msgstr "تارايتىشنى كېمەيت"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-indent",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "39.0.0",
|
|
4
4
|
"description": "Block indentation feature for CKEditor 5.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ckeditor",
|
|
@@ -11,9 +11,8 @@
|
|
|
11
11
|
"ckeditor5-dll"
|
|
12
12
|
],
|
|
13
13
|
"main": "src/index.js",
|
|
14
|
-
"type": "module",
|
|
15
14
|
"dependencies": {
|
|
16
|
-
"ckeditor5": "
|
|
15
|
+
"ckeditor5": "39.0.0"
|
|
17
16
|
},
|
|
18
17
|
"engines": {
|
|
19
18
|
"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 { IndentBlockConfig, Indent, IndentBlock, IndentUI, IndentBlockCommand } from './index
|
|
5
|
+
import type { IndentBlockConfig, Indent, IndentBlock, IndentUI, IndentBlockCommand } from './index';
|
|
6
6
|
declare module '@ckeditor/ckeditor5-core' {
|
|
7
7
|
interface EditorConfig {
|
|
8
8
|
/**
|
package/src/indent.d.ts
CHANGED
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module indent/indent
|
|
7
7
|
*/
|
|
8
|
-
import { Plugin } from 'ckeditor5/src/core
|
|
9
|
-
import IndentEditing from './indentediting
|
|
10
|
-
import IndentUI from './indentui
|
|
8
|
+
import { Plugin } from 'ckeditor5/src/core';
|
|
9
|
+
import IndentEditing from './indentediting';
|
|
10
|
+
import IndentUI from './indentui';
|
|
11
11
|
/**
|
|
12
12
|
* The indent feature.
|
|
13
13
|
*
|
package/src/indent.js
CHANGED
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module indent/indent
|
|
7
7
|
*/
|
|
8
|
-
import { Plugin } from 'ckeditor5/src/core
|
|
9
|
-
import IndentEditing from './indentediting
|
|
10
|
-
import IndentUI from './indentui
|
|
8
|
+
import { Plugin } from 'ckeditor5/src/core';
|
|
9
|
+
import IndentEditing from './indentediting';
|
|
10
|
+
import IndentUI from './indentui';
|
|
11
11
|
/**
|
|
12
12
|
* The indent feature.
|
|
13
13
|
*
|
package/src/indentblock.d.ts
CHANGED
package/src/indentblock.js
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module indent/indentblock
|
|
7
7
|
*/
|
|
8
|
-
import { Plugin } from 'ckeditor5/src/core
|
|
9
|
-
import { addMarginRules } from 'ckeditor5/src/engine
|
|
10
|
-
import IndentBlockCommand from './indentblockcommand
|
|
11
|
-
import IndentUsingOffset from './indentcommandbehavior/indentusingoffset
|
|
12
|
-
import IndentUsingClasses from './indentcommandbehavior/indentusingclasses
|
|
8
|
+
import { Plugin } from 'ckeditor5/src/core';
|
|
9
|
+
import { addMarginRules } from 'ckeditor5/src/engine';
|
|
10
|
+
import IndentBlockCommand from './indentblockcommand';
|
|
11
|
+
import IndentUsingOffset from './indentcommandbehavior/indentusingoffset';
|
|
12
|
+
import IndentUsingClasses from './indentcommandbehavior/indentusingclasses';
|
|
13
13
|
const DEFAULT_ELEMENTS = ['paragraph', 'heading1', 'heading2', 'heading3', 'heading4', 'heading5', 'heading6'];
|
|
14
14
|
/**
|
|
15
15
|
* The block indentation feature.
|
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module indent/indentblockcommand
|
|
7
7
|
*/
|
|
8
|
-
import { Command, type Editor } from 'ckeditor5/src/core
|
|
9
|
-
import type { IndentBehavior } from './indentcommandbehavior/indentbehavior
|
|
8
|
+
import { Command, type Editor } from 'ckeditor5/src/core';
|
|
9
|
+
import type { IndentBehavior } from './indentcommandbehavior/indentbehavior';
|
|
10
10
|
/**
|
|
11
11
|
* The indent block command.
|
|
12
12
|
*
|
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module indent/indentblockcommand
|
|
7
7
|
*/
|
|
8
|
-
import { Command } from 'ckeditor5/src/core
|
|
9
|
-
import { first } from 'ckeditor5/src/utils
|
|
8
|
+
import { Command } from 'ckeditor5/src/core';
|
|
9
|
+
import { first } from 'ckeditor5/src/utils';
|
|
10
10
|
/**
|
|
11
11
|
* The indent block command.
|
|
12
12
|
*
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module indent/indentcommandbehavior/indentusingclasses
|
|
7
7
|
*/
|
|
8
|
-
import type { IndentBehavior } from './indentbehavior
|
|
8
|
+
import type { IndentBehavior } from './indentbehavior';
|
|
9
9
|
/**
|
|
10
10
|
* The block indentation behavior that uses classes to set indentation.
|
|
11
11
|
*/
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module indent/indentcommandbehavior/indentusingoffset
|
|
7
7
|
*/
|
|
8
|
-
import type { IndentBehavior } from './indentbehavior
|
|
8
|
+
import type { IndentBehavior } from './indentbehavior';
|
|
9
9
|
/**
|
|
10
10
|
* The block indentation behavior that uses offsets to set indentation.
|
|
11
11
|
*/
|
package/src/indentediting.d.ts
CHANGED
package/src/indentediting.js
CHANGED
package/src/indentui.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 { Plugin } from 'ckeditor5/src/core
|
|
5
|
+
import { Plugin } from 'ckeditor5/src/core';
|
|
6
6
|
/**
|
|
7
7
|
* The indent UI feature.
|
|
8
8
|
*
|
package/src/indentui.js
CHANGED
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module indent/indentui
|
|
7
7
|
*/
|
|
8
|
-
import { ButtonView } from 'ckeditor5/src/ui
|
|
9
|
-
import { Plugin } from 'ckeditor5/src/core
|
|
8
|
+
import { ButtonView } from 'ckeditor5/src/ui';
|
|
9
|
+
import { Plugin } from 'ckeditor5/src/core';
|
|
10
10
|
import indentIcon from '../theme/icons/indent.svg';
|
|
11
11
|
import outdentIcon from '../theme/icons/outdent.svg';
|
|
12
12
|
/**
|
package/src/index.d.ts
CHANGED
|
@@ -5,10 +5,10 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module indent
|
|
7
7
|
*/
|
|
8
|
-
export { default as Indent } from './indent
|
|
9
|
-
export { default as IndentEditing } from './indentediting
|
|
10
|
-
export { default as IndentUI } from './indentui
|
|
11
|
-
export { default as IndentBlock } from './indentblock
|
|
12
|
-
export type { IndentBlockConfig } from './indentconfig
|
|
13
|
-
export type { default as IndentBlockCommand } from './indentblockcommand
|
|
14
|
-
import './augmentation
|
|
8
|
+
export { default as Indent } from './indent';
|
|
9
|
+
export { default as IndentEditing } from './indentediting';
|
|
10
|
+
export { default as IndentUI } from './indentui';
|
|
11
|
+
export { default as IndentBlock } from './indentblock';
|
|
12
|
+
export type { IndentBlockConfig } from './indentconfig';
|
|
13
|
+
export type { default as IndentBlockCommand } from './indentblockcommand';
|
|
14
|
+
import './augmentation';
|
package/src/index.js
CHANGED
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module indent
|
|
7
7
|
*/
|
|
8
|
-
export { default as Indent } from './indent
|
|
9
|
-
export { default as IndentEditing } from './indentediting
|
|
10
|
-
export { default as IndentUI } from './indentui
|
|
11
|
-
export { default as IndentBlock } from './indentblock
|
|
12
|
-
import './augmentation
|
|
8
|
+
export { default as Indent } from './indent';
|
|
9
|
+
export { default as IndentEditing } from './indentediting';
|
|
10
|
+
export { default as IndentUI } from './indentui';
|
|
11
|
+
export { default as IndentBlock } from './indentblock';
|
|
12
|
+
import './augmentation';
|