@ckeditor/ckeditor5-ui 33.0.0 → 34.0.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/README.md +2 -1
- package/package.json +19 -19
- package/src/dropdown/utils.js +1 -1
- package/src/panel/balloon/balloonpanelview.js +1 -1
- package/theme/globals/_reset.css +1 -1
package/README.md
CHANGED
|
@@ -3,7 +3,8 @@ CKEditor 5 UI framework
|
|
|
3
3
|
|
|
4
4
|
[](https://www.npmjs.com/package/@ckeditor/ckeditor5-ui)
|
|
5
5
|
[](https://coveralls.io/github/ckeditor/ckeditor5?branch=master)
|
|
6
|
-
[](https://travis-ci.com/ckeditor/ckeditor5)
|
|
6
|
+
[](https://app.travis-ci.com/github/ckeditor/ckeditor5)
|
|
7
|
+

|
|
7
8
|
|
|
8
9
|
This package implements a simple UI framework and CKEditor 5's standard UI library.
|
|
9
10
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-ui",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "34.0.0",
|
|
4
4
|
"description": "The UI framework and standard UI library of CKEditor 5.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ckeditor",
|
|
@@ -11,27 +11,27 @@
|
|
|
11
11
|
],
|
|
12
12
|
"main": "src/index.js",
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@ckeditor/ckeditor5-utils": "^
|
|
15
|
-
"@ckeditor/ckeditor5-core": "^
|
|
14
|
+
"@ckeditor/ckeditor5-utils": "^34.0.0",
|
|
15
|
+
"@ckeditor/ckeditor5-core": "^34.0.0",
|
|
16
16
|
"lodash-es": "^4.17.15"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
|
-
"@ckeditor/ckeditor5-basic-styles": "^
|
|
20
|
-
"@ckeditor/ckeditor5-block-quote": "^
|
|
21
|
-
"@ckeditor/ckeditor5-editor-balloon": "^
|
|
22
|
-
"@ckeditor/ckeditor5-editor-classic": "^
|
|
23
|
-
"@ckeditor/ckeditor5-engine": "^
|
|
24
|
-
"@ckeditor/ckeditor5-enter": "^
|
|
25
|
-
"@ckeditor/ckeditor5-essentials": "^
|
|
26
|
-
"@ckeditor/ckeditor5-heading": "^
|
|
27
|
-
"@ckeditor/ckeditor5-image": "^
|
|
28
|
-
"@ckeditor/ckeditor5-link": "^
|
|
29
|
-
"@ckeditor/ckeditor5-list": "^
|
|
30
|
-
"@ckeditor/ckeditor5-mention": "^
|
|
31
|
-
"@ckeditor/ckeditor5-paragraph": "^
|
|
32
|
-
"@ckeditor/ckeditor5-horizontal-line": "^
|
|
33
|
-
"@ckeditor/ckeditor5-table": "^
|
|
34
|
-
"@ckeditor/ckeditor5-typing": "^
|
|
19
|
+
"@ckeditor/ckeditor5-basic-styles": "^34.0.0",
|
|
20
|
+
"@ckeditor/ckeditor5-block-quote": "^34.0.0",
|
|
21
|
+
"@ckeditor/ckeditor5-editor-balloon": "^34.0.0",
|
|
22
|
+
"@ckeditor/ckeditor5-editor-classic": "^34.0.0",
|
|
23
|
+
"@ckeditor/ckeditor5-engine": "^34.0.0",
|
|
24
|
+
"@ckeditor/ckeditor5-enter": "^34.0.0",
|
|
25
|
+
"@ckeditor/ckeditor5-essentials": "^34.0.0",
|
|
26
|
+
"@ckeditor/ckeditor5-heading": "^34.0.0",
|
|
27
|
+
"@ckeditor/ckeditor5-image": "^34.0.0",
|
|
28
|
+
"@ckeditor/ckeditor5-link": "^34.0.0",
|
|
29
|
+
"@ckeditor/ckeditor5-list": "^34.0.0",
|
|
30
|
+
"@ckeditor/ckeditor5-mention": "^34.0.0",
|
|
31
|
+
"@ckeditor/ckeditor5-paragraph": "^34.0.0",
|
|
32
|
+
"@ckeditor/ckeditor5-horizontal-line": "^34.0.0",
|
|
33
|
+
"@ckeditor/ckeditor5-table": "^34.0.0",
|
|
34
|
+
"@ckeditor/ckeditor5-typing": "^34.0.0"
|
|
35
35
|
},
|
|
36
36
|
"engines": {
|
|
37
37
|
"node": ">=14.0.0",
|
package/src/dropdown/utils.js
CHANGED
|
@@ -49,7 +49,7 @@ import '../../theme/components/dropdown/listdropdown.css';
|
|
|
49
49
|
* {@link module:ui/dropdown/button/dropdownbutton~DropdownButton} interface). For instance, you can use
|
|
50
50
|
* {@link module:ui/dropdown/button/splitbuttonview~SplitButtonView} to create a dropdown with a split button.
|
|
51
51
|
*
|
|
52
|
-
* const dropdown = createDropdown(
|
|
52
|
+
* const dropdown = createDropdown( locale, SplitButtonView );
|
|
53
53
|
*
|
|
54
54
|
* // Configure dropdown's button properties:
|
|
55
55
|
* dropdown.buttonView.set( {
|