@ckeditor/ckeditor5-revision-history 39.0.2 → 40.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.
- package/LICENSE.md +3 -3
- package/README.md +1 -1
- package/build/revision-history.js +1 -1
- package/ckeditor5-metadata.json +1 -1
- package/package.json +6 -6
- package/src/changeitem.js +1 -1
- package/src/editor/revisionviewereditor.js +1 -1
- package/src/editor/revisionviewereditorui.js +1 -1
- package/src/editor/revisionviewereditoruiview.js +1 -1
- package/src/revision.js +1 -1
- package/src/revisiondiff.js +1 -1
- package/src/revisionhistory.js +1 -1
- package/src/revisionsrepository.js +1 -1
- package/src/revisiontracker.js +1 -1
- package/src/revisionviewer.js +1 -1
- package/src/ui/revision/createrevisionactionsdropdown.js +1 -1
- package/src/ui/revision/revisionauthorview.js +1 -1
- package/src/ui/revision/revisionnameview.js +1 -1
- package/src/ui/revision/revisionview.js +1 -1
- package/src/ui/revision/subrevisioncollapserview.js +1 -1
- package/src/ui/revision/subrevisionview.js +1 -1
- package/src/ui/revision/utils.js +1 -1
- package/src/ui/revisionhistory/revisionhistorysaverevisionformview.js +1 -1
- package/src/ui/revisionhistory/revisionhistoryui.js +1 -1
- package/src/ui/revisionssidebar/revisionssidebar.js +1 -1
- package/src/ui/revisionssidebar/revisionssidebarheaderview.js +1 -1
- package/src/ui/revisionssidebar/revisionssidebartimeperiodview.js +1 -1
- package/src/ui/revisionssidebar/revisionssidebarview.js +1 -1
- package/src/ui/revisionssidebar/utils.js +1 -1
- package/src/ui/revisionviewer/changedetailsview.js +1 -1
- package/src/ui/revisionviewer/changesnavigationview.js +1 -1
- package/src/ui/revisionviewer/revisionviewerloadingoverlay.js +1 -1
- package/src/ui/revisionviewer/revisionviewerui.js +1 -1
- package/src/utils/common-translations.js +1 -1
- package/theme/changesnavigation.css +9 -0
- package/theme/revision/revision.css +9 -0
- package/theme/revision/revisionactions.css +9 -0
- package/theme/revision/revisionauthor.css +9 -0
- package/theme/revision/revisionname.css +9 -0
- package/theme/revision/subrevision.css +9 -0
- package/theme/revision/subrevisioncollapser.css +9 -0
- package/theme/revisionhistorysaverevisionform.css +5 -1
- package/theme/revisionssidebar/revisionssidebar.css +9 -0
- package/theme/revisionssidebar/revisionssidebarheader.css +9 -0
- package/theme/revisionssidebar/revisionssidebartimeperiod.css +9 -0
- package/theme/revisionviewer.css +9 -0
- package/theme/revisionviewerloadingoverlay.css +9 -0
package/LICENSE.md
CHANGED
|
@@ -2,7 +2,7 @@ Software License Agreement
|
|
|
2
2
|
==========================
|
|
3
3
|
|
|
4
4
|
**CKEditor 5 revision history** (https://ckeditor.com/collaboration/)<br>
|
|
5
|
-
Copyright (c) 2003
|
|
5
|
+
Copyright (c) 2003–2023, [CKSource Holding sp. z o.o.](https://cksource.com) All rights reserved.
|
|
6
6
|
|
|
7
7
|
CKEditor 5 revision history feature is licensed under a commercial license and is protected by copyright law.
|
|
8
8
|
For more details about available licensing options please contact us at sales@cksource.com.
|
|
@@ -14,10 +14,10 @@ Where not otherwise indicated, all CKEditor 5 revision history content is a
|
|
|
14
14
|
|
|
15
15
|
The following libraries are included in CKEditor 5 revision history under the [MIT license](https://opensource.org/licenses/MIT):
|
|
16
16
|
|
|
17
|
-
*
|
|
17
|
+
* Lodash - Copyright (c) JS Foundation and other contributors https://js.foundation/. Based on Underscore.js, copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors http://underscorejs.org/.
|
|
18
18
|
* Luxon - Copyright (c) JS Foundation and other contributors.
|
|
19
19
|
|
|
20
20
|
Trademarks
|
|
21
21
|
----------
|
|
22
22
|
|
|
23
|
-
**CKEditor** is a trademark of [CKSource Holding sp. z o.o.](https://cksource.com) All other brand and product names are trademarks, registered trademarks or service marks of their respective holders.
|
|
23
|
+
**CKEditor** is a trademark of [CKSource Holding sp. z o.o.](https://cksource.com) All other brand and product names are trademarks, registered trademarks, or service marks of their respective holders.
|
package/README.md
CHANGED
|
@@ -38,7 +38,7 @@ As a licensed CKEditor 5 revision history user you can report bugs and requ
|
|
|
38
38
|
## License
|
|
39
39
|
|
|
40
40
|
**CKEditor 5 revision history** (https://ckeditor.com/ckeditor-5/revision-history/)<br>
|
|
41
|
-
Copyright (c) 2003-
|
|
41
|
+
Copyright (c) 2003-2023, [CKSource Holding sp. z o.o.](https://cksource.com) All rights reserved.
|
|
42
42
|
|
|
43
43
|
CKEditor 5 revision history feature is licensed under a commercial license and is protected by copyright law.
|
|
44
44
|
For more details about available licensing options please contact us at sales@cksource.com.
|