mirror of
https://github.com/NoRedInk/noredink-ui.git
synced 2024-12-02 23:52:22 +03:00
Adds documentation
This commit is contained in:
parent
127762dab7
commit
41e58c40fc
@ -4,7 +4,19 @@ module Nri.Ui.Alert.V4 exposing
|
|||||||
, somethingWentWrong
|
, somethingWentWrong
|
||||||
)
|
)
|
||||||
|
|
||||||
{-| UI components that highlight information to the user.
|
{-|
|
||||||
|
|
||||||
|
|
||||||
|
# Changes from V3:
|
||||||
|
|
||||||
|
- Changes the error font color from `purpleDark` to `purple`
|
||||||
|
- Adds `complexError` and `complexWarning` errors that support Html arguments
|
||||||
|
- Adds `somethingWentWrong` error for displaying stacktraces
|
||||||
|
|
||||||
|
|
||||||
|
# About:
|
||||||
|
|
||||||
|
UI components that highlight information to the user.
|
||||||
|
|
||||||
@docs error, success, tip, warning
|
@docs error, success, tip, warning
|
||||||
@docs complexError, complexWarning
|
@docs complexError, complexWarning
|
||||||
@ -78,7 +90,12 @@ somethingWentWrong errorMessageForEngineers =
|
|||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
{-| -}
|
{-| import Nri.Ui.Alert.V4 as Alert
|
||||||
|
|
||||||
|
view =
|
||||||
|
Alert.error "Some **awesome** message!"
|
||||||
|
|
||||||
|
-}
|
||||||
error : String -> Html msg
|
error : String -> Html msg
|
||||||
error content =
|
error content =
|
||||||
alert
|
alert
|
||||||
@ -87,7 +104,12 @@ error content =
|
|||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
{-| -}
|
{-| import Nri.Ui.Alert.V4 as Alert
|
||||||
|
|
||||||
|
view =
|
||||||
|
Alert.success "Some **awesome** message!"
|
||||||
|
|
||||||
|
-}
|
||||||
success : String -> Html msg
|
success : String -> Html msg
|
||||||
success content =
|
success content =
|
||||||
alert
|
alert
|
||||||
@ -108,7 +130,12 @@ success content =
|
|||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
{-| -}
|
{-| import Nri.Ui.Alert.V4 as Alert
|
||||||
|
|
||||||
|
view =
|
||||||
|
Alert.tip "Some **awesome** message!"
|
||||||
|
|
||||||
|
-}
|
||||||
tip : String -> Html msg
|
tip : String -> Html msg
|
||||||
tip content =
|
tip content =
|
||||||
alert
|
alert
|
||||||
@ -117,7 +144,12 @@ tip content =
|
|||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
{-| -}
|
{-| import Nri.Ui.Alert.V4 as Alert
|
||||||
|
|
||||||
|
view =
|
||||||
|
Alert.warning "Some **awesome** message!"
|
||||||
|
|
||||||
|
-}
|
||||||
warning : String -> Html msg
|
warning : String -> Html msg
|
||||||
warning content =
|
warning content =
|
||||||
alert
|
alert
|
||||||
|
Loading…
Reference in New Issue
Block a user