@mirrormedia/lilith-draft-editor 1.1.0-alpha.13 → 1.1.0-alpha.15

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.
@@ -31,7 +31,8 @@ const {
31
31
  DividerBlock,
32
32
  RelatedPostBlock,
33
33
  VideoBlock,
34
- AudioBlock
34
+ AudioBlock,
35
+ YoutubeBlock
35
36
  } = _mirrormedia.default.blockRenderers;
36
37
 
37
38
  const AtomicBlock = props => {
@@ -115,6 +116,11 @@ const AtomicBlock = props => {
115
116
  {
116
117
  return AudioBlock(entity);
117
118
  }
119
+
120
+ case 'YOUTUBE':
121
+ {
122
+ return YoutubeBlock(entity);
123
+ }
118
124
  }
119
125
 
120
126
  return null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mirrormedia/lilith-draft-editor",
3
- "version": "1.1.0-alpha.13",
3
+ "version": "1.1.0-alpha.15",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "scripts": {
@@ -23,16 +23,16 @@
23
23
  "license": "MIT",
24
24
  "dependencies": {
25
25
  "draft-js": "^0.11.7",
26
- "@mirrormedia/lilith-draft-renderer": "1.2.0-alpha.9"
26
+ "@mirrormedia/lilith-draft-renderer": "1.2.0-alpha.29"
27
27
  },
28
28
  "peerDependencies": {
29
- "react": "18.1.0",
30
- "react-dom": "18.1.0",
29
+ "react": "18.2.0",
30
+ "react-dom": "18.2.0",
31
31
  "styled-components": "5.3.5",
32
- "@keystone-6/core": "1.1.1",
33
- "@keystone-ui/button": "^6.0.0",
34
- "@keystone-ui/fields": "^6.0.0",
35
- "@keystone-ui/modals": "^5.0.0"
32
+ "@keystone-6/core": "5.2.0",
33
+ "@keystone-ui/button": "^7.0.2",
34
+ "@keystone-ui/fields": "^7.2.0",
35
+ "@keystone-ui/modals": "^6.0.3"
36
36
  },
37
37
  "files": [
38
38
  "lib"