@ckeditor/ckeditor5-page-break 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 +5 -5
- package/src/index.js +4 -4
- package/src/pagebreak.d.ts +4 -4
- package/src/pagebreak.js +4 -4
- package/src/pagebreakcommand.d.ts +1 -1
- package/src/pagebreakcommand.js +2 -2
- package/src/pagebreakediting.d.ts +1 -1
- package/src/pagebreakediting.js +3 -3
- package/src/pagebreakui.d.ts +1 -1
- package/src/pagebreakui.js +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-page-break",
|
|
3
|
-
"version": "38.2.0-alpha.
|
|
3
|
+
"version": "38.2.0-alpha.1",
|
|
4
4
|
"description": "Page break 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 { PageBreak, PageBreakEditing, PageBreakUI, PageBreakCommand } from './index';
|
|
5
|
+
import type { PageBreak, PageBreakEditing, PageBreakUI, PageBreakCommand } from './index.js';
|
|
6
6
|
declare module '@ckeditor/ckeditor5-core' {
|
|
7
7
|
interface PluginsMap {
|
|
8
8
|
[PageBreak.pluginName]: PageBreak;
|
package/src/index.d.ts
CHANGED
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module page-break
|
|
7
7
|
*/
|
|
8
|
-
export { default as PageBreak } from './pagebreak';
|
|
9
|
-
export { default as PageBreakEditing } from './pagebreakediting';
|
|
10
|
-
export { default as PageBreakUI } from './pagebreakui';
|
|
11
|
-
export type { default as PageBreakCommand } from './pagebreakcommand';
|
|
12
|
-
import './augmentation';
|
|
8
|
+
export { default as PageBreak } from './pagebreak.js';
|
|
9
|
+
export { default as PageBreakEditing } from './pagebreakediting.js';
|
|
10
|
+
export { default as PageBreakUI } from './pagebreakui.js';
|
|
11
|
+
export type { default as PageBreakCommand } from './pagebreakcommand.js';
|
|
12
|
+
import './augmentation.js';
|
package/src/index.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module page-break
|
|
7
7
|
*/
|
|
8
|
-
export { default as PageBreak } from './pagebreak';
|
|
9
|
-
export { default as PageBreakEditing } from './pagebreakediting';
|
|
10
|
-
export { default as PageBreakUI } from './pagebreakui';
|
|
11
|
-
import './augmentation';
|
|
8
|
+
export { default as PageBreak } from './pagebreak.js';
|
|
9
|
+
export { default as PageBreakEditing } from './pagebreakediting.js';
|
|
10
|
+
export { default as PageBreakUI } from './pagebreakui.js';
|
|
11
|
+
import './augmentation.js';
|
package/src/pagebreak.d.ts
CHANGED
|
@@ -5,10 +5,10 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module page-break/pagebreak
|
|
7
7
|
*/
|
|
8
|
-
import { Plugin } from 'ckeditor5/src/core';
|
|
9
|
-
import { Widget } from 'ckeditor5/src/widget';
|
|
10
|
-
import PageBreakEditing from './pagebreakediting';
|
|
11
|
-
import PageBreakUI from './pagebreakui';
|
|
8
|
+
import { Plugin } from 'ckeditor5/src/core.js';
|
|
9
|
+
import { Widget } from 'ckeditor5/src/widget.js';
|
|
10
|
+
import PageBreakEditing from './pagebreakediting.js';
|
|
11
|
+
import PageBreakUI from './pagebreakui.js';
|
|
12
12
|
/**
|
|
13
13
|
* The page break feature.
|
|
14
14
|
*
|
package/src/pagebreak.js
CHANGED
|
@@ -5,10 +5,10 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module page-break/pagebreak
|
|
7
7
|
*/
|
|
8
|
-
import { Plugin } from 'ckeditor5/src/core';
|
|
9
|
-
import { Widget } from 'ckeditor5/src/widget';
|
|
10
|
-
import PageBreakEditing from './pagebreakediting';
|
|
11
|
-
import PageBreakUI from './pagebreakui';
|
|
8
|
+
import { Plugin } from 'ckeditor5/src/core.js';
|
|
9
|
+
import { Widget } from 'ckeditor5/src/widget.js';
|
|
10
|
+
import PageBreakEditing from './pagebreakediting.js';
|
|
11
|
+
import PageBreakUI from './pagebreakui.js';
|
|
12
12
|
/**
|
|
13
13
|
* The page break feature.
|
|
14
14
|
*
|
package/src/pagebreakcommand.js
CHANGED
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module page-break/pagebreakcommand
|
|
7
7
|
*/
|
|
8
|
-
import { Command } from 'ckeditor5/src/core';
|
|
9
|
-
import { findOptimalInsertionRange } from 'ckeditor5/src/widget';
|
|
8
|
+
import { Command } from 'ckeditor5/src/core.js';
|
|
9
|
+
import { findOptimalInsertionRange } from 'ckeditor5/src/widget.js';
|
|
10
10
|
/**
|
|
11
11
|
* The page break command.
|
|
12
12
|
*
|
package/src/pagebreakediting.js
CHANGED
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module page-break/pagebreakediting
|
|
7
7
|
*/
|
|
8
|
-
import { Plugin } from 'ckeditor5/src/core';
|
|
9
|
-
import { toWidget } from 'ckeditor5/src/widget';
|
|
10
|
-
import PageBreakCommand from './pagebreakcommand';
|
|
8
|
+
import { Plugin } from 'ckeditor5/src/core.js';
|
|
9
|
+
import { toWidget } from 'ckeditor5/src/widget.js';
|
|
10
|
+
import PageBreakCommand from './pagebreakcommand.js';
|
|
11
11
|
import '../theme/pagebreak.css';
|
|
12
12
|
/**
|
|
13
13
|
* The page break editing feature.
|
package/src/pagebreakui.d.ts
CHANGED
package/src/pagebreakui.js
CHANGED
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module page-break/pagebreakui
|
|
7
7
|
*/
|
|
8
|
-
import { Plugin } from 'ckeditor5/src/core';
|
|
9
|
-
import { ButtonView } from 'ckeditor5/src/ui';
|
|
8
|
+
import { Plugin } from 'ckeditor5/src/core.js';
|
|
9
|
+
import { ButtonView } from 'ckeditor5/src/ui.js';
|
|
10
10
|
import pageBreakIcon from '../theme/icons/pagebreak.svg';
|
|
11
11
|
/**
|
|
12
12
|
* The page break UI plugin.
|