Commit Graph

990 Commits

Author SHA1 Message Date
Tessa Kelly
d23f3e6a8c Adds discloser indicator preview
TODO: consider removing the example for this. People should use the Accordion compnent directly
2021-11-05 12:37:22 -07:00
Tessa Kelly
117c21408a Adds Container examples 2021-11-05 12:35:01 -07:00
Tessa Kelly
4350e22248 Adds Colors preview 2021-11-05 12:28:39 -07:00
Tessa Kelly
51c14c0106 Adds ClickableText preview 2021-11-05 12:16:52 -07:00
Tessa Kelly
7cdb53489c Adds clickablesv examples 2021-11-05 12:13:17 -07:00
Tessa Kelly
db95e2c3b9 Adds Button examples 2021-11-05 12:07:58 -07:00
Tessa Kelly
cf319c6423 Adds balloon example 2021-11-05 11:59:39 -07:00
Tessa Kelly
0a0d008d02 Begins adding preview content 2021-11-05 11:48:09 -07:00
Tessa Kelly
52dd34abc2 Adds to example record 2021-11-05 11:19:08 -07:00
Tessa
b187f990a7
Merge pull request #759 from NoRedInk/kraken/text-input-v7
Kraken/text input v7
2021-11-02 16:02:51 -07:00
Tessa Kelly
79468439ba Adds onFocus helper 2021-11-02 12:23:54 -07:00
Liz Krane
5c337e41d8
Merge pull request #761 from NoRedInk/tessa/use-control-extras
Tessa/use control extras
2021-11-01 14:09:02 -07:00
Liz Krane
b5ce28f73f Use Button.modal and ClickableText.modal helpers in Modal styleguide example 2021-11-01 11:06:55 -07:00
Tessa Kelly
f45b5ea07e Change order of tail/alignment in example to avoid bug 2021-10-29 17:41:18 -07:00
Tessa Kelly
c959beaac4 Fix hardcoded true 2021-10-29 17:23:48 -07:00
Tessa Kelly
c9da21b1cd Split new and current password 2021-10-29 12:00:46 -07:00
Tessa Kelly
99d28a687a Adds guidance to the API 2021-10-29 11:14:49 -07:00
Tessa Kelly
6c7d5668e6 Implement the rest of the PW hide/show behavior 2021-10-29 11:07:06 -07:00
Tessa Kelly
518d223219 Undo the separate onInput change -- types actually seem simpler with it integrated 2021-10-29 11:07:06 -07:00
Tessa Kelly
c46e6fb332 Bake onReset behavior in to the Search so that the search icon and x always appear 2021-10-29 11:07:06 -07:00
Tessa Kelly
c64a10965d Reorder slightly for readability 2021-10-29 11:07:06 -07:00
Tessa Kelly
36692d3326 Make toExample helper to make the examples more readable 2021-10-29 11:07:06 -07:00
Tessa Kelly
1c690a0c37 Use a single update helper for all the fields 2021-10-29 11:07:06 -07:00
Tessa Kelly
2033d83a94 Use map to reimplement the other examples 2021-10-29 11:07:06 -07:00
Tessa Kelly
f478e8f3ab Split out onInput helper and add map 2021-10-29 11:07:06 -07:00
Tessa Kelly
da651f51f4 Experiment with exposing value and inputType as attribute helpers
breaks the styleguide example a bit, since the attribute type doesn't line up. Needs fixing still
2021-10-29 11:07:06 -07:00
Tessa Kelly
3e943c05e9 Move writing styles into an attribute" 2021-10-29 11:05:06 -07:00
Tessa Kelly
970a396174 Avoid duplicative ids while still respecting the sepcified label 2021-10-29 11:05:06 -07:00
Tessa Kelly
3bcd97aebe Oops accidentally deleted pw example 2021-10-29 11:05:06 -07:00
Tessa Kelly
c45bc7b5a0 Drop TextInput prefix for (hopefully) improved legibility 2021-10-29 11:05:06 -07:00
Tessa Kelly
f6eb1c19ad Make css an optional list control 2021-10-29 11:05:06 -07:00
Tessa Kelly
cf60270ceb Make onEnter part of the configuration 2021-10-29 11:05:06 -07:00
Tessa Kelly
03f8d45e53 Generalize viewExamples helper 2021-10-29 11:05:06 -07:00
Tessa Kelly
85f13b9e02 Use a list for the easily list-able attributes 2021-10-29 11:05:06 -07:00
Tessa Kelly
21d42e1bba Switch to V7 2021-10-29 11:05:06 -07:00
Tessa Kelly
e932d809cd Use list for Tooltip example 2021-10-28 08:57:25 -07:00
Tessa Kelly
a2d63ea650 Use list for Modal example 2021-10-28 08:50:39 -07:00
Tessa Kelly
08f345a17c Convert Message example to use Debug.Controls.Extra.list 2021-10-28 08:49:00 -07:00
Tessa Kelly
60f148f17a Use list for Ballooon 2021-10-28 08:40:23 -07:00
Tessa Kelly
4e1e1e3579 Replace one off styles with debug control css option 2021-10-27 19:14:11 -07:00
Tessa Kelly
ccb7f01c52 Make noBreak setting a bit more clear 2021-10-27 19:14:11 -07:00
Tessa Kelly
eb506876f6 Allow customization of the content on the stylguide example 2021-10-27 19:14:11 -07:00
Tessa Kelly
49ac49087f Adds empty controls 2021-10-27 19:14:11 -07:00
Tessa Kelly
6a50cb6229 Adds plaintext and markdown helpers 2021-10-27 19:14:11 -07:00
Tessa Kelly
f478bcc508 V5 -> V6 2021-10-27 19:14:11 -07:00
Alex Perkins
7e584de137 elm-format (but why??) 2021-10-27 11:00:08 -04:00
Alex Perkins
e8f8f4dc38 add an attr for Enter keydown events
Note that there can only be one `on "keydown"` event on a DOM node
so any more complex event handlers will need to use a custom event
instead

```
onEnter : msg -> TextInput.Attribute msg
onEnter msg =
    (\event ->
        case event.key of
            Just "Enter" ->
                if noModifiers event then
                    Just msg

                else
                    Nothing

            _ ->
                Nothing
    )
        |> considerKeyboardEvent
        |> HtmlEvents.on "keydown"
        |> TextInput.custom
```
2021-10-27 10:43:53 -04:00
Alex Perkins
15ef7f8d92
Merge pull request #750 from NoRedInk/tessa/remove-input-margin
Adds noMargin helper
2021-10-26 12:15:10 -04:00
Tessa Kelly
3dc8e3ebf2 💀 remove fullheight. it's not working, it requires changes to the container of Container, and it's only used one place in the monolith 2021-10-22 09:27:14 -07:00
Tessa Kelly
91feb06746 Begin making the example layout reusable
looks like something is actually wrong with the fullHeight helper
2021-10-21 17:32:14 -07:00