@ckeditor/ckeditor5-heading 48.1.1 → 48.2.0-alpha.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/dist/index.js +89 -6
- package/dist/index.js.map +1 -1
- package/dist/title.d.ts +7 -0
- package/package.json +8 -8
package/dist/title.d.ts
CHANGED
|
@@ -34,6 +34,13 @@ export declare class Title extends Plugin {
|
|
|
34
34
|
* @inheritDoc
|
|
35
35
|
*/
|
|
36
36
|
init(): void;
|
|
37
|
+
/**
|
|
38
|
+
* Logs a single warning when none of the editor's roots can host the title structure. The Title feature
|
|
39
|
+
* only operates on roots whose `modelElement` is the default `$root`; roots configured with a custom
|
|
40
|
+
* `modelElement` are silently skipped at runtime. If no root supports the structure, the plugin is
|
|
41
|
+
* effectively a no-op and the integrator likely wants to know.
|
|
42
|
+
*/
|
|
43
|
+
private _warnIfNoSupportedRoot;
|
|
37
44
|
/**
|
|
38
45
|
* Returns the title of the document. Note that because this plugin does not allow any formatting inside
|
|
39
46
|
* the title element, the output of this method will be a plain text, with no HTML tags.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-heading",
|
|
3
|
-
"version": "48.
|
|
3
|
+
"version": "48.2.0-alpha.1",
|
|
4
4
|
"description": "Headings feature for CKEditor 5.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "CKSource (http://cksource.com/)",
|
|
@@ -26,13 +26,13 @@
|
|
|
26
26
|
"./package.json": "./package.json"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@ckeditor/ckeditor5-core": "48.
|
|
30
|
-
"@ckeditor/ckeditor5-engine": "48.
|
|
31
|
-
"@ckeditor/ckeditor5-enter": "48.
|
|
32
|
-
"@ckeditor/ckeditor5-icons": "48.
|
|
33
|
-
"@ckeditor/ckeditor5-paragraph": "48.
|
|
34
|
-
"@ckeditor/ckeditor5-ui": "48.
|
|
35
|
-
"@ckeditor/ckeditor5-utils": "48.
|
|
29
|
+
"@ckeditor/ckeditor5-core": "48.2.0-alpha.1",
|
|
30
|
+
"@ckeditor/ckeditor5-engine": "48.2.0-alpha.1",
|
|
31
|
+
"@ckeditor/ckeditor5-enter": "48.2.0-alpha.1",
|
|
32
|
+
"@ckeditor/ckeditor5-icons": "48.2.0-alpha.1",
|
|
33
|
+
"@ckeditor/ckeditor5-paragraph": "48.2.0-alpha.1",
|
|
34
|
+
"@ckeditor/ckeditor5-ui": "48.2.0-alpha.1",
|
|
35
|
+
"@ckeditor/ckeditor5-utils": "48.2.0-alpha.1"
|
|
36
36
|
},
|
|
37
37
|
"files": [
|
|
38
38
|
"dist",
|