@ckeditor/ckeditor5-paragraph 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 CHANGED
@@ -4,7 +4,6 @@ CKEditor 5 paragraph feature
4
4
  [![npm version](https://badge.fury.io/js/%40ckeditor%2Fckeditor5-paragraph.svg)](https://www.npmjs.com/package/@ckeditor/ckeditor5-paragraph)
5
5
  [![Coverage Status](https://coveralls.io/repos/github/ckeditor/ckeditor5/badge.svg?branch=master)](https://coveralls.io/github/ckeditor/ckeditor5?branch=master)
6
6
  [![Build Status](https://travis-ci.com/ckeditor/ckeditor5.svg?branch=master)](https://app.travis-ci.com/github/ckeditor/ckeditor5)
7
- ![Dependency Status](https://img.shields.io/librariesio/release/npm/@ckeditor/ckeditor5-paragraph)
8
7
 
9
8
  This package implements paragraph support for CKEditor 5.
10
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-paragraph",
3
- "version": "38.2.0-alpha.1",
3
+ "version": "39.0.0",
4
4
  "description": "Paragraph feature for CKEditor 5.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -11,11 +11,10 @@
11
11
  "ckeditor5-dll"
12
12
  ],
13
13
  "main": "src/index.js",
14
- "type": "module",
15
14
  "dependencies": {
16
- "@ckeditor/ckeditor5-core": "38.2.0-alpha.1",
17
- "@ckeditor/ckeditor5-ui": "38.2.0-alpha.1",
18
- "@ckeditor/ckeditor5-utils": "38.2.0-alpha.1"
15
+ "@ckeditor/ckeditor5-core": "39.0.0",
16
+ "@ckeditor/ckeditor5-ui": "39.0.0",
17
+ "@ckeditor/ckeditor5-utils": "39.0.0"
19
18
  },
20
19
  "engines": {
21
20
  "node": ">=16.0.0",
@@ -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 { Paragraph, ParagraphCommand, InsertParagraphCommand } from './index.js';
5
+ import type { Paragraph, ParagraphCommand, InsertParagraphCommand } from './index';
6
6
  declare module '@ckeditor/ckeditor5-core' {
7
7
  interface CommandsMap {
8
8
  insertParagraph: InsertParagraphCommand;
package/src/index.d.ts CHANGED
@@ -5,8 +5,8 @@
5
5
  /**
6
6
  * @module paragraph
7
7
  */
8
- export { default as Paragraph } from './paragraph.js';
9
- export { default as ParagraphButtonUI } from './paragraphbuttonui.js';
10
- export type { default as ParagraphCommand } from './paragraphcommand.js';
11
- export type { default as InsertParagraphCommand } from './insertparagraphcommand.js';
12
- import './augmentation.js';
8
+ export { default as Paragraph } from './paragraph';
9
+ export { default as ParagraphButtonUI } from './paragraphbuttonui';
10
+ export type { default as ParagraphCommand } from './paragraphcommand';
11
+ export type { default as InsertParagraphCommand } from './insertparagraphcommand';
12
+ import './augmentation';
package/src/index.js CHANGED
@@ -5,6 +5,6 @@
5
5
  /**
6
6
  * @module paragraph
7
7
  */
8
- export { default as Paragraph } from './paragraph.js';
9
- export { default as ParagraphButtonUI } from './paragraphbuttonui.js';
10
- import './augmentation.js';
8
+ export { default as Paragraph } from './paragraph';
9
+ export { default as ParagraphButtonUI } from './paragraphbuttonui';
10
+ import './augmentation';
package/src/paragraph.js CHANGED
@@ -5,8 +5,8 @@
5
5
  /**
6
6
  * @module paragraph/paragraph
7
7
  */
8
- import ParagraphCommand from './paragraphcommand.js';
9
- import InsertParagraphCommand from './insertparagraphcommand.js';
8
+ import ParagraphCommand from './paragraphcommand';
9
+ import InsertParagraphCommand from './insertparagraphcommand';
10
10
  import { Plugin } from '@ckeditor/ckeditor5-core';
11
11
  /**
12
12
  * The paragraph feature for the editor.
@@ -6,7 +6,7 @@
6
6
  * @module paragraph/paragraphbuttonui
7
7
  */
8
8
  import { Plugin } from '@ckeditor/ckeditor5-core';
9
- import Paragraph from './paragraph.js';
9
+ import Paragraph from './paragraph';
10
10
  /**
11
11
  * This plugin defines the `'paragraph'` button. It can be used together with
12
12
  * {@link module:heading/headingbuttonsui~HeadingButtonsUI} to replace the standard heading dropdown.
@@ -7,7 +7,7 @@
7
7
  */
8
8
  import { Plugin, icons } from '@ckeditor/ckeditor5-core';
9
9
  import { ButtonView } from '@ckeditor/ckeditor5-ui';
10
- import Paragraph from './paragraph.js';
10
+ import Paragraph from './paragraph';
11
11
  const icon = icons.paragraph;
12
12
  /**
13
13
  * This plugin defines the `'paragraph'` button. It can be used together with