@ckeditor/ckeditor5-ui 34.1.0 → 34.2.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/lang/translations/es.po +1 -1
- package/lang/translations/fr.po +1 -1
- package/lang/translations/it.po +1 -1
- package/lang/translations/pt-br.po +1 -1
- package/lang/translations/pt.po +3 -3
- package/package.json +19 -19
- package/src/dropdown/button/splitbuttonview.js +2 -0
- package/theme/components/button/button.css +3 -6
package/lang/translations/es.po
CHANGED
|
@@ -14,7 +14,7 @@ msgid ""
|
|
|
14
14
|
msgstr ""
|
|
15
15
|
"Language-Team: Spanish (https://www.transifex.com/ckeditor/teams/11143/es/)\n"
|
|
16
16
|
"Language: es\n"
|
|
17
|
-
"Plural-Forms: nplurals=
|
|
17
|
+
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
|
18
18
|
|
|
19
19
|
msgctxt "Title of the CKEditor5 editor."
|
|
20
20
|
msgid "Rich Text Editor, %0"
|
package/lang/translations/fr.po
CHANGED
|
@@ -14,7 +14,7 @@ msgid ""
|
|
|
14
14
|
msgstr ""
|
|
15
15
|
"Language-Team: French (https://www.transifex.com/ckeditor/teams/11143/fr/)\n"
|
|
16
16
|
"Language: fr\n"
|
|
17
|
-
"Plural-Forms: nplurals=
|
|
17
|
+
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
|
18
18
|
|
|
19
19
|
msgctxt "Title of the CKEditor5 editor."
|
|
20
20
|
msgid "Rich Text Editor, %0"
|
package/lang/translations/it.po
CHANGED
|
@@ -14,7 +14,7 @@ msgid ""
|
|
|
14
14
|
msgstr ""
|
|
15
15
|
"Language-Team: Italian (https://www.transifex.com/ckeditor/teams/11143/it/)\n"
|
|
16
16
|
"Language: it\n"
|
|
17
|
-
"Plural-Forms: nplurals=
|
|
17
|
+
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
|
18
18
|
|
|
19
19
|
msgctxt "Title of the CKEditor5 editor."
|
|
20
20
|
msgid "Rich Text Editor, %0"
|
|
@@ -14,7 +14,7 @@ msgid ""
|
|
|
14
14
|
msgstr ""
|
|
15
15
|
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/ckeditor/teams/11143/pt_BR/)\n"
|
|
16
16
|
"Language: pt_BR\n"
|
|
17
|
-
"Plural-Forms: nplurals=
|
|
17
|
+
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
|
18
18
|
|
|
19
19
|
msgctxt "Title of the CKEditor5 editor."
|
|
20
20
|
msgid "Rich Text Editor, %0"
|
package/lang/translations/pt.po
CHANGED
|
@@ -14,7 +14,7 @@ msgid ""
|
|
|
14
14
|
msgstr ""
|
|
15
15
|
"Language-Team: Portuguese (https://www.transifex.com/ckeditor/teams/11143/pt/)\n"
|
|
16
16
|
"Language: pt\n"
|
|
17
|
-
"Plural-Forms: nplurals=
|
|
17
|
+
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
|
18
18
|
|
|
19
19
|
msgctxt "Title of the CKEditor5 editor."
|
|
20
20
|
msgid "Rich Text Editor, %0"
|
|
@@ -30,11 +30,11 @@ msgstr ""
|
|
|
30
30
|
|
|
31
31
|
msgctxt "Label for a button showing the next thing (tab, page, etc.)."
|
|
32
32
|
msgid "Next"
|
|
33
|
-
msgstr ""
|
|
33
|
+
msgstr "Seguinte"
|
|
34
34
|
|
|
35
35
|
msgctxt "Label for a button showing the previous thing (tab, page, etc.)."
|
|
36
36
|
msgid "Previous"
|
|
37
|
-
msgstr ""
|
|
37
|
+
msgstr "Anterior"
|
|
38
38
|
|
|
39
39
|
msgctxt "Label used by assistive technologies describing a generic editor toolbar."
|
|
40
40
|
msgid "Editor toolbar"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-ui",
|
|
3
|
-
"version": "34.
|
|
3
|
+
"version": "34.2.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": "^34.
|
|
15
|
-
"@ckeditor/ckeditor5-core": "^34.
|
|
14
|
+
"@ckeditor/ckeditor5-utils": "^34.2.0",
|
|
15
|
+
"@ckeditor/ckeditor5-core": "^34.2.0",
|
|
16
16
|
"lodash-es": "^4.17.15"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
|
-
"@ckeditor/ckeditor5-basic-styles": "^34.
|
|
20
|
-
"@ckeditor/ckeditor5-block-quote": "^34.
|
|
21
|
-
"@ckeditor/ckeditor5-editor-balloon": "^34.
|
|
22
|
-
"@ckeditor/ckeditor5-editor-classic": "^34.
|
|
23
|
-
"@ckeditor/ckeditor5-engine": "^34.
|
|
24
|
-
"@ckeditor/ckeditor5-enter": "^34.
|
|
25
|
-
"@ckeditor/ckeditor5-essentials": "^34.
|
|
26
|
-
"@ckeditor/ckeditor5-heading": "^34.
|
|
27
|
-
"@ckeditor/ckeditor5-image": "^34.
|
|
28
|
-
"@ckeditor/ckeditor5-link": "^34.
|
|
29
|
-
"@ckeditor/ckeditor5-list": "^34.
|
|
30
|
-
"@ckeditor/ckeditor5-mention": "^34.
|
|
31
|
-
"@ckeditor/ckeditor5-paragraph": "^34.
|
|
32
|
-
"@ckeditor/ckeditor5-horizontal-line": "^34.
|
|
33
|
-
"@ckeditor/ckeditor5-table": "^34.
|
|
34
|
-
"@ckeditor/ckeditor5-typing": "^34.
|
|
19
|
+
"@ckeditor/ckeditor5-basic-styles": "^34.2.0",
|
|
20
|
+
"@ckeditor/ckeditor5-block-quote": "^34.2.0",
|
|
21
|
+
"@ckeditor/ckeditor5-editor-balloon": "^34.2.0",
|
|
22
|
+
"@ckeditor/ckeditor5-editor-classic": "^34.2.0",
|
|
23
|
+
"@ckeditor/ckeditor5-engine": "^34.2.0",
|
|
24
|
+
"@ckeditor/ckeditor5-enter": "^34.2.0",
|
|
25
|
+
"@ckeditor/ckeditor5-essentials": "^34.2.0",
|
|
26
|
+
"@ckeditor/ckeditor5-heading": "^34.2.0",
|
|
27
|
+
"@ckeditor/ckeditor5-image": "^34.2.0",
|
|
28
|
+
"@ckeditor/ckeditor5-link": "^34.2.0",
|
|
29
|
+
"@ckeditor/ckeditor5-list": "^34.2.0",
|
|
30
|
+
"@ckeditor/ckeditor5-mention": "^34.2.0",
|
|
31
|
+
"@ckeditor/ckeditor5-paragraph": "^34.2.0",
|
|
32
|
+
"@ckeditor/ckeditor5-horizontal-line": "^34.2.0",
|
|
33
|
+
"@ckeditor/ckeditor5-table": "^34.2.0",
|
|
34
|
+
"@ckeditor/ckeditor5-typing": "^34.2.0"
|
|
35
35
|
},
|
|
36
36
|
"engines": {
|
|
37
37
|
"node": ">=14.0.0",
|
|
@@ -229,6 +229,8 @@ export default class SplitButtonView extends View {
|
|
|
229
229
|
} );
|
|
230
230
|
|
|
231
231
|
arrowView.bind( 'isEnabled' ).to( this );
|
|
232
|
+
arrowView.bind( 'label' ).to( this );
|
|
233
|
+
arrowView.bind( 'tooltip' ).to( this );
|
|
232
234
|
|
|
233
235
|
arrowView.delegate( 'execute' ).to( this, 'open' );
|
|
234
236
|
|
|
@@ -31,12 +31,9 @@ a.ck.ck-button {
|
|
|
31
31
|
justify-content: center;
|
|
32
32
|
}
|
|
33
33
|
|
|
34
|
-
&:hover
|
|
34
|
+
&:hover,
|
|
35
|
+
/* Enable toolbar button tooltips for keyboard users too. See https://github.com/ckeditor/ckeditor5/issues/5581. */
|
|
36
|
+
&:focus {
|
|
35
37
|
@mixin ck-tooltip_visible;
|
|
36
38
|
}
|
|
37
|
-
|
|
38
|
-
/* Get rid of the native focus outline around the tooltip when focused (but not :hover). */
|
|
39
|
-
&:focus:not(:hover) {
|
|
40
|
-
@mixin ck-tooltip_disabled;
|
|
41
|
-
}
|
|
42
39
|
}
|