@ckeditor/ckeditor5-utils
Advanced tools
Comparing version 35.2.1 to 35.3.0
{ | ||
"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 */ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
270822
6060