Ember Font Awesome Versions Save

ember-cli addon for using Font Awesome icons in Ember apps

3.0.0

7 years ago

Remove font-awesome from your bower file because it's now installed via NPM! :tada:

2.0.0

8 years ago
  • Renamed add-on to ember-font-awesome
  • This version drops support for Ember versions before 2.3.0
  • {{fa-list}} and {{fa-stack}} have support contextual components

1.5.0

8 years ago

Some changes made to font-awesome asset inclusion: (see #73)

  • Removed importing *.scss files into styles tree (entire treeForStyles hook)
  • Added a friendly check for the font-awesome bower path
  • Added an 'includeFontFiles' option
  • Adjusted ember-cli-sass options to include font-awesome path
  • Adjusted ember-cli-less options to include font-awesome path

1.4.2

8 years ago

Fixed add-on nesting

1.4.0-beta.1

8 years ago

Only real change is that this addon is now developed using decorators syntax. Please test and report bugs.

1.3.0

8 years ago

You can now specify the icon param as a positional param.

{{fa-icon "camera"}}

NOTE: This will not work when working with Ember version <= 1.12.X.

This version is backwards compatible with the 0.1.X series of this addon.

1.1.1

8 years ago

Fixup of version 1.1.0. See version 1.1.0.

1.1.0

8 years ago

Added the {{fa-list}} and {{fa-list-icon}} components:

{{#fa-list}}
  <li>{{fa-list-icon icon="star"}}Item 1</li>
  <li>{{fa-list-icon icon="star"}}Item 2</li>
{{/fa-list}}

Added the {{fa-stack}} component:

{{#fa-stack size="lg"}}
  {{fa-icon icon="fa-square-o" stack=2}}
  {{fa-icon icon="fa-twitter" stack=1}}
{{/fa-stack}}

1.0.0

8 years ago

In this version the {{fa-icon}} helper has been refactored into an Ember Component. To upgrade you should find all occasions where the {{fa-icon}} helper is used and change the following:

{{fa-icon 'camera'}}
{{!-- change to: --}}
{{fa-icon icon='camera'}}

All other attributes should work like they used to. If they don't, please open an issue or submit a pull-request with a fix.

0.1.1

8 years ago

Font Awesome 4.4