Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@ckeditor/ckeditor5-utils

Package Overview
Dependencies
Maintainers
1
Versions
700
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.1.0 to 38.0.0-rc.0

src/delay.d.ts

10

package.json
{
"name": "@ckeditor/ckeditor5-utils",
"version": "37.1.0",
"version": "38.0.0-rc.0",
"description": "Miscellaneous utilities used by CKEditor 5.",

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

"devDependencies": {
"@ckeditor/ckeditor5-build-classic": "^37.1.0",
"@ckeditor/ckeditor5-editor-classic": "^37.1.0",
"@ckeditor/ckeditor5-core": "^37.1.0",
"@ckeditor/ckeditor5-engine": "^37.1.0",
"@ckeditor/ckeditor5-build-classic": "^38.0.0-rc.0",
"@ckeditor/ckeditor5-editor-classic": "^38.0.0-rc.0",
"@ckeditor/ckeditor5-core": "^38.0.0-rc.0",
"@ckeditor/ckeditor5-engine": "^38.0.0-rc.0",
"@types/lodash-es": "^4.17.6",

@@ -23,0 +23,0 @@ "typescript": "^4.8.4"

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

export { default as isRange } from './dom/isrange';
export { default as isValidAttributeName } from './dom/isvalidattributename';
export { default as isVisible } from './dom/isvisible';

@@ -57,3 +58,5 @@ export { getOptimalPosition, type Options as PositionOptions, type PositioningFunction } from './dom/position';

export { default as uid } from './uid';
export { default as delay, type DelayedFunc } from './delay';
export { default as verifyLicense } from './verifylicense';
export * from './unicode';
export { default as version } from './version';
export { default as version, releaseDate } from './version';

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

export { default as isRange } from './dom/isrange';
export { default as isValidAttributeName } from './dom/isvalidattributename';
export { default as isVisible } from './dom/isvisible';

@@ -56,3 +57,5 @@ export { getOptimalPosition } from './dom/position';

export { default as uid } from './uid';
export { default as delay } from './delay';
export { default as verifyLicense } from './verifylicense';
export * from './unicode';
export { default as version } from './version';
export { default as version, releaseDate } from './version';

@@ -81,6 +81,6 @@ /**

export type Mixed<Base extends Constructor, Mixin extends object> = {
new (...args: ConstructorParameters<Base>): InstanceType<Base> & Mixin;
prototype: InstanceType<Base> & Mixin;
new (...args: ConstructorParameters<Base>): Mixin & InstanceType<Base>;
prototype: Mixin & InstanceType<Base>;
} & {
[K in keyof Base]: Base[K];
};

@@ -5,6 +5,7 @@ /**

*/
declare const version = "37.1.0";
declare const version = "38.0.0-rc.0";
export default version;
export declare const releaseDate: Date;
declare global {
var CKEDITOR_VERSION: string;
}

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

import CKEditorError from './ckeditorerror';
const version = '37.1.0';
const version = '38.0.0-rc.0';
export default version;
// The second argument is not a month. It is `monthIndex` and starts from `0`.
export const releaseDate = new Date(2023, 4, 15);
/* istanbul ignore next -- @preserve */

@@ -14,0 +16,0 @@ const windowOrGlobal = typeof window === 'object' ? window : global;

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