@ckeditor/ckeditor5-html-support 47.4.0 → 47.5.0-alpha.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-html-support",
3
- "version": "47.4.0",
3
+ "version": "47.5.0-alpha.0",
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.4.0",
21
- "@ckeditor/ckeditor5-engine": "47.4.0",
22
- "@ckeditor/ckeditor5-enter": "47.4.0",
23
- "@ckeditor/ckeditor5-heading": "47.4.0",
24
- "@ckeditor/ckeditor5-image": "47.4.0",
25
- "@ckeditor/ckeditor5-list": "47.4.0",
26
- "@ckeditor/ckeditor5-remove-format": "47.4.0",
27
- "@ckeditor/ckeditor5-table": "47.4.0",
28
- "@ckeditor/ckeditor5-utils": "47.4.0",
29
- "@ckeditor/ckeditor5-widget": "47.4.0",
30
- "ckeditor5": "47.4.0",
20
+ "@ckeditor/ckeditor5-core": "47.5.0-alpha.0",
21
+ "@ckeditor/ckeditor5-engine": "47.5.0-alpha.0",
22
+ "@ckeditor/ckeditor5-enter": "47.5.0-alpha.0",
23
+ "@ckeditor/ckeditor5-heading": "47.5.0-alpha.0",
24
+ "@ckeditor/ckeditor5-image": "47.5.0-alpha.0",
25
+ "@ckeditor/ckeditor5-list": "47.5.0-alpha.0",
26
+ "@ckeditor/ckeditor5-remove-format": "47.5.0-alpha.0",
27
+ "@ckeditor/ckeditor5-table": "47.5.0-alpha.0",
28
+ "@ckeditor/ckeditor5-utils": "47.5.0-alpha.0",
29
+ "@ckeditor/ckeditor5-widget": "47.5.0-alpha.0",
30
+ "ckeditor5": "47.5.0-alpha.0",
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
+ }
@@ -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', 'htmlDivDl'],
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
  },