@ckeditor/ckeditor5-highlight 38.2.0-alpha.1 → 39.0.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/README.md +0 -1
- package/build/translations/sq.js +1 -1
- package/lang/translations/sq.po +1 -1
- package/package.json +2 -3
- package/src/augmentation.d.ts +1 -1
- package/src/highlight.d.ts +3 -3
- package/src/highlight.js +3 -3
- package/src/highlightcommand.d.ts +1 -1
- package/src/highlightcommand.js +1 -1
- package/src/highlightediting.d.ts +1 -1
- package/src/highlightediting.js +2 -2
- package/src/highlightui.d.ts +1 -1
- package/src/highlightui.js +2 -2
- package/src/index.d.ts +6 -6
- package/src/index.js +4 -4
package/README.md
CHANGED
@@ -4,7 +4,6 @@ CKEditor 5 highlight feature
|
|
4
4
|
[](https://www.npmjs.com/package/@ckeditor/ckeditor5-highlight)
|
5
5
|
[](https://coveralls.io/github/ckeditor/ckeditor5?branch=master)
|
6
6
|
[](https://app.travis-ci.com/github/ckeditor/ckeditor5)
|
7
|
-

|
8
7
|
|
9
8
|
This package implements text highlight support for CKEditor 5.
|
10
9
|
|
package/build/translations/sq.js
CHANGED
@@ -1 +1 @@
|
|
1
|
-
!function(
|
1
|
+
!function(i){const e=i.sq=i.sq||{};e.dictionary=Object.assign(e.dictionary||{},{"Blue marker":"Shënuesi kaltër","Green marker":"Shënuesi gjelbër","Green pen":"Lapsi gjelbër",Highlight:"Ngjyrimi","Pink marker":"Shënuesi rozë","Red pen":"Lapsi kuq","Remove highlight":"Largo ngjyrimet","Text highlight toolbar":"Shiriti i veglave të nënvizimit të tekstit","Yellow marker":"Shënuesi verdh"})}(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={}));
|
package/lang/translations/sq.po
CHANGED
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@ckeditor/ckeditor5-highlight",
|
3
|
-
"version": "
|
3
|
+
"version": "39.0.1",
|
4
4
|
"description": "Highlight feature for CKEditor 5.",
|
5
5
|
"keywords": [
|
6
6
|
"ckeditor",
|
@@ -11,9 +11,8 @@
|
|
11
11
|
"ckeditor5-dll"
|
12
12
|
],
|
13
13
|
"main": "src/index.js",
|
14
|
-
"type": "module",
|
15
14
|
"dependencies": {
|
16
|
-
"ckeditor5": "
|
15
|
+
"ckeditor5": "39.0.1"
|
17
16
|
},
|
18
17
|
"engines": {
|
19
18
|
"node": ">=16.0.0",
|
package/src/augmentation.d.ts
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
* @license Copyright (c) 2003-2023, 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
|
-
import type { Highlight, HighlightCommand, HighlightConfig, HighlightEditing, HighlightUI } from './index
|
5
|
+
import type { Highlight, HighlightCommand, HighlightConfig, HighlightEditing, HighlightUI } from './index';
|
6
6
|
declare module '@ckeditor/ckeditor5-core' {
|
7
7
|
interface EditorConfig {
|
8
8
|
/**
|
package/src/highlight.d.ts
CHANGED
@@ -5,9 +5,9 @@
|
|
5
5
|
/**
|
6
6
|
* @module highlight/highlight
|
7
7
|
*/
|
8
|
-
import { Plugin } from 'ckeditor5/src/core
|
9
|
-
import HighlightEditing from './highlightediting
|
10
|
-
import HighlightUI from './highlightui
|
8
|
+
import { Plugin } from 'ckeditor5/src/core';
|
9
|
+
import HighlightEditing from './highlightediting';
|
10
|
+
import HighlightUI from './highlightui';
|
11
11
|
/**
|
12
12
|
* The highlight plugin.
|
13
13
|
*
|
package/src/highlight.js
CHANGED
@@ -5,9 +5,9 @@
|
|
5
5
|
/**
|
6
6
|
* @module highlight/highlight
|
7
7
|
*/
|
8
|
-
import { Plugin } from 'ckeditor5/src/core
|
9
|
-
import HighlightEditing from './highlightediting
|
10
|
-
import HighlightUI from './highlightui
|
8
|
+
import { Plugin } from 'ckeditor5/src/core';
|
9
|
+
import HighlightEditing from './highlightediting';
|
10
|
+
import HighlightUI from './highlightui';
|
11
11
|
/**
|
12
12
|
* The highlight plugin.
|
13
13
|
*
|
@@ -5,7 +5,7 @@
|
|
5
5
|
/**
|
6
6
|
* @module highlight/highlightcommand
|
7
7
|
*/
|
8
|
-
import { Command } from 'ckeditor5/src/core
|
8
|
+
import { Command } from 'ckeditor5/src/core';
|
9
9
|
/**
|
10
10
|
* The highlight command. It is used by the {@link module:highlight/highlightediting~HighlightEditing highlight feature}
|
11
11
|
* to apply the text highlighting.
|
package/src/highlightcommand.js
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
/**
|
6
6
|
* @module highlight/highlightcommand
|
7
7
|
*/
|
8
|
-
import { Command } from 'ckeditor5/src/core
|
8
|
+
import { Command } from 'ckeditor5/src/core';
|
9
9
|
/**
|
10
10
|
* The highlight command. It is used by the {@link module:highlight/highlightediting~HighlightEditing highlight feature}
|
11
11
|
* to apply the text highlighting.
|
@@ -5,7 +5,7 @@
|
|
5
5
|
/**
|
6
6
|
* @module highlight/highlightediting
|
7
7
|
*/
|
8
|
-
import { Plugin, type Editor } from 'ckeditor5/src/core
|
8
|
+
import { Plugin, type Editor } from 'ckeditor5/src/core';
|
9
9
|
/**
|
10
10
|
* The highlight editing feature. It introduces the {@link module:highlight/highlightcommand~HighlightCommand command} and the `highlight`
|
11
11
|
* attribute in the {@link module:engine/model/model~Model model} which renders in the {@link module:engine/view/view view}
|
package/src/highlightediting.js
CHANGED
@@ -5,8 +5,8 @@
|
|
5
5
|
/**
|
6
6
|
* @module highlight/highlightediting
|
7
7
|
*/
|
8
|
-
import { Plugin } from 'ckeditor5/src/core
|
9
|
-
import HighlightCommand from './highlightcommand
|
8
|
+
import { Plugin } from 'ckeditor5/src/core';
|
9
|
+
import HighlightCommand from './highlightcommand';
|
10
10
|
/**
|
11
11
|
* The highlight editing feature. It introduces the {@link module:highlight/highlightcommand~HighlightCommand command} and the `highlight`
|
12
12
|
* attribute in the {@link module:engine/model/model~Model model} which renders in the {@link module:engine/view/view view}
|
package/src/highlightui.d.ts
CHANGED
package/src/highlightui.js
CHANGED
@@ -5,8 +5,8 @@
|
|
5
5
|
/**
|
6
6
|
* @module highlight/highlightui
|
7
7
|
*/
|
8
|
-
import { Plugin, icons } from 'ckeditor5/src/core
|
9
|
-
import { ButtonView, SplitButtonView, ToolbarSeparatorView, createDropdown, addToolbarToDropdown } from 'ckeditor5/src/ui
|
8
|
+
import { Plugin, icons } from 'ckeditor5/src/core';
|
9
|
+
import { ButtonView, SplitButtonView, ToolbarSeparatorView, createDropdown, addToolbarToDropdown } from 'ckeditor5/src/ui';
|
10
10
|
import markerIcon from './../theme/icons/marker.svg';
|
11
11
|
import penIcon from './../theme/icons/pen.svg';
|
12
12
|
import './../theme/highlight.css';
|
package/src/index.d.ts
CHANGED
@@ -5,9 +5,9 @@
|
|
5
5
|
/**
|
6
6
|
* @module highlight
|
7
7
|
*/
|
8
|
-
export { default as Highlight } from './highlight
|
9
|
-
export { default as HighlightEditing } from './highlightediting
|
10
|
-
export { default as HighlightUI } from './highlightui
|
11
|
-
export type { default as HighlightCommand } from './highlightcommand
|
12
|
-
export type { HighlightOption, HighlightConfig } from './highlightconfig
|
13
|
-
import './augmentation
|
8
|
+
export { default as Highlight } from './highlight';
|
9
|
+
export { default as HighlightEditing } from './highlightediting';
|
10
|
+
export { default as HighlightUI } from './highlightui';
|
11
|
+
export type { default as HighlightCommand } from './highlightcommand';
|
12
|
+
export type { HighlightOption, HighlightConfig } from './highlightconfig';
|
13
|
+
import './augmentation';
|
package/src/index.js
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
/**
|
6
6
|
* @module highlight
|
7
7
|
*/
|
8
|
-
export { default as Highlight } from './highlight
|
9
|
-
export { default as HighlightEditing } from './highlightediting
|
10
|
-
export { default as HighlightUI } from './highlightui
|
11
|
-
import './augmentation
|
8
|
+
export { default as Highlight } from './highlight';
|
9
|
+
export { default as HighlightEditing } from './highlightediting';
|
10
|
+
export { default as HighlightUI } from './highlightui';
|
11
|
+
import './augmentation';
|