@ckeditor/ckeditor5-ui 45.1.0 → 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-ui",
3
- "version": "45.1.0",
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.1.0",
21
- "@ckeditor/ckeditor5-editor-multi-root": "45.1.0",
22
- "@ckeditor/ckeditor5-engine": "45.1.0",
23
- "@ckeditor/ckeditor5-icons": "45.1.0",
24
- "@ckeditor/ckeditor5-utils": "45.1.0",
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
  *
@@ -5,7 +5,6 @@
5
5
  /**
6
6
  * @module ui/editorui/bodycollection
7
7
  */
8
- /* globals document */
9
8
  import Template from '../template.js';
10
9
  import ViewCollection from '../viewcollection.js';
11
10
  import { createElement } from '@ckeditor/ckeditor5-utils';
@@ -5,7 +5,6 @@
5
5
  /**
6
6
  * @module ui/editorui/editorui
7
7
  */
8
- /* globals console */
9
8
  import ComponentFactory from '../componentfactory.js';
10
9
  import TooltipManager from '../tooltipmanager.js';
11
10
  import PoweredBy from './poweredby.js';
@@ -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 DOMParser */
6
5
  /**
7
6
  * @module ui/icon/iconview
8
7
  */
@@ -5,7 +5,6 @@
5
5
  /**
6
6
  * @module ui/notification/notification
7
7
  */
8
- /* globals window */
9
8
  import { ContextPlugin } from '@ckeditor/ckeditor5-core';
10
9
  /**
11
10
  * The Notification plugin.
package/src/template.js CHANGED
@@ -5,7 +5,6 @@
5
5
  /**
6
6
  * @module ui/template
7
7
  */
8
- /* global document */
9
8
  import View from './view.js';
10
9
  import ViewCollection from './viewcollection.js';
11
10
  import { CKEditorError, EmitterMixin, isNode, toArray } from '@ckeditor/ckeditor5-utils';
@@ -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
  */