@ckeditor/ckeditor5-html-support 47.4.0 → 47.5.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/build/html-support.js +1 -1
- package/dist/index.js +3 -12
- package/dist/index.js.map +1 -1
- package/package.json +13 -13
- package/src/schemadefinitions.js +3 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-html-support",
|
|
3
|
-
"version": "47.
|
|
3
|
+
"version": "47.5.0-alpha.1",
|
|
4
4
|
"description": "HTML Support feature for CKEditor 5.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ckeditor",
|
|
@@ -17,17 +17,17 @@
|
|
|
17
17
|
"type": "module",
|
|
18
18
|
"main": "src/index.js",
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@ckeditor/ckeditor5-core": "47.
|
|
21
|
-
"@ckeditor/ckeditor5-engine": "47.
|
|
22
|
-
"@ckeditor/ckeditor5-enter": "47.
|
|
23
|
-
"@ckeditor/ckeditor5-heading": "47.
|
|
24
|
-
"@ckeditor/ckeditor5-image": "47.
|
|
25
|
-
"@ckeditor/ckeditor5-list": "47.
|
|
26
|
-
"@ckeditor/ckeditor5-remove-format": "47.
|
|
27
|
-
"@ckeditor/ckeditor5-table": "47.
|
|
28
|
-
"@ckeditor/ckeditor5-utils": "47.
|
|
29
|
-
"@ckeditor/ckeditor5-widget": "47.
|
|
30
|
-
"ckeditor5": "47.
|
|
20
|
+
"@ckeditor/ckeditor5-core": "47.5.0-alpha.1",
|
|
21
|
+
"@ckeditor/ckeditor5-engine": "47.5.0-alpha.1",
|
|
22
|
+
"@ckeditor/ckeditor5-enter": "47.5.0-alpha.1",
|
|
23
|
+
"@ckeditor/ckeditor5-heading": "47.5.0-alpha.1",
|
|
24
|
+
"@ckeditor/ckeditor5-image": "47.5.0-alpha.1",
|
|
25
|
+
"@ckeditor/ckeditor5-list": "47.5.0-alpha.1",
|
|
26
|
+
"@ckeditor/ckeditor5-remove-format": "47.5.0-alpha.1",
|
|
27
|
+
"@ckeditor/ckeditor5-table": "47.5.0-alpha.1",
|
|
28
|
+
"@ckeditor/ckeditor5-utils": "47.5.0-alpha.1",
|
|
29
|
+
"@ckeditor/ckeditor5-widget": "47.5.0-alpha.1",
|
|
30
|
+
"ckeditor5": "47.5.0-alpha.1",
|
|
31
31
|
"es-toolkit": "1.39.5"
|
|
32
32
|
},
|
|
33
33
|
"author": "CKSource (http://cksource.com/)",
|
|
@@ -72,4 +72,4 @@
|
|
|
72
72
|
"./ckeditor5-metadata.json": "./ckeditor5-metadata.json",
|
|
73
73
|
"./package.json": "./package.json"
|
|
74
74
|
}
|
|
75
|
-
}
|
|
75
|
+
}
|
package/src/schemadefinitions.js
CHANGED
|
@@ -487,20 +487,12 @@ export const defaultConfig = {
|
|
|
487
487
|
isBlock: false
|
|
488
488
|
}
|
|
489
489
|
},
|
|
490
|
-
{
|
|
491
|
-
model: 'htmlDivDl',
|
|
492
|
-
view: 'div',
|
|
493
|
-
modelSchema: {
|
|
494
|
-
allowChildren: ['htmlDt', 'htmlDd'],
|
|
495
|
-
allowIn: 'htmlDl'
|
|
496
|
-
}
|
|
497
|
-
},
|
|
498
490
|
{
|
|
499
491
|
model: 'htmlDl',
|
|
500
492
|
view: 'dl',
|
|
501
493
|
modelSchema: {
|
|
502
494
|
allowWhere: '$container',
|
|
503
|
-
allowChildren: ['htmlDt', 'htmlDd', '
|
|
495
|
+
allowChildren: ['htmlDt', 'htmlDd', 'htmlDiv'],
|
|
504
496
|
isBlock: false
|
|
505
497
|
}
|
|
506
498
|
},
|
|
@@ -509,6 +501,7 @@ export const defaultConfig = {
|
|
|
509
501
|
view: 'dt',
|
|
510
502
|
modelSchema: {
|
|
511
503
|
allowChildren: '$block',
|
|
504
|
+
allowIn: 'htmlDiv',
|
|
512
505
|
isBlock: false
|
|
513
506
|
}
|
|
514
507
|
},
|
|
@@ -517,6 +510,7 @@ export const defaultConfig = {
|
|
|
517
510
|
view: 'dd',
|
|
518
511
|
modelSchema: {
|
|
519
512
|
allowChildren: '$block',
|
|
513
|
+
allowIn: 'htmlDiv',
|
|
520
514
|
isBlock: false
|
|
521
515
|
}
|
|
522
516
|
},
|