Skip to content

Commit

Permalink
Release 0.1.19
Browse files Browse the repository at this point in the history
  • Loading branch information
robmadole committed Jun 29, 2022
1 parent 16710df commit 67469c7
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 7 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p

---

## [0.1.19](https://github.com/FortAwesome/react-fontawesome/releases/tag/0.1.19) - 2022-06-29

### Fixed

- Added missing beatFade, spinPulse, and spinReverse animations

---

## [0.1.18](https://github.com/FortAwesome/react-fontawesome/releases/tag/0.1.18) - 2022-03-16

### Added
Expand Down
7 changes: 5 additions & 2 deletions DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,12 @@ The following commands are available through `npm run`
1. Update the `CHANGELOG.md`
1. Update the `README.md` contributors section
1. `npm run build`
1. `npm run install.5`
1. `npm run test`
1. `npm publish --tag 0.1.x`
1. `npm publish --tag 0.1.x --registry https://npm.fontawesome.com` (publish to Pro registry)
1. `npm run install.6`
1. `npm run test`
1. `npm publish --tag latest-0.1`
1. `npm publish --tag latest-0.1 --registry https://npm.fontawesome.com` (publish to Pro registry)
1. `git add . && git commit -m 'Release VERSION'`
1. `git push`
1. Create a [new release](https://github.com/FortAwesome/react-fontawesome/releases/new) with `CHANGELOG` details
Expand Down
8 changes: 6 additions & 2 deletions index.es.js
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,7 @@ function classList(props) {
'fa-inverse': inverse,
'fa-border': border,
'fa-li': listItem,
'fa-flip': flip === true,
'fa-flip-horizontal': flip === 'horizontal' || flip === 'both',
'fa-flip-vertical': flip === 'vertical' || flip === 'both'
}, _defineProperty(_classes, "fa-".concat(size), typeof size !== 'undefined' && size !== null), _defineProperty(_classes, "fa-rotate-".concat(rotation), typeof rotation !== 'undefined' && rotation !== null && rotation !== 0), _defineProperty(_classes, "fa-pull-".concat(pull), typeof pull !== 'undefined' && pull !== null), _defineProperty(_classes, 'fa-swap-opacity', props.swapOpacity), _classes); // map over all the keys in the classes object
Expand Down Expand Up @@ -372,6 +373,7 @@ FontAwesomeIcon.displayName = 'FontAwesomeIcon';
FontAwesomeIcon.propTypes = {
beat: PropTypes.bool,
border: PropTypes.bool,
beatFade: PropTypes.bool,
bounce: PropTypes.bool,
className: PropTypes.string,
fade: PropTypes.bool,
Expand All @@ -380,7 +382,7 @@ FontAwesomeIcon.propTypes = {
maskId: PropTypes.string,
fixedWidth: PropTypes.bool,
inverse: PropTypes.bool,
flip: PropTypes.oneOf(['horizontal', 'vertical', 'both']),
flip: PropTypes.oneOf([true, false, 'horizontal', 'vertical', 'both']),
icon: PropTypes.oneOfType([PropTypes.object, PropTypes.array, PropTypes.string]),
listItem: PropTypes.bool,
pull: PropTypes.oneOf(['right', 'left']),
Expand All @@ -404,14 +406,16 @@ FontAwesomeIcon.defaultProps = {
maskId: null,
fixedWidth: false,
inverse: false,
flip: null,
flip: false,
icon: null,
listItem: false,
pull: null,
pulse: false,
rotation: null,
size: null,
spin: false,
spinPulse: false,
spinReverse: false,
beat: false,
fade: false,
beatFade: false,
Expand Down
8 changes: 6 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,7 @@
'fa-inverse': inverse,
'fa-border': border,
'fa-li': listItem,
'fa-flip': flip === true,
'fa-flip-horizontal': flip === 'horizontal' || flip === 'both',
'fa-flip-vertical': flip === 'vertical' || flip === 'both'
}, _defineProperty(_classes, "fa-".concat(size), typeof size !== 'undefined' && size !== null), _defineProperty(_classes, "fa-rotate-".concat(rotation), typeof rotation !== 'undefined' && rotation !== null && rotation !== 0), _defineProperty(_classes, "fa-pull-".concat(pull), typeof pull !== 'undefined' && pull !== null), _defineProperty(_classes, 'fa-swap-opacity', props.swapOpacity), _classes); // map over all the keys in the classes object
Expand Down Expand Up @@ -379,6 +380,7 @@
FontAwesomeIcon.propTypes = {
beat: PropTypes__default["default"].bool,
border: PropTypes__default["default"].bool,
beatFade: PropTypes__default["default"].bool,
bounce: PropTypes__default["default"].bool,
className: PropTypes__default["default"].string,
fade: PropTypes__default["default"].bool,
Expand All @@ -387,7 +389,7 @@
maskId: PropTypes__default["default"].string,
fixedWidth: PropTypes__default["default"].bool,
inverse: PropTypes__default["default"].bool,
flip: PropTypes__default["default"].oneOf(['horizontal', 'vertical', 'both']),
flip: PropTypes__default["default"].oneOf([true, false, 'horizontal', 'vertical', 'both']),
icon: PropTypes__default["default"].oneOfType([PropTypes__default["default"].object, PropTypes__default["default"].array, PropTypes__default["default"].string]),
listItem: PropTypes__default["default"].bool,
pull: PropTypes__default["default"].oneOf(['right', 'left']),
Expand All @@ -411,14 +413,16 @@
maskId: null,
fixedWidth: false,
inverse: false,
flip: null,
flip: false,
icon: null,
listItem: false,
pull: null,
pulse: false,
rotation: null,
size: null,
spin: false,
spinPulse: false,
spinReverse: false,
beat: false,
fade: false,
beatFade: false,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@fortawesome/react-fontawesome",
"description": "Official React component for Font Awesome 5",
"version": "0.1.18",
"version": "0.1.19",
"main": "index.js",
"module": "index.es.js",
"jsnext:main": "index.es.js",
Expand Down

0 comments on commit 67469c7

Please sign in to comment.