@ckeditor/ckeditor5-undo 38.2.0-alpha.0 → 38.2.0-alpha.1
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +4 -4
- package/src/augmentation.d.ts +1 -1
- package/src/index.d.ts +6 -6
- package/src/index.js +4 -4
- package/src/redocommand.d.ts +1 -1
- package/src/redocommand.js +1 -1
- package/src/undo.d.ts +2 -2
- package/src/undo.js +2 -2
- package/src/undocommand.d.ts +1 -1
- package/src/undocommand.js +1 -1
- package/src/undoediting.js +2 -2
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@ckeditor/ckeditor5-undo",
|
3
|
-
"version": "38.2.0-alpha.
|
3
|
+
"version": "38.2.0-alpha.1",
|
4
4
|
"description": "Undo feature for CKEditor 5.",
|
5
5
|
"keywords": [
|
6
6
|
"ckeditor",
|
@@ -13,9 +13,9 @@
|
|
13
13
|
"main": "src/index.js",
|
14
14
|
"type": "module",
|
15
15
|
"dependencies": {
|
16
|
-
"@ckeditor/ckeditor5-core": "38.2.0-alpha.
|
17
|
-
"@ckeditor/ckeditor5-engine": "38.2.0-alpha.
|
18
|
-
"@ckeditor/ckeditor5-ui": "38.2.0-alpha.
|
16
|
+
"@ckeditor/ckeditor5-core": "38.2.0-alpha.1",
|
17
|
+
"@ckeditor/ckeditor5-engine": "38.2.0-alpha.1",
|
18
|
+
"@ckeditor/ckeditor5-ui": "38.2.0-alpha.1"
|
19
19
|
},
|
20
20
|
"engines": {
|
21
21
|
"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 { Undo, UndoEditing, UndoUI, UndoCommand, RedoCommand } from './index';
|
5
|
+
import type { Undo, UndoEditing, UndoUI, UndoCommand, RedoCommand } from './index.js';
|
6
6
|
declare module '@ckeditor/ckeditor5-core' {
|
7
7
|
interface CommandsMap {
|
8
8
|
undo: UndoCommand;
|
package/src/index.d.ts
CHANGED
@@ -5,9 +5,9 @@
|
|
5
5
|
/**
|
6
6
|
* @module undo
|
7
7
|
*/
|
8
|
-
export { default as Undo } from './undo';
|
9
|
-
export { default as UndoEditing } from './undoediting';
|
10
|
-
export { default as UndoUI } from './undoui';
|
11
|
-
export type { default as UndoCommand } from './undocommand';
|
12
|
-
export type { default as RedoCommand } from './redocommand';
|
13
|
-
import './augmentation';
|
8
|
+
export { default as Undo } from './undo.js';
|
9
|
+
export { default as UndoEditing } from './undoediting.js';
|
10
|
+
export { default as UndoUI } from './undoui.js';
|
11
|
+
export type { default as UndoCommand } from './undocommand.js';
|
12
|
+
export type { default as RedoCommand } from './redocommand.js';
|
13
|
+
import './augmentation.js';
|
package/src/index.js
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
/**
|
6
6
|
* @module undo
|
7
7
|
*/
|
8
|
-
export { default as Undo } from './undo';
|
9
|
-
export { default as UndoEditing } from './undoediting';
|
10
|
-
export { default as UndoUI } from './undoui';
|
11
|
-
import './augmentation';
|
8
|
+
export { default as Undo } from './undo.js';
|
9
|
+
export { default as UndoEditing } from './undoediting.js';
|
10
|
+
export { default as UndoUI } from './undoui.js';
|
11
|
+
import './augmentation.js';
|
package/src/redocommand.d.ts
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
/**
|
6
6
|
* @module undo/redocommand
|
7
7
|
*/
|
8
|
-
import BaseCommand from './basecommand';
|
8
|
+
import BaseCommand from './basecommand.js';
|
9
9
|
/**
|
10
10
|
* The redo command stores {@link module:engine/model/batch~Batch batches} that were used to undo a batch by
|
11
11
|
* {@link module:undo/undocommand~UndoCommand}. It is able to redo a previously undone batch by reversing the undoing
|
package/src/redocommand.js
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
/**
|
6
6
|
* @module undo/redocommand
|
7
7
|
*/
|
8
|
-
import BaseCommand from './basecommand';
|
8
|
+
import BaseCommand from './basecommand.js';
|
9
9
|
/**
|
10
10
|
* The redo command stores {@link module:engine/model/batch~Batch batches} that were used to undo a batch by
|
11
11
|
* {@link module:undo/undocommand~UndoCommand}. It is able to redo a previously undone batch by reversing the undoing
|
package/src/undo.d.ts
CHANGED
@@ -6,8 +6,8 @@
|
|
6
6
|
* @module undo/undo
|
7
7
|
*/
|
8
8
|
import { Plugin } from '@ckeditor/ckeditor5-core';
|
9
|
-
import UndoEditing from './undoediting';
|
10
|
-
import UndoUI from './undoui';
|
9
|
+
import UndoEditing from './undoediting.js';
|
10
|
+
import UndoUI from './undoui.js';
|
11
11
|
/**
|
12
12
|
* The undo feature.
|
13
13
|
*
|
package/src/undo.js
CHANGED
@@ -6,8 +6,8 @@
|
|
6
6
|
* @module undo/undo
|
7
7
|
*/
|
8
8
|
import { Plugin } from '@ckeditor/ckeditor5-core';
|
9
|
-
import UndoEditing from './undoediting';
|
10
|
-
import UndoUI from './undoui';
|
9
|
+
import UndoEditing from './undoediting.js';
|
10
|
+
import UndoUI from './undoui.js';
|
11
11
|
/**
|
12
12
|
* The undo feature.
|
13
13
|
*
|
package/src/undocommand.d.ts
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
/**
|
6
6
|
* @module undo/undocommand
|
7
7
|
*/
|
8
|
-
import BaseCommand from './basecommand';
|
8
|
+
import BaseCommand from './basecommand.js';
|
9
9
|
import type { Batch } from '@ckeditor/ckeditor5-engine';
|
10
10
|
/**
|
11
11
|
* The undo command stores {@link module:engine/model/batch~Batch batches} applied to the
|
package/src/undocommand.js
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
/**
|
6
6
|
* @module undo/undocommand
|
7
7
|
*/
|
8
|
-
import BaseCommand from './basecommand';
|
8
|
+
import BaseCommand from './basecommand.js';
|
9
9
|
/**
|
10
10
|
* The undo command stores {@link module:engine/model/batch~Batch batches} applied to the
|
11
11
|
* {@link module:engine/model/document~Document document} and is able to undo a batch by reversing it and transforming by
|
package/src/undoediting.js
CHANGED
@@ -6,8 +6,8 @@
|
|
6
6
|
* @module undo/undoediting
|
7
7
|
*/
|
8
8
|
import { Plugin } from '@ckeditor/ckeditor5-core';
|
9
|
-
import UndoCommand from './undocommand';
|
10
|
-
import RedoCommand from './redocommand';
|
9
|
+
import UndoCommand from './undocommand.js';
|
10
|
+
import RedoCommand from './redocommand.js';
|
11
11
|
/**
|
12
12
|
* The undo engine feature.
|
13
13
|
*
|