Skip to content

Commit 539b91b

Browse files
committed
Release 0.2.5
1 parent 708009b commit 539b91b

9 files changed

+1348
-10615
lines changed

.tool-versions

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
nodejs 12.16.0
1+
nodejs 12.6.0
22
python 3.7.5

CHANGELOG.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,19 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
66

77
---
88

9+
## [0.2.5](https://github.com/FortAwesome/react-native-fontawesome/releases/tag/0.2.5) - 2020-05-14
10+
11+
### Added
12+
13+
- Support for Duotone icons #59
14+
15+
---
16+
917
## [0.2.4](https://github.com/FortAwesome/react-native-fontawesome/releases/tag/0.2.4) - 2020-04-27
1018

1119
### Fixed
1220

13-
- Loosen peerDependencies versions to allow newere react-native and react-native-svg packages
21+
- Loosen peerDependencies versions to allow newer react-native and react-native-svg packages
1422

1523
---
1624

README.md

+6-5
Original file line numberDiff line numberDiff line change
@@ -442,11 +442,12 @@ Community:
442442

443443
"David Martin <github.com/iamdavidmartin>",
444444

445-
| | Name | GitHub |
446-
| :---------------------------------------------------------: | -------------- | ---------------------------------------------------- |
447-
| <img src="https://github.com/dizy.png?size=72" /> | Dizy | [@dizy](https://github.com/dizy) |
448-
| <img src="https://github.com/iamdavidmartin.png?size=72" /> | David Martin | [@iamdavidmartin](https://github.com/iamdavidmartin) |
449-
| <img src="https://github.com/puremana.png?size=72" /> | Jeremey | [@puremana](https://github.com/puremana) |
445+
| | Name | GitHub |
446+
| :---------------------------------------------------------: | ----------------- | ---------------------------------------------------- |
447+
| <img src="https://github.com/dizy.png?size=72" /> | Dizy | [@dizy](https://github.com/dizy) |
448+
| <img src="https://github.com/iamdavidmartin.png?size=72" /> | David Martin | [@iamdavidmartin](https://github.com/iamdavidmartin) |
449+
| <img src="https://github.com/puremana.png?size=72" /> | Jeremey | [@puremana](https://github.com/puremana) |
450+
| <img src="https://github.com/schonfeld.png?size=72" /> | Michael Schonfeld | [@schonfeld](https://github.com/schonfeld) |
450451

451452
The Font Awesome team:
452453

dist/components/FontAwesomeIcon.js

+17-4
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Object.defineProperty(exports, "__esModule", {
44
value: true
55
});
66
exports["default"] = FontAwesomeIcon;
7-
exports.DEFAULT_COLOR = exports.DEFAULT_SIZE = void 0;
7+
exports.DEFAULT_SECONDARY_OPACITY = exports.DEFAULT_COLOR = exports.DEFAULT_SIZE = void 0;
88

99
var _react = _interopRequireDefault(require("react"));
1010

@@ -38,9 +38,11 @@ var _Dimensions$get = _reactNative.Dimensions.get('window'),
3838

3939
var DEFAULT_SIZE = 16;
4040
exports.DEFAULT_SIZE = DEFAULT_SIZE;
41-
var DEFAULT_COLOR = '#000'; // Deprecated height and width defaults
42-
41+
var DEFAULT_COLOR = '#000';
4342
exports.DEFAULT_COLOR = DEFAULT_COLOR;
43+
var DEFAULT_SECONDARY_OPACITY = 0.4; // Deprecated height and width defaults
44+
45+
exports.DEFAULT_SECONDARY_OPACITY = DEFAULT_SECONDARY_OPACITY;
4446
var DEFAULT_HEIGHT = windowHeight * 0.1;
4547
var DEFAULT_WIDTH = windowWidth * 0.1;
4648

@@ -93,7 +95,12 @@ function FontAwesomeIcon(props) {
9395

9496
var _abstract = renderedIcon["abstract"]; // This is the color that will be passed to the "fill" prop of the Svg element
9597

96-
var color = props.color || style.color || DEFAULT_COLOR; // To avoid confusion down the line, we'll remove properties from the StyleSheet, like color, that are being overridden
98+
var color = props.color || style.color || DEFAULT_COLOR; // This is the color that will be passed to the "fill" prop of the secondary Path element child (in Duotone Icons)
99+
// `null` value will result in using the primary color, at 40% opacity
100+
101+
var secondaryColor = props.secondaryColor || null; // Secondary layer opacity should default to 0.4, unless a specific opacity value or a specific secondary color was given
102+
103+
var secondaryOpacity = props.secondaryOpacity || (secondaryColor ? 1 : DEFAULT_SECONDARY_OPACITY); // To avoid confusion down the line, we'll remove properties from the StyleSheet, like color, that are being overridden
97104
// or resolved in other ways, to avoid ambiguity as to which inputs cause which outputs in the underlying rendering process.
98105
// In other words, we don't want color (for example) to be specified via two different inputs.
99106

@@ -119,6 +126,8 @@ function FontAwesomeIcon(props) {
119126
height: resolvedHeight,
120127
width: resolvedWidth,
121128
fill: color,
129+
secondaryFill: secondaryColor,
130+
secondaryOpacity: secondaryOpacity,
122131
style: modifiedStyle
123132
};
124133
Object.keys(props).forEach(function (key) {
@@ -135,6 +144,8 @@ FontAwesomeIcon.propTypes = {
135144
width: _propTypes["default"].number,
136145
size: _propTypes["default"].number,
137146
color: _propTypes["default"].string,
147+
secondaryColor: _propTypes["default"].string,
148+
secondaryOpacity: _propTypes["default"].number,
138149
style: _propTypes["default"].oneOfType([_propTypes["default"].shape(_objectSpread({}, _reactNative.ViewPropTypes.style)), _propTypes["default"].array]),
139150
icon: _propTypes["default"].oneOfType([_propTypes["default"].object, _propTypes["default"].array, _propTypes["default"].string]),
140151
mask: _propTypes["default"].oneOfType([_propTypes["default"].object, _propTypes["default"].array, _propTypes["default"].string]),
@@ -146,6 +157,8 @@ FontAwesomeIcon.defaultProps = {
146157
transform: null,
147158
style: {},
148159
color: null,
160+
secondaryColor: null,
161+
secondaryOpacity: null,
149162
height: undefined,
150163
width: undefined // Once the deprecation of height and width props is complete, let's put the real default prop value for size here.
151164
// For now, adding it breaks the default/override logic for height/width/size.

dist/converter.js

+15-8
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,6 @@ var _reactNativeSvg = require("react-native-svg");
1111

1212
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
1313

14-
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
15-
16-
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
17-
18-
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
19-
2014
function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _nonIterableSpread(); }
2115

2216
function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance"); }
@@ -25,6 +19,12 @@ function _iterableToArray(iter) { if (Symbol.iterator in Object(iter) || Object.
2519

2620
function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } }
2721

22+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
23+
24+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
25+
26+
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
27+
2828
var svgObjectMap = {
2929
"svg": _reactNativeSvg.Svg,
3030
"path": _reactNativeSvg.Path,
@@ -42,8 +42,15 @@ function convert(createElement, element) {
4242
return element;
4343
}
4444

45-
var children = (element.children || []).map(function (child) {
46-
return convert(createElement, child);
45+
var isDuotone = (element.children || []).length === 2;
46+
var children = (element.children || []).map(function (child, childIndex) {
47+
var isDuotoneSecondLayer = isDuotone && childIndex === 0;
48+
var fill = isDuotoneSecondLayer ? extraProps.secondaryFill : extraProps.fill;
49+
var fillOpacity = isDuotoneSecondLayer ? extraProps.secondaryOpacity : 1;
50+
return convert(createElement, child, _objectSpread({}, extraProps, {
51+
fill: fill,
52+
fillOpacity: fillOpacity
53+
}));
4754
});
4855
var mixins = Object.keys(element.attributes || {}).reduce(function (acc, key) {
4956
var val = element.attributes[key];
-10.4 KB
Binary file not shown.

0 commit comments

Comments
 (0)