AG-2235 - Updated font-awesome to 5.6.3
This commit is contained in:
@@ -25,12 +25,12 @@ export default class RichGridDeclarativeExample extends Component {
|
||||
sideBar: false,
|
||||
rowData: new RowDataFactory().createRowData(),
|
||||
icons: {
|
||||
columnRemoveFromGroup: '<i class="fa fa-remove"/>',
|
||||
columnRemoveFromGroup: '<i class="fa fa-times"/>',
|
||||
filter: '<i class="fa fa-filter"/>',
|
||||
sortAscending: '<i class="fa fa-long-arrow-down"/>',
|
||||
sortDescending: '<i class="fa fa-long-arrow-up"/>',
|
||||
groupExpanded: '<i class="fa fa-minus-square-o"/>',
|
||||
groupContracted: '<i class="fa fa-plus-square-o"/>'
|
||||
sortAscending: '<i class="fa fa-long-arrow-alt-down"/>',
|
||||
sortDescending: '<i class="fa fa-long-arrow-alt-up"/>',
|
||||
groupExpanded: '<i class="far fa-minus-square"/>',
|
||||
groupContracted: '<i class="far fa-plus-square"/>'
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
@@ -30,10 +30,10 @@ export default class SortableHeaderComponent extends React.Component {
|
||||
|
||||
sortElements.push(<div key={`up${this.props.displayName}`} className={downArrowClass}
|
||||
onClick={this.onSortRequested.bind(this, 'desc')}><i
|
||||
className="fa fa-long-arrow-down"/></div>);
|
||||
className="fa fa-long-arrow-alt-down"/></div>);
|
||||
sortElements.push(<div key={`down${this.props.displayName}`} className={upArrowClass}
|
||||
onClick={this.onSortRequested.bind(this, 'asc')}><i
|
||||
className="fa fa-long-arrow-up"/></div>);
|
||||
className="fa fa-long-arrow-alt-up"/></div>);
|
||||
sortElements.push(<div key={`minus${this.props.displayName}`} className={removeArrowClass}
|
||||
onClick={this.onSortRequested.bind(this, '')}><i
|
||||
className="fa fa-times"/></div>)
|
||||
|
||||
Reference in New Issue
Block a user