mirror of
https://github.com/NoRedInk/noredink-ui.git
synced 2024-12-19 19:51:37 +03:00
Merge pull request #841 from NoRedInk/tessa/fix-missing-exposed-alias
Tessa/fix missing exposed alias
This commit is contained in:
commit
5d7337030f
@ -1,5 +1,5 @@
|
||||
module Nri.Ui.Menu.V3 exposing
|
||||
( view, button, custom
|
||||
( view, button, custom, Config
|
||||
, Attribute, Button, ButtonAttribute
|
||||
, alignment, isDisabled, menuWidth, buttonId, menuId, menuZIndex
|
||||
, Alignment(..)
|
||||
@ -20,7 +20,7 @@ A togglable menu view and related buttons.
|
||||
|
||||
## Menu rendering
|
||||
|
||||
@docs view, button, custom
|
||||
@docs view, button, custom, Config
|
||||
@docs Attribute, Button, ButtonAttribute
|
||||
|
||||
|
||||
@ -76,6 +76,7 @@ type Button msg
|
||||
| CustomButton (List (Html.Attribute msg) -> Html msg)
|
||||
|
||||
|
||||
{-| -}
|
||||
type alias Config msg =
|
||||
{ button : Button msg
|
||||
, entries : List (Entry msg)
|
||||
|
@ -472,7 +472,8 @@ titleStyles color visibleTitle =
|
||||
-- VIEW
|
||||
|
||||
|
||||
{-| -}
|
||||
{-| `FocusTrap` comes from `Nri.Ui.FocusTrap.V1`.
|
||||
-}
|
||||
view :
|
||||
{ title : String
|
||||
, wrapMsg : Msg -> msg
|
||||
|
Loading…
Reference in New Issue
Block a user