Compare commits

..

No commits in common. "master" and "1.0.0" have entirely different histories.

3 changed files with 2 additions and 7 deletions

View File

@ -1 +0,0 @@
elm 0.19.1

View File

@ -3,7 +3,7 @@
"name": "NoRedInk/elm-sortable-table", "name": "NoRedInk/elm-sortable-table",
"summary": "Sortable tables for whatever data you want to display.", "summary": "Sortable tables for whatever data you want to display.",
"license": "BSD-3-Clause", "license": "BSD-3-Clause",
"version": "1.0.1", "version": "1.0.0",
"exposed-modules": [ "exposed-modules": [
"Table" "Table"
], ],

View File

@ -1,7 +1,7 @@
module Table exposing module Table exposing
( view ( view
, config, stringColumn, intColumn, floatColumn , config, stringColumn, intColumn, floatColumn
, State, initialSort, initialRevSort , State, initialSort
, Column, customColumn, veryCustomColumn , Column, customColumn, veryCustomColumn
, Sorter, unsortable, increasingBy, decreasingBy , Sorter, unsortable, increasingBy, decreasingBy
, increasingOrDecreasingBy, decreasingOrIncreasingBy , increasingOrDecreasingBy, decreasingOrIncreasingBy
@ -88,10 +88,6 @@ initialSort : String -> State
initialSort header = initialSort header =
State header False State header False
initialRevSort : String -> State
initialRevSort header =
State header True
-- CONFIG -- CONFIG