-
Notifications
You must be signed in to change notification settings - Fork 10
fix(alias): Convert the two-words aliases into one-word aliases #115
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Convert the two-words aliases `line graph` into `linegraph` which conflicts with other FUI components which uses the CSS class name `line`.
@fomantic/maintainers I couldn't find the alias for I'm not sure how the alias |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This will still not fix the original chart-line
which is part of
https://raw.githubusercontent.com/FortAwesome/Font-Awesome/master/metadata/icons.json
where this script is taking the icon names from.
Correct the alias `chart line` from FontAwesome to be used as `chartline` in FUI which prevent the CSS classname confliction.
@lubber-de I've added the correction for alias |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Quick question here: will the name of the icon class be |
@prudho Yes, it will be So in the fomantic repo we would have Agree? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yup, it's okay for me. This might be a breaking change, but it's a rather small one, and for my app it doesn't really matter (just visually)... And like you said, we just have to patch the main repo to make the change transparent for 2.8.
@prudho |
…ompatibility This PR re-adds the two word icon names for chartline and linegraph as of #1636 to avoid being a breaking change as @prudho mentioned here . The next full font awesome update will happen in 2.9.0 using the fixes from fomantic/create-fomantic-icons#115 Then two word aliases will be completely removed
Merging now, as the next Fomantic Release which may gets a new FA Update will be 2.9.0 |
Convert the two-words aliases
line graph
intolinegraph
which conflicts with other FUI components which uses the CSS class nameline
.Closes
fomantic/Fomantic-UI#1619