@ckeditor/ckeditor5-basic-styles 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.
Files changed (177) hide show
  1. package/build/basic-styles.js +2 -2
  2. package/build/translations/af.js +1 -1
  3. package/build/translations/ar.js +1 -1
  4. package/build/translations/ast.js +1 -1
  5. package/build/translations/az.js +1 -1
  6. package/build/translations/bg.js +1 -1
  7. package/build/translations/bn.js +1 -1
  8. package/build/translations/bs.js +1 -1
  9. package/build/translations/ca.js +1 -1
  10. package/build/translations/cs.js +1 -1
  11. package/build/translations/da.js +1 -1
  12. package/build/translations/de-ch.js +1 -1
  13. package/build/translations/de.js +1 -1
  14. package/build/translations/el.js +1 -1
  15. package/build/translations/en-au.js +1 -1
  16. package/build/translations/en-gb.js +1 -1
  17. package/build/translations/eo.js +1 -1
  18. package/build/translations/es-co.js +1 -1
  19. package/build/translations/es.js +1 -1
  20. package/build/translations/et.js +1 -1
  21. package/build/translations/eu.js +1 -1
  22. package/build/translations/fa.js +1 -1
  23. package/build/translations/fi.js +1 -1
  24. package/build/translations/fr.js +1 -1
  25. package/build/translations/gl.js +1 -1
  26. package/build/translations/gu.js +1 -1
  27. package/build/translations/he.js +1 -1
  28. package/build/translations/hi.js +1 -1
  29. package/build/translations/hr.js +1 -1
  30. package/build/translations/hu.js +1 -1
  31. package/build/translations/hy.js +1 -1
  32. package/build/translations/id.js +1 -1
  33. package/build/translations/it.js +1 -1
  34. package/build/translations/ja.js +1 -1
  35. package/build/translations/jv.js +1 -1
  36. package/build/translations/km.js +1 -1
  37. package/build/translations/kn.js +1 -1
  38. package/build/translations/ko.js +1 -1
  39. package/build/translations/ku.js +1 -1
  40. package/build/translations/lt.js +1 -1
  41. package/build/translations/lv.js +1 -1
  42. package/build/translations/ms.js +1 -1
  43. package/build/translations/nb.js +1 -1
  44. package/build/translations/ne.js +1 -1
  45. package/build/translations/nl.js +1 -1
  46. package/build/translations/no.js +1 -1
  47. package/build/translations/oc.js +1 -1
  48. package/build/translations/pl.js +1 -1
  49. package/build/translations/pt-br.js +1 -1
  50. package/build/translations/pt.js +1 -1
  51. package/build/translations/ro.js +1 -1
  52. package/build/translations/ru.js +1 -1
  53. package/build/translations/si.js +1 -1
  54. package/build/translations/sk.js +1 -1
  55. package/build/translations/sl.js +1 -1
  56. package/build/translations/sq.js +1 -1
  57. package/build/translations/sr-latn.js +1 -1
  58. package/build/translations/sr.js +1 -1
  59. package/build/translations/sv.js +1 -1
  60. package/build/translations/th.js +1 -1
  61. package/build/translations/tk.js +1 -1
  62. package/build/translations/tr.js +1 -1
  63. package/build/translations/tt.js +1 -1
  64. package/build/translations/ug.js +1 -1
  65. package/build/translations/uk.js +1 -1
  66. package/build/translations/ur.js +1 -1
  67. package/build/translations/uz.js +1 -1
  68. package/build/translations/vi.js +1 -1
  69. package/build/translations/zh-cn.js +1 -1
  70. package/build/translations/zh.js +1 -1
  71. package/dist/content-index.css +9 -0
  72. package/dist/editor-index.css +7 -0
  73. package/dist/index.css +20 -0
  74. package/dist/index.css.map +1 -0
  75. package/dist/index.js +1078 -0
  76. package/dist/index.js.map +1 -0
  77. package/dist/types/attributecommand.d.ts +74 -0
  78. package/dist/types/augmentation.d.ts +40 -0
  79. package/dist/types/bold/boldediting.d.ts +24 -0
  80. package/dist/types/bold/boldui.d.ts +21 -0
  81. package/dist/types/bold.d.ts +29 -0
  82. package/dist/types/code/codeediting.d.ts +29 -0
  83. package/dist/types/code/codeui.d.ts +22 -0
  84. package/dist/types/code.d.ts +30 -0
  85. package/dist/types/index.d.ts +30 -0
  86. package/dist/types/italic/italicediting.d.ts +24 -0
  87. package/dist/types/italic/italicui.d.ts +21 -0
  88. package/dist/types/italic.d.ts +29 -0
  89. package/dist/types/strikethrough/strikethroughediting.d.ts +25 -0
  90. package/dist/types/strikethrough/strikethroughui.d.ts +21 -0
  91. package/dist/types/strikethrough.d.ts +29 -0
  92. package/dist/types/subscript/subscriptediting.d.ts +24 -0
  93. package/dist/types/subscript/subscriptui.d.ts +21 -0
  94. package/dist/types/subscript.d.ts +26 -0
  95. package/dist/types/superscript/superscriptediting.d.ts +24 -0
  96. package/dist/types/superscript/superscriptui.d.ts +21 -0
  97. package/dist/types/superscript.d.ts +26 -0
  98. package/dist/types/underline/underlineediting.d.ts +24 -0
  99. package/dist/types/underline/underlineui.d.ts +21 -0
  100. package/dist/types/underline.d.ts +29 -0
  101. package/lang/contexts.json +6 -1
  102. package/lang/translations/af.po +20 -0
  103. package/lang/translations/ar.po +20 -0
  104. package/lang/translations/ast.po +20 -0
  105. package/lang/translations/az.po +20 -0
  106. package/lang/translations/bg.po +20 -0
  107. package/lang/translations/bn.po +20 -0
  108. package/lang/translations/bs.po +20 -0
  109. package/lang/translations/ca.po +20 -0
  110. package/lang/translations/cs.po +20 -0
  111. package/lang/translations/da.po +20 -0
  112. package/lang/translations/de-ch.po +20 -0
  113. package/lang/translations/de.po +20 -0
  114. package/lang/translations/el.po +20 -0
  115. package/lang/translations/en-au.po +20 -0
  116. package/lang/translations/en-gb.po +20 -0
  117. package/lang/translations/en.po +20 -0
  118. package/lang/translations/eo.po +20 -0
  119. package/lang/translations/es-co.po +20 -0
  120. package/lang/translations/es.po +20 -0
  121. package/lang/translations/et.po +20 -0
  122. package/lang/translations/eu.po +20 -0
  123. package/lang/translations/fa.po +20 -0
  124. package/lang/translations/fi.po +20 -0
  125. package/lang/translations/fr.po +20 -0
  126. package/lang/translations/gl.po +20 -0
  127. package/lang/translations/gu.po +20 -0
  128. package/lang/translations/he.po +21 -1
  129. package/lang/translations/hi.po +20 -0
  130. package/lang/translations/hr.po +20 -0
  131. package/lang/translations/hu.po +20 -0
  132. package/lang/translations/hy.po +20 -0
  133. package/lang/translations/id.po +20 -0
  134. package/lang/translations/it.po +20 -0
  135. package/lang/translations/ja.po +20 -0
  136. package/lang/translations/jv.po +20 -0
  137. package/lang/translations/km.po +20 -0
  138. package/lang/translations/kn.po +20 -0
  139. package/lang/translations/ko.po +20 -0
  140. package/lang/translations/ku.po +20 -0
  141. package/lang/translations/lt.po +20 -0
  142. package/lang/translations/lv.po +20 -0
  143. package/lang/translations/ms.po +20 -0
  144. package/lang/translations/nb.po +20 -0
  145. package/lang/translations/ne.po +20 -0
  146. package/lang/translations/nl.po +20 -0
  147. package/lang/translations/no.po +20 -0
  148. package/lang/translations/oc.po +20 -0
  149. package/lang/translations/pl.po +20 -0
  150. package/lang/translations/pt-br.po +20 -0
  151. package/lang/translations/pt.po +21 -1
  152. package/lang/translations/ro.po +20 -0
  153. package/lang/translations/ru.po +20 -0
  154. package/lang/translations/si.po +20 -0
  155. package/lang/translations/sk.po +20 -0
  156. package/lang/translations/sl.po +20 -0
  157. package/lang/translations/sq.po +20 -0
  158. package/lang/translations/sr-latn.po +20 -0
  159. package/lang/translations/sr.po +20 -0
  160. package/lang/translations/sv.po +20 -0
  161. package/lang/translations/th.po +20 -0
  162. package/lang/translations/tk.po +20 -0
  163. package/lang/translations/tr.po +20 -0
  164. package/lang/translations/tt.po +20 -0
  165. package/lang/translations/ug.po +20 -0
  166. package/lang/translations/uk.po +20 -0
  167. package/lang/translations/ur.po +20 -0
  168. package/lang/translations/uz.po +20 -0
  169. package/lang/translations/vi.po +20 -0
  170. package/lang/translations/zh-cn.po +20 -0
  171. package/lang/translations/zh.po +20 -0
  172. package/package.json +3 -2
  173. package/src/bold/boldediting.js +10 -0
  174. package/src/code/codeediting.js +13 -0
  175. package/src/italic/italicediting.js +10 -0
  176. package/src/strikethrough/strikethroughediting.js +10 -0
  177. package/src/underline/underlineediting.js +10 -0
@@ -0,0 +1,29 @@
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 basic-styles/bold
7
+ */
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ import BoldEditing from './bold/boldediting.js';
10
+ import BoldUI from './bold/boldui.js';
11
+ /**
12
+ * The bold feature.
13
+ *
14
+ * For a detailed overview check the {@glink features/basic-styles Basic styles feature} guide
15
+ * and the {@glink api/basic-styles package page}.
16
+ *
17
+ * This is a "glue" plugin which loads the {@link module:basic-styles/bold/boldediting~BoldEditing bold editing feature}
18
+ * and {@link module:basic-styles/bold/boldui~BoldUI bold UI feature}.
19
+ */
20
+ export default class Bold extends Plugin {
21
+ /**
22
+ * @inheritDoc
23
+ */
24
+ static get requires(): readonly [typeof BoldEditing, typeof BoldUI];
25
+ /**
26
+ * @inheritDoc
27
+ */
28
+ static get pluginName(): "Bold";
29
+ }
@@ -0,0 +1,29 @@
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 basic-styles/code/codeediting
7
+ */
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ import { TwoStepCaretMovement } from 'ckeditor5/src/typing.js';
10
+ /**
11
+ * The code editing feature.
12
+ *
13
+ * It registers the `'code'` command and introduces the `code` attribute in the model which renders to the view
14
+ * as a `<code>` element.
15
+ */
16
+ export default class CodeEditing extends Plugin {
17
+ /**
18
+ * @inheritDoc
19
+ */
20
+ static get pluginName(): "CodeEditing";
21
+ /**
22
+ * @inheritDoc
23
+ */
24
+ static get requires(): readonly [typeof TwoStepCaretMovement];
25
+ /**
26
+ * @inheritDoc
27
+ */
28
+ init(): void;
29
+ }
@@ -0,0 +1,22 @@
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 basic-styles/code/codeui
7
+ */
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ import '../../theme/code.css';
10
+ /**
11
+ * The code UI feature. It introduces the Code button.
12
+ */
13
+ export default class CodeUI extends Plugin {
14
+ /**
15
+ * @inheritDoc
16
+ */
17
+ static get pluginName(): "CodeUI";
18
+ /**
19
+ * @inheritDoc
20
+ */
21
+ init(): void;
22
+ }
@@ -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 basic-styles/code
7
+ */
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ import CodeEditing from './code/codeediting.js';
10
+ import CodeUI from './code/codeui.js';
11
+ import '../theme/code.css';
12
+ /**
13
+ * The code feature.
14
+ *
15
+ * For a detailed overview check the {@glink features/basic-styles Basic styles feature} guide
16
+ * and the {@glink api/basic-styles package page}.
17
+ *
18
+ * This is a "glue" plugin which loads the {@link module:basic-styles/code/codeediting~CodeEditing code editing feature}
19
+ * and {@link module:basic-styles/code/codeui~CodeUI code UI feature}.
20
+ */
21
+ export default class Code extends Plugin {
22
+ /**
23
+ * @inheritDoc
24
+ */
25
+ static get requires(): readonly [typeof CodeEditing, typeof CodeUI];
26
+ /**
27
+ * @inheritDoc
28
+ */
29
+ static get pluginName(): "Code";
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 basic-styles
7
+ */
8
+ export { default as Bold } from './bold.js';
9
+ export { default as BoldEditing } from './bold/boldediting.js';
10
+ export { default as BoldUI } from './bold/boldui.js';
11
+ export { default as Code } from './code.js';
12
+ export { default as CodeEditing } from './code/codeediting.js';
13
+ export { default as CodeUI } from './code/codeui.js';
14
+ export { default as Italic } from './italic.js';
15
+ export { default as ItalicEditing } from './italic/italicediting.js';
16
+ export { default as ItalicUI } from './italic/italicui.js';
17
+ export { default as Strikethrough } from './strikethrough.js';
18
+ export { default as StrikethroughEditing } from './strikethrough/strikethroughediting.js';
19
+ export { default as StrikethroughUI } from './strikethrough/strikethroughui.js';
20
+ export { default as Subscript } from './subscript.js';
21
+ export { default as SubscriptEditing } from './subscript/subscriptediting.js';
22
+ export { default as SubscriptUI } from './subscript/subscriptui.js';
23
+ export { default as Superscript } from './superscript.js';
24
+ export { default as SuperscriptEditing } from './superscript/superscriptediting.js';
25
+ export { default as SuperscriptUI } from './superscript/superscriptui.js';
26
+ export { default as Underline } from './underline.js';
27
+ export { default as UnderlineEditing } from './underline/underlineediting.js';
28
+ export { default as UnderlineUI } from './underline/underlineui.js';
29
+ export type { default as AttributeCommand } from './attributecommand.js';
30
+ import './augmentation.js';
@@ -0,0 +1,24 @@
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 basic-styles/italic/italicediting
7
+ */
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ /**
10
+ * The italic editing feature.
11
+ *
12
+ * It registers the `'italic'` command, the <kbd>Ctrl+I</kbd> keystroke and introduces the `italic` attribute in the model
13
+ * which renders to the view as an `<i>` element.
14
+ */
15
+ export default class ItalicEditing extends Plugin {
16
+ /**
17
+ * @inheritDoc
18
+ */
19
+ static get pluginName(): "ItalicEditing";
20
+ /**
21
+ * @inheritDoc
22
+ */
23
+ init(): void;
24
+ }
@@ -0,0 +1,21 @@
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 basic-styles/italic/italicui
7
+ */
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ /**
10
+ * The italic UI feature. It introduces the Italic button.
11
+ */
12
+ export default class ItalicUI extends Plugin {
13
+ /**
14
+ * @inheritDoc
15
+ */
16
+ static get pluginName(): "ItalicUI";
17
+ /**
18
+ * @inheritDoc
19
+ */
20
+ init(): void;
21
+ }
@@ -0,0 +1,29 @@
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 basic-styles/italic
7
+ */
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ import ItalicEditing from './italic/italicediting.js';
10
+ import ItalicUI from './italic/italicui.js';
11
+ /**
12
+ * The italic feature.
13
+ *
14
+ * For a detailed overview check the {@glink features/basic-styles Basic styles feature} guide
15
+ * and the {@glink api/basic-styles package page}.
16
+ *
17
+ * This is a "glue" plugin which loads the {@link module:basic-styles/italic/italicediting~ItalicEditing} and
18
+ * {@link module:basic-styles/italic/italicui~ItalicUI} plugins.
19
+ */
20
+ export default class Italic extends Plugin {
21
+ /**
22
+ * @inheritDoc
23
+ */
24
+ static get requires(): readonly [typeof ItalicEditing, typeof ItalicUI];
25
+ /**
26
+ * @inheritDoc
27
+ */
28
+ static get pluginName(): "Italic";
29
+ }
@@ -0,0 +1,25 @@
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 basic-styles/strikethrough/strikethroughediting
7
+ */
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ /**
10
+ * The strikethrough editing feature.
11
+ *
12
+ * It registers the `'strikethrough'` command, the <kbd>Ctrl+Shift+X</kbd> keystroke and introduces the
13
+ * `strikethroughsthrough` attribute in the model which renders to the view
14
+ * as a `<s>` element.
15
+ */
16
+ export default class StrikethroughEditing extends Plugin {
17
+ /**
18
+ * @inheritDoc
19
+ */
20
+ static get pluginName(): "StrikethroughEditing";
21
+ /**
22
+ * @inheritDoc
23
+ */
24
+ init(): void;
25
+ }
@@ -0,0 +1,21 @@
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 basic-styles/strikethrough/strikethroughui
7
+ */
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ /**
10
+ * The strikethrough UI feature. It introduces the Strikethrough button.
11
+ */
12
+ export default class StrikethroughUI extends Plugin {
13
+ /**
14
+ * @inheritDoc
15
+ */
16
+ static get pluginName(): "StrikethroughUI";
17
+ /**
18
+ * @inheritDoc
19
+ */
20
+ init(): void;
21
+ }
@@ -0,0 +1,29 @@
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 basic-styles/strikethrough
7
+ */
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ import StrikethroughEditing from './strikethrough/strikethroughediting.js';
10
+ import StrikethroughUI from './strikethrough/strikethroughui.js';
11
+ /**
12
+ * The strikethrough feature.
13
+ *
14
+ * For a detailed overview check the {@glink features/basic-styles Basic styles feature} guide
15
+ * and the {@glink api/basic-styles package page}.
16
+ *
17
+ * This is a "glue" plugin which loads the {@link module:basic-styles/strikethrough/strikethroughediting~StrikethroughEditing} and
18
+ * {@link module:basic-styles/strikethrough/strikethroughui~StrikethroughUI} plugins.
19
+ */
20
+ export default class Strikethrough extends Plugin {
21
+ /**
22
+ * @inheritDoc
23
+ */
24
+ static get requires(): readonly [typeof StrikethroughEditing, typeof StrikethroughUI];
25
+ /**
26
+ * @inheritDoc
27
+ */
28
+ static get pluginName(): "Strikethrough";
29
+ }
@@ -0,0 +1,24 @@
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 basic-styles/subscript/subscriptediting
7
+ */
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ /**
10
+ * The subscript editing feature.
11
+ *
12
+ * It registers the `sub` command and introduces the `sub` attribute in the model which renders to the view
13
+ * as a `<sub>` element.
14
+ */
15
+ export default class SubscriptEditing extends Plugin {
16
+ /**
17
+ * @inheritDoc
18
+ */
19
+ static get pluginName(): "SubscriptEditing";
20
+ /**
21
+ * @inheritDoc
22
+ */
23
+ init(): void;
24
+ }
@@ -0,0 +1,21 @@
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 basic-styles/subscript/subscriptui
7
+ */
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ /**
10
+ * The subscript UI feature. It introduces the Subscript button.
11
+ */
12
+ export default class SubscriptUI extends Plugin {
13
+ /**
14
+ * @inheritDoc
15
+ */
16
+ static get pluginName(): "SubscriptUI";
17
+ /**
18
+ * @inheritDoc
19
+ */
20
+ init(): void;
21
+ }
@@ -0,0 +1,26 @@
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 basic-styles/subscript
7
+ */
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ import SubscriptEditing from './subscript/subscriptediting.js';
10
+ import SubscriptUI from './subscript/subscriptui.js';
11
+ /**
12
+ * The subscript feature.
13
+ *
14
+ * It loads the {@link module:basic-styles/subscript/subscriptediting~SubscriptEditing} and
15
+ * {@link module:basic-styles/subscript/subscriptui~SubscriptUI} plugins.
16
+ */
17
+ export default class Subscript extends Plugin {
18
+ /**
19
+ * @inheritDoc
20
+ */
21
+ static get requires(): readonly [typeof SubscriptEditing, typeof SubscriptUI];
22
+ /**
23
+ * @inheritDoc
24
+ */
25
+ static get pluginName(): "Subscript";
26
+ }
@@ -0,0 +1,24 @@
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 basic-styles/superscript/superscriptediting
7
+ */
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ /**
10
+ * The superscript editing feature.
11
+ *
12
+ * It registers the `super` command and introduces the `super` attribute in the model which renders to the view
13
+ * as a `<super>` element.
14
+ */
15
+ export default class SuperscriptEditing extends Plugin {
16
+ /**
17
+ * @inheritDoc
18
+ */
19
+ static get pluginName(): "SuperscriptEditing";
20
+ /**
21
+ * @inheritDoc
22
+ */
23
+ init(): void;
24
+ }
@@ -0,0 +1,21 @@
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 basic-styles/superscript/superscriptui
7
+ */
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ /**
10
+ * The superscript UI feature. It introduces the Superscript button.
11
+ */
12
+ export default class SuperscriptUI extends Plugin {
13
+ /**
14
+ * @inheritDoc
15
+ */
16
+ static get pluginName(): "SuperscriptUI";
17
+ /**
18
+ * @inheritDoc
19
+ */
20
+ init(): void;
21
+ }
@@ -0,0 +1,26 @@
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 basic-styles/superscript
7
+ */
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ import SuperscriptEditing from './superscript/superscriptediting.js';
10
+ import SuperscriptUI from './superscript/superscriptui.js';
11
+ /**
12
+ * The superscript feature.
13
+ *
14
+ * It loads the {@link module:basic-styles/superscript/superscriptediting~SuperscriptEditing} and
15
+ * {@link module:basic-styles/superscript/superscriptui~SuperscriptUI} plugins.
16
+ */
17
+ export default class Superscript extends Plugin {
18
+ /**
19
+ * @inheritDoc
20
+ */
21
+ static get requires(): readonly [typeof SuperscriptEditing, typeof SuperscriptUI];
22
+ /**
23
+ * @inheritDoc
24
+ */
25
+ static get pluginName(): "Superscript";
26
+ }
@@ -0,0 +1,24 @@
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 basic-styles/underline/underlineediting
7
+ */
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ /**
10
+ * The underline editing feature.
11
+ *
12
+ * It registers the `'underline'` command, the <kbd>Ctrl+U</kbd> keystroke
13
+ * and introduces the `underline` attribute in the model which renders to the view as an `<u>` element.
14
+ */
15
+ export default class UnderlineEditing extends Plugin {
16
+ /**
17
+ * @inheritDoc
18
+ */
19
+ static get pluginName(): "UnderlineEditing";
20
+ /**
21
+ * @inheritDoc
22
+ */
23
+ init(): void;
24
+ }
@@ -0,0 +1,21 @@
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 basic-styles/underline/underlineui
7
+ */
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ /**
10
+ * The underline UI feature. It introduces the Underline button.
11
+ */
12
+ export default class UnderlineUI extends Plugin {
13
+ /**
14
+ * @inheritDoc
15
+ */
16
+ static get pluginName(): "UnderlineUI";
17
+ /**
18
+ * @inheritDoc
19
+ */
20
+ init(): void;
21
+ }
@@ -0,0 +1,29 @@
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 basic-styles/underline
7
+ */
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ import UnderlineEditing from './underline/underlineediting.js';
10
+ import UnderlineUI from './underline/underlineui.js';
11
+ /**
12
+ * The underline feature.
13
+ *
14
+ * For a detailed overview check the {@glink features/basic-styles Basic styles feature} guide
15
+ * and the {@glink api/basic-styles package page}.
16
+ *
17
+ * This is a "glue" plugin which loads the {@link module:basic-styles/underline/underlineediting~UnderlineEditing} and
18
+ * {@link module:basic-styles/underline/underlineui~UnderlineUI} plugins.
19
+ */
20
+ export default class Underline extends Plugin {
21
+ /**
22
+ * @inheritDoc
23
+ */
24
+ static get requires(): readonly [typeof UnderlineEditing, typeof UnderlineUI];
25
+ /**
26
+ * @inheritDoc
27
+ */
28
+ static get pluginName(): "Underline";
29
+ }
@@ -5,5 +5,10 @@
5
5
  "Code": "Toolbar button tooltip for the Code feature.",
6
6
  "Strikethrough": "Toolbar button tooltip for the Strikethrough feature.",
7
7
  "Subscript": "Toolbar button tooltip for the Subscript feature.",
8
- "Superscript": "Toolbar button tooltip for the Superscript feature."
8
+ "Superscript": "Toolbar button tooltip for the Superscript feature.",
9
+ "Italic text": "Keystroke description for assistive technologies: keystroke for making text italic.",
10
+ "Move out of an inline code style": "Keystroke description for assistive technologies: keystroke for moving selection out of an inline code style.",
11
+ "Bold text": "Keystroke description for assistive technologies: keystroke for making text bold.",
12
+ "Underline text": "Keystroke description for assistive technologies: keystroke for making text underlined.",
13
+ "Strikethrough text": "Keystroke description for assistive technologies: keystroke for making text strikethrough."
9
14
  }
@@ -44,3 +44,23 @@ msgstr "Onderskrif"
44
44
  msgctxt "Toolbar button tooltip for the Superscript feature."
45
45
  msgid "Superscript"
46
46
  msgstr "Boskrif"
47
+
48
+ msgctxt "Keystroke description for assistive technologies: keystroke for making text italic."
49
+ msgid "Italic text"
50
+ msgstr ""
51
+
52
+ msgctxt "Keystroke description for assistive technologies: keystroke for moving selection out of an inline code style."
53
+ msgid "Move out of an inline code style"
54
+ msgstr ""
55
+
56
+ msgctxt "Keystroke description for assistive technologies: keystroke for making text bold."
57
+ msgid "Bold text"
58
+ msgstr ""
59
+
60
+ msgctxt "Keystroke description for assistive technologies: keystroke for making text underlined."
61
+ msgid "Underline text"
62
+ msgstr ""
63
+
64
+ msgctxt "Keystroke description for assistive technologies: keystroke for making text strikethrough."
65
+ msgid "Strikethrough text"
66
+ msgstr ""
@@ -44,3 +44,23 @@ msgstr "حرف منخفض"
44
44
  msgctxt "Toolbar button tooltip for the Superscript feature."
45
45
  msgid "Superscript"
46
46
  msgstr "حرف مرتفع"
47
+
48
+ msgctxt "Keystroke description for assistive technologies: keystroke for making text italic."
49
+ msgid "Italic text"
50
+ msgstr "نص مائل"
51
+
52
+ msgctxt "Keystroke description for assistive technologies: keystroke for moving selection out of an inline code style."
53
+ msgid "Move out of an inline code style"
54
+ msgstr "ابتعدْ عن نمط التعليمات البرمجية المضمّنة"
55
+
56
+ msgctxt "Keystroke description for assistive technologies: keystroke for making text bold."
57
+ msgid "Bold text"
58
+ msgstr "نص غامق"
59
+
60
+ msgctxt "Keystroke description for assistive technologies: keystroke for making text underlined."
61
+ msgid "Underline text"
62
+ msgstr "تسطير النص"
63
+
64
+ msgctxt "Keystroke description for assistive technologies: keystroke for making text strikethrough."
65
+ msgid "Strikethrough text"
66
+ msgstr "توسيط الخط في النص"
@@ -44,3 +44,23 @@ msgstr ""
44
44
  msgctxt "Toolbar button tooltip for the Superscript feature."
45
45
  msgid "Superscript"
46
46
  msgstr ""
47
+
48
+ msgctxt "Keystroke description for assistive technologies: keystroke for making text italic."
49
+ msgid "Italic text"
50
+ msgstr ""
51
+
52
+ msgctxt "Keystroke description for assistive technologies: keystroke for moving selection out of an inline code style."
53
+ msgid "Move out of an inline code style"
54
+ msgstr ""
55
+
56
+ msgctxt "Keystroke description for assistive technologies: keystroke for making text bold."
57
+ msgid "Bold text"
58
+ msgstr ""
59
+
60
+ msgctxt "Keystroke description for assistive technologies: keystroke for making text underlined."
61
+ msgid "Underline text"
62
+ msgstr ""
63
+
64
+ msgctxt "Keystroke description for assistive technologies: keystroke for making text strikethrough."
65
+ msgid "Strikethrough text"
66
+ msgstr ""
@@ -44,3 +44,23 @@ msgstr "Alt yazı"
44
44
  msgctxt "Toolbar button tooltip for the Superscript feature."
45
45
  msgid "Superscript"
46
46
  msgstr "Üst yazı"
47
+
48
+ msgctxt "Keystroke description for assistive technologies: keystroke for making text italic."
49
+ msgid "Italic text"
50
+ msgstr ""
51
+
52
+ msgctxt "Keystroke description for assistive technologies: keystroke for moving selection out of an inline code style."
53
+ msgid "Move out of an inline code style"
54
+ msgstr ""
55
+
56
+ msgctxt "Keystroke description for assistive technologies: keystroke for making text bold."
57
+ msgid "Bold text"
58
+ msgstr ""
59
+
60
+ msgctxt "Keystroke description for assistive technologies: keystroke for making text underlined."
61
+ msgid "Underline text"
62
+ msgstr ""
63
+
64
+ msgctxt "Keystroke description for assistive technologies: keystroke for making text strikethrough."
65
+ msgid "Strikethrough text"
66
+ msgstr ""
@@ -44,3 +44,23 @@ msgstr "Долен индекс"
44
44
  msgctxt "Toolbar button tooltip for the Superscript feature."
45
45
  msgid "Superscript"
46
46
  msgstr "Горен индекс"
47
+
48
+ msgctxt "Keystroke description for assistive technologies: keystroke for making text italic."
49
+ msgid "Italic text"
50
+ msgstr "Наклонен текст"
51
+
52
+ msgctxt "Keystroke description for assistive technologies: keystroke for moving selection out of an inline code style."
53
+ msgid "Move out of an inline code style"
54
+ msgstr "Излизане от подравнен стил на кодиране"
55
+
56
+ msgctxt "Keystroke description for assistive technologies: keystroke for making text bold."
57
+ msgid "Bold text"
58
+ msgstr "Почернен текст"
59
+
60
+ msgctxt "Keystroke description for assistive technologies: keystroke for making text underlined."
61
+ msgid "Underline text"
62
+ msgstr "Подчертан текст"
63
+
64
+ msgctxt "Keystroke description for assistive technologies: keystroke for making text strikethrough."
65
+ msgid "Strikethrough text"
66
+ msgstr "Зачертан текст"