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

@ckeditor/ckeditor5-basic-styles

Package Overview
Dependencies
Maintainers
1
Versions
706
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 11.1.3 to 11.1.4

lang/translations/en-gb.po

17

CHANGELOG.md
Changelog
=========
## [11.1.4](https://github.com/ckeditor/ckeditor5-basic-styles/compare/v11.1.3...v11.1.4) (2019-08-26)
### Bug fixes
* The UI buttons should be marked as toggleable for better assistive technologies support (see [ckeditor/ckeditor5#1403](https://github.com/ckeditor/ckeditor5/issues/1403)). ([b9f5867](https://github.com/ckeditor/ckeditor5-basic-styles/commit/b9f5867))
### Other changes
* The issue tracker for this package was moved to https://github.com/ckeditor/ckeditor5/issues. See [ckeditor/ckeditor5#1988](https://github.com/ckeditor/ckeditor5/issues/1988). ([8293319](https://github.com/ckeditor/ckeditor5-basic-styles/commit/8293319))
* Mark basic-styles attributes with 'copyOnEnter' property. ([0afbc20](https://github.com/ckeditor/ckeditor5-basic-styles/commit/0afbc20))
* Updated translations. ([52de3fe](https://github.com/ckeditor/ckeditor5-basic-styles/commit/52de3fe))
## [11.1.3](https://github.com/ckeditor/ckeditor5-basic-styles/compare/v11.1.2...v11.1.3) (2019-07-10)

@@ -20,3 +33,3 @@

* Updated translations. ([c9cdc44](https://github.com/ckeditor/ckeditor5-basic-styles/commit/c9cdc44))
* Updated translations. ([c9cdc44](https://github.com/ckeditor/ckeditor5-basic-styles/commit/c9cdc44))

@@ -33,3 +46,3 @@

* Optimized icons. ([018dda9](https://github.com/ckeditor/ckeditor5-basic-styles/commit/018dda9))
* Updated translations. ([4365251](https://github.com/ckeditor/ckeditor5-basic-styles/commit/4365251))
* Updated translations. ([4365251](https://github.com/ckeditor/ckeditor5-basic-styles/commit/4365251))

@@ -36,0 +49,0 @@

20

package.json
{
"name": "@ckeditor/ckeditor5-basic-styles",
"version": "11.1.3",
"version": "11.1.4",
"description": "Basic styles feature for CKEditor 5.",

@@ -13,12 +13,12 @@ "keywords": [

"dependencies": {
"@ckeditor/ckeditor5-core": "^12.2.1",
"@ckeditor/ckeditor5-ui": "^13.0.2"
"@ckeditor/ckeditor5-core": "^12.3.0",
"@ckeditor/ckeditor5-ui": "^14.0.0"
},
"devDependencies": {
"@ckeditor/ckeditor5-editor-classic": "^12.1.3",
"@ckeditor/ckeditor5-engine": "^13.2.1",
"@ckeditor/ckeditor5-essentials": "^11.0.4",
"@ckeditor/ckeditor5-paragraph": "^11.0.4",
"@ckeditor/ckeditor5-remove-format": "^10.0.3",
"@ckeditor/ckeditor5-utils": "^13.0.1",
"@ckeditor/ckeditor5-editor-classic": "^12.1.4",
"@ckeditor/ckeditor5-engine": "^14.0.0",
"@ckeditor/ckeditor5-essentials": "^11.0.5",
"@ckeditor/ckeditor5-paragraph": "^11.0.5",
"@ckeditor/ckeditor5-remove-format": "^10.0.4",
"@ckeditor/ckeditor5-utils": "^14.0.0",
"eslint": "^5.5.0",

@@ -36,3 +36,3 @@ "eslint-config-ckeditor5": "^2.0.0",

"homepage": "https://ckeditor.com/ckeditor-5",
"bugs": "https://github.com/ckeditor/ckeditor5-basic-styles/issues",
"bugs": "https://github.com/ckeditor/ckeditor5/issues",
"repository": {

@@ -39,0 +39,0 @@ "type": "git",

@@ -31,3 +31,6 @@ /**

editor.model.schema.extend( '$text', { allowAttributes: BOLD } );
editor.model.schema.setAttributeProperties( BOLD, { isFormatting: true } );
editor.model.schema.setAttributeProperties( BOLD, {
isFormatting: true,
copyOnEnter: true
} );

@@ -34,0 +37,0 @@ // Build converter from model to view for data and editing pipelines.

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

keystroke: 'CTRL+B',
tooltip: true
tooltip: true,
isToggleable: true
} );

@@ -42,0 +43,0 @@

@@ -32,3 +32,6 @@ /**

editor.model.schema.extend( '$text', { allowAttributes: CODE } );
editor.model.schema.setAttributeProperties( CODE, { isFormatting: true } );
editor.model.schema.setAttributeProperties( CODE, {
isFormatting: true,
copyOnEnter: true
} );

@@ -35,0 +38,0 @@ editor.conversion.attributeToElement( {

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

icon: codeIcon,
tooltip: true
tooltip: true,
isToggleable: true
} );

@@ -43,0 +44,0 @@

@@ -32,3 +32,6 @@ /**

editor.model.schema.extend( '$text', { allowAttributes: ITALIC } );
editor.model.schema.setAttributeProperties( ITALIC, { isFormatting: true } );
editor.model.schema.setAttributeProperties( ITALIC, {
isFormatting: true,
copyOnEnter: true
} );

@@ -35,0 +38,0 @@ editor.conversion.attributeToElement( {

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

keystroke: 'CTRL+I',
tooltip: true
tooltip: true,
isToggleable: true
} );

@@ -42,0 +43,0 @@

@@ -33,3 +33,6 @@ /**

editor.model.schema.extend( '$text', { allowAttributes: STRIKETHROUGH } );
editor.model.schema.setAttributeProperties( STRIKETHROUGH, { isFormatting: true } );
editor.model.schema.setAttributeProperties( STRIKETHROUGH, {
isFormatting: true,
copyOnEnter: true
} );

@@ -36,0 +39,0 @@ editor.conversion.attributeToElement( {

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

keystroke: 'CTRL+SHIFT+X',
tooltip: true
tooltip: true,
isToggleable: true
} );

@@ -42,0 +43,0 @@

@@ -31,3 +31,6 @@ /**

editor.model.schema.extend( '$text', { allowAttributes: SUBSCRIPT } );
editor.model.schema.setAttributeProperties( SUBSCRIPT, { isFormatting: true } );
editor.model.schema.setAttributeProperties( SUBSCRIPT, {
isFormatting: true,
copyOnEnter: true
} );

@@ -34,0 +37,0 @@ // Build converter from model to view for data and editing pipelines.

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

icon: subscriptIcon,
tooltip: true
tooltip: true,
isToggleable: true
} );

@@ -41,0 +42,0 @@

@@ -31,3 +31,6 @@ /**

editor.model.schema.extend( '$text', { allowAttributes: SUPERSCRIPT } );
editor.model.schema.setAttributeProperties( SUPERSCRIPT, { isFormatting: true } );
editor.model.schema.setAttributeProperties( SUPERSCRIPT, {
isFormatting: true,
copyOnEnter: true
} );

@@ -34,0 +37,0 @@ // Build converter from model to view for data and editing pipelines.

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

icon: superscriptIcon,
tooltip: true
tooltip: true,
isToggleable: true
} );

@@ -41,0 +42,0 @@

@@ -32,3 +32,6 @@ /**

editor.model.schema.extend( '$text', { allowAttributes: UNDERLINE } );
editor.model.schema.setAttributeProperties( UNDERLINE, { isFormatting: true } );
editor.model.schema.setAttributeProperties( UNDERLINE, {
isFormatting: true,
copyOnEnter: true
} );

@@ -35,0 +38,0 @@ editor.conversion.attributeToElement( {

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

keystroke: 'CTRL+U',
tooltip: true
tooltip: true,
isToggleable: true
} );

@@ -42,0 +43,0 @@

Sorry, the diff of this file is not supported yet

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