@@ -3,14 +3,17 @@ import { h, defineComponent, computed, watch } from 'vue';
3
3
4
4
function ownKeys ( object , enumerableOnly ) {
5
5
var keys = Object . keys ( object ) ;
6
+
6
7
if ( Object . getOwnPropertySymbols ) {
7
8
var symbols = Object . getOwnPropertySymbols ( object ) ;
8
9
enumerableOnly && ( symbols = symbols . filter ( function ( sym ) {
9
10
return Object . getOwnPropertyDescriptor ( object , sym ) . enumerable ;
10
11
} ) ) , keys . push . apply ( keys , symbols ) ;
11
12
}
13
+
12
14
return keys ;
13
15
}
16
+
14
17
function _objectSpread2 ( target ) {
15
18
for ( var i = 1 ; i < arguments . length ; i ++ ) {
16
19
var source = null != arguments [ i ] ? arguments [ i ] : { } ;
@@ -20,8 +23,10 @@ function _objectSpread2(target) {
20
23
Object . defineProperty ( target , key , Object . getOwnPropertyDescriptor ( source , key ) ) ;
21
24
} ) ;
22
25
}
26
+
23
27
return target ;
24
28
}
29
+
25
30
function _typeof ( obj ) {
26
31
"@babel/helpers - typeof" ;
27
32
@@ -31,6 +36,7 @@ function _typeof(obj) {
31
36
return obj && "function" == typeof Symbol && obj . constructor === Symbol && obj !== Symbol . prototype ? "symbol" : typeof obj ;
32
37
} , _typeof ( obj ) ;
33
38
}
39
+
34
40
function _defineProperty ( obj , key , value ) {
35
41
if ( key in obj ) {
36
42
Object . defineProperty ( obj , key , {
@@ -42,44 +48,58 @@ function _defineProperty(obj, key, value) {
42
48
} else {
43
49
obj [ key ] = value ;
44
50
}
51
+
45
52
return obj ;
46
53
}
54
+
47
55
function _objectWithoutPropertiesLoose ( source , excluded ) {
48
56
if ( source == null ) return { } ;
49
57
var target = { } ;
50
58
var sourceKeys = Object . keys ( source ) ;
51
59
var key , i ;
60
+
52
61
for ( i = 0 ; i < sourceKeys . length ; i ++ ) {
53
62
key = sourceKeys [ i ] ;
54
63
if ( excluded . indexOf ( key ) >= 0 ) continue ;
55
64
target [ key ] = source [ key ] ;
56
65
}
66
+
57
67
return target ;
58
68
}
69
+
59
70
function _objectWithoutProperties ( source , excluded ) {
60
71
if ( source == null ) return { } ;
72
+
61
73
var target = _objectWithoutPropertiesLoose ( source , excluded ) ;
74
+
62
75
var key , i ;
76
+
63
77
if ( Object . getOwnPropertySymbols ) {
64
78
var sourceSymbolKeys = Object . getOwnPropertySymbols ( source ) ;
79
+
65
80
for ( i = 0 ; i < sourceSymbolKeys . length ; i ++ ) {
66
81
key = sourceSymbolKeys [ i ] ;
67
82
if ( excluded . indexOf ( key ) >= 0 ) continue ;
68
83
if ( ! Object . prototype . propertyIsEnumerable . call ( source , key ) ) continue ;
69
84
target [ key ] = source [ key ] ;
70
85
}
71
86
}
87
+
72
88
return target ;
73
89
}
90
+
74
91
function _toConsumableArray ( arr ) {
75
92
return _arrayWithoutHoles ( arr ) || _iterableToArray ( arr ) || _unsupportedIterableToArray ( arr ) || _nonIterableSpread ( ) ;
76
93
}
94
+
77
95
function _arrayWithoutHoles ( arr ) {
78
96
if ( Array . isArray ( arr ) ) return _arrayLikeToArray ( arr ) ;
79
97
}
98
+
80
99
function _iterableToArray ( iter ) {
81
100
if ( typeof Symbol !== "undefined" && iter [ Symbol . iterator ] != null || iter [ "@@iterator" ] != null ) return Array . from ( iter ) ;
82
101
}
102
+
83
103
function _unsupportedIterableToArray ( o , minLen ) {
84
104
if ( ! o ) return ;
85
105
if ( typeof o === "string" ) return _arrayLikeToArray ( o , minLen ) ;
@@ -88,11 +108,15 @@ function _unsupportedIterableToArray(o, minLen) {
88
108
if ( n === "Map" || n === "Set" ) return Array . from ( o ) ;
89
109
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 ) ;
90
110
}
111
+
91
112
function _arrayLikeToArray ( arr , len ) {
92
113
if ( len == null || len > arr . length ) len = arr . length ;
114
+
93
115
for ( var i = 0 , arr2 = new Array ( len ) ; i < len ; i ++ ) arr2 [ i ] = arr [ i ] ;
116
+
94
117
return arr2 ;
95
118
}
119
+
96
120
function _nonIterableSpread ( ) {
97
121
throw new TypeError ( "Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method." ) ;
98
122
}
@@ -236,12 +260,12 @@ var humps$1 = {exports: {}};
236
260
var humps = humps$1 . exports ;
237
261
238
262
var _excluded = [ "class" , "style" ] ;
239
-
240
263
/**
241
264
* Converts a CSS style into a plain Javascript object.
242
265
* @param {String } style The style to converts into a plain Javascript object.
243
266
* @returns {Object }
244
267
*/
268
+
245
269
function styleToObject ( style ) {
246
270
return style . split ( ';' ) . map ( function ( s ) {
247
271
return s . trim ( ) ;
@@ -255,77 +279,86 @@ function styleToObject(style) {
255
279
return output ;
256
280
} , { } ) ;
257
281
}
258
-
259
282
/**
260
283
* Converts a CSS class list into a plain Javascript object.
261
284
* @param {Array<String> } classes The class list to convert.
262
285
* @returns {Object }
263
286
*/
287
+
288
+
264
289
function classToObject ( classes ) {
265
290
return classes . split ( / \s + / ) . reduce ( function ( output , className ) {
266
291
output [ className ] = true ;
267
292
return output ;
268
293
} , { } ) ;
269
294
}
270
-
271
295
/**
272
296
* Converts a FontAwesome abstract element of an icon into a Vue VNode.
273
297
* @param {AbstractElement | String } abstractElement The element to convert.
274
298
* @param {Object } props The user-defined props.
275
299
* @param {Object } attrs The user-defined native HTML attributes.
276
300
* @returns {VNode }
277
301
*/
302
+
303
+
278
304
function convert ( abstractElement ) {
279
305
var props = arguments . length > 1 && arguments [ 1 ] !== undefined ? arguments [ 1 ] : { } ;
280
306
var attrs = arguments . length > 2 && arguments [ 2 ] !== undefined ? arguments [ 2 ] : { } ;
307
+
281
308
// If the abstract element is a string, we'll just return a string render function
282
309
if ( typeof abstractElement === 'string' ) {
283
310
return abstractElement ;
284
- }
311
+ } // Converting abstract element children into Vue VNodes
312
+
285
313
286
- // Converting abstract element children into Vue VNodes
287
314
var children = ( abstractElement . children || [ ] ) . map ( function ( child ) {
288
315
return convert ( child ) ;
289
- } ) ;
316
+ } ) ; // Converting abstract element attributes into valid Vue format
290
317
291
- // Converting abstract element attributes into valid Vue format
292
318
var mixins = Object . keys ( abstractElement . attributes || { } ) . reduce ( function ( mixins , key ) {
293
319
var value = abstractElement . attributes [ key ] ;
320
+
294
321
switch ( key ) {
295
322
case 'class' :
296
323
mixins . class = classToObject ( value ) ;
297
324
break ;
325
+
298
326
case 'style' :
299
327
mixins . style = styleToObject ( value ) ;
300
328
break ;
329
+
301
330
default :
302
331
mixins . attrs [ key ] = value ;
303
332
}
333
+
304
334
return mixins ;
305
335
} , {
306
336
attrs : { } ,
307
337
class : { } ,
308
338
style : { }
309
- } ) ;
339
+ } ) ; // Now, we'll return the VNode
310
340
311
- // Now, we'll return the VNode
312
341
attrs . class ;
313
- var _attrs$style = attrs . style ,
314
- aStyle = _attrs$style === void 0 ? { } : _attrs$style ,
315
- otherAttrs = _objectWithoutProperties ( attrs , _excluded ) ;
342
+ var _attrs$style = attrs . style ,
343
+ aStyle = _attrs$style === void 0 ? { } : _attrs$style ,
344
+ otherAttrs = _objectWithoutProperties ( attrs , _excluded ) ;
345
+
316
346
return h ( abstractElement . tag , _objectSpread2 ( _objectSpread2 ( _objectSpread2 ( { } , props ) , { } , {
317
347
class : mixins . class ,
318
348
style : _objectSpread2 ( _objectSpread2 ( { } , mixins . style ) , aStyle )
319
349
} , mixins . attrs ) , otherAttrs ) , children ) ;
320
350
}
321
351
322
352
var PRODUCTION = false ;
353
+
323
354
try {
324
355
PRODUCTION = process . env . NODE_ENV === 'production' ;
325
356
} catch ( e ) { }
357
+
326
358
function log ( ) {
327
359
if ( ! PRODUCTION && console && typeof console . error === 'function' ) {
328
360
var _console ;
361
+
329
362
( _console = console ) . error . apply ( _console , arguments ) ;
330
363
}
331
364
}
@@ -335,6 +368,7 @@ function objectWithKey(key, value) {
335
368
}
336
369
function classList ( props ) {
337
370
var _classes ;
371
+
338
372
var classes = ( _classes = {
339
373
'fa-spin' : props . spin ,
340
374
'fa-pulse' : props . pulse ,
@@ -357,28 +391,34 @@ function normalizeIconArgs(icon) {
357
391
if ( icon && _typeof ( icon ) === 'object' && icon . prefix && icon . iconName && icon . icon ) {
358
392
return icon ;
359
393
}
394
+
360
395
if ( parse . icon ) {
361
396
return parse . icon ( icon ) ;
362
397
}
398
+
363
399
if ( icon === null ) {
364
400
return null ;
365
401
}
402
+
366
403
if ( _typeof ( icon ) === 'object' && icon . prefix && icon . iconName ) {
367
404
return icon ;
368
405
}
406
+
369
407
if ( Array . isArray ( icon ) && icon . length === 2 ) {
370
408
return {
371
409
prefix : icon [ 0 ] ,
372
410
iconName : icon [ 1 ]
373
411
} ;
374
412
}
413
+
375
414
if ( typeof icon === 'string' ) {
376
415
return {
377
416
prefix : 'fas' ,
378
417
iconName : icon
379
418
} ;
380
419
}
381
420
}
421
+
382
422
var FontAwesomeIcon = defineComponent ( {
383
423
name : 'FontAwesomeIcon' ,
384
424
props : {
@@ -583,10 +623,12 @@ var FontAwesomeLayersText = defineComponent({
583
623
} ) ;
584
624
var abstractElement = computed ( function ( ) {
585
625
var _text = text ( props . value . toString ( ) , _objectSpread2 ( _objectSpread2 ( { } , transform . value ) , classes . value ) ) ,
586
- abstract = _text . abstract ;
626
+ abstract = _text . abstract ;
627
+
587
628
if ( props . counter ) {
588
629
abstract [ 0 ] . attributes . class = abstract [ 0 ] . attributes . class . replace ( 'fa-layers-text' , '' ) ;
589
630
}
631
+
590
632
return abstract [ 0 ] ;
591
633
} ) ;
592
634
var vnode = computed ( function ( ) {
0 commit comments