Merge pull request #841 from NoRedInk/tessa/fix-missing-exposed-alias

Tessa/fix missing exposed alias
This commit is contained in:
Tessa 2022-02-21 16:21:07 -08:00 committed by GitHub
commit 5d7337030f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 3 deletions

View File

@ -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)

View File

@ -472,7 +472,8 @@ titleStyles color visibleTitle =
-- VIEW
{-| -}
{-| `FocusTrap` comes from `Nri.Ui.FocusTrap.V1`.
-}
view :
{ title : String
, wrapMsg : Msg -> msg