Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@ckeditor/ckeditor5-restricted-editing

Package Overview
Dependencies
Maintainers
1
Versions
686
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ckeditor/ckeditor5-restricted-editing - npm Package Compare versions

Comparing version 37.0.0-alpha.0 to 37.0.0-alpha.1

src/augmentation.d.ts

36

package.json
{
"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;
}
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc