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

@ckeditor/ckeditor5-font

Package Overview
Dependencies
Maintainers
1
Versions
700
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ckeditor/ckeditor5-font - npm Package Compare versions

Comparing version 19.0.0 to 19.0.1

lang/translations/ko.po

4

CHANGELOG.md
Changelog
=========
All changes in the package are documented in the main repository. See: https://github.com/ckeditor/ckeditor5/blob/master/CHANGELOG.md.
Changes for the past releases are available below.
## [19.0.0](https://github.com/ckeditor/ckeditor5-font/compare/v18.0.0...v19.0.0) (2020-04-29)

@@ -5,0 +9,0 @@

48

package.json
{
"name": "@ckeditor/ckeditor5-font",
"version": "19.0.0",
"version": "19.0.1",
"description": "Font feature for CKEditor 5.",

@@ -13,17 +13,11 @@ "keywords": [

"dependencies": {
"@ckeditor/ckeditor5-core": "^19.0.0",
"@ckeditor/ckeditor5-ui": "^19.0.0",
"@ckeditor/ckeditor5-utils": "^19.0.0"
"@ckeditor/ckeditor5-core": "^19.0.1",
"@ckeditor/ckeditor5-ui": "^19.0.1",
"@ckeditor/ckeditor5-utils": "^19.0.1"
},
"devDependencies": {
"@ckeditor/ckeditor5-editor-classic": "^19.0.0",
"@ckeditor/ckeditor5-engine": "^19.0.0",
"@ckeditor/ckeditor5-highlight": "^19.0.0",
"@ckeditor/ckeditor5-paragraph": "^19.0.0",
"eslint": "^5.5.0",
"eslint-config-ckeditor5": "^2.0.0",
"husky": "^1.3.1",
"lint-staged": "^7.0.0",
"stylelint": "^11.1.1",
"stylelint-config-ckeditor5": "^1.0.0"
"@ckeditor/ckeditor5-editor-classic": "^19.0.1",
"@ckeditor/ckeditor5-engine": "^19.0.1",
"@ckeditor/ckeditor5-highlight": "^19.0.1",
"@ckeditor/ckeditor5-paragraph": "^19.1.0"
},

@@ -40,3 +34,4 @@ "engines": {

"type": "git",
"url": "https://github.com/ckeditor/ckeditor5-font.git"
"url": "https://github.com/ckeditor/ckeditor5.git",
"directory": "packages/ckeditor5-font"
},

@@ -47,24 +42,3 @@ "files": [

"theme"
],
"scripts": {
"lint": "eslint --quiet '**/*.js'",
"stylelint": "stylelint --quiet --allow-empty-input 'theme/**/*.css' 'docs/**/*.css'"
},
"lint-staged": {
"**/*.js": [
"eslint --quiet"
],
"**/*.css": [
"stylelint --quiet --allow-empty-input"
]
},
"eslintIgnore": [
"src/lib/**",
"packages/**"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
]
}

@@ -5,5 +5,2 @@ CKEditor 5 font feature

[![npm version](https://badge.fury.io/js/%40ckeditor%2Fckeditor5-font.svg)](https://www.npmjs.com/package/@ckeditor/ckeditor5-font)
[![Build Status](https://travis-ci.org/ckeditor/ckeditor5-font.svg?branch=master)](https://travis-ci.org/ckeditor/ckeditor5-font)
[![Coverage Status](https://coveralls.io/repos/github/ckeditor/ckeditor5-font/badge.svg?branch=master)](https://coveralls.io/github/ckeditor/ckeditor5-font?branch=master)
<br>
[![Dependency Status](https://david-dm.org/ckeditor/ckeditor5-font/status.svg)](https://david-dm.org/ckeditor/ckeditor5-font)

@@ -10,0 +7,0 @@ [![devDependency Status](https://david-dm.org/ckeditor/ckeditor5-font/dev-status.svg)](https://david-dm.org/ckeditor/ckeditor5-font?type=dev)

@@ -117,7 +117,7 @@ /**

/**
* By default the plugin removes any `font-family` value that does not match to the plugin's configuration. It means if you paste a content
* with font families that the editor does not understand, the font-family attribute will be removed and the content will be displayed
* with the font.
* By default the plugin removes any `font-family` value that does not match the plugin's configuration. It means that if you paste content
* with font families that the editor does not understand, the `font-family` attribute will be removed and the content will be displayed
* with the default font.
*
* You can preserve pasted font family values by switching the option:
* You can preserve pasted font family values by switching the `supportAllValues` option to `true`:
*

@@ -128,5 +128,5 @@ * const fontSizeConfig = {

*
* Now, the font families, not specified in the editor's configuration, won't be removed when pasting the content.
* With this configuration font families not specified in the editor configuration will not be removed when pasting the content.
*
* @member {Boolean} module:font/fontfamily~FontFamilyConfig#supportAllValues
*/

@@ -85,4 +85,4 @@ /**

/**
* Those converters enable keeping any value found as `style="font-family: *"` as a value of an attribute on a text even
* if it isn't defined in the plugin configuration.
* These converters enable keeping any value found as `style="font-family: *"` as a value of an attribute on a text even
* if it is not defined in the plugin configuration.
*

@@ -89,0 +89,0 @@ * @private

@@ -135,7 +135,7 @@ /**

/**
* By default the plugin removes any `font-size` value that does not match to the plugin's configuration. It means if you paste a content
* with font sizes that the editor does not understand, the font-size attribute will be removed and the content will be displayed
* By default the plugin removes any `font-size` value that does not match the plugin's configuration. It means that if you paste content
* with font sizes that the editor does not understand, the `font-size` attribute will be removed and the content will be displayed
* with the default size.
*
* You can preserve pasted font size values by switching the option:
* You can preserve pasted font size values by switching the `supportAllValues` option to `true`:
*

@@ -149,5 +149,5 @@ * const fontSizeConfig = {

*
* Now, the font sizes, not specified in the editor's configuration, won't be removed when pasting the content.
* With this configuration font sizes not specified in the editor configuration will not be removed when pasting the content.
*
* @member {Boolean} module:font/fontsize~FontSizeConfig#supportAllValues
*/

@@ -89,4 +89,4 @@ /**

/**
* Those converters enable keeping any value found as `style="font-size: *"` as a value of an attribute on a text even
* if it isn't defined in the plugin configuration.
* These converters enable keeping any value found as `style="font-size: *"` as a value of an attribute on a text even
* if it is not defined in the plugin configuration.
*

@@ -93,0 +93,0 @@ * @param {Object} definition {@link module:engine/conversion/conversion~ConverterDefinition Converter definition} out of input data.

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