Release 5.12.0 (#1458)

This commit is contained in:
Rob Madole
2019-12-10 16:48:26 -06:00
committed by GitHub
parent b0c7df5337
commit 74c5b96eeb
1933 changed files with 93322 additions and 4394 deletions

View File

@@ -1,15 +1,31 @@
Font Awesome Pro License
------------------------
Font Awesome Free License
-------------------------
Font Awesome Pro is commercial software that requires a paid license. Full
Font Awesome Pro license: https://fontawesome.com/license.
Font Awesome Free is free, open source, and GPL friendly. You can use it for
commercial projects, open source projects, or really almost whatever you want.
Full Font Awesome Free license: https://fontawesome.com/license/free.
# Commercial License
The Font Awesome Pro commercial license allows you to pay for FA Pro once, own
it, and use it just about everywhere you'd like.
# Icons: CC BY 4.0 License (https://creativecommons.org/licenses/by/4.0/)
In the Font Awesome Free download, the CC BY 4.0 license applies to all icons
packaged as SVG and JS file types.
# Fonts: SIL OFL 1.1 License (https://scripts.sil.org/OFL)
In the Font Awesome Free download, the SIL OFL license applies to all icons
packaged as web and desktop font files.
# Code: MIT License (https://opensource.org/licenses/MIT)
In the Font Awesome Free download, the MIT license applies to all non-font and
non-icon files.
# Attribution
Attribution is not required by the Font Awesome Pro commercial license.
Attribution is required by MIT, SIL OFL, and CC BY licenses. Downloaded Font
Awesome Free files already contain embedded comments with sufficient
attribution, so you shouldn't need to do anything additional when using these
files normally.
We've kept attribution comments terse, so we ask that you do not actively work
to remove them from files, especially code. They're a great way for folks to
learn about Font Awesome.
# Brand Icons
All brand icons are trademarks of their respective owners. The use of these

View File

@@ -13,7 +13,8 @@ export function toHtml(abstractNodes: AbstractElement): string;
export function layer(
assembler: (
addLayerCallback: (layerToAdd: IconOrText | IconOrText[]) => void
) => void
) => void,
params?: LayerParams
): Layer;
export function icon(icon: IconName | IconLookup, params?: IconParams): Icon;
export type IconProp = IconName | [IconPrefix, IconName] | IconLookup;
@@ -92,6 +93,9 @@ export interface Params {
}
export interface CounterParams extends Params {
}
export interface LayerParams {
classes?: string | string[];
}
export interface TextParams extends Params {
transform?: Transform;
}

View File

@@ -1079,7 +1079,7 @@ var p = config.measurePerformance && PERFORMANCE && PERFORMANCE.mark && PERFORMA
mark: noop$1,
measure: noop$1
};
var preamble = "FA \"5.11.2\"";
var preamble = "FA \"5.12.0\"";
var begin = function begin(name) {
p.mark("".concat(preamble, " ").concat(name, " begins"));

View File

@@ -1085,7 +1085,7 @@
mark: noop$1,
measure: noop$1
};
var preamble = "FA \"5.11.2\"";
var preamble = "FA \"5.12.0\"";
var begin = function begin(name) {
p.mark("".concat(preamble, " ").concat(name, " begins"));

View File

@@ -47,14 +47,14 @@
"node": ">=6"
},
"dependencies": {
"@fortawesome/fontawesome-common-types": "^0.2.25"
"@fortawesome/fontawesome-common-types": "^0.2.26"
},
"version": "1.2.25",
"version": "1.2.26",
"name": "@fortawesome/fontawesome-svg-core",
"main": "index.js",
"module": "index.es.js",
"jsnext:main": "index.es.js",
"style": "styles.css",
"license": "UNLICENSED",
"license": "MIT",
"types": "./index.d.ts"
}