@ckeditor/ckeditor5-restricted-editing
Advanced tools
Comparing version 37.0.0-alpha.0 to 37.0.0-alpha.1
{ | ||
"name": "@ckeditor/ckeditor5-restricted-editing", | ||
"version": "37.0.0-alpha.0", | ||
"version": "37.0.0-alpha.1", | ||
"description": "Restricted editing feature for CKEditor 5 editors.", | ||
@@ -14,20 +14,20 @@ "keywords": [ | ||
"dependencies": { | ||
"ckeditor5": "^37.0.0-alpha.0" | ||
"ckeditor5": "^37.0.0-alpha.1" | ||
}, | ||
"devDependencies": { | ||
"@ckeditor/ckeditor5-basic-styles": "^37.0.0-alpha.0", | ||
"@ckeditor/ckeditor5-block-quote": "^37.0.0-alpha.0", | ||
"@ckeditor/ckeditor5-clipboard": "^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-link": "^37.0.0-alpha.0", | ||
"@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.0", | ||
"@ckeditor/ckeditor5-table": "^37.0.0-alpha.0", | ||
"@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.0", | ||
"@ckeditor/ckeditor5-typing": "^37.0.0-alpha.0", | ||
"@ckeditor/ckeditor5-ui": "^37.0.0-alpha.0", | ||
"@ckeditor/ckeditor5-undo": "^37.0.0-alpha.0", | ||
"@ckeditor/ckeditor5-utils": "^37.0.0-alpha.0", | ||
"@ckeditor/ckeditor5-basic-styles": "^37.0.0-alpha.1", | ||
"@ckeditor/ckeditor5-block-quote": "^37.0.0-alpha.1", | ||
"@ckeditor/ckeditor5-clipboard": "^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-link": "^37.0.0-alpha.1", | ||
"@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.1", | ||
"@ckeditor/ckeditor5-table": "^37.0.0-alpha.1", | ||
"@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.1", | ||
"@ckeditor/ckeditor5-typing": "^37.0.0-alpha.1", | ||
"@ckeditor/ckeditor5-ui": "^37.0.0-alpha.1", | ||
"@ckeditor/ckeditor5-undo": "^37.0.0-alpha.1", | ||
"@ckeditor/ckeditor5-utils": "^37.0.0-alpha.1", | ||
"typescript": "^4.8.4", | ||
@@ -61,3 +61,3 @@ "webpack": "^5.58.1", | ||
"dll:build": "webpack", | ||
"build": "tsc -p ./tsconfig.release.json", | ||
"build": "tsc -p ./tsconfig.json", | ||
"postversion": "npm run build" | ||
@@ -64,0 +64,0 @@ }, |
@@ -14,1 +14,5 @@ /** | ||
export { default as StandardEditingModeUI } from './standardeditingmodeui'; | ||
export type { RestrictedEditingConfig } from './restrictededitingconfig'; | ||
export type { default as RestrictedEditingExceptionCommand } from './restrictededitingexceptioncommand'; | ||
export type { default as RestrictedEditingModeNavigationCommand } from './restrictededitingmodenavigationcommand'; | ||
import './augmentation'; |
@@ -14,1 +14,2 @@ /** | ||
export { default as StandardEditingModeUI } from './standardeditingmodeui'; | ||
import './augmentation'; |
@@ -45,3 +45,3 @@ /** | ||
* To make a command always enabled (also outside non-restricted areas) use | ||
* {@link module:restricted-editing/restrictededitingconfig~RestrictedEditingModeEditing#enableCommand} method. | ||
* {@link module:restricted-editing/restrictededitingmodeediting~RestrictedEditingModeEditing#enableCommand} method. | ||
*/ | ||
@@ -62,12 +62,1 @@ allowedCommands: Array<string>; | ||
} | ||
declare module '@ckeditor/ckeditor5-core' { | ||
/** | ||
* The configuration of the restricted editing mode feature. Introduced by the | ||
* {@link module:restricted-editing/restrictededitingmode~RestrictedEditingMode} feature. | ||
* | ||
* Read more in {@link module:restricted-editing/restrictededitingmode~RestrictedEditingModeConfig}. | ||
*/ | ||
interface EditorConfig { | ||
restrictedEditing?: RestrictedEditingConfig; | ||
} | ||
} |
@@ -31,6 +31,1 @@ /** | ||
} | ||
declare module '@ckeditor/ckeditor5-core' { | ||
interface CommandsMap { | ||
restrictedEditingException: RestrictedEditingExceptionCommand; | ||
} | ||
} |
@@ -28,6 +28,1 @@ /** | ||
} | ||
declare module '@ckeditor/ckeditor5-core' { | ||
interface PluginsMap { | ||
[RestrictedEditingMode.pluginName]: RestrictedEditingMode; | ||
} | ||
} |
@@ -84,6 +84,1 @@ /** | ||
} | ||
declare module '@ckeditor/ckeditor5-core' { | ||
interface PluginsMap { | ||
[RestrictedEditingModeEditing.pluginName]: RestrictedEditingModeEditing; | ||
} | ||
} |
@@ -43,7 +43,1 @@ /** | ||
export type RestrictedEditingModeNavigationDirection = 'forward' | 'backward'; | ||
declare module '@ckeditor/ckeditor5-core' { | ||
interface CommandsMap { | ||
goToPreviousRestrictedEditingException: RestrictedEditingModeNavigationCommand; | ||
goToNextRestrictedEditingException: RestrictedEditingModeNavigationCommand; | ||
} | ||
} |
@@ -33,6 +33,1 @@ /** | ||
} | ||
declare module '@ckeditor/ckeditor5-core' { | ||
interface PluginsMap { | ||
[RestrictedEditingModeUI.pluginName]: RestrictedEditingModeUI; | ||
} | ||
} |
@@ -25,6 +25,1 @@ /** | ||
} | ||
declare module '@ckeditor/ckeditor5-core' { | ||
interface PluginsMap { | ||
[StandardEditingMode.pluginName]: StandardEditingMode; | ||
} | ||
} |
@@ -26,6 +26,1 @@ /** | ||
} | ||
declare module '@ckeditor/ckeditor5-core' { | ||
interface PluginsMap { | ||
[StandardEditingModeEditing.pluginName]: StandardEditingModeEditing; | ||
} | ||
} |
@@ -24,6 +24,1 @@ /** | ||
} | ||
declare module '@ckeditor/ckeditor5-core' { | ||
interface PluginsMap { | ||
[StandardEditingModeUI.pluginName]: StandardEditingModeUI; | ||
} | ||
} |
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
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
194422
137
0
1526
Updatedckeditor5@^37.0.0-alpha.1