@@ -2,14 +2,17 @@ import { parse, icon, config, text } from '@fortawesome/fontawesome-svg-core';
2
2
3
3
function ownKeys ( object , enumerableOnly ) {
4
4
var keys = Object . keys ( object ) ;
5
+
5
6
if ( Object . getOwnPropertySymbols ) {
6
7
var symbols = Object . getOwnPropertySymbols ( object ) ;
7
8
enumerableOnly && ( symbols = symbols . filter ( function ( sym ) {
8
9
return Object . getOwnPropertyDescriptor ( object , sym ) . enumerable ;
9
10
} ) ) , keys . push . apply ( keys , symbols ) ;
10
11
}
12
+
11
13
return keys ;
12
14
}
15
+
13
16
function _objectSpread2 ( target ) {
14
17
for ( var i = 1 ; i < arguments . length ; i ++ ) {
15
18
var source = null != arguments [ i ] ? arguments [ i ] : { } ;
@@ -19,8 +22,10 @@ function _objectSpread2(target) {
19
22
Object . defineProperty ( target , key , Object . getOwnPropertyDescriptor ( source , key ) ) ;
20
23
} ) ;
21
24
}
25
+
22
26
return target ;
23
27
}
28
+
24
29
function _typeof ( obj ) {
25
30
"@babel/helpers - typeof" ;
26
31
@@ -30,6 +35,7 @@ function _typeof(obj) {
30
35
return obj && "function" == typeof Symbol && obj . constructor === Symbol && obj !== Symbol . prototype ? "symbol" : typeof obj ;
31
36
} , _typeof ( obj ) ;
32
37
}
38
+
33
39
function _defineProperty ( obj , key , value ) {
34
40
if ( key in obj ) {
35
41
Object . defineProperty ( obj , key , {
@@ -41,44 +47,58 @@ function _defineProperty(obj, key, value) {
41
47
} else {
42
48
obj [ key ] = value ;
43
49
}
50
+
44
51
return obj ;
45
52
}
53
+
46
54
function _objectWithoutPropertiesLoose ( source , excluded ) {
47
55
if ( source == null ) return { } ;
48
56
var target = { } ;
49
57
var sourceKeys = Object . keys ( source ) ;
50
58
var key , i ;
59
+
51
60
for ( i = 0 ; i < sourceKeys . length ; i ++ ) {
52
61
key = sourceKeys [ i ] ;
53
62
if ( excluded . indexOf ( key ) >= 0 ) continue ;
54
63
target [ key ] = source [ key ] ;
55
64
}
65
+
56
66
return target ;
57
67
}
68
+
58
69
function _objectWithoutProperties ( source , excluded ) {
59
70
if ( source == null ) return { } ;
71
+
60
72
var target = _objectWithoutPropertiesLoose ( source , excluded ) ;
73
+
61
74
var key , i ;
75
+
62
76
if ( Object . getOwnPropertySymbols ) {
63
77
var sourceSymbolKeys = Object . getOwnPropertySymbols ( source ) ;
78
+
64
79
for ( i = 0 ; i < sourceSymbolKeys . length ; i ++ ) {
65
80
key = sourceSymbolKeys [ i ] ;
66
81
if ( excluded . indexOf ( key ) >= 0 ) continue ;
67
82
if ( ! Object . prototype . propertyIsEnumerable . call ( source , key ) ) continue ;
68
83
target [ key ] = source [ key ] ;
69
84
}
70
85
}
86
+
71
87
return target ;
72
88
}
89
+
73
90
function _toConsumableArray ( arr ) {
74
91
return _arrayWithoutHoles ( arr ) || _iterableToArray ( arr ) || _unsupportedIterableToArray ( arr ) || _nonIterableSpread ( ) ;
75
92
}
93
+
76
94
function _arrayWithoutHoles ( arr ) {
77
95
if ( Array . isArray ( arr ) ) return _arrayLikeToArray ( arr ) ;
78
96
}
97
+
79
98
function _iterableToArray ( iter ) {
80
99
if ( typeof Symbol !== "undefined" && iter [ Symbol . iterator ] != null || iter [ "@@iterator" ] != null ) return Array . from ( iter ) ;
81
100
}
101
+
82
102
function _unsupportedIterableToArray ( o , minLen ) {
83
103
if ( ! o ) return ;
84
104
if ( typeof o === "string" ) return _arrayLikeToArray ( o , minLen ) ;
@@ -87,11 +107,15 @@ function _unsupportedIterableToArray(o, minLen) {
87
107
if ( n === "Map" || n === "Set" ) return Array . from ( o ) ;
88
108
if ( n === "Arguments" || / ^ (?: U i | I ) n t (?: 8 | 1 6 | 3 2 ) (?: C l a m p e d ) ? A r r a y $ / . test ( n ) ) return _arrayLikeToArray ( o , minLen ) ;
89
109
}
110
+
90
111
function _arrayLikeToArray ( arr , len ) {
91
112
if ( len == null || len > arr . length ) len = arr . length ;
113
+
92
114
for ( var i = 0 , arr2 = new Array ( len ) ; i < len ; i ++ ) arr2 [ i ] = arr [ i ] ;
115
+
93
116
return arr2 ;
94
117
}
118
+
95
119
function _nonIterableSpread ( ) {
96
120
throw new TypeError ( "Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method." ) ;
97
121
}
@@ -235,6 +259,7 @@ var humps$1 = {exports: {}};
235
259
var humps = humps$1 . exports ;
236
260
237
261
var _excluded = [ "class" , "style" , "attrs" ] ;
262
+
238
263
function styleToObject ( style ) {
239
264
return style . split ( ';' ) . map ( function ( s ) {
240
265
return s . trim ( ) ;
@@ -248,54 +273,65 @@ function styleToObject(style) {
248
273
return acc ;
249
274
} , { } ) ;
250
275
}
276
+
251
277
function classToObject ( cls ) {
252
278
return cls . split ( / \s + / ) . reduce ( function ( acc , c ) {
253
279
acc [ c ] = true ;
254
280
return acc ;
255
281
} , { } ) ;
256
282
}
283
+
257
284
function combineClassObjects ( ) {
258
285
for ( var _len = arguments . length , objs = new Array ( _len ) , _key = 0 ; _key < _len ; _key ++ ) {
259
286
objs [ _key ] = arguments [ _key ] ;
260
287
}
288
+
261
289
return objs . reduce ( function ( acc , obj ) {
262
290
if ( Array . isArray ( obj ) ) {
263
291
acc = acc . concat ( obj ) ;
264
292
} else {
265
293
acc . push ( obj ) ;
266
294
}
295
+
267
296
return acc ;
268
297
} , [ ] ) ;
269
298
}
299
+
270
300
function convert ( h , element ) {
271
301
var props = arguments . length > 2 && arguments [ 2 ] !== undefined ? arguments [ 2 ] : { } ;
272
302
var data = arguments . length > 3 && arguments [ 3 ] !== undefined ? arguments [ 3 ] : { } ;
273
303
var children = ( element . children || [ ] ) . map ( convert . bind ( null , h ) ) ;
274
304
var mixins = Object . keys ( element . attributes || { } ) . reduce ( function ( acc , key ) {
275
305
var val = element . attributes [ key ] ;
306
+
276
307
switch ( key ) {
277
308
case 'class' :
278
309
acc [ 'class' ] = classToObject ( val ) ;
279
310
break ;
311
+
280
312
case 'style' :
281
313
acc [ 'style' ] = styleToObject ( val ) ;
282
314
break ;
315
+
283
316
default :
284
317
acc . attrs [ key ] = val ;
285
318
}
319
+
286
320
return acc ;
287
321
} , {
288
322
'class' : { } ,
289
323
style : { } ,
290
324
attrs : { }
291
325
} ) ;
326
+
292
327
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
+
299
335
if ( typeof element === 'string' ) {
300
336
return element ;
301
337
} else {
@@ -310,12 +346,15 @@ function convert(h, element) {
310
346
}
311
347
312
348
var PRODUCTION = false ;
349
+
313
350
try {
314
351
PRODUCTION = process . env . NODE_ENV === 'production' ;
315
352
} catch ( e ) { }
353
+
316
354
function log ( ) {
317
355
if ( ! PRODUCTION && console && typeof console . error === 'function' ) {
318
356
var _console ;
357
+
319
358
( _console = console ) . error . apply ( _console , arguments ) ;
320
359
}
321
360
}
@@ -325,6 +364,7 @@ function objectWithKey(key, value) {
325
364
}
326
365
function classList ( props ) {
327
366
var _classes ;
367
+
328
368
var classes = ( _classes = {
329
369
'fa-spin' : props . spin ,
330
370
'fa-spin-pulse' : props . spinPulse ,
@@ -358,28 +398,34 @@ function normalizeIconArgs(icon) {
358
398
if ( icon && _typeof ( icon ) === 'object' && icon . prefix && icon . iconName && icon . icon ) {
359
399
return icon ;
360
400
}
401
+
361
402
if ( parse . icon ) {
362
403
return parse . icon ( icon ) ;
363
404
}
405
+
364
406
if ( icon === null ) {
365
407
return null ;
366
408
}
409
+
367
410
if ( _typeof ( icon ) === 'object' && icon . prefix && icon . iconName ) {
368
411
return icon ;
369
412
}
413
+
370
414
if ( Array . isArray ( icon ) && icon . length === 2 ) {
371
415
return {
372
416
prefix : icon [ 0 ] ,
373
417
iconName : icon [ 1 ]
374
418
} ;
375
419
}
420
+
376
421
if ( typeof icon === 'string' ) {
377
422
return {
378
423
prefix : 'fas' ,
379
424
iconName : icon
380
425
} ;
381
426
}
382
427
}
428
+
383
429
var FontAwesomeIcon = {
384
430
name : 'FontAwesomeIcon' ,
385
431
functional : true ,
@@ -496,9 +542,9 @@ var FontAwesomeIcon = {
496
542
render : function render ( createElement , context ) {
497
543
var props = context . props ;
498
544
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 ;
502
548
var icon$1 = normalizeIconArgs ( iconArgs ) ;
503
549
var classes = objectWithKey ( 'classes' , classList ( props ) ) ;
504
550
var transform = objectWithKey ( 'transform' , typeof props . transform === 'string' ? parse . transform ( props . transform ) : props . transform ) ;
@@ -507,9 +553,11 @@ var FontAwesomeIcon = {
507
553
symbol : symbol ,
508
554
title : title
509
555
} ) ) ;
556
+
510
557
if ( ! renderedIcon ) {
511
558
return log ( 'Could not find one or more icon(s)' , icon$1 , mask ) ;
512
559
}
560
+
513
561
var abstract = renderedIcon . abstract ;
514
562
var convertCurry = convert . bind ( null , createElement ) ;
515
563
return convertCurry ( abstract [ 0 ] , { } , context . data ) ;
@@ -566,9 +614,11 @@ var FontAwesomeLayersText = {
566
614
var transform = objectWithKey ( 'transform' , typeof props . transform === 'string' ? parse . transform ( props . transform ) : props . transform ) ;
567
615
var renderedText = text ( props . value . toString ( ) , _objectSpread2 ( _objectSpread2 ( { } , transform ) , classes ) ) ;
568
616
var abstract = renderedText . abstract ;
617
+
569
618
if ( props . counter ) {
570
619
abstract [ 0 ] . attributes . class = abstract [ 0 ] . attributes . class . replace ( 'fa-layers-text' , '' ) ;
571
620
}
621
+
572
622
var convertCurry = convert . bind ( null , createElement ) ;
573
623
return convertCurry ( abstract [ 0 ] , { } , context . data ) ;
574
624
}
0 commit comments