Socket
Socket
Sign inDemoInstall

@ckeditor/ckeditor5-utils

Package Overview
Dependencies
Maintainers
1
Versions
619
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 37.0.0-alpha.0 to 37.0.0-alpha.1

12

package.json
{
"name": "@ckeditor/ckeditor5-utils",
"version": "37.0.0-alpha.0",
"version": "37.0.0-alpha.1",
"description": "Miscellaneous utilities used by CKEditor 5.",

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

"devDependencies": {
"@ckeditor/ckeditor5-build-classic": "^37.0.0-alpha.0",
"@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.0",
"@ckeditor/ckeditor5-core": "^37.0.0-alpha.0",
"@ckeditor/ckeditor5-engine": "^37.0.0-alpha.0",
"@ckeditor/ckeditor5-build-classic": "^37.0.0-alpha.1",
"@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.1",
"@ckeditor/ckeditor5-core": "^37.0.0-alpha.1",
"@ckeditor/ckeditor5-engine": "^37.0.0-alpha.1",
"@types/lodash-es": "^4.17.6",

@@ -50,3 +50,3 @@ "typescript": "^4.8.4"

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

@@ -53,0 +53,0 @@ },

@@ -359,3 +359,3 @@ /**

*
* @eventName add
* @eventName ~Collection#add
* @param item The added item.

@@ -371,3 +371,3 @@ * @param index An index where the addition occurred.

*
* @eventName change
* @eventName ~Collection#change
* @param data Changed items.

@@ -399,3 +399,3 @@ */

*
* @eventName remove
* @eventName ~Collection#remove
* @param item The removed item.

@@ -402,0 +402,0 @@ * @param index Index from which item was removed.

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

*
* @label HTML_ELEMENT
* @param doc Document used to create the element.

@@ -49,2 +50,3 @@ * @param name Name of the HTML element.

*
* @label SVG_ELEMENT
* @param doc Document used to create the element.

@@ -51,0 +53,0 @@ * @param name Name of the SVG element.

@@ -6,3 +6,3 @@ /**

/**
* @module utils/dom/findClosestScrollableAncestor
* @module utils/dom/findclosestscrollableancestor
*/

@@ -9,0 +9,0 @@ /**

@@ -6,3 +6,3 @@ /**

/**
* @module utils/dom/findClosestScrollableAncestor
* @module utils/dom/findclosestscrollableancestor
*/

@@ -9,0 +9,0 @@ /**

@@ -11,7 +11,8 @@ /**

export { default as fastDiff } from './fastdiff';
export { default as diffToChanges } from './difftochanges';
export { default as mix } from './mix';
export { Constructor, Mixed } from './mix';
export { default as EmitterMixin, Emitter, type BaseEvent, type CallbackOptions, type EmitterMixinDelegateChain, type GetCallback, type GetCallbackOptions, type GetEventInfo, type GetNameOrEventInfo } from './emittermixin';
export type { Constructor, Mixed } from './mix';
export { default as EmitterMixin, type Emitter, type BaseEvent, type CallbackOptions, type EmitterMixinDelegateChain, type GetCallback, type GetCallbackOptions, type GetEventInfo, type GetNameOrEventInfo } from './emittermixin';
export { default as EventInfo } from './eventinfo';
export { default as ObservableMixin, Observable, type DecoratedMethodEvent, type ObservableChangeEvent, type ObservableSetEvent } from './observablemixin';
export { default as ObservableMixin, type Observable, type DecoratedMethodEvent, type ObservableChangeEvent, type ObservableSetEvent } from './observablemixin';
export { default as CKEditorError, logError, logWarning } from './ckeditorerror';

@@ -24,3 +25,3 @@ export { default as ElementReplacer } from './elementreplacer';

export { default as isIterable } from './isiterable';
export { default as DomEmitterMixin, DomEmitter } from './dom/emittermixin';
export { default as DomEmitterMixin, type DomEmitter } from './dom/emittermixin';
export { default as findClosestScrollableAncestor } from './dom/findclosestscrollableancestor';

@@ -46,3 +47,3 @@ export { default as global } from './dom/global';

export * from './language';
export { default as Locale, LocaleTranslate } from './locale';
export { default as Locale, type LocaleTranslate } from './locale';
export { default as Collection, type CollectionAddEvent, type CollectionChangeEvent, type CollectionRemoveEvent } from './collection';

@@ -49,0 +50,0 @@ export { default as first } from './first';

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

export { default as fastDiff } from './fastdiff';
export { default as diffToChanges } from './difftochanges';
export { default as mix } from './mix';

@@ -13,0 +14,0 @@ export { default as EmitterMixin } from './emittermixin';

@@ -30,5 +30,5 @@ /**

*
* Note: Key names are matched with {@link module:utils/keyboard~keyCodes} in a case-insensitive way.
* Note: Key names are matched with {@link module:utils/keyboard#keyCodes} in a case-insensitive way.
*
* @param key A key name (see {@link module:utils/keyboard~keyCodes}) or a keystroke data object.
* @param key A key name (see {@link module:utils/keyboard#keyCodes}) or a keystroke data object.
* @returns Key or keystroke code.

@@ -48,3 +48,3 @@ */

*
* Note: Key names are matched with {@link module:utils/keyboard~keyCodes} in a case-insensitive way.
* Note: Key names are matched with {@link module:utils/keyboard#keyCodes} in a case-insensitive way.
*

@@ -51,0 +51,0 @@ * Note: Only keystrokes with a single non-modifier key are supported (e.g. `ctrl+A` is OK, but `ctrl+A+B` is not).

@@ -36,5 +36,5 @@ /**

*
* Note: Key names are matched with {@link module:utils/keyboard~keyCodes} in a case-insensitive way.
* Note: Key names are matched with {@link module:utils/keyboard#keyCodes} in a case-insensitive way.
*
* @param key A key name (see {@link module:utils/keyboard~keyCodes}) or a keystroke data object.
* @param key A key name (see {@link module:utils/keyboard#keyCodes}) or a keystroke data object.
* @returns Key or keystroke code.

@@ -48,3 +48,3 @@ */

/**
* Unknown key name. Only key names included in the {@link module:utils/keyboard~keyCodes} can be used.
* Unknown key name. Only key names included in the {@link module:utils/keyboard#keyCodes} can be used.
*

@@ -77,3 +77,3 @@ * @error keyboard-unknown-key

*
* Note: Key names are matched with {@link module:utils/keyboard~keyCodes} in a case-insensitive way.
* Note: Key names are matched with {@link module:utils/keyboard#keyCodes} in a case-insensitive way.
*

@@ -158,3 +158,3 @@ * Note: Only keystrokes with a single non-modifier key are supported (e.g. `ctrl+A` is OK, but `ctrl+A+B` is not).

*
* @param key The key name (see {@link module:utils/keyboard~keyCodes}).
* @param key The key name (see {@link module:utils/keyboard#keyCodes}).
* @returns Key code.

@@ -161,0 +161,0 @@ */

@@ -444,3 +444,3 @@ /**

*
* @eventName change:\{property\}
* @eventName ~Observable#change:\{property\}
* @param {String} name The property name.

@@ -482,3 +482,3 @@ * @param {*} value The new property value.

*
* @eventName set:\{property\}
* @eventName ~Observable#set:\{property\}
* @param {String} name The property name.

@@ -485,0 +485,0 @@ * @param {*} value The new property value.

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

*/
declare const version = "37.0.0-alpha.0";
declare const version = "37.0.0-alpha.1";
export default version;

@@ -8,0 +8,0 @@ declare global {

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

import CKEditorError from './ckeditorerror';
const version = '37.0.0-alpha.0';
const version = '37.0.0-alpha.1';
export default version;

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

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