Socket
Socket
Sign inDemoInstall

@ckeditor/ckeditor5-enter

Package Overview
Dependencies
Maintainers
1
Versions
636
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ckeditor/ckeditor5-enter - npm Package Compare versions

Comparing version 38.2.0-alpha.1 to 39.0.0

9

package.json
{
"name": "@ckeditor/ckeditor5-enter",
"version": "38.2.0-alpha.1",
"version": "39.0.0",
"description": "Enter feature for CKEditor 5.",

@@ -14,7 +14,6 @@ "keywords": [

"main": "src/index.js",
"type": "module",
"dependencies": {
"@ckeditor/ckeditor5-core": "38.2.0-alpha.1",
"@ckeditor/ckeditor5-engine": "38.2.0-alpha.1",
"@ckeditor/ckeditor5-utils": "38.2.0-alpha.1"
"@ckeditor/ckeditor5-core": "39.0.0",
"@ckeditor/ckeditor5-engine": "39.0.0",
"@ckeditor/ckeditor5-utils": "39.0.0"
},

@@ -21,0 +20,0 @@ "engines": {

@@ -7,3 +7,2 @@ CKEditor 5 enter feature

[![Build Status](https://travis-ci.com/ckeditor/ckeditor5.svg?branch=master)](https://app.travis-ci.com/github/ckeditor/ckeditor5)
![Dependency Status](https://img.shields.io/librariesio/release/npm/@ckeditor/ckeditor5-enter)

@@ -10,0 +9,0 @@ This package implements the <kbd>Enter</kbd> and <kbd>Shift</kbd>+<kbd>Enter</kbd> (soft break) support for CKEditor 5.

@@ -5,3 +5,3 @@ /**

*/
import type { Enter, ShiftEnter, EnterCommand, ShiftEnterCommand } from './index.js';
import type { Enter, ShiftEnter, EnterCommand, ShiftEnterCommand } from './index';
declare module '@ckeditor/ckeditor5-core' {

@@ -8,0 +8,0 @@ interface PluginsMap {

@@ -9,4 +9,4 @@ /**

import { Plugin } from '@ckeditor/ckeditor5-core';
import EnterCommand from './entercommand.js';
import EnterObserver from './enterobserver.js';
import EnterCommand from './entercommand';
import EnterObserver from './enterobserver';
/**

@@ -13,0 +13,0 @@ * This plugin handles the <kbd>Enter</kbd> keystroke (hard line break) in the editor.

@@ -9,3 +9,3 @@ /**

import { Command } from '@ckeditor/ckeditor5-core';
import { getCopyOnEnterAttributes } from './utils.js';
import { getCopyOnEnterAttributes } from './utils';
/**

@@ -12,0 +12,0 @@ * Enter command used by the {@link module:enter/enter~Enter Enter feature} to handle the <kbd>Enter</kbd> keystroke.

@@ -8,7 +8,7 @@ /**

*/
export { default as Enter } from './enter.js';
export { default as ShiftEnter } from './shiftenter.js';
export type { ViewDocumentEnterEvent } from './enterobserver.js';
export type { default as EnterCommand, EnterCommandAfterExecuteEvent } from './entercommand.js';
export type { default as ShiftEnterCommand } from './shiftentercommand.js';
import './augmentation.js';
export { default as Enter } from './enter';
export { default as ShiftEnter } from './shiftenter';
export type { ViewDocumentEnterEvent } from './enterobserver';
export type { default as EnterCommand, EnterCommandAfterExecuteEvent } from './entercommand';
export type { default as ShiftEnterCommand } from './shiftentercommand';
import './augmentation';

@@ -8,4 +8,4 @@ /**

*/
export { default as Enter } from './enter.js';
export { default as ShiftEnter } from './shiftenter.js';
import './augmentation.js';
export { default as Enter } from './enter';
export { default as ShiftEnter } from './shiftenter';
import './augmentation';

@@ -8,4 +8,4 @@ /**

*/
import ShiftEnterCommand from './shiftentercommand.js';
import EnterObserver from './enterobserver.js';
import ShiftEnterCommand from './shiftentercommand';
import EnterObserver from './enterobserver';
import { Plugin } from '@ckeditor/ckeditor5-core';

@@ -12,0 +12,0 @@ /**

@@ -9,3 +9,3 @@ /**

import { Command } from '@ckeditor/ckeditor5-core';
import { getCopyOnEnterAttributes } from './utils.js';
import { getCopyOnEnterAttributes } from './utils';
/**

@@ -12,0 +12,0 @@ * ShiftEnter command. It is used by the {@link module:enter/shiftenter~ShiftEnter ShiftEnter feature} to handle

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