@ckeditor/ckeditor5-ui 45.1.0-alpha.7 → 45.2.0-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 +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +6 -6
- package/src/bindings/clickoutsidehandler.js +0 -1
- package/src/editorui/bodycollection.js +0 -1
- package/src/editorui/editorui.js +0 -1
- package/src/icon/iconview.js +0 -1
- package/src/notification/notification.js +0 -1
- package/src/template.js +0 -1
- package/src/toolbar/block/blocktoolbar.js +0 -1
- package/src/view.js +0 -1
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@ckeditor/ckeditor5-ui",
|
3
|
-
"version": "45.
|
3
|
+
"version": "45.2.0-alpha.0",
|
4
4
|
"description": "The UI framework and standard UI library of CKEditor 5.",
|
5
5
|
"keywords": [
|
6
6
|
"ckeditor",
|
@@ -17,11 +17,11 @@
|
|
17
17
|
"type": "module",
|
18
18
|
"main": "src/index.js",
|
19
19
|
"dependencies": {
|
20
|
-
"@ckeditor/ckeditor5-core": "45.
|
21
|
-
"@ckeditor/ckeditor5-editor-multi-root": "45.
|
22
|
-
"@ckeditor/ckeditor5-engine": "45.
|
23
|
-
"@ckeditor/ckeditor5-icons": "45.
|
24
|
-
"@ckeditor/ckeditor5-utils": "45.
|
20
|
+
"@ckeditor/ckeditor5-core": "45.2.0-alpha.0",
|
21
|
+
"@ckeditor/ckeditor5-editor-multi-root": "45.2.0-alpha.0",
|
22
|
+
"@ckeditor/ckeditor5-engine": "45.2.0-alpha.0",
|
23
|
+
"@ckeditor/ckeditor5-icons": "45.2.0-alpha.0",
|
24
|
+
"@ckeditor/ckeditor5-utils": "45.2.0-alpha.0",
|
25
25
|
"@types/color-convert": "2.0.4",
|
26
26
|
"color-convert": "2.0.1",
|
27
27
|
"color-parse": "1.4.2",
|
@@ -2,7 +2,6 @@
|
|
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
|
-
/* global document */
|
6
5
|
/**
|
7
6
|
* Handles clicking **outside** of a specified set of elements, then fires an action.
|
8
7
|
*
|
package/src/editorui/editorui.js
CHANGED
package/src/icon/iconview.js
CHANGED
package/src/template.js
CHANGED
@@ -5,7 +5,6 @@
|
|
5
5
|
/**
|
6
6
|
* @module ui/toolbar/block/blocktoolbar
|
7
7
|
*/
|
8
|
-
/* global window */
|
9
8
|
import { Plugin } from '@ckeditor/ckeditor5-core';
|
10
9
|
import { getAncestors, global, Rect, ResizeObserver, toUnit } from '@ckeditor/ckeditor5-utils';
|
11
10
|
import BlockButtonView from './blockbuttonview.js';
|
package/src/view.js
CHANGED
@@ -2,7 +2,6 @@
|
|
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
|
-
/* eslint-disable @typescript-eslint/no-invalid-void-type */
|
6
5
|
/**
|
7
6
|
* @module ui/view
|
8
7
|
*/
|