@ckeditor/ckeditor5-highlight
Advanced tools
Comparing version 37.0.0-alpha.0 to 37.0.0-alpha.1
{ | ||
"name": "@ckeditor/ckeditor5-highlight", | ||
"version": "37.0.0-alpha.0", | ||
"version": "37.0.0-alpha.1", | ||
"description": "Highlight feature for CKEditor 5.", | ||
@@ -15,18 +15,18 @@ "keywords": [ | ||
"dependencies": { | ||
"ckeditor5": "^37.0.0-alpha.0" | ||
"ckeditor5": "^37.0.0-alpha.1" | ||
}, | ||
"devDependencies": { | ||
"@ckeditor/ckeditor5-block-quote": "^37.0.0-alpha.0", | ||
"@ckeditor/ckeditor5-core": "^37.0.0-alpha.0", | ||
"@ckeditor/ckeditor5-dev-utils": "^34.0.0", | ||
"@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.0", | ||
"@ckeditor/ckeditor5-engine": "^37.0.0-alpha.0", | ||
"@ckeditor/ckeditor5-enter": "^37.0.0-alpha.0", | ||
"@ckeditor/ckeditor5-heading": "^37.0.0-alpha.0", | ||
"@ckeditor/ckeditor5-image": "^37.0.0-alpha.0", | ||
"@ckeditor/ckeditor5-list": "^37.0.0-alpha.0", | ||
"@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.0", | ||
"@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.0", | ||
"@ckeditor/ckeditor5-typing": "^37.0.0-alpha.0", | ||
"@ckeditor/ckeditor5-utils": "^37.0.0-alpha.0", | ||
"@ckeditor/ckeditor5-block-quote": "^37.0.0-alpha.1", | ||
"@ckeditor/ckeditor5-core": "^37.0.0-alpha.1", | ||
"@ckeditor/ckeditor5-dev-utils": "^35.0.0", | ||
"@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.1", | ||
"@ckeditor/ckeditor5-engine": "^37.0.0-alpha.1", | ||
"@ckeditor/ckeditor5-enter": "^37.0.0-alpha.1", | ||
"@ckeditor/ckeditor5-heading": "^37.0.0-alpha.1", | ||
"@ckeditor/ckeditor5-image": "^37.0.0-alpha.1", | ||
"@ckeditor/ckeditor5-list": "^37.0.0-alpha.1", | ||
"@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.1", | ||
"@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.1", | ||
"@ckeditor/ckeditor5-typing": "^37.0.0-alpha.1", | ||
"@ckeditor/ckeditor5-utils": "^37.0.0-alpha.1", | ||
"typescript": "^4.8.4", | ||
@@ -60,3 +60,3 @@ "webpack": "^5.58.1", | ||
"dll:build": "webpack", | ||
"build": "tsc -p ./tsconfig.release.json", | ||
"build": "tsc -p ./tsconfig.json", | ||
"postversion": "npm run build" | ||
@@ -63,0 +63,0 @@ }, |
@@ -27,6 +27,1 @@ /** | ||
} | ||
declare module '@ckeditor/ckeditor5-core' { | ||
interface PluginsMap { | ||
[Highlight.pluginName]: Highlight; | ||
} | ||
} |
@@ -46,6 +46,1 @@ /** | ||
} | ||
declare module '@ckeditor/ckeditor5-core' { | ||
interface CommandsMap { | ||
highlight: HighlightCommand; | ||
} | ||
} |
@@ -172,11 +172,1 @@ /** | ||
} | ||
declare module '@ckeditor/ckeditor5-core' { | ||
interface EditorConfig { | ||
/** | ||
* The configuration of the {@link module:highlight/highlight~Highlight} feature. | ||
* | ||
* Read more in {@link module:highlight/highlightconfig~HighlightConfig}. | ||
*/ | ||
highlight?: HighlightConfig; | ||
} | ||
} |
@@ -29,6 +29,1 @@ /** | ||
} | ||
declare module '@ckeditor/ckeditor5-core' { | ||
interface PluginsMap { | ||
[HighlightEditing.pluginName]: HighlightEditing; | ||
} | ||
} |
@@ -74,6 +74,1 @@ /** | ||
} | ||
declare module '@ckeditor/ckeditor5-core' { | ||
interface PluginsMap { | ||
[HighlightUI.pluginName]: HighlightUI; | ||
} | ||
} |
@@ -11,1 +11,4 @@ /** | ||
export { default as HighlightUI } from './highlightui'; | ||
export type { default as HighlightCommand } from './highlightcommand'; | ||
export type { HighlightOption, HighlightConfig } from './highlightconfig'; | ||
import './augmentation'; |
@@ -11,1 +11,2 @@ /** | ||
export { default as HighlightUI } from './highlightui'; | ||
import './augmentation'; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
189476
135
932
Updatedckeditor5@^37.0.0-alpha.1