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

@ckeditor/ckeditor5-code-block

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-code-block - npm Package Compare versions

Comparing version 25.0.0 to 26.0.0

build/code-block.js

43

package.json
{
"name": "@ckeditor/ckeditor5-code-block",
"version": "25.0.0",
"version": "26.0.0",
"description": "Code Block feature for CKEditor 5.",

@@ -12,19 +12,24 @@ "keywords": [

],
"main": "src/index.js",
"dependencies": {
"@ckeditor/ckeditor5-core": "^25.0.0",
"@ckeditor/ckeditor5-enter": "^25.0.0",
"@ckeditor/ckeditor5-ui": "^25.0.0",
"@ckeditor/ckeditor5-utils": "^25.0.0"
"ckeditor5": "^26.0.0"
},
"devDependencies": {
"@ckeditor/ckeditor5-alignment": "^25.0.0",
"@ckeditor/ckeditor5-autoformat": "^25.0.0",
"@ckeditor/ckeditor5-basic-styles": "^25.0.0",
"@ckeditor/ckeditor5-block-quote": "^25.0.0",
"@ckeditor/ckeditor5-editor-classic": "^25.0.0",
"@ckeditor/ckeditor5-engine": "^25.0.0",
"@ckeditor/ckeditor5-indent": "^25.0.0",
"@ckeditor/ckeditor5-markdown-gfm": "^25.0.0",
"@ckeditor/ckeditor5-paragraph": "^25.0.0",
"@ckeditor/ckeditor5-undo": "^25.0.0"
"@ckeditor/ckeditor5-alignment": "^26.0.0",
"@ckeditor/ckeditor5-autoformat": "^26.0.0",
"@ckeditor/ckeditor5-basic-styles": "^26.0.0",
"@ckeditor/ckeditor5-block-quote": "^26.0.0",
"@ckeditor/ckeditor5-core": "^26.0.0",
"@ckeditor/ckeditor5-dev-utils": "^24.0.0",
"@ckeditor/ckeditor5-enter": "^26.0.0",
"@ckeditor/ckeditor5-editor-classic": "^26.0.0",
"@ckeditor/ckeditor5-engine": "^26.0.0",
"@ckeditor/ckeditor5-indent": "^26.0.0",
"@ckeditor/ckeditor5-markdown-gfm": "^26.0.0",
"@ckeditor/ckeditor5-paragraph": "^26.0.0",
"@ckeditor/ckeditor5-theme-lark": "^26.0.0",
"@ckeditor/ckeditor5-undo": "^26.0.0",
"@ckeditor/ckeditor5-utils": "^26.0.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},

@@ -47,4 +52,8 @@ "engines": {

"src",
"theme"
]
"theme",
"build"
],
"scripts": {
"dll:build": "webpack"
}
}

@@ -10,3 +10,4 @@ /**

import Plugin from '@ckeditor/ckeditor5-core/src/plugin';
import { Plugin } from 'ckeditor5/src/core';
import CodeBlockEditing from './codeblockediting';

@@ -13,0 +14,0 @@ import CodeBlockUI from './codeblockui';

@@ -10,4 +10,5 @@ /**

import Command from '@ckeditor/ckeditor5-core/src/command';
import first from '@ckeditor/ckeditor5-utils/src/first';
import { Command } from 'ckeditor5/src/core';
import { first } from 'ckeditor5/src/utils';
import { getNormalizedAndLocalizedLanguageDefinitions } from './utils';

@@ -14,0 +15,0 @@

@@ -10,4 +10,5 @@ /**

import Plugin from '@ckeditor/ckeditor5-core/src/plugin';
import ShiftEnter from '@ckeditor/ckeditor5-enter/src/shiftenter';
import { Plugin } from 'ckeditor5/src/core';
import { ShiftEnter } from 'ckeditor5/src/enter';
import CodeBlockCommand from './codeblockcommand';

@@ -14,0 +15,0 @@ import IndentCodeBlockCommand from './indentcodeblockcommand';

@@ -10,7 +10,6 @@ /**

import Plugin from '@ckeditor/ckeditor5-core/src/plugin';
import Collection from '@ckeditor/ckeditor5-utils/src/collection';
import Model from '@ckeditor/ckeditor5-ui/src/model';
import SplitButtonView from '@ckeditor/ckeditor5-ui/src/dropdown/button/splitbuttonview';
import { createDropdown, addListToDropdown } from '@ckeditor/ckeditor5-ui/src/dropdown/utils';
import { Plugin } from 'ckeditor5/src/core';
import { Collection } from 'ckeditor5/src/utils';
import { Model, SplitButtonView, createDropdown, addListToDropdown } from 'ckeditor5/src/ui';
import { getNormalizedAndLocalizedLanguageDefinitions } from './utils';

@@ -32,2 +31,9 @@

*/
static get pluginName() {
return 'CodeBlockUI';
}
/**
* @inheritDoc
*/
init() {

@@ -34,0 +40,0 @@ const editor = this.editor;

@@ -10,3 +10,4 @@ /**

import Command from '@ckeditor/ckeditor5-core/src/command';
import { Command } from 'ckeditor5/src/core';
import {

@@ -13,0 +14,0 @@ getIndentOutdentPositions,

@@ -10,3 +10,4 @@ /**

import Command from '@ckeditor/ckeditor5-core/src/command';
import { Command } from 'ckeditor5/src/core';
import {

@@ -13,0 +14,0 @@ getLeadingWhiteSpaces,

@@ -10,3 +10,3 @@ /**

import first from '@ckeditor/ckeditor5-utils/src/first';
import { first } from 'ckeditor5/src/utils';

@@ -13,0 +13,0 @@ /**

Sorry, the diff of this file is not supported yet

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