Skip to content

Commit 57f01a0

Browse files
committed
Release 2.0.10
1 parent bf1457d commit 57f01a0

File tree

4 files changed

+128
-20
lines changed

4 files changed

+128
-20
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
99
- [Vue 3.x compatible version of this component](https://github.com/FortAwesome/vue-fontawesome/tree/3.x)
1010
- [CHANGELOG for version 3.x](https://github.com/FortAwesome/vue-fontawesome/blob/3.x/CHANGELOG.md)
1111

12+
---
13+
## [2.0.10](https://github.com/FortAwesome/vue-fontawesome/releases/tag/2.0.10) - 2023-01-24
14+
15+
### Changed
16+
- NPM download `@fortawesome/vue-fontawesome-latest` is now set to Vue 3; to download the Vue 2 package you will have to use `@fortawesome/vue-fontawesome-latest-2`, which is described in our [Vue setup docs](https://fontawesome.com/docs/web/use-with/vue/#_3-add-the-vue-component)
17+
- Updated CI workflow testing to include Vue 2.7.x
18+
- Updated contributor's GitHub user name in README.md and package.json files
19+
1220
---
1321

1422
## [2.0.9](https://github.com/FortAwesome/vue-fontawesome/releases/tag/2.0.9) - 2022-11-07

index.es.js

+59-9
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,17 @@ import { parse, icon, config, text } from '@fortawesome/fontawesome-svg-core';
22

33
function ownKeys(object, enumerableOnly) {
44
var keys = Object.keys(object);
5+
56
if (Object.getOwnPropertySymbols) {
67
var symbols = Object.getOwnPropertySymbols(object);
78
enumerableOnly && (symbols = symbols.filter(function (sym) {
89
return Object.getOwnPropertyDescriptor(object, sym).enumerable;
910
})), keys.push.apply(keys, symbols);
1011
}
12+
1113
return keys;
1214
}
15+
1316
function _objectSpread2(target) {
1417
for (var i = 1; i < arguments.length; i++) {
1518
var source = null != arguments[i] ? arguments[i] : {};
@@ -19,8 +22,10 @@ function _objectSpread2(target) {
1922
Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
2023
});
2124
}
25+
2226
return target;
2327
}
28+
2429
function _typeof(obj) {
2530
"@babel/helpers - typeof";
2631

@@ -30,6 +35,7 @@ function _typeof(obj) {
3035
return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
3136
}, _typeof(obj);
3237
}
38+
3339
function _defineProperty(obj, key, value) {
3440
if (key in obj) {
3541
Object.defineProperty(obj, key, {
@@ -41,44 +47,58 @@ function _defineProperty(obj, key, value) {
4147
} else {
4248
obj[key] = value;
4349
}
50+
4451
return obj;
4552
}
53+
4654
function _objectWithoutPropertiesLoose(source, excluded) {
4755
if (source == null) return {};
4856
var target = {};
4957
var sourceKeys = Object.keys(source);
5058
var key, i;
59+
5160
for (i = 0; i < sourceKeys.length; i++) {
5261
key = sourceKeys[i];
5362
if (excluded.indexOf(key) >= 0) continue;
5463
target[key] = source[key];
5564
}
65+
5666
return target;
5767
}
68+
5869
function _objectWithoutProperties(source, excluded) {
5970
if (source == null) return {};
71+
6072
var target = _objectWithoutPropertiesLoose(source, excluded);
73+
6174
var key, i;
75+
6276
if (Object.getOwnPropertySymbols) {
6377
var sourceSymbolKeys = Object.getOwnPropertySymbols(source);
78+
6479
for (i = 0; i < sourceSymbolKeys.length; i++) {
6580
key = sourceSymbolKeys[i];
6681
if (excluded.indexOf(key) >= 0) continue;
6782
if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue;
6883
target[key] = source[key];
6984
}
7085
}
86+
7187
return target;
7288
}
89+
7390
function _toConsumableArray(arr) {
7491
return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread();
7592
}
93+
7694
function _arrayWithoutHoles(arr) {
7795
if (Array.isArray(arr)) return _arrayLikeToArray(arr);
7896
}
97+
7998
function _iterableToArray(iter) {
8099
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter);
81100
}
101+
82102
function _unsupportedIterableToArray(o, minLen) {
83103
if (!o) return;
84104
if (typeof o === "string") return _arrayLikeToArray(o, minLen);
@@ -87,11 +107,15 @@ function _unsupportedIterableToArray(o, minLen) {
87107
if (n === "Map" || n === "Set") return Array.from(o);
88108
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen);
89109
}
110+
90111
function _arrayLikeToArray(arr, len) {
91112
if (len == null || len > arr.length) len = arr.length;
113+
92114
for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i];
115+
93116
return arr2;
94117
}
118+
95119
function _nonIterableSpread() {
96120
throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
97121
}
@@ -235,6 +259,7 @@ var humps$1 = {exports: {}};
235259
var humps = humps$1.exports;
236260

237261
var _excluded = ["class", "style", "attrs"];
262+
238263
function styleToObject(style) {
239264
return style.split(';').map(function (s) {
240265
return s.trim();
@@ -248,54 +273,65 @@ function styleToObject(style) {
248273
return acc;
249274
}, {});
250275
}
276+
251277
function classToObject(cls) {
252278
return cls.split(/\s+/).reduce(function (acc, c) {
253279
acc[c] = true;
254280
return acc;
255281
}, {});
256282
}
283+
257284
function combineClassObjects() {
258285
for (var _len = arguments.length, objs = new Array(_len), _key = 0; _key < _len; _key++) {
259286
objs[_key] = arguments[_key];
260287
}
288+
261289
return objs.reduce(function (acc, obj) {
262290
if (Array.isArray(obj)) {
263291
acc = acc.concat(obj);
264292
} else {
265293
acc.push(obj);
266294
}
295+
267296
return acc;
268297
}, []);
269298
}
299+
270300
function convert(h, element) {
271301
var props = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};
272302
var data = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : {};
273303
var children = (element.children || []).map(convert.bind(null, h));
274304
var mixins = Object.keys(element.attributes || {}).reduce(function (acc, key) {
275305
var val = element.attributes[key];
306+
276307
switch (key) {
277308
case 'class':
278309
acc['class'] = classToObject(val);
279310
break;
311+
280312
case 'style':
281313
acc['style'] = styleToObject(val);
282314
break;
315+
283316
default:
284317
acc.attrs[key] = val;
285318
}
319+
286320
return acc;
287321
}, {
288322
'class': {},
289323
style: {},
290324
attrs: {}
291325
});
326+
292327
var _data$class = data.class,
293-
dClass = _data$class === void 0 ? {} : _data$class,
294-
_data$style = data.style,
295-
dStyle = _data$style === void 0 ? {} : _data$style,
296-
_data$attrs = data.attrs,
297-
dAttrs = _data$attrs === void 0 ? {} : _data$attrs,
298-
remainingData = _objectWithoutProperties(data, _excluded);
328+
dClass = _data$class === void 0 ? {} : _data$class,
329+
_data$style = data.style,
330+
dStyle = _data$style === void 0 ? {} : _data$style,
331+
_data$attrs = data.attrs,
332+
dAttrs = _data$attrs === void 0 ? {} : _data$attrs,
333+
remainingData = _objectWithoutProperties(data, _excluded);
334+
299335
if (typeof element === 'string') {
300336
return element;
301337
} else {
@@ -310,12 +346,15 @@ function convert(h, element) {
310346
}
311347

312348
var PRODUCTION = false;
349+
313350
try {
314351
PRODUCTION = process.env.NODE_ENV === 'production';
315352
} catch (e) {}
353+
316354
function log () {
317355
if (!PRODUCTION && console && typeof console.error === 'function') {
318356
var _console;
357+
319358
(_console = console).error.apply(_console, arguments);
320359
}
321360
}
@@ -325,6 +364,7 @@ function objectWithKey(key, value) {
325364
}
326365
function classList(props) {
327366
var _classes;
367+
328368
var classes = (_classes = {
329369
'fa-spin': props.spin,
330370
'fa-spin-pulse': props.spinPulse,
@@ -358,28 +398,34 @@ function normalizeIconArgs(icon) {
358398
if (icon && _typeof(icon) === 'object' && icon.prefix && icon.iconName && icon.icon) {
359399
return icon;
360400
}
401+
361402
if (parse.icon) {
362403
return parse.icon(icon);
363404
}
405+
364406
if (icon === null) {
365407
return null;
366408
}
409+
367410
if (_typeof(icon) === 'object' && icon.prefix && icon.iconName) {
368411
return icon;
369412
}
413+
370414
if (Array.isArray(icon) && icon.length === 2) {
371415
return {
372416
prefix: icon[0],
373417
iconName: icon[1]
374418
};
375419
}
420+
376421
if (typeof icon === 'string') {
377422
return {
378423
prefix: 'fas',
379424
iconName: icon
380425
};
381426
}
382427
}
428+
383429
var FontAwesomeIcon = {
384430
name: 'FontAwesomeIcon',
385431
functional: true,
@@ -496,9 +542,9 @@ var FontAwesomeIcon = {
496542
render: function render(createElement, context) {
497543
var props = context.props;
498544
var iconArgs = props.icon,
499-
maskArgs = props.mask,
500-
symbol = props.symbol,
501-
title = props.title;
545+
maskArgs = props.mask,
546+
symbol = props.symbol,
547+
title = props.title;
502548
var icon$1 = normalizeIconArgs(iconArgs);
503549
var classes = objectWithKey('classes', classList(props));
504550
var transform = objectWithKey('transform', typeof props.transform === 'string' ? parse.transform(props.transform) : props.transform);
@@ -507,9 +553,11 @@ var FontAwesomeIcon = {
507553
symbol: symbol,
508554
title: title
509555
}));
556+
510557
if (!renderedIcon) {
511558
return log('Could not find one or more icon(s)', icon$1, mask);
512559
}
560+
513561
var abstract = renderedIcon.abstract;
514562
var convertCurry = convert.bind(null, createElement);
515563
return convertCurry(abstract[0], {}, context.data);
@@ -566,9 +614,11 @@ var FontAwesomeLayersText = {
566614
var transform = objectWithKey('transform', typeof props.transform === 'string' ? parse.transform(props.transform) : props.transform);
567615
var renderedText = text(props.value.toString(), _objectSpread2(_objectSpread2({}, transform), classes));
568616
var abstract = renderedText.abstract;
617+
569618
if (props.counter) {
570619
abstract[0].attributes.class = abstract[0].attributes.class.replace('fa-layers-text', '');
571620
}
621+
572622
var convertCurry = convert.bind(null, createElement);
573623
return convertCurry(abstract[0], {}, context.data);
574624
}

0 commit comments

Comments
 (0)