@ckeditor/ckeditor5-ui 47.0.0-alpha.7 → 47.0.0-alpha.8
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 +4 -2
- package/dist/index.js.map +1 -1
- package/package.json +6 -6
- package/src/menubar/utils.d.ts +2 -1
- package/src/menubar/utils.js +4 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-ui",
|
|
3
|
-
"version": "47.0.0-alpha.
|
|
3
|
+
"version": "47.0.0-alpha.8",
|
|
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": "47.0.0-alpha.
|
|
21
|
-
"@ckeditor/ckeditor5-editor-multi-root": "47.0.0-alpha.
|
|
22
|
-
"@ckeditor/ckeditor5-engine": "47.0.0-alpha.
|
|
23
|
-
"@ckeditor/ckeditor5-icons": "47.0.0-alpha.
|
|
24
|
-
"@ckeditor/ckeditor5-utils": "47.0.0-alpha.
|
|
20
|
+
"@ckeditor/ckeditor5-core": "47.0.0-alpha.8",
|
|
21
|
+
"@ckeditor/ckeditor5-editor-multi-root": "47.0.0-alpha.8",
|
|
22
|
+
"@ckeditor/ckeditor5-engine": "47.0.0-alpha.8",
|
|
23
|
+
"@ckeditor/ckeditor5-icons": "47.0.0-alpha.8",
|
|
24
|
+
"@ckeditor/ckeditor5-utils": "47.0.0-alpha.8",
|
|
25
25
|
"@types/color-convert": "2.0.4",
|
|
26
26
|
"color-convert": "3.1.0",
|
|
27
27
|
"color-parse": "2.0.2",
|
package/src/menubar/utils.d.ts
CHANGED
|
@@ -418,7 +418,8 @@ export declare const MenuBarMenuViewPanelPositioningFunctions: Record<string, Po
|
|
|
418
418
|
* items: [
|
|
419
419
|
* 'menuBar:aiAssistant',
|
|
420
420
|
* 'menuBar:aiCommands',
|
|
421
|
-
* 'menuBar:toggleAi'
|
|
421
|
+
* 'menuBar:toggleAi',
|
|
422
|
+
* 'menuBar:aiQuickActions'
|
|
422
423
|
* ]
|
|
423
424
|
* },
|
|
424
425
|
* {
|
package/src/menubar/utils.js
CHANGED
|
@@ -646,7 +646,8 @@ export const MenuBarMenuViewPanelPositioningFunctions = {
|
|
|
646
646
|
* items: [
|
|
647
647
|
* 'menuBar:aiAssistant',
|
|
648
648
|
* 'menuBar:aiCommands',
|
|
649
|
-
* 'menuBar:toggleAi'
|
|
649
|
+
* 'menuBar:toggleAi',
|
|
650
|
+
* 'menuBar:aiQuickActions'
|
|
650
651
|
* ]
|
|
651
652
|
* },
|
|
652
653
|
* {
|
|
@@ -921,7 +922,8 @@ export const DefaultMenuBarItems = [
|
|
|
921
922
|
items: [
|
|
922
923
|
'menuBar:aiAssistant',
|
|
923
924
|
'menuBar:aiCommands',
|
|
924
|
-
'menuBar:toggleAi'
|
|
925
|
+
'menuBar:toggleAi',
|
|
926
|
+
'menuBar:aiQuickActions'
|
|
925
927
|
]
|
|
926
928
|
},
|
|
927
929
|
{
|