Orasund
Orasund
From [a discussion on discourse](https://discourse.elm-lang.org/t/empty-strings-with-string-all/5062) we noticed that the [documentation](https://package.elm-lang.org/packages/elm/core/latest/String#any) of String.all and String.any are missing an example for the empty String. ``` any isDigit "" == False all isDigit...
The code blocks currently use Fire Code as Font. This looks pretty, but the ligatures might confuse people that have never seen Fire Code before. This feature has been suggested...
Following the [Material design Specification](https://material.io/components/date-pickers) a date picker widget should be added, not sure want this would require.
There exists a way to preload Ellies (See https://github.com/ellie-app/ellie/issues/63): ``` https://ellie-app.com/a/example/v1?title=hello%20world&elmcode=hello&htmlcode=world&packages=elm%2Fbrowser%401.0.2&elmversion=0.19.0 ``` There are some questions though * How to replace special characters (Only Ascii is supported. For example %20...
Due to #30 the `Widget.asItem` function does not work properly. Easy way to fix this is to add ``` Customize.mapContent (Customize.element [Element.height Element.shrink]) ``` to `Material.cardColumn`. This should be included...
The icon button is not a circle. As can be seen on the [website](https://orasund.github.io/elm-ui-widgets/2.0.0/). ~This will be fixed in version 3.0.0.~ ~It would take some effort to fix in version...
Before the release of 3.0.0, we should add both filled and outlined textfields. This would result in a new definition for `TextInputStyle`
We currently have a simple implementation of a top app bar. It would be interesting to know what is still missing and if adding the missing features would be worth...
The Material design specification just added [Backdrops](https://material.io/components/backdrop). It would be interesting to know how much effort would be involved to add backdrops to our package.
Add a banner widget from the [Material Design](https://material.io/components/banners#specs) specification. Following the implementation of the `alertDialog` Widget, this should include: * A Widget Type + Implementation * A Style Type +...