@ckeditor/ckeditor5-media-embed 42.0.1 → 42.0.2-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-content.css +6 -7
- package/dist/index-editor.css +77 -48
- package/dist/translations/ar.d.ts +1 -1
- package/dist/translations/az.d.ts +1 -1
- package/dist/translations/bg.d.ts +1 -1
- package/dist/translations/bn.d.ts +1 -1
- package/dist/translations/ca.d.ts +1 -1
- package/dist/translations/cs.d.ts +1 -1
- package/dist/translations/da.d.ts +1 -1
- package/dist/translations/de-ch.d.ts +1 -1
- package/dist/translations/de.d.ts +1 -1
- package/dist/translations/el.d.ts +1 -1
- package/dist/translations/en-au.d.ts +1 -1
- package/dist/translations/en-gb.d.ts +1 -1
- package/dist/translations/en.d.ts +1 -1
- package/dist/translations/es.d.ts +1 -1
- package/dist/translations/et.d.ts +1 -1
- package/dist/translations/fa.d.ts +1 -1
- package/dist/translations/fi.d.ts +1 -1
- package/dist/translations/fr.d.ts +1 -1
- package/dist/translations/gl.d.ts +1 -1
- package/dist/translations/he.d.ts +1 -1
- package/dist/translations/hi.d.ts +1 -1
- package/dist/translations/hr.d.ts +1 -1
- package/dist/translations/hu.d.ts +1 -1
- package/dist/translations/id.d.ts +1 -1
- package/dist/translations/it.d.ts +1 -1
- package/dist/translations/ja.d.ts +1 -1
- package/dist/translations/ko.d.ts +1 -1
- package/dist/translations/ku.d.ts +1 -1
- package/dist/translations/lt.d.ts +1 -1
- package/dist/translations/lv.d.ts +1 -1
- package/dist/translations/ms.d.ts +1 -1
- package/dist/translations/ne.d.ts +1 -1
- package/dist/translations/nl.d.ts +1 -1
- package/dist/translations/no.d.ts +1 -1
- package/dist/translations/pl.d.ts +1 -1
- package/dist/translations/pt-br.d.ts +1 -1
- package/dist/translations/pt.d.ts +1 -1
- package/dist/translations/ro.d.ts +1 -1
- package/dist/translations/ru.d.ts +1 -1
- package/dist/translations/sk.d.ts +1 -1
- package/dist/translations/sq.d.ts +1 -1
- package/dist/translations/sr-latn.d.ts +1 -1
- package/dist/translations/sr.d.ts +1 -1
- package/dist/translations/sv.d.ts +1 -1
- package/dist/translations/th.d.ts +1 -1
- package/dist/translations/tk.d.ts +1 -1
- package/dist/translations/tr.d.ts +1 -1
- package/dist/translations/uk.d.ts +1 -1
- package/dist/translations/ur.d.ts +1 -1
- package/dist/translations/uz.d.ts +1 -1
- package/dist/translations/vi.d.ts +1 -1
- package/dist/translations/zh-cn.d.ts +1 -1
- package/dist/translations/zh.d.ts +1 -1
- package/package.json +10 -3
- /package/dist/{types/augmentation.d.ts → augmentation.d.ts} +0 -0
- /package/dist/{types/automediaembed.d.ts → automediaembed.d.ts} +0 -0
- /package/dist/{types/converters.d.ts → converters.d.ts} +0 -0
- /package/dist/{types/index.d.ts → index.d.ts} +0 -0
- /package/dist/{types/mediaembed.d.ts → mediaembed.d.ts} +0 -0
- /package/dist/{types/mediaembedcommand.d.ts → mediaembedcommand.d.ts} +0 -0
- /package/dist/{types/mediaembedconfig.d.ts → mediaembedconfig.d.ts} +0 -0
- /package/dist/{types/mediaembedediting.d.ts → mediaembedediting.d.ts} +0 -0
- /package/dist/{types/mediaembedtoolbar.d.ts → mediaembedtoolbar.d.ts} +0 -0
- /package/dist/{types/mediaembedui.d.ts → mediaembedui.d.ts} +0 -0
- /package/dist/{types/mediaregistry.d.ts → mediaregistry.d.ts} +0 -0
- /package/dist/{types/ui → ui}/mediaformview.d.ts +0 -0
- /package/dist/{types/utils.d.ts → utils.d.ts} +0 -0
package/dist/index-content.css
CHANGED
@@ -2,10 +2,9 @@
|
|
2
2
|
* @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
|
-
.ck-content .media
|
6
|
-
clear:
|
7
|
-
margin:
|
8
|
-
display:
|
9
|
-
min-width:
|
10
|
-
|
11
|
-
}
|
5
|
+
.ck-content .media{
|
6
|
+
clear:both;
|
7
|
+
margin:0.9em 0;
|
8
|
+
display:block;
|
9
|
+
min-width:15em;
|
10
|
+
}
|
package/dist/index-editor.css
CHANGED
@@ -2,66 +2,95 @@
|
|
2
2
|
* @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
|
-
.ck-media__wrapper .ck-media__placeholder
|
6
|
-
display:
|
7
|
-
flex-direction:
|
8
|
-
align-items:
|
5
|
+
.ck-media__wrapper .ck-media__placeholder{
|
6
|
+
display:flex;
|
7
|
+
flex-direction:column;
|
8
|
+
align-items:center;
|
9
|
+
}
|
9
10
|
|
10
|
-
|
11
|
-
|
12
|
-
max-width: 100%;
|
13
|
-
position: relative;
|
11
|
+
.ck-media__wrapper .ck-media__placeholder .ck-media__placeholder__url{
|
12
|
+
max-width:100%;
|
14
13
|
|
15
|
-
|
16
|
-
|
17
|
-
overflow: hidden;
|
18
|
-
display: block;
|
14
|
+
position:relative;
|
15
|
+
}
|
19
16
|
|
20
|
-
|
21
|
-
|
22
|
-
display:
|
17
|
+
.ck-media__wrapper .ck-media__placeholder .ck-media__placeholder__url .ck-media__placeholder__url__text{
|
18
|
+
overflow:hidden;
|
19
|
+
display:block;
|
20
|
+
}
|
23
21
|
|
22
|
+
.ck-media__wrapper[data-oembed-url*="twitter.com"] .ck-media__placeholder__icon *, .ck-media__wrapper[data-oembed-url*="google.com/maps"] .ck-media__placeholder__icon *, .ck-media__wrapper[data-oembed-url*="goo.gl/maps"] .ck-media__placeholder__icon *, .ck-media__wrapper[data-oembed-url*="maps.google.com"] .ck-media__placeholder__icon *, .ck-media__wrapper[data-oembed-url*="maps.app.goo.gl"] .ck-media__placeholder__icon *, .ck-media__wrapper[data-oembed-url*="facebook.com"] .ck-media__placeholder__icon *, .ck-media__wrapper[data-oembed-url*="instagram.com"] .ck-media__placeholder__icon *{
|
23
|
+
display:none;
|
24
|
+
}
|
25
|
+
.ck-editor__editable:not(.ck-read-only) .ck-media__wrapper > *:not(.ck-media__placeholder){
|
26
|
+
pointer-events:none;
|
24
27
|
}
|
25
|
-
.ck-editor__editable:not(.ck-read-only) .ck-
|
26
|
-
pointer-events:
|
27
|
-
|
28
|
+
.ck-editor__editable:not(.ck-read-only) .ck-widget:not(.ck-widget_selected) .ck-media__placeholder{
|
29
|
+
pointer-events:none;
|
28
30
|
}
|
29
|
-
.ck-editor__editable:not(.ck-read-only) .ck-widget:not(.ck-widget_selected) .ck-media__placeholder {
|
30
|
-
pointer-events: none;
|
31
31
|
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
32
|
+
.ck-vertical-form .ck-button::after{
|
33
|
+
content:"";
|
34
|
+
width:0;
|
35
|
+
position:absolute;
|
36
|
+
right:-1px;
|
37
|
+
top:-1px;
|
38
|
+
bottom:-1px;
|
39
|
+
z-index:1;
|
40
|
+
}
|
41
41
|
|
42
|
-
|
43
|
-
|
44
|
-
|
42
|
+
.ck-vertical-form .ck-button:focus::after{
|
43
|
+
display:none;
|
44
|
+
}
|
45
45
|
|
46
|
-
|
47
|
-
.ck.ck-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
46
|
+
@media screen and (max-width: 600px){
|
47
|
+
.ck.ck-responsive-form .ck-button::after{
|
48
|
+
content:"";
|
49
|
+
width:0;
|
50
|
+
position:absolute;
|
51
|
+
right:-1px;
|
52
|
+
top:-1px;
|
53
|
+
bottom:-1px;
|
54
|
+
z-index:1;
|
55
|
+
}
|
53
56
|
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
57
|
+
.ck.ck-responsive-form .ck-button:focus::after{
|
58
|
+
display:none;
|
59
|
+
}
|
60
|
+
}
|
58
61
|
|
62
|
+
.ck.ck-media-form{
|
63
|
+
display:flex;
|
64
|
+
align-items:flex-start;
|
65
|
+
flex-direction:row;
|
66
|
+
flex-wrap:nowrap;
|
67
|
+
width:400px;
|
59
68
|
}
|
60
|
-
.ck.ck-media-form .ck-label {
|
61
|
-
display: none;
|
62
69
|
|
63
|
-
|
64
|
-
|
65
|
-
width:
|
70
|
+
.ck.ck-media-form .ck-labeled-field-view{
|
71
|
+
display:inline-block;
|
72
|
+
width:100%;
|
73
|
+
}
|
74
|
+
|
75
|
+
.ck.ck-media-form .ck-label{
|
76
|
+
display:none;
|
77
|
+
}
|
78
|
+
|
79
|
+
.ck.ck-media-form .ck-input{
|
80
|
+
width:100%;
|
81
|
+
}
|
66
82
|
|
83
|
+
@media screen and (max-width: 600px){
|
84
|
+
|
85
|
+
.ck.ck-media-form{
|
86
|
+
flex-wrap:wrap;
|
67
87
|
}
|
88
|
+
|
89
|
+
.ck.ck-media-form .ck-labeled-field-view{
|
90
|
+
flex-basis:100%;
|
91
|
+
}
|
92
|
+
|
93
|
+
.ck.ck-media-form .ck-button{
|
94
|
+
flex-basis:50%;
|
95
|
+
}
|
96
|
+
}
|
@@ -3,6 +3,6 @@
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
5
|
|
6
|
-
import type { Translations } from 'ckeditor5';
|
6
|
+
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
7
7
|
declare const translations: Translations;
|
8
8
|
export default translations;
|
@@ -3,6 +3,6 @@
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
5
|
|
6
|
-
import type { Translations } from 'ckeditor5';
|
6
|
+
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
7
7
|
declare const translations: Translations;
|
8
8
|
export default translations;
|
@@ -3,6 +3,6 @@
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
5
|
|
6
|
-
import type { Translations } from 'ckeditor5';
|
6
|
+
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
7
7
|
declare const translations: Translations;
|
8
8
|
export default translations;
|
@@ -3,6 +3,6 @@
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
5
|
|
6
|
-
import type { Translations } from 'ckeditor5';
|
6
|
+
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
7
7
|
declare const translations: Translations;
|
8
8
|
export default translations;
|
@@ -3,6 +3,6 @@
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
5
|
|
6
|
-
import type { Translations } from 'ckeditor5';
|
6
|
+
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
7
7
|
declare const translations: Translations;
|
8
8
|
export default translations;
|
@@ -3,6 +3,6 @@
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
5
|
|
6
|
-
import type { Translations } from 'ckeditor5';
|
6
|
+
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
7
7
|
declare const translations: Translations;
|
8
8
|
export default translations;
|
@@ -3,6 +3,6 @@
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
5
|
|
6
|
-
import type { Translations } from 'ckeditor5';
|
6
|
+
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
7
7
|
declare const translations: Translations;
|
8
8
|
export default translations;
|
@@ -3,6 +3,6 @@
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
5
|
|
6
|
-
import type { Translations } from 'ckeditor5';
|
6
|
+
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
7
7
|
declare const translations: Translations;
|
8
8
|
export default translations;
|
@@ -3,6 +3,6 @@
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
5
|
|
6
|
-
import type { Translations } from 'ckeditor5';
|
6
|
+
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
7
7
|
declare const translations: Translations;
|
8
8
|
export default translations;
|
@@ -3,6 +3,6 @@
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
5
|
|
6
|
-
import type { Translations } from 'ckeditor5';
|
6
|
+
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
7
7
|
declare const translations: Translations;
|
8
8
|
export default translations;
|
@@ -3,6 +3,6 @@
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
5
|
|
6
|
-
import type { Translations } from 'ckeditor5';
|
6
|
+
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
7
7
|
declare const translations: Translations;
|
8
8
|
export default translations;
|
@@ -3,6 +3,6 @@
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
5
|
|
6
|
-
import type { Translations } from 'ckeditor5';
|
6
|
+
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
7
7
|
declare const translations: Translations;
|
8
8
|
export default translations;
|
@@ -3,6 +3,6 @@
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
5
|
|
6
|
-
import type { Translations } from 'ckeditor5';
|
6
|
+
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
7
7
|
declare const translations: Translations;
|
8
8
|
export default translations;
|
@@ -3,6 +3,6 @@
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
5
|
|
6
|
-
import type { Translations } from 'ckeditor5';
|
6
|
+
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
7
7
|
declare const translations: Translations;
|
8
8
|
export default translations;
|
@@ -3,6 +3,6 @@
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
5
|
|
6
|
-
import type { Translations } from 'ckeditor5';
|
6
|
+
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
7
7
|
declare const translations: Translations;
|
8
8
|
export default translations;
|
@@ -3,6 +3,6 @@
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
5
|
|
6
|
-
import type { Translations } from 'ckeditor5';
|
6
|
+
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
7
7
|
declare const translations: Translations;
|
8
8
|
export default translations;
|
@@ -3,6 +3,6 @@
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
5
|
|
6
|
-
import type { Translations } from 'ckeditor5';
|
6
|
+
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
7
7
|
declare const translations: Translations;
|
8
8
|
export default translations;
|
@@ -3,6 +3,6 @@
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
5
|
|
6
|
-
import type { Translations } from 'ckeditor5';
|
6
|
+
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
7
7
|
declare const translations: Translations;
|
8
8
|
export default translations;
|
@@ -3,6 +3,6 @@
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
5
|
|
6
|
-
import type { Translations } from 'ckeditor5';
|
6
|
+
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
7
7
|
declare const translations: Translations;
|
8
8
|
export default translations;
|
@@ -3,6 +3,6 @@
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
5
|
|
6
|
-
import type { Translations } from 'ckeditor5';
|
6
|
+
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
7
7
|
declare const translations: Translations;
|
8
8
|
export default translations;
|
@@ -3,6 +3,6 @@
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
5
|
|
6
|
-
import type { Translations } from 'ckeditor5';
|
6
|
+
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
7
7
|
declare const translations: Translations;
|
8
8
|
export default translations;
|
@@ -3,6 +3,6 @@
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
5
|
|
6
|
-
import type { Translations } from 'ckeditor5';
|
6
|
+
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
7
7
|
declare const translations: Translations;
|
8
8
|
export default translations;
|
@@ -3,6 +3,6 @@
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
5
|
|
6
|
-
import type { Translations } from 'ckeditor5';
|
6
|
+
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
7
7
|
declare const translations: Translations;
|
8
8
|
export default translations;
|
@@ -3,6 +3,6 @@
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
5
|
|
6
|
-
import type { Translations } from 'ckeditor5';
|
6
|
+
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
7
7
|
declare const translations: Translations;
|
8
8
|
export default translations;
|
@@ -3,6 +3,6 @@
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
5
|
|
6
|
-
import type { Translations } from 'ckeditor5';
|
6
|
+
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
7
7
|
declare const translations: Translations;
|
8
8
|
export default translations;
|
@@ -3,6 +3,6 @@
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
5
|
|
6
|
-
import type { Translations } from 'ckeditor5';
|
6
|
+
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
7
7
|
declare const translations: Translations;
|
8
8
|
export default translations;
|
@@ -3,6 +3,6 @@
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
5
|
|
6
|
-
import type { Translations } from 'ckeditor5';
|
6
|
+
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
7
7
|
declare const translations: Translations;
|
8
8
|
export default translations;
|
@@ -3,6 +3,6 @@
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
5
|
|
6
|
-
import type { Translations } from 'ckeditor5';
|
6
|
+
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
7
7
|
declare const translations: Translations;
|
8
8
|
export default translations;
|
@@ -3,6 +3,6 @@
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
5
|
|
6
|
-
import type { Translations } from 'ckeditor5';
|
6
|
+
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
7
7
|
declare const translations: Translations;
|
8
8
|
export default translations;
|
@@ -3,6 +3,6 @@
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
5
|
|
6
|
-
import type { Translations } from 'ckeditor5';
|
6
|
+
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
7
7
|
declare const translations: Translations;
|
8
8
|
export default translations;
|
@@ -3,6 +3,6 @@
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
5
|
|
6
|
-
import type { Translations } from 'ckeditor5';
|
6
|
+
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
7
7
|
declare const translations: Translations;
|
8
8
|
export default translations;
|
@@ -3,6 +3,6 @@
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
5
|
|
6
|
-
import type { Translations } from 'ckeditor5';
|
6
|
+
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
7
7
|
declare const translations: Translations;
|
8
8
|
export default translations;
|
@@ -3,6 +3,6 @@
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
5
|
|
6
|
-
import type { Translations } from 'ckeditor5';
|
6
|
+
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
7
7
|
declare const translations: Translations;
|
8
8
|
export default translations;
|
@@ -3,6 +3,6 @@
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
5
|
|
6
|
-
import type { Translations } from 'ckeditor5';
|
6
|
+
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
7
7
|
declare const translations: Translations;
|
8
8
|
export default translations;
|
@@ -3,6 +3,6 @@
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
5
|
|
6
|
-
import type { Translations } from 'ckeditor5';
|
6
|
+
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
7
7
|
declare const translations: Translations;
|
8
8
|
export default translations;
|
@@ -3,6 +3,6 @@
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
5
|
|
6
|
-
import type { Translations } from 'ckeditor5';
|
6
|
+
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
7
7
|
declare const translations: Translations;
|
8
8
|
export default translations;
|
@@ -3,6 +3,6 @@
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
5
|
|
6
|
-
import type { Translations } from 'ckeditor5';
|
6
|
+
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
7
7
|
declare const translations: Translations;
|
8
8
|
export default translations;
|
@@ -3,6 +3,6 @@
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
5
|
|
6
|
-
import type { Translations } from 'ckeditor5';
|
6
|
+
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
7
7
|
declare const translations: Translations;
|
8
8
|
export default translations;
|
@@ -3,6 +3,6 @@
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
5
|
|
6
|
-
import type { Translations } from 'ckeditor5';
|
6
|
+
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
7
7
|
declare const translations: Translations;
|
8
8
|
export default translations;
|
@@ -3,6 +3,6 @@
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
5
|
|
6
|
-
import type { Translations } from 'ckeditor5';
|
6
|
+
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
7
7
|
declare const translations: Translations;
|
8
8
|
export default translations;
|
@@ -3,6 +3,6 @@
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
5
|
|
6
|
-
import type { Translations } from 'ckeditor5';
|
6
|
+
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
7
7
|
declare const translations: Translations;
|
8
8
|
export default translations;
|
@@ -3,6 +3,6 @@
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
5
|
|
6
|
-
import type { Translations } from 'ckeditor5';
|
6
|
+
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
7
7
|
declare const translations: Translations;
|
8
8
|
export default translations;
|
@@ -3,6 +3,6 @@
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
5
|
|
6
|
-
import type { Translations } from 'ckeditor5';
|
6
|
+
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
7
7
|
declare const translations: Translations;
|
8
8
|
export default translations;
|
@@ -3,6 +3,6 @@
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
5
|
|
6
|
-
import type { Translations } from 'ckeditor5';
|
6
|
+
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
7
7
|
declare const translations: Translations;
|
8
8
|
export default translations;
|
@@ -3,6 +3,6 @@
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
5
|
|
6
|
-
import type { Translations } from 'ckeditor5';
|
6
|
+
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
7
7
|
declare const translations: Translations;
|
8
8
|
export default translations;
|
@@ -3,6 +3,6 @@
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
5
|
|
6
|
-
import type { Translations } from 'ckeditor5';
|
6
|
+
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
7
7
|
declare const translations: Translations;
|
8
8
|
export default translations;
|
@@ -3,6 +3,6 @@
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
5
|
|
6
|
-
import type { Translations } from 'ckeditor5';
|
6
|
+
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
7
7
|
declare const translations: Translations;
|
8
8
|
export default translations;
|
@@ -3,6 +3,6 @@
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
5
|
|
6
|
-
import type { Translations } from 'ckeditor5';
|
6
|
+
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
7
7
|
declare const translations: Translations;
|
8
8
|
export default translations;
|
@@ -3,6 +3,6 @@
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
5
|
|
6
|
-
import type { Translations } from 'ckeditor5';
|
6
|
+
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
7
7
|
declare const translations: Translations;
|
8
8
|
export default translations;
|
@@ -3,6 +3,6 @@
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
5
|
|
6
|
-
import type { Translations } from 'ckeditor5';
|
6
|
+
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
7
7
|
declare const translations: Translations;
|
8
8
|
export default translations;
|
@@ -3,6 +3,6 @@
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
5
|
|
6
|
-
import type { Translations } from 'ckeditor5';
|
6
|
+
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
7
7
|
declare const translations: Translations;
|
8
8
|
export default translations;
|
@@ -3,6 +3,6 @@
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
5
|
|
6
|
-
import type { Translations } from 'ckeditor5';
|
6
|
+
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
7
7
|
declare const translations: Translations;
|
8
8
|
export default translations;
|
@@ -3,6 +3,6 @@
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
5
|
|
6
|
-
import type { Translations } from 'ckeditor5';
|
6
|
+
import type { Translations } from '@ckeditor/ckeditor5-utils';
|
7
7
|
declare const translations: Translations;
|
8
8
|
export default translations;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@ckeditor/ckeditor5-media-embed",
|
3
|
-
"version": "42.0.1",
|
3
|
+
"version": "42.0.2-alpha.1",
|
4
4
|
"description": "Media embed feature for CKEditor 5.",
|
5
5
|
"keywords": [
|
6
6
|
"ckeditor",
|
@@ -13,8 +13,15 @@
|
|
13
13
|
"type": "module",
|
14
14
|
"main": "src/index.js",
|
15
15
|
"dependencies": {
|
16
|
-
"@ckeditor/ckeditor5-
|
17
|
-
"ckeditor5": "42.0.1"
|
16
|
+
"@ckeditor/ckeditor5-clipboard": "42.0.2-alpha.1",
|
17
|
+
"@ckeditor/ckeditor5-core": "42.0.2-alpha.1",
|
18
|
+
"@ckeditor/ckeditor5-engine": "42.0.2-alpha.1",
|
19
|
+
"@ckeditor/ckeditor5-typing": "42.0.2-alpha.1",
|
20
|
+
"@ckeditor/ckeditor5-ui": "42.0.2-alpha.1",
|
21
|
+
"@ckeditor/ckeditor5-undo": "42.0.2-alpha.1",
|
22
|
+
"@ckeditor/ckeditor5-utils": "42.0.2-alpha.1",
|
23
|
+
"@ckeditor/ckeditor5-widget": "42.0.2-alpha.1",
|
24
|
+
"ckeditor5": "42.0.2-alpha.1"
|
18
25
|
},
|
19
26
|
"author": "CKSource (http://cksource.com/)",
|
20
27
|
"license": "GPL-2.0-or-later",
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|