@ckeditor/ckeditor5-utils
Advanced tools
Comparing version 37.1.0 to 38.0.0-rc.0
{ | ||
"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; |
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
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
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
424331
130
10198
1