Organize exports

This commit is contained in:
Tessa Kelly 2021-11-22 16:11:29 -08:00
parent 4f5378a7f2
commit 3207adc468

View File

@ -1,12 +1,12 @@
module Nri.Ui.RadioButton.V3 exposing module Nri.Ui.RadioButton.V3 exposing
( view, Attribute ( view
, disabled, enabled
, onSelect
, premium, showPennant , premium, showPennant
, disclosure , disclosure
, onSelect
, Attribute
, hiddenLabel, visibleLabel , hiddenLabel, visibleLabel
, custom, nriDescription, id, testId , containerCss, custom, nriDescription, id, testId
, containerCss , disabled, enabled
) )
{-| Changes from V2: {-| Changes from V2:
@ -15,14 +15,26 @@ module Nri.Ui.RadioButton.V3 exposing
- add disclosure to show rich content when the radio is selected - add disclosure to show rich content when the radio is selected
- allow customization of the id - allow customization of the id
@docs view, Attribute @docs view
@docs disabled, enabled
@docs onSelect
### Content
@docs premium, showPennant @docs premium, showPennant
@docs disclosure @docs disclosure
### Event handlers
@docs onSelect
### Attributes
@docs Attribute
@docs hiddenLabel, visibleLabel @docs hiddenLabel, visibleLabel
@docs custom, nriDescription, id, testId @docs containerCss, custom, nriDescription, id, testId
@docs containerCss @docs disabled, enabled
-} -}