@ckeditor/ckeditor5-utils 46.0.1-alpha.9 → 46.0.2-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/src/version.d.ts +1 -1
- package/src/version.js +2 -2
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@ckeditor/ckeditor5-utils",
|
3
|
-
"version": "46.0.
|
3
|
+
"version": "46.0.2-alpha.0",
|
4
4
|
"description": "Miscellaneous utilities used by CKEditor 5.",
|
5
5
|
"keywords": [
|
6
6
|
"ckeditor",
|
@@ -12,7 +12,7 @@
|
|
12
12
|
"type": "module",
|
13
13
|
"main": "src/index.js",
|
14
14
|
"dependencies": {
|
15
|
-
"@ckeditor/ckeditor5-ui": "46.0.
|
15
|
+
"@ckeditor/ckeditor5-ui": "46.0.2-alpha.0",
|
16
16
|
"es-toolkit": "1.39.5"
|
17
17
|
},
|
18
18
|
"author": "CKSource (http://cksource.com/)",
|
package/src/version.d.ts
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
4
4
|
*/
|
5
|
-
export declare const version = "46.0.
|
5
|
+
export declare const version = "46.0.2-alpha.0";
|
6
6
|
export declare const releaseDate: Date;
|
7
7
|
declare global {
|
8
8
|
var CKEDITOR_VERSION: string;
|
package/src/version.js
CHANGED
@@ -6,9 +6,9 @@
|
|
6
6
|
* @module utils/version
|
7
7
|
*/
|
8
8
|
import { CKEditorError } from './ckeditorerror.js';
|
9
|
-
export const version = '46.0.
|
9
|
+
export const version = '46.0.2-alpha.0';
|
10
10
|
// The second argument is not a month. It is `monthIndex` and starts from `0`.
|
11
|
-
export const releaseDate = new Date(2025, 7,
|
11
|
+
export const releaseDate = new Date(2025, 7, 18);
|
12
12
|
/* istanbul ignore next -- @preserve */
|
13
13
|
if (globalThis.CKEDITOR_VERSION) {
|
14
14
|
/**
|