New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@ckeditor/ckeditor5-basic-styles

Package Overview
Dependencies
Maintainers
1
Versions
824
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ckeditor/ckeditor5-basic-styles - npm Package Compare versions

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

src/augmentation.d.ts

24

package.json
{
"name": "@ckeditor/ckeditor5-basic-styles",
"version": "37.0.0-alpha.0",
"version": "37.0.0-alpha.1",
"description": "Basic styles feature for CKEditor 5.",

@@ -15,14 +15,14 @@ "keywords": [

"dependencies": {
"ckeditor5": "^37.0.0-alpha.0"
"ckeditor5": "^37.0.0-alpha.1"
},
"devDependencies": {
"@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-essentials": "^37.0.0-alpha.0",
"@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.0",
"@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.0",
"@ckeditor/ckeditor5-ui": "^37.0.0-alpha.0",
"@ckeditor/ckeditor5-utils": "^37.0.0-alpha.0",
"@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-essentials": "^37.0.0-alpha.1",
"@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.1",
"@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.1",
"@ckeditor/ckeditor5-ui": "^37.0.0-alpha.1",
"@ckeditor/ckeditor5-utils": "^37.0.0-alpha.1",
"typescript": "^4.8.4",

@@ -56,3 +56,3 @@ "webpack": "^5.58.1",

"dll:build": "webpack",
"build": "tsc -p ./tsconfig.release.json",
"build": "tsc -p ./tsconfig.json",
"postversion": "npm run build"

@@ -59,0 +59,0 @@ },

@@ -75,12 +75,1 @@ /**

}
declare module '@ckeditor/ckeditor5-core' {
interface CommandsMap {
bold: AttributeCommand;
code: AttributeCommand;
italic: AttributeCommand;
strikethrough: AttributeCommand;
subscript: AttributeCommand;
superscript: AttributeCommand;
underline: AttributeCommand;
}
}

@@ -28,6 +28,1 @@ /**

}
declare module '@ckeditor/ckeditor5-core' {
interface PluginsMap {
[Bold.pluginName]: Bold;
}
}

@@ -25,6 +25,1 @@ /**

}
declare module '@ckeditor/ckeditor5-core' {
interface PluginsMap {
[BoldEditing.pluginName]: BoldEditing;
}
}

@@ -22,6 +22,1 @@ /**

}
declare module '@ckeditor/ckeditor5-core' {
interface PluginsMap {
[BoldUI.pluginName]: BoldUI;
}
}

@@ -29,6 +29,1 @@ /**

}
declare module '@ckeditor/ckeditor5-core' {
interface PluginsMap {
[Code.pluginName]: Code;
}
}

@@ -29,6 +29,1 @@ /**

}
declare module '@ckeditor/ckeditor5-core' {
interface PluginsMap {
[CodeEditing.pluginName]: CodeEditing;
}
}

@@ -23,6 +23,1 @@ /**

}
declare module '@ckeditor/ckeditor5-core' {
interface PluginsMap {
[CodeUI.pluginName]: CodeUI;
}
}

@@ -29,1 +29,3 @@ /**

export { default as UnderlineUI } from './underline/underlineui';
export type { default as AttributeCommand } from './attributecommand';
import './augmentation';

@@ -29,1 +29,2 @@ /**

export { default as UnderlineUI } from './underline/underlineui';
import './augmentation';

@@ -28,6 +28,1 @@ /**

}
declare module '@ckeditor/ckeditor5-core' {
interface PluginsMap {
[Italic.pluginName]: Italic;
}
}

@@ -25,6 +25,1 @@ /**

}
declare module '@ckeditor/ckeditor5-core' {
interface PluginsMap {
[ItalicEditing.pluginName]: ItalicEditing;
}
}

@@ -22,6 +22,1 @@ /**

}
declare module '@ckeditor/ckeditor5-core' {
interface PluginsMap {
[ItalicUI.pluginName]: ItalicUI;
}
}

@@ -28,6 +28,1 @@ /**

}
declare module '@ckeditor/ckeditor5-core' {
interface PluginsMap {
[Strikethrough.pluginName]: Strikethrough;
}
}

@@ -26,6 +26,1 @@ /**

}
declare module '@ckeditor/ckeditor5-core' {
interface PluginsMap {
[StrikethroughEditing.pluginName]: StrikethroughEditing;
}
}

@@ -22,6 +22,1 @@ /**

}
declare module '@ckeditor/ckeditor5-core' {
interface PluginsMap {
[StrikethroughUI.pluginName]: StrikethroughUI;
}
}

@@ -25,6 +25,1 @@ /**

}
declare module '@ckeditor/ckeditor5-core' {
interface PluginsMap {
[Subscript.pluginName]: Subscript;
}
}

@@ -25,6 +25,1 @@ /**

}
declare module '@ckeditor/ckeditor5-core' {
interface PluginsMap {
[SubscriptEditing.pluginName]: SubscriptEditing;
}
}

@@ -22,6 +22,1 @@ /**

}
declare module '@ckeditor/ckeditor5-core' {
interface PluginsMap {
[SubscriptUI.pluginName]: SubscriptUI;
}
}

@@ -25,6 +25,1 @@ /**

}
declare module '@ckeditor/ckeditor5-core' {
interface PluginsMap {
[Superscript.pluginName]: Superscript;
}
}

@@ -25,6 +25,1 @@ /**

}
declare module '@ckeditor/ckeditor5-core' {
interface PluginsMap {
[SuperscriptEditing.pluginName]: SuperscriptEditing;
}
}

@@ -22,6 +22,1 @@ /**

}
declare module '@ckeditor/ckeditor5-core' {
interface PluginsMap {
[SuperscriptUI.pluginName]: SuperscriptUI;
}
}

@@ -28,6 +28,1 @@ /**

}
declare module '@ckeditor/ckeditor5-core' {
interface PluginsMap {
[Underline.pluginName]: Underline;
}
}

@@ -25,6 +25,1 @@ /**

}
declare module '@ckeditor/ckeditor5-core' {
interface PluginsMap {
[UnderlineEditing.pluginName]: UnderlineEditing;
}
}

@@ -22,6 +22,1 @@ /**

}
declare module '@ckeditor/ckeditor5-core' {
interface PluginsMap {
[UnderlineUI.pluginName]: UnderlineUI;
}
}
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