UNPKG
@mhmdaljefri/revogrid
Version:
latest (3.0.99)
3.0.99
3.0.98
3.0.97
Virtual reactive data grid component - RevoGrid.
github.com/revolist/revogrid
revolist/revogrid
@mhmdaljefri/revogrid
/
dist
/
collection
/
plugins
/
sorting
/
sorting.sign.js
7 lines
(6 loc)
•
219 B
JavaScript
View Raw
1
2
3
4
5
6
7
import
{ h }
from
'@stencil/core'
;
export
const
FILTER_BUTTON_CLASS
=
'rv-filter'
;
export
const
FILTER_BUTTON_ACTIVE
=
'active'
;
export
const
SortingSign
= (
{ column }
) => {
return
h
(
"i"
, {
class
: column.
order
}); };