Socket
Socket
Sign inDemoInstall

@ckeditor/ckeditor5-undo

Package Overview
Dependencies
Maintainers
1
Versions
650
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ckeditor/ckeditor5-undo - npm Package Compare versions

Comparing version 37.0.0-alpha.0 to 37.0.0-alpha.1

src/augmentation.d.ts

28

package.json
{
"name": "@ckeditor/ckeditor5-undo",
"version": "37.0.0-alpha.0",
"version": "37.0.0-alpha.1",
"description": "Undo feature for CKEditor 5.",

@@ -15,16 +15,16 @@ "keywords": [

"dependencies": {
"@ckeditor/ckeditor5-core": "^37.0.0-alpha.0",
"@ckeditor/ckeditor5-engine": "^37.0.0-alpha.0",
"@ckeditor/ckeditor5-ui": "^37.0.0-alpha.0"
"@ckeditor/ckeditor5-core": "^37.0.0-alpha.1",
"@ckeditor/ckeditor5-engine": "^37.0.0-alpha.1",
"@ckeditor/ckeditor5-ui": "^37.0.0-alpha.1"
},
"devDependencies": {
"@ckeditor/ckeditor5-basic-styles": "^37.0.0-alpha.0",
"@ckeditor/ckeditor5-clipboard": "^37.0.0-alpha.0",
"@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.0",
"@ckeditor/ckeditor5-enter": "^37.0.0-alpha.0",
"@ckeditor/ckeditor5-heading": "^37.0.0-alpha.0",
"@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.0",
"@ckeditor/ckeditor5-typing": "^37.0.0-alpha.0",
"@ckeditor/ckeditor5-table": "^37.0.0-alpha.0",
"@ckeditor/ckeditor5-utils": "^37.0.0-alpha.0",
"@ckeditor/ckeditor5-basic-styles": "^37.0.0-alpha.1",
"@ckeditor/ckeditor5-clipboard": "^37.0.0-alpha.1",
"@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.1",
"@ckeditor/ckeditor5-enter": "^37.0.0-alpha.1",
"@ckeditor/ckeditor5-heading": "^37.0.0-alpha.1",
"@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.1",
"@ckeditor/ckeditor5-typing": "^37.0.0-alpha.1",
"@ckeditor/ckeditor5-table": "^37.0.0-alpha.1",
"@ckeditor/ckeditor5-utils": "^37.0.0-alpha.1",
"typescript": "^4.8.4",

@@ -56,3 +56,3 @@ "webpack": "^5.58.1",

"scripts": {
"build": "tsc -p ./tsconfig.release.json",
"build": "tsc -p ./tsconfig.json",
"postversion": "npm run build"

@@ -59,0 +59,0 @@ },

@@ -29,4 +29,6 @@ /**

* Stores all batches that were created by this command.
*
* @internal
*/
protected _createdBatches: WeakSet<Batch>;
_createdBatches: WeakSet<Batch>;
/**

@@ -33,0 +35,0 @@ * @inheritDoc

@@ -28,2 +28,4 @@ /**

* Stores all batches that were created by this command.
*
* @internal
*/

@@ -30,0 +32,0 @@ this._createdBatches = new WeakSet();

@@ -10,3 +10,5 @@ /**

export { default as UndoEditing } from './undoediting';
export { default as UndoUi } from './undoui';
export { default as UndoUI } from './undoui';
export type { default as UndoCommand } from './undocommand';
export type { default as RedoCommand } from './redocommand';
import './augmentation';

@@ -10,2 +10,3 @@ /**

export { default as UndoEditing } from './undoediting';
export { default as UndoUi } from './undoui';
export { default as UndoUI } from './undoui';
import './augmentation';

@@ -28,6 +28,1 @@ /**

}
declare module '@ckeditor/ckeditor5-core' {
interface CommandsMap {
redo: RedoCommand;
}
}

@@ -116,6 +116,1 @@ /**

}
declare module '@ckeditor/ckeditor5-core' {
interface PluginsMap {
[Undo.pluginName]: Undo;
}
}

@@ -32,3 +32,3 @@ /**

*
* @eventName revert
* @eventName ~UndoCommand#revert
*/

@@ -39,6 +39,1 @@ export type UndoCommandRevertEvent = {

};
declare module '@ckeditor/ckeditor5-core' {
interface CommandsMap {
undo: UndoCommand;
}
}

@@ -38,6 +38,1 @@ /**

}
declare module '@ckeditor/ckeditor5-core' {
interface PluginsMap {
[UndoEditing.pluginName]: UndoEditing;
}
}

@@ -31,6 +31,1 @@ /**

}
declare module '@ckeditor/ckeditor5-core' {
interface PluginsMap {
[UndoUI.pluginName]: UndoUI;
}
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc