brick-tabular-list 1.0.0.0 → 1.0.0.1
raw patch · 5 files changed
+10/−2 lines, 5 filesdep ~base
Dependency ranges changed: base
Files
- CHANGELOG.md +5/−0
- brick-tabular-list.cabal +2/−2
- src/Brick/Widgets/TabularList/Grid.hs +1/−0
- src/Brick/Widgets/TabularList/Mixed.hs +1/−0
- src/Brick/Widgets/TabularList/Types.hs +1/−0
CHANGELOG.md view
@@ -1,5 +1,10 @@ # Revision history for brick-tabular-list +## 1.0.0.1 -- 2023-03-10++* Decreased lower version bound for base to allow hackage to build haddock documentation with ghc-9.2.4+* Show extensions used in modules+ ## 1.0.0.0 -- 2023-03-10 * Substantially simplified and improved API. It is far less likely to make mistakes with the new API.
brick-tabular-list.cabal view
@@ -1,6 +1,6 @@ cabal-version: 3.0 name: brick-tabular-list-version: 1.0.0.0+version: 1.0.0.1 synopsis: Tabular list widgets for brick. @@ -55,7 +55,7 @@ library build-depends:- base >=4.16.4.0 && <5+ base >=4.16.3.0 && <5 , brick >=1.5 && <1.7 , containers >=0.6.4 && <0.7 , generic-lens >=2.2.1 && <2.3
src/Brick/Widgets/TabularList/Grid.hs view
@@ -4,6 +4,7 @@ {-# LANGUAGE LambdaCase #-} {-# LANGUAGE NoFieldSelectors #-} {-# LANGUAGE NamedFieldPuns #-}+{-# OPTIONS_HADDOCK show-extensions #-} -- | Grid tabular list is a uniform grid that supports cell-by-cell navigation. -- --   
src/Brick/Widgets/TabularList/Mixed.hs view
@@ -3,6 +3,7 @@ {-# LANGUAGE OverloadedLabels #-} {-# LANGUAGE NamedFieldPuns #-} {-# LANGUAGE NoFieldSelectors #-}+{-# OPTIONS_HADDOCK show-extensions #-} -- | Mixed tabular list is a list with different kinds of rows. -- -- 
src/Brick/Widgets/TabularList/Types.hs view
@@ -1,5 +1,6 @@ {-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE NoFieldSelectors #-}+{-# OPTIONS_HADDOCK show-extensions #-} -- | Types shared by tabular list widgets. -- -- You don't have to import this module because modules for tabular list widgets re-export this module.