Skip to content

Commit db8a567

Browse files
committed
Release 2.0.2
1 parent 6298d18 commit db8a567

File tree

4 files changed

+16
-3
lines changed

4 files changed

+16
-3
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,13 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
1010

1111
---
1212

13+
## [2.0.2](https://github.com/FortAwesome/vue-fontawesome/releases/tag/2.0.2) - 2020-12-17
14+
15+
### Fixed
16+
* Bumping version to fix a failed release for 2.0.1
17+
18+
---
19+
1320
## [2.0.1](https://github.com/FortAwesome/vue-fontawesome/releases/tag/2.0.1) - 2020-12-17
1421

1522
### Added

index.es.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -328,6 +328,10 @@ function addStaticClass(to, what) {
328328
}
329329

330330
function normalizeIconArgs(icon$$1) {
331+
if (parse.icon) {
332+
return parse.icon(icon$$1);
333+
}
334+
331335
if (icon$$1 === null) {
332336
return null;
333337
}
@@ -440,7 +444,6 @@ var FontAwesomeIcon = {
440444
var classes = objectWithKey('classes', classList(props));
441445
var transform = objectWithKey('transform', typeof props.transform === 'string' ? parse.transform(props.transform) : props.transform);
442446
var mask = objectWithKey('mask', normalizeIconArgs(maskArgs));
443-
444447
var renderedIcon = icon(icon$$1, _extends({}, classes, transform, mask, { symbol: symbol, title: title }));
445448

446449
if (!renderedIcon) {

index.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -332,6 +332,10 @@
332332
}
333333

334334
function normalizeIconArgs(icon) {
335+
if (fontawesomeSvgCore.parse.icon) {
336+
return fontawesomeSvgCore.parse.icon(icon);
337+
}
338+
335339
if (icon === null) {
336340
return null;
337341
}
@@ -444,7 +448,6 @@
444448
var classes = objectWithKey('classes', classList(props));
445449
var transform = objectWithKey('transform', typeof props.transform === 'string' ? fontawesomeSvgCore.parse.transform(props.transform) : props.transform);
446450
var mask = objectWithKey('mask', normalizeIconArgs(maskArgs));
447-
448451
var renderedIcon = fontawesomeSvgCore.icon(icon, _extends({}, classes, transform, mask, { symbol: symbol, title: title }));
449452

450453
if (!renderedIcon) {

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@fortawesome/vue-fontawesome",
33
"description": "Official Vue component for Font Awesome 5",
4-
"version": "2.0.1",
4+
"version": "2.0.2",
55
"main": "index.js",
66
"module": "index.es.js",
77
"jsnext:main": "index.es.js",

0 commit comments

Comments
 (0)