@ckeditor/ckeditor5-media-embed 43.0.0-alpha.6 → 43.1.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-media-embed",
3
- "version": "43.0.0-alpha.6",
3
+ "version": "43.1.0-alpha.0",
4
4
  "description": "Media embed feature for CKEditor 5.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -13,15 +13,15 @@
13
13
  "type": "module",
14
14
  "main": "src/index.js",
15
15
  "dependencies": {
16
- "@ckeditor/ckeditor5-clipboard": "43.0.0-alpha.6",
17
- "@ckeditor/ckeditor5-core": "43.0.0-alpha.6",
18
- "@ckeditor/ckeditor5-engine": "43.0.0-alpha.6",
19
- "@ckeditor/ckeditor5-typing": "43.0.0-alpha.6",
20
- "@ckeditor/ckeditor5-ui": "43.0.0-alpha.6",
21
- "@ckeditor/ckeditor5-undo": "43.0.0-alpha.6",
22
- "@ckeditor/ckeditor5-utils": "43.0.0-alpha.6",
23
- "@ckeditor/ckeditor5-widget": "43.0.0-alpha.6",
24
- "ckeditor5": "43.0.0-alpha.6"
16
+ "@ckeditor/ckeditor5-clipboard": "43.1.0-alpha.0",
17
+ "@ckeditor/ckeditor5-core": "43.1.0-alpha.0",
18
+ "@ckeditor/ckeditor5-engine": "43.1.0-alpha.0",
19
+ "@ckeditor/ckeditor5-typing": "43.1.0-alpha.0",
20
+ "@ckeditor/ckeditor5-ui": "43.1.0-alpha.0",
21
+ "@ckeditor/ckeditor5-undo": "43.1.0-alpha.0",
22
+ "@ckeditor/ckeditor5-utils": "43.1.0-alpha.0",
23
+ "@ckeditor/ckeditor5-widget": "43.1.0-alpha.0",
24
+ "ckeditor5": "43.1.0-alpha.0"
25
25
  },
26
26
  "author": "CKSource (http://cksource.com/)",
27
27
  "license": "GPL-2.0-or-later",
@@ -105,11 +105,17 @@ export default class MediaEmbedEditing extends Plugin {
105
105
  },
106
106
  {
107
107
  name: 'instagram',
108
- url: /^instagram\.com\/p\/(\w+)/
108
+ url: [
109
+ /^instagram\.com\/p\/(\w+)/,
110
+ /^instagram\.com\/reel\/(\w+)/
111
+ ]
109
112
  },
110
113
  {
111
114
  name: 'twitter',
112
- url: /^twitter\.com/
115
+ url: [
116
+ /^twitter\.com/,
117
+ /^x\.com/
118
+ ]
113
119
  },
114
120
  {
115
121
  name: 'googleMaps',