@ckeditor/ckeditor5-highlight 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.
Files changed (67) hide show
  1. package/dist/index-content.css +27 -31
  2. package/dist/index-editor.css +8 -0
  3. package/dist/translations/ar.d.ts +1 -1
  4. package/dist/translations/az.d.ts +1 -1
  5. package/dist/translations/bg.d.ts +1 -1
  6. package/dist/translations/bn.d.ts +1 -1
  7. package/dist/translations/ca.d.ts +1 -1
  8. package/dist/translations/cs.d.ts +1 -1
  9. package/dist/translations/da.d.ts +1 -1
  10. package/dist/translations/de-ch.d.ts +1 -1
  11. package/dist/translations/de.d.ts +1 -1
  12. package/dist/translations/el.d.ts +1 -1
  13. package/dist/translations/en-au.d.ts +1 -1
  14. package/dist/translations/en-gb.d.ts +1 -1
  15. package/dist/translations/en.d.ts +1 -1
  16. package/dist/translations/es-co.d.ts +1 -1
  17. package/dist/translations/es.d.ts +1 -1
  18. package/dist/translations/et.d.ts +1 -1
  19. package/dist/translations/fa.d.ts +1 -1
  20. package/dist/translations/fi.d.ts +1 -1
  21. package/dist/translations/fr.d.ts +1 -1
  22. package/dist/translations/gl.d.ts +1 -1
  23. package/dist/translations/he.d.ts +1 -1
  24. package/dist/translations/hi.d.ts +1 -1
  25. package/dist/translations/hr.d.ts +1 -1
  26. package/dist/translations/hu.d.ts +1 -1
  27. package/dist/translations/id.d.ts +1 -1
  28. package/dist/translations/it.d.ts +1 -1
  29. package/dist/translations/ja.d.ts +1 -1
  30. package/dist/translations/jv.d.ts +1 -1
  31. package/dist/translations/ko.d.ts +1 -1
  32. package/dist/translations/ku.d.ts +1 -1
  33. package/dist/translations/lt.d.ts +1 -1
  34. package/dist/translations/lv.d.ts +1 -1
  35. package/dist/translations/ms.d.ts +1 -1
  36. package/dist/translations/nb.d.ts +1 -1
  37. package/dist/translations/ne.d.ts +1 -1
  38. package/dist/translations/nl.d.ts +1 -1
  39. package/dist/translations/no.d.ts +1 -1
  40. package/dist/translations/pl.d.ts +1 -1
  41. package/dist/translations/pt-br.d.ts +1 -1
  42. package/dist/translations/pt.d.ts +1 -1
  43. package/dist/translations/ro.d.ts +1 -1
  44. package/dist/translations/ru.d.ts +1 -1
  45. package/dist/translations/sk.d.ts +1 -1
  46. package/dist/translations/sl.d.ts +1 -1
  47. package/dist/translations/sq.d.ts +1 -1
  48. package/dist/translations/sr-latn.d.ts +1 -1
  49. package/dist/translations/sr.d.ts +1 -1
  50. package/dist/translations/sv.d.ts +1 -1
  51. package/dist/translations/th.d.ts +1 -1
  52. package/dist/translations/tk.d.ts +1 -1
  53. package/dist/translations/tr.d.ts +1 -1
  54. package/dist/translations/uk.d.ts +1 -1
  55. package/dist/translations/ur.d.ts +1 -1
  56. package/dist/translations/uz.d.ts +1 -1
  57. package/dist/translations/vi.d.ts +1 -1
  58. package/dist/translations/zh-cn.d.ts +1 -1
  59. package/dist/translations/zh.d.ts +1 -1
  60. package/package.json +4 -2
  61. /package/dist/{types/augmentation.d.ts → augmentation.d.ts} +0 -0
  62. /package/dist/{types/highlight.d.ts → highlight.d.ts} +0 -0
  63. /package/dist/{types/highlightcommand.d.ts → highlightcommand.d.ts} +0 -0
  64. /package/dist/{types/highlightconfig.d.ts → highlightconfig.d.ts} +0 -0
  65. /package/dist/{types/highlightediting.d.ts → highlightediting.d.ts} +0 -0
  66. /package/dist/{types/highlightui.d.ts → highlightui.d.ts} +0 -0
  67. /package/dist/{types/index.d.ts → index.d.ts} +0 -0
@@ -2,37 +2,33 @@
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
- :root {
6
- --ck-highlight-marker-yellow: hsl(60, 97%, 73%);
7
- --ck-highlight-marker-green: hsl(120, 93%, 68%);
8
- --ck-highlight-marker-pink: hsl(345, 96%, 73%);
9
- --ck-highlight-marker-blue: hsl(201, 97%, 72%);
10
- --ck-highlight-pen-red: hsl(0, 85%, 49%);
11
- --ck-highlight-pen-green: hsl(112, 100%, 27%);
5
+ :root{
6
+ --ck-highlight-marker-yellow:hsl(60, 97%, 73%);
7
+ --ck-highlight-marker-green:hsl(120, 93%, 68%);
8
+ --ck-highlight-marker-pink:hsl(345, 96%, 73%);
9
+ --ck-highlight-marker-blue:hsl(201, 97%, 72%);
10
+ --ck-highlight-pen-red:hsl(0, 85%, 49%);
11
+ --ck-highlight-pen-green:hsl(112, 100%, 27%);
12
12
  }
13
- .ck-content .marker-yellow {
14
- background-color: var(--ck-highlight-marker-yellow);
15
13
 
16
- }
17
- .ck-content .marker-green {
18
- background-color: var(--ck-highlight-marker-green);
19
-
20
- }
21
- .ck-content .marker-pink {
22
- background-color: var(--ck-highlight-marker-pink);
23
-
24
- }
25
- .ck-content .marker-blue {
26
- background-color: var(--ck-highlight-marker-blue);
14
+ .ck-content .marker-yellow{
15
+ background-color:var(--ck-highlight-marker-yellow);
16
+ }
17
+ .ck-content .marker-green{
18
+ background-color:var(--ck-highlight-marker-green);
19
+ }
20
+ .ck-content .marker-pink{
21
+ background-color:var(--ck-highlight-marker-pink);
22
+ }
23
+ .ck-content .marker-blue{
24
+ background-color:var(--ck-highlight-marker-blue);
25
+ }
27
26
 
28
- }
29
- .ck-content .pen-red {
30
- color: var(--ck-highlight-pen-red);
31
- background-color: transparent;
32
-
33
- }
34
- .ck-content .pen-green {
35
- color: var(--ck-highlight-pen-green);
36
- background-color: transparent;
37
-
38
- }
27
+ .ck-content .pen-red{
28
+ color:var(--ck-highlight-pen-red);
29
+ background-color:transparent;
30
+ }
31
+ .ck-content .pen-green{
32
+ color:var(--ck-highlight-pen-green);
33
+ background-color:transparent;
34
+ }
@@ -2,3 +2,11 @@
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
+ :root{
6
+ --ck-highlight-marker-yellow:hsl(60, 97%, 73%);
7
+ --ck-highlight-marker-green:hsl(120, 93%, 68%);
8
+ --ck-highlight-marker-pink:hsl(345, 96%, 73%);
9
+ --ck-highlight-marker-blue:hsl(201, 97%, 72%);
10
+ --ck-highlight-pen-red:hsl(0, 85%, 49%);
11
+ --ck-highlight-pen-green:hsl(112, 100%, 27%);
12
+ }
@@ -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;
@@ -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-highlight",
3
- "version": "42.0.1",
3
+ "version": "42.0.2-alpha.1",
4
4
  "description": "Highlight feature for CKEditor 5.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -13,7 +13,9 @@
13
13
  "type": "module",
14
14
  "main": "src/index.js",
15
15
  "dependencies": {
16
- "ckeditor5": "42.0.1"
16
+ "@ckeditor/ckeditor5-core": "42.0.2-alpha.1",
17
+ "@ckeditor/ckeditor5-ui": "42.0.2-alpha.1",
18
+ "ckeditor5": "42.0.2-alpha.1"
17
19
  },
18
20
  "author": "CKSource (http://cksource.com/)",
19
21
  "license": "GPL-2.0-or-later",
File without changes
File without changes