@omegagrid/bundle 0.6.139 → 0.7.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/icons.ts CHANGED
@@ -248,7 +248,7 @@ import * as falCirclePlay from '@fortawesome/pro-light-svg-icons/faCirclePlay';
248
248
  import * as falFont from '@fortawesome/pro-light-svg-icons/faFont';
249
249
  import * as falPalette from '@fortawesome/pro-light-svg-icons/faPalette';
250
250
 
251
- const faIcons: IconDefinition[] = [
251
+ const fasIcons: IconDefinition[] = [
252
252
  fasChevronUp.definition,
253
253
  fasChevronDown.definition,
254
254
  fasChevronRight.definition,
@@ -372,7 +372,9 @@ const faIcons: IconDefinition[] = [
372
372
  fasCirclePlay.definition,
373
373
  fasFont.definition,
374
374
  fasPalette.definition,
375
+ ];
375
376
 
377
+ const falIcons: IconDefinition[] = [
376
378
  falChevronUp.definition,
377
379
  falChevronDown.definition,
378
380
  falChevronRight.definition,
@@ -500,5 +502,6 @@ const faIcons: IconDefinition[] = [
500
502
 
501
503
  export const registerIcons = () => {
502
504
  config.styleDefault = 'fal';
503
- library.add(...faIcons);
505
+ library.add(fasIcons);
506
+ library.add(falIcons);
504
507
  }