Skip to content

Commit

Permalink
documentation & elm-package updates
Browse files Browse the repository at this point in the history
  • Loading branch information
surprisetalk committed Feb 20, 2018
1 parent 87697be commit c5df995
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 11 deletions.
24 changes: 14 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ view model

exampleHero : Html msg
exampleHero
= hero { heroModifiers | size = Medium } []
= hero { heroModifiers | size = Medium, color = Primary } []
[ heroBody []
[ container []
[ title H1 [] [ text "Hero Title" ]
Expand All @@ -52,10 +52,14 @@ exampleHero

exampleColumns : Html msg
exampleColumns
= columns columnsModifiers []
[ column columnModifiers [] [ text "First Column" ]
, column columnModifiers [] [ text "Second Column" ]
, column columnModifiers [] [ text "Third Column" ]
= section NotSpaced []
[ container []
[ columns columnsModifiers []
[ column columnModifiers [] [ text "First Column" ]
, column columnModifiers [] [ text "Second Column" ]
, column columnModifiers [] [ text "Third Column" ]
]
]
]
```

Expand All @@ -68,14 +72,14 @@ exampleColumns
- [elm-bulma-classes](http://package.elm-lang.org/packages/danielnarey/elm-bulma-classes/latest/BulmaClasses)

## Next Steps
- [ ] Fix the hacky `Attrs msg` stuff (sorry!).
- [X] Fix the hacky `Attrs msg` stuff (sorry!).
- [X] Upgrade to `0.6.2`.
- [X] Example/test page with all the Bulma features.
- [X] Improve documentation.
- [ ] Rethink position on modifiers: giant global record or more args.
- [ ] Reconsider stance on "easy" things.
- [ ] Argument arrangement/consistency review.
- [-] Upgrade to `0.6.2`.
- [ ] Example/test page with all the Bulma features.
- [ ] Remove `elm-bulma-classes` as dependency.
- [ ] Improve documentation.
- [ ] Talk to the Bulma peeps about featuring this package!
- [-] Clean the codebase.
- [ ] Clean the codebase.
- [ ] Make the library web-accessible by default, using the [elm-html-a11y](http://package.elm-lang.org/packages/tesk9/elm-html-a11y/latest) package.
2 changes: 1 addition & 1 deletion elm-package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "5.0.0",
"version": "6.0.0",
"summary": "Bulma HTML/CSS Framework for Elm",
"repository": "https://github.com/surprisetalk/elm-bulma.git",
"license": "BSD3",
Expand Down

0 comments on commit c5df995

Please sign in to comment.