Socket
Socket
Sign inDemoInstall

@ckeditor/ckeditor5-utils

Package Overview
Dependencies
Maintainers
1
Versions
584
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ckeditor/ckeditor5-utils - npm Package Compare versions

Comparing version 35.2.1 to 35.3.0

12

package.json
{
"name": "@ckeditor/ckeditor5-utils",
"version": "35.2.1",
"version": "35.3.0",
"description": "Miscellaneous utilities used by CKEditor 5.",

@@ -17,8 +17,8 @@ "keywords": [

"devDependencies": {
"@ckeditor/ckeditor5-build-classic": "^35.2.1",
"@ckeditor/ckeditor5-editor-classic": "^35.2.1",
"@ckeditor/ckeditor5-core": "^35.2.1",
"@ckeditor/ckeditor5-engine": "^35.2.1",
"@ckeditor/ckeditor5-build-classic": "^35.3.0",
"@ckeditor/ckeditor5-editor-classic": "^35.3.0",
"@ckeditor/ckeditor5-core": "^35.3.0",
"@ckeditor/ckeditor5-engine": "^35.3.0",
"@types/lodash-es": "^4.17.6",
"typescript": "^4.6.4"
"typescript": "^4.8.4"
},

@@ -25,0 +25,0 @@ "depcheckIgnore": [

@@ -212,3 +212,3 @@ /**

* @param {Object} [options={}] Additional options.
* @param {module:utils/priorities~PriorityString|Number} [options.priority='normal'] The priority of this event callback. The higher
* @param {module:utils/priorities~PriorityString} [options.priority='normal'] The priority of this event callback. The higher
* the priority value the sooner the callback will be fired. Events having the same priority are called in the

@@ -215,0 +215,0 @@ * order they were added.

@@ -35,3 +35,4 @@ /**

export { default as priorities } from './priorities';
export { default as insertToPriorityArray } from './inserttopriorityarray';
export { default as uid } from './uid';
export { default as version } from './version';

@@ -8,3 +8,3 @@ /**

*/
import DomEmitterMixin from './dom/emittermixin';
import { Emitter as DomEmitter } from './dom/emittermixin';
import { getCode, parseKeystroke } from './keyboard';

@@ -47,3 +47,3 @@ /**

constructor() {
this._listener = Object.create(DomEmitterMixin);
this._listener = new DomEmitter();
}

@@ -78,3 +78,3 @@ /**

* @param {Object} [options={}] Additional options.
* @param {module:utils/priorities~PriorityString|Number} [options.priority='normal'] The priority of the keystroke
* @param {module:utils/priorities~PriorityString} [options.priority='normal'] The priority of the keystroke
* callback. The higher the priority value the sooner the callback will be executed. Keystrokes having the same priority

@@ -81,0 +81,0 @@ * are called in the order they were added.

@@ -15,3 +15,3 @@ /**

* @static
* @param {module:utils/priorities~PriorityString|Number} [priority] Priority to convert.
* @param {module:utils/priorities~PriorityString} [priority] Priority to convert.
* @returns {Number} Converted priority.

@@ -18,0 +18,0 @@ */

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

import CKEditorError from './ckeditorerror';
const version = '35.2.1';
const version = '35.3.0';
export default version;

@@ -13,0 +13,0 @@ /* istanbul ignore next */

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with āš”ļø by Socket Inc