@ckeditor/ckeditor5-source-editing-enhanced 0.0.0-nightly-20250129.1
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/CHANGELOG.md +4 -0
- package/LICENSE.md +23 -0
- package/README.md +26 -0
- package/build/source-editing-enhanced.js +4 -0
- package/ckeditor5-metadata.json +17 -0
- package/dist/index-content.css +5 -0
- package/dist/index-editor.css +34 -0
- package/dist/index.css +56 -0
- package/dist/index.js +23 -0
- package/lang/contexts.json +22 -0
- package/package.json +67 -0
- package/src/augmentation.d.ts +22 -0
- package/src/augmentation.js +23 -0
- package/src/index.d.ts +12 -0
- package/src/index.js +23 -0
- package/src/replacesourcecommand.d.ts +28 -0
- package/src/replacesourcecommand.js +23 -0
- package/src/sourceeditingenhanced.d.ts +47 -0
- package/src/sourceeditingenhanced.js +23 -0
- package/src/sourceeditingenhancedconfig.d.ts +42 -0
- package/src/sourceeditingenhancedconfig.js +23 -0
- package/src/sourceeditingenhancedui.d.ts +40 -0
- package/src/sourceeditingenhancedui.js +23 -0
- package/src/ui/codeeditorview.d.ts +53 -0
- package/src/ui/codeeditorview.js +23 -0
- package/src/ui/editsourcecommand.d.ts +26 -0
- package/src/ui/editsourcecommand.js +23 -0
- package/src/utils/common-translations.d.ts +9 -0
- package/src/utils/common-translations.js +23 -0
- package/src/utils/createcodemirroreditor.d.ts +58 -0
- package/src/utils/createcodemirroreditor.js +23 -0
- package/src/utils/format.d.ts +35 -0
- package/src/utils/format.js +23 -0
- package/src/utils/getactiverootname.d.ts +9 -0
- package/src/utils/getactiverootname.js +23 -0
- package/theme/sourceeditingenhanced.css +44 -0
package/CHANGELOG.md
ADDED
package/LICENSE.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
Software License Agreement
|
|
2
|
+
==========================
|
|
3
|
+
|
|
4
|
+
**CKEditor 5 source editing enhanced feature** (https://ckeditor.com/ckeditor-5/)<br>
|
|
5
|
+
Copyright (c) 2003–2024, [CKSource Holding sp. z o.o.](https://cksource.com) All rights reserved.
|
|
6
|
+
|
|
7
|
+
CKEditor 5 source editing enhanced feature is licensed under a commercial license and is protected by copyright law.
|
|
8
|
+
For more details about available licensing options please contact us at sales@cksource.com.
|
|
9
|
+
|
|
10
|
+
Sources of Intellectual Property Included in CKEditor 5 source editing enhanced
|
|
11
|
+
-----------------------------------------------------
|
|
12
|
+
|
|
13
|
+
Where not otherwise indicated, all CKEditor 5 source editing enhanced feature content is authored by CKSource engineers and consists of CKSource-owned intellectual property.
|
|
14
|
+
|
|
15
|
+
The following libraries are included in CKEditor 5 Source Editing Enhanced under the [MIT license](https://opensource.org/licenses/MIT):
|
|
16
|
+
|
|
17
|
+
* CodeMirror - Copyright (C) 2018 by Marijn Haverbeke <marijn@haverbeke.berlin>, Adrian
|
|
18
|
+
Heine <mail@adrianheine.de>, and others.
|
|
19
|
+
|
|
20
|
+
Trademarks
|
|
21
|
+
----------
|
|
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.
|
package/README.md
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
CKEditor 5 enhanced source code editing feature
|
|
2
|
+
=================================
|
|
3
|
+
|
|
4
|
+
[](https://www.npmjs.com/package/@ckeditor/ckeditor5-source-editing)
|
|
5
|
+
[](https://coveralls.io/github/ckeditor/ckeditor5?branch=master)
|
|
6
|
+
[](https://app.travis-ci.com/github/ckeditor/ckeditor5)
|
|
7
|
+
|
|
8
|
+
This package implements the enhanced source code editing support for CKEditor 5 that allows for viewing and editing the source code of the document in a handy modal window (compatible with all editor types) with syntax highlighting, autocompletion and more.
|
|
9
|
+
|
|
10
|
+
## Demo
|
|
11
|
+
|
|
12
|
+
Check out the [demo in the enhanced source code editing feature guide](https://ckeditor.com/docs/ckeditor5/latest/features/source-editing/source-editing-enhanced.html#demo).
|
|
13
|
+
|
|
14
|
+
## Documentation
|
|
15
|
+
|
|
16
|
+
See the [`@ckeditor/ckeditor5-source-editing-enhanced` package](https://ckeditor.com/docs/ckeditor5/latest/api/source-editing-enhanced.html) page as well as the [enhanced source code editing feature](https://ckeditor.com/docs/ckeditor5/latest/features/source-editing/source-editing-enhanced.html) guide in the [CKEditor 5 documentation](https://ckeditor.com/docs/ckeditor5/latest/).
|
|
17
|
+
|
|
18
|
+
## Installation
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
npm install ckeditor5
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
## License
|
|
25
|
+
|
|
26
|
+
Licensed under the terms of [GNU General Public License Version 2 or later](http://www.gnu.org/licenses/gpl.html). For full details about the license, please check the `LICENSE.md` file or [https://ckeditor.com/legal/ckeditor-oss-license](https://ckeditor.com/legal/ckeditor-oss-license).
|