@ckeditor/ckeditor5-special-characters 0.0.0-nightly-20240710.0 → 0.0.0-nightly-20240712.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-editor.css +15 -0
- package/package.json +3 -3
package/dist/index-editor.css
CHANGED
|
@@ -4,13 +4,16 @@
|
|
|
4
4
|
*/
|
|
5
5
|
.ck.ck-character-grid {
|
|
6
6
|
max-width: 100%;
|
|
7
|
+
|
|
7
8
|
}
|
|
8
9
|
.ck.ck-character-grid .ck-character-grid__tiles {
|
|
9
10
|
display: grid;
|
|
11
|
+
|
|
10
12
|
}
|
|
11
13
|
.ck.ck-character-info {
|
|
12
14
|
display: flex;
|
|
13
15
|
justify-content: space-between;
|
|
16
|
+
|
|
14
17
|
}
|
|
15
18
|
.ck.ck-special-characters > .ck-dialog__content > div {
|
|
16
19
|
width: 350px;
|
|
@@ -21,14 +24,17 @@ grid-column-gap: 0px;
|
|
|
21
24
|
grid-row-gap: 0px;
|
|
22
25
|
grid-template-columns: 1fr;
|
|
23
26
|
grid-template-rows: auto 1fr auto;
|
|
27
|
+
|
|
24
28
|
}
|
|
25
29
|
.ck.ck-special-characters > .ck-dialog__content > div > .ck-character-categories {
|
|
26
30
|
grid-area: 1 / 1 / 2 / 2;
|
|
27
31
|
padding: var(--ck-spacing-medium) var(--ck-spacing-large);
|
|
32
|
+
|
|
28
33
|
}
|
|
29
34
|
.ck.ck-special-characters > .ck-dialog__content > div > .ck-character-categories > .ck-labeled-field-view {
|
|
30
35
|
padding-top: var(--ck-spacing-standard);
|
|
31
36
|
width: 100%;
|
|
37
|
+
|
|
32
38
|
}
|
|
33
39
|
.ck.ck-special-characters > .ck-dialog__content > div > .ck-character-categories > .ck-labeled-field-view .ck.ck-labeled-field-view__status {
|
|
34
40
|
background: var(--ck-color-base-error);
|
|
@@ -37,33 +43,42 @@ padding: var(--ck-spacing-small) var(--ck-spacing-medium);
|
|
|
37
43
|
min-width: var(--ck-table-properties-min-error-width);
|
|
38
44
|
text-align: center;
|
|
39
45
|
animation: ck-table-form-labeled-view-status-appear .15s ease both;
|
|
46
|
+
|
|
40
47
|
}
|
|
41
48
|
.ck.ck-special-characters > .ck-dialog__content > div > .ck-character-categories > .ck-labeled-field-view .ck.ck-labeled-field-view__status::after {
|
|
42
49
|
border-color: transparent transparent var(--ck-color-base-error) transparent;
|
|
43
50
|
border-width: 0 var(--ck-table-properties-error-arrow-size) var(--ck-table-properties-error-arrow-size) var(--ck-table-properties-error-arrow-size);
|
|
44
51
|
border-style: solid;
|
|
52
|
+
|
|
45
53
|
}
|
|
46
54
|
.ck.ck-special-characters > .ck-dialog__content > div > .ck-character-categories > .ck-labeled-field-view .ck-input.ck-error:not(:focus) + .ck.ck-labeled-field-view__status {
|
|
47
55
|
display: none;
|
|
56
|
+
|
|
48
57
|
}
|
|
49
58
|
.ck.ck-special-characters > .ck-dialog__content > div > .ck-character-categories > .ck-labeled-field-view > .ck-label {
|
|
50
59
|
font-size: var(--ck-font-size-tiny);
|
|
51
60
|
text-align: center;
|
|
61
|
+
|
|
52
62
|
}
|
|
53
63
|
.ck.ck-special-characters > .ck-dialog__content > div > .ck-character-categories .ck-dropdown {
|
|
54
64
|
display: block;
|
|
55
65
|
width: 100%;
|
|
66
|
+
|
|
56
67
|
}
|
|
57
68
|
.ck.ck-special-characters > .ck-dialog__content > div > .ck-character-categories .ck-dropdown > button:not(:focus) {
|
|
58
69
|
border: 1px solid var(--ck-color-base-border);
|
|
70
|
+
|
|
59
71
|
}
|
|
60
72
|
.ck.ck-special-characters > .ck-dialog__content > div > .ck-character-categories .ck-dropdown > button > span {
|
|
61
73
|
width: 100%;
|
|
74
|
+
|
|
62
75
|
}
|
|
63
76
|
.ck.ck-special-characters > .ck-dialog__content > div > .ck-character-grid {
|
|
64
77
|
grid-area: 2 / 1 / 3 / 2;
|
|
65
78
|
max-height: 200px;
|
|
79
|
+
|
|
66
80
|
}
|
|
67
81
|
.ck.ck-special-characters > .ck-dialog__content > div > .ck-character-info {
|
|
68
82
|
grid-area: 3 / 1 / 4 / 2;
|
|
83
|
+
|
|
69
84
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-special-characters",
|
|
3
|
-
"version": "0.0.0-nightly-
|
|
3
|
+
"version": "0.0.0-nightly-20240712.0",
|
|
4
4
|
"description": "Special characters feature for CKEditor 5.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ckeditor",
|
|
@@ -13,8 +13,8 @@
|
|
|
13
13
|
"type": "module",
|
|
14
14
|
"main": "src/index.js",
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"ckeditor5": "0.0.0-nightly-
|
|
17
|
-
"@ckeditor/ckeditor5-ui": "0.0.0-nightly-
|
|
16
|
+
"ckeditor5": "0.0.0-nightly-20240712.0",
|
|
17
|
+
"@ckeditor/ckeditor5-ui": "0.0.0-nightly-20240712.0"
|
|
18
18
|
},
|
|
19
19
|
"author": "CKSource (http://cksource.com/)",
|
|
20
20
|
"license": "GPL-2.0-or-later",
|