@ckeditor/ckeditor5-select-all 29.1.0 → 31.1.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.
@@ -0,0 +1,21 @@
1
+ # Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved.
2
+ #
3
+ # !!! IMPORTANT !!!
4
+ #
5
+ # Before you edit this file, please keep in mind that contributing to the project
6
+ # translations is possible ONLY via the Transifex online service.
7
+ #
8
+ # To submit your translations, visit https://www.transifex.com/ckeditor/ckeditor5.
9
+ #
10
+ # To learn more, check out the official contributor's guide:
11
+ # https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
12
+ #
13
+ msgid ""
14
+ msgstr ""
15
+ "Language-Team: Danish (https://www.transifex.com/ckeditor/teams/11143/da/)\n"
16
+ "Language: da\n"
17
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
+
19
+ msgctxt "The label of the select all toolbar button."
20
+ msgid "Select all"
21
+ msgstr "Vælg alt"
@@ -0,0 +1,21 @@
1
+ # Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved.
2
+ #
3
+ # !!! IMPORTANT !!!
4
+ #
5
+ # Before you edit this file, please keep in mind that contributing to the project
6
+ # translations is possible ONLY via the Transifex online service.
7
+ #
8
+ # To submit your translations, visit https://www.transifex.com/ckeditor/ckeditor5.
9
+ #
10
+ # To learn more, check out the official contributor's guide:
11
+ # https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
12
+ #
13
+ msgid ""
14
+ msgstr ""
15
+ "Language-Team: Indonesian (https://www.transifex.com/ckeditor/teams/11143/id/)\n"
16
+ "Language: id\n"
17
+ "Plural-Forms: nplurals=1; plural=0;\n"
18
+
19
+ msgctxt "The label of the select all toolbar button."
20
+ msgid "Select all"
21
+ msgstr "Pilih semua"
@@ -0,0 +1,21 @@
1
+ # Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved.
2
+ #
3
+ # !!! IMPORTANT !!!
4
+ #
5
+ # Before you edit this file, please keep in mind that contributing to the project
6
+ # translations is possible ONLY via the Transifex online service.
7
+ #
8
+ # To submit your translations, visit https://www.transifex.com/ckeditor/ckeditor5.
9
+ #
10
+ # To learn more, check out the official contributor's guide:
11
+ # https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
12
+ #
13
+ msgid ""
14
+ msgstr ""
15
+ "Language-Team: Uzbek (https://www.transifex.com/ckeditor/teams/11143/uz/)\n"
16
+ "Language: uz\n"
17
+ "Plural-Forms: nplurals=1; plural=0;\n"
18
+
19
+ msgctxt "The label of the select all toolbar button."
20
+ msgid "Select all"
21
+ msgstr "Hammasini tanlash"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-select-all",
3
- "version": "29.1.0",
3
+ "version": "31.1.0",
4
4
  "description": "Select all feature for CKEditor 5.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -12,19 +12,19 @@
12
12
  ],
13
13
  "main": "src/index.js",
14
14
  "dependencies": {
15
- "@ckeditor/ckeditor5-core": "^29.1.0",
16
- "@ckeditor/ckeditor5-utils": "^29.1.0",
17
- "@ckeditor/ckeditor5-ui": "^29.1.0"
15
+ "@ckeditor/ckeditor5-core": "^31.1.0",
16
+ "@ckeditor/ckeditor5-utils": "^31.1.0",
17
+ "@ckeditor/ckeditor5-ui": "^31.1.0"
18
18
  },
19
19
  "devDependencies": {
20
- "@ckeditor/ckeditor5-basic-styles": "^29.1.0",
21
- "@ckeditor/ckeditor5-engine": "^29.1.0",
22
- "@ckeditor/ckeditor5-essentials": "^29.1.0",
23
- "@ckeditor/ckeditor5-heading": "^29.1.0",
24
- "@ckeditor/ckeditor5-image": "^29.1.0",
25
- "@ckeditor/ckeditor5-paragraph": "^29.1.0",
26
- "@ckeditor/ckeditor5-table": "^29.1.0",
27
- "@ckeditor/ckeditor5-editor-classic": "^29.1.0"
20
+ "@ckeditor/ckeditor5-basic-styles": "^31.1.0",
21
+ "@ckeditor/ckeditor5-engine": "^31.1.0",
22
+ "@ckeditor/ckeditor5-essentials": "^31.1.0",
23
+ "@ckeditor/ckeditor5-heading": "^31.1.0",
24
+ "@ckeditor/ckeditor5-image": "^31.1.0",
25
+ "@ckeditor/ckeditor5-paragraph": "^31.1.0",
26
+ "@ckeditor/ckeditor5-table": "^31.1.0",
27
+ "@ckeditor/ckeditor5-editor-classic": "^31.1.0"
28
28
  },
29
29
  "engines": {
30
30
  "node": ">=12.0.0",
@@ -26,6 +26,16 @@ import Command from '@ckeditor/ckeditor5-core/src/command';
26
26
  * @extends module:core/command~Command
27
27
  */
28
28
  export default class SelectAllCommand extends Command {
29
+ /**
30
+ * @inheritDoc
31
+ */
32
+ constructor( editor ) {
33
+ super( editor );
34
+
35
+ // It does not affect data so should be enabled in read-only mode.
36
+ this.affectsData = false;
37
+ }
38
+
29
39
  /**
30
40
  * @inheritDoc
31
41
  */
package/CHANGELOG.md DELETED
@@ -1,10 +0,0 @@
1
- Changelog
2
- =========
3
-
4
- All changes in the package are documented in the main repository. See: https://github.com/ckeditor/ckeditor5/blob/master/CHANGELOG.md.
5
-
6
- Changes for the past releases are available below.
7
-
8
- ## [19.0.0](https://github.com/ckeditor/ckeditor5-select-all/tree/v19.0.0) (2020-04-29)
9
-
10
- Introduced the select all feature.