Skip to content

v3.2.0

Compare
Choose a tag to compare
@sharkdp sharkdp released this 30 Jul 09:00
· 14 commits to master since this release
  • Added a component for resizable lists (@sammthomson), enabling things like this:
ui18 :: forall e. UI e String
ui18 = acronym <$> resizableList "Words" string_ "Really" defaultList
  where
    defaultList = "Don't" : "Repeat" : "Yourself" : Nil
    acronym xs = "Acronym: " <> foldMap (take 1) xs