@ckeditor/ckeditor5-mention 42.0.1-alpha.3 → 42.0.2-alpha.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index-editor.css +13 -11
- package/package.json +6 -2
- /package/dist/{types/augmentation.d.ts → augmentation.d.ts} +0 -0
- /package/dist/{types/index.d.ts → index.d.ts} +0 -0
- /package/dist/{types/mention.d.ts → mention.d.ts} +0 -0
- /package/dist/{types/mentioncommand.d.ts → mentioncommand.d.ts} +0 -0
- /package/dist/{types/mentionconfig.d.ts → mentionconfig.d.ts} +0 -0
- /package/dist/{types/mentionediting.d.ts → mentionediting.d.ts} +0 -0
- /package/dist/{types/mentionui.d.ts → mentionui.d.ts} +0 -0
- /package/dist/{types/ui → ui}/domwrapperview.d.ts +0 -0
- /package/dist/{types/ui → ui}/mentionlistitemview.d.ts +0 -0
- /package/dist/{types/ui → ui}/mentionsview.d.ts +0 -0
package/dist/index-editor.css
CHANGED
@@ -2,18 +2,20 @@
|
|
2
2
|
* @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
|
-
:root
|
6
|
-
--ck-mention-list-max-height:
|
5
|
+
:root{
|
6
|
+
--ck-mention-list-max-height:300px;
|
7
7
|
}
|
8
|
-
.ck.ck-mentions {
|
9
|
-
max-height: var(--ck-mention-list-max-height);
|
10
|
-
overflow-y: auto;
|
11
|
-
overflow-x: hidden;
|
12
|
-
overscroll-behavior: contain;
|
13
8
|
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
9
|
+
.ck.ck-mentions{
|
10
|
+
max-height:var(--ck-mention-list-max-height);
|
11
|
+
|
12
|
+
overflow-y:auto;
|
13
|
+
overflow-x:hidden;
|
18
14
|
|
15
|
+
overscroll-behavior:contain;
|
19
16
|
}
|
17
|
+
|
18
|
+
.ck.ck-mentions > .ck-list__item{
|
19
|
+
overflow:hidden;
|
20
|
+
flex-shrink:0;
|
21
|
+
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@ckeditor/ckeditor5-mention",
|
3
|
-
"version": "42.0.
|
3
|
+
"version": "42.0.2-alpha.0",
|
4
4
|
"description": "Mention feature for CKEditor 5.",
|
5
5
|
"keywords": [
|
6
6
|
"ckeditor",
|
@@ -13,7 +13,11 @@
|
|
13
13
|
"type": "module",
|
14
14
|
"main": "src/index.js",
|
15
15
|
"dependencies": {
|
16
|
-
"ckeditor5": "42.0.
|
16
|
+
"@ckeditor/ckeditor5-core": "42.0.2-alpha.0",
|
17
|
+
"@ckeditor/ckeditor5-typing": "42.0.2-alpha.0",
|
18
|
+
"@ckeditor/ckeditor5-ui": "42.0.2-alpha.0",
|
19
|
+
"@ckeditor/ckeditor5-utils": "42.0.2-alpha.0",
|
20
|
+
"ckeditor5": "42.0.2-alpha.0",
|
17
21
|
"lodash-es": "4.17.21"
|
18
22
|
},
|
19
23
|
"author": "CKSource (http://cksource.com/)",
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|