@ckeditor/ckeditor5-select-all 29.0.0 → 31.0.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/LICENSE.md +1 -1
- package/README.md +5 -1
- package/package.json +14 -13
- package/src/selectallcommand.js +10 -0
- package/CHANGELOG.md +0 -10
package/LICENSE.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Software License Agreement
|
|
2
2
|
==========================
|
|
3
3
|
|
|
4
|
-
**CKEditor 5
|
|
4
|
+
**CKEditor 5 select all feature** – https://github.com/ckeditor/ckeditor5-select-all <br>
|
|
5
5
|
Copyright (c) 2003-2021, [CKSource](http://cksource.com) Frederico Knabben. All rights reserved.
|
|
6
6
|
|
|
7
7
|
Licensed under the terms of [GNU General Public License Version 2 or later](http://www.gnu.org/licenses/gpl.html).
|
package/README.md
CHANGED
|
@@ -7,9 +7,13 @@ CKEditor 5 select all feature
|
|
|
7
7
|
|
|
8
8
|
This package implements the select all feature for CKEditor 5.
|
|
9
9
|
|
|
10
|
+
## Demo
|
|
11
|
+
|
|
12
|
+
Check out the demo in the [select all feature guide](https://ckeditor.com/docs/ckeditor5/latest/features/select-all.html#demo).
|
|
13
|
+
|
|
10
14
|
## Documentation
|
|
11
15
|
|
|
12
|
-
See the [`@ckeditor/ckeditor5-select-all` package](https://ckeditor.com/docs/ckeditor5/latest/api/select-all.html) as well as the [
|
|
16
|
+
See the [`@ckeditor/ckeditor5-select-all` package](https://ckeditor.com/docs/ckeditor5/latest/api/select-all.html) as well as the [select all feature](https://ckeditor.com/docs/ckeditor5/latest/features/select-all.html) guide in [CKEditor 5 documentation](https://ckeditor.com/docs/ckeditor5/latest/).
|
|
13
17
|
|
|
14
18
|
## License
|
|
15
19
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-select-all",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "31.0.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": "^
|
|
16
|
-
"@ckeditor/ckeditor5-utils": "^
|
|
17
|
-
"@ckeditor/ckeditor5-ui": "^
|
|
15
|
+
"@ckeditor/ckeditor5-core": "^31.0.0",
|
|
16
|
+
"@ckeditor/ckeditor5-utils": "^31.0.0",
|
|
17
|
+
"@ckeditor/ckeditor5-ui": "^31.0.0"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
|
-
"@ckeditor/ckeditor5-basic-styles": "^
|
|
21
|
-
"@ckeditor/ckeditor5-engine": "^
|
|
22
|
-
"@ckeditor/ckeditor5-essentials": "^
|
|
23
|
-
"@ckeditor/ckeditor5-heading": "^
|
|
24
|
-
"@ckeditor/ckeditor5-image": "^
|
|
25
|
-
"@ckeditor/ckeditor5-paragraph": "^
|
|
26
|
-
"@ckeditor/ckeditor5-table": "^
|
|
27
|
-
"@ckeditor/ckeditor5-editor-classic": "^
|
|
20
|
+
"@ckeditor/ckeditor5-basic-styles": "^31.0.0",
|
|
21
|
+
"@ckeditor/ckeditor5-engine": "^31.0.0",
|
|
22
|
+
"@ckeditor/ckeditor5-essentials": "^31.0.0",
|
|
23
|
+
"@ckeditor/ckeditor5-heading": "^31.0.0",
|
|
24
|
+
"@ckeditor/ckeditor5-image": "^31.0.0",
|
|
25
|
+
"@ckeditor/ckeditor5-paragraph": "^31.0.0",
|
|
26
|
+
"@ckeditor/ckeditor5-table": "^31.0.0",
|
|
27
|
+
"@ckeditor/ckeditor5-editor-classic": "^31.0.0"
|
|
28
28
|
},
|
|
29
29
|
"engines": {
|
|
30
30
|
"node": ">=12.0.0",
|
|
@@ -42,6 +42,7 @@
|
|
|
42
42
|
"files": [
|
|
43
43
|
"lang",
|
|
44
44
|
"src",
|
|
45
|
-
"theme"
|
|
45
|
+
"theme",
|
|
46
|
+
"ckeditor5-metadata.json"
|
|
46
47
|
]
|
|
47
48
|
}
|
package/src/selectallcommand.js
CHANGED
|
@@ -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.
|