mirror of
https://github.com/NoRedInk/noredink-ui.git
synced 2024-12-24 14:13:20 +03:00
Update to V8:
This commit is contained in:
parent
efa89877ec
commit
bb9819fb7b
@ -5,7 +5,8 @@ Nri.Ui.Menu.V1,upgrade to V3
|
||||
Nri.Ui.Menu.V2,upgrade to V3
|
||||
Nri.Ui.Modal.V10,upgrade to V11
|
||||
Nri.Ui.RadioButton.V1,upgrade to V2
|
||||
Nri.Ui.Select.V5,upgrade to V7
|
||||
Nri.Ui.Select.V5,upgrade to V8
|
||||
Nri.Ui.Select.V7,upgrade to V8
|
||||
Nri.Ui.Table.V4,upgrade to V5
|
||||
Nri.Ui.Tabs.V6,upgrade to V7
|
||||
Nri.Ui.Text.V5,upgrade to V6
|
||||
|
|
1
elm.json
1
elm.json
@ -51,6 +51,7 @@
|
||||
"Nri.Ui.SegmentedControl.V14",
|
||||
"Nri.Ui.Select.V5",
|
||||
"Nri.Ui.Select.V7",
|
||||
"Nri.Ui.Select.V8",
|
||||
"Nri.Ui.Slide.V1",
|
||||
"Nri.Ui.SlideModal.V2",
|
||||
"Nri.Ui.SortableTable.V2",
|
||||
|
@ -95,7 +95,10 @@ hint = 'upgrade to V14'
|
||||
hint = 'upgrade to V14'
|
||||
|
||||
[forbidden."Nri.Ui.Select.V5"]
|
||||
hint = 'upgrade to V7'
|
||||
hint = 'upgrade to V8'
|
||||
|
||||
[forbidden."Nri.Ui.Select.V7"]
|
||||
hint = 'upgrade to V8'
|
||||
|
||||
[forbidden."Nri.Ui.Table.V4"]
|
||||
hint = 'upgrade to V5'
|
||||
|
@ -1,6 +1,6 @@
|
||||
module Nri.Ui.Select.V7 exposing (Choice, view)
|
||||
module Nri.Ui.Select.V8 exposing (Choice, view)
|
||||
|
||||
{-| Build a select input.
|
||||
{-| Build a select input with a label, optional guidance, and error messaging.
|
||||
|
||||
@docs Choice, view
|
||||
|
||||
|
@ -20,7 +20,7 @@ import Nri.Ui.ClickableSvg.V2 as ClickableSvg
|
||||
import Nri.Ui.Colors.Extra exposing (fromCssColor, toCssColor)
|
||||
import Nri.Ui.Colors.V1 as Colors
|
||||
import Nri.Ui.Heading.V2 as Heading
|
||||
import Nri.Ui.Select.V7 as Select
|
||||
import Nri.Ui.Select.V8 as Select
|
||||
import Nri.Ui.Svg.V1 as Svg exposing (Svg)
|
||||
import Nri.Ui.Tooltip.V2 as Tooltip
|
||||
import Nri.Ui.UiIcon.V1 as UiIcon
|
||||
|
@ -13,14 +13,14 @@ import Html.Styled
|
||||
import Html.Styled.Attributes
|
||||
import KeyboardSupport exposing (Direction(..), Key(..))
|
||||
import Nri.Ui.Heading.V2 as Heading
|
||||
import Nri.Ui.Select.V7 as Select
|
||||
import Nri.Ui.Select.V8 as Select
|
||||
|
||||
|
||||
{-| -}
|
||||
example : Example State Msg
|
||||
example =
|
||||
{ name = "Select"
|
||||
, version = 7
|
||||
, version = 8
|
||||
, state = init
|
||||
, update = update
|
||||
, subscriptions = \_ -> Sub.none
|
||||
|
@ -17,7 +17,7 @@ import KeyboardSupport exposing (Direction(..), Key(..))
|
||||
import Nri.Ui.Colors.Extra exposing (fromCssColor, toCssColor)
|
||||
import Nri.Ui.Colors.V1 as Colors
|
||||
import Nri.Ui.Heading.V2 as Heading
|
||||
import Nri.Ui.Select.V7 as Select
|
||||
import Nri.Ui.Select.V8 as Select
|
||||
import Nri.Ui.Svg.V1 as Svg
|
||||
import Nri.Ui.UiIcon.V1 as UiIcon
|
||||
import SolidColor exposing (SolidColor)
|
||||
|
@ -47,6 +47,7 @@
|
||||
"Nri.Ui.SegmentedControl.V14",
|
||||
"Nri.Ui.Select.V5",
|
||||
"Nri.Ui.Select.V7",
|
||||
"Nri.Ui.Select.V8",
|
||||
"Nri.Ui.Slide.V1",
|
||||
"Nri.Ui.SlideModal.V2",
|
||||
"Nri.Ui.SortableTable.V2",
|
||||
|
Loading…
Reference in New Issue
Block a user